blob: 5d03c780c780fe838ff431c78a98236bcb55fc00 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001/*
Mitko Haralanova74d5302018-05-02 06:43:24 -07002 * Copyright(c) 2015 - 2018 Intel Corporation.
Mike Marciniszyn77241052015-07-30 15:17:43 -04003 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
Mike Marciniszyn77241052015-07-30 15:17:43 -040020 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47
48/*
49 * This file contains all of the code that is specific to the HFI chip
50 */
51
52#include <linux/pci.h>
53#include <linux/delay.h>
54#include <linux/interrupt.h>
55#include <linux/module.h>
56
57#include "hfi.h"
58#include "trace.h"
59#include "mad.h"
60#include "pio.h"
61#include "sdma.h"
62#include "eprom.h"
Dean Luick5d9157a2015-11-16 21:59:34 -050063#include "efivar.h"
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080064#include "platform.h"
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080065#include "aspm.h"
Dennis Dalessandro41973442016-07-25 07:52:36 -070066#include "affinity.h"
Don Hiatt243d9f42017-03-20 17:26:20 -070067#include "debugfs.h"
Mitko Haralanova74d5302018-05-02 06:43:24 -070068#include "fault.h"
Mike Marciniszyn77241052015-07-30 15:17:43 -040069
70#define NUM_IB_PORTS 1
71
72uint kdeth_qp;
73module_param_named(kdeth_qp, kdeth_qp, uint, S_IRUGO);
74MODULE_PARM_DESC(kdeth_qp, "Set the KDETH queue pair prefix");
75
76uint num_vls = HFI1_MAX_VLS_SUPPORTED;
77module_param(num_vls, uint, S_IRUGO);
78MODULE_PARM_DESC(num_vls, "Set number of Virtual Lanes to use (1-8)");
79
80/*
81 * Default time to aggregate two 10K packets from the idle state
82 * (timer not running). The timer starts at the end of the first packet,
83 * so only the time for one 10K packet and header plus a bit extra is needed.
84 * 10 * 1024 + 64 header byte = 10304 byte
85 * 10304 byte / 12.5 GB/s = 824.32ns
86 */
87uint rcv_intr_timeout = (824 + 16); /* 16 is for coalescing interrupt */
88module_param(rcv_intr_timeout, uint, S_IRUGO);
89MODULE_PARM_DESC(rcv_intr_timeout, "Receive interrupt mitigation timeout in ns");
90
91uint rcv_intr_count = 16; /* same as qib */
92module_param(rcv_intr_count, uint, S_IRUGO);
93MODULE_PARM_DESC(rcv_intr_count, "Receive interrupt mitigation count");
94
95ushort link_crc_mask = SUPPORTED_CRCS;
96module_param(link_crc_mask, ushort, S_IRUGO);
97MODULE_PARM_DESC(link_crc_mask, "CRCs to use on the link");
98
99uint loopback;
100module_param_named(loopback, loopback, uint, S_IRUGO);
101MODULE_PARM_DESC(loopback, "Put into loopback mode (1 = serdes, 3 = external cable");
102
103/* Other driver tunables */
104uint rcv_intr_dynamic = 1; /* enable dynamic mode for rcv int mitigation*/
105static ushort crc_14b_sideband = 1;
106static uint use_flr = 1;
107uint quick_linkup; /* skip LNI */
108
109struct flag_table {
110 u64 flag; /* the flag */
111 char *str; /* description string */
112 u16 extra; /* extra information */
113 u16 unused0;
114 u32 unused1;
115};
116
117/* str must be a string constant */
118#define FLAG_ENTRY(str, extra, flag) {flag, str, extra}
119#define FLAG_ENTRY0(str, flag) {flag, str, 0}
120
121/* Send Error Consequences */
122#define SEC_WRITE_DROPPED 0x1
123#define SEC_PACKET_DROPPED 0x2
124#define SEC_SC_HALTED 0x4 /* per-context only */
125#define SEC_SPC_FREEZE 0x8 /* per-HFI only */
126
Harish Chegondi8784ac02016-07-25 13:38:50 -0700127#define DEFAULT_KRCVQS 2
Mike Marciniszyn77241052015-07-30 15:17:43 -0400128#define MIN_KERNEL_KCTXTS 2
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500129#define FIRST_KERNEL_KCTXT 1
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -0700130
131/*
132 * RSM instance allocation
133 * 0 - Verbs
134 * 1 - User Fecn Handling
135 * 2 - Vnic
136 */
137#define RSM_INS_VERBS 0
138#define RSM_INS_FECN 1
139#define RSM_INS_VNIC 2
Mike Marciniszyn77241052015-07-30 15:17:43 -0400140
141/* Bit offset into the GUID which carries HFI id information */
142#define GUID_HFI_INDEX_SHIFT 39
143
144/* extract the emulation revision */
145#define emulator_rev(dd) ((dd)->irev >> 8)
146/* parallel and serial emulation versions are 3 and 4 respectively */
147#define is_emulator_p(dd) ((((dd)->irev) & 0xf) == 3)
148#define is_emulator_s(dd) ((((dd)->irev) & 0xf) == 4)
149
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -0700150/* RSM fields for Verbs */
Mike Marciniszyn77241052015-07-30 15:17:43 -0400151/* packet type */
152#define IB_PACKET_TYPE 2ull
153#define QW_SHIFT 6ull
154/* QPN[7..1] */
155#define QPN_WIDTH 7ull
156
157/* LRH.BTH: QW 0, OFFSET 48 - for match */
158#define LRH_BTH_QW 0ull
159#define LRH_BTH_BIT_OFFSET 48ull
160#define LRH_BTH_OFFSET(off) ((LRH_BTH_QW << QW_SHIFT) | (off))
161#define LRH_BTH_MATCH_OFFSET LRH_BTH_OFFSET(LRH_BTH_BIT_OFFSET)
162#define LRH_BTH_SELECT
163#define LRH_BTH_MASK 3ull
164#define LRH_BTH_VALUE 2ull
165
166/* LRH.SC[3..0] QW 0, OFFSET 56 - for match */
167#define LRH_SC_QW 0ull
168#define LRH_SC_BIT_OFFSET 56ull
169#define LRH_SC_OFFSET(off) ((LRH_SC_QW << QW_SHIFT) | (off))
170#define LRH_SC_MATCH_OFFSET LRH_SC_OFFSET(LRH_SC_BIT_OFFSET)
171#define LRH_SC_MASK 128ull
172#define LRH_SC_VALUE 0ull
173
174/* SC[n..0] QW 0, OFFSET 60 - for select */
175#define LRH_SC_SELECT_OFFSET ((LRH_SC_QW << QW_SHIFT) | (60ull))
176
177/* QPN[m+n:1] QW 1, OFFSET 1 */
178#define QPN_SELECT_OFFSET ((1ull << QW_SHIFT) | (1ull))
179
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -0700180/* RSM fields for Vnic */
181/* L2_TYPE: QW 0, OFFSET 61 - for match */
182#define L2_TYPE_QW 0ull
183#define L2_TYPE_BIT_OFFSET 61ull
184#define L2_TYPE_OFFSET(off) ((L2_TYPE_QW << QW_SHIFT) | (off))
185#define L2_TYPE_MATCH_OFFSET L2_TYPE_OFFSET(L2_TYPE_BIT_OFFSET)
186#define L2_TYPE_MASK 3ull
187#define L2_16B_VALUE 2ull
188
189/* L4_TYPE QW 1, OFFSET 0 - for match */
190#define L4_TYPE_QW 1ull
191#define L4_TYPE_BIT_OFFSET 0ull
192#define L4_TYPE_OFFSET(off) ((L4_TYPE_QW << QW_SHIFT) | (off))
193#define L4_TYPE_MATCH_OFFSET L4_TYPE_OFFSET(L4_TYPE_BIT_OFFSET)
194#define L4_16B_TYPE_MASK 0xFFull
195#define L4_16B_ETH_VALUE 0x78ull
196
197/* 16B VESWID - for select */
198#define L4_16B_HDR_VESWID_OFFSET ((2 << QW_SHIFT) | (16ull))
199/* 16B ENTROPY - for select */
200#define L2_16B_ENTROPY_OFFSET ((1 << QW_SHIFT) | (32ull))
201
Mike Marciniszyn77241052015-07-30 15:17:43 -0400202/* defines to build power on SC2VL table */
203#define SC2VL_VAL( \
204 num, \
205 sc0, sc0val, \
206 sc1, sc1val, \
207 sc2, sc2val, \
208 sc3, sc3val, \
209 sc4, sc4val, \
210 sc5, sc5val, \
211 sc6, sc6val, \
212 sc7, sc7val) \
213( \
214 ((u64)(sc0val) << SEND_SC2VLT##num##_SC##sc0##_SHIFT) | \
215 ((u64)(sc1val) << SEND_SC2VLT##num##_SC##sc1##_SHIFT) | \
216 ((u64)(sc2val) << SEND_SC2VLT##num##_SC##sc2##_SHIFT) | \
217 ((u64)(sc3val) << SEND_SC2VLT##num##_SC##sc3##_SHIFT) | \
218 ((u64)(sc4val) << SEND_SC2VLT##num##_SC##sc4##_SHIFT) | \
219 ((u64)(sc5val) << SEND_SC2VLT##num##_SC##sc5##_SHIFT) | \
220 ((u64)(sc6val) << SEND_SC2VLT##num##_SC##sc6##_SHIFT) | \
221 ((u64)(sc7val) << SEND_SC2VLT##num##_SC##sc7##_SHIFT) \
222)
223
224#define DC_SC_VL_VAL( \
225 range, \
226 e0, e0val, \
227 e1, e1val, \
228 e2, e2val, \
229 e3, e3val, \
230 e4, e4val, \
231 e5, e5val, \
232 e6, e6val, \
233 e7, e7val, \
234 e8, e8val, \
235 e9, e9val, \
236 e10, e10val, \
237 e11, e11val, \
238 e12, e12val, \
239 e13, e13val, \
240 e14, e14val, \
241 e15, e15val) \
242( \
243 ((u64)(e0val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e0##_SHIFT) | \
244 ((u64)(e1val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e1##_SHIFT) | \
245 ((u64)(e2val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e2##_SHIFT) | \
246 ((u64)(e3val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e3##_SHIFT) | \
247 ((u64)(e4val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e4##_SHIFT) | \
248 ((u64)(e5val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e5##_SHIFT) | \
249 ((u64)(e6val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e6##_SHIFT) | \
250 ((u64)(e7val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e7##_SHIFT) | \
251 ((u64)(e8val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e8##_SHIFT) | \
252 ((u64)(e9val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e9##_SHIFT) | \
253 ((u64)(e10val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e10##_SHIFT) | \
254 ((u64)(e11val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e11##_SHIFT) | \
255 ((u64)(e12val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e12##_SHIFT) | \
256 ((u64)(e13val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e13##_SHIFT) | \
257 ((u64)(e14val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e14##_SHIFT) | \
258 ((u64)(e15val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e15##_SHIFT) \
259)
260
261/* all CceStatus sub-block freeze bits */
262#define ALL_FROZE (CCE_STATUS_SDMA_FROZE_SMASK \
263 | CCE_STATUS_RXE_FROZE_SMASK \
264 | CCE_STATUS_TXE_FROZE_SMASK \
265 | CCE_STATUS_TXE_PIO_FROZE_SMASK)
266/* all CceStatus sub-block TXE pause bits */
267#define ALL_TXE_PAUSE (CCE_STATUS_TXE_PIO_PAUSED_SMASK \
268 | CCE_STATUS_TXE_PAUSED_SMASK \
269 | CCE_STATUS_SDMA_PAUSED_SMASK)
270/* all CceStatus sub-block RXE pause bits */
271#define ALL_RXE_PAUSE CCE_STATUS_RXE_PAUSED_SMASK
272
Jakub Pawlak2b719042016-07-01 16:01:22 -0700273#define CNTR_MAX 0xFFFFFFFFFFFFFFFFULL
274#define CNTR_32BIT_MAX 0x00000000FFFFFFFF
275
Mike Marciniszyn77241052015-07-30 15:17:43 -0400276/*
277 * CCE Error flags.
278 */
279static struct flag_table cce_err_status_flags[] = {
280/* 0*/ FLAG_ENTRY0("CceCsrParityErr",
281 CCE_ERR_STATUS_CCE_CSR_PARITY_ERR_SMASK),
282/* 1*/ FLAG_ENTRY0("CceCsrReadBadAddrErr",
283 CCE_ERR_STATUS_CCE_CSR_READ_BAD_ADDR_ERR_SMASK),
284/* 2*/ FLAG_ENTRY0("CceCsrWriteBadAddrErr",
285 CCE_ERR_STATUS_CCE_CSR_WRITE_BAD_ADDR_ERR_SMASK),
286/* 3*/ FLAG_ENTRY0("CceTrgtAsyncFifoParityErr",
287 CCE_ERR_STATUS_CCE_TRGT_ASYNC_FIFO_PARITY_ERR_SMASK),
288/* 4*/ FLAG_ENTRY0("CceTrgtAccessErr",
289 CCE_ERR_STATUS_CCE_TRGT_ACCESS_ERR_SMASK),
290/* 5*/ FLAG_ENTRY0("CceRspdDataParityErr",
291 CCE_ERR_STATUS_CCE_RSPD_DATA_PARITY_ERR_SMASK),
292/* 6*/ FLAG_ENTRY0("CceCli0AsyncFifoParityErr",
293 CCE_ERR_STATUS_CCE_CLI0_ASYNC_FIFO_PARITY_ERR_SMASK),
294/* 7*/ FLAG_ENTRY0("CceCsrCfgBusParityErr",
295 CCE_ERR_STATUS_CCE_CSR_CFG_BUS_PARITY_ERR_SMASK),
296/* 8*/ FLAG_ENTRY0("CceCli2AsyncFifoParityErr",
297 CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK),
298/* 9*/ FLAG_ENTRY0("CceCli1AsyncFifoPioCrdtParityErr",
299 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR_SMASK),
300/*10*/ FLAG_ENTRY0("CceCli1AsyncFifoPioCrdtParityErr",
301 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR_SMASK),
302/*11*/ FLAG_ENTRY0("CceCli1AsyncFifoRxdmaParityError",
303 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERROR_SMASK),
304/*12*/ FLAG_ENTRY0("CceCli1AsyncFifoDbgParityError",
305 CCE_ERR_STATUS_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERROR_SMASK),
306/*13*/ FLAG_ENTRY0("PcicRetryMemCorErr",
307 CCE_ERR_STATUS_PCIC_RETRY_MEM_COR_ERR_SMASK),
308/*14*/ FLAG_ENTRY0("PcicRetryMemCorErr",
309 CCE_ERR_STATUS_PCIC_RETRY_SOT_MEM_COR_ERR_SMASK),
310/*15*/ FLAG_ENTRY0("PcicPostHdQCorErr",
311 CCE_ERR_STATUS_PCIC_POST_HD_QCOR_ERR_SMASK),
312/*16*/ FLAG_ENTRY0("PcicPostHdQCorErr",
313 CCE_ERR_STATUS_PCIC_POST_DAT_QCOR_ERR_SMASK),
314/*17*/ FLAG_ENTRY0("PcicPostHdQCorErr",
315 CCE_ERR_STATUS_PCIC_CPL_HD_QCOR_ERR_SMASK),
316/*18*/ FLAG_ENTRY0("PcicCplDatQCorErr",
317 CCE_ERR_STATUS_PCIC_CPL_DAT_QCOR_ERR_SMASK),
318/*19*/ FLAG_ENTRY0("PcicNPostHQParityErr",
319 CCE_ERR_STATUS_PCIC_NPOST_HQ_PARITY_ERR_SMASK),
320/*20*/ FLAG_ENTRY0("PcicNPostDatQParityErr",
321 CCE_ERR_STATUS_PCIC_NPOST_DAT_QPARITY_ERR_SMASK),
322/*21*/ FLAG_ENTRY0("PcicRetryMemUncErr",
323 CCE_ERR_STATUS_PCIC_RETRY_MEM_UNC_ERR_SMASK),
324/*22*/ FLAG_ENTRY0("PcicRetrySotMemUncErr",
325 CCE_ERR_STATUS_PCIC_RETRY_SOT_MEM_UNC_ERR_SMASK),
326/*23*/ FLAG_ENTRY0("PcicPostHdQUncErr",
327 CCE_ERR_STATUS_PCIC_POST_HD_QUNC_ERR_SMASK),
328/*24*/ FLAG_ENTRY0("PcicPostDatQUncErr",
329 CCE_ERR_STATUS_PCIC_POST_DAT_QUNC_ERR_SMASK),
330/*25*/ FLAG_ENTRY0("PcicCplHdQUncErr",
331 CCE_ERR_STATUS_PCIC_CPL_HD_QUNC_ERR_SMASK),
332/*26*/ FLAG_ENTRY0("PcicCplDatQUncErr",
333 CCE_ERR_STATUS_PCIC_CPL_DAT_QUNC_ERR_SMASK),
334/*27*/ FLAG_ENTRY0("PcicTransmitFrontParityErr",
335 CCE_ERR_STATUS_PCIC_TRANSMIT_FRONT_PARITY_ERR_SMASK),
336/*28*/ FLAG_ENTRY0("PcicTransmitBackParityErr",
337 CCE_ERR_STATUS_PCIC_TRANSMIT_BACK_PARITY_ERR_SMASK),
338/*29*/ FLAG_ENTRY0("PcicReceiveParityErr",
339 CCE_ERR_STATUS_PCIC_RECEIVE_PARITY_ERR_SMASK),
340/*30*/ FLAG_ENTRY0("CceTrgtCplTimeoutErr",
341 CCE_ERR_STATUS_CCE_TRGT_CPL_TIMEOUT_ERR_SMASK),
342/*31*/ FLAG_ENTRY0("LATriggered",
343 CCE_ERR_STATUS_LA_TRIGGERED_SMASK),
344/*32*/ FLAG_ENTRY0("CceSegReadBadAddrErr",
345 CCE_ERR_STATUS_CCE_SEG_READ_BAD_ADDR_ERR_SMASK),
346/*33*/ FLAG_ENTRY0("CceSegWriteBadAddrErr",
347 CCE_ERR_STATUS_CCE_SEG_WRITE_BAD_ADDR_ERR_SMASK),
348/*34*/ FLAG_ENTRY0("CceRcplAsyncFifoParityErr",
349 CCE_ERR_STATUS_CCE_RCPL_ASYNC_FIFO_PARITY_ERR_SMASK),
350/*35*/ FLAG_ENTRY0("CceRxdmaConvFifoParityErr",
351 CCE_ERR_STATUS_CCE_RXDMA_CONV_FIFO_PARITY_ERR_SMASK),
352/*36*/ FLAG_ENTRY0("CceMsixTableCorErr",
353 CCE_ERR_STATUS_CCE_MSIX_TABLE_COR_ERR_SMASK),
354/*37*/ FLAG_ENTRY0("CceMsixTableUncErr",
355 CCE_ERR_STATUS_CCE_MSIX_TABLE_UNC_ERR_SMASK),
356/*38*/ FLAG_ENTRY0("CceIntMapCorErr",
357 CCE_ERR_STATUS_CCE_INT_MAP_COR_ERR_SMASK),
358/*39*/ FLAG_ENTRY0("CceIntMapUncErr",
359 CCE_ERR_STATUS_CCE_INT_MAP_UNC_ERR_SMASK),
360/*40*/ FLAG_ENTRY0("CceMsixCsrParityErr",
361 CCE_ERR_STATUS_CCE_MSIX_CSR_PARITY_ERR_SMASK),
362/*41-63 reserved*/
363};
364
365/*
366 * Misc Error flags
367 */
368#define MES(text) MISC_ERR_STATUS_MISC_##text##_ERR_SMASK
369static struct flag_table misc_err_status_flags[] = {
370/* 0*/ FLAG_ENTRY0("CSR_PARITY", MES(CSR_PARITY)),
371/* 1*/ FLAG_ENTRY0("CSR_READ_BAD_ADDR", MES(CSR_READ_BAD_ADDR)),
372/* 2*/ FLAG_ENTRY0("CSR_WRITE_BAD_ADDR", MES(CSR_WRITE_BAD_ADDR)),
373/* 3*/ FLAG_ENTRY0("SBUS_WRITE_FAILED", MES(SBUS_WRITE_FAILED)),
374/* 4*/ FLAG_ENTRY0("KEY_MISMATCH", MES(KEY_MISMATCH)),
375/* 5*/ FLAG_ENTRY0("FW_AUTH_FAILED", MES(FW_AUTH_FAILED)),
376/* 6*/ FLAG_ENTRY0("EFUSE_CSR_PARITY", MES(EFUSE_CSR_PARITY)),
377/* 7*/ FLAG_ENTRY0("EFUSE_READ_BAD_ADDR", MES(EFUSE_READ_BAD_ADDR)),
378/* 8*/ FLAG_ENTRY0("EFUSE_WRITE", MES(EFUSE_WRITE)),
379/* 9*/ FLAG_ENTRY0("EFUSE_DONE_PARITY", MES(EFUSE_DONE_PARITY)),
380/*10*/ FLAG_ENTRY0("INVALID_EEP_CMD", MES(INVALID_EEP_CMD)),
381/*11*/ FLAG_ENTRY0("MBIST_FAIL", MES(MBIST_FAIL)),
382/*12*/ FLAG_ENTRY0("PLL_LOCK_FAIL", MES(PLL_LOCK_FAIL))
383};
384
385/*
386 * TXE PIO Error flags and consequences
387 */
388static struct flag_table pio_err_status_flags[] = {
389/* 0*/ FLAG_ENTRY("PioWriteBadCtxt",
390 SEC_WRITE_DROPPED,
391 SEND_PIO_ERR_STATUS_PIO_WRITE_BAD_CTXT_ERR_SMASK),
392/* 1*/ FLAG_ENTRY("PioWriteAddrParity",
393 SEC_SPC_FREEZE,
394 SEND_PIO_ERR_STATUS_PIO_WRITE_ADDR_PARITY_ERR_SMASK),
395/* 2*/ FLAG_ENTRY("PioCsrParity",
396 SEC_SPC_FREEZE,
397 SEND_PIO_ERR_STATUS_PIO_CSR_PARITY_ERR_SMASK),
398/* 3*/ FLAG_ENTRY("PioSbMemFifo0",
399 SEC_SPC_FREEZE,
400 SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO0_ERR_SMASK),
401/* 4*/ FLAG_ENTRY("PioSbMemFifo1",
402 SEC_SPC_FREEZE,
403 SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO1_ERR_SMASK),
404/* 5*/ FLAG_ENTRY("PioPccFifoParity",
405 SEC_SPC_FREEZE,
406 SEND_PIO_ERR_STATUS_PIO_PCC_FIFO_PARITY_ERR_SMASK),
407/* 6*/ FLAG_ENTRY("PioPecFifoParity",
408 SEC_SPC_FREEZE,
409 SEND_PIO_ERR_STATUS_PIO_PEC_FIFO_PARITY_ERR_SMASK),
410/* 7*/ FLAG_ENTRY("PioSbrdctlCrrelParity",
411 SEC_SPC_FREEZE,
412 SEND_PIO_ERR_STATUS_PIO_SBRDCTL_CRREL_PARITY_ERR_SMASK),
413/* 8*/ FLAG_ENTRY("PioSbrdctrlCrrelFifoParity",
414 SEC_SPC_FREEZE,
415 SEND_PIO_ERR_STATUS_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR_SMASK),
416/* 9*/ FLAG_ENTRY("PioPktEvictFifoParityErr",
417 SEC_SPC_FREEZE,
418 SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_FIFO_PARITY_ERR_SMASK),
419/*10*/ FLAG_ENTRY("PioSmPktResetParity",
420 SEC_SPC_FREEZE,
421 SEND_PIO_ERR_STATUS_PIO_SM_PKT_RESET_PARITY_ERR_SMASK),
422/*11*/ FLAG_ENTRY("PioVlLenMemBank0Unc",
423 SEC_SPC_FREEZE,
424 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_UNC_ERR_SMASK),
425/*12*/ FLAG_ENTRY("PioVlLenMemBank1Unc",
426 SEC_SPC_FREEZE,
427 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_UNC_ERR_SMASK),
428/*13*/ FLAG_ENTRY("PioVlLenMemBank0Cor",
429 0,
430 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_COR_ERR_SMASK),
431/*14*/ FLAG_ENTRY("PioVlLenMemBank1Cor",
432 0,
433 SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_COR_ERR_SMASK),
434/*15*/ FLAG_ENTRY("PioCreditRetFifoParity",
435 SEC_SPC_FREEZE,
436 SEND_PIO_ERR_STATUS_PIO_CREDIT_RET_FIFO_PARITY_ERR_SMASK),
437/*16*/ FLAG_ENTRY("PioPpmcPblFifo",
438 SEC_SPC_FREEZE,
439 SEND_PIO_ERR_STATUS_PIO_PPMC_PBL_FIFO_ERR_SMASK),
440/*17*/ FLAG_ENTRY("PioInitSmIn",
441 0,
442 SEND_PIO_ERR_STATUS_PIO_INIT_SM_IN_ERR_SMASK),
443/*18*/ FLAG_ENTRY("PioPktEvictSmOrArbSm",
444 SEC_SPC_FREEZE,
445 SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_SM_OR_ARB_SM_ERR_SMASK),
446/*19*/ FLAG_ENTRY("PioHostAddrMemUnc",
447 SEC_SPC_FREEZE,
448 SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_UNC_ERR_SMASK),
449/*20*/ FLAG_ENTRY("PioHostAddrMemCor",
450 0,
451 SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_COR_ERR_SMASK),
452/*21*/ FLAG_ENTRY("PioWriteDataParity",
453 SEC_SPC_FREEZE,
454 SEND_PIO_ERR_STATUS_PIO_WRITE_DATA_PARITY_ERR_SMASK),
455/*22*/ FLAG_ENTRY("PioStateMachine",
456 SEC_SPC_FREEZE,
457 SEND_PIO_ERR_STATUS_PIO_STATE_MACHINE_ERR_SMASK),
458/*23*/ FLAG_ENTRY("PioWriteQwValidParity",
Jubin John8638b772016-02-14 20:19:24 -0800459 SEC_WRITE_DROPPED | SEC_SPC_FREEZE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400460 SEND_PIO_ERR_STATUS_PIO_WRITE_QW_VALID_PARITY_ERR_SMASK),
461/*24*/ FLAG_ENTRY("PioBlockQwCountParity",
Jubin John8638b772016-02-14 20:19:24 -0800462 SEC_WRITE_DROPPED | SEC_SPC_FREEZE,
Mike Marciniszyn77241052015-07-30 15:17:43 -0400463 SEND_PIO_ERR_STATUS_PIO_BLOCK_QW_COUNT_PARITY_ERR_SMASK),
464/*25*/ FLAG_ENTRY("PioVlfVlLenParity",
465 SEC_SPC_FREEZE,
466 SEND_PIO_ERR_STATUS_PIO_VLF_VL_LEN_PARITY_ERR_SMASK),
467/*26*/ FLAG_ENTRY("PioVlfSopParity",
468 SEC_SPC_FREEZE,
469 SEND_PIO_ERR_STATUS_PIO_VLF_SOP_PARITY_ERR_SMASK),
470/*27*/ FLAG_ENTRY("PioVlFifoParity",
471 SEC_SPC_FREEZE,
472 SEND_PIO_ERR_STATUS_PIO_VL_FIFO_PARITY_ERR_SMASK),
473/*28*/ FLAG_ENTRY("PioPpmcBqcMemParity",
474 SEC_SPC_FREEZE,
475 SEND_PIO_ERR_STATUS_PIO_PPMC_BQC_MEM_PARITY_ERR_SMASK),
476/*29*/ FLAG_ENTRY("PioPpmcSopLen",
477 SEC_SPC_FREEZE,
478 SEND_PIO_ERR_STATUS_PIO_PPMC_SOP_LEN_ERR_SMASK),
479/*30-31 reserved*/
480/*32*/ FLAG_ENTRY("PioCurrentFreeCntParity",
481 SEC_SPC_FREEZE,
482 SEND_PIO_ERR_STATUS_PIO_CURRENT_FREE_CNT_PARITY_ERR_SMASK),
483/*33*/ FLAG_ENTRY("PioLastReturnedCntParity",
484 SEC_SPC_FREEZE,
485 SEND_PIO_ERR_STATUS_PIO_LAST_RETURNED_CNT_PARITY_ERR_SMASK),
486/*34*/ FLAG_ENTRY("PioPccSopHeadParity",
487 SEC_SPC_FREEZE,
488 SEND_PIO_ERR_STATUS_PIO_PCC_SOP_HEAD_PARITY_ERR_SMASK),
489/*35*/ FLAG_ENTRY("PioPecSopHeadParityErr",
490 SEC_SPC_FREEZE,
491 SEND_PIO_ERR_STATUS_PIO_PEC_SOP_HEAD_PARITY_ERR_SMASK),
492/*36-63 reserved*/
493};
494
495/* TXE PIO errors that cause an SPC freeze */
496#define ALL_PIO_FREEZE_ERR \
497 (SEND_PIO_ERR_STATUS_PIO_WRITE_ADDR_PARITY_ERR_SMASK \
498 | SEND_PIO_ERR_STATUS_PIO_CSR_PARITY_ERR_SMASK \
499 | SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO0_ERR_SMASK \
500 | SEND_PIO_ERR_STATUS_PIO_SB_MEM_FIFO1_ERR_SMASK \
501 | SEND_PIO_ERR_STATUS_PIO_PCC_FIFO_PARITY_ERR_SMASK \
502 | SEND_PIO_ERR_STATUS_PIO_PEC_FIFO_PARITY_ERR_SMASK \
503 | SEND_PIO_ERR_STATUS_PIO_SBRDCTL_CRREL_PARITY_ERR_SMASK \
504 | SEND_PIO_ERR_STATUS_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR_SMASK \
505 | SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_FIFO_PARITY_ERR_SMASK \
506 | SEND_PIO_ERR_STATUS_PIO_SM_PKT_RESET_PARITY_ERR_SMASK \
507 | SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK0_UNC_ERR_SMASK \
508 | SEND_PIO_ERR_STATUS_PIO_VL_LEN_MEM_BANK1_UNC_ERR_SMASK \
509 | SEND_PIO_ERR_STATUS_PIO_CREDIT_RET_FIFO_PARITY_ERR_SMASK \
510 | SEND_PIO_ERR_STATUS_PIO_PPMC_PBL_FIFO_ERR_SMASK \
511 | SEND_PIO_ERR_STATUS_PIO_PKT_EVICT_SM_OR_ARB_SM_ERR_SMASK \
512 | SEND_PIO_ERR_STATUS_PIO_HOST_ADDR_MEM_UNC_ERR_SMASK \
513 | SEND_PIO_ERR_STATUS_PIO_WRITE_DATA_PARITY_ERR_SMASK \
514 | SEND_PIO_ERR_STATUS_PIO_STATE_MACHINE_ERR_SMASK \
515 | SEND_PIO_ERR_STATUS_PIO_WRITE_QW_VALID_PARITY_ERR_SMASK \
516 | SEND_PIO_ERR_STATUS_PIO_BLOCK_QW_COUNT_PARITY_ERR_SMASK \
517 | SEND_PIO_ERR_STATUS_PIO_VLF_VL_LEN_PARITY_ERR_SMASK \
518 | SEND_PIO_ERR_STATUS_PIO_VLF_SOP_PARITY_ERR_SMASK \
519 | SEND_PIO_ERR_STATUS_PIO_VL_FIFO_PARITY_ERR_SMASK \
520 | SEND_PIO_ERR_STATUS_PIO_PPMC_BQC_MEM_PARITY_ERR_SMASK \
521 | SEND_PIO_ERR_STATUS_PIO_PPMC_SOP_LEN_ERR_SMASK \
522 | SEND_PIO_ERR_STATUS_PIO_CURRENT_FREE_CNT_PARITY_ERR_SMASK \
523 | SEND_PIO_ERR_STATUS_PIO_LAST_RETURNED_CNT_PARITY_ERR_SMASK \
524 | SEND_PIO_ERR_STATUS_PIO_PCC_SOP_HEAD_PARITY_ERR_SMASK \
525 | SEND_PIO_ERR_STATUS_PIO_PEC_SOP_HEAD_PARITY_ERR_SMASK)
526
527/*
528 * TXE SDMA Error flags
529 */
530static struct flag_table sdma_err_status_flags[] = {
531/* 0*/ FLAG_ENTRY0("SDmaRpyTagErr",
532 SEND_DMA_ERR_STATUS_SDMA_RPY_TAG_ERR_SMASK),
533/* 1*/ FLAG_ENTRY0("SDmaCsrParityErr",
534 SEND_DMA_ERR_STATUS_SDMA_CSR_PARITY_ERR_SMASK),
535/* 2*/ FLAG_ENTRY0("SDmaPcieReqTrackingUncErr",
536 SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_UNC_ERR_SMASK),
537/* 3*/ FLAG_ENTRY0("SDmaPcieReqTrackingCorErr",
538 SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_COR_ERR_SMASK),
539/*04-63 reserved*/
540};
541
542/* TXE SDMA errors that cause an SPC freeze */
543#define ALL_SDMA_FREEZE_ERR \
544 (SEND_DMA_ERR_STATUS_SDMA_RPY_TAG_ERR_SMASK \
545 | SEND_DMA_ERR_STATUS_SDMA_CSR_PARITY_ERR_SMASK \
546 | SEND_DMA_ERR_STATUS_SDMA_PCIE_REQ_TRACKING_UNC_ERR_SMASK)
547
Mike Marciniszyn69a00b82016-02-03 14:31:49 -0800548/* SendEgressErrInfo bits that correspond to a PortXmitDiscard counter */
549#define PORT_DISCARD_EGRESS_ERRS \
550 (SEND_EGRESS_ERR_INFO_TOO_LONG_IB_PACKET_ERR_SMASK \
551 | SEND_EGRESS_ERR_INFO_VL_MAPPING_ERR_SMASK \
552 | SEND_EGRESS_ERR_INFO_VL_ERR_SMASK)
553
Mike Marciniszyn77241052015-07-30 15:17:43 -0400554/*
555 * TXE Egress Error flags
556 */
557#define SEES(text) SEND_EGRESS_ERR_STATUS_##text##_ERR_SMASK
558static struct flag_table egress_err_status_flags[] = {
559/* 0*/ FLAG_ENTRY0("TxPktIntegrityMemCorErr", SEES(TX_PKT_INTEGRITY_MEM_COR)),
560/* 1*/ FLAG_ENTRY0("TxPktIntegrityMemUncErr", SEES(TX_PKT_INTEGRITY_MEM_UNC)),
561/* 2 reserved */
562/* 3*/ FLAG_ENTRY0("TxEgressFifoUnderrunOrParityErr",
563 SEES(TX_EGRESS_FIFO_UNDERRUN_OR_PARITY)),
564/* 4*/ FLAG_ENTRY0("TxLinkdownErr", SEES(TX_LINKDOWN)),
565/* 5*/ FLAG_ENTRY0("TxIncorrectLinkStateErr", SEES(TX_INCORRECT_LINK_STATE)),
566/* 6 reserved */
567/* 7*/ FLAG_ENTRY0("TxPioLaunchIntfParityErr",
568 SEES(TX_PIO_LAUNCH_INTF_PARITY)),
569/* 8*/ FLAG_ENTRY0("TxSdmaLaunchIntfParityErr",
570 SEES(TX_SDMA_LAUNCH_INTF_PARITY)),
571/* 9-10 reserved */
572/*11*/ FLAG_ENTRY0("TxSbrdCtlStateMachineParityErr",
573 SEES(TX_SBRD_CTL_STATE_MACHINE_PARITY)),
574/*12*/ FLAG_ENTRY0("TxIllegalVLErr", SEES(TX_ILLEGAL_VL)),
575/*13*/ FLAG_ENTRY0("TxLaunchCsrParityErr", SEES(TX_LAUNCH_CSR_PARITY)),
576/*14*/ FLAG_ENTRY0("TxSbrdCtlCsrParityErr", SEES(TX_SBRD_CTL_CSR_PARITY)),
577/*15*/ FLAG_ENTRY0("TxConfigParityErr", SEES(TX_CONFIG_PARITY)),
578/*16*/ FLAG_ENTRY0("TxSdma0DisallowedPacketErr",
579 SEES(TX_SDMA0_DISALLOWED_PACKET)),
580/*17*/ FLAG_ENTRY0("TxSdma1DisallowedPacketErr",
581 SEES(TX_SDMA1_DISALLOWED_PACKET)),
582/*18*/ FLAG_ENTRY0("TxSdma2DisallowedPacketErr",
583 SEES(TX_SDMA2_DISALLOWED_PACKET)),
584/*19*/ FLAG_ENTRY0("TxSdma3DisallowedPacketErr",
585 SEES(TX_SDMA3_DISALLOWED_PACKET)),
586/*20*/ FLAG_ENTRY0("TxSdma4DisallowedPacketErr",
587 SEES(TX_SDMA4_DISALLOWED_PACKET)),
588/*21*/ FLAG_ENTRY0("TxSdma5DisallowedPacketErr",
589 SEES(TX_SDMA5_DISALLOWED_PACKET)),
590/*22*/ FLAG_ENTRY0("TxSdma6DisallowedPacketErr",
591 SEES(TX_SDMA6_DISALLOWED_PACKET)),
592/*23*/ FLAG_ENTRY0("TxSdma7DisallowedPacketErr",
593 SEES(TX_SDMA7_DISALLOWED_PACKET)),
594/*24*/ FLAG_ENTRY0("TxSdma8DisallowedPacketErr",
595 SEES(TX_SDMA8_DISALLOWED_PACKET)),
596/*25*/ FLAG_ENTRY0("TxSdma9DisallowedPacketErr",
597 SEES(TX_SDMA9_DISALLOWED_PACKET)),
598/*26*/ FLAG_ENTRY0("TxSdma10DisallowedPacketErr",
599 SEES(TX_SDMA10_DISALLOWED_PACKET)),
600/*27*/ FLAG_ENTRY0("TxSdma11DisallowedPacketErr",
601 SEES(TX_SDMA11_DISALLOWED_PACKET)),
602/*28*/ FLAG_ENTRY0("TxSdma12DisallowedPacketErr",
603 SEES(TX_SDMA12_DISALLOWED_PACKET)),
604/*29*/ FLAG_ENTRY0("TxSdma13DisallowedPacketErr",
605 SEES(TX_SDMA13_DISALLOWED_PACKET)),
606/*30*/ FLAG_ENTRY0("TxSdma14DisallowedPacketErr",
607 SEES(TX_SDMA14_DISALLOWED_PACKET)),
608/*31*/ FLAG_ENTRY0("TxSdma15DisallowedPacketErr",
609 SEES(TX_SDMA15_DISALLOWED_PACKET)),
610/*32*/ FLAG_ENTRY0("TxLaunchFifo0UncOrParityErr",
611 SEES(TX_LAUNCH_FIFO0_UNC_OR_PARITY)),
612/*33*/ FLAG_ENTRY0("TxLaunchFifo1UncOrParityErr",
613 SEES(TX_LAUNCH_FIFO1_UNC_OR_PARITY)),
614/*34*/ FLAG_ENTRY0("TxLaunchFifo2UncOrParityErr",
615 SEES(TX_LAUNCH_FIFO2_UNC_OR_PARITY)),
616/*35*/ FLAG_ENTRY0("TxLaunchFifo3UncOrParityErr",
617 SEES(TX_LAUNCH_FIFO3_UNC_OR_PARITY)),
618/*36*/ FLAG_ENTRY0("TxLaunchFifo4UncOrParityErr",
619 SEES(TX_LAUNCH_FIFO4_UNC_OR_PARITY)),
620/*37*/ FLAG_ENTRY0("TxLaunchFifo5UncOrParityErr",
621 SEES(TX_LAUNCH_FIFO5_UNC_OR_PARITY)),
622/*38*/ FLAG_ENTRY0("TxLaunchFifo6UncOrParityErr",
623 SEES(TX_LAUNCH_FIFO6_UNC_OR_PARITY)),
624/*39*/ FLAG_ENTRY0("TxLaunchFifo7UncOrParityErr",
625 SEES(TX_LAUNCH_FIFO7_UNC_OR_PARITY)),
626/*40*/ FLAG_ENTRY0("TxLaunchFifo8UncOrParityErr",
627 SEES(TX_LAUNCH_FIFO8_UNC_OR_PARITY)),
628/*41*/ FLAG_ENTRY0("TxCreditReturnParityErr", SEES(TX_CREDIT_RETURN_PARITY)),
629/*42*/ FLAG_ENTRY0("TxSbHdrUncErr", SEES(TX_SB_HDR_UNC)),
630/*43*/ FLAG_ENTRY0("TxReadSdmaMemoryUncErr", SEES(TX_READ_SDMA_MEMORY_UNC)),
631/*44*/ FLAG_ENTRY0("TxReadPioMemoryUncErr", SEES(TX_READ_PIO_MEMORY_UNC)),
632/*45*/ FLAG_ENTRY0("TxEgressFifoUncErr", SEES(TX_EGRESS_FIFO_UNC)),
633/*46*/ FLAG_ENTRY0("TxHcrcInsertionErr", SEES(TX_HCRC_INSERTION)),
634/*47*/ FLAG_ENTRY0("TxCreditReturnVLErr", SEES(TX_CREDIT_RETURN_VL)),
635/*48*/ FLAG_ENTRY0("TxLaunchFifo0CorErr", SEES(TX_LAUNCH_FIFO0_COR)),
636/*49*/ FLAG_ENTRY0("TxLaunchFifo1CorErr", SEES(TX_LAUNCH_FIFO1_COR)),
637/*50*/ FLAG_ENTRY0("TxLaunchFifo2CorErr", SEES(TX_LAUNCH_FIFO2_COR)),
638/*51*/ FLAG_ENTRY0("TxLaunchFifo3CorErr", SEES(TX_LAUNCH_FIFO3_COR)),
639/*52*/ FLAG_ENTRY0("TxLaunchFifo4CorErr", SEES(TX_LAUNCH_FIFO4_COR)),
640/*53*/ FLAG_ENTRY0("TxLaunchFifo5CorErr", SEES(TX_LAUNCH_FIFO5_COR)),
641/*54*/ FLAG_ENTRY0("TxLaunchFifo6CorErr", SEES(TX_LAUNCH_FIFO6_COR)),
642/*55*/ FLAG_ENTRY0("TxLaunchFifo7CorErr", SEES(TX_LAUNCH_FIFO7_COR)),
643/*56*/ FLAG_ENTRY0("TxLaunchFifo8CorErr", SEES(TX_LAUNCH_FIFO8_COR)),
644/*57*/ FLAG_ENTRY0("TxCreditOverrunErr", SEES(TX_CREDIT_OVERRUN)),
645/*58*/ FLAG_ENTRY0("TxSbHdrCorErr", SEES(TX_SB_HDR_COR)),
646/*59*/ FLAG_ENTRY0("TxReadSdmaMemoryCorErr", SEES(TX_READ_SDMA_MEMORY_COR)),
647/*60*/ FLAG_ENTRY0("TxReadPioMemoryCorErr", SEES(TX_READ_PIO_MEMORY_COR)),
648/*61*/ FLAG_ENTRY0("TxEgressFifoCorErr", SEES(TX_EGRESS_FIFO_COR)),
649/*62*/ FLAG_ENTRY0("TxReadSdmaMemoryCsrUncErr",
650 SEES(TX_READ_SDMA_MEMORY_CSR_UNC)),
651/*63*/ FLAG_ENTRY0("TxReadPioMemoryCsrUncErr",
652 SEES(TX_READ_PIO_MEMORY_CSR_UNC)),
653};
654
655/*
656 * TXE Egress Error Info flags
657 */
658#define SEEI(text) SEND_EGRESS_ERR_INFO_##text##_ERR_SMASK
659static struct flag_table egress_err_info_flags[] = {
660/* 0*/ FLAG_ENTRY0("Reserved", 0ull),
661/* 1*/ FLAG_ENTRY0("VLErr", SEEI(VL)),
662/* 2*/ FLAG_ENTRY0("JobKeyErr", SEEI(JOB_KEY)),
663/* 3*/ FLAG_ENTRY0("JobKeyErr", SEEI(JOB_KEY)),
664/* 4*/ FLAG_ENTRY0("PartitionKeyErr", SEEI(PARTITION_KEY)),
665/* 5*/ FLAG_ENTRY0("SLIDErr", SEEI(SLID)),
666/* 6*/ FLAG_ENTRY0("OpcodeErr", SEEI(OPCODE)),
667/* 7*/ FLAG_ENTRY0("VLMappingErr", SEEI(VL_MAPPING)),
668/* 8*/ FLAG_ENTRY0("RawErr", SEEI(RAW)),
669/* 9*/ FLAG_ENTRY0("RawIPv6Err", SEEI(RAW_IPV6)),
670/*10*/ FLAG_ENTRY0("GRHErr", SEEI(GRH)),
671/*11*/ FLAG_ENTRY0("BypassErr", SEEI(BYPASS)),
672/*12*/ FLAG_ENTRY0("KDETHPacketsErr", SEEI(KDETH_PACKETS)),
673/*13*/ FLAG_ENTRY0("NonKDETHPacketsErr", SEEI(NON_KDETH_PACKETS)),
674/*14*/ FLAG_ENTRY0("TooSmallIBPacketsErr", SEEI(TOO_SMALL_IB_PACKETS)),
675/*15*/ FLAG_ENTRY0("TooSmallBypassPacketsErr", SEEI(TOO_SMALL_BYPASS_PACKETS)),
676/*16*/ FLAG_ENTRY0("PbcTestErr", SEEI(PBC_TEST)),
677/*17*/ FLAG_ENTRY0("BadPktLenErr", SEEI(BAD_PKT_LEN)),
678/*18*/ FLAG_ENTRY0("TooLongIBPacketErr", SEEI(TOO_LONG_IB_PACKET)),
679/*19*/ FLAG_ENTRY0("TooLongBypassPacketsErr", SEEI(TOO_LONG_BYPASS_PACKETS)),
680/*20*/ FLAG_ENTRY0("PbcStaticRateControlErr", SEEI(PBC_STATIC_RATE_CONTROL)),
681/*21*/ FLAG_ENTRY0("BypassBadPktLenErr", SEEI(BAD_PKT_LEN)),
682};
683
684/* TXE Egress errors that cause an SPC freeze */
685#define ALL_TXE_EGRESS_FREEZE_ERR \
686 (SEES(TX_EGRESS_FIFO_UNDERRUN_OR_PARITY) \
687 | SEES(TX_PIO_LAUNCH_INTF_PARITY) \
688 | SEES(TX_SDMA_LAUNCH_INTF_PARITY) \
689 | SEES(TX_SBRD_CTL_STATE_MACHINE_PARITY) \
690 | SEES(TX_LAUNCH_CSR_PARITY) \
691 | SEES(TX_SBRD_CTL_CSR_PARITY) \
692 | SEES(TX_CONFIG_PARITY) \
693 | SEES(TX_LAUNCH_FIFO0_UNC_OR_PARITY) \
694 | SEES(TX_LAUNCH_FIFO1_UNC_OR_PARITY) \
695 | SEES(TX_LAUNCH_FIFO2_UNC_OR_PARITY) \
696 | SEES(TX_LAUNCH_FIFO3_UNC_OR_PARITY) \
697 | SEES(TX_LAUNCH_FIFO4_UNC_OR_PARITY) \
698 | SEES(TX_LAUNCH_FIFO5_UNC_OR_PARITY) \
699 | SEES(TX_LAUNCH_FIFO6_UNC_OR_PARITY) \
700 | SEES(TX_LAUNCH_FIFO7_UNC_OR_PARITY) \
701 | SEES(TX_LAUNCH_FIFO8_UNC_OR_PARITY) \
702 | SEES(TX_CREDIT_RETURN_PARITY))
703
704/*
705 * TXE Send error flags
706 */
707#define SES(name) SEND_ERR_STATUS_SEND_##name##_ERR_SMASK
708static struct flag_table send_err_status_flags[] = {
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -0500709/* 0*/ FLAG_ENTRY0("SendCsrParityErr", SES(CSR_PARITY)),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400710/* 1*/ FLAG_ENTRY0("SendCsrReadBadAddrErr", SES(CSR_READ_BAD_ADDR)),
711/* 2*/ FLAG_ENTRY0("SendCsrWriteBadAddrErr", SES(CSR_WRITE_BAD_ADDR))
712};
713
714/*
715 * TXE Send Context Error flags and consequences
716 */
717static struct flag_table sc_err_status_flags[] = {
718/* 0*/ FLAG_ENTRY("InconsistentSop",
719 SEC_PACKET_DROPPED | SEC_SC_HALTED,
720 SEND_CTXT_ERR_STATUS_PIO_INCONSISTENT_SOP_ERR_SMASK),
721/* 1*/ FLAG_ENTRY("DisallowedPacket",
722 SEC_PACKET_DROPPED | SEC_SC_HALTED,
723 SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK),
724/* 2*/ FLAG_ENTRY("WriteCrossesBoundary",
725 SEC_WRITE_DROPPED | SEC_SC_HALTED,
726 SEND_CTXT_ERR_STATUS_PIO_WRITE_CROSSES_BOUNDARY_ERR_SMASK),
727/* 3*/ FLAG_ENTRY("WriteOverflow",
728 SEC_WRITE_DROPPED | SEC_SC_HALTED,
729 SEND_CTXT_ERR_STATUS_PIO_WRITE_OVERFLOW_ERR_SMASK),
730/* 4*/ FLAG_ENTRY("WriteOutOfBounds",
731 SEC_WRITE_DROPPED | SEC_SC_HALTED,
732 SEND_CTXT_ERR_STATUS_PIO_WRITE_OUT_OF_BOUNDS_ERR_SMASK),
733/* 5-63 reserved*/
734};
735
736/*
737 * RXE Receive Error flags
738 */
739#define RXES(name) RCV_ERR_STATUS_RX_##name##_ERR_SMASK
740static struct flag_table rxe_err_status_flags[] = {
741/* 0*/ FLAG_ENTRY0("RxDmaCsrCorErr", RXES(DMA_CSR_COR)),
742/* 1*/ FLAG_ENTRY0("RxDcIntfParityErr", RXES(DC_INTF_PARITY)),
743/* 2*/ FLAG_ENTRY0("RxRcvHdrUncErr", RXES(RCV_HDR_UNC)),
744/* 3*/ FLAG_ENTRY0("RxRcvHdrCorErr", RXES(RCV_HDR_COR)),
745/* 4*/ FLAG_ENTRY0("RxRcvDataUncErr", RXES(RCV_DATA_UNC)),
746/* 5*/ FLAG_ENTRY0("RxRcvDataCorErr", RXES(RCV_DATA_COR)),
747/* 6*/ FLAG_ENTRY0("RxRcvQpMapTableUncErr", RXES(RCV_QP_MAP_TABLE_UNC)),
748/* 7*/ FLAG_ENTRY0("RxRcvQpMapTableCorErr", RXES(RCV_QP_MAP_TABLE_COR)),
749/* 8*/ FLAG_ENTRY0("RxRcvCsrParityErr", RXES(RCV_CSR_PARITY)),
750/* 9*/ FLAG_ENTRY0("RxDcSopEopParityErr", RXES(DC_SOP_EOP_PARITY)),
751/*10*/ FLAG_ENTRY0("RxDmaFlagUncErr", RXES(DMA_FLAG_UNC)),
752/*11*/ FLAG_ENTRY0("RxDmaFlagCorErr", RXES(DMA_FLAG_COR)),
753/*12*/ FLAG_ENTRY0("RxRcvFsmEncodingErr", RXES(RCV_FSM_ENCODING)),
754/*13*/ FLAG_ENTRY0("RxRbufFreeListUncErr", RXES(RBUF_FREE_LIST_UNC)),
755/*14*/ FLAG_ENTRY0("RxRbufFreeListCorErr", RXES(RBUF_FREE_LIST_COR)),
756/*15*/ FLAG_ENTRY0("RxRbufLookupDesRegUncErr", RXES(RBUF_LOOKUP_DES_REG_UNC)),
757/*16*/ FLAG_ENTRY0("RxRbufLookupDesRegUncCorErr",
758 RXES(RBUF_LOOKUP_DES_REG_UNC_COR)),
759/*17*/ FLAG_ENTRY0("RxRbufLookupDesUncErr", RXES(RBUF_LOOKUP_DES_UNC)),
760/*18*/ FLAG_ENTRY0("RxRbufLookupDesCorErr", RXES(RBUF_LOOKUP_DES_COR)),
761/*19*/ FLAG_ENTRY0("RxRbufBlockListReadUncErr",
762 RXES(RBUF_BLOCK_LIST_READ_UNC)),
763/*20*/ FLAG_ENTRY0("RxRbufBlockListReadCorErr",
764 RXES(RBUF_BLOCK_LIST_READ_COR)),
765/*21*/ FLAG_ENTRY0("RxRbufCsrQHeadBufNumParityErr",
766 RXES(RBUF_CSR_QHEAD_BUF_NUM_PARITY)),
767/*22*/ FLAG_ENTRY0("RxRbufCsrQEntCntParityErr",
768 RXES(RBUF_CSR_QENT_CNT_PARITY)),
769/*23*/ FLAG_ENTRY0("RxRbufCsrQNextBufParityErr",
770 RXES(RBUF_CSR_QNEXT_BUF_PARITY)),
771/*24*/ FLAG_ENTRY0("RxRbufCsrQVldBitParityErr",
772 RXES(RBUF_CSR_QVLD_BIT_PARITY)),
773/*25*/ FLAG_ENTRY0("RxRbufCsrQHdPtrParityErr", RXES(RBUF_CSR_QHD_PTR_PARITY)),
774/*26*/ FLAG_ENTRY0("RxRbufCsrQTlPtrParityErr", RXES(RBUF_CSR_QTL_PTR_PARITY)),
775/*27*/ FLAG_ENTRY0("RxRbufCsrQNumOfPktParityErr",
776 RXES(RBUF_CSR_QNUM_OF_PKT_PARITY)),
777/*28*/ FLAG_ENTRY0("RxRbufCsrQEOPDWParityErr", RXES(RBUF_CSR_QEOPDW_PARITY)),
778/*29*/ FLAG_ENTRY0("RxRbufCtxIdParityErr", RXES(RBUF_CTX_ID_PARITY)),
779/*30*/ FLAG_ENTRY0("RxRBufBadLookupErr", RXES(RBUF_BAD_LOOKUP)),
780/*31*/ FLAG_ENTRY0("RxRbufFullErr", RXES(RBUF_FULL)),
781/*32*/ FLAG_ENTRY0("RxRbufEmptyErr", RXES(RBUF_EMPTY)),
782/*33*/ FLAG_ENTRY0("RxRbufFlRdAddrParityErr", RXES(RBUF_FL_RD_ADDR_PARITY)),
783/*34*/ FLAG_ENTRY0("RxRbufFlWrAddrParityErr", RXES(RBUF_FL_WR_ADDR_PARITY)),
784/*35*/ FLAG_ENTRY0("RxRbufFlInitdoneParityErr",
785 RXES(RBUF_FL_INITDONE_PARITY)),
786/*36*/ FLAG_ENTRY0("RxRbufFlInitWrAddrParityErr",
787 RXES(RBUF_FL_INIT_WR_ADDR_PARITY)),
788/*37*/ FLAG_ENTRY0("RxRbufNextFreeBufUncErr", RXES(RBUF_NEXT_FREE_BUF_UNC)),
789/*38*/ FLAG_ENTRY0("RxRbufNextFreeBufCorErr", RXES(RBUF_NEXT_FREE_BUF_COR)),
790/*39*/ FLAG_ENTRY0("RxLookupDesPart1UncErr", RXES(LOOKUP_DES_PART1_UNC)),
791/*40*/ FLAG_ENTRY0("RxLookupDesPart1UncCorErr",
792 RXES(LOOKUP_DES_PART1_UNC_COR)),
793/*41*/ FLAG_ENTRY0("RxLookupDesPart2ParityErr",
794 RXES(LOOKUP_DES_PART2_PARITY)),
795/*42*/ FLAG_ENTRY0("RxLookupRcvArrayUncErr", RXES(LOOKUP_RCV_ARRAY_UNC)),
796/*43*/ FLAG_ENTRY0("RxLookupRcvArrayCorErr", RXES(LOOKUP_RCV_ARRAY_COR)),
797/*44*/ FLAG_ENTRY0("RxLookupCsrParityErr", RXES(LOOKUP_CSR_PARITY)),
798/*45*/ FLAG_ENTRY0("RxHqIntrCsrParityErr", RXES(HQ_INTR_CSR_PARITY)),
799/*46*/ FLAG_ENTRY0("RxHqIntrFsmErr", RXES(HQ_INTR_FSM)),
800/*47*/ FLAG_ENTRY0("RxRbufDescPart1UncErr", RXES(RBUF_DESC_PART1_UNC)),
801/*48*/ FLAG_ENTRY0("RxRbufDescPart1CorErr", RXES(RBUF_DESC_PART1_COR)),
802/*49*/ FLAG_ENTRY0("RxRbufDescPart2UncErr", RXES(RBUF_DESC_PART2_UNC)),
803/*50*/ FLAG_ENTRY0("RxRbufDescPart2CorErr", RXES(RBUF_DESC_PART2_COR)),
804/*51*/ FLAG_ENTRY0("RxDmaHdrFifoRdUncErr", RXES(DMA_HDR_FIFO_RD_UNC)),
805/*52*/ FLAG_ENTRY0("RxDmaHdrFifoRdCorErr", RXES(DMA_HDR_FIFO_RD_COR)),
806/*53*/ FLAG_ENTRY0("RxDmaDataFifoRdUncErr", RXES(DMA_DATA_FIFO_RD_UNC)),
807/*54*/ FLAG_ENTRY0("RxDmaDataFifoRdCorErr", RXES(DMA_DATA_FIFO_RD_COR)),
808/*55*/ FLAG_ENTRY0("RxRbufDataUncErr", RXES(RBUF_DATA_UNC)),
809/*56*/ FLAG_ENTRY0("RxRbufDataCorErr", RXES(RBUF_DATA_COR)),
810/*57*/ FLAG_ENTRY0("RxDmaCsrParityErr", RXES(DMA_CSR_PARITY)),
811/*58*/ FLAG_ENTRY0("RxDmaEqFsmEncodingErr", RXES(DMA_EQ_FSM_ENCODING)),
812/*59*/ FLAG_ENTRY0("RxDmaDqFsmEncodingErr", RXES(DMA_DQ_FSM_ENCODING)),
813/*60*/ FLAG_ENTRY0("RxDmaCsrUncErr", RXES(DMA_CSR_UNC)),
814/*61*/ FLAG_ENTRY0("RxCsrReadBadAddrErr", RXES(CSR_READ_BAD_ADDR)),
815/*62*/ FLAG_ENTRY0("RxCsrWriteBadAddrErr", RXES(CSR_WRITE_BAD_ADDR)),
816/*63*/ FLAG_ENTRY0("RxCsrParityErr", RXES(CSR_PARITY))
817};
818
819/* RXE errors that will trigger an SPC freeze */
820#define ALL_RXE_FREEZE_ERR \
821 (RCV_ERR_STATUS_RX_RCV_QP_MAP_TABLE_UNC_ERR_SMASK \
822 | RCV_ERR_STATUS_RX_RCV_CSR_PARITY_ERR_SMASK \
823 | RCV_ERR_STATUS_RX_DMA_FLAG_UNC_ERR_SMASK \
824 | RCV_ERR_STATUS_RX_RCV_FSM_ENCODING_ERR_SMASK \
825 | RCV_ERR_STATUS_RX_RBUF_FREE_LIST_UNC_ERR_SMASK \
826 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_REG_UNC_ERR_SMASK \
827 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR_SMASK \
828 | RCV_ERR_STATUS_RX_RBUF_LOOKUP_DES_UNC_ERR_SMASK \
829 | RCV_ERR_STATUS_RX_RBUF_BLOCK_LIST_READ_UNC_ERR_SMASK \
830 | RCV_ERR_STATUS_RX_RBUF_CSR_QHEAD_BUF_NUM_PARITY_ERR_SMASK \
831 | RCV_ERR_STATUS_RX_RBUF_CSR_QENT_CNT_PARITY_ERR_SMASK \
832 | RCV_ERR_STATUS_RX_RBUF_CSR_QNEXT_BUF_PARITY_ERR_SMASK \
833 | RCV_ERR_STATUS_RX_RBUF_CSR_QVLD_BIT_PARITY_ERR_SMASK \
834 | RCV_ERR_STATUS_RX_RBUF_CSR_QHD_PTR_PARITY_ERR_SMASK \
835 | RCV_ERR_STATUS_RX_RBUF_CSR_QTL_PTR_PARITY_ERR_SMASK \
836 | RCV_ERR_STATUS_RX_RBUF_CSR_QNUM_OF_PKT_PARITY_ERR_SMASK \
837 | RCV_ERR_STATUS_RX_RBUF_CSR_QEOPDW_PARITY_ERR_SMASK \
838 | RCV_ERR_STATUS_RX_RBUF_CTX_ID_PARITY_ERR_SMASK \
839 | RCV_ERR_STATUS_RX_RBUF_BAD_LOOKUP_ERR_SMASK \
840 | RCV_ERR_STATUS_RX_RBUF_FULL_ERR_SMASK \
841 | RCV_ERR_STATUS_RX_RBUF_EMPTY_ERR_SMASK \
842 | RCV_ERR_STATUS_RX_RBUF_FL_RD_ADDR_PARITY_ERR_SMASK \
843 | RCV_ERR_STATUS_RX_RBUF_FL_WR_ADDR_PARITY_ERR_SMASK \
844 | RCV_ERR_STATUS_RX_RBUF_FL_INITDONE_PARITY_ERR_SMASK \
845 | RCV_ERR_STATUS_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR_SMASK \
846 | RCV_ERR_STATUS_RX_RBUF_NEXT_FREE_BUF_UNC_ERR_SMASK \
847 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART1_UNC_ERR_SMASK \
848 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART1_UNC_COR_ERR_SMASK \
849 | RCV_ERR_STATUS_RX_LOOKUP_DES_PART2_PARITY_ERR_SMASK \
850 | RCV_ERR_STATUS_RX_LOOKUP_RCV_ARRAY_UNC_ERR_SMASK \
851 | RCV_ERR_STATUS_RX_LOOKUP_CSR_PARITY_ERR_SMASK \
852 | RCV_ERR_STATUS_RX_HQ_INTR_CSR_PARITY_ERR_SMASK \
853 | RCV_ERR_STATUS_RX_HQ_INTR_FSM_ERR_SMASK \
854 | RCV_ERR_STATUS_RX_RBUF_DESC_PART1_UNC_ERR_SMASK \
855 | RCV_ERR_STATUS_RX_RBUF_DESC_PART1_COR_ERR_SMASK \
856 | RCV_ERR_STATUS_RX_RBUF_DESC_PART2_UNC_ERR_SMASK \
857 | RCV_ERR_STATUS_RX_DMA_HDR_FIFO_RD_UNC_ERR_SMASK \
858 | RCV_ERR_STATUS_RX_DMA_DATA_FIFO_RD_UNC_ERR_SMASK \
859 | RCV_ERR_STATUS_RX_RBUF_DATA_UNC_ERR_SMASK \
860 | RCV_ERR_STATUS_RX_DMA_CSR_PARITY_ERR_SMASK \
861 | RCV_ERR_STATUS_RX_DMA_EQ_FSM_ENCODING_ERR_SMASK \
862 | RCV_ERR_STATUS_RX_DMA_DQ_FSM_ENCODING_ERR_SMASK \
863 | RCV_ERR_STATUS_RX_DMA_CSR_UNC_ERR_SMASK \
864 | RCV_ERR_STATUS_RX_CSR_PARITY_ERR_SMASK)
865
866#define RXE_FREEZE_ABORT_MASK \
867 (RCV_ERR_STATUS_RX_DMA_CSR_UNC_ERR_SMASK | \
868 RCV_ERR_STATUS_RX_DMA_HDR_FIFO_RD_UNC_ERR_SMASK | \
869 RCV_ERR_STATUS_RX_DMA_DATA_FIFO_RD_UNC_ERR_SMASK)
870
871/*
872 * DCC Error Flags
873 */
874#define DCCE(name) DCC_ERR_FLG_##name##_SMASK
875static struct flag_table dcc_err_flags[] = {
876 FLAG_ENTRY0("bad_l2_err", DCCE(BAD_L2_ERR)),
877 FLAG_ENTRY0("bad_sc_err", DCCE(BAD_SC_ERR)),
878 FLAG_ENTRY0("bad_mid_tail_err", DCCE(BAD_MID_TAIL_ERR)),
879 FLAG_ENTRY0("bad_preemption_err", DCCE(BAD_PREEMPTION_ERR)),
880 FLAG_ENTRY0("preemption_err", DCCE(PREEMPTION_ERR)),
881 FLAG_ENTRY0("preemptionvl15_err", DCCE(PREEMPTIONVL15_ERR)),
882 FLAG_ENTRY0("bad_vl_marker_err", DCCE(BAD_VL_MARKER_ERR)),
883 FLAG_ENTRY0("bad_dlid_target_err", DCCE(BAD_DLID_TARGET_ERR)),
884 FLAG_ENTRY0("bad_lver_err", DCCE(BAD_LVER_ERR)),
885 FLAG_ENTRY0("uncorrectable_err", DCCE(UNCORRECTABLE_ERR)),
886 FLAG_ENTRY0("bad_crdt_ack_err", DCCE(BAD_CRDT_ACK_ERR)),
887 FLAG_ENTRY0("unsup_pkt_type", DCCE(UNSUP_PKT_TYPE)),
888 FLAG_ENTRY0("bad_ctrl_flit_err", DCCE(BAD_CTRL_FLIT_ERR)),
889 FLAG_ENTRY0("event_cntr_parity_err", DCCE(EVENT_CNTR_PARITY_ERR)),
890 FLAG_ENTRY0("event_cntr_rollover_err", DCCE(EVENT_CNTR_ROLLOVER_ERR)),
891 FLAG_ENTRY0("link_err", DCCE(LINK_ERR)),
892 FLAG_ENTRY0("misc_cntr_rollover_err", DCCE(MISC_CNTR_ROLLOVER_ERR)),
893 FLAG_ENTRY0("bad_ctrl_dist_err", DCCE(BAD_CTRL_DIST_ERR)),
894 FLAG_ENTRY0("bad_tail_dist_err", DCCE(BAD_TAIL_DIST_ERR)),
895 FLAG_ENTRY0("bad_head_dist_err", DCCE(BAD_HEAD_DIST_ERR)),
896 FLAG_ENTRY0("nonvl15_state_err", DCCE(NONVL15_STATE_ERR)),
897 FLAG_ENTRY0("vl15_multi_err", DCCE(VL15_MULTI_ERR)),
898 FLAG_ENTRY0("bad_pkt_length_err", DCCE(BAD_PKT_LENGTH_ERR)),
899 FLAG_ENTRY0("unsup_vl_err", DCCE(UNSUP_VL_ERR)),
900 FLAG_ENTRY0("perm_nvl15_err", DCCE(PERM_NVL15_ERR)),
901 FLAG_ENTRY0("slid_zero_err", DCCE(SLID_ZERO_ERR)),
902 FLAG_ENTRY0("dlid_zero_err", DCCE(DLID_ZERO_ERR)),
903 FLAG_ENTRY0("length_mtu_err", DCCE(LENGTH_MTU_ERR)),
904 FLAG_ENTRY0("rx_early_drop_err", DCCE(RX_EARLY_DROP_ERR)),
905 FLAG_ENTRY0("late_short_err", DCCE(LATE_SHORT_ERR)),
906 FLAG_ENTRY0("late_long_err", DCCE(LATE_LONG_ERR)),
907 FLAG_ENTRY0("late_ebp_err", DCCE(LATE_EBP_ERR)),
908 FLAG_ENTRY0("fpe_tx_fifo_ovflw_err", DCCE(FPE_TX_FIFO_OVFLW_ERR)),
909 FLAG_ENTRY0("fpe_tx_fifo_unflw_err", DCCE(FPE_TX_FIFO_UNFLW_ERR)),
910 FLAG_ENTRY0("csr_access_blocked_host", DCCE(CSR_ACCESS_BLOCKED_HOST)),
911 FLAG_ENTRY0("csr_access_blocked_uc", DCCE(CSR_ACCESS_BLOCKED_UC)),
912 FLAG_ENTRY0("tx_ctrl_parity_err", DCCE(TX_CTRL_PARITY_ERR)),
913 FLAG_ENTRY0("tx_ctrl_parity_mbe_err", DCCE(TX_CTRL_PARITY_MBE_ERR)),
914 FLAG_ENTRY0("tx_sc_parity_err", DCCE(TX_SC_PARITY_ERR)),
915 FLAG_ENTRY0("rx_ctrl_parity_mbe_err", DCCE(RX_CTRL_PARITY_MBE_ERR)),
916 FLAG_ENTRY0("csr_parity_err", DCCE(CSR_PARITY_ERR)),
917 FLAG_ENTRY0("csr_inval_addr", DCCE(CSR_INVAL_ADDR)),
918 FLAG_ENTRY0("tx_byte_shft_parity_err", DCCE(TX_BYTE_SHFT_PARITY_ERR)),
919 FLAG_ENTRY0("rx_byte_shft_parity_err", DCCE(RX_BYTE_SHFT_PARITY_ERR)),
920 FLAG_ENTRY0("fmconfig_err", DCCE(FMCONFIG_ERR)),
921 FLAG_ENTRY0("rcvport_err", DCCE(RCVPORT_ERR)),
922};
923
924/*
925 * LCB error flags
926 */
927#define LCBE(name) DC_LCB_ERR_FLG_##name##_SMASK
928static struct flag_table lcb_err_flags[] = {
929/* 0*/ FLAG_ENTRY0("CSR_PARITY_ERR", LCBE(CSR_PARITY_ERR)),
930/* 1*/ FLAG_ENTRY0("INVALID_CSR_ADDR", LCBE(INVALID_CSR_ADDR)),
931/* 2*/ FLAG_ENTRY0("RST_FOR_FAILED_DESKEW", LCBE(RST_FOR_FAILED_DESKEW)),
932/* 3*/ FLAG_ENTRY0("ALL_LNS_FAILED_REINIT_TEST",
933 LCBE(ALL_LNS_FAILED_REINIT_TEST)),
934/* 4*/ FLAG_ENTRY0("LOST_REINIT_STALL_OR_TOS", LCBE(LOST_REINIT_STALL_OR_TOS)),
935/* 5*/ FLAG_ENTRY0("TX_LESS_THAN_FOUR_LNS", LCBE(TX_LESS_THAN_FOUR_LNS)),
936/* 6*/ FLAG_ENTRY0("RX_LESS_THAN_FOUR_LNS", LCBE(RX_LESS_THAN_FOUR_LNS)),
937/* 7*/ FLAG_ENTRY0("SEQ_CRC_ERR", LCBE(SEQ_CRC_ERR)),
938/* 8*/ FLAG_ENTRY0("REINIT_FROM_PEER", LCBE(REINIT_FROM_PEER)),
939/* 9*/ FLAG_ENTRY0("REINIT_FOR_LN_DEGRADE", LCBE(REINIT_FOR_LN_DEGRADE)),
940/*10*/ FLAG_ENTRY0("CRC_ERR_CNT_HIT_LIMIT", LCBE(CRC_ERR_CNT_HIT_LIMIT)),
941/*11*/ FLAG_ENTRY0("RCLK_STOPPED", LCBE(RCLK_STOPPED)),
942/*12*/ FLAG_ENTRY0("UNEXPECTED_REPLAY_MARKER", LCBE(UNEXPECTED_REPLAY_MARKER)),
943/*13*/ FLAG_ENTRY0("UNEXPECTED_ROUND_TRIP_MARKER",
944 LCBE(UNEXPECTED_ROUND_TRIP_MARKER)),
945/*14*/ FLAG_ENTRY0("ILLEGAL_NULL_LTP", LCBE(ILLEGAL_NULL_LTP)),
946/*15*/ FLAG_ENTRY0("ILLEGAL_FLIT_ENCODING", LCBE(ILLEGAL_FLIT_ENCODING)),
947/*16*/ FLAG_ENTRY0("FLIT_INPUT_BUF_OFLW", LCBE(FLIT_INPUT_BUF_OFLW)),
948/*17*/ FLAG_ENTRY0("VL_ACK_INPUT_BUF_OFLW", LCBE(VL_ACK_INPUT_BUF_OFLW)),
949/*18*/ FLAG_ENTRY0("VL_ACK_INPUT_PARITY_ERR", LCBE(VL_ACK_INPUT_PARITY_ERR)),
950/*19*/ FLAG_ENTRY0("VL_ACK_INPUT_WRONG_CRC_MODE",
951 LCBE(VL_ACK_INPUT_WRONG_CRC_MODE)),
952/*20*/ FLAG_ENTRY0("FLIT_INPUT_BUF_MBE", LCBE(FLIT_INPUT_BUF_MBE)),
953/*21*/ FLAG_ENTRY0("FLIT_INPUT_BUF_SBE", LCBE(FLIT_INPUT_BUF_SBE)),
954/*22*/ FLAG_ENTRY0("REPLAY_BUF_MBE", LCBE(REPLAY_BUF_MBE)),
955/*23*/ FLAG_ENTRY0("REPLAY_BUF_SBE", LCBE(REPLAY_BUF_SBE)),
956/*24*/ FLAG_ENTRY0("CREDIT_RETURN_FLIT_MBE", LCBE(CREDIT_RETURN_FLIT_MBE)),
957/*25*/ FLAG_ENTRY0("RST_FOR_LINK_TIMEOUT", LCBE(RST_FOR_LINK_TIMEOUT)),
958/*26*/ FLAG_ENTRY0("RST_FOR_INCOMPLT_RND_TRIP",
959 LCBE(RST_FOR_INCOMPLT_RND_TRIP)),
960/*27*/ FLAG_ENTRY0("HOLD_REINIT", LCBE(HOLD_REINIT)),
961/*28*/ FLAG_ENTRY0("NEG_EDGE_LINK_TRANSFER_ACTIVE",
962 LCBE(NEG_EDGE_LINK_TRANSFER_ACTIVE)),
963/*29*/ FLAG_ENTRY0("REDUNDANT_FLIT_PARITY_ERR",
964 LCBE(REDUNDANT_FLIT_PARITY_ERR))
965};
966
967/*
968 * DC8051 Error Flags
969 */
970#define D8E(name) DC_DC8051_ERR_FLG_##name##_SMASK
971static struct flag_table dc8051_err_flags[] = {
972 FLAG_ENTRY0("SET_BY_8051", D8E(SET_BY_8051)),
973 FLAG_ENTRY0("LOST_8051_HEART_BEAT", D8E(LOST_8051_HEART_BEAT)),
974 FLAG_ENTRY0("CRAM_MBE", D8E(CRAM_MBE)),
975 FLAG_ENTRY0("CRAM_SBE", D8E(CRAM_SBE)),
976 FLAG_ENTRY0("DRAM_MBE", D8E(DRAM_MBE)),
977 FLAG_ENTRY0("DRAM_SBE", D8E(DRAM_SBE)),
978 FLAG_ENTRY0("IRAM_MBE", D8E(IRAM_MBE)),
979 FLAG_ENTRY0("IRAM_SBE", D8E(IRAM_SBE)),
980 FLAG_ENTRY0("UNMATCHED_SECURE_MSG_ACROSS_BCC_LANES",
Jubin John17fb4f22016-02-14 20:21:52 -0800981 D8E(UNMATCHED_SECURE_MSG_ACROSS_BCC_LANES)),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400982 FLAG_ENTRY0("INVALID_CSR_ADDR", D8E(INVALID_CSR_ADDR)),
983};
984
985/*
986 * DC8051 Information Error flags
987 *
988 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.ERROR field.
989 */
990static struct flag_table dc8051_info_err_flags[] = {
991 FLAG_ENTRY0("Spico ROM check failed", SPICO_ROM_FAILED),
992 FLAG_ENTRY0("Unknown frame received", UNKNOWN_FRAME),
993 FLAG_ENTRY0("Target BER not met", TARGET_BER_NOT_MET),
994 FLAG_ENTRY0("Serdes internal loopback failure",
Jubin John17fb4f22016-02-14 20:21:52 -0800995 FAILED_SERDES_INTERNAL_LOOPBACK),
Mike Marciniszyn77241052015-07-30 15:17:43 -0400996 FLAG_ENTRY0("Failed SerDes init", FAILED_SERDES_INIT),
997 FLAG_ENTRY0("Failed LNI(Polling)", FAILED_LNI_POLLING),
998 FLAG_ENTRY0("Failed LNI(Debounce)", FAILED_LNI_DEBOUNCE),
999 FLAG_ENTRY0("Failed LNI(EstbComm)", FAILED_LNI_ESTBCOMM),
1000 FLAG_ENTRY0("Failed LNI(OptEq)", FAILED_LNI_OPTEQ),
1001 FLAG_ENTRY0("Failed LNI(VerifyCap_1)", FAILED_LNI_VERIFY_CAP1),
1002 FLAG_ENTRY0("Failed LNI(VerifyCap_2)", FAILED_LNI_VERIFY_CAP2),
Jubin John8fefef12016-03-05 08:50:38 -08001003 FLAG_ENTRY0("Failed LNI(ConfigLT)", FAILED_LNI_CONFIGLT),
Dean Luick50921be2016-09-25 07:41:53 -07001004 FLAG_ENTRY0("Host Handshake Timeout", HOST_HANDSHAKE_TIMEOUT),
1005 FLAG_ENTRY0("External Device Request Timeout",
1006 EXTERNAL_DEVICE_REQ_TIMEOUT),
Mike Marciniszyn77241052015-07-30 15:17:43 -04001007};
1008
1009/*
1010 * DC8051 Information Host Information flags
1011 *
1012 * Flags in DC8051_DBG_ERR_INFO_SET_BY_8051.HOST_MSG field.
1013 */
1014static struct flag_table dc8051_info_host_msg_flags[] = {
1015 FLAG_ENTRY0("Host request done", 0x0001),
Bartlomiej Dudekddbf2ef2017-06-09 15:59:26 -07001016 FLAG_ENTRY0("BC PWR_MGM message", 0x0002),
1017 FLAG_ENTRY0("BC SMA message", 0x0004),
Mike Marciniszyn77241052015-07-30 15:17:43 -04001018 FLAG_ENTRY0("BC Unknown message (BCC)", 0x0008),
1019 FLAG_ENTRY0("BC Unknown message (LCB)", 0x0010),
1020 FLAG_ENTRY0("External device config request", 0x0020),
1021 FLAG_ENTRY0("VerifyCap all frames received", 0x0040),
1022 FLAG_ENTRY0("LinkUp achieved", 0x0080),
1023 FLAG_ENTRY0("Link going down", 0x0100),
Bartlomiej Dudekddbf2ef2017-06-09 15:59:26 -07001024 FLAG_ENTRY0("Link width downgraded", 0x0200),
Mike Marciniszyn77241052015-07-30 15:17:43 -04001025};
1026
Mike Marciniszyn77241052015-07-30 15:17:43 -04001027static u32 encoded_size(u32 size);
1028static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate);
1029static int set_physical_link_state(struct hfi1_devdata *dd, u64 state);
1030static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
1031 u8 *continuous);
1032static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
1033 u8 *vcu, u16 *vl15buf, u8 *crc_sizes);
1034static void read_vc_remote_link_width(struct hfi1_devdata *dd,
1035 u8 *remote_tx_rate, u16 *link_widths);
Sebastian Sanchez254361c2018-05-02 06:42:21 -07001036static void read_vc_local_link_mode(struct hfi1_devdata *dd, u8 *misc_bits,
1037 u8 *flag_bits, u16 *link_widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001038static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
1039 u8 *device_rev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001040static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx);
1041static int read_tx_settings(struct hfi1_devdata *dd, u8 *enable_lane_tx,
1042 u8 *tx_polarity_inversion,
1043 u8 *rx_polarity_inversion, u8 *max_rate);
1044static void handle_sdma_eng_err(struct hfi1_devdata *dd,
1045 unsigned int context, u64 err_status);
1046static void handle_qsfp_int(struct hfi1_devdata *dd, u32 source, u64 reg);
1047static void handle_dcc_err(struct hfi1_devdata *dd,
1048 unsigned int context, u64 err_status);
1049static void handle_lcb_err(struct hfi1_devdata *dd,
1050 unsigned int context, u64 err_status);
1051static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg);
1052static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1053static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1054static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1055static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1056static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1057static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
1058static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg);
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -07001059static void set_partition_keys(struct hfi1_pportdata *ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001060static const char *link_state_name(u32 state);
1061static const char *link_state_reason_name(struct hfi1_pportdata *ppd,
1062 u32 state);
1063static int do_8051_command(struct hfi1_devdata *dd, u32 type, u64 in_data,
1064 u64 *out_data);
1065static int read_idle_sma(struct hfi1_devdata *dd, u64 *data);
1066static int thermal_init(struct hfi1_devdata *dd);
1067
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -07001068static void update_statusp(struct hfi1_pportdata *ppd, u32 state);
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -07001069static int wait_phys_link_offline_substates(struct hfi1_pportdata *ppd,
1070 int msecs);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001071static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
1072 int msecs);
Jakub Byczkowskid392a672017-08-13 08:08:52 -07001073static void log_state_transition(struct hfi1_pportdata *ppd, u32 state);
1074static void log_physical_state(struct hfi1_pportdata *ppd, u32 state);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -07001075static int wait_physical_linkstate(struct hfi1_pportdata *ppd, u32 state,
1076 int msecs);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001077static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc);
Dean Luickfeb831d2016-04-14 08:31:36 -07001078static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr);
Michael J. Ruhlf4cd8762017-05-04 05:14:39 -07001079static void handle_temp_err(struct hfi1_devdata *dd);
1080static void dc_shutdown(struct hfi1_devdata *dd);
1081static void dc_start(struct hfi1_devdata *dd);
Dean Luick8f000f72016-04-12 11:32:06 -07001082static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
1083 unsigned int *np);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07001084static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd);
Dean Luickec8a1422017-03-20 17:24:39 -07001085static int wait_link_transfer_active(struct hfi1_devdata *dd, int wait_ms);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07001086static void clear_rsm_rule(struct hfi1_devdata *dd, u8 rule_index);
Kamenee Arumugam07190072018-02-01 10:52:28 -08001087static void update_xmit_counters(struct hfi1_pportdata *ppd, u16 link_width);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001088
1089/*
1090 * Error interrupt table entry. This is used as input to the interrupt
1091 * "clear down" routine used for all second tier error interrupt register.
1092 * Second tier interrupt registers have a single bit representing them
1093 * in the top-level CceIntStatus.
1094 */
1095struct err_reg_info {
1096 u32 status; /* status CSR offset */
1097 u32 clear; /* clear CSR offset */
1098 u32 mask; /* mask CSR offset */
1099 void (*handler)(struct hfi1_devdata *dd, u32 source, u64 reg);
1100 const char *desc;
1101};
1102
1103#define NUM_MISC_ERRS (IS_GENERAL_ERR_END - IS_GENERAL_ERR_START)
1104#define NUM_DC_ERRS (IS_DC_END - IS_DC_START)
1105#define NUM_VARIOUS (IS_VARIOUS_END - IS_VARIOUS_START)
1106
1107/*
1108 * Helpers for building HFI and DC error interrupt table entries. Different
1109 * helpers are needed because of inconsistent register names.
1110 */
1111#define EE(reg, handler, desc) \
1112 { reg##_STATUS, reg##_CLEAR, reg##_MASK, \
1113 handler, desc }
1114#define DC_EE1(reg, handler, desc) \
1115 { reg##_FLG, reg##_FLG_CLR, reg##_FLG_EN, handler, desc }
1116#define DC_EE2(reg, handler, desc) \
1117 { reg##_FLG, reg##_CLR, reg##_EN, handler, desc }
1118
1119/*
1120 * Table of the "misc" grouping of error interrupts. Each entry refers to
1121 * another register containing more information.
1122 */
1123static const struct err_reg_info misc_errs[NUM_MISC_ERRS] = {
1124/* 0*/ EE(CCE_ERR, handle_cce_err, "CceErr"),
1125/* 1*/ EE(RCV_ERR, handle_rxe_err, "RxeErr"),
1126/* 2*/ EE(MISC_ERR, handle_misc_err, "MiscErr"),
1127/* 3*/ { 0, 0, 0, NULL }, /* reserved */
1128/* 4*/ EE(SEND_PIO_ERR, handle_pio_err, "PioErr"),
1129/* 5*/ EE(SEND_DMA_ERR, handle_sdma_err, "SDmaErr"),
1130/* 6*/ EE(SEND_EGRESS_ERR, handle_egress_err, "EgressErr"),
1131/* 7*/ EE(SEND_ERR, handle_txe_err, "TxeErr")
1132 /* the rest are reserved */
1133};
1134
1135/*
1136 * Index into the Various section of the interrupt sources
1137 * corresponding to the Critical Temperature interrupt.
1138 */
1139#define TCRIT_INT_SOURCE 4
1140
1141/*
1142 * SDMA error interrupt entry - refers to another register containing more
1143 * information.
1144 */
1145static const struct err_reg_info sdma_eng_err =
1146 EE(SEND_DMA_ENG_ERR, handle_sdma_eng_err, "SDmaEngErr");
1147
1148static const struct err_reg_info various_err[NUM_VARIOUS] = {
1149/* 0*/ { 0, 0, 0, NULL }, /* PbcInt */
1150/* 1*/ { 0, 0, 0, NULL }, /* GpioAssertInt */
1151/* 2*/ EE(ASIC_QSFP1, handle_qsfp_int, "QSFP1"),
1152/* 3*/ EE(ASIC_QSFP2, handle_qsfp_int, "QSFP2"),
1153/* 4*/ { 0, 0, 0, NULL }, /* TCritInt */
1154 /* rest are reserved */
1155};
1156
1157/*
1158 * The DC encoding of mtu_cap for 10K MTU in the DCC_CFG_PORT_CONFIG
1159 * register can not be derived from the MTU value because 10K is not
1160 * a power of 2. Therefore, we need a constant. Everything else can
1161 * be calculated.
1162 */
1163#define DCC_CFG_PORT_MTU_CAP_10240 7
1164
1165/*
1166 * Table of the DC grouping of error interrupts. Each entry refers to
1167 * another register containing more information.
1168 */
1169static const struct err_reg_info dc_errs[NUM_DC_ERRS] = {
1170/* 0*/ DC_EE1(DCC_ERR, handle_dcc_err, "DCC Err"),
1171/* 1*/ DC_EE2(DC_LCB_ERR, handle_lcb_err, "LCB Err"),
1172/* 2*/ DC_EE2(DC_DC8051_ERR, handle_8051_interrupt, "DC8051 Interrupt"),
1173/* 3*/ /* dc_lbm_int - special, see is_dc_int() */
1174 /* the rest are reserved */
1175};
1176
1177struct cntr_entry {
1178 /*
1179 * counter name
1180 */
1181 char *name;
1182
1183 /*
1184 * csr to read for name (if applicable)
1185 */
1186 u64 csr;
1187
1188 /*
1189 * offset into dd or ppd to store the counter's value
1190 */
1191 int offset;
1192
1193 /*
1194 * flags
1195 */
1196 u8 flags;
1197
1198 /*
1199 * accessor for stat element, context either dd or ppd
1200 */
Jubin John17fb4f22016-02-14 20:21:52 -08001201 u64 (*rw_cntr)(const struct cntr_entry *, void *context, int vl,
1202 int mode, u64 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001203};
1204
1205#define C_RCV_HDR_OVF_FIRST C_RCV_HDR_OVF_0
1206#define C_RCV_HDR_OVF_LAST C_RCV_HDR_OVF_159
1207
1208#define CNTR_ELEM(name, csr, offset, flags, accessor) \
1209{ \
1210 name, \
1211 csr, \
1212 offset, \
1213 flags, \
1214 accessor \
1215}
1216
1217/* 32bit RXE */
1218#define RXE32_PORT_CNTR_ELEM(name, counter, flags) \
1219CNTR_ELEM(#name, \
1220 (counter * 8 + RCV_COUNTER_ARRAY32), \
1221 0, flags | CNTR_32BIT, \
1222 port_access_u32_csr)
1223
1224#define RXE32_DEV_CNTR_ELEM(name, counter, flags) \
1225CNTR_ELEM(#name, \
1226 (counter * 8 + RCV_COUNTER_ARRAY32), \
1227 0, flags | CNTR_32BIT, \
1228 dev_access_u32_csr)
1229
1230/* 64bit RXE */
1231#define RXE64_PORT_CNTR_ELEM(name, counter, flags) \
1232CNTR_ELEM(#name, \
1233 (counter * 8 + RCV_COUNTER_ARRAY64), \
1234 0, flags, \
1235 port_access_u64_csr)
1236
1237#define RXE64_DEV_CNTR_ELEM(name, counter, flags) \
1238CNTR_ELEM(#name, \
1239 (counter * 8 + RCV_COUNTER_ARRAY64), \
1240 0, flags, \
1241 dev_access_u64_csr)
1242
1243#define OVR_LBL(ctx) C_RCV_HDR_OVF_ ## ctx
1244#define OVR_ELM(ctx) \
1245CNTR_ELEM("RcvHdrOvr" #ctx, \
Jubin John8638b772016-02-14 20:19:24 -08001246 (RCV_HDR_OVFL_CNT + ctx * 0x100), \
Mike Marciniszyn77241052015-07-30 15:17:43 -04001247 0, CNTR_NORMAL, port_access_u64_csr)
1248
1249/* 32bit TXE */
1250#define TXE32_PORT_CNTR_ELEM(name, counter, flags) \
1251CNTR_ELEM(#name, \
1252 (counter * 8 + SEND_COUNTER_ARRAY32), \
1253 0, flags | CNTR_32BIT, \
1254 port_access_u32_csr)
1255
1256/* 64bit TXE */
1257#define TXE64_PORT_CNTR_ELEM(name, counter, flags) \
1258CNTR_ELEM(#name, \
1259 (counter * 8 + SEND_COUNTER_ARRAY64), \
1260 0, flags, \
1261 port_access_u64_csr)
1262
1263# define TX64_DEV_CNTR_ELEM(name, counter, flags) \
1264CNTR_ELEM(#name,\
1265 counter * 8 + SEND_COUNTER_ARRAY64, \
1266 0, \
1267 flags, \
1268 dev_access_u64_csr)
1269
1270/* CCE */
1271#define CCE_PERF_DEV_CNTR_ELEM(name, counter, flags) \
1272CNTR_ELEM(#name, \
1273 (counter * 8 + CCE_COUNTER_ARRAY32), \
1274 0, flags | CNTR_32BIT, \
1275 dev_access_u32_csr)
1276
1277#define CCE_INT_DEV_CNTR_ELEM(name, counter, flags) \
1278CNTR_ELEM(#name, \
1279 (counter * 8 + CCE_INT_COUNTER_ARRAY32), \
1280 0, flags | CNTR_32BIT, \
1281 dev_access_u32_csr)
1282
1283/* DC */
1284#define DC_PERF_CNTR(name, counter, flags) \
1285CNTR_ELEM(#name, \
1286 counter, \
1287 0, \
1288 flags, \
1289 dev_access_u64_csr)
1290
1291#define DC_PERF_CNTR_LCB(name, counter, flags) \
1292CNTR_ELEM(#name, \
1293 counter, \
1294 0, \
1295 flags, \
1296 dc_access_lcb_cntr)
1297
1298/* ibp counters */
1299#define SW_IBP_CNTR(name, cntr) \
1300CNTR_ELEM(#name, \
1301 0, \
1302 0, \
1303 CNTR_SYNTH, \
1304 access_ibp_##cntr)
1305
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001306/**
1307 * hfi_addr_from_offset - return addr for readq/writeq
1308 * @dd - the dd device
1309 * @offset - the offset of the CSR within bar0
1310 *
1311 * This routine selects the appropriate base address
1312 * based on the indicated offset.
1313 */
1314static inline void __iomem *hfi1_addr_from_offset(
1315 const struct hfi1_devdata *dd,
1316 u32 offset)
1317{
1318 if (offset >= dd->base2_start)
1319 return dd->kregbase2 + (offset - dd->base2_start);
1320 return dd->kregbase1 + offset;
1321}
1322
1323/**
1324 * read_csr - read CSR at the indicated offset
1325 * @dd - the dd device
1326 * @offset - the offset of the CSR within bar0
1327 *
1328 * Return: the value read or all FF's if there
1329 * is no mapping
1330 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001331u64 read_csr(const struct hfi1_devdata *dd, u32 offset)
1332{
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001333 if (dd->flags & HFI1_PRESENT)
1334 return readq(hfi1_addr_from_offset(dd, offset));
Mike Marciniszyn77241052015-07-30 15:17:43 -04001335 return -1;
1336}
1337
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001338/**
1339 * write_csr - write CSR at the indicated offset
1340 * @dd - the dd device
1341 * @offset - the offset of the CSR within bar0
1342 * @value - value to write
1343 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001344void write_csr(const struct hfi1_devdata *dd, u32 offset, u64 value)
1345{
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001346 if (dd->flags & HFI1_PRESENT) {
1347 void __iomem *base = hfi1_addr_from_offset(dd, offset);
1348
1349 /* avoid write to RcvArray */
1350 if (WARN_ON(offset >= RCV_ARRAY && offset < dd->base2_start))
1351 return;
1352 writeq(value, base);
1353 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04001354}
1355
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001356/**
1357 * get_csr_addr - return te iomem address for offset
1358 * @dd - the dd device
1359 * @offset - the offset of the CSR within bar0
1360 *
1361 * Return: The iomem address to use in subsequent
1362 * writeq/readq operations.
1363 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04001364void __iomem *get_csr_addr(
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001365 const struct hfi1_devdata *dd,
Mike Marciniszyn77241052015-07-30 15:17:43 -04001366 u32 offset)
1367{
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07001368 if (dd->flags & HFI1_PRESENT)
1369 return hfi1_addr_from_offset(dd, offset);
1370 return NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001371}
1372
1373static inline u64 read_write_csr(const struct hfi1_devdata *dd, u32 csr,
1374 int mode, u64 value)
1375{
1376 u64 ret;
1377
Mike Marciniszyn77241052015-07-30 15:17:43 -04001378 if (mode == CNTR_MODE_R) {
1379 ret = read_csr(dd, csr);
1380 } else if (mode == CNTR_MODE_W) {
1381 write_csr(dd, csr, value);
1382 ret = value;
1383 } else {
1384 dd_dev_err(dd, "Invalid cntr register access mode");
1385 return 0;
1386 }
1387
1388 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, ret, mode);
1389 return ret;
1390}
1391
1392/* Dev Access */
1393static u64 dev_access_u32_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001394 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001395{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301396 struct hfi1_devdata *dd = context;
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001397 u64 csr = entry->csr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001398
Vennila Megavannana699c6c2016-01-11 18:30:56 -05001399 if (entry->flags & CNTR_SDMA) {
1400 if (vl == CNTR_INVALID_VL)
1401 return 0;
1402 csr += 0x100 * vl;
1403 } else {
1404 if (vl != CNTR_INVALID_VL)
1405 return 0;
1406 }
1407 return read_write_csr(dd, csr, mode, data);
1408}
1409
1410static u64 access_sde_err_cnt(const struct cntr_entry *entry,
1411 void *context, int idx, int mode, u64 data)
1412{
1413 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1414
1415 if (dd->per_sdma && idx < dd->num_sdma)
1416 return dd->per_sdma[idx].err_cnt;
1417 return 0;
1418}
1419
1420static u64 access_sde_int_cnt(const struct cntr_entry *entry,
1421 void *context, int idx, int mode, u64 data)
1422{
1423 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1424
1425 if (dd->per_sdma && idx < dd->num_sdma)
1426 return dd->per_sdma[idx].sdma_int_cnt;
1427 return 0;
1428}
1429
1430static u64 access_sde_idle_int_cnt(const struct cntr_entry *entry,
1431 void *context, int idx, int mode, u64 data)
1432{
1433 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1434
1435 if (dd->per_sdma && idx < dd->num_sdma)
1436 return dd->per_sdma[idx].idle_int_cnt;
1437 return 0;
1438}
1439
1440static u64 access_sde_progress_int_cnt(const struct cntr_entry *entry,
1441 void *context, int idx, int mode,
1442 u64 data)
1443{
1444 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1445
1446 if (dd->per_sdma && idx < dd->num_sdma)
1447 return dd->per_sdma[idx].progress_int_cnt;
1448 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001449}
1450
1451static u64 dev_access_u64_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001452 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001453{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301454 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001455
1456 u64 val = 0;
1457 u64 csr = entry->csr;
1458
1459 if (entry->flags & CNTR_VL) {
1460 if (vl == CNTR_INVALID_VL)
1461 return 0;
1462 csr += 8 * vl;
1463 } else {
1464 if (vl != CNTR_INVALID_VL)
1465 return 0;
1466 }
1467
1468 val = read_write_csr(dd, csr, mode, data);
1469 return val;
1470}
1471
1472static u64 dc_access_lcb_cntr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001473 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001474{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301475 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001476 u32 csr = entry->csr;
1477 int ret = 0;
1478
1479 if (vl != CNTR_INVALID_VL)
1480 return 0;
1481 if (mode == CNTR_MODE_R)
1482 ret = read_lcb_csr(dd, csr, &data);
1483 else if (mode == CNTR_MODE_W)
1484 ret = write_lcb_csr(dd, csr, data);
1485
1486 if (ret) {
1487 dd_dev_err(dd, "Could not acquire LCB for counter 0x%x", csr);
1488 return 0;
1489 }
1490
1491 hfi1_cdbg(CNTR, "csr 0x%x val 0x%llx mode %d", csr, data, mode);
1492 return data;
1493}
1494
1495/* Port Access */
1496static u64 port_access_u32_csr(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001497 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001498{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301499 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001500
1501 if (vl != CNTR_INVALID_VL)
1502 return 0;
1503 return read_write_csr(ppd->dd, entry->csr, mode, data);
1504}
1505
1506static u64 port_access_u64_csr(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001507 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001508{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301509 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001510 u64 val;
1511 u64 csr = entry->csr;
1512
1513 if (entry->flags & CNTR_VL) {
1514 if (vl == CNTR_INVALID_VL)
1515 return 0;
1516 csr += 8 * vl;
1517 } else {
1518 if (vl != CNTR_INVALID_VL)
1519 return 0;
1520 }
1521 val = read_write_csr(ppd->dd, csr, mode, data);
1522 return val;
1523}
1524
1525/* Software defined */
1526static inline u64 read_write_sw(struct hfi1_devdata *dd, u64 *cntr, int mode,
1527 u64 data)
1528{
1529 u64 ret;
1530
1531 if (mode == CNTR_MODE_R) {
1532 ret = *cntr;
1533 } else if (mode == CNTR_MODE_W) {
1534 *cntr = data;
1535 ret = data;
1536 } else {
1537 dd_dev_err(dd, "Invalid cntr sw access mode");
1538 return 0;
1539 }
1540
1541 hfi1_cdbg(CNTR, "val 0x%llx mode %d", ret, mode);
1542
1543 return ret;
1544}
1545
1546static u64 access_sw_link_dn_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001547 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001548{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301549 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001550
1551 if (vl != CNTR_INVALID_VL)
1552 return 0;
1553 return read_write_sw(ppd->dd, &ppd->link_downed, mode, data);
1554}
1555
1556static u64 access_sw_link_up_cnt(const struct cntr_entry *entry, void *context,
Jubin John17fb4f22016-02-14 20:21:52 -08001557 int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001558{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301559 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001560
1561 if (vl != CNTR_INVALID_VL)
1562 return 0;
1563 return read_write_sw(ppd->dd, &ppd->link_up, mode, data);
1564}
1565
Dean Luick6d014532015-12-01 15:38:23 -05001566static u64 access_sw_unknown_frame_cnt(const struct cntr_entry *entry,
1567 void *context, int vl, int mode,
1568 u64 data)
1569{
1570 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1571
1572 if (vl != CNTR_INVALID_VL)
1573 return 0;
1574 return read_write_sw(ppd->dd, &ppd->unknown_frame_count, mode, data);
1575}
1576
Mike Marciniszyn77241052015-07-30 15:17:43 -04001577static u64 access_sw_xmit_discards(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{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001580 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context;
1581 u64 zero = 0;
1582 u64 *counter;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001583
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001584 if (vl == CNTR_INVALID_VL)
1585 counter = &ppd->port_xmit_discards;
1586 else if (vl >= 0 && vl < C_VL_COUNT)
1587 counter = &ppd->port_xmit_discards_vl[vl];
1588 else
1589 counter = &zero;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001590
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08001591 return read_write_sw(ppd->dd, counter, mode, data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001592}
1593
1594static u64 access_xmit_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001595 void *context, int vl, int mode,
1596 u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001597{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301598 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001599
1600 if (vl != CNTR_INVALID_VL)
1601 return 0;
1602
1603 return read_write_sw(ppd->dd, &ppd->port_xmit_constraint_errors,
1604 mode, data);
1605}
1606
1607static u64 access_rcv_constraint_errs(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001608 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001609{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301610 struct hfi1_pportdata *ppd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001611
1612 if (vl != CNTR_INVALID_VL)
1613 return 0;
1614
1615 return read_write_sw(ppd->dd, &ppd->port_rcv_constraint_errors,
1616 mode, data);
1617}
1618
1619u64 get_all_cpu_total(u64 __percpu *cntr)
1620{
1621 int cpu;
1622 u64 counter = 0;
1623
1624 for_each_possible_cpu(cpu)
1625 counter += *per_cpu_ptr(cntr, cpu);
1626 return counter;
1627}
1628
1629static u64 read_write_cpu(struct hfi1_devdata *dd, u64 *z_val,
1630 u64 __percpu *cntr,
1631 int vl, int mode, u64 data)
1632{
Mike Marciniszyn77241052015-07-30 15:17:43 -04001633 u64 ret = 0;
1634
1635 if (vl != CNTR_INVALID_VL)
1636 return 0;
1637
1638 if (mode == CNTR_MODE_R) {
1639 ret = get_all_cpu_total(cntr) - *z_val;
1640 } else if (mode == CNTR_MODE_W) {
1641 /* A write can only zero the counter */
1642 if (data == 0)
1643 *z_val = get_all_cpu_total(cntr);
1644 else
1645 dd_dev_err(dd, "Per CPU cntrs can only be zeroed");
1646 } else {
1647 dd_dev_err(dd, "Invalid cntr sw cpu access mode");
1648 return 0;
1649 }
1650
1651 return ret;
1652}
1653
1654static u64 access_sw_cpu_intr(const struct cntr_entry *entry,
1655 void *context, int vl, int mode, u64 data)
1656{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301657 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001658
1659 return read_write_cpu(dd, &dd->z_int_counter, dd->int_counter, vl,
1660 mode, data);
1661}
1662
1663static u64 access_sw_cpu_rcv_limit(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001664 void *context, int vl, int mode, u64 data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04001665{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301666 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001667
1668 return read_write_cpu(dd, &dd->z_rcv_limit, dd->rcv_limit, vl,
1669 mode, data);
1670}
1671
1672static u64 access_sw_pio_wait(const struct cntr_entry *entry,
1673 void *context, int vl, int mode, u64 data)
1674{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301675 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001676
1677 return dd->verbs_dev.n_piowait;
1678}
1679
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08001680static u64 access_sw_pio_drain(const struct cntr_entry *entry,
1681 void *context, int vl, int mode, u64 data)
1682{
1683 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1684
1685 return dd->verbs_dev.n_piodrain;
1686}
1687
Mike Marciniszyn77241052015-07-30 15:17:43 -04001688static u64 access_sw_vtx_wait(const struct cntr_entry *entry,
1689 void *context, int vl, int mode, u64 data)
1690{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301691 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001692
1693 return dd->verbs_dev.n_txwait;
1694}
1695
1696static u64 access_sw_kmem_wait(const struct cntr_entry *entry,
1697 void *context, int vl, int mode, u64 data)
1698{
Shraddha Barkea787bde2015-10-15 00:58:29 +05301699 struct hfi1_devdata *dd = context;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001700
1701 return dd->verbs_dev.n_kmem_wait;
1702}
1703
Dean Luickb4219222015-10-26 10:28:35 -04001704static u64 access_sw_send_schedule(const struct cntr_entry *entry,
Jubin John17fb4f22016-02-14 20:21:52 -08001705 void *context, int vl, int mode, u64 data)
Dean Luickb4219222015-10-26 10:28:35 -04001706{
1707 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1708
Vennila Megavannan89abfc82016-02-03 14:34:07 -08001709 return read_write_cpu(dd, &dd->z_send_schedule, dd->send_schedule, vl,
1710 mode, data);
Dean Luickb4219222015-10-26 10:28:35 -04001711}
1712
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05001713/* Software counters for the error status bits within MISC_ERR_STATUS */
1714static u64 access_misc_pll_lock_fail_err_cnt(const struct cntr_entry *entry,
1715 void *context, int vl, int mode,
1716 u64 data)
1717{
1718 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1719
1720 return dd->misc_err_status_cnt[12];
1721}
1722
1723static u64 access_misc_mbist_fail_err_cnt(const struct cntr_entry *entry,
1724 void *context, int vl, int mode,
1725 u64 data)
1726{
1727 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1728
1729 return dd->misc_err_status_cnt[11];
1730}
1731
1732static u64 access_misc_invalid_eep_cmd_err_cnt(const struct cntr_entry *entry,
1733 void *context, int vl, int mode,
1734 u64 data)
1735{
1736 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1737
1738 return dd->misc_err_status_cnt[10];
1739}
1740
1741static u64 access_misc_efuse_done_parity_err_cnt(const struct cntr_entry *entry,
1742 void *context, int vl,
1743 int mode, u64 data)
1744{
1745 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1746
1747 return dd->misc_err_status_cnt[9];
1748}
1749
1750static u64 access_misc_efuse_write_err_cnt(const struct cntr_entry *entry,
1751 void *context, int vl, int mode,
1752 u64 data)
1753{
1754 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1755
1756 return dd->misc_err_status_cnt[8];
1757}
1758
1759static u64 access_misc_efuse_read_bad_addr_err_cnt(
1760 const struct cntr_entry *entry,
1761 void *context, int vl, int mode, u64 data)
1762{
1763 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1764
1765 return dd->misc_err_status_cnt[7];
1766}
1767
1768static u64 access_misc_efuse_csr_parity_err_cnt(const struct cntr_entry *entry,
1769 void *context, int vl,
1770 int mode, u64 data)
1771{
1772 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1773
1774 return dd->misc_err_status_cnt[6];
1775}
1776
1777static u64 access_misc_fw_auth_failed_err_cnt(const struct cntr_entry *entry,
1778 void *context, int vl, int mode,
1779 u64 data)
1780{
1781 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1782
1783 return dd->misc_err_status_cnt[5];
1784}
1785
1786static u64 access_misc_key_mismatch_err_cnt(const struct cntr_entry *entry,
1787 void *context, int vl, int mode,
1788 u64 data)
1789{
1790 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1791
1792 return dd->misc_err_status_cnt[4];
1793}
1794
1795static u64 access_misc_sbus_write_failed_err_cnt(const struct cntr_entry *entry,
1796 void *context, int vl,
1797 int mode, u64 data)
1798{
1799 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1800
1801 return dd->misc_err_status_cnt[3];
1802}
1803
1804static u64 access_misc_csr_write_bad_addr_err_cnt(
1805 const struct cntr_entry *entry,
1806 void *context, int vl, int mode, u64 data)
1807{
1808 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1809
1810 return dd->misc_err_status_cnt[2];
1811}
1812
1813static u64 access_misc_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1814 void *context, int vl,
1815 int mode, u64 data)
1816{
1817 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1818
1819 return dd->misc_err_status_cnt[1];
1820}
1821
1822static u64 access_misc_csr_parity_err_cnt(const struct cntr_entry *entry,
1823 void *context, int vl, int mode,
1824 u64 data)
1825{
1826 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1827
1828 return dd->misc_err_status_cnt[0];
1829}
1830
1831/*
1832 * Software counter for the aggregate of
1833 * individual CceErrStatus counters
1834 */
1835static u64 access_sw_cce_err_status_aggregated_cnt(
1836 const struct cntr_entry *entry,
1837 void *context, int vl, int mode, u64 data)
1838{
1839 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1840
1841 return dd->sw_cce_err_status_aggregate;
1842}
1843
1844/*
1845 * Software counters corresponding to each of the
1846 * error status bits within CceErrStatus
1847 */
1848static u64 access_cce_msix_csr_parity_err_cnt(const struct cntr_entry *entry,
1849 void *context, int vl, int mode,
1850 u64 data)
1851{
1852 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1853
1854 return dd->cce_err_status_cnt[40];
1855}
1856
1857static u64 access_cce_int_map_unc_err_cnt(const struct cntr_entry *entry,
1858 void *context, int vl, int mode,
1859 u64 data)
1860{
1861 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1862
1863 return dd->cce_err_status_cnt[39];
1864}
1865
1866static u64 access_cce_int_map_cor_err_cnt(const struct cntr_entry *entry,
1867 void *context, int vl, int mode,
1868 u64 data)
1869{
1870 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1871
1872 return dd->cce_err_status_cnt[38];
1873}
1874
1875static u64 access_cce_msix_table_unc_err_cnt(const struct cntr_entry *entry,
1876 void *context, int vl, int mode,
1877 u64 data)
1878{
1879 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1880
1881 return dd->cce_err_status_cnt[37];
1882}
1883
1884static u64 access_cce_msix_table_cor_err_cnt(const struct cntr_entry *entry,
1885 void *context, int vl, int mode,
1886 u64 data)
1887{
1888 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1889
1890 return dd->cce_err_status_cnt[36];
1891}
1892
1893static u64 access_cce_rxdma_conv_fifo_parity_err_cnt(
1894 const struct cntr_entry *entry,
1895 void *context, int vl, int mode, u64 data)
1896{
1897 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1898
1899 return dd->cce_err_status_cnt[35];
1900}
1901
1902static u64 access_cce_rcpl_async_fifo_parity_err_cnt(
1903 const struct cntr_entry *entry,
1904 void *context, int vl, int mode, u64 data)
1905{
1906 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1907
1908 return dd->cce_err_status_cnt[34];
1909}
1910
1911static u64 access_cce_seg_write_bad_addr_err_cnt(const struct cntr_entry *entry,
1912 void *context, int vl,
1913 int mode, u64 data)
1914{
1915 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1916
1917 return dd->cce_err_status_cnt[33];
1918}
1919
1920static u64 access_cce_seg_read_bad_addr_err_cnt(const struct cntr_entry *entry,
1921 void *context, int vl, int mode,
1922 u64 data)
1923{
1924 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1925
1926 return dd->cce_err_status_cnt[32];
1927}
1928
1929static u64 access_la_triggered_cnt(const struct cntr_entry *entry,
1930 void *context, int vl, int mode, u64 data)
1931{
1932 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1933
1934 return dd->cce_err_status_cnt[31];
1935}
1936
1937static u64 access_cce_trgt_cpl_timeout_err_cnt(const struct cntr_entry *entry,
1938 void *context, int vl, int mode,
1939 u64 data)
1940{
1941 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1942
1943 return dd->cce_err_status_cnt[30];
1944}
1945
1946static u64 access_pcic_receive_parity_err_cnt(const struct cntr_entry *entry,
1947 void *context, int vl, int mode,
1948 u64 data)
1949{
1950 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1951
1952 return dd->cce_err_status_cnt[29];
1953}
1954
1955static u64 access_pcic_transmit_back_parity_err_cnt(
1956 const struct cntr_entry *entry,
1957 void *context, int vl, int mode, u64 data)
1958{
1959 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1960
1961 return dd->cce_err_status_cnt[28];
1962}
1963
1964static u64 access_pcic_transmit_front_parity_err_cnt(
1965 const struct cntr_entry *entry,
1966 void *context, int vl, int mode, u64 data)
1967{
1968 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1969
1970 return dd->cce_err_status_cnt[27];
1971}
1972
1973static u64 access_pcic_cpl_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1974 void *context, int vl, int mode,
1975 u64 data)
1976{
1977 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1978
1979 return dd->cce_err_status_cnt[26];
1980}
1981
1982static u64 access_pcic_cpl_hd_q_unc_err_cnt(const struct cntr_entry *entry,
1983 void *context, int vl, int mode,
1984 u64 data)
1985{
1986 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1987
1988 return dd->cce_err_status_cnt[25];
1989}
1990
1991static u64 access_pcic_post_dat_q_unc_err_cnt(const struct cntr_entry *entry,
1992 void *context, int vl, int mode,
1993 u64 data)
1994{
1995 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
1996
1997 return dd->cce_err_status_cnt[24];
1998}
1999
2000static u64 access_pcic_post_hd_q_unc_err_cnt(const struct cntr_entry *entry,
2001 void *context, int vl, int mode,
2002 u64 data)
2003{
2004 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2005
2006 return dd->cce_err_status_cnt[23];
2007}
2008
2009static u64 access_pcic_retry_sot_mem_unc_err_cnt(const struct cntr_entry *entry,
2010 void *context, int vl,
2011 int mode, u64 data)
2012{
2013 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2014
2015 return dd->cce_err_status_cnt[22];
2016}
2017
2018static u64 access_pcic_retry_mem_unc_err(const struct cntr_entry *entry,
2019 void *context, int vl, int mode,
2020 u64 data)
2021{
2022 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2023
2024 return dd->cce_err_status_cnt[21];
2025}
2026
2027static u64 access_pcic_n_post_dat_q_parity_err_cnt(
2028 const struct cntr_entry *entry,
2029 void *context, int vl, int mode, u64 data)
2030{
2031 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2032
2033 return dd->cce_err_status_cnt[20];
2034}
2035
2036static u64 access_pcic_n_post_h_q_parity_err_cnt(const struct cntr_entry *entry,
2037 void *context, int vl,
2038 int mode, u64 data)
2039{
2040 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2041
2042 return dd->cce_err_status_cnt[19];
2043}
2044
2045static u64 access_pcic_cpl_dat_q_cor_err_cnt(const struct cntr_entry *entry,
2046 void *context, int vl, int mode,
2047 u64 data)
2048{
2049 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2050
2051 return dd->cce_err_status_cnt[18];
2052}
2053
2054static u64 access_pcic_cpl_hd_q_cor_err_cnt(const struct cntr_entry *entry,
2055 void *context, int vl, int mode,
2056 u64 data)
2057{
2058 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2059
2060 return dd->cce_err_status_cnt[17];
2061}
2062
2063static u64 access_pcic_post_dat_q_cor_err_cnt(const struct cntr_entry *entry,
2064 void *context, int vl, int mode,
2065 u64 data)
2066{
2067 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2068
2069 return dd->cce_err_status_cnt[16];
2070}
2071
2072static u64 access_pcic_post_hd_q_cor_err_cnt(const struct cntr_entry *entry,
2073 void *context, int vl, int mode,
2074 u64 data)
2075{
2076 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2077
2078 return dd->cce_err_status_cnt[15];
2079}
2080
2081static u64 access_pcic_retry_sot_mem_cor_err_cnt(const struct cntr_entry *entry,
2082 void *context, int vl,
2083 int mode, u64 data)
2084{
2085 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2086
2087 return dd->cce_err_status_cnt[14];
2088}
2089
2090static u64 access_pcic_retry_mem_cor_err_cnt(const struct cntr_entry *entry,
2091 void *context, int vl, int mode,
2092 u64 data)
2093{
2094 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2095
2096 return dd->cce_err_status_cnt[13];
2097}
2098
2099static u64 access_cce_cli1_async_fifo_dbg_parity_err_cnt(
2100 const struct cntr_entry *entry,
2101 void *context, int vl, int mode, u64 data)
2102{
2103 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2104
2105 return dd->cce_err_status_cnt[12];
2106}
2107
2108static u64 access_cce_cli1_async_fifo_rxdma_parity_err_cnt(
2109 const struct cntr_entry *entry,
2110 void *context, int vl, int mode, u64 data)
2111{
2112 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2113
2114 return dd->cce_err_status_cnt[11];
2115}
2116
2117static u64 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt(
2118 const struct cntr_entry *entry,
2119 void *context, int vl, int mode, u64 data)
2120{
2121 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2122
2123 return dd->cce_err_status_cnt[10];
2124}
2125
2126static u64 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt(
2127 const struct cntr_entry *entry,
2128 void *context, int vl, int mode, u64 data)
2129{
2130 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2131
2132 return dd->cce_err_status_cnt[9];
2133}
2134
2135static u64 access_cce_cli2_async_fifo_parity_err_cnt(
2136 const struct cntr_entry *entry,
2137 void *context, int vl, int mode, u64 data)
2138{
2139 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2140
2141 return dd->cce_err_status_cnt[8];
2142}
2143
2144static u64 access_cce_csr_cfg_bus_parity_err_cnt(const struct cntr_entry *entry,
2145 void *context, int vl,
2146 int mode, u64 data)
2147{
2148 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2149
2150 return dd->cce_err_status_cnt[7];
2151}
2152
2153static u64 access_cce_cli0_async_fifo_parity_err_cnt(
2154 const struct cntr_entry *entry,
2155 void *context, int vl, int mode, u64 data)
2156{
2157 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2158
2159 return dd->cce_err_status_cnt[6];
2160}
2161
2162static u64 access_cce_rspd_data_parity_err_cnt(const struct cntr_entry *entry,
2163 void *context, int vl, int mode,
2164 u64 data)
2165{
2166 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2167
2168 return dd->cce_err_status_cnt[5];
2169}
2170
2171static u64 access_cce_trgt_access_err_cnt(const struct cntr_entry *entry,
2172 void *context, int vl, int mode,
2173 u64 data)
2174{
2175 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2176
2177 return dd->cce_err_status_cnt[4];
2178}
2179
2180static u64 access_cce_trgt_async_fifo_parity_err_cnt(
2181 const struct cntr_entry *entry,
2182 void *context, int vl, int mode, u64 data)
2183{
2184 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2185
2186 return dd->cce_err_status_cnt[3];
2187}
2188
2189static u64 access_cce_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2190 void *context, int vl,
2191 int mode, u64 data)
2192{
2193 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2194
2195 return dd->cce_err_status_cnt[2];
2196}
2197
2198static u64 access_cce_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2199 void *context, int vl,
2200 int mode, u64 data)
2201{
2202 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2203
2204 return dd->cce_err_status_cnt[1];
2205}
2206
2207static u64 access_ccs_csr_parity_err_cnt(const struct cntr_entry *entry,
2208 void *context, int vl, int mode,
2209 u64 data)
2210{
2211 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2212
2213 return dd->cce_err_status_cnt[0];
2214}
2215
2216/*
2217 * Software counters corresponding to each of the
2218 * error status bits within RcvErrStatus
2219 */
2220static u64 access_rx_csr_parity_err_cnt(const struct cntr_entry *entry,
2221 void *context, int vl, int mode,
2222 u64 data)
2223{
2224 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2225
2226 return dd->rcv_err_status_cnt[63];
2227}
2228
2229static u64 access_rx_csr_write_bad_addr_err_cnt(const struct cntr_entry *entry,
2230 void *context, int vl,
2231 int mode, u64 data)
2232{
2233 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2234
2235 return dd->rcv_err_status_cnt[62];
2236}
2237
2238static u64 access_rx_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
2239 void *context, int vl, int mode,
2240 u64 data)
2241{
2242 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2243
2244 return dd->rcv_err_status_cnt[61];
2245}
2246
2247static u64 access_rx_dma_csr_unc_err_cnt(const struct cntr_entry *entry,
2248 void *context, int vl, int mode,
2249 u64 data)
2250{
2251 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2252
2253 return dd->rcv_err_status_cnt[60];
2254}
2255
2256static u64 access_rx_dma_dq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2257 void *context, int vl,
2258 int mode, u64 data)
2259{
2260 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2261
2262 return dd->rcv_err_status_cnt[59];
2263}
2264
2265static u64 access_rx_dma_eq_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2266 void *context, int vl,
2267 int mode, u64 data)
2268{
2269 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2270
2271 return dd->rcv_err_status_cnt[58];
2272}
2273
2274static u64 access_rx_dma_csr_parity_err_cnt(const struct cntr_entry *entry,
2275 void *context, int vl, int mode,
2276 u64 data)
2277{
2278 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2279
2280 return dd->rcv_err_status_cnt[57];
2281}
2282
2283static u64 access_rx_rbuf_data_cor_err_cnt(const struct cntr_entry *entry,
2284 void *context, int vl, int mode,
2285 u64 data)
2286{
2287 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2288
2289 return dd->rcv_err_status_cnt[56];
2290}
2291
2292static u64 access_rx_rbuf_data_unc_err_cnt(const struct cntr_entry *entry,
2293 void *context, int vl, int mode,
2294 u64 data)
2295{
2296 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2297
2298 return dd->rcv_err_status_cnt[55];
2299}
2300
2301static u64 access_rx_dma_data_fifo_rd_cor_err_cnt(
2302 const struct cntr_entry *entry,
2303 void *context, int vl, int mode, u64 data)
2304{
2305 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2306
2307 return dd->rcv_err_status_cnt[54];
2308}
2309
2310static u64 access_rx_dma_data_fifo_rd_unc_err_cnt(
2311 const struct cntr_entry *entry,
2312 void *context, int vl, int mode, u64 data)
2313{
2314 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2315
2316 return dd->rcv_err_status_cnt[53];
2317}
2318
2319static u64 access_rx_dma_hdr_fifo_rd_cor_err_cnt(const struct cntr_entry *entry,
2320 void *context, int vl,
2321 int mode, u64 data)
2322{
2323 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2324
2325 return dd->rcv_err_status_cnt[52];
2326}
2327
2328static u64 access_rx_dma_hdr_fifo_rd_unc_err_cnt(const struct cntr_entry *entry,
2329 void *context, int vl,
2330 int mode, u64 data)
2331{
2332 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2333
2334 return dd->rcv_err_status_cnt[51];
2335}
2336
2337static u64 access_rx_rbuf_desc_part2_cor_err_cnt(const struct cntr_entry *entry,
2338 void *context, int vl,
2339 int mode, u64 data)
2340{
2341 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2342
2343 return dd->rcv_err_status_cnt[50];
2344}
2345
2346static u64 access_rx_rbuf_desc_part2_unc_err_cnt(const struct cntr_entry *entry,
2347 void *context, int vl,
2348 int mode, u64 data)
2349{
2350 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2351
2352 return dd->rcv_err_status_cnt[49];
2353}
2354
2355static u64 access_rx_rbuf_desc_part1_cor_err_cnt(const struct cntr_entry *entry,
2356 void *context, int vl,
2357 int mode, u64 data)
2358{
2359 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2360
2361 return dd->rcv_err_status_cnt[48];
2362}
2363
2364static u64 access_rx_rbuf_desc_part1_unc_err_cnt(const struct cntr_entry *entry,
2365 void *context, int vl,
2366 int mode, u64 data)
2367{
2368 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2369
2370 return dd->rcv_err_status_cnt[47];
2371}
2372
2373static u64 access_rx_hq_intr_fsm_err_cnt(const struct cntr_entry *entry,
2374 void *context, int vl, int mode,
2375 u64 data)
2376{
2377 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2378
2379 return dd->rcv_err_status_cnt[46];
2380}
2381
2382static u64 access_rx_hq_intr_csr_parity_err_cnt(
2383 const struct cntr_entry *entry,
2384 void *context, int vl, int mode, u64 data)
2385{
2386 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2387
2388 return dd->rcv_err_status_cnt[45];
2389}
2390
2391static u64 access_rx_lookup_csr_parity_err_cnt(
2392 const struct cntr_entry *entry,
2393 void *context, int vl, int mode, u64 data)
2394{
2395 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2396
2397 return dd->rcv_err_status_cnt[44];
2398}
2399
2400static u64 access_rx_lookup_rcv_array_cor_err_cnt(
2401 const struct cntr_entry *entry,
2402 void *context, int vl, int mode, u64 data)
2403{
2404 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2405
2406 return dd->rcv_err_status_cnt[43];
2407}
2408
2409static u64 access_rx_lookup_rcv_array_unc_err_cnt(
2410 const struct cntr_entry *entry,
2411 void *context, int vl, int mode, u64 data)
2412{
2413 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2414
2415 return dd->rcv_err_status_cnt[42];
2416}
2417
2418static u64 access_rx_lookup_des_part2_parity_err_cnt(
2419 const struct cntr_entry *entry,
2420 void *context, int vl, int mode, u64 data)
2421{
2422 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2423
2424 return dd->rcv_err_status_cnt[41];
2425}
2426
2427static u64 access_rx_lookup_des_part1_unc_cor_err_cnt(
2428 const struct cntr_entry *entry,
2429 void *context, int vl, int mode, u64 data)
2430{
2431 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2432
2433 return dd->rcv_err_status_cnt[40];
2434}
2435
2436static u64 access_rx_lookup_des_part1_unc_err_cnt(
2437 const struct cntr_entry *entry,
2438 void *context, int vl, int mode, u64 data)
2439{
2440 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2441
2442 return dd->rcv_err_status_cnt[39];
2443}
2444
2445static u64 access_rx_rbuf_next_free_buf_cor_err_cnt(
2446 const struct cntr_entry *entry,
2447 void *context, int vl, int mode, u64 data)
2448{
2449 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2450
2451 return dd->rcv_err_status_cnt[38];
2452}
2453
2454static u64 access_rx_rbuf_next_free_buf_unc_err_cnt(
2455 const struct cntr_entry *entry,
2456 void *context, int vl, int mode, u64 data)
2457{
2458 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2459
2460 return dd->rcv_err_status_cnt[37];
2461}
2462
2463static u64 access_rbuf_fl_init_wr_addr_parity_err_cnt(
2464 const struct cntr_entry *entry,
2465 void *context, int vl, int mode, u64 data)
2466{
2467 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2468
2469 return dd->rcv_err_status_cnt[36];
2470}
2471
2472static u64 access_rx_rbuf_fl_initdone_parity_err_cnt(
2473 const struct cntr_entry *entry,
2474 void *context, int vl, int mode, u64 data)
2475{
2476 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2477
2478 return dd->rcv_err_status_cnt[35];
2479}
2480
2481static u64 access_rx_rbuf_fl_write_addr_parity_err_cnt(
2482 const struct cntr_entry *entry,
2483 void *context, int vl, int mode, u64 data)
2484{
2485 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2486
2487 return dd->rcv_err_status_cnt[34];
2488}
2489
2490static u64 access_rx_rbuf_fl_rd_addr_parity_err_cnt(
2491 const struct cntr_entry *entry,
2492 void *context, int vl, int mode, u64 data)
2493{
2494 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2495
2496 return dd->rcv_err_status_cnt[33];
2497}
2498
2499static u64 access_rx_rbuf_empty_err_cnt(const struct cntr_entry *entry,
2500 void *context, int vl, int mode,
2501 u64 data)
2502{
2503 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2504
2505 return dd->rcv_err_status_cnt[32];
2506}
2507
2508static u64 access_rx_rbuf_full_err_cnt(const struct cntr_entry *entry,
2509 void *context, int vl, int mode,
2510 u64 data)
2511{
2512 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2513
2514 return dd->rcv_err_status_cnt[31];
2515}
2516
2517static u64 access_rbuf_bad_lookup_err_cnt(const struct cntr_entry *entry,
2518 void *context, int vl, int mode,
2519 u64 data)
2520{
2521 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2522
2523 return dd->rcv_err_status_cnt[30];
2524}
2525
2526static u64 access_rbuf_ctx_id_parity_err_cnt(const struct cntr_entry *entry,
2527 void *context, int vl, int mode,
2528 u64 data)
2529{
2530 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2531
2532 return dd->rcv_err_status_cnt[29];
2533}
2534
2535static u64 access_rbuf_csr_qeopdw_parity_err_cnt(const struct cntr_entry *entry,
2536 void *context, int vl,
2537 int mode, u64 data)
2538{
2539 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2540
2541 return dd->rcv_err_status_cnt[28];
2542}
2543
2544static u64 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt(
2545 const struct cntr_entry *entry,
2546 void *context, int vl, int mode, u64 data)
2547{
2548 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2549
2550 return dd->rcv_err_status_cnt[27];
2551}
2552
2553static u64 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt(
2554 const struct cntr_entry *entry,
2555 void *context, int vl, int mode, u64 data)
2556{
2557 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2558
2559 return dd->rcv_err_status_cnt[26];
2560}
2561
2562static u64 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt(
2563 const struct cntr_entry *entry,
2564 void *context, int vl, int mode, u64 data)
2565{
2566 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2567
2568 return dd->rcv_err_status_cnt[25];
2569}
2570
2571static u64 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt(
2572 const struct cntr_entry *entry,
2573 void *context, int vl, int mode, u64 data)
2574{
2575 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2576
2577 return dd->rcv_err_status_cnt[24];
2578}
2579
2580static u64 access_rx_rbuf_csr_q_next_buf_parity_err_cnt(
2581 const struct cntr_entry *entry,
2582 void *context, int vl, int mode, u64 data)
2583{
2584 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2585
2586 return dd->rcv_err_status_cnt[23];
2587}
2588
2589static u64 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt(
2590 const struct cntr_entry *entry,
2591 void *context, int vl, int mode, u64 data)
2592{
2593 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2594
2595 return dd->rcv_err_status_cnt[22];
2596}
2597
2598static u64 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt(
2599 const struct cntr_entry *entry,
2600 void *context, int vl, int mode, u64 data)
2601{
2602 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2603
2604 return dd->rcv_err_status_cnt[21];
2605}
2606
2607static u64 access_rx_rbuf_block_list_read_cor_err_cnt(
2608 const struct cntr_entry *entry,
2609 void *context, int vl, int mode, u64 data)
2610{
2611 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2612
2613 return dd->rcv_err_status_cnt[20];
2614}
2615
2616static u64 access_rx_rbuf_block_list_read_unc_err_cnt(
2617 const struct cntr_entry *entry,
2618 void *context, int vl, int mode, u64 data)
2619{
2620 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2621
2622 return dd->rcv_err_status_cnt[19];
2623}
2624
2625static u64 access_rx_rbuf_lookup_des_cor_err_cnt(const struct cntr_entry *entry,
2626 void *context, int vl,
2627 int mode, u64 data)
2628{
2629 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2630
2631 return dd->rcv_err_status_cnt[18];
2632}
2633
2634static u64 access_rx_rbuf_lookup_des_unc_err_cnt(const struct cntr_entry *entry,
2635 void *context, int vl,
2636 int mode, u64 data)
2637{
2638 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2639
2640 return dd->rcv_err_status_cnt[17];
2641}
2642
2643static u64 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt(
2644 const struct cntr_entry *entry,
2645 void *context, int vl, int mode, u64 data)
2646{
2647 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2648
2649 return dd->rcv_err_status_cnt[16];
2650}
2651
2652static u64 access_rx_rbuf_lookup_des_reg_unc_err_cnt(
2653 const struct cntr_entry *entry,
2654 void *context, int vl, int mode, u64 data)
2655{
2656 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2657
2658 return dd->rcv_err_status_cnt[15];
2659}
2660
2661static u64 access_rx_rbuf_free_list_cor_err_cnt(const struct cntr_entry *entry,
2662 void *context, int vl,
2663 int mode, u64 data)
2664{
2665 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2666
2667 return dd->rcv_err_status_cnt[14];
2668}
2669
2670static u64 access_rx_rbuf_free_list_unc_err_cnt(const struct cntr_entry *entry,
2671 void *context, int vl,
2672 int mode, u64 data)
2673{
2674 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2675
2676 return dd->rcv_err_status_cnt[13];
2677}
2678
2679static u64 access_rx_rcv_fsm_encoding_err_cnt(const struct cntr_entry *entry,
2680 void *context, int vl, int mode,
2681 u64 data)
2682{
2683 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2684
2685 return dd->rcv_err_status_cnt[12];
2686}
2687
2688static u64 access_rx_dma_flag_cor_err_cnt(const struct cntr_entry *entry,
2689 void *context, int vl, int mode,
2690 u64 data)
2691{
2692 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2693
2694 return dd->rcv_err_status_cnt[11];
2695}
2696
2697static u64 access_rx_dma_flag_unc_err_cnt(const struct cntr_entry *entry,
2698 void *context, int vl, int mode,
2699 u64 data)
2700{
2701 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2702
2703 return dd->rcv_err_status_cnt[10];
2704}
2705
2706static u64 access_rx_dc_sop_eop_parity_err_cnt(const struct cntr_entry *entry,
2707 void *context, int vl, int mode,
2708 u64 data)
2709{
2710 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2711
2712 return dd->rcv_err_status_cnt[9];
2713}
2714
2715static u64 access_rx_rcv_csr_parity_err_cnt(const struct cntr_entry *entry,
2716 void *context, int vl, int mode,
2717 u64 data)
2718{
2719 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2720
2721 return dd->rcv_err_status_cnt[8];
2722}
2723
2724static u64 access_rx_rcv_qp_map_table_cor_err_cnt(
2725 const struct cntr_entry *entry,
2726 void *context, int vl, int mode, u64 data)
2727{
2728 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2729
2730 return dd->rcv_err_status_cnt[7];
2731}
2732
2733static u64 access_rx_rcv_qp_map_table_unc_err_cnt(
2734 const struct cntr_entry *entry,
2735 void *context, int vl, int mode, u64 data)
2736{
2737 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2738
2739 return dd->rcv_err_status_cnt[6];
2740}
2741
2742static u64 access_rx_rcv_data_cor_err_cnt(const struct cntr_entry *entry,
2743 void *context, int vl, int mode,
2744 u64 data)
2745{
2746 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2747
2748 return dd->rcv_err_status_cnt[5];
2749}
2750
2751static u64 access_rx_rcv_data_unc_err_cnt(const struct cntr_entry *entry,
2752 void *context, int vl, int mode,
2753 u64 data)
2754{
2755 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2756
2757 return dd->rcv_err_status_cnt[4];
2758}
2759
2760static u64 access_rx_rcv_hdr_cor_err_cnt(const struct cntr_entry *entry,
2761 void *context, int vl, int mode,
2762 u64 data)
2763{
2764 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2765
2766 return dd->rcv_err_status_cnt[3];
2767}
2768
2769static u64 access_rx_rcv_hdr_unc_err_cnt(const struct cntr_entry *entry,
2770 void *context, int vl, int mode,
2771 u64 data)
2772{
2773 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2774
2775 return dd->rcv_err_status_cnt[2];
2776}
2777
2778static u64 access_rx_dc_intf_parity_err_cnt(const struct cntr_entry *entry,
2779 void *context, int vl, int mode,
2780 u64 data)
2781{
2782 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2783
2784 return dd->rcv_err_status_cnt[1];
2785}
2786
2787static u64 access_rx_dma_csr_cor_err_cnt(const struct cntr_entry *entry,
2788 void *context, int vl, int mode,
2789 u64 data)
2790{
2791 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2792
2793 return dd->rcv_err_status_cnt[0];
2794}
2795
2796/*
2797 * Software counters corresponding to each of the
2798 * error status bits within SendPioErrStatus
2799 */
2800static u64 access_pio_pec_sop_head_parity_err_cnt(
2801 const struct cntr_entry *entry,
2802 void *context, int vl, int mode, u64 data)
2803{
2804 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2805
2806 return dd->send_pio_err_status_cnt[35];
2807}
2808
2809static u64 access_pio_pcc_sop_head_parity_err_cnt(
2810 const struct cntr_entry *entry,
2811 void *context, int vl, int mode, u64 data)
2812{
2813 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2814
2815 return dd->send_pio_err_status_cnt[34];
2816}
2817
2818static u64 access_pio_last_returned_cnt_parity_err_cnt(
2819 const struct cntr_entry *entry,
2820 void *context, int vl, int mode, u64 data)
2821{
2822 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2823
2824 return dd->send_pio_err_status_cnt[33];
2825}
2826
2827static u64 access_pio_current_free_cnt_parity_err_cnt(
2828 const struct cntr_entry *entry,
2829 void *context, int vl, int mode, u64 data)
2830{
2831 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2832
2833 return dd->send_pio_err_status_cnt[32];
2834}
2835
2836static u64 access_pio_reserved_31_err_cnt(const struct cntr_entry *entry,
2837 void *context, int vl, int mode,
2838 u64 data)
2839{
2840 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2841
2842 return dd->send_pio_err_status_cnt[31];
2843}
2844
2845static u64 access_pio_reserved_30_err_cnt(const struct cntr_entry *entry,
2846 void *context, int vl, int mode,
2847 u64 data)
2848{
2849 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2850
2851 return dd->send_pio_err_status_cnt[30];
2852}
2853
2854static u64 access_pio_ppmc_sop_len_err_cnt(const struct cntr_entry *entry,
2855 void *context, int vl, int mode,
2856 u64 data)
2857{
2858 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2859
2860 return dd->send_pio_err_status_cnt[29];
2861}
2862
2863static u64 access_pio_ppmc_bqc_mem_parity_err_cnt(
2864 const struct cntr_entry *entry,
2865 void *context, int vl, int mode, u64 data)
2866{
2867 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2868
2869 return dd->send_pio_err_status_cnt[28];
2870}
2871
2872static u64 access_pio_vl_fifo_parity_err_cnt(const struct cntr_entry *entry,
2873 void *context, int vl, int mode,
2874 u64 data)
2875{
2876 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2877
2878 return dd->send_pio_err_status_cnt[27];
2879}
2880
2881static u64 access_pio_vlf_sop_parity_err_cnt(const struct cntr_entry *entry,
2882 void *context, int vl, int mode,
2883 u64 data)
2884{
2885 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2886
2887 return dd->send_pio_err_status_cnt[26];
2888}
2889
2890static u64 access_pio_vlf_v1_len_parity_err_cnt(const struct cntr_entry *entry,
2891 void *context, int vl,
2892 int mode, u64 data)
2893{
2894 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2895
2896 return dd->send_pio_err_status_cnt[25];
2897}
2898
2899static u64 access_pio_block_qw_count_parity_err_cnt(
2900 const struct cntr_entry *entry,
2901 void *context, int vl, int mode, u64 data)
2902{
2903 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2904
2905 return dd->send_pio_err_status_cnt[24];
2906}
2907
2908static u64 access_pio_write_qw_valid_parity_err_cnt(
2909 const struct cntr_entry *entry,
2910 void *context, int vl, int mode, u64 data)
2911{
2912 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2913
2914 return dd->send_pio_err_status_cnt[23];
2915}
2916
2917static u64 access_pio_state_machine_err_cnt(const struct cntr_entry *entry,
2918 void *context, int vl, int mode,
2919 u64 data)
2920{
2921 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2922
2923 return dd->send_pio_err_status_cnt[22];
2924}
2925
2926static u64 access_pio_write_data_parity_err_cnt(const struct cntr_entry *entry,
2927 void *context, int vl,
2928 int mode, u64 data)
2929{
2930 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2931
2932 return dd->send_pio_err_status_cnt[21];
2933}
2934
2935static u64 access_pio_host_addr_mem_cor_err_cnt(const struct cntr_entry *entry,
2936 void *context, int vl,
2937 int mode, u64 data)
2938{
2939 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2940
2941 return dd->send_pio_err_status_cnt[20];
2942}
2943
2944static u64 access_pio_host_addr_mem_unc_err_cnt(const struct cntr_entry *entry,
2945 void *context, int vl,
2946 int mode, u64 data)
2947{
2948 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2949
2950 return dd->send_pio_err_status_cnt[19];
2951}
2952
2953static u64 access_pio_pkt_evict_sm_or_arb_sm_err_cnt(
2954 const struct cntr_entry *entry,
2955 void *context, int vl, int mode, u64 data)
2956{
2957 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2958
2959 return dd->send_pio_err_status_cnt[18];
2960}
2961
2962static u64 access_pio_init_sm_in_err_cnt(const struct cntr_entry *entry,
2963 void *context, int vl, int mode,
2964 u64 data)
2965{
2966 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2967
2968 return dd->send_pio_err_status_cnt[17];
2969}
2970
2971static u64 access_pio_ppmc_pbl_fifo_err_cnt(const struct cntr_entry *entry,
2972 void *context, int vl, int mode,
2973 u64 data)
2974{
2975 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2976
2977 return dd->send_pio_err_status_cnt[16];
2978}
2979
2980static u64 access_pio_credit_ret_fifo_parity_err_cnt(
2981 const struct cntr_entry *entry,
2982 void *context, int vl, int mode, u64 data)
2983{
2984 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2985
2986 return dd->send_pio_err_status_cnt[15];
2987}
2988
2989static u64 access_pio_v1_len_mem_bank1_cor_err_cnt(
2990 const struct cntr_entry *entry,
2991 void *context, int vl, int mode, u64 data)
2992{
2993 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
2994
2995 return dd->send_pio_err_status_cnt[14];
2996}
2997
2998static u64 access_pio_v1_len_mem_bank0_cor_err_cnt(
2999 const struct cntr_entry *entry,
3000 void *context, int vl, int mode, u64 data)
3001{
3002 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3003
3004 return dd->send_pio_err_status_cnt[13];
3005}
3006
3007static u64 access_pio_v1_len_mem_bank1_unc_err_cnt(
3008 const struct cntr_entry *entry,
3009 void *context, int vl, int mode, u64 data)
3010{
3011 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3012
3013 return dd->send_pio_err_status_cnt[12];
3014}
3015
3016static u64 access_pio_v1_len_mem_bank0_unc_err_cnt(
3017 const struct cntr_entry *entry,
3018 void *context, int vl, int mode, u64 data)
3019{
3020 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3021
3022 return dd->send_pio_err_status_cnt[11];
3023}
3024
3025static u64 access_pio_sm_pkt_reset_parity_err_cnt(
3026 const struct cntr_entry *entry,
3027 void *context, int vl, int mode, u64 data)
3028{
3029 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3030
3031 return dd->send_pio_err_status_cnt[10];
3032}
3033
3034static u64 access_pio_pkt_evict_fifo_parity_err_cnt(
3035 const struct cntr_entry *entry,
3036 void *context, int vl, int mode, u64 data)
3037{
3038 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3039
3040 return dd->send_pio_err_status_cnt[9];
3041}
3042
3043static u64 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt(
3044 const struct cntr_entry *entry,
3045 void *context, int vl, int mode, u64 data)
3046{
3047 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3048
3049 return dd->send_pio_err_status_cnt[8];
3050}
3051
3052static u64 access_pio_sbrdctl_crrel_parity_err_cnt(
3053 const struct cntr_entry *entry,
3054 void *context, int vl, int mode, u64 data)
3055{
3056 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3057
3058 return dd->send_pio_err_status_cnt[7];
3059}
3060
3061static u64 access_pio_pec_fifo_parity_err_cnt(const struct cntr_entry *entry,
3062 void *context, int vl, int mode,
3063 u64 data)
3064{
3065 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3066
3067 return dd->send_pio_err_status_cnt[6];
3068}
3069
3070static u64 access_pio_pcc_fifo_parity_err_cnt(const struct cntr_entry *entry,
3071 void *context, int vl, int mode,
3072 u64 data)
3073{
3074 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3075
3076 return dd->send_pio_err_status_cnt[5];
3077}
3078
3079static u64 access_pio_sb_mem_fifo1_err_cnt(const struct cntr_entry *entry,
3080 void *context, int vl, int mode,
3081 u64 data)
3082{
3083 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3084
3085 return dd->send_pio_err_status_cnt[4];
3086}
3087
3088static u64 access_pio_sb_mem_fifo0_err_cnt(const struct cntr_entry *entry,
3089 void *context, int vl, int mode,
3090 u64 data)
3091{
3092 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3093
3094 return dd->send_pio_err_status_cnt[3];
3095}
3096
3097static u64 access_pio_csr_parity_err_cnt(const struct cntr_entry *entry,
3098 void *context, int vl, int mode,
3099 u64 data)
3100{
3101 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3102
3103 return dd->send_pio_err_status_cnt[2];
3104}
3105
3106static u64 access_pio_write_addr_parity_err_cnt(const struct cntr_entry *entry,
3107 void *context, int vl,
3108 int mode, u64 data)
3109{
3110 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3111
3112 return dd->send_pio_err_status_cnt[1];
3113}
3114
3115static u64 access_pio_write_bad_ctxt_err_cnt(const struct cntr_entry *entry,
3116 void *context, int vl, int mode,
3117 u64 data)
3118{
3119 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3120
3121 return dd->send_pio_err_status_cnt[0];
3122}
3123
3124/*
3125 * Software counters corresponding to each of the
3126 * error status bits within SendDmaErrStatus
3127 */
3128static u64 access_sdma_pcie_req_tracking_cor_err_cnt(
3129 const struct cntr_entry *entry,
3130 void *context, int vl, int mode, u64 data)
3131{
3132 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3133
3134 return dd->send_dma_err_status_cnt[3];
3135}
3136
3137static u64 access_sdma_pcie_req_tracking_unc_err_cnt(
3138 const struct cntr_entry *entry,
3139 void *context, int vl, int mode, u64 data)
3140{
3141 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3142
3143 return dd->send_dma_err_status_cnt[2];
3144}
3145
3146static u64 access_sdma_csr_parity_err_cnt(const struct cntr_entry *entry,
3147 void *context, int vl, int mode,
3148 u64 data)
3149{
3150 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3151
3152 return dd->send_dma_err_status_cnt[1];
3153}
3154
3155static u64 access_sdma_rpy_tag_err_cnt(const struct cntr_entry *entry,
3156 void *context, int vl, int mode,
3157 u64 data)
3158{
3159 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3160
3161 return dd->send_dma_err_status_cnt[0];
3162}
3163
3164/*
3165 * Software counters corresponding to each of the
3166 * error status bits within SendEgressErrStatus
3167 */
3168static u64 access_tx_read_pio_memory_csr_unc_err_cnt(
3169 const struct cntr_entry *entry,
3170 void *context, int vl, int mode, u64 data)
3171{
3172 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3173
3174 return dd->send_egress_err_status_cnt[63];
3175}
3176
3177static u64 access_tx_read_sdma_memory_csr_err_cnt(
3178 const struct cntr_entry *entry,
3179 void *context, int vl, int mode, u64 data)
3180{
3181 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3182
3183 return dd->send_egress_err_status_cnt[62];
3184}
3185
3186static u64 access_tx_egress_fifo_cor_err_cnt(const struct cntr_entry *entry,
3187 void *context, int vl, int mode,
3188 u64 data)
3189{
3190 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3191
3192 return dd->send_egress_err_status_cnt[61];
3193}
3194
3195static u64 access_tx_read_pio_memory_cor_err_cnt(const struct cntr_entry *entry,
3196 void *context, int vl,
3197 int mode, u64 data)
3198{
3199 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3200
3201 return dd->send_egress_err_status_cnt[60];
3202}
3203
3204static u64 access_tx_read_sdma_memory_cor_err_cnt(
3205 const struct cntr_entry *entry,
3206 void *context, int vl, int mode, u64 data)
3207{
3208 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3209
3210 return dd->send_egress_err_status_cnt[59];
3211}
3212
3213static u64 access_tx_sb_hdr_cor_err_cnt(const struct cntr_entry *entry,
3214 void *context, int vl, int mode,
3215 u64 data)
3216{
3217 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3218
3219 return dd->send_egress_err_status_cnt[58];
3220}
3221
3222static u64 access_tx_credit_overrun_err_cnt(const struct cntr_entry *entry,
3223 void *context, int vl, int mode,
3224 u64 data)
3225{
3226 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3227
3228 return dd->send_egress_err_status_cnt[57];
3229}
3230
3231static u64 access_tx_launch_fifo8_cor_err_cnt(const struct cntr_entry *entry,
3232 void *context, int vl, int mode,
3233 u64 data)
3234{
3235 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3236
3237 return dd->send_egress_err_status_cnt[56];
3238}
3239
3240static u64 access_tx_launch_fifo7_cor_err_cnt(const struct cntr_entry *entry,
3241 void *context, int vl, int mode,
3242 u64 data)
3243{
3244 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3245
3246 return dd->send_egress_err_status_cnt[55];
3247}
3248
3249static u64 access_tx_launch_fifo6_cor_err_cnt(const struct cntr_entry *entry,
3250 void *context, int vl, int mode,
3251 u64 data)
3252{
3253 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3254
3255 return dd->send_egress_err_status_cnt[54];
3256}
3257
3258static u64 access_tx_launch_fifo5_cor_err_cnt(const struct cntr_entry *entry,
3259 void *context, int vl, int mode,
3260 u64 data)
3261{
3262 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3263
3264 return dd->send_egress_err_status_cnt[53];
3265}
3266
3267static u64 access_tx_launch_fifo4_cor_err_cnt(const struct cntr_entry *entry,
3268 void *context, int vl, int mode,
3269 u64 data)
3270{
3271 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3272
3273 return dd->send_egress_err_status_cnt[52];
3274}
3275
3276static u64 access_tx_launch_fifo3_cor_err_cnt(const struct cntr_entry *entry,
3277 void *context, int vl, int mode,
3278 u64 data)
3279{
3280 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3281
3282 return dd->send_egress_err_status_cnt[51];
3283}
3284
3285static u64 access_tx_launch_fifo2_cor_err_cnt(const struct cntr_entry *entry,
3286 void *context, int vl, int mode,
3287 u64 data)
3288{
3289 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3290
3291 return dd->send_egress_err_status_cnt[50];
3292}
3293
3294static u64 access_tx_launch_fifo1_cor_err_cnt(const struct cntr_entry *entry,
3295 void *context, int vl, int mode,
3296 u64 data)
3297{
3298 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3299
3300 return dd->send_egress_err_status_cnt[49];
3301}
3302
3303static u64 access_tx_launch_fifo0_cor_err_cnt(const struct cntr_entry *entry,
3304 void *context, int vl, int mode,
3305 u64 data)
3306{
3307 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3308
3309 return dd->send_egress_err_status_cnt[48];
3310}
3311
3312static u64 access_tx_credit_return_vl_err_cnt(const struct cntr_entry *entry,
3313 void *context, int vl, int mode,
3314 u64 data)
3315{
3316 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3317
3318 return dd->send_egress_err_status_cnt[47];
3319}
3320
3321static u64 access_tx_hcrc_insertion_err_cnt(const struct cntr_entry *entry,
3322 void *context, int vl, int mode,
3323 u64 data)
3324{
3325 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3326
3327 return dd->send_egress_err_status_cnt[46];
3328}
3329
3330static u64 access_tx_egress_fifo_unc_err_cnt(const struct cntr_entry *entry,
3331 void *context, int vl, int mode,
3332 u64 data)
3333{
3334 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3335
3336 return dd->send_egress_err_status_cnt[45];
3337}
3338
3339static u64 access_tx_read_pio_memory_unc_err_cnt(const struct cntr_entry *entry,
3340 void *context, int vl,
3341 int mode, u64 data)
3342{
3343 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3344
3345 return dd->send_egress_err_status_cnt[44];
3346}
3347
3348static u64 access_tx_read_sdma_memory_unc_err_cnt(
3349 const struct cntr_entry *entry,
3350 void *context, int vl, int mode, u64 data)
3351{
3352 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3353
3354 return dd->send_egress_err_status_cnt[43];
3355}
3356
3357static u64 access_tx_sb_hdr_unc_err_cnt(const struct cntr_entry *entry,
3358 void *context, int vl, int mode,
3359 u64 data)
3360{
3361 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3362
3363 return dd->send_egress_err_status_cnt[42];
3364}
3365
3366static u64 access_tx_credit_return_partiy_err_cnt(
3367 const struct cntr_entry *entry,
3368 void *context, int vl, int mode, u64 data)
3369{
3370 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3371
3372 return dd->send_egress_err_status_cnt[41];
3373}
3374
3375static u64 access_tx_launch_fifo8_unc_or_parity_err_cnt(
3376 const struct cntr_entry *entry,
3377 void *context, int vl, int mode, u64 data)
3378{
3379 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3380
3381 return dd->send_egress_err_status_cnt[40];
3382}
3383
3384static u64 access_tx_launch_fifo7_unc_or_parity_err_cnt(
3385 const struct cntr_entry *entry,
3386 void *context, int vl, int mode, u64 data)
3387{
3388 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3389
3390 return dd->send_egress_err_status_cnt[39];
3391}
3392
3393static u64 access_tx_launch_fifo6_unc_or_parity_err_cnt(
3394 const struct cntr_entry *entry,
3395 void *context, int vl, int mode, u64 data)
3396{
3397 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3398
3399 return dd->send_egress_err_status_cnt[38];
3400}
3401
3402static u64 access_tx_launch_fifo5_unc_or_parity_err_cnt(
3403 const struct cntr_entry *entry,
3404 void *context, int vl, int mode, u64 data)
3405{
3406 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3407
3408 return dd->send_egress_err_status_cnt[37];
3409}
3410
3411static u64 access_tx_launch_fifo4_unc_or_parity_err_cnt(
3412 const struct cntr_entry *entry,
3413 void *context, int vl, int mode, u64 data)
3414{
3415 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3416
3417 return dd->send_egress_err_status_cnt[36];
3418}
3419
3420static u64 access_tx_launch_fifo3_unc_or_parity_err_cnt(
3421 const struct cntr_entry *entry,
3422 void *context, int vl, int mode, u64 data)
3423{
3424 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3425
3426 return dd->send_egress_err_status_cnt[35];
3427}
3428
3429static u64 access_tx_launch_fifo2_unc_or_parity_err_cnt(
3430 const struct cntr_entry *entry,
3431 void *context, int vl, int mode, u64 data)
3432{
3433 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3434
3435 return dd->send_egress_err_status_cnt[34];
3436}
3437
3438static u64 access_tx_launch_fifo1_unc_or_parity_err_cnt(
3439 const struct cntr_entry *entry,
3440 void *context, int vl, int mode, u64 data)
3441{
3442 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3443
3444 return dd->send_egress_err_status_cnt[33];
3445}
3446
3447static u64 access_tx_launch_fifo0_unc_or_parity_err_cnt(
3448 const struct cntr_entry *entry,
3449 void *context, int vl, int mode, u64 data)
3450{
3451 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3452
3453 return dd->send_egress_err_status_cnt[32];
3454}
3455
3456static u64 access_tx_sdma15_disallowed_packet_err_cnt(
3457 const struct cntr_entry *entry,
3458 void *context, int vl, int mode, u64 data)
3459{
3460 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3461
3462 return dd->send_egress_err_status_cnt[31];
3463}
3464
3465static u64 access_tx_sdma14_disallowed_packet_err_cnt(
3466 const struct cntr_entry *entry,
3467 void *context, int vl, int mode, u64 data)
3468{
3469 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3470
3471 return dd->send_egress_err_status_cnt[30];
3472}
3473
3474static u64 access_tx_sdma13_disallowed_packet_err_cnt(
3475 const struct cntr_entry *entry,
3476 void *context, int vl, int mode, u64 data)
3477{
3478 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3479
3480 return dd->send_egress_err_status_cnt[29];
3481}
3482
3483static u64 access_tx_sdma12_disallowed_packet_err_cnt(
3484 const struct cntr_entry *entry,
3485 void *context, int vl, int mode, u64 data)
3486{
3487 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3488
3489 return dd->send_egress_err_status_cnt[28];
3490}
3491
3492static u64 access_tx_sdma11_disallowed_packet_err_cnt(
3493 const struct cntr_entry *entry,
3494 void *context, int vl, int mode, u64 data)
3495{
3496 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3497
3498 return dd->send_egress_err_status_cnt[27];
3499}
3500
3501static u64 access_tx_sdma10_disallowed_packet_err_cnt(
3502 const struct cntr_entry *entry,
3503 void *context, int vl, int mode, u64 data)
3504{
3505 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3506
3507 return dd->send_egress_err_status_cnt[26];
3508}
3509
3510static u64 access_tx_sdma9_disallowed_packet_err_cnt(
3511 const struct cntr_entry *entry,
3512 void *context, int vl, int mode, u64 data)
3513{
3514 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3515
3516 return dd->send_egress_err_status_cnt[25];
3517}
3518
3519static u64 access_tx_sdma8_disallowed_packet_err_cnt(
3520 const struct cntr_entry *entry,
3521 void *context, int vl, int mode, u64 data)
3522{
3523 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3524
3525 return dd->send_egress_err_status_cnt[24];
3526}
3527
3528static u64 access_tx_sdma7_disallowed_packet_err_cnt(
3529 const struct cntr_entry *entry,
3530 void *context, int vl, int mode, u64 data)
3531{
3532 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3533
3534 return dd->send_egress_err_status_cnt[23];
3535}
3536
3537static u64 access_tx_sdma6_disallowed_packet_err_cnt(
3538 const struct cntr_entry *entry,
3539 void *context, int vl, int mode, u64 data)
3540{
3541 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3542
3543 return dd->send_egress_err_status_cnt[22];
3544}
3545
3546static u64 access_tx_sdma5_disallowed_packet_err_cnt(
3547 const struct cntr_entry *entry,
3548 void *context, int vl, int mode, u64 data)
3549{
3550 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3551
3552 return dd->send_egress_err_status_cnt[21];
3553}
3554
3555static u64 access_tx_sdma4_disallowed_packet_err_cnt(
3556 const struct cntr_entry *entry,
3557 void *context, int vl, int mode, u64 data)
3558{
3559 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3560
3561 return dd->send_egress_err_status_cnt[20];
3562}
3563
3564static u64 access_tx_sdma3_disallowed_packet_err_cnt(
3565 const struct cntr_entry *entry,
3566 void *context, int vl, int mode, u64 data)
3567{
3568 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3569
3570 return dd->send_egress_err_status_cnt[19];
3571}
3572
3573static u64 access_tx_sdma2_disallowed_packet_err_cnt(
3574 const struct cntr_entry *entry,
3575 void *context, int vl, int mode, u64 data)
3576{
3577 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3578
3579 return dd->send_egress_err_status_cnt[18];
3580}
3581
3582static u64 access_tx_sdma1_disallowed_packet_err_cnt(
3583 const struct cntr_entry *entry,
3584 void *context, int vl, int mode, u64 data)
3585{
3586 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3587
3588 return dd->send_egress_err_status_cnt[17];
3589}
3590
3591static u64 access_tx_sdma0_disallowed_packet_err_cnt(
3592 const struct cntr_entry *entry,
3593 void *context, int vl, int mode, u64 data)
3594{
3595 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3596
3597 return dd->send_egress_err_status_cnt[16];
3598}
3599
3600static u64 access_tx_config_parity_err_cnt(const struct cntr_entry *entry,
3601 void *context, int vl, int mode,
3602 u64 data)
3603{
3604 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3605
3606 return dd->send_egress_err_status_cnt[15];
3607}
3608
3609static u64 access_tx_sbrd_ctl_csr_parity_err_cnt(const struct cntr_entry *entry,
3610 void *context, int vl,
3611 int mode, u64 data)
3612{
3613 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3614
3615 return dd->send_egress_err_status_cnt[14];
3616}
3617
3618static u64 access_tx_launch_csr_parity_err_cnt(const struct cntr_entry *entry,
3619 void *context, int vl, int mode,
3620 u64 data)
3621{
3622 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3623
3624 return dd->send_egress_err_status_cnt[13];
3625}
3626
3627static u64 access_tx_illegal_vl_err_cnt(const struct cntr_entry *entry,
3628 void *context, int vl, int mode,
3629 u64 data)
3630{
3631 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3632
3633 return dd->send_egress_err_status_cnt[12];
3634}
3635
3636static u64 access_tx_sbrd_ctl_state_machine_parity_err_cnt(
3637 const struct cntr_entry *entry,
3638 void *context, int vl, int mode, u64 data)
3639{
3640 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3641
3642 return dd->send_egress_err_status_cnt[11];
3643}
3644
3645static u64 access_egress_reserved_10_err_cnt(const struct cntr_entry *entry,
3646 void *context, int vl, int mode,
3647 u64 data)
3648{
3649 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3650
3651 return dd->send_egress_err_status_cnt[10];
3652}
3653
3654static u64 access_egress_reserved_9_err_cnt(const struct cntr_entry *entry,
3655 void *context, int vl, int mode,
3656 u64 data)
3657{
3658 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3659
3660 return dd->send_egress_err_status_cnt[9];
3661}
3662
3663static u64 access_tx_sdma_launch_intf_parity_err_cnt(
3664 const struct cntr_entry *entry,
3665 void *context, int vl, int mode, u64 data)
3666{
3667 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3668
3669 return dd->send_egress_err_status_cnt[8];
3670}
3671
3672static u64 access_tx_pio_launch_intf_parity_err_cnt(
3673 const struct cntr_entry *entry,
3674 void *context, int vl, int mode, u64 data)
3675{
3676 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3677
3678 return dd->send_egress_err_status_cnt[7];
3679}
3680
3681static u64 access_egress_reserved_6_err_cnt(const struct cntr_entry *entry,
3682 void *context, int vl, int mode,
3683 u64 data)
3684{
3685 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3686
3687 return dd->send_egress_err_status_cnt[6];
3688}
3689
3690static u64 access_tx_incorrect_link_state_err_cnt(
3691 const struct cntr_entry *entry,
3692 void *context, int vl, int mode, u64 data)
3693{
3694 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3695
3696 return dd->send_egress_err_status_cnt[5];
3697}
3698
3699static u64 access_tx_linkdown_err_cnt(const struct cntr_entry *entry,
3700 void *context, int vl, int mode,
3701 u64 data)
3702{
3703 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3704
3705 return dd->send_egress_err_status_cnt[4];
3706}
3707
3708static u64 access_tx_egress_fifi_underrun_or_parity_err_cnt(
3709 const struct cntr_entry *entry,
3710 void *context, int vl, int mode, u64 data)
3711{
3712 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3713
3714 return dd->send_egress_err_status_cnt[3];
3715}
3716
3717static u64 access_egress_reserved_2_err_cnt(const struct cntr_entry *entry,
3718 void *context, int vl, int mode,
3719 u64 data)
3720{
3721 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3722
3723 return dd->send_egress_err_status_cnt[2];
3724}
3725
3726static u64 access_tx_pkt_integrity_mem_unc_err_cnt(
3727 const struct cntr_entry *entry,
3728 void *context, int vl, int mode, u64 data)
3729{
3730 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3731
3732 return dd->send_egress_err_status_cnt[1];
3733}
3734
3735static u64 access_tx_pkt_integrity_mem_cor_err_cnt(
3736 const struct cntr_entry *entry,
3737 void *context, int vl, int mode, u64 data)
3738{
3739 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3740
3741 return dd->send_egress_err_status_cnt[0];
3742}
3743
3744/*
3745 * Software counters corresponding to each of the
3746 * error status bits within SendErrStatus
3747 */
3748static u64 access_send_csr_write_bad_addr_err_cnt(
3749 const struct cntr_entry *entry,
3750 void *context, int vl, int mode, u64 data)
3751{
3752 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3753
3754 return dd->send_err_status_cnt[2];
3755}
3756
3757static u64 access_send_csr_read_bad_addr_err_cnt(const struct cntr_entry *entry,
3758 void *context, int vl,
3759 int mode, u64 data)
3760{
3761 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3762
3763 return dd->send_err_status_cnt[1];
3764}
3765
3766static u64 access_send_csr_parity_cnt(const struct cntr_entry *entry,
3767 void *context, int vl, int mode,
3768 u64 data)
3769{
3770 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3771
3772 return dd->send_err_status_cnt[0];
3773}
3774
3775/*
3776 * Software counters corresponding to each of the
3777 * error status bits within SendCtxtErrStatus
3778 */
3779static u64 access_pio_write_out_of_bounds_err_cnt(
3780 const struct cntr_entry *entry,
3781 void *context, int vl, int mode, u64 data)
3782{
3783 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3784
3785 return dd->sw_ctxt_err_status_cnt[4];
3786}
3787
3788static u64 access_pio_write_overflow_err_cnt(const struct cntr_entry *entry,
3789 void *context, int vl, int mode,
3790 u64 data)
3791{
3792 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3793
3794 return dd->sw_ctxt_err_status_cnt[3];
3795}
3796
3797static u64 access_pio_write_crosses_boundary_err_cnt(
3798 const struct cntr_entry *entry,
3799 void *context, int vl, int mode, u64 data)
3800{
3801 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3802
3803 return dd->sw_ctxt_err_status_cnt[2];
3804}
3805
3806static u64 access_pio_disallowed_packet_err_cnt(const struct cntr_entry *entry,
3807 void *context, int vl,
3808 int mode, u64 data)
3809{
3810 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3811
3812 return dd->sw_ctxt_err_status_cnt[1];
3813}
3814
3815static u64 access_pio_inconsistent_sop_err_cnt(const struct cntr_entry *entry,
3816 void *context, int vl, int mode,
3817 u64 data)
3818{
3819 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3820
3821 return dd->sw_ctxt_err_status_cnt[0];
3822}
3823
3824/*
3825 * Software counters corresponding to each of the
3826 * error status bits within SendDmaEngErrStatus
3827 */
3828static u64 access_sdma_header_request_fifo_cor_err_cnt(
3829 const struct cntr_entry *entry,
3830 void *context, int vl, int mode, u64 data)
3831{
3832 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3833
3834 return dd->sw_send_dma_eng_err_status_cnt[23];
3835}
3836
3837static u64 access_sdma_header_storage_cor_err_cnt(
3838 const struct cntr_entry *entry,
3839 void *context, int vl, int mode, u64 data)
3840{
3841 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3842
3843 return dd->sw_send_dma_eng_err_status_cnt[22];
3844}
3845
3846static u64 access_sdma_packet_tracking_cor_err_cnt(
3847 const struct cntr_entry *entry,
3848 void *context, int vl, int mode, u64 data)
3849{
3850 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3851
3852 return dd->sw_send_dma_eng_err_status_cnt[21];
3853}
3854
3855static u64 access_sdma_assembly_cor_err_cnt(const struct cntr_entry *entry,
3856 void *context, int vl, int mode,
3857 u64 data)
3858{
3859 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3860
3861 return dd->sw_send_dma_eng_err_status_cnt[20];
3862}
3863
3864static u64 access_sdma_desc_table_cor_err_cnt(const struct cntr_entry *entry,
3865 void *context, int vl, int mode,
3866 u64 data)
3867{
3868 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3869
3870 return dd->sw_send_dma_eng_err_status_cnt[19];
3871}
3872
3873static u64 access_sdma_header_request_fifo_unc_err_cnt(
3874 const struct cntr_entry *entry,
3875 void *context, int vl, int mode, u64 data)
3876{
3877 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3878
3879 return dd->sw_send_dma_eng_err_status_cnt[18];
3880}
3881
3882static u64 access_sdma_header_storage_unc_err_cnt(
3883 const struct cntr_entry *entry,
3884 void *context, int vl, int mode, u64 data)
3885{
3886 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3887
3888 return dd->sw_send_dma_eng_err_status_cnt[17];
3889}
3890
3891static u64 access_sdma_packet_tracking_unc_err_cnt(
3892 const struct cntr_entry *entry,
3893 void *context, int vl, int mode, u64 data)
3894{
3895 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3896
3897 return dd->sw_send_dma_eng_err_status_cnt[16];
3898}
3899
3900static u64 access_sdma_assembly_unc_err_cnt(const struct cntr_entry *entry,
3901 void *context, int vl, int mode,
3902 u64 data)
3903{
3904 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3905
3906 return dd->sw_send_dma_eng_err_status_cnt[15];
3907}
3908
3909static u64 access_sdma_desc_table_unc_err_cnt(const struct cntr_entry *entry,
3910 void *context, int vl, int mode,
3911 u64 data)
3912{
3913 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3914
3915 return dd->sw_send_dma_eng_err_status_cnt[14];
3916}
3917
3918static u64 access_sdma_timeout_err_cnt(const struct cntr_entry *entry,
3919 void *context, int vl, int mode,
3920 u64 data)
3921{
3922 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3923
3924 return dd->sw_send_dma_eng_err_status_cnt[13];
3925}
3926
3927static u64 access_sdma_header_length_err_cnt(const struct cntr_entry *entry,
3928 void *context, int vl, int mode,
3929 u64 data)
3930{
3931 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3932
3933 return dd->sw_send_dma_eng_err_status_cnt[12];
3934}
3935
3936static u64 access_sdma_header_address_err_cnt(const struct cntr_entry *entry,
3937 void *context, int vl, int mode,
3938 u64 data)
3939{
3940 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3941
3942 return dd->sw_send_dma_eng_err_status_cnt[11];
3943}
3944
3945static u64 access_sdma_header_select_err_cnt(const struct cntr_entry *entry,
3946 void *context, int vl, int mode,
3947 u64 data)
3948{
3949 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3950
3951 return dd->sw_send_dma_eng_err_status_cnt[10];
3952}
3953
3954static u64 access_sdma_reserved_9_err_cnt(const struct cntr_entry *entry,
3955 void *context, int vl, int mode,
3956 u64 data)
3957{
3958 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3959
3960 return dd->sw_send_dma_eng_err_status_cnt[9];
3961}
3962
3963static u64 access_sdma_packet_desc_overflow_err_cnt(
3964 const struct cntr_entry *entry,
3965 void *context, int vl, int mode, u64 data)
3966{
3967 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3968
3969 return dd->sw_send_dma_eng_err_status_cnt[8];
3970}
3971
3972static u64 access_sdma_length_mismatch_err_cnt(const struct cntr_entry *entry,
3973 void *context, int vl,
3974 int mode, u64 data)
3975{
3976 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3977
3978 return dd->sw_send_dma_eng_err_status_cnt[7];
3979}
3980
3981static u64 access_sdma_halt_err_cnt(const struct cntr_entry *entry,
3982 void *context, int vl, int mode, u64 data)
3983{
3984 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3985
3986 return dd->sw_send_dma_eng_err_status_cnt[6];
3987}
3988
3989static u64 access_sdma_mem_read_err_cnt(const struct cntr_entry *entry,
3990 void *context, int vl, int mode,
3991 u64 data)
3992{
3993 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
3994
3995 return dd->sw_send_dma_eng_err_status_cnt[5];
3996}
3997
3998static u64 access_sdma_first_desc_err_cnt(const struct cntr_entry *entry,
3999 void *context, int vl, int mode,
4000 u64 data)
4001{
4002 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4003
4004 return dd->sw_send_dma_eng_err_status_cnt[4];
4005}
4006
4007static u64 access_sdma_tail_out_of_bounds_err_cnt(
4008 const struct cntr_entry *entry,
4009 void *context, int vl, int mode, u64 data)
4010{
4011 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4012
4013 return dd->sw_send_dma_eng_err_status_cnt[3];
4014}
4015
4016static u64 access_sdma_too_long_err_cnt(const struct cntr_entry *entry,
4017 void *context, int vl, int mode,
4018 u64 data)
4019{
4020 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4021
4022 return dd->sw_send_dma_eng_err_status_cnt[2];
4023}
4024
4025static u64 access_sdma_gen_mismatch_err_cnt(const struct cntr_entry *entry,
4026 void *context, int vl, int mode,
4027 u64 data)
4028{
4029 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4030
4031 return dd->sw_send_dma_eng_err_status_cnt[1];
4032}
4033
4034static u64 access_sdma_wrong_dw_err_cnt(const struct cntr_entry *entry,
4035 void *context, int vl, int mode,
4036 u64 data)
4037{
4038 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4039
4040 return dd->sw_send_dma_eng_err_status_cnt[0];
4041}
4042
Jakub Pawlak2b719042016-07-01 16:01:22 -07004043static u64 access_dc_rcv_err_cnt(const struct cntr_entry *entry,
4044 void *context, int vl, int mode,
4045 u64 data)
4046{
4047 struct hfi1_devdata *dd = (struct hfi1_devdata *)context;
4048
4049 u64 val = 0;
4050 u64 csr = entry->csr;
4051
4052 val = read_write_csr(dd, csr, mode, data);
4053 if (mode == CNTR_MODE_R) {
4054 val = val > CNTR_MAX - dd->sw_rcv_bypass_packet_errors ?
4055 CNTR_MAX : val + dd->sw_rcv_bypass_packet_errors;
4056 } else if (mode == CNTR_MODE_W) {
4057 dd->sw_rcv_bypass_packet_errors = 0;
4058 } else {
4059 dd_dev_err(dd, "Invalid cntr register access mode");
4060 return 0;
4061 }
4062 return val;
4063}
4064
Mike Marciniszyn77241052015-07-30 15:17:43 -04004065#define def_access_sw_cpu(cntr) \
4066static u64 access_sw_cpu_##cntr(const struct cntr_entry *entry, \
4067 void *context, int vl, int mode, u64 data) \
4068{ \
4069 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08004070 return read_write_cpu(ppd->dd, &ppd->ibport_data.rvp.z_ ##cntr, \
4071 ppd->ibport_data.rvp.cntr, vl, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04004072 mode, data); \
4073}
4074
4075def_access_sw_cpu(rc_acks);
4076def_access_sw_cpu(rc_qacks);
4077def_access_sw_cpu(rc_delayed_comp);
4078
4079#define def_access_ibp_counter(cntr) \
4080static u64 access_ibp_##cntr(const struct cntr_entry *entry, \
4081 void *context, int vl, int mode, u64 data) \
4082{ \
4083 struct hfi1_pportdata *ppd = (struct hfi1_pportdata *)context; \
4084 \
4085 if (vl != CNTR_INVALID_VL) \
4086 return 0; \
4087 \
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08004088 return read_write_sw(ppd->dd, &ppd->ibport_data.rvp.n_ ##cntr, \
Mike Marciniszyn77241052015-07-30 15:17:43 -04004089 mode, data); \
4090}
4091
4092def_access_ibp_counter(loop_pkts);
4093def_access_ibp_counter(rc_resends);
4094def_access_ibp_counter(rnr_naks);
4095def_access_ibp_counter(other_naks);
4096def_access_ibp_counter(rc_timeouts);
4097def_access_ibp_counter(pkt_drops);
4098def_access_ibp_counter(dmawait);
4099def_access_ibp_counter(rc_seqnak);
4100def_access_ibp_counter(rc_dupreq);
4101def_access_ibp_counter(rdma_seq);
4102def_access_ibp_counter(unaligned);
4103def_access_ibp_counter(seq_naks);
4104
4105static struct cntr_entry dev_cntrs[DEV_CNTR_LAST] = {
4106[C_RCV_OVF] = RXE32_DEV_CNTR_ELEM(RcvOverflow, RCV_BUF_OVFL_CNT, CNTR_SYNTH),
4107[C_RX_TID_FULL] = RXE32_DEV_CNTR_ELEM(RxTIDFullEr, RCV_TID_FULL_ERR_CNT,
4108 CNTR_NORMAL),
4109[C_RX_TID_INVALID] = RXE32_DEV_CNTR_ELEM(RxTIDInvalid, RCV_TID_VALID_ERR_CNT,
4110 CNTR_NORMAL),
4111[C_RX_TID_FLGMS] = RXE32_DEV_CNTR_ELEM(RxTidFLGMs,
4112 RCV_TID_FLOW_GEN_MISMATCH_CNT,
4113 CNTR_NORMAL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004114[C_RX_CTX_EGRS] = RXE32_DEV_CNTR_ELEM(RxCtxEgrS, RCV_CONTEXT_EGR_STALL,
4115 CNTR_NORMAL),
4116[C_RCV_TID_FLSMS] = RXE32_DEV_CNTR_ELEM(RxTidFLSMs,
4117 RCV_TID_FLOW_SEQ_MISMATCH_CNT, CNTR_NORMAL),
4118[C_CCE_PCI_CR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciCrSt,
4119 CCE_PCIE_POSTED_CRDT_STALL_CNT, CNTR_NORMAL),
4120[C_CCE_PCI_TR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePciTrSt, CCE_PCIE_TRGT_STALL_CNT,
4121 CNTR_NORMAL),
4122[C_CCE_PIO_WR_ST] = CCE_PERF_DEV_CNTR_ELEM(CcePioWrSt, CCE_PIO_WR_STALL_CNT,
4123 CNTR_NORMAL),
4124[C_CCE_ERR_INT] = CCE_INT_DEV_CNTR_ELEM(CceErrInt, CCE_ERR_INT_CNT,
4125 CNTR_NORMAL),
4126[C_CCE_SDMA_INT] = CCE_INT_DEV_CNTR_ELEM(CceSdmaInt, CCE_SDMA_INT_CNT,
4127 CNTR_NORMAL),
4128[C_CCE_MISC_INT] = CCE_INT_DEV_CNTR_ELEM(CceMiscInt, CCE_MISC_INT_CNT,
4129 CNTR_NORMAL),
4130[C_CCE_RCV_AV_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvAvInt, CCE_RCV_AVAIL_INT_CNT,
4131 CNTR_NORMAL),
4132[C_CCE_RCV_URG_INT] = CCE_INT_DEV_CNTR_ELEM(CceRcvUrgInt,
4133 CCE_RCV_URGENT_INT_CNT, CNTR_NORMAL),
4134[C_CCE_SEND_CR_INT] = CCE_INT_DEV_CNTR_ELEM(CceSndCrInt,
4135 CCE_SEND_CREDIT_INT_CNT, CNTR_NORMAL),
4136[C_DC_UNC_ERR] = DC_PERF_CNTR(DcUnctblErr, DCC_ERR_UNCORRECTABLE_CNT,
4137 CNTR_SYNTH),
Jakub Pawlak2b719042016-07-01 16:01:22 -07004138[C_DC_RCV_ERR] = CNTR_ELEM("DcRecvErr", DCC_ERR_PORTRCV_ERR_CNT, 0, CNTR_SYNTH,
4139 access_dc_rcv_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004140[C_DC_FM_CFG_ERR] = DC_PERF_CNTR(DcFmCfgErr, DCC_ERR_FMCONFIG_ERR_CNT,
4141 CNTR_SYNTH),
4142[C_DC_RMT_PHY_ERR] = DC_PERF_CNTR(DcRmtPhyErr, DCC_ERR_RCVREMOTE_PHY_ERR_CNT,
4143 CNTR_SYNTH),
4144[C_DC_DROPPED_PKT] = DC_PERF_CNTR(DcDroppedPkt, DCC_ERR_DROPPED_PKT_CNT,
4145 CNTR_SYNTH),
4146[C_DC_MC_XMIT_PKTS] = DC_PERF_CNTR(DcMcXmitPkts,
4147 DCC_PRF_PORT_XMIT_MULTICAST_CNT, CNTR_SYNTH),
4148[C_DC_MC_RCV_PKTS] = DC_PERF_CNTR(DcMcRcvPkts,
4149 DCC_PRF_PORT_RCV_MULTICAST_PKT_CNT,
4150 CNTR_SYNTH),
4151[C_DC_XMIT_CERR] = DC_PERF_CNTR(DcXmitCorr,
4152 DCC_PRF_PORT_XMIT_CORRECTABLE_CNT, CNTR_SYNTH),
4153[C_DC_RCV_CERR] = DC_PERF_CNTR(DcRcvCorrCnt, DCC_PRF_PORT_RCV_CORRECTABLE_CNT,
4154 CNTR_SYNTH),
4155[C_DC_RCV_FCC] = DC_PERF_CNTR(DcRxFCntl, DCC_PRF_RX_FLOW_CRTL_CNT,
4156 CNTR_SYNTH),
4157[C_DC_XMIT_FCC] = DC_PERF_CNTR(DcXmitFCntl, DCC_PRF_TX_FLOW_CRTL_CNT,
4158 CNTR_SYNTH),
4159[C_DC_XMIT_FLITS] = DC_PERF_CNTR(DcXmitFlits, DCC_PRF_PORT_XMIT_DATA_CNT,
4160 CNTR_SYNTH),
4161[C_DC_RCV_FLITS] = DC_PERF_CNTR(DcRcvFlits, DCC_PRF_PORT_RCV_DATA_CNT,
4162 CNTR_SYNTH),
4163[C_DC_XMIT_PKTS] = DC_PERF_CNTR(DcXmitPkts, DCC_PRF_PORT_XMIT_PKTS_CNT,
4164 CNTR_SYNTH),
4165[C_DC_RCV_PKTS] = DC_PERF_CNTR(DcRcvPkts, DCC_PRF_PORT_RCV_PKTS_CNT,
4166 CNTR_SYNTH),
4167[C_DC_RX_FLIT_VL] = DC_PERF_CNTR(DcRxFlitVl, DCC_PRF_PORT_VL_RCV_DATA_CNT,
4168 CNTR_SYNTH | CNTR_VL),
4169[C_DC_RX_PKT_VL] = DC_PERF_CNTR(DcRxPktVl, DCC_PRF_PORT_VL_RCV_PKTS_CNT,
4170 CNTR_SYNTH | CNTR_VL),
4171[C_DC_RCV_FCN] = DC_PERF_CNTR(DcRcvFcn, DCC_PRF_PORT_RCV_FECN_CNT, CNTR_SYNTH),
4172[C_DC_RCV_FCN_VL] = DC_PERF_CNTR(DcRcvFcnVl, DCC_PRF_PORT_VL_RCV_FECN_CNT,
4173 CNTR_SYNTH | CNTR_VL),
4174[C_DC_RCV_BCN] = DC_PERF_CNTR(DcRcvBcn, DCC_PRF_PORT_RCV_BECN_CNT, CNTR_SYNTH),
4175[C_DC_RCV_BCN_VL] = DC_PERF_CNTR(DcRcvBcnVl, DCC_PRF_PORT_VL_RCV_BECN_CNT,
4176 CNTR_SYNTH | CNTR_VL),
4177[C_DC_RCV_BBL] = DC_PERF_CNTR(DcRcvBbl, DCC_PRF_PORT_RCV_BUBBLE_CNT,
4178 CNTR_SYNTH),
4179[C_DC_RCV_BBL_VL] = DC_PERF_CNTR(DcRcvBblVl, DCC_PRF_PORT_VL_RCV_BUBBLE_CNT,
4180 CNTR_SYNTH | CNTR_VL),
4181[C_DC_MARK_FECN] = DC_PERF_CNTR(DcMarkFcn, DCC_PRF_PORT_MARK_FECN_CNT,
4182 CNTR_SYNTH),
4183[C_DC_MARK_FECN_VL] = DC_PERF_CNTR(DcMarkFcnVl, DCC_PRF_PORT_VL_MARK_FECN_CNT,
4184 CNTR_SYNTH | CNTR_VL),
4185[C_DC_TOTAL_CRC] =
4186 DC_PERF_CNTR_LCB(DcTotCrc, DC_LCB_ERR_INFO_TOTAL_CRC_ERR,
4187 CNTR_SYNTH),
4188[C_DC_CRC_LN0] = DC_PERF_CNTR_LCB(DcCrcLn0, DC_LCB_ERR_INFO_CRC_ERR_LN0,
4189 CNTR_SYNTH),
4190[C_DC_CRC_LN1] = DC_PERF_CNTR_LCB(DcCrcLn1, DC_LCB_ERR_INFO_CRC_ERR_LN1,
4191 CNTR_SYNTH),
4192[C_DC_CRC_LN2] = DC_PERF_CNTR_LCB(DcCrcLn2, DC_LCB_ERR_INFO_CRC_ERR_LN2,
4193 CNTR_SYNTH),
4194[C_DC_CRC_LN3] = DC_PERF_CNTR_LCB(DcCrcLn3, DC_LCB_ERR_INFO_CRC_ERR_LN3,
4195 CNTR_SYNTH),
4196[C_DC_CRC_MULT_LN] =
4197 DC_PERF_CNTR_LCB(DcMultLn, DC_LCB_ERR_INFO_CRC_ERR_MULTI_LN,
4198 CNTR_SYNTH),
4199[C_DC_TX_REPLAY] = DC_PERF_CNTR_LCB(DcTxReplay, DC_LCB_ERR_INFO_TX_REPLAY_CNT,
4200 CNTR_SYNTH),
4201[C_DC_RX_REPLAY] = DC_PERF_CNTR_LCB(DcRxReplay, DC_LCB_ERR_INFO_RX_REPLAY_CNT,
4202 CNTR_SYNTH),
4203[C_DC_SEQ_CRC_CNT] =
4204 DC_PERF_CNTR_LCB(DcLinkSeqCrc, DC_LCB_ERR_INFO_SEQ_CRC_CNT,
4205 CNTR_SYNTH),
4206[C_DC_ESC0_ONLY_CNT] =
4207 DC_PERF_CNTR_LCB(DcEsc0, DC_LCB_ERR_INFO_ESCAPE_0_ONLY_CNT,
4208 CNTR_SYNTH),
4209[C_DC_ESC0_PLUS1_CNT] =
4210 DC_PERF_CNTR_LCB(DcEsc1, DC_LCB_ERR_INFO_ESCAPE_0_PLUS1_CNT,
4211 CNTR_SYNTH),
4212[C_DC_ESC0_PLUS2_CNT] =
4213 DC_PERF_CNTR_LCB(DcEsc0Plus2, DC_LCB_ERR_INFO_ESCAPE_0_PLUS2_CNT,
4214 CNTR_SYNTH),
4215[C_DC_REINIT_FROM_PEER_CNT] =
4216 DC_PERF_CNTR_LCB(DcReinitPeer, DC_LCB_ERR_INFO_REINIT_FROM_PEER_CNT,
4217 CNTR_SYNTH),
4218[C_DC_SBE_CNT] = DC_PERF_CNTR_LCB(DcSbe, DC_LCB_ERR_INFO_SBE_CNT,
4219 CNTR_SYNTH),
4220[C_DC_MISC_FLG_CNT] =
4221 DC_PERF_CNTR_LCB(DcMiscFlg, DC_LCB_ERR_INFO_MISC_FLG_CNT,
4222 CNTR_SYNTH),
4223[C_DC_PRF_GOOD_LTP_CNT] =
4224 DC_PERF_CNTR_LCB(DcGoodLTP, DC_LCB_PRF_GOOD_LTP_CNT, CNTR_SYNTH),
4225[C_DC_PRF_ACCEPTED_LTP_CNT] =
4226 DC_PERF_CNTR_LCB(DcAccLTP, DC_LCB_PRF_ACCEPTED_LTP_CNT,
4227 CNTR_SYNTH),
4228[C_DC_PRF_RX_FLIT_CNT] =
4229 DC_PERF_CNTR_LCB(DcPrfRxFlit, DC_LCB_PRF_RX_FLIT_CNT, CNTR_SYNTH),
4230[C_DC_PRF_TX_FLIT_CNT] =
4231 DC_PERF_CNTR_LCB(DcPrfTxFlit, DC_LCB_PRF_TX_FLIT_CNT, CNTR_SYNTH),
4232[C_DC_PRF_CLK_CNTR] =
4233 DC_PERF_CNTR_LCB(DcPrfClk, DC_LCB_PRF_CLK_CNTR, CNTR_SYNTH),
4234[C_DC_PG_DBG_FLIT_CRDTS_CNT] =
4235 DC_PERF_CNTR_LCB(DcFltCrdts, DC_LCB_PG_DBG_FLIT_CRDTS_CNT, CNTR_SYNTH),
4236[C_DC_PG_STS_PAUSE_COMPLETE_CNT] =
4237 DC_PERF_CNTR_LCB(DcPauseComp, DC_LCB_PG_STS_PAUSE_COMPLETE_CNT,
4238 CNTR_SYNTH),
4239[C_DC_PG_STS_TX_SBE_CNT] =
4240 DC_PERF_CNTR_LCB(DcStsTxSbe, DC_LCB_PG_STS_TX_SBE_CNT, CNTR_SYNTH),
4241[C_DC_PG_STS_TX_MBE_CNT] =
4242 DC_PERF_CNTR_LCB(DcStsTxMbe, DC_LCB_PG_STS_TX_MBE_CNT,
4243 CNTR_SYNTH),
4244[C_SW_CPU_INTR] = CNTR_ELEM("Intr", 0, 0, CNTR_NORMAL,
4245 access_sw_cpu_intr),
4246[C_SW_CPU_RCV_LIM] = CNTR_ELEM("RcvLimit", 0, 0, CNTR_NORMAL,
4247 access_sw_cpu_rcv_limit),
4248[C_SW_VTX_WAIT] = CNTR_ELEM("vTxWait", 0, 0, CNTR_NORMAL,
4249 access_sw_vtx_wait),
4250[C_SW_PIO_WAIT] = CNTR_ELEM("PioWait", 0, 0, CNTR_NORMAL,
4251 access_sw_pio_wait),
Mike Marciniszyn14553ca2016-02-14 12:45:36 -08004252[C_SW_PIO_DRAIN] = CNTR_ELEM("PioDrain", 0, 0, CNTR_NORMAL,
4253 access_sw_pio_drain),
Mike Marciniszyn77241052015-07-30 15:17:43 -04004254[C_SW_KMEM_WAIT] = CNTR_ELEM("KmemWait", 0, 0, CNTR_NORMAL,
4255 access_sw_kmem_wait),
Dean Luickb4219222015-10-26 10:28:35 -04004256[C_SW_SEND_SCHED] = CNTR_ELEM("SendSched", 0, 0, CNTR_NORMAL,
4257 access_sw_send_schedule),
Vennila Megavannana699c6c2016-01-11 18:30:56 -05004258[C_SDMA_DESC_FETCHED_CNT] = CNTR_ELEM("SDEDscFdCn",
4259 SEND_DMA_DESC_FETCHED_CNT, 0,
4260 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4261 dev_access_u32_csr),
4262[C_SDMA_INT_CNT] = CNTR_ELEM("SDMAInt", 0, 0,
4263 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4264 access_sde_int_cnt),
4265[C_SDMA_ERR_CNT] = CNTR_ELEM("SDMAErrCt", 0, 0,
4266 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4267 access_sde_err_cnt),
4268[C_SDMA_IDLE_INT_CNT] = CNTR_ELEM("SDMAIdInt", 0, 0,
4269 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4270 access_sde_idle_int_cnt),
4271[C_SDMA_PROGRESS_INT_CNT] = CNTR_ELEM("SDMAPrIntCn", 0, 0,
4272 CNTR_NORMAL | CNTR_32BIT | CNTR_SDMA,
4273 access_sde_progress_int_cnt),
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05004274/* MISC_ERR_STATUS */
4275[C_MISC_PLL_LOCK_FAIL_ERR] = CNTR_ELEM("MISC_PLL_LOCK_FAIL_ERR", 0, 0,
4276 CNTR_NORMAL,
4277 access_misc_pll_lock_fail_err_cnt),
4278[C_MISC_MBIST_FAIL_ERR] = CNTR_ELEM("MISC_MBIST_FAIL_ERR", 0, 0,
4279 CNTR_NORMAL,
4280 access_misc_mbist_fail_err_cnt),
4281[C_MISC_INVALID_EEP_CMD_ERR] = CNTR_ELEM("MISC_INVALID_EEP_CMD_ERR", 0, 0,
4282 CNTR_NORMAL,
4283 access_misc_invalid_eep_cmd_err_cnt),
4284[C_MISC_EFUSE_DONE_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_DONE_PARITY_ERR", 0, 0,
4285 CNTR_NORMAL,
4286 access_misc_efuse_done_parity_err_cnt),
4287[C_MISC_EFUSE_WRITE_ERR] = CNTR_ELEM("MISC_EFUSE_WRITE_ERR", 0, 0,
4288 CNTR_NORMAL,
4289 access_misc_efuse_write_err_cnt),
4290[C_MISC_EFUSE_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_EFUSE_READ_BAD_ADDR_ERR", 0,
4291 0, CNTR_NORMAL,
4292 access_misc_efuse_read_bad_addr_err_cnt),
4293[C_MISC_EFUSE_CSR_PARITY_ERR] = CNTR_ELEM("MISC_EFUSE_CSR_PARITY_ERR", 0, 0,
4294 CNTR_NORMAL,
4295 access_misc_efuse_csr_parity_err_cnt),
4296[C_MISC_FW_AUTH_FAILED_ERR] = CNTR_ELEM("MISC_FW_AUTH_FAILED_ERR", 0, 0,
4297 CNTR_NORMAL,
4298 access_misc_fw_auth_failed_err_cnt),
4299[C_MISC_KEY_MISMATCH_ERR] = CNTR_ELEM("MISC_KEY_MISMATCH_ERR", 0, 0,
4300 CNTR_NORMAL,
4301 access_misc_key_mismatch_err_cnt),
4302[C_MISC_SBUS_WRITE_FAILED_ERR] = CNTR_ELEM("MISC_SBUS_WRITE_FAILED_ERR", 0, 0,
4303 CNTR_NORMAL,
4304 access_misc_sbus_write_failed_err_cnt),
4305[C_MISC_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_WRITE_BAD_ADDR_ERR", 0, 0,
4306 CNTR_NORMAL,
4307 access_misc_csr_write_bad_addr_err_cnt),
4308[C_MISC_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("MISC_CSR_READ_BAD_ADDR_ERR", 0, 0,
4309 CNTR_NORMAL,
4310 access_misc_csr_read_bad_addr_err_cnt),
4311[C_MISC_CSR_PARITY_ERR] = CNTR_ELEM("MISC_CSR_PARITY_ERR", 0, 0,
4312 CNTR_NORMAL,
4313 access_misc_csr_parity_err_cnt),
4314/* CceErrStatus */
4315[C_CCE_ERR_STATUS_AGGREGATED_CNT] = CNTR_ELEM("CceErrStatusAggregatedCnt", 0, 0,
4316 CNTR_NORMAL,
4317 access_sw_cce_err_status_aggregated_cnt),
4318[C_CCE_MSIX_CSR_PARITY_ERR] = CNTR_ELEM("CceMsixCsrParityErr", 0, 0,
4319 CNTR_NORMAL,
4320 access_cce_msix_csr_parity_err_cnt),
4321[C_CCE_INT_MAP_UNC_ERR] = CNTR_ELEM("CceIntMapUncErr", 0, 0,
4322 CNTR_NORMAL,
4323 access_cce_int_map_unc_err_cnt),
4324[C_CCE_INT_MAP_COR_ERR] = CNTR_ELEM("CceIntMapCorErr", 0, 0,
4325 CNTR_NORMAL,
4326 access_cce_int_map_cor_err_cnt),
4327[C_CCE_MSIX_TABLE_UNC_ERR] = CNTR_ELEM("CceMsixTableUncErr", 0, 0,
4328 CNTR_NORMAL,
4329 access_cce_msix_table_unc_err_cnt),
4330[C_CCE_MSIX_TABLE_COR_ERR] = CNTR_ELEM("CceMsixTableCorErr", 0, 0,
4331 CNTR_NORMAL,
4332 access_cce_msix_table_cor_err_cnt),
4333[C_CCE_RXDMA_CONV_FIFO_PARITY_ERR] = CNTR_ELEM("CceRxdmaConvFifoParityErr", 0,
4334 0, CNTR_NORMAL,
4335 access_cce_rxdma_conv_fifo_parity_err_cnt),
4336[C_CCE_RCPL_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceRcplAsyncFifoParityErr", 0,
4337 0, CNTR_NORMAL,
4338 access_cce_rcpl_async_fifo_parity_err_cnt),
4339[C_CCE_SEG_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceSegWriteBadAddrErr", 0, 0,
4340 CNTR_NORMAL,
4341 access_cce_seg_write_bad_addr_err_cnt),
4342[C_CCE_SEG_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceSegReadBadAddrErr", 0, 0,
4343 CNTR_NORMAL,
4344 access_cce_seg_read_bad_addr_err_cnt),
4345[C_LA_TRIGGERED] = CNTR_ELEM("Cce LATriggered", 0, 0,
4346 CNTR_NORMAL,
4347 access_la_triggered_cnt),
4348[C_CCE_TRGT_CPL_TIMEOUT_ERR] = CNTR_ELEM("CceTrgtCplTimeoutErr", 0, 0,
4349 CNTR_NORMAL,
4350 access_cce_trgt_cpl_timeout_err_cnt),
4351[C_PCIC_RECEIVE_PARITY_ERR] = CNTR_ELEM("PcicReceiveParityErr", 0, 0,
4352 CNTR_NORMAL,
4353 access_pcic_receive_parity_err_cnt),
4354[C_PCIC_TRANSMIT_BACK_PARITY_ERR] = CNTR_ELEM("PcicTransmitBackParityErr", 0, 0,
4355 CNTR_NORMAL,
4356 access_pcic_transmit_back_parity_err_cnt),
4357[C_PCIC_TRANSMIT_FRONT_PARITY_ERR] = CNTR_ELEM("PcicTransmitFrontParityErr", 0,
4358 0, CNTR_NORMAL,
4359 access_pcic_transmit_front_parity_err_cnt),
4360[C_PCIC_CPL_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicCplDatQUncErr", 0, 0,
4361 CNTR_NORMAL,
4362 access_pcic_cpl_dat_q_unc_err_cnt),
4363[C_PCIC_CPL_HD_Q_UNC_ERR] = CNTR_ELEM("PcicCplHdQUncErr", 0, 0,
4364 CNTR_NORMAL,
4365 access_pcic_cpl_hd_q_unc_err_cnt),
4366[C_PCIC_POST_DAT_Q_UNC_ERR] = CNTR_ELEM("PcicPostDatQUncErr", 0, 0,
4367 CNTR_NORMAL,
4368 access_pcic_post_dat_q_unc_err_cnt),
4369[C_PCIC_POST_HD_Q_UNC_ERR] = CNTR_ELEM("PcicPostHdQUncErr", 0, 0,
4370 CNTR_NORMAL,
4371 access_pcic_post_hd_q_unc_err_cnt),
4372[C_PCIC_RETRY_SOT_MEM_UNC_ERR] = CNTR_ELEM("PcicRetrySotMemUncErr", 0, 0,
4373 CNTR_NORMAL,
4374 access_pcic_retry_sot_mem_unc_err_cnt),
4375[C_PCIC_RETRY_MEM_UNC_ERR] = CNTR_ELEM("PcicRetryMemUncErr", 0, 0,
4376 CNTR_NORMAL,
4377 access_pcic_retry_mem_unc_err),
4378[C_PCIC_N_POST_DAT_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostDatQParityErr", 0, 0,
4379 CNTR_NORMAL,
4380 access_pcic_n_post_dat_q_parity_err_cnt),
4381[C_PCIC_N_POST_H_Q_PARITY_ERR] = CNTR_ELEM("PcicNPostHQParityErr", 0, 0,
4382 CNTR_NORMAL,
4383 access_pcic_n_post_h_q_parity_err_cnt),
4384[C_PCIC_CPL_DAT_Q_COR_ERR] = CNTR_ELEM("PcicCplDatQCorErr", 0, 0,
4385 CNTR_NORMAL,
4386 access_pcic_cpl_dat_q_cor_err_cnt),
4387[C_PCIC_CPL_HD_Q_COR_ERR] = CNTR_ELEM("PcicCplHdQCorErr", 0, 0,
4388 CNTR_NORMAL,
4389 access_pcic_cpl_hd_q_cor_err_cnt),
4390[C_PCIC_POST_DAT_Q_COR_ERR] = CNTR_ELEM("PcicPostDatQCorErr", 0, 0,
4391 CNTR_NORMAL,
4392 access_pcic_post_dat_q_cor_err_cnt),
4393[C_PCIC_POST_HD_Q_COR_ERR] = CNTR_ELEM("PcicPostHdQCorErr", 0, 0,
4394 CNTR_NORMAL,
4395 access_pcic_post_hd_q_cor_err_cnt),
4396[C_PCIC_RETRY_SOT_MEM_COR_ERR] = CNTR_ELEM("PcicRetrySotMemCorErr", 0, 0,
4397 CNTR_NORMAL,
4398 access_pcic_retry_sot_mem_cor_err_cnt),
4399[C_PCIC_RETRY_MEM_COR_ERR] = CNTR_ELEM("PcicRetryMemCorErr", 0, 0,
4400 CNTR_NORMAL,
4401 access_pcic_retry_mem_cor_err_cnt),
4402[C_CCE_CLI1_ASYNC_FIFO_DBG_PARITY_ERR] = CNTR_ELEM(
4403 "CceCli1AsyncFifoDbgParityError", 0, 0,
4404 CNTR_NORMAL,
4405 access_cce_cli1_async_fifo_dbg_parity_err_cnt),
4406[C_CCE_CLI1_ASYNC_FIFO_RXDMA_PARITY_ERR] = CNTR_ELEM(
4407 "CceCli1AsyncFifoRxdmaParityError", 0, 0,
4408 CNTR_NORMAL,
4409 access_cce_cli1_async_fifo_rxdma_parity_err_cnt
4410 ),
4411[C_CCE_CLI1_ASYNC_FIFO_SDMA_HD_PARITY_ERR] = CNTR_ELEM(
4412 "CceCli1AsyncFifoSdmaHdParityErr", 0, 0,
4413 CNTR_NORMAL,
4414 access_cce_cli1_async_fifo_sdma_hd_parity_err_cnt),
4415[C_CCE_CLI1_ASYNC_FIFO_PIO_CRDT_PARITY_ERR] = CNTR_ELEM(
4416 "CceCli1AsyncFifoPioCrdtParityErr", 0, 0,
4417 CNTR_NORMAL,
4418 access_cce_cl1_async_fifo_pio_crdt_parity_err_cnt),
4419[C_CCE_CLI2_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceCli2AsyncFifoParityErr", 0,
4420 0, CNTR_NORMAL,
4421 access_cce_cli2_async_fifo_parity_err_cnt),
4422[C_CCE_CSR_CFG_BUS_PARITY_ERR] = CNTR_ELEM("CceCsrCfgBusParityErr", 0, 0,
4423 CNTR_NORMAL,
4424 access_cce_csr_cfg_bus_parity_err_cnt),
4425[C_CCE_CLI0_ASYNC_FIFO_PARTIY_ERR] = CNTR_ELEM("CceCli0AsyncFifoParityErr", 0,
4426 0, CNTR_NORMAL,
4427 access_cce_cli0_async_fifo_parity_err_cnt),
4428[C_CCE_RSPD_DATA_PARITY_ERR] = CNTR_ELEM("CceRspdDataParityErr", 0, 0,
4429 CNTR_NORMAL,
4430 access_cce_rspd_data_parity_err_cnt),
4431[C_CCE_TRGT_ACCESS_ERR] = CNTR_ELEM("CceTrgtAccessErr", 0, 0,
4432 CNTR_NORMAL,
4433 access_cce_trgt_access_err_cnt),
4434[C_CCE_TRGT_ASYNC_FIFO_PARITY_ERR] = CNTR_ELEM("CceTrgtAsyncFifoParityErr", 0,
4435 0, CNTR_NORMAL,
4436 access_cce_trgt_async_fifo_parity_err_cnt),
4437[C_CCE_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrWriteBadAddrErr", 0, 0,
4438 CNTR_NORMAL,
4439 access_cce_csr_write_bad_addr_err_cnt),
4440[C_CCE_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("CceCsrReadBadAddrErr", 0, 0,
4441 CNTR_NORMAL,
4442 access_cce_csr_read_bad_addr_err_cnt),
4443[C_CCE_CSR_PARITY_ERR] = CNTR_ELEM("CceCsrParityErr", 0, 0,
4444 CNTR_NORMAL,
4445 access_ccs_csr_parity_err_cnt),
4446
4447/* RcvErrStatus */
4448[C_RX_CSR_PARITY_ERR] = CNTR_ELEM("RxCsrParityErr", 0, 0,
4449 CNTR_NORMAL,
4450 access_rx_csr_parity_err_cnt),
4451[C_RX_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrWriteBadAddrErr", 0, 0,
4452 CNTR_NORMAL,
4453 access_rx_csr_write_bad_addr_err_cnt),
4454[C_RX_CSR_READ_BAD_ADDR_ERR] = CNTR_ELEM("RxCsrReadBadAddrErr", 0, 0,
4455 CNTR_NORMAL,
4456 access_rx_csr_read_bad_addr_err_cnt),
4457[C_RX_DMA_CSR_UNC_ERR] = CNTR_ELEM("RxDmaCsrUncErr", 0, 0,
4458 CNTR_NORMAL,
4459 access_rx_dma_csr_unc_err_cnt),
4460[C_RX_DMA_DQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaDqFsmEncodingErr", 0, 0,
4461 CNTR_NORMAL,
4462 access_rx_dma_dq_fsm_encoding_err_cnt),
4463[C_RX_DMA_EQ_FSM_ENCODING_ERR] = CNTR_ELEM("RxDmaEqFsmEncodingErr", 0, 0,
4464 CNTR_NORMAL,
4465 access_rx_dma_eq_fsm_encoding_err_cnt),
4466[C_RX_DMA_CSR_PARITY_ERR] = CNTR_ELEM("RxDmaCsrParityErr", 0, 0,
4467 CNTR_NORMAL,
4468 access_rx_dma_csr_parity_err_cnt),
4469[C_RX_RBUF_DATA_COR_ERR] = CNTR_ELEM("RxRbufDataCorErr", 0, 0,
4470 CNTR_NORMAL,
4471 access_rx_rbuf_data_cor_err_cnt),
4472[C_RX_RBUF_DATA_UNC_ERR] = CNTR_ELEM("RxRbufDataUncErr", 0, 0,
4473 CNTR_NORMAL,
4474 access_rx_rbuf_data_unc_err_cnt),
4475[C_RX_DMA_DATA_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaDataFifoRdCorErr", 0, 0,
4476 CNTR_NORMAL,
4477 access_rx_dma_data_fifo_rd_cor_err_cnt),
4478[C_RX_DMA_DATA_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaDataFifoRdUncErr", 0, 0,
4479 CNTR_NORMAL,
4480 access_rx_dma_data_fifo_rd_unc_err_cnt),
4481[C_RX_DMA_HDR_FIFO_RD_COR_ERR] = CNTR_ELEM("RxDmaHdrFifoRdCorErr", 0, 0,
4482 CNTR_NORMAL,
4483 access_rx_dma_hdr_fifo_rd_cor_err_cnt),
4484[C_RX_DMA_HDR_FIFO_RD_UNC_ERR] = CNTR_ELEM("RxDmaHdrFifoRdUncErr", 0, 0,
4485 CNTR_NORMAL,
4486 access_rx_dma_hdr_fifo_rd_unc_err_cnt),
4487[C_RX_RBUF_DESC_PART2_COR_ERR] = CNTR_ELEM("RxRbufDescPart2CorErr", 0, 0,
4488 CNTR_NORMAL,
4489 access_rx_rbuf_desc_part2_cor_err_cnt),
4490[C_RX_RBUF_DESC_PART2_UNC_ERR] = CNTR_ELEM("RxRbufDescPart2UncErr", 0, 0,
4491 CNTR_NORMAL,
4492 access_rx_rbuf_desc_part2_unc_err_cnt),
4493[C_RX_RBUF_DESC_PART1_COR_ERR] = CNTR_ELEM("RxRbufDescPart1CorErr", 0, 0,
4494 CNTR_NORMAL,
4495 access_rx_rbuf_desc_part1_cor_err_cnt),
4496[C_RX_RBUF_DESC_PART1_UNC_ERR] = CNTR_ELEM("RxRbufDescPart1UncErr", 0, 0,
4497 CNTR_NORMAL,
4498 access_rx_rbuf_desc_part1_unc_err_cnt),
4499[C_RX_HQ_INTR_FSM_ERR] = CNTR_ELEM("RxHqIntrFsmErr", 0, 0,
4500 CNTR_NORMAL,
4501 access_rx_hq_intr_fsm_err_cnt),
4502[C_RX_HQ_INTR_CSR_PARITY_ERR] = CNTR_ELEM("RxHqIntrCsrParityErr", 0, 0,
4503 CNTR_NORMAL,
4504 access_rx_hq_intr_csr_parity_err_cnt),
4505[C_RX_LOOKUP_CSR_PARITY_ERR] = CNTR_ELEM("RxLookupCsrParityErr", 0, 0,
4506 CNTR_NORMAL,
4507 access_rx_lookup_csr_parity_err_cnt),
4508[C_RX_LOOKUP_RCV_ARRAY_COR_ERR] = CNTR_ELEM("RxLookupRcvArrayCorErr", 0, 0,
4509 CNTR_NORMAL,
4510 access_rx_lookup_rcv_array_cor_err_cnt),
4511[C_RX_LOOKUP_RCV_ARRAY_UNC_ERR] = CNTR_ELEM("RxLookupRcvArrayUncErr", 0, 0,
4512 CNTR_NORMAL,
4513 access_rx_lookup_rcv_array_unc_err_cnt),
4514[C_RX_LOOKUP_DES_PART2_PARITY_ERR] = CNTR_ELEM("RxLookupDesPart2ParityErr", 0,
4515 0, CNTR_NORMAL,
4516 access_rx_lookup_des_part2_parity_err_cnt),
4517[C_RX_LOOKUP_DES_PART1_UNC_COR_ERR] = CNTR_ELEM("RxLookupDesPart1UncCorErr", 0,
4518 0, CNTR_NORMAL,
4519 access_rx_lookup_des_part1_unc_cor_err_cnt),
4520[C_RX_LOOKUP_DES_PART1_UNC_ERR] = CNTR_ELEM("RxLookupDesPart1UncErr", 0, 0,
4521 CNTR_NORMAL,
4522 access_rx_lookup_des_part1_unc_err_cnt),
4523[C_RX_RBUF_NEXT_FREE_BUF_COR_ERR] = CNTR_ELEM("RxRbufNextFreeBufCorErr", 0, 0,
4524 CNTR_NORMAL,
4525 access_rx_rbuf_next_free_buf_cor_err_cnt),
4526[C_RX_RBUF_NEXT_FREE_BUF_UNC_ERR] = CNTR_ELEM("RxRbufNextFreeBufUncErr", 0, 0,
4527 CNTR_NORMAL,
4528 access_rx_rbuf_next_free_buf_unc_err_cnt),
4529[C_RX_RBUF_FL_INIT_WR_ADDR_PARITY_ERR] = CNTR_ELEM(
4530 "RxRbufFlInitWrAddrParityErr", 0, 0,
4531 CNTR_NORMAL,
4532 access_rbuf_fl_init_wr_addr_parity_err_cnt),
4533[C_RX_RBUF_FL_INITDONE_PARITY_ERR] = CNTR_ELEM("RxRbufFlInitdoneParityErr", 0,
4534 0, CNTR_NORMAL,
4535 access_rx_rbuf_fl_initdone_parity_err_cnt),
4536[C_RX_RBUF_FL_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlWrAddrParityErr", 0,
4537 0, CNTR_NORMAL,
4538 access_rx_rbuf_fl_write_addr_parity_err_cnt),
4539[C_RX_RBUF_FL_RD_ADDR_PARITY_ERR] = CNTR_ELEM("RxRbufFlRdAddrParityErr", 0, 0,
4540 CNTR_NORMAL,
4541 access_rx_rbuf_fl_rd_addr_parity_err_cnt),
4542[C_RX_RBUF_EMPTY_ERR] = CNTR_ELEM("RxRbufEmptyErr", 0, 0,
4543 CNTR_NORMAL,
4544 access_rx_rbuf_empty_err_cnt),
4545[C_RX_RBUF_FULL_ERR] = CNTR_ELEM("RxRbufFullErr", 0, 0,
4546 CNTR_NORMAL,
4547 access_rx_rbuf_full_err_cnt),
4548[C_RX_RBUF_BAD_LOOKUP_ERR] = CNTR_ELEM("RxRBufBadLookupErr", 0, 0,
4549 CNTR_NORMAL,
4550 access_rbuf_bad_lookup_err_cnt),
4551[C_RX_RBUF_CTX_ID_PARITY_ERR] = CNTR_ELEM("RxRbufCtxIdParityErr", 0, 0,
4552 CNTR_NORMAL,
4553 access_rbuf_ctx_id_parity_err_cnt),
4554[C_RX_RBUF_CSR_QEOPDW_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEOPDWParityErr", 0, 0,
4555 CNTR_NORMAL,
4556 access_rbuf_csr_qeopdw_parity_err_cnt),
4557[C_RX_RBUF_CSR_Q_NUM_OF_PKT_PARITY_ERR] = CNTR_ELEM(
4558 "RxRbufCsrQNumOfPktParityErr", 0, 0,
4559 CNTR_NORMAL,
4560 access_rx_rbuf_csr_q_num_of_pkt_parity_err_cnt),
4561[C_RX_RBUF_CSR_Q_T1_PTR_PARITY_ERR] = CNTR_ELEM(
4562 "RxRbufCsrQTlPtrParityErr", 0, 0,
4563 CNTR_NORMAL,
4564 access_rx_rbuf_csr_q_t1_ptr_parity_err_cnt),
4565[C_RX_RBUF_CSR_Q_HD_PTR_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQHdPtrParityErr", 0,
4566 0, CNTR_NORMAL,
4567 access_rx_rbuf_csr_q_hd_ptr_parity_err_cnt),
4568[C_RX_RBUF_CSR_Q_VLD_BIT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQVldBitParityErr", 0,
4569 0, CNTR_NORMAL,
4570 access_rx_rbuf_csr_q_vld_bit_parity_err_cnt),
4571[C_RX_RBUF_CSR_Q_NEXT_BUF_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQNextBufParityErr",
4572 0, 0, CNTR_NORMAL,
4573 access_rx_rbuf_csr_q_next_buf_parity_err_cnt),
4574[C_RX_RBUF_CSR_Q_ENT_CNT_PARITY_ERR] = CNTR_ELEM("RxRbufCsrQEntCntParityErr", 0,
4575 0, CNTR_NORMAL,
4576 access_rx_rbuf_csr_q_ent_cnt_parity_err_cnt),
4577[C_RX_RBUF_CSR_Q_HEAD_BUF_NUM_PARITY_ERR] = CNTR_ELEM(
4578 "RxRbufCsrQHeadBufNumParityErr", 0, 0,
4579 CNTR_NORMAL,
4580 access_rx_rbuf_csr_q_head_buf_num_parity_err_cnt),
4581[C_RX_RBUF_BLOCK_LIST_READ_COR_ERR] = CNTR_ELEM("RxRbufBlockListReadCorErr", 0,
4582 0, CNTR_NORMAL,
4583 access_rx_rbuf_block_list_read_cor_err_cnt),
4584[C_RX_RBUF_BLOCK_LIST_READ_UNC_ERR] = CNTR_ELEM("RxRbufBlockListReadUncErr", 0,
4585 0, CNTR_NORMAL,
4586 access_rx_rbuf_block_list_read_unc_err_cnt),
4587[C_RX_RBUF_LOOKUP_DES_COR_ERR] = CNTR_ELEM("RxRbufLookupDesCorErr", 0, 0,
4588 CNTR_NORMAL,
4589 access_rx_rbuf_lookup_des_cor_err_cnt),
4590[C_RX_RBUF_LOOKUP_DES_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesUncErr", 0, 0,
4591 CNTR_NORMAL,
4592 access_rx_rbuf_lookup_des_unc_err_cnt),
4593[C_RX_RBUF_LOOKUP_DES_REG_UNC_COR_ERR] = CNTR_ELEM(
4594 "RxRbufLookupDesRegUncCorErr", 0, 0,
4595 CNTR_NORMAL,
4596 access_rx_rbuf_lookup_des_reg_unc_cor_err_cnt),
4597[C_RX_RBUF_LOOKUP_DES_REG_UNC_ERR] = CNTR_ELEM("RxRbufLookupDesRegUncErr", 0, 0,
4598 CNTR_NORMAL,
4599 access_rx_rbuf_lookup_des_reg_unc_err_cnt),
4600[C_RX_RBUF_FREE_LIST_COR_ERR] = CNTR_ELEM("RxRbufFreeListCorErr", 0, 0,
4601 CNTR_NORMAL,
4602 access_rx_rbuf_free_list_cor_err_cnt),
4603[C_RX_RBUF_FREE_LIST_UNC_ERR] = CNTR_ELEM("RxRbufFreeListUncErr", 0, 0,
4604 CNTR_NORMAL,
4605 access_rx_rbuf_free_list_unc_err_cnt),
4606[C_RX_RCV_FSM_ENCODING_ERR] = CNTR_ELEM("RxRcvFsmEncodingErr", 0, 0,
4607 CNTR_NORMAL,
4608 access_rx_rcv_fsm_encoding_err_cnt),
4609[C_RX_DMA_FLAG_COR_ERR] = CNTR_ELEM("RxDmaFlagCorErr", 0, 0,
4610 CNTR_NORMAL,
4611 access_rx_dma_flag_cor_err_cnt),
4612[C_RX_DMA_FLAG_UNC_ERR] = CNTR_ELEM("RxDmaFlagUncErr", 0, 0,
4613 CNTR_NORMAL,
4614 access_rx_dma_flag_unc_err_cnt),
4615[C_RX_DC_SOP_EOP_PARITY_ERR] = CNTR_ELEM("RxDcSopEopParityErr", 0, 0,
4616 CNTR_NORMAL,
4617 access_rx_dc_sop_eop_parity_err_cnt),
4618[C_RX_RCV_CSR_PARITY_ERR] = CNTR_ELEM("RxRcvCsrParityErr", 0, 0,
4619 CNTR_NORMAL,
4620 access_rx_rcv_csr_parity_err_cnt),
4621[C_RX_RCV_QP_MAP_TABLE_COR_ERR] = CNTR_ELEM("RxRcvQpMapTableCorErr", 0, 0,
4622 CNTR_NORMAL,
4623 access_rx_rcv_qp_map_table_cor_err_cnt),
4624[C_RX_RCV_QP_MAP_TABLE_UNC_ERR] = CNTR_ELEM("RxRcvQpMapTableUncErr", 0, 0,
4625 CNTR_NORMAL,
4626 access_rx_rcv_qp_map_table_unc_err_cnt),
4627[C_RX_RCV_DATA_COR_ERR] = CNTR_ELEM("RxRcvDataCorErr", 0, 0,
4628 CNTR_NORMAL,
4629 access_rx_rcv_data_cor_err_cnt),
4630[C_RX_RCV_DATA_UNC_ERR] = CNTR_ELEM("RxRcvDataUncErr", 0, 0,
4631 CNTR_NORMAL,
4632 access_rx_rcv_data_unc_err_cnt),
4633[C_RX_RCV_HDR_COR_ERR] = CNTR_ELEM("RxRcvHdrCorErr", 0, 0,
4634 CNTR_NORMAL,
4635 access_rx_rcv_hdr_cor_err_cnt),
4636[C_RX_RCV_HDR_UNC_ERR] = CNTR_ELEM("RxRcvHdrUncErr", 0, 0,
4637 CNTR_NORMAL,
4638 access_rx_rcv_hdr_unc_err_cnt),
4639[C_RX_DC_INTF_PARITY_ERR] = CNTR_ELEM("RxDcIntfParityErr", 0, 0,
4640 CNTR_NORMAL,
4641 access_rx_dc_intf_parity_err_cnt),
4642[C_RX_DMA_CSR_COR_ERR] = CNTR_ELEM("RxDmaCsrCorErr", 0, 0,
4643 CNTR_NORMAL,
4644 access_rx_dma_csr_cor_err_cnt),
4645/* SendPioErrStatus */
4646[C_PIO_PEC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPecSopHeadParityErr", 0, 0,
4647 CNTR_NORMAL,
4648 access_pio_pec_sop_head_parity_err_cnt),
4649[C_PIO_PCC_SOP_HEAD_PARITY_ERR] = CNTR_ELEM("PioPccSopHeadParityErr", 0, 0,
4650 CNTR_NORMAL,
4651 access_pio_pcc_sop_head_parity_err_cnt),
4652[C_PIO_LAST_RETURNED_CNT_PARITY_ERR] = CNTR_ELEM("PioLastReturnedCntParityErr",
4653 0, 0, CNTR_NORMAL,
4654 access_pio_last_returned_cnt_parity_err_cnt),
4655[C_PIO_CURRENT_FREE_CNT_PARITY_ERR] = CNTR_ELEM("PioCurrentFreeCntParityErr", 0,
4656 0, CNTR_NORMAL,
4657 access_pio_current_free_cnt_parity_err_cnt),
4658[C_PIO_RSVD_31_ERR] = CNTR_ELEM("Pio Reserved 31", 0, 0,
4659 CNTR_NORMAL,
4660 access_pio_reserved_31_err_cnt),
4661[C_PIO_RSVD_30_ERR] = CNTR_ELEM("Pio Reserved 30", 0, 0,
4662 CNTR_NORMAL,
4663 access_pio_reserved_30_err_cnt),
4664[C_PIO_PPMC_SOP_LEN_ERR] = CNTR_ELEM("PioPpmcSopLenErr", 0, 0,
4665 CNTR_NORMAL,
4666 access_pio_ppmc_sop_len_err_cnt),
4667[C_PIO_PPMC_BQC_MEM_PARITY_ERR] = CNTR_ELEM("PioPpmcBqcMemParityErr", 0, 0,
4668 CNTR_NORMAL,
4669 access_pio_ppmc_bqc_mem_parity_err_cnt),
4670[C_PIO_VL_FIFO_PARITY_ERR] = CNTR_ELEM("PioVlFifoParityErr", 0, 0,
4671 CNTR_NORMAL,
4672 access_pio_vl_fifo_parity_err_cnt),
4673[C_PIO_VLF_SOP_PARITY_ERR] = CNTR_ELEM("PioVlfSopParityErr", 0, 0,
4674 CNTR_NORMAL,
4675 access_pio_vlf_sop_parity_err_cnt),
4676[C_PIO_VLF_V1_LEN_PARITY_ERR] = CNTR_ELEM("PioVlfVlLenParityErr", 0, 0,
4677 CNTR_NORMAL,
4678 access_pio_vlf_v1_len_parity_err_cnt),
4679[C_PIO_BLOCK_QW_COUNT_PARITY_ERR] = CNTR_ELEM("PioBlockQwCountParityErr", 0, 0,
4680 CNTR_NORMAL,
4681 access_pio_block_qw_count_parity_err_cnt),
4682[C_PIO_WRITE_QW_VALID_PARITY_ERR] = CNTR_ELEM("PioWriteQwValidParityErr", 0, 0,
4683 CNTR_NORMAL,
4684 access_pio_write_qw_valid_parity_err_cnt),
4685[C_PIO_STATE_MACHINE_ERR] = CNTR_ELEM("PioStateMachineErr", 0, 0,
4686 CNTR_NORMAL,
4687 access_pio_state_machine_err_cnt),
4688[C_PIO_WRITE_DATA_PARITY_ERR] = CNTR_ELEM("PioWriteDataParityErr", 0, 0,
4689 CNTR_NORMAL,
4690 access_pio_write_data_parity_err_cnt),
4691[C_PIO_HOST_ADDR_MEM_COR_ERR] = CNTR_ELEM("PioHostAddrMemCorErr", 0, 0,
4692 CNTR_NORMAL,
4693 access_pio_host_addr_mem_cor_err_cnt),
4694[C_PIO_HOST_ADDR_MEM_UNC_ERR] = CNTR_ELEM("PioHostAddrMemUncErr", 0, 0,
4695 CNTR_NORMAL,
4696 access_pio_host_addr_mem_unc_err_cnt),
4697[C_PIO_PKT_EVICT_SM_OR_ARM_SM_ERR] = CNTR_ELEM("PioPktEvictSmOrArbSmErr", 0, 0,
4698 CNTR_NORMAL,
4699 access_pio_pkt_evict_sm_or_arb_sm_err_cnt),
4700[C_PIO_INIT_SM_IN_ERR] = CNTR_ELEM("PioInitSmInErr", 0, 0,
4701 CNTR_NORMAL,
4702 access_pio_init_sm_in_err_cnt),
4703[C_PIO_PPMC_PBL_FIFO_ERR] = CNTR_ELEM("PioPpmcPblFifoErr", 0, 0,
4704 CNTR_NORMAL,
4705 access_pio_ppmc_pbl_fifo_err_cnt),
4706[C_PIO_CREDIT_RET_FIFO_PARITY_ERR] = CNTR_ELEM("PioCreditRetFifoParityErr", 0,
4707 0, CNTR_NORMAL,
4708 access_pio_credit_ret_fifo_parity_err_cnt),
4709[C_PIO_V1_LEN_MEM_BANK1_COR_ERR] = CNTR_ELEM("PioVlLenMemBank1CorErr", 0, 0,
4710 CNTR_NORMAL,
4711 access_pio_v1_len_mem_bank1_cor_err_cnt),
4712[C_PIO_V1_LEN_MEM_BANK0_COR_ERR] = CNTR_ELEM("PioVlLenMemBank0CorErr", 0, 0,
4713 CNTR_NORMAL,
4714 access_pio_v1_len_mem_bank0_cor_err_cnt),
4715[C_PIO_V1_LEN_MEM_BANK1_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank1UncErr", 0, 0,
4716 CNTR_NORMAL,
4717 access_pio_v1_len_mem_bank1_unc_err_cnt),
4718[C_PIO_V1_LEN_MEM_BANK0_UNC_ERR] = CNTR_ELEM("PioVlLenMemBank0UncErr", 0, 0,
4719 CNTR_NORMAL,
4720 access_pio_v1_len_mem_bank0_unc_err_cnt),
4721[C_PIO_SM_PKT_RESET_PARITY_ERR] = CNTR_ELEM("PioSmPktResetParityErr", 0, 0,
4722 CNTR_NORMAL,
4723 access_pio_sm_pkt_reset_parity_err_cnt),
4724[C_PIO_PKT_EVICT_FIFO_PARITY_ERR] = CNTR_ELEM("PioPktEvictFifoParityErr", 0, 0,
4725 CNTR_NORMAL,
4726 access_pio_pkt_evict_fifo_parity_err_cnt),
4727[C_PIO_SBRDCTRL_CRREL_FIFO_PARITY_ERR] = CNTR_ELEM(
4728 "PioSbrdctrlCrrelFifoParityErr", 0, 0,
4729 CNTR_NORMAL,
4730 access_pio_sbrdctrl_crrel_fifo_parity_err_cnt),
4731[C_PIO_SBRDCTL_CRREL_PARITY_ERR] = CNTR_ELEM("PioSbrdctlCrrelParityErr", 0, 0,
4732 CNTR_NORMAL,
4733 access_pio_sbrdctl_crrel_parity_err_cnt),
4734[C_PIO_PEC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPecFifoParityErr", 0, 0,
4735 CNTR_NORMAL,
4736 access_pio_pec_fifo_parity_err_cnt),
4737[C_PIO_PCC_FIFO_PARITY_ERR] = CNTR_ELEM("PioPccFifoParityErr", 0, 0,
4738 CNTR_NORMAL,
4739 access_pio_pcc_fifo_parity_err_cnt),
4740[C_PIO_SB_MEM_FIFO1_ERR] = CNTR_ELEM("PioSbMemFifo1Err", 0, 0,
4741 CNTR_NORMAL,
4742 access_pio_sb_mem_fifo1_err_cnt),
4743[C_PIO_SB_MEM_FIFO0_ERR] = CNTR_ELEM("PioSbMemFifo0Err", 0, 0,
4744 CNTR_NORMAL,
4745 access_pio_sb_mem_fifo0_err_cnt),
4746[C_PIO_CSR_PARITY_ERR] = CNTR_ELEM("PioCsrParityErr", 0, 0,
4747 CNTR_NORMAL,
4748 access_pio_csr_parity_err_cnt),
4749[C_PIO_WRITE_ADDR_PARITY_ERR] = CNTR_ELEM("PioWriteAddrParityErr", 0, 0,
4750 CNTR_NORMAL,
4751 access_pio_write_addr_parity_err_cnt),
4752[C_PIO_WRITE_BAD_CTXT_ERR] = CNTR_ELEM("PioWriteBadCtxtErr", 0, 0,
4753 CNTR_NORMAL,
4754 access_pio_write_bad_ctxt_err_cnt),
4755/* SendDmaErrStatus */
4756[C_SDMA_PCIE_REQ_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPcieReqTrackingCorErr", 0,
4757 0, CNTR_NORMAL,
4758 access_sdma_pcie_req_tracking_cor_err_cnt),
4759[C_SDMA_PCIE_REQ_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPcieReqTrackingUncErr", 0,
4760 0, CNTR_NORMAL,
4761 access_sdma_pcie_req_tracking_unc_err_cnt),
4762[C_SDMA_CSR_PARITY_ERR] = CNTR_ELEM("SDmaCsrParityErr", 0, 0,
4763 CNTR_NORMAL,
4764 access_sdma_csr_parity_err_cnt),
4765[C_SDMA_RPY_TAG_ERR] = CNTR_ELEM("SDmaRpyTagErr", 0, 0,
4766 CNTR_NORMAL,
4767 access_sdma_rpy_tag_err_cnt),
4768/* SendEgressErrStatus */
4769[C_TX_READ_PIO_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryCsrUncErr", 0, 0,
4770 CNTR_NORMAL,
4771 access_tx_read_pio_memory_csr_unc_err_cnt),
4772[C_TX_READ_SDMA_MEMORY_CSR_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryCsrUncErr", 0,
4773 0, CNTR_NORMAL,
4774 access_tx_read_sdma_memory_csr_err_cnt),
4775[C_TX_EGRESS_FIFO_COR_ERR] = CNTR_ELEM("TxEgressFifoCorErr", 0, 0,
4776 CNTR_NORMAL,
4777 access_tx_egress_fifo_cor_err_cnt),
4778[C_TX_READ_PIO_MEMORY_COR_ERR] = CNTR_ELEM("TxReadPioMemoryCorErr", 0, 0,
4779 CNTR_NORMAL,
4780 access_tx_read_pio_memory_cor_err_cnt),
4781[C_TX_READ_SDMA_MEMORY_COR_ERR] = CNTR_ELEM("TxReadSdmaMemoryCorErr", 0, 0,
4782 CNTR_NORMAL,
4783 access_tx_read_sdma_memory_cor_err_cnt),
4784[C_TX_SB_HDR_COR_ERR] = CNTR_ELEM("TxSbHdrCorErr", 0, 0,
4785 CNTR_NORMAL,
4786 access_tx_sb_hdr_cor_err_cnt),
4787[C_TX_CREDIT_OVERRUN_ERR] = CNTR_ELEM("TxCreditOverrunErr", 0, 0,
4788 CNTR_NORMAL,
4789 access_tx_credit_overrun_err_cnt),
4790[C_TX_LAUNCH_FIFO8_COR_ERR] = CNTR_ELEM("TxLaunchFifo8CorErr", 0, 0,
4791 CNTR_NORMAL,
4792 access_tx_launch_fifo8_cor_err_cnt),
4793[C_TX_LAUNCH_FIFO7_COR_ERR] = CNTR_ELEM("TxLaunchFifo7CorErr", 0, 0,
4794 CNTR_NORMAL,
4795 access_tx_launch_fifo7_cor_err_cnt),
4796[C_TX_LAUNCH_FIFO6_COR_ERR] = CNTR_ELEM("TxLaunchFifo6CorErr", 0, 0,
4797 CNTR_NORMAL,
4798 access_tx_launch_fifo6_cor_err_cnt),
4799[C_TX_LAUNCH_FIFO5_COR_ERR] = CNTR_ELEM("TxLaunchFifo5CorErr", 0, 0,
4800 CNTR_NORMAL,
4801 access_tx_launch_fifo5_cor_err_cnt),
4802[C_TX_LAUNCH_FIFO4_COR_ERR] = CNTR_ELEM("TxLaunchFifo4CorErr", 0, 0,
4803 CNTR_NORMAL,
4804 access_tx_launch_fifo4_cor_err_cnt),
4805[C_TX_LAUNCH_FIFO3_COR_ERR] = CNTR_ELEM("TxLaunchFifo3CorErr", 0, 0,
4806 CNTR_NORMAL,
4807 access_tx_launch_fifo3_cor_err_cnt),
4808[C_TX_LAUNCH_FIFO2_COR_ERR] = CNTR_ELEM("TxLaunchFifo2CorErr", 0, 0,
4809 CNTR_NORMAL,
4810 access_tx_launch_fifo2_cor_err_cnt),
4811[C_TX_LAUNCH_FIFO1_COR_ERR] = CNTR_ELEM("TxLaunchFifo1CorErr", 0, 0,
4812 CNTR_NORMAL,
4813 access_tx_launch_fifo1_cor_err_cnt),
4814[C_TX_LAUNCH_FIFO0_COR_ERR] = CNTR_ELEM("TxLaunchFifo0CorErr", 0, 0,
4815 CNTR_NORMAL,
4816 access_tx_launch_fifo0_cor_err_cnt),
4817[C_TX_CREDIT_RETURN_VL_ERR] = CNTR_ELEM("TxCreditReturnVLErr", 0, 0,
4818 CNTR_NORMAL,
4819 access_tx_credit_return_vl_err_cnt),
4820[C_TX_HCRC_INSERTION_ERR] = CNTR_ELEM("TxHcrcInsertionErr", 0, 0,
4821 CNTR_NORMAL,
4822 access_tx_hcrc_insertion_err_cnt),
4823[C_TX_EGRESS_FIFI_UNC_ERR] = CNTR_ELEM("TxEgressFifoUncErr", 0, 0,
4824 CNTR_NORMAL,
4825 access_tx_egress_fifo_unc_err_cnt),
4826[C_TX_READ_PIO_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadPioMemoryUncErr", 0, 0,
4827 CNTR_NORMAL,
4828 access_tx_read_pio_memory_unc_err_cnt),
4829[C_TX_READ_SDMA_MEMORY_UNC_ERR] = CNTR_ELEM("TxReadSdmaMemoryUncErr", 0, 0,
4830 CNTR_NORMAL,
4831 access_tx_read_sdma_memory_unc_err_cnt),
4832[C_TX_SB_HDR_UNC_ERR] = CNTR_ELEM("TxSbHdrUncErr", 0, 0,
4833 CNTR_NORMAL,
4834 access_tx_sb_hdr_unc_err_cnt),
4835[C_TX_CREDIT_RETURN_PARITY_ERR] = CNTR_ELEM("TxCreditReturnParityErr", 0, 0,
4836 CNTR_NORMAL,
4837 access_tx_credit_return_partiy_err_cnt),
4838[C_TX_LAUNCH_FIFO8_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo8UncOrParityErr",
4839 0, 0, CNTR_NORMAL,
4840 access_tx_launch_fifo8_unc_or_parity_err_cnt),
4841[C_TX_LAUNCH_FIFO7_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo7UncOrParityErr",
4842 0, 0, CNTR_NORMAL,
4843 access_tx_launch_fifo7_unc_or_parity_err_cnt),
4844[C_TX_LAUNCH_FIFO6_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo6UncOrParityErr",
4845 0, 0, CNTR_NORMAL,
4846 access_tx_launch_fifo6_unc_or_parity_err_cnt),
4847[C_TX_LAUNCH_FIFO5_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo5UncOrParityErr",
4848 0, 0, CNTR_NORMAL,
4849 access_tx_launch_fifo5_unc_or_parity_err_cnt),
4850[C_TX_LAUNCH_FIFO4_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo4UncOrParityErr",
4851 0, 0, CNTR_NORMAL,
4852 access_tx_launch_fifo4_unc_or_parity_err_cnt),
4853[C_TX_LAUNCH_FIFO3_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo3UncOrParityErr",
4854 0, 0, CNTR_NORMAL,
4855 access_tx_launch_fifo3_unc_or_parity_err_cnt),
4856[C_TX_LAUNCH_FIFO2_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo2UncOrParityErr",
4857 0, 0, CNTR_NORMAL,
4858 access_tx_launch_fifo2_unc_or_parity_err_cnt),
4859[C_TX_LAUNCH_FIFO1_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo1UncOrParityErr",
4860 0, 0, CNTR_NORMAL,
4861 access_tx_launch_fifo1_unc_or_parity_err_cnt),
4862[C_TX_LAUNCH_FIFO0_UNC_OR_PARITY_ERR] = CNTR_ELEM("TxLaunchFifo0UncOrParityErr",
4863 0, 0, CNTR_NORMAL,
4864 access_tx_launch_fifo0_unc_or_parity_err_cnt),
4865[C_TX_SDMA15_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma15DisallowedPacketErr",
4866 0, 0, CNTR_NORMAL,
4867 access_tx_sdma15_disallowed_packet_err_cnt),
4868[C_TX_SDMA14_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma14DisallowedPacketErr",
4869 0, 0, CNTR_NORMAL,
4870 access_tx_sdma14_disallowed_packet_err_cnt),
4871[C_TX_SDMA13_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma13DisallowedPacketErr",
4872 0, 0, CNTR_NORMAL,
4873 access_tx_sdma13_disallowed_packet_err_cnt),
4874[C_TX_SDMA12_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma12DisallowedPacketErr",
4875 0, 0, CNTR_NORMAL,
4876 access_tx_sdma12_disallowed_packet_err_cnt),
4877[C_TX_SDMA11_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma11DisallowedPacketErr",
4878 0, 0, CNTR_NORMAL,
4879 access_tx_sdma11_disallowed_packet_err_cnt),
4880[C_TX_SDMA10_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma10DisallowedPacketErr",
4881 0, 0, CNTR_NORMAL,
4882 access_tx_sdma10_disallowed_packet_err_cnt),
4883[C_TX_SDMA9_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma9DisallowedPacketErr",
4884 0, 0, CNTR_NORMAL,
4885 access_tx_sdma9_disallowed_packet_err_cnt),
4886[C_TX_SDMA8_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma8DisallowedPacketErr",
4887 0, 0, CNTR_NORMAL,
4888 access_tx_sdma8_disallowed_packet_err_cnt),
4889[C_TX_SDMA7_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma7DisallowedPacketErr",
4890 0, 0, CNTR_NORMAL,
4891 access_tx_sdma7_disallowed_packet_err_cnt),
4892[C_TX_SDMA6_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma6DisallowedPacketErr",
4893 0, 0, CNTR_NORMAL,
4894 access_tx_sdma6_disallowed_packet_err_cnt),
4895[C_TX_SDMA5_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma5DisallowedPacketErr",
4896 0, 0, CNTR_NORMAL,
4897 access_tx_sdma5_disallowed_packet_err_cnt),
4898[C_TX_SDMA4_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma4DisallowedPacketErr",
4899 0, 0, CNTR_NORMAL,
4900 access_tx_sdma4_disallowed_packet_err_cnt),
4901[C_TX_SDMA3_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma3DisallowedPacketErr",
4902 0, 0, CNTR_NORMAL,
4903 access_tx_sdma3_disallowed_packet_err_cnt),
4904[C_TX_SDMA2_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma2DisallowedPacketErr",
4905 0, 0, CNTR_NORMAL,
4906 access_tx_sdma2_disallowed_packet_err_cnt),
4907[C_TX_SDMA1_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma1DisallowedPacketErr",
4908 0, 0, CNTR_NORMAL,
4909 access_tx_sdma1_disallowed_packet_err_cnt),
4910[C_TX_SDMA0_DISALLOWED_PACKET_ERR] = CNTR_ELEM("TxSdma0DisallowedPacketErr",
4911 0, 0, CNTR_NORMAL,
4912 access_tx_sdma0_disallowed_packet_err_cnt),
4913[C_TX_CONFIG_PARITY_ERR] = CNTR_ELEM("TxConfigParityErr", 0, 0,
4914 CNTR_NORMAL,
4915 access_tx_config_parity_err_cnt),
4916[C_TX_SBRD_CTL_CSR_PARITY_ERR] = CNTR_ELEM("TxSbrdCtlCsrParityErr", 0, 0,
4917 CNTR_NORMAL,
4918 access_tx_sbrd_ctl_csr_parity_err_cnt),
4919[C_TX_LAUNCH_CSR_PARITY_ERR] = CNTR_ELEM("TxLaunchCsrParityErr", 0, 0,
4920 CNTR_NORMAL,
4921 access_tx_launch_csr_parity_err_cnt),
4922[C_TX_ILLEGAL_CL_ERR] = CNTR_ELEM("TxIllegalVLErr", 0, 0,
4923 CNTR_NORMAL,
4924 access_tx_illegal_vl_err_cnt),
4925[C_TX_SBRD_CTL_STATE_MACHINE_PARITY_ERR] = CNTR_ELEM(
4926 "TxSbrdCtlStateMachineParityErr", 0, 0,
4927 CNTR_NORMAL,
4928 access_tx_sbrd_ctl_state_machine_parity_err_cnt),
4929[C_TX_RESERVED_10] = CNTR_ELEM("Tx Egress Reserved 10", 0, 0,
4930 CNTR_NORMAL,
4931 access_egress_reserved_10_err_cnt),
4932[C_TX_RESERVED_9] = CNTR_ELEM("Tx Egress Reserved 9", 0, 0,
4933 CNTR_NORMAL,
4934 access_egress_reserved_9_err_cnt),
4935[C_TX_SDMA_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxSdmaLaunchIntfParityErr",
4936 0, 0, CNTR_NORMAL,
4937 access_tx_sdma_launch_intf_parity_err_cnt),
4938[C_TX_PIO_LAUNCH_INTF_PARITY_ERR] = CNTR_ELEM("TxPioLaunchIntfParityErr", 0, 0,
4939 CNTR_NORMAL,
4940 access_tx_pio_launch_intf_parity_err_cnt),
4941[C_TX_RESERVED_6] = CNTR_ELEM("Tx Egress Reserved 6", 0, 0,
4942 CNTR_NORMAL,
4943 access_egress_reserved_6_err_cnt),
4944[C_TX_INCORRECT_LINK_STATE_ERR] = CNTR_ELEM("TxIncorrectLinkStateErr", 0, 0,
4945 CNTR_NORMAL,
4946 access_tx_incorrect_link_state_err_cnt),
4947[C_TX_LINK_DOWN_ERR] = CNTR_ELEM("TxLinkdownErr", 0, 0,
4948 CNTR_NORMAL,
4949 access_tx_linkdown_err_cnt),
4950[C_TX_EGRESS_FIFO_UNDERRUN_OR_PARITY_ERR] = CNTR_ELEM(
4951 "EgressFifoUnderrunOrParityErr", 0, 0,
4952 CNTR_NORMAL,
4953 access_tx_egress_fifi_underrun_or_parity_err_cnt),
4954[C_TX_RESERVED_2] = CNTR_ELEM("Tx Egress Reserved 2", 0, 0,
4955 CNTR_NORMAL,
4956 access_egress_reserved_2_err_cnt),
4957[C_TX_PKT_INTEGRITY_MEM_UNC_ERR] = CNTR_ELEM("TxPktIntegrityMemUncErr", 0, 0,
4958 CNTR_NORMAL,
4959 access_tx_pkt_integrity_mem_unc_err_cnt),
4960[C_TX_PKT_INTEGRITY_MEM_COR_ERR] = CNTR_ELEM("TxPktIntegrityMemCorErr", 0, 0,
4961 CNTR_NORMAL,
4962 access_tx_pkt_integrity_mem_cor_err_cnt),
4963/* SendErrStatus */
4964[C_SEND_CSR_WRITE_BAD_ADDR_ERR] = CNTR_ELEM("SendCsrWriteBadAddrErr", 0, 0,
4965 CNTR_NORMAL,
4966 access_send_csr_write_bad_addr_err_cnt),
4967[C_SEND_CSR_READ_BAD_ADD_ERR] = CNTR_ELEM("SendCsrReadBadAddrErr", 0, 0,
4968 CNTR_NORMAL,
4969 access_send_csr_read_bad_addr_err_cnt),
4970[C_SEND_CSR_PARITY_ERR] = CNTR_ELEM("SendCsrParityErr", 0, 0,
4971 CNTR_NORMAL,
4972 access_send_csr_parity_cnt),
4973/* SendCtxtErrStatus */
4974[C_PIO_WRITE_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("PioWriteOutOfBoundsErr", 0, 0,
4975 CNTR_NORMAL,
4976 access_pio_write_out_of_bounds_err_cnt),
4977[C_PIO_WRITE_OVERFLOW_ERR] = CNTR_ELEM("PioWriteOverflowErr", 0, 0,
4978 CNTR_NORMAL,
4979 access_pio_write_overflow_err_cnt),
4980[C_PIO_WRITE_CROSSES_BOUNDARY_ERR] = CNTR_ELEM("PioWriteCrossesBoundaryErr",
4981 0, 0, CNTR_NORMAL,
4982 access_pio_write_crosses_boundary_err_cnt),
4983[C_PIO_DISALLOWED_PACKET_ERR] = CNTR_ELEM("PioDisallowedPacketErr", 0, 0,
4984 CNTR_NORMAL,
4985 access_pio_disallowed_packet_err_cnt),
4986[C_PIO_INCONSISTENT_SOP_ERR] = CNTR_ELEM("PioInconsistentSopErr", 0, 0,
4987 CNTR_NORMAL,
4988 access_pio_inconsistent_sop_err_cnt),
4989/* SendDmaEngErrStatus */
4990[C_SDMA_HEADER_REQUEST_FIFO_COR_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoCorErr",
4991 0, 0, CNTR_NORMAL,
4992 access_sdma_header_request_fifo_cor_err_cnt),
4993[C_SDMA_HEADER_STORAGE_COR_ERR] = CNTR_ELEM("SDmaHeaderStorageCorErr", 0, 0,
4994 CNTR_NORMAL,
4995 access_sdma_header_storage_cor_err_cnt),
4996[C_SDMA_PACKET_TRACKING_COR_ERR] = CNTR_ELEM("SDmaPacketTrackingCorErr", 0, 0,
4997 CNTR_NORMAL,
4998 access_sdma_packet_tracking_cor_err_cnt),
4999[C_SDMA_ASSEMBLY_COR_ERR] = CNTR_ELEM("SDmaAssemblyCorErr", 0, 0,
5000 CNTR_NORMAL,
5001 access_sdma_assembly_cor_err_cnt),
5002[C_SDMA_DESC_TABLE_COR_ERR] = CNTR_ELEM("SDmaDescTableCorErr", 0, 0,
5003 CNTR_NORMAL,
5004 access_sdma_desc_table_cor_err_cnt),
5005[C_SDMA_HEADER_REQUEST_FIFO_UNC_ERR] = CNTR_ELEM("SDmaHeaderRequestFifoUncErr",
5006 0, 0, CNTR_NORMAL,
5007 access_sdma_header_request_fifo_unc_err_cnt),
5008[C_SDMA_HEADER_STORAGE_UNC_ERR] = CNTR_ELEM("SDmaHeaderStorageUncErr", 0, 0,
5009 CNTR_NORMAL,
5010 access_sdma_header_storage_unc_err_cnt),
5011[C_SDMA_PACKET_TRACKING_UNC_ERR] = CNTR_ELEM("SDmaPacketTrackingUncErr", 0, 0,
5012 CNTR_NORMAL,
5013 access_sdma_packet_tracking_unc_err_cnt),
5014[C_SDMA_ASSEMBLY_UNC_ERR] = CNTR_ELEM("SDmaAssemblyUncErr", 0, 0,
5015 CNTR_NORMAL,
5016 access_sdma_assembly_unc_err_cnt),
5017[C_SDMA_DESC_TABLE_UNC_ERR] = CNTR_ELEM("SDmaDescTableUncErr", 0, 0,
5018 CNTR_NORMAL,
5019 access_sdma_desc_table_unc_err_cnt),
5020[C_SDMA_TIMEOUT_ERR] = CNTR_ELEM("SDmaTimeoutErr", 0, 0,
5021 CNTR_NORMAL,
5022 access_sdma_timeout_err_cnt),
5023[C_SDMA_HEADER_LENGTH_ERR] = CNTR_ELEM("SDmaHeaderLengthErr", 0, 0,
5024 CNTR_NORMAL,
5025 access_sdma_header_length_err_cnt),
5026[C_SDMA_HEADER_ADDRESS_ERR] = CNTR_ELEM("SDmaHeaderAddressErr", 0, 0,
5027 CNTR_NORMAL,
5028 access_sdma_header_address_err_cnt),
5029[C_SDMA_HEADER_SELECT_ERR] = CNTR_ELEM("SDmaHeaderSelectErr", 0, 0,
5030 CNTR_NORMAL,
5031 access_sdma_header_select_err_cnt),
5032[C_SMDA_RESERVED_9] = CNTR_ELEM("SDma Reserved 9", 0, 0,
5033 CNTR_NORMAL,
5034 access_sdma_reserved_9_err_cnt),
5035[C_SDMA_PACKET_DESC_OVERFLOW_ERR] = CNTR_ELEM("SDmaPacketDescOverflowErr", 0, 0,
5036 CNTR_NORMAL,
5037 access_sdma_packet_desc_overflow_err_cnt),
5038[C_SDMA_LENGTH_MISMATCH_ERR] = CNTR_ELEM("SDmaLengthMismatchErr", 0, 0,
5039 CNTR_NORMAL,
5040 access_sdma_length_mismatch_err_cnt),
5041[C_SDMA_HALT_ERR] = CNTR_ELEM("SDmaHaltErr", 0, 0,
5042 CNTR_NORMAL,
5043 access_sdma_halt_err_cnt),
5044[C_SDMA_MEM_READ_ERR] = CNTR_ELEM("SDmaMemReadErr", 0, 0,
5045 CNTR_NORMAL,
5046 access_sdma_mem_read_err_cnt),
5047[C_SDMA_FIRST_DESC_ERR] = CNTR_ELEM("SDmaFirstDescErr", 0, 0,
5048 CNTR_NORMAL,
5049 access_sdma_first_desc_err_cnt),
5050[C_SDMA_TAIL_OUT_OF_BOUNDS_ERR] = CNTR_ELEM("SDmaTailOutOfBoundsErr", 0, 0,
5051 CNTR_NORMAL,
5052 access_sdma_tail_out_of_bounds_err_cnt),
5053[C_SDMA_TOO_LONG_ERR] = CNTR_ELEM("SDmaTooLongErr", 0, 0,
5054 CNTR_NORMAL,
5055 access_sdma_too_long_err_cnt),
5056[C_SDMA_GEN_MISMATCH_ERR] = CNTR_ELEM("SDmaGenMismatchErr", 0, 0,
5057 CNTR_NORMAL,
5058 access_sdma_gen_mismatch_err_cnt),
5059[C_SDMA_WRONG_DW_ERR] = CNTR_ELEM("SDmaWrongDwErr", 0, 0,
5060 CNTR_NORMAL,
5061 access_sdma_wrong_dw_err_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005062};
5063
5064static struct cntr_entry port_cntrs[PORT_CNTR_LAST] = {
5065[C_TX_UNSUP_VL] = TXE32_PORT_CNTR_ELEM(TxUnVLErr, SEND_UNSUP_VL_ERR_CNT,
5066 CNTR_NORMAL),
5067[C_TX_INVAL_LEN] = TXE32_PORT_CNTR_ELEM(TxInvalLen, SEND_LEN_ERR_CNT,
5068 CNTR_NORMAL),
5069[C_TX_MM_LEN_ERR] = TXE32_PORT_CNTR_ELEM(TxMMLenErr, SEND_MAX_MIN_LEN_ERR_CNT,
5070 CNTR_NORMAL),
5071[C_TX_UNDERRUN] = TXE32_PORT_CNTR_ELEM(TxUnderrun, SEND_UNDERRUN_CNT,
5072 CNTR_NORMAL),
5073[C_TX_FLOW_STALL] = TXE32_PORT_CNTR_ELEM(TxFlowStall, SEND_FLOW_STALL_CNT,
5074 CNTR_NORMAL),
5075[C_TX_DROPPED] = TXE32_PORT_CNTR_ELEM(TxDropped, SEND_DROPPED_PKT_CNT,
5076 CNTR_NORMAL),
5077[C_TX_HDR_ERR] = TXE32_PORT_CNTR_ELEM(TxHdrErr, SEND_HEADERS_ERR_CNT,
5078 CNTR_NORMAL),
5079[C_TX_PKT] = TXE64_PORT_CNTR_ELEM(TxPkt, SEND_DATA_PKT_CNT, CNTR_NORMAL),
5080[C_TX_WORDS] = TXE64_PORT_CNTR_ELEM(TxWords, SEND_DWORD_CNT, CNTR_NORMAL),
5081[C_TX_WAIT] = TXE64_PORT_CNTR_ELEM(TxWait, SEND_WAIT_CNT, CNTR_SYNTH),
5082[C_TX_FLIT_VL] = TXE64_PORT_CNTR_ELEM(TxFlitVL, SEND_DATA_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005083 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005084[C_TX_PKT_VL] = TXE64_PORT_CNTR_ELEM(TxPktVL, SEND_DATA_PKT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005085 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005086[C_TX_WAIT_VL] = TXE64_PORT_CNTR_ELEM(TxWaitVL, SEND_WAIT_VL0_CNT,
Jubin John17fb4f22016-02-14 20:21:52 -08005087 CNTR_SYNTH | CNTR_VL),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005088[C_RX_PKT] = RXE64_PORT_CNTR_ELEM(RxPkt, RCV_DATA_PKT_CNT, CNTR_NORMAL),
5089[C_RX_WORDS] = RXE64_PORT_CNTR_ELEM(RxWords, RCV_DWORD_CNT, CNTR_NORMAL),
5090[C_SW_LINK_DOWN] = CNTR_ELEM("SwLinkDown", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005091 access_sw_link_dn_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005092[C_SW_LINK_UP] = CNTR_ELEM("SwLinkUp", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005093 access_sw_link_up_cnt),
Dean Luick6d014532015-12-01 15:38:23 -05005094[C_SW_UNKNOWN_FRAME] = CNTR_ELEM("UnknownFrame", 0, 0, CNTR_NORMAL,
5095 access_sw_unknown_frame_cnt),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005096[C_SW_XMIT_DSCD] = CNTR_ELEM("XmitDscd", 0, 0, CNTR_SYNTH | CNTR_32BIT,
Jubin John17fb4f22016-02-14 20:21:52 -08005097 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005098[C_SW_XMIT_DSCD_VL] = CNTR_ELEM("XmitDscdVl", 0, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08005099 CNTR_SYNTH | CNTR_32BIT | CNTR_VL,
5100 access_sw_xmit_discards),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005101[C_SW_XMIT_CSTR_ERR] = CNTR_ELEM("XmitCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005102 access_xmit_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005103[C_SW_RCV_CSTR_ERR] = CNTR_ELEM("RcvCstrErr", 0, 0, CNTR_SYNTH,
Jubin John17fb4f22016-02-14 20:21:52 -08005104 access_rcv_constraint_errs),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005105[C_SW_IBP_LOOP_PKTS] = SW_IBP_CNTR(LoopPkts, loop_pkts),
5106[C_SW_IBP_RC_RESENDS] = SW_IBP_CNTR(RcResend, rc_resends),
5107[C_SW_IBP_RNR_NAKS] = SW_IBP_CNTR(RnrNak, rnr_naks),
5108[C_SW_IBP_OTHER_NAKS] = SW_IBP_CNTR(OtherNak, other_naks),
5109[C_SW_IBP_RC_TIMEOUTS] = SW_IBP_CNTR(RcTimeOut, rc_timeouts),
5110[C_SW_IBP_PKT_DROPS] = SW_IBP_CNTR(PktDrop, pkt_drops),
5111[C_SW_IBP_DMA_WAIT] = SW_IBP_CNTR(DmaWait, dmawait),
5112[C_SW_IBP_RC_SEQNAK] = SW_IBP_CNTR(RcSeqNak, rc_seqnak),
5113[C_SW_IBP_RC_DUPREQ] = SW_IBP_CNTR(RcDupRew, rc_dupreq),
5114[C_SW_IBP_RDMA_SEQ] = SW_IBP_CNTR(RdmaSeq, rdma_seq),
5115[C_SW_IBP_UNALIGNED] = SW_IBP_CNTR(Unaligned, unaligned),
5116[C_SW_IBP_SEQ_NAK] = SW_IBP_CNTR(SeqNak, seq_naks),
5117[C_SW_CPU_RC_ACKS] = CNTR_ELEM("RcAcks", 0, 0, CNTR_NORMAL,
5118 access_sw_cpu_rc_acks),
5119[C_SW_CPU_RC_QACKS] = CNTR_ELEM("RcQacks", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005120 access_sw_cpu_rc_qacks),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005121[C_SW_CPU_RC_DELAYED_COMP] = CNTR_ELEM("RcDelayComp", 0, 0, CNTR_NORMAL,
Jubin John17fb4f22016-02-14 20:21:52 -08005122 access_sw_cpu_rc_delayed_comp),
Mike Marciniszyn77241052015-07-30 15:17:43 -04005123[OVR_LBL(0)] = OVR_ELM(0), [OVR_LBL(1)] = OVR_ELM(1),
5124[OVR_LBL(2)] = OVR_ELM(2), [OVR_LBL(3)] = OVR_ELM(3),
5125[OVR_LBL(4)] = OVR_ELM(4), [OVR_LBL(5)] = OVR_ELM(5),
5126[OVR_LBL(6)] = OVR_ELM(6), [OVR_LBL(7)] = OVR_ELM(7),
5127[OVR_LBL(8)] = OVR_ELM(8), [OVR_LBL(9)] = OVR_ELM(9),
5128[OVR_LBL(10)] = OVR_ELM(10), [OVR_LBL(11)] = OVR_ELM(11),
5129[OVR_LBL(12)] = OVR_ELM(12), [OVR_LBL(13)] = OVR_ELM(13),
5130[OVR_LBL(14)] = OVR_ELM(14), [OVR_LBL(15)] = OVR_ELM(15),
5131[OVR_LBL(16)] = OVR_ELM(16), [OVR_LBL(17)] = OVR_ELM(17),
5132[OVR_LBL(18)] = OVR_ELM(18), [OVR_LBL(19)] = OVR_ELM(19),
5133[OVR_LBL(20)] = OVR_ELM(20), [OVR_LBL(21)] = OVR_ELM(21),
5134[OVR_LBL(22)] = OVR_ELM(22), [OVR_LBL(23)] = OVR_ELM(23),
5135[OVR_LBL(24)] = OVR_ELM(24), [OVR_LBL(25)] = OVR_ELM(25),
5136[OVR_LBL(26)] = OVR_ELM(26), [OVR_LBL(27)] = OVR_ELM(27),
5137[OVR_LBL(28)] = OVR_ELM(28), [OVR_LBL(29)] = OVR_ELM(29),
5138[OVR_LBL(30)] = OVR_ELM(30), [OVR_LBL(31)] = OVR_ELM(31),
5139[OVR_LBL(32)] = OVR_ELM(32), [OVR_LBL(33)] = OVR_ELM(33),
5140[OVR_LBL(34)] = OVR_ELM(34), [OVR_LBL(35)] = OVR_ELM(35),
5141[OVR_LBL(36)] = OVR_ELM(36), [OVR_LBL(37)] = OVR_ELM(37),
5142[OVR_LBL(38)] = OVR_ELM(38), [OVR_LBL(39)] = OVR_ELM(39),
5143[OVR_LBL(40)] = OVR_ELM(40), [OVR_LBL(41)] = OVR_ELM(41),
5144[OVR_LBL(42)] = OVR_ELM(42), [OVR_LBL(43)] = OVR_ELM(43),
5145[OVR_LBL(44)] = OVR_ELM(44), [OVR_LBL(45)] = OVR_ELM(45),
5146[OVR_LBL(46)] = OVR_ELM(46), [OVR_LBL(47)] = OVR_ELM(47),
5147[OVR_LBL(48)] = OVR_ELM(48), [OVR_LBL(49)] = OVR_ELM(49),
5148[OVR_LBL(50)] = OVR_ELM(50), [OVR_LBL(51)] = OVR_ELM(51),
5149[OVR_LBL(52)] = OVR_ELM(52), [OVR_LBL(53)] = OVR_ELM(53),
5150[OVR_LBL(54)] = OVR_ELM(54), [OVR_LBL(55)] = OVR_ELM(55),
5151[OVR_LBL(56)] = OVR_ELM(56), [OVR_LBL(57)] = OVR_ELM(57),
5152[OVR_LBL(58)] = OVR_ELM(58), [OVR_LBL(59)] = OVR_ELM(59),
5153[OVR_LBL(60)] = OVR_ELM(60), [OVR_LBL(61)] = OVR_ELM(61),
5154[OVR_LBL(62)] = OVR_ELM(62), [OVR_LBL(63)] = OVR_ELM(63),
5155[OVR_LBL(64)] = OVR_ELM(64), [OVR_LBL(65)] = OVR_ELM(65),
5156[OVR_LBL(66)] = OVR_ELM(66), [OVR_LBL(67)] = OVR_ELM(67),
5157[OVR_LBL(68)] = OVR_ELM(68), [OVR_LBL(69)] = OVR_ELM(69),
5158[OVR_LBL(70)] = OVR_ELM(70), [OVR_LBL(71)] = OVR_ELM(71),
5159[OVR_LBL(72)] = OVR_ELM(72), [OVR_LBL(73)] = OVR_ELM(73),
5160[OVR_LBL(74)] = OVR_ELM(74), [OVR_LBL(75)] = OVR_ELM(75),
5161[OVR_LBL(76)] = OVR_ELM(76), [OVR_LBL(77)] = OVR_ELM(77),
5162[OVR_LBL(78)] = OVR_ELM(78), [OVR_LBL(79)] = OVR_ELM(79),
5163[OVR_LBL(80)] = OVR_ELM(80), [OVR_LBL(81)] = OVR_ELM(81),
5164[OVR_LBL(82)] = OVR_ELM(82), [OVR_LBL(83)] = OVR_ELM(83),
5165[OVR_LBL(84)] = OVR_ELM(84), [OVR_LBL(85)] = OVR_ELM(85),
5166[OVR_LBL(86)] = OVR_ELM(86), [OVR_LBL(87)] = OVR_ELM(87),
5167[OVR_LBL(88)] = OVR_ELM(88), [OVR_LBL(89)] = OVR_ELM(89),
5168[OVR_LBL(90)] = OVR_ELM(90), [OVR_LBL(91)] = OVR_ELM(91),
5169[OVR_LBL(92)] = OVR_ELM(92), [OVR_LBL(93)] = OVR_ELM(93),
5170[OVR_LBL(94)] = OVR_ELM(94), [OVR_LBL(95)] = OVR_ELM(95),
5171[OVR_LBL(96)] = OVR_ELM(96), [OVR_LBL(97)] = OVR_ELM(97),
5172[OVR_LBL(98)] = OVR_ELM(98), [OVR_LBL(99)] = OVR_ELM(99),
5173[OVR_LBL(100)] = OVR_ELM(100), [OVR_LBL(101)] = OVR_ELM(101),
5174[OVR_LBL(102)] = OVR_ELM(102), [OVR_LBL(103)] = OVR_ELM(103),
5175[OVR_LBL(104)] = OVR_ELM(104), [OVR_LBL(105)] = OVR_ELM(105),
5176[OVR_LBL(106)] = OVR_ELM(106), [OVR_LBL(107)] = OVR_ELM(107),
5177[OVR_LBL(108)] = OVR_ELM(108), [OVR_LBL(109)] = OVR_ELM(109),
5178[OVR_LBL(110)] = OVR_ELM(110), [OVR_LBL(111)] = OVR_ELM(111),
5179[OVR_LBL(112)] = OVR_ELM(112), [OVR_LBL(113)] = OVR_ELM(113),
5180[OVR_LBL(114)] = OVR_ELM(114), [OVR_LBL(115)] = OVR_ELM(115),
5181[OVR_LBL(116)] = OVR_ELM(116), [OVR_LBL(117)] = OVR_ELM(117),
5182[OVR_LBL(118)] = OVR_ELM(118), [OVR_LBL(119)] = OVR_ELM(119),
5183[OVR_LBL(120)] = OVR_ELM(120), [OVR_LBL(121)] = OVR_ELM(121),
5184[OVR_LBL(122)] = OVR_ELM(122), [OVR_LBL(123)] = OVR_ELM(123),
5185[OVR_LBL(124)] = OVR_ELM(124), [OVR_LBL(125)] = OVR_ELM(125),
5186[OVR_LBL(126)] = OVR_ELM(126), [OVR_LBL(127)] = OVR_ELM(127),
5187[OVR_LBL(128)] = OVR_ELM(128), [OVR_LBL(129)] = OVR_ELM(129),
5188[OVR_LBL(130)] = OVR_ELM(130), [OVR_LBL(131)] = OVR_ELM(131),
5189[OVR_LBL(132)] = OVR_ELM(132), [OVR_LBL(133)] = OVR_ELM(133),
5190[OVR_LBL(134)] = OVR_ELM(134), [OVR_LBL(135)] = OVR_ELM(135),
5191[OVR_LBL(136)] = OVR_ELM(136), [OVR_LBL(137)] = OVR_ELM(137),
5192[OVR_LBL(138)] = OVR_ELM(138), [OVR_LBL(139)] = OVR_ELM(139),
5193[OVR_LBL(140)] = OVR_ELM(140), [OVR_LBL(141)] = OVR_ELM(141),
5194[OVR_LBL(142)] = OVR_ELM(142), [OVR_LBL(143)] = OVR_ELM(143),
5195[OVR_LBL(144)] = OVR_ELM(144), [OVR_LBL(145)] = OVR_ELM(145),
5196[OVR_LBL(146)] = OVR_ELM(146), [OVR_LBL(147)] = OVR_ELM(147),
5197[OVR_LBL(148)] = OVR_ELM(148), [OVR_LBL(149)] = OVR_ELM(149),
5198[OVR_LBL(150)] = OVR_ELM(150), [OVR_LBL(151)] = OVR_ELM(151),
5199[OVR_LBL(152)] = OVR_ELM(152), [OVR_LBL(153)] = OVR_ELM(153),
5200[OVR_LBL(154)] = OVR_ELM(154), [OVR_LBL(155)] = OVR_ELM(155),
5201[OVR_LBL(156)] = OVR_ELM(156), [OVR_LBL(157)] = OVR_ELM(157),
5202[OVR_LBL(158)] = OVR_ELM(158), [OVR_LBL(159)] = OVR_ELM(159),
5203};
5204
5205/* ======================================================================== */
5206
Mike Marciniszyn77241052015-07-30 15:17:43 -04005207/* return true if this is chip revision revision a */
5208int is_ax(struct hfi1_devdata *dd)
5209{
5210 u8 chip_rev_minor =
5211 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5212 & CCE_REVISION_CHIP_REV_MINOR_MASK;
5213 return (chip_rev_minor & 0xf0) == 0;
5214}
5215
5216/* return true if this is chip revision revision b */
5217int is_bx(struct hfi1_devdata *dd)
5218{
5219 u8 chip_rev_minor =
5220 dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT
5221 & CCE_REVISION_CHIP_REV_MINOR_MASK;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005222 return (chip_rev_minor & 0xF0) == 0x10;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005223}
5224
5225/*
5226 * Append string s to buffer buf. Arguments curp and len are the current
5227 * position and remaining length, respectively.
5228 *
5229 * return 0 on success, 1 on out of room
5230 */
5231static int append_str(char *buf, char **curp, int *lenp, const char *s)
5232{
5233 char *p = *curp;
5234 int len = *lenp;
5235 int result = 0; /* success */
5236 char c;
5237
5238 /* add a comma, if first in the buffer */
5239 if (p != buf) {
5240 if (len == 0) {
5241 result = 1; /* out of room */
5242 goto done;
5243 }
5244 *p++ = ',';
5245 len--;
5246 }
5247
5248 /* copy the string */
5249 while ((c = *s++) != 0) {
5250 if (len == 0) {
5251 result = 1; /* out of room */
5252 goto done;
5253 }
5254 *p++ = c;
5255 len--;
5256 }
5257
5258done:
5259 /* write return values */
5260 *curp = p;
5261 *lenp = len;
5262
5263 return result;
5264}
5265
5266/*
5267 * Using the given flag table, print a comma separated string into
5268 * the buffer. End in '*' if the buffer is too short.
5269 */
5270static char *flag_string(char *buf, int buf_len, u64 flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005271 struct flag_table *table, int table_size)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005272{
5273 char extra[32];
5274 char *p = buf;
5275 int len = buf_len;
5276 int no_room = 0;
5277 int i;
5278
5279 /* make sure there is at least 2 so we can form "*" */
5280 if (len < 2)
5281 return "";
5282
5283 len--; /* leave room for a nul */
5284 for (i = 0; i < table_size; i++) {
5285 if (flags & table[i].flag) {
5286 no_room = append_str(buf, &p, &len, table[i].str);
5287 if (no_room)
5288 break;
5289 flags &= ~table[i].flag;
5290 }
5291 }
5292
5293 /* any undocumented bits left? */
5294 if (!no_room && flags) {
5295 snprintf(extra, sizeof(extra), "bits 0x%llx", flags);
5296 no_room = append_str(buf, &p, &len, extra);
5297 }
5298
5299 /* add * if ran out of room */
5300 if (no_room) {
5301 /* may need to back up to add space for a '*' */
5302 if (len == 0)
5303 --p;
5304 *p++ = '*';
5305 }
5306
5307 /* add final nul - space already allocated above */
5308 *p = 0;
5309 return buf;
5310}
5311
5312/* first 8 CCE error interrupt source names */
5313static const char * const cce_misc_names[] = {
5314 "CceErrInt", /* 0 */
5315 "RxeErrInt", /* 1 */
5316 "MiscErrInt", /* 2 */
5317 "Reserved3", /* 3 */
5318 "PioErrInt", /* 4 */
5319 "SDmaErrInt", /* 5 */
5320 "EgressErrInt", /* 6 */
5321 "TxeErrInt" /* 7 */
5322};
5323
5324/*
5325 * Return the miscellaneous error interrupt name.
5326 */
5327static char *is_misc_err_name(char *buf, size_t bsize, unsigned int source)
5328{
5329 if (source < ARRAY_SIZE(cce_misc_names))
5330 strncpy(buf, cce_misc_names[source], bsize);
5331 else
Jubin John17fb4f22016-02-14 20:21:52 -08005332 snprintf(buf, bsize, "Reserved%u",
5333 source + IS_GENERAL_ERR_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005334
5335 return buf;
5336}
5337
5338/*
5339 * Return the SDMA engine error interrupt name.
5340 */
5341static char *is_sdma_eng_err_name(char *buf, size_t bsize, unsigned int source)
5342{
5343 snprintf(buf, bsize, "SDmaEngErrInt%u", source);
5344 return buf;
5345}
5346
5347/*
5348 * Return the send context error interrupt name.
5349 */
5350static char *is_sendctxt_err_name(char *buf, size_t bsize, unsigned int source)
5351{
5352 snprintf(buf, bsize, "SendCtxtErrInt%u", source);
5353 return buf;
5354}
5355
5356static const char * const various_names[] = {
5357 "PbcInt",
5358 "GpioAssertInt",
5359 "Qsfp1Int",
5360 "Qsfp2Int",
5361 "TCritInt"
5362};
5363
5364/*
5365 * Return the various interrupt name.
5366 */
5367static char *is_various_name(char *buf, size_t bsize, unsigned int source)
5368{
5369 if (source < ARRAY_SIZE(various_names))
5370 strncpy(buf, various_names[source], bsize);
5371 else
Jubin John8638b772016-02-14 20:19:24 -08005372 snprintf(buf, bsize, "Reserved%u", source + IS_VARIOUS_START);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005373 return buf;
5374}
5375
5376/*
5377 * Return the DC interrupt name.
5378 */
5379static char *is_dc_name(char *buf, size_t bsize, unsigned int source)
5380{
5381 static const char * const dc_int_names[] = {
5382 "common",
5383 "lcb",
5384 "8051",
5385 "lbm" /* local block merge */
5386 };
5387
5388 if (source < ARRAY_SIZE(dc_int_names))
5389 snprintf(buf, bsize, "dc_%s_int", dc_int_names[source]);
5390 else
5391 snprintf(buf, bsize, "DCInt%u", source);
5392 return buf;
5393}
5394
5395static const char * const sdma_int_names[] = {
5396 "SDmaInt",
5397 "SdmaIdleInt",
5398 "SdmaProgressInt",
5399};
5400
5401/*
5402 * Return the SDMA engine interrupt name.
5403 */
5404static char *is_sdma_eng_name(char *buf, size_t bsize, unsigned int source)
5405{
5406 /* what interrupt */
5407 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
5408 /* which engine */
5409 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
5410
5411 if (likely(what < 3))
5412 snprintf(buf, bsize, "%s%u", sdma_int_names[what], which);
5413 else
5414 snprintf(buf, bsize, "Invalid SDMA interrupt %u", source);
5415 return buf;
5416}
5417
5418/*
5419 * Return the receive available interrupt name.
5420 */
5421static char *is_rcv_avail_name(char *buf, size_t bsize, unsigned int source)
5422{
5423 snprintf(buf, bsize, "RcvAvailInt%u", source);
5424 return buf;
5425}
5426
5427/*
5428 * Return the receive urgent interrupt name.
5429 */
5430static char *is_rcv_urgent_name(char *buf, size_t bsize, unsigned int source)
5431{
5432 snprintf(buf, bsize, "RcvUrgentInt%u", source);
5433 return buf;
5434}
5435
5436/*
5437 * Return the send credit interrupt name.
5438 */
5439static char *is_send_credit_name(char *buf, size_t bsize, unsigned int source)
5440{
5441 snprintf(buf, bsize, "SendCreditInt%u", source);
5442 return buf;
5443}
5444
5445/*
5446 * Return the reserved interrupt name.
5447 */
5448static char *is_reserved_name(char *buf, size_t bsize, unsigned int source)
5449{
5450 snprintf(buf, bsize, "Reserved%u", source + IS_RESERVED_START);
5451 return buf;
5452}
5453
5454static char *cce_err_status_string(char *buf, int buf_len, u64 flags)
5455{
5456 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005457 cce_err_status_flags,
5458 ARRAY_SIZE(cce_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005459}
5460
5461static char *rxe_err_status_string(char *buf, int buf_len, u64 flags)
5462{
5463 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005464 rxe_err_status_flags,
5465 ARRAY_SIZE(rxe_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005466}
5467
5468static char *misc_err_status_string(char *buf, int buf_len, u64 flags)
5469{
5470 return flag_string(buf, buf_len, flags, misc_err_status_flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005471 ARRAY_SIZE(misc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005472}
5473
5474static char *pio_err_status_string(char *buf, int buf_len, u64 flags)
5475{
5476 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005477 pio_err_status_flags,
5478 ARRAY_SIZE(pio_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005479}
5480
5481static char *sdma_err_status_string(char *buf, int buf_len, u64 flags)
5482{
5483 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005484 sdma_err_status_flags,
5485 ARRAY_SIZE(sdma_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005486}
5487
5488static char *egress_err_status_string(char *buf, int buf_len, u64 flags)
5489{
5490 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005491 egress_err_status_flags,
5492 ARRAY_SIZE(egress_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005493}
5494
5495static char *egress_err_info_string(char *buf, int buf_len, u64 flags)
5496{
5497 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005498 egress_err_info_flags,
5499 ARRAY_SIZE(egress_err_info_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005500}
5501
5502static char *send_err_status_string(char *buf, int buf_len, u64 flags)
5503{
5504 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005505 send_err_status_flags,
5506 ARRAY_SIZE(send_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005507}
5508
5509static void handle_cce_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5510{
5511 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005512 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005513
5514 /*
5515 * For most these errors, there is nothing that can be done except
5516 * report or record it.
5517 */
5518 dd_dev_info(dd, "CCE Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005519 cce_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005520
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005521 if ((reg & CCE_ERR_STATUS_CCE_CLI2_ASYNC_FIFO_PARITY_ERR_SMASK) &&
5522 is_ax(dd) && (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005523 /* this error requires a manual drop into SPC freeze mode */
5524 /* then a fix up */
5525 start_freeze_handling(dd->pport, FREEZE_SELF);
5526 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005527
5528 for (i = 0; i < NUM_CCE_ERR_STATUS_COUNTERS; i++) {
5529 if (reg & (1ull << i)) {
5530 incr_cntr64(&dd->cce_err_status_cnt[i]);
5531 /* maintain a counter over all cce_err_status errors */
5532 incr_cntr64(&dd->sw_cce_err_status_aggregate);
5533 }
5534 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005535}
5536
5537/*
5538 * Check counters for receive errors that do not have an interrupt
5539 * associated with them.
5540 */
5541#define RCVERR_CHECK_TIME 10
Kees Cook80641352017-10-16 15:51:54 -07005542static void update_rcverr_timer(struct timer_list *t)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005543{
Kees Cook80641352017-10-16 15:51:54 -07005544 struct hfi1_devdata *dd = from_timer(dd, t, rcverr_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005545 struct hfi1_pportdata *ppd = dd->pport;
5546 u32 cur_ovfl_cnt = read_dev_cntr(dd, C_RCV_OVF, CNTR_INVALID_VL);
5547
5548 if (dd->rcv_ovfl_cnt < cur_ovfl_cnt &&
Jubin John17fb4f22016-02-14 20:21:52 -08005549 ppd->port_error_action & OPA_PI_MASK_EX_BUFFER_OVERRUN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04005550 dd_dev_info(dd, "%s: PortErrorAction bounce\n", __func__);
Jubin John17fb4f22016-02-14 20:21:52 -08005551 set_link_down_reason(
5552 ppd, OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN, 0,
5553 OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN);
Sebastian Sanchez71d47002017-07-29 08:43:49 -07005554 queue_work(ppd->link_wq, &ppd->link_bounce_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005555 }
Jubin John50e5dcb2016-02-14 20:19:41 -08005556 dd->rcv_ovfl_cnt = (u32)cur_ovfl_cnt;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005557
5558 mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5559}
5560
5561static int init_rcverr(struct hfi1_devdata *dd)
5562{
Kees Cook80641352017-10-16 15:51:54 -07005563 timer_setup(&dd->rcverr_timer, update_rcverr_timer, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005564 /* Assume the hardware counter has been reset */
5565 dd->rcv_ovfl_cnt = 0;
5566 return mod_timer(&dd->rcverr_timer, jiffies + HZ * RCVERR_CHECK_TIME);
5567}
5568
5569static void free_rcverr(struct hfi1_devdata *dd)
5570{
Kees Cook80641352017-10-16 15:51:54 -07005571 if (dd->rcverr_timer.function)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005572 del_timer_sync(&dd->rcverr_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005573}
5574
5575static void handle_rxe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5576{
5577 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005578 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005579
5580 dd_dev_info(dd, "Receive Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005581 rxe_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005582
5583 if (reg & ALL_RXE_FREEZE_ERR) {
5584 int flags = 0;
5585
5586 /*
5587 * Freeze mode recovery is disabled for the errors
5588 * in RXE_FREEZE_ABORT_MASK
5589 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05005590 if (is_ax(dd) && (reg & RXE_FREEZE_ABORT_MASK))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005591 flags = FREEZE_ABORT;
5592
5593 start_freeze_handling(dd->pport, flags);
5594 }
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005595
5596 for (i = 0; i < NUM_RCV_ERR_STATUS_COUNTERS; i++) {
5597 if (reg & (1ull << i))
5598 incr_cntr64(&dd->rcv_err_status_cnt[i]);
5599 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005600}
5601
5602static void handle_misc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5603{
5604 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005605 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005606
5607 dd_dev_info(dd, "Misc Error: %s",
Jubin John17fb4f22016-02-14 20:21:52 -08005608 misc_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005609 for (i = 0; i < NUM_MISC_ERR_STATUS_COUNTERS; i++) {
5610 if (reg & (1ull << i))
5611 incr_cntr64(&dd->misc_err_status_cnt[i]);
5612 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005613}
5614
5615static void handle_pio_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5616{
5617 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005618 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005619
5620 dd_dev_info(dd, "PIO Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005621 pio_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005622
5623 if (reg & ALL_PIO_FREEZE_ERR)
5624 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005625
5626 for (i = 0; i < NUM_SEND_PIO_ERR_STATUS_COUNTERS; i++) {
5627 if (reg & (1ull << i))
5628 incr_cntr64(&dd->send_pio_err_status_cnt[i]);
5629 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005630}
5631
5632static void handle_sdma_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5633{
5634 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005635 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005636
5637 dd_dev_info(dd, "SDMA Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005638 sdma_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005639
5640 if (reg & ALL_SDMA_FREEZE_ERR)
5641 start_freeze_handling(dd->pport, 0);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005642
5643 for (i = 0; i < NUM_SEND_DMA_ERR_STATUS_COUNTERS; i++) {
5644 if (reg & (1ull << i))
5645 incr_cntr64(&dd->send_dma_err_status_cnt[i]);
5646 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005647}
5648
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005649static inline void __count_port_discards(struct hfi1_pportdata *ppd)
5650{
5651 incr_cntr64(&ppd->port_xmit_discards);
5652}
5653
Mike Marciniszyn77241052015-07-30 15:17:43 -04005654static void count_port_inactive(struct hfi1_devdata *dd)
5655{
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005656 __count_port_discards(dd->pport);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005657}
5658
5659/*
5660 * We have had a "disallowed packet" error during egress. Determine the
5661 * integrity check which failed, and update relevant error counter, etc.
5662 *
5663 * Note that the SEND_EGRESS_ERR_INFO register has only a single
5664 * bit of state per integrity check, and so we can miss the reason for an
5665 * egress error if more than one packet fails the same integrity check
5666 * since we cleared the corresponding bit in SEND_EGRESS_ERR_INFO.
5667 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005668static void handle_send_egress_err_info(struct hfi1_devdata *dd,
5669 int vl)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005670{
5671 struct hfi1_pportdata *ppd = dd->pport;
5672 u64 src = read_csr(dd, SEND_EGRESS_ERR_SOURCE); /* read first */
5673 u64 info = read_csr(dd, SEND_EGRESS_ERR_INFO);
5674 char buf[96];
5675
5676 /* clear down all observed info as quickly as possible after read */
5677 write_csr(dd, SEND_EGRESS_ERR_INFO, info);
5678
5679 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005680 "Egress Error Info: 0x%llx, %s Egress Error Src 0x%llx\n",
5681 info, egress_err_info_string(buf, sizeof(buf), info), src);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005682
5683 /* Eventually add other counters for each bit */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005684 if (info & PORT_DISCARD_EGRESS_ERRS) {
5685 int weight, i;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005686
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005687 /*
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005688 * Count all applicable bits as individual errors and
5689 * attribute them to the packet that triggered this handler.
5690 * This may not be completely accurate due to limitations
5691 * on the available hardware error information. There is
5692 * a single information register and any number of error
5693 * packets may have occurred and contributed to it before
5694 * this routine is called. This means that:
5695 * a) If multiple packets with the same error occur before
5696 * this routine is called, earlier packets are missed.
5697 * There is only a single bit for each error type.
5698 * b) Errors may not be attributed to the correct VL.
5699 * The driver is attributing all bits in the info register
5700 * to the packet that triggered this call, but bits
5701 * could be an accumulation of different packets with
5702 * different VLs.
5703 * c) A single error packet may have multiple counts attached
5704 * to it. There is no way for the driver to know if
5705 * multiple bits set in the info register are due to a
5706 * single packet or multiple packets. The driver assumes
5707 * multiple packets.
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005708 */
Dean Luick4c9e7aa2016-02-18 11:12:08 -08005709 weight = hweight64(info & PORT_DISCARD_EGRESS_ERRS);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005710 for (i = 0; i < weight; i++) {
5711 __count_port_discards(ppd);
5712 if (vl >= 0 && vl < TXE_NUM_DATA_VL)
5713 incr_cntr64(&ppd->port_xmit_discards_vl[vl]);
5714 else if (vl == 15)
5715 incr_cntr64(&ppd->port_xmit_discards_vl
5716 [C_VL_15]);
5717 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005718 }
5719}
5720
5721/*
5722 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5723 * register. Does it represent a 'port inactive' error?
5724 */
5725static inline int port_inactive_err(u64 posn)
5726{
5727 return (posn >= SEES(TX_LINKDOWN) &&
5728 posn <= SEES(TX_INCORRECT_LINK_STATE));
5729}
5730
5731/*
5732 * Input value is a bit position within the SEND_EGRESS_ERR_STATUS
5733 * register. Does it represent a 'disallowed packet' error?
5734 */
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005735static inline int disallowed_pkt_err(int posn)
Mike Marciniszyn77241052015-07-30 15:17:43 -04005736{
5737 return (posn >= SEES(TX_SDMA0_DISALLOWED_PACKET) &&
5738 posn <= SEES(TX_SDMA15_DISALLOWED_PACKET));
5739}
5740
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005741/*
5742 * Input value is a bit position of one of the SDMA engine disallowed
5743 * packet errors. Return which engine. Use of this must be guarded by
5744 * disallowed_pkt_err().
5745 */
5746static inline int disallowed_pkt_engine(int posn)
5747{
5748 return posn - SEES(TX_SDMA0_DISALLOWED_PACKET);
5749}
5750
5751/*
5752 * Translate an SDMA engine to a VL. Return -1 if the tranlation cannot
5753 * be done.
5754 */
5755static int engine_to_vl(struct hfi1_devdata *dd, int engine)
5756{
5757 struct sdma_vl_map *m;
5758 int vl;
5759
5760 /* range check */
5761 if (engine < 0 || engine >= TXE_NUM_SDMA_ENGINES)
5762 return -1;
5763
5764 rcu_read_lock();
5765 m = rcu_dereference(dd->sdma_map);
5766 vl = m->engine_to_vl[engine];
5767 rcu_read_unlock();
5768
5769 return vl;
5770}
5771
5772/*
5773 * Translate the send context (sofware index) into a VL. Return -1 if the
5774 * translation cannot be done.
5775 */
5776static int sc_to_vl(struct hfi1_devdata *dd, int sw_index)
5777{
5778 struct send_context_info *sci;
5779 struct send_context *sc;
5780 int i;
5781
5782 sci = &dd->send_contexts[sw_index];
5783
5784 /* there is no information for user (PSM) and ack contexts */
Jianxin Xiong44306f12016-04-12 11:30:28 -07005785 if ((sci->type != SC_KERNEL) && (sci->type != SC_VL15))
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005786 return -1;
5787
5788 sc = sci->sc;
5789 if (!sc)
5790 return -1;
5791 if (dd->vld[15].sc == sc)
5792 return 15;
5793 for (i = 0; i < num_vls; i++)
5794 if (dd->vld[i].sc == sc)
5795 return i;
5796
5797 return -1;
5798}
5799
Mike Marciniszyn77241052015-07-30 15:17:43 -04005800static void handle_egress_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5801{
5802 u64 reg_copy = reg, handled = 0;
5803 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005804 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005805
5806 if (reg & ALL_TXE_EGRESS_FREEZE_ERR)
5807 start_freeze_handling(dd->pport, 0);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005808 else if (is_ax(dd) &&
5809 (reg & SEND_EGRESS_ERR_STATUS_TX_CREDIT_RETURN_VL_ERR_SMASK) &&
5810 (dd->icode != ICODE_FUNCTIONAL_SIMULATOR))
Mike Marciniszyn77241052015-07-30 15:17:43 -04005811 start_freeze_handling(dd->pport, 0);
5812
5813 while (reg_copy) {
5814 int posn = fls64(reg_copy);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005815 /* fls64() returns a 1-based offset, we want it zero based */
Mike Marciniszyn77241052015-07-30 15:17:43 -04005816 int shift = posn - 1;
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005817 u64 mask = 1ULL << shift;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005818
5819 if (port_inactive_err(shift)) {
5820 count_port_inactive(dd);
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005821 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005822 } else if (disallowed_pkt_err(shift)) {
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005823 int vl = engine_to_vl(dd, disallowed_pkt_engine(shift));
5824
5825 handle_send_egress_err_info(dd, vl);
5826 handled |= mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005827 }
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005828 reg_copy &= ~mask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005829 }
5830
5831 reg &= ~handled;
5832
5833 if (reg)
5834 dd_dev_info(dd, "Egress Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005835 egress_err_status_string(buf, sizeof(buf), reg));
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005836
5837 for (i = 0; i < NUM_SEND_EGRESS_ERR_STATUS_COUNTERS; i++) {
5838 if (reg & (1ull << i))
5839 incr_cntr64(&dd->send_egress_err_status_cnt[i]);
5840 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005841}
5842
5843static void handle_txe_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
5844{
5845 char buf[96];
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005846 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005847
5848 dd_dev_info(dd, "Send Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005849 send_err_status_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005850
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005851 for (i = 0; i < NUM_SEND_ERR_STATUS_COUNTERS; i++) {
5852 if (reg & (1ull << i))
5853 incr_cntr64(&dd->send_err_status_cnt[i]);
5854 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005855}
5856
5857/*
5858 * The maximum number of times the error clear down will loop before
5859 * blocking a repeating error. This value is arbitrary.
5860 */
5861#define MAX_CLEAR_COUNT 20
5862
5863/*
5864 * Clear and handle an error register. All error interrupts are funneled
5865 * through here to have a central location to correctly handle single-
5866 * or multi-shot errors.
5867 *
5868 * For non per-context registers, call this routine with a context value
5869 * of 0 so the per-context offset is zero.
5870 *
5871 * If the handler loops too many times, assume that something is wrong
5872 * and can't be fixed, so mask the error bits.
5873 */
5874static void interrupt_clear_down(struct hfi1_devdata *dd,
5875 u32 context,
5876 const struct err_reg_info *eri)
5877{
5878 u64 reg;
5879 u32 count;
5880
5881 /* read in a loop until no more errors are seen */
5882 count = 0;
5883 while (1) {
5884 reg = read_kctxt_csr(dd, context, eri->status);
5885 if (reg == 0)
5886 break;
5887 write_kctxt_csr(dd, context, eri->clear, reg);
5888 if (likely(eri->handler))
5889 eri->handler(dd, context, reg);
5890 count++;
5891 if (count > MAX_CLEAR_COUNT) {
5892 u64 mask;
5893
5894 dd_dev_err(dd, "Repeating %s bits 0x%llx - masking\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005895 eri->desc, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005896 /*
5897 * Read-modify-write so any other masked bits
5898 * remain masked.
5899 */
5900 mask = read_kctxt_csr(dd, context, eri->mask);
5901 mask &= ~reg;
5902 write_kctxt_csr(dd, context, eri->mask, mask);
5903 break;
5904 }
5905 }
5906}
5907
5908/*
5909 * CCE block "misc" interrupt. Source is < 16.
5910 */
5911static void is_misc_err_int(struct hfi1_devdata *dd, unsigned int source)
5912{
5913 const struct err_reg_info *eri = &misc_errs[source];
5914
5915 if (eri->handler) {
5916 interrupt_clear_down(dd, 0, eri);
5917 } else {
5918 dd_dev_err(dd, "Unexpected misc interrupt (%u) - reserved\n",
Jubin John17fb4f22016-02-14 20:21:52 -08005919 source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005920 }
5921}
5922
5923static char *send_context_err_status_string(char *buf, int buf_len, u64 flags)
5924{
5925 return flag_string(buf, buf_len, flags,
Jubin John17fb4f22016-02-14 20:21:52 -08005926 sc_err_status_flags,
5927 ARRAY_SIZE(sc_err_status_flags));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005928}
5929
5930/*
5931 * Send context error interrupt. Source (hw_context) is < 160.
5932 *
5933 * All send context errors cause the send context to halt. The normal
5934 * clear-down mechanism cannot be used because we cannot clear the
5935 * error bits until several other long-running items are done first.
5936 * This is OK because with the context halted, nothing else is going
5937 * to happen on it anyway.
5938 */
5939static void is_sendctxt_err_int(struct hfi1_devdata *dd,
5940 unsigned int hw_context)
5941{
5942 struct send_context_info *sci;
5943 struct send_context *sc;
5944 char flags[96];
5945 u64 status;
5946 u32 sw_index;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005947 int i = 0;
Michael J. Ruhlf9e76ca2018-05-02 06:42:51 -07005948 unsigned long irq_flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -04005949
5950 sw_index = dd->hw_to_sw[hw_context];
5951 if (sw_index >= dd->num_send_contexts) {
5952 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08005953 "out of range sw index %u for send context %u\n",
5954 sw_index, hw_context);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005955 return;
5956 }
5957 sci = &dd->send_contexts[sw_index];
Michael J. Ruhlf9e76ca2018-05-02 06:42:51 -07005958 spin_lock_irqsave(&dd->sc_lock, irq_flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005959 sc = sci->sc;
5960 if (!sc) {
5961 dd_dev_err(dd, "%s: context %u(%u): no sc?\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -08005962 sw_index, hw_context);
Michael J. Ruhlf9e76ca2018-05-02 06:42:51 -07005963 spin_unlock_irqrestore(&dd->sc_lock, irq_flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04005964 return;
5965 }
5966
5967 /* tell the software that a halt has begun */
5968 sc_stop(sc, SCF_HALTED);
5969
5970 status = read_kctxt_csr(dd, hw_context, SEND_CTXT_ERR_STATUS);
5971
5972 dd_dev_info(dd, "Send Context %u(%u) Error: %s\n", sw_index, hw_context,
Jubin John17fb4f22016-02-14 20:21:52 -08005973 send_context_err_status_string(flags, sizeof(flags),
5974 status));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005975
5976 if (status & SEND_CTXT_ERR_STATUS_PIO_DISALLOWED_PACKET_ERR_SMASK)
Mike Marciniszyn69a00b82016-02-03 14:31:49 -08005977 handle_send_egress_err_info(dd, sc_to_vl(dd, sw_index));
Mike Marciniszyn77241052015-07-30 15:17:43 -04005978
5979 /*
5980 * Automatically restart halted kernel contexts out of interrupt
5981 * context. User contexts must ask the driver to restart the context.
5982 */
5983 if (sc->type != SC_USER)
5984 queue_work(dd->pport->hfi1_wq, &sc->halt_work);
Michael J. Ruhlf9e76ca2018-05-02 06:42:51 -07005985 spin_unlock_irqrestore(&dd->sc_lock, irq_flags);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05005986
5987 /*
5988 * Update the counters for the corresponding status bits.
5989 * Note that these particular counters are aggregated over all
5990 * 160 contexts.
5991 */
5992 for (i = 0; i < NUM_SEND_CTXT_ERR_STATUS_COUNTERS; i++) {
5993 if (status & (1ull << i))
5994 incr_cntr64(&dd->sw_ctxt_err_status_cnt[i]);
5995 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04005996}
5997
5998static void handle_sdma_eng_err(struct hfi1_devdata *dd,
5999 unsigned int source, u64 status)
6000{
6001 struct sdma_engine *sde;
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05006002 int i = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006003
6004 sde = &dd->per_sdma[source];
6005#ifdef CONFIG_SDMA_VERBOSITY
6006 dd_dev_err(sde->dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
6007 slashstrip(__FILE__), __LINE__, __func__);
6008 dd_dev_err(sde->dd, "CONFIG SDMA(%u) source: %u status 0x%llx\n",
6009 sde->this_idx, source, (unsigned long long)status);
6010#endif
Vennila Megavannana699c6c2016-01-11 18:30:56 -05006011 sde->err_cnt++;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006012 sdma_engine_error(sde, status);
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05006013
6014 /*
6015 * Update the counters for the corresponding status bits.
6016 * Note that these particular counters are aggregated over
6017 * all 16 DMA engines.
6018 */
6019 for (i = 0; i < NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS; i++) {
6020 if (status & (1ull << i))
6021 incr_cntr64(&dd->sw_send_dma_eng_err_status_cnt[i]);
6022 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006023}
6024
6025/*
6026 * CCE block SDMA error interrupt. Source is < 16.
6027 */
6028static void is_sdma_eng_err_int(struct hfi1_devdata *dd, unsigned int source)
6029{
6030#ifdef CONFIG_SDMA_VERBOSITY
6031 struct sdma_engine *sde = &dd->per_sdma[source];
6032
6033 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
6034 slashstrip(__FILE__), __LINE__, __func__);
6035 dd_dev_err(dd, "CONFIG SDMA(%u) source: %u\n", sde->this_idx,
6036 source);
6037 sdma_dumpstate(sde);
6038#endif
6039 interrupt_clear_down(dd, source, &sdma_eng_err);
6040}
6041
6042/*
6043 * CCE block "various" interrupt. Source is < 8.
6044 */
6045static void is_various_int(struct hfi1_devdata *dd, unsigned int source)
6046{
6047 const struct err_reg_info *eri = &various_err[source];
6048
6049 /*
6050 * TCritInt cannot go through interrupt_clear_down()
6051 * because it is not a second tier interrupt. The handler
6052 * should be called directly.
6053 */
6054 if (source == TCRIT_INT_SOURCE)
6055 handle_temp_err(dd);
6056 else if (eri->handler)
6057 interrupt_clear_down(dd, 0, eri);
6058 else
6059 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006060 "%s: Unimplemented/reserved interrupt %d\n",
6061 __func__, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006062}
6063
6064static void handle_qsfp_int(struct hfi1_devdata *dd, u32 src_ctx, u64 reg)
6065{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006066 /* src_ctx is always zero */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006067 struct hfi1_pportdata *ppd = dd->pport;
6068 unsigned long flags;
6069 u64 qsfp_int_mgmt = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
6070
6071 if (reg & QSFP_HFI0_MODPRST_N) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006072 if (!qsfp_mod_present(ppd)) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006073 dd_dev_info(dd, "%s: QSFP module removed\n",
6074 __func__);
6075
Mike Marciniszyn77241052015-07-30 15:17:43 -04006076 ppd->driver_link_ready = 0;
6077 /*
6078 * Cable removed, reset all our information about the
6079 * cache and cable capabilities
6080 */
6081
6082 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6083 /*
6084 * We don't set cache_refresh_required here as we expect
6085 * an interrupt when a cable is inserted
6086 */
6087 ppd->qsfp_info.cache_valid = 0;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006088 ppd->qsfp_info.reset_needed = 0;
6089 ppd->qsfp_info.limiting_active = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006090 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006091 flags);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006092 /* Invert the ModPresent pin now to detect plug-in */
6093 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6094 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006095
6096 if ((ppd->offline_disabled_reason >
6097 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006098 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED)) ||
Bryan Morgana9c05e32016-02-03 14:30:49 -08006099 (ppd->offline_disabled_reason ==
6100 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE)))
6101 ppd->offline_disabled_reason =
6102 HFI1_ODR_MASK(
Easwar Hariharane1bf0d52016-02-03 14:36:58 -08006103 OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED);
Bryan Morgana9c05e32016-02-03 14:30:49 -08006104
Mike Marciniszyn77241052015-07-30 15:17:43 -04006105 if (ppd->host_link_state == HLS_DN_POLL) {
6106 /*
6107 * The link is still in POLL. This means
6108 * that the normal link down processing
6109 * will not happen. We have to do it here
6110 * before turning the DC off.
6111 */
Sebastian Sanchez71d47002017-07-29 08:43:49 -07006112 queue_work(ppd->link_wq, &ppd->link_down_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006113 }
6114 } else {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006115 dd_dev_info(dd, "%s: QSFP module inserted\n",
6116 __func__);
6117
Mike Marciniszyn77241052015-07-30 15:17:43 -04006118 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6119 ppd->qsfp_info.cache_valid = 0;
6120 ppd->qsfp_info.cache_refresh_required = 1;
6121 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08006122 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006123
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006124 /*
6125 * Stop inversion of ModPresent pin to detect
6126 * removal of the cable
6127 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006128 qsfp_int_mgmt &= ~(u64)QSFP_HFI0_MODPRST_N;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08006129 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_INVERT :
6130 ASIC_QSFP1_INVERT, qsfp_int_mgmt);
6131
6132 ppd->offline_disabled_reason =
6133 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006134 }
6135 }
6136
6137 if (reg & QSFP_HFI0_INT_N) {
Easwar Hariharane8aa2842016-02-18 11:12:16 -08006138 dd_dev_info(dd, "%s: Interrupt received from QSFP module\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006139 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006140 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
6141 ppd->qsfp_info.check_interrupt_flags = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006142 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock, flags);
6143 }
6144
6145 /* Schedule the QSFP work only if there is a cable attached. */
6146 if (qsfp_mod_present(ppd))
Sebastian Sanchez71d47002017-07-29 08:43:49 -07006147 queue_work(ppd->link_wq, &ppd->qsfp_info.qsfp_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006148}
6149
6150static int request_host_lcb_access(struct hfi1_devdata *dd)
6151{
6152 int ret;
6153
6154 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006155 (u64)HCMD_MISC_REQUEST_LCB_ACCESS <<
6156 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006157 if (ret != HCMD_SUCCESS) {
6158 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006159 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006160 }
6161 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6162}
6163
6164static int request_8051_lcb_access(struct hfi1_devdata *dd)
6165{
6166 int ret;
6167
6168 ret = do_8051_command(dd, HCMD_MISC,
Jubin John17fb4f22016-02-14 20:21:52 -08006169 (u64)HCMD_MISC_GRANT_LCB_ACCESS <<
6170 LOAD_DATA_FIELD_ID_SHIFT, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006171 if (ret != HCMD_SUCCESS) {
6172 dd_dev_err(dd, "%s: command failed with error %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006173 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006174 }
6175 return ret == HCMD_SUCCESS ? 0 : -EBUSY;
6176}
6177
6178/*
6179 * Set the LCB selector - allow host access. The DCC selector always
6180 * points to the host.
6181 */
6182static inline void set_host_lcb_access(struct hfi1_devdata *dd)
6183{
6184 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006185 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK |
6186 DC_DC8051_CFG_CSR_ACCESS_SEL_LCB_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006187}
6188
6189/*
6190 * Clear the LCB selector - allow 8051 access. The DCC selector always
6191 * points to the host.
6192 */
6193static inline void set_8051_lcb_access(struct hfi1_devdata *dd)
6194{
6195 write_csr(dd, DC_DC8051_CFG_CSR_ACCESS_SEL,
Jubin John17fb4f22016-02-14 20:21:52 -08006196 DC_DC8051_CFG_CSR_ACCESS_SEL_DCC_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006197}
6198
6199/*
6200 * Acquire LCB access from the 8051. If the host already has access,
6201 * just increment a counter. Otherwise, inform the 8051 that the
6202 * host is taking access.
6203 *
6204 * Returns:
6205 * 0 on success
6206 * -EBUSY if the 8051 has control and cannot be disturbed
6207 * -errno if unable to acquire access from the 8051
6208 */
6209int acquire_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6210{
6211 struct hfi1_pportdata *ppd = dd->pport;
6212 int ret = 0;
6213
6214 /*
6215 * Use the host link state lock so the operation of this routine
6216 * { link state check, selector change, count increment } can occur
6217 * as a unit against a link state change. Otherwise there is a
6218 * race between the state change and the count increment.
6219 */
6220 if (sleep_ok) {
6221 mutex_lock(&ppd->hls_lock);
6222 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006223 while (!mutex_trylock(&ppd->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006224 udelay(1);
6225 }
6226
6227 /* this access is valid only when the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07006228 if (ppd->host_link_state & HLS_DOWN) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006229 dd_dev_info(dd, "%s: link state %s not up\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006230 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04006231 ret = -EBUSY;
6232 goto done;
6233 }
6234
6235 if (dd->lcb_access_count == 0) {
6236 ret = request_host_lcb_access(dd);
6237 if (ret) {
6238 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006239 "%s: unable to acquire LCB access, err %d\n",
6240 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006241 goto done;
6242 }
6243 set_host_lcb_access(dd);
6244 }
6245 dd->lcb_access_count++;
6246done:
6247 mutex_unlock(&ppd->hls_lock);
6248 return ret;
6249}
6250
6251/*
6252 * Release LCB access by decrementing the use count. If the count is moving
6253 * from 1 to 0, inform 8051 that it has control back.
6254 *
6255 * Returns:
6256 * 0 on success
6257 * -errno if unable to release access to the 8051
6258 */
6259int release_lcb_access(struct hfi1_devdata *dd, int sleep_ok)
6260{
6261 int ret = 0;
6262
6263 /*
6264 * Use the host link state lock because the acquire needed it.
6265 * Here, we only need to keep { selector change, count decrement }
6266 * as a unit.
6267 */
6268 if (sleep_ok) {
6269 mutex_lock(&dd->pport->hls_lock);
6270 } else {
Dan Carpenter951842b2015-09-16 09:22:51 +03006271 while (!mutex_trylock(&dd->pport->hls_lock))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006272 udelay(1);
6273 }
6274
6275 if (dd->lcb_access_count == 0) {
6276 dd_dev_err(dd, "%s: LCB access count is zero. Skipping.\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006277 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006278 goto done;
6279 }
6280
6281 if (dd->lcb_access_count == 1) {
6282 set_8051_lcb_access(dd);
6283 ret = request_8051_lcb_access(dd);
6284 if (ret) {
6285 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006286 "%s: unable to release LCB access, err %d\n",
6287 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006288 /* restore host access if the grant didn't work */
6289 set_host_lcb_access(dd);
6290 goto done;
6291 }
6292 }
6293 dd->lcb_access_count--;
6294done:
6295 mutex_unlock(&dd->pport->hls_lock);
6296 return ret;
6297}
6298
6299/*
6300 * Initialize LCB access variables and state. Called during driver load,
6301 * after most of the initialization is finished.
6302 *
6303 * The DC default is LCB access on for the host. The driver defaults to
6304 * leaving access to the 8051. Assign access now - this constrains the call
6305 * to this routine to be after all LCB set-up is done. In particular, after
6306 * hf1_init_dd() -> set_up_interrupts() -> clear_all_interrupts()
6307 */
6308static void init_lcb_access(struct hfi1_devdata *dd)
6309{
6310 dd->lcb_access_count = 0;
6311}
6312
6313/*
6314 * Write a response back to a 8051 request.
6315 */
6316static void hreq_response(struct hfi1_devdata *dd, u8 return_code, u16 rsp_data)
6317{
6318 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0,
Jubin John17fb4f22016-02-14 20:21:52 -08006319 DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK |
6320 (u64)return_code <<
6321 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT |
6322 (u64)rsp_data << DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006323}
6324
6325/*
Easwar Hariharancbac3862016-02-03 14:31:31 -08006326 * Handle host requests from the 8051.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006327 */
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006328static void handle_8051_request(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006329{
Easwar Hariharancbac3862016-02-03 14:31:31 -08006330 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006331 u64 reg;
Easwar Hariharancbac3862016-02-03 14:31:31 -08006332 u16 data = 0;
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006333 u8 type;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006334
6335 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_1);
6336 if ((reg & DC_DC8051_CFG_EXT_DEV_1_REQ_NEW_SMASK) == 0)
6337 return; /* no request */
6338
6339 /* zero out COMPLETED so the response is seen */
6340 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, 0);
6341
6342 /* extract request details */
6343 type = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_SHIFT)
6344 & DC_DC8051_CFG_EXT_DEV_1_REQ_TYPE_MASK;
6345 data = (reg >> DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT)
6346 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_MASK;
6347
6348 switch (type) {
6349 case HREQ_LOAD_CONFIG:
6350 case HREQ_SAVE_CONFIG:
6351 case HREQ_READ_CONFIG:
6352 case HREQ_SET_TX_EQ_ABS:
6353 case HREQ_SET_TX_EQ_REL:
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07006354 case HREQ_ENABLE:
Mike Marciniszyn77241052015-07-30 15:17:43 -04006355 dd_dev_info(dd, "8051 request: request 0x%x not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -08006356 type);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006357 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6358 break;
Sebastian Sanchez254361c2018-05-02 06:42:21 -07006359 case HREQ_LCB_RESET:
6360 /* Put the LCB, RX FPE and TX FPE into reset */
6361 write_csr(dd, DCC_CFG_RESET, LCB_RX_FPE_TX_FPE_INTO_RESET);
6362 /* Make sure the write completed */
6363 (void)read_csr(dd, DCC_CFG_RESET);
6364 /* Hold the reset long enough to take effect */
6365 udelay(1);
6366 /* Take the LCB, RX FPE and TX FPE out of reset */
6367 write_csr(dd, DCC_CFG_RESET, LCB_RX_FPE_TX_FPE_OUT_OF_RESET);
6368 hreq_response(dd, HREQ_SUCCESS, 0);
6369
6370 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006371 case HREQ_CONFIG_DONE:
6372 hreq_response(dd, HREQ_SUCCESS, 0);
6373 break;
6374
6375 case HREQ_INTERFACE_TEST:
6376 hreq_response(dd, HREQ_SUCCESS, data);
6377 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006378 default:
6379 dd_dev_err(dd, "8051 request: unknown request 0x%x\n", type);
6380 hreq_response(dd, HREQ_NOT_SUPPORTED, 0);
6381 break;
6382 }
6383}
6384
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006385/*
6386 * Set up allocation unit vaulue.
6387 */
6388void set_up_vau(struct hfi1_devdata *dd, u8 vau)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006389{
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006390 u64 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
6391
6392 /* do not modify other values in the register */
6393 reg &= ~SEND_CM_GLOBAL_CREDIT_AU_SMASK;
6394 reg |= (u64)vau << SEND_CM_GLOBAL_CREDIT_AU_SHIFT;
6395 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006396}
6397
6398/*
6399 * Set up initial VL15 credits of the remote. Assumes the rest of
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006400 * the CM credit registers are zero from a previous global or credit reset.
6401 * Shared limit for VL15 will always be 0.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006402 */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006403void set_up_vl15(struct hfi1_devdata *dd, u16 vl15buf)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006404{
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006405 u64 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
6406
6407 /* set initial values for total and shared credit limit */
6408 reg &= ~(SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SMASK |
6409 SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SMASK);
6410
6411 /*
6412 * Set total limit to be equal to VL15 credits.
6413 * Leave shared limit at 0.
6414 */
6415 reg |= (u64)vl15buf << SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT;
6416 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006417
Dennis Dalessandroeacc8302016-10-17 04:19:52 -07006418 write_csr(dd, SEND_CM_CREDIT_VL15, (u64)vl15buf
6419 << SEND_CM_CREDIT_VL15_DEDICATED_LIMIT_VL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006420}
6421
6422/*
6423 * Zero all credit details from the previous connection and
6424 * reset the CM manager's internal counters.
6425 */
6426void reset_link_credits(struct hfi1_devdata *dd)
6427{
6428 int i;
6429
6430 /* remove all previous VL credit limits */
6431 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -08006432 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006433 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006434 write_csr(dd, SEND_CM_GLOBAL_CREDIT, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006435 /* reset the CM block */
6436 pio_send_control(dd, PSC_CM_RESET);
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006437 /* reset cached value */
6438 dd->vl15buf_cached = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006439}
6440
6441/* convert a vCU to a CU */
6442static u32 vcu_to_cu(u8 vcu)
6443{
6444 return 1 << vcu;
6445}
6446
6447/* convert a CU to a vCU */
6448static u8 cu_to_vcu(u32 cu)
6449{
6450 return ilog2(cu);
6451}
6452
6453/* convert a vAU to an AU */
6454static u32 vau_to_au(u8 vau)
6455{
6456 return 8 * (1 << vau);
6457}
6458
6459static void set_linkup_defaults(struct hfi1_pportdata *ppd)
6460{
6461 ppd->sm_trap_qp = 0x0;
6462 ppd->sa_qp = 0x1;
6463}
6464
6465/*
6466 * Graceful LCB shutdown. This leaves the LCB FIFOs in reset.
6467 */
6468static void lcb_shutdown(struct hfi1_devdata *dd, int abort)
6469{
6470 u64 reg;
6471
6472 /* clear lcb run: LCB_CFG_RUN.EN = 0 */
6473 write_csr(dd, DC_LCB_CFG_RUN, 0);
6474 /* set tx fifo reset: LCB_CFG_TX_FIFOS_RESET.VAL = 1 */
6475 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET,
Jubin John17fb4f22016-02-14 20:21:52 -08006476 1ull << DC_LCB_CFG_TX_FIFOS_RESET_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006477 /* set dcc reset csr: DCC_CFG_RESET.{reset_lcb,reset_rx_fpe} = 1 */
6478 dd->lcb_err_en = read_csr(dd, DC_LCB_ERR_EN);
6479 reg = read_csr(dd, DCC_CFG_RESET);
Jubin John17fb4f22016-02-14 20:21:52 -08006480 write_csr(dd, DCC_CFG_RESET, reg |
Sebastian Sanchez254361c2018-05-02 06:42:21 -07006481 DCC_CFG_RESET_RESET_LCB | DCC_CFG_RESET_RESET_RX_FPE);
Jubin John50e5dcb2016-02-14 20:19:41 -08006482 (void)read_csr(dd, DCC_CFG_RESET); /* make sure the write completed */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006483 if (!abort) {
6484 udelay(1); /* must hold for the longer of 16cclks or 20ns */
6485 write_csr(dd, DCC_CFG_RESET, reg);
6486 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
6487 }
6488}
6489
6490/*
6491 * This routine should be called after the link has been transitioned to
6492 * OFFLINE (OFFLINE state has the side effect of putting the SerDes into
6493 * reset).
6494 *
6495 * The expectation is that the caller of this routine would have taken
6496 * care of properly transitioning the link into the correct state.
Tadeusz Struk22546b72017-04-28 10:40:02 -07006497 * NOTE: the caller needs to acquire the dd->dc8051_lock lock
6498 * before calling this function.
Mike Marciniszyn77241052015-07-30 15:17:43 -04006499 */
Tadeusz Struk22546b72017-04-28 10:40:02 -07006500static void _dc_shutdown(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006501{
Tadeusz Struk22546b72017-04-28 10:40:02 -07006502 lockdep_assert_held(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006503
Tadeusz Struk22546b72017-04-28 10:40:02 -07006504 if (dd->dc_shutdown)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006505 return;
Tadeusz Struk22546b72017-04-28 10:40:02 -07006506
Mike Marciniszyn77241052015-07-30 15:17:43 -04006507 dd->dc_shutdown = 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006508 /* Shutdown the LCB */
6509 lcb_shutdown(dd, 1);
Jubin John4d114fd2016-02-14 20:21:43 -08006510 /*
6511 * Going to OFFLINE would have causes the 8051 to put the
Mike Marciniszyn77241052015-07-30 15:17:43 -04006512 * SerDes into reset already. Just need to shut down the 8051,
Jubin John4d114fd2016-02-14 20:21:43 -08006513 * itself.
6514 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006515 write_csr(dd, DC_DC8051_CFG_RST, 0x1);
6516}
6517
Tadeusz Struk22546b72017-04-28 10:40:02 -07006518static void dc_shutdown(struct hfi1_devdata *dd)
6519{
6520 mutex_lock(&dd->dc8051_lock);
6521 _dc_shutdown(dd);
6522 mutex_unlock(&dd->dc8051_lock);
6523}
6524
Jubin John4d114fd2016-02-14 20:21:43 -08006525/*
6526 * Calling this after the DC has been brought out of reset should not
6527 * do any damage.
Tadeusz Struk22546b72017-04-28 10:40:02 -07006528 * NOTE: the caller needs to acquire the dd->dc8051_lock lock
6529 * before calling this function.
Jubin John4d114fd2016-02-14 20:21:43 -08006530 */
Tadeusz Struk22546b72017-04-28 10:40:02 -07006531static void _dc_start(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04006532{
Tadeusz Struk22546b72017-04-28 10:40:02 -07006533 lockdep_assert_held(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006534
Mike Marciniszyn77241052015-07-30 15:17:43 -04006535 if (!dd->dc_shutdown)
Tadeusz Struk22546b72017-04-28 10:40:02 -07006536 return;
6537
Sebastian Sanchez9996b042017-12-18 19:56:59 -08006538 /* Take the 8051 out of reset */
6539 write_csr(dd, DC_DC8051_CFG_RST, 0ull);
6540 /* Wait until 8051 is ready */
6541 if (wait_fm_ready(dd, TIMEOUT_8051_START))
6542 dd_dev_err(dd, "%s: timeout starting 8051 firmware\n",
6543 __func__);
Tadeusz Struk22546b72017-04-28 10:40:02 -07006544
Mike Marciniszyn77241052015-07-30 15:17:43 -04006545 /* Take away reset for LCB and RX FPE (set in lcb_shutdown). */
Sebastian Sanchez254361c2018-05-02 06:42:21 -07006546 write_csr(dd, DCC_CFG_RESET, LCB_RX_FPE_TX_FPE_OUT_OF_RESET);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006547 /* lcb_shutdown() with abort=1 does not restore these */
6548 write_csr(dd, DC_LCB_ERR_EN, dd->lcb_err_en);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006549 dd->dc_shutdown = 0;
Tadeusz Struk22546b72017-04-28 10:40:02 -07006550}
6551
6552static void dc_start(struct hfi1_devdata *dd)
6553{
6554 mutex_lock(&dd->dc8051_lock);
6555 _dc_start(dd);
6556 mutex_unlock(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006557}
6558
6559/*
6560 * These LCB adjustments are for the Aurora SerDes core in the FPGA.
6561 */
6562static void adjust_lcb_for_fpga_serdes(struct hfi1_devdata *dd)
6563{
6564 u64 rx_radr, tx_radr;
6565 u32 version;
6566
6567 if (dd->icode != ICODE_FPGA_EMULATION)
6568 return;
6569
6570 /*
6571 * These LCB defaults on emulator _s are good, nothing to do here:
6572 * LCB_CFG_TX_FIFOS_RADR
6573 * LCB_CFG_RX_FIFOS_RADR
6574 * LCB_CFG_LN_DCLK
6575 * LCB_CFG_IGNORE_LOST_RCLK
6576 */
6577 if (is_emulator_s(dd))
6578 return;
6579 /* else this is _p */
6580
6581 version = emulator_rev(dd);
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006582 if (!is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04006583 version = 0x2d; /* all B0 use 0x2d or higher settings */
6584
6585 if (version <= 0x12) {
6586 /* release 0x12 and below */
6587
6588 /*
6589 * LCB_CFG_RX_FIFOS_RADR.RST_VAL = 0x9
6590 * LCB_CFG_RX_FIFOS_RADR.OK_TO_JUMP_VAL = 0x9
6591 * LCB_CFG_RX_FIFOS_RADR.DO_NOT_JUMP_VAL = 0xa
6592 */
6593 rx_radr =
6594 0xaull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6595 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6596 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6597 /*
6598 * LCB_CFG_TX_FIFOS_RADR.ON_REINIT = 0 (default)
6599 * LCB_CFG_TX_FIFOS_RADR.RST_VAL = 6
6600 */
6601 tx_radr = 6ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6602 } else if (version <= 0x18) {
6603 /* release 0x13 up to 0x18 */
6604 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6605 rx_radr =
6606 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6607 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6608 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6609 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6610 } else if (version == 0x19) {
6611 /* release 0x19 */
6612 /* LCB_CFG_RX_FIFOS_RADR = 0xa99 */
6613 rx_radr =
6614 0xAull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6615 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6616 | 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6617 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6618 } else if (version == 0x1a) {
6619 /* release 0x1a */
6620 /* LCB_CFG_RX_FIFOS_RADR = 0x988 */
6621 rx_radr =
6622 0x9ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6623 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6624 | 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6625 tx_radr = 7ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6626 write_csr(dd, DC_LCB_CFG_LN_DCLK, 1ull);
6627 } else {
6628 /* release 0x1b and higher */
6629 /* LCB_CFG_RX_FIFOS_RADR = 0x877 */
6630 rx_radr =
6631 0x8ull << DC_LCB_CFG_RX_FIFOS_RADR_DO_NOT_JUMP_VAL_SHIFT
6632 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_OK_TO_JUMP_VAL_SHIFT
6633 | 0x7ull << DC_LCB_CFG_RX_FIFOS_RADR_RST_VAL_SHIFT;
6634 tx_radr = 3ull << DC_LCB_CFG_TX_FIFOS_RADR_RST_VAL_SHIFT;
6635 }
6636
6637 write_csr(dd, DC_LCB_CFG_RX_FIFOS_RADR, rx_radr);
6638 /* LCB_CFG_IGNORE_LOST_RCLK.EN = 1 */
6639 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK,
Jubin John17fb4f22016-02-14 20:21:52 -08006640 DC_LCB_CFG_IGNORE_LOST_RCLK_EN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006641 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RADR, tx_radr);
6642}
6643
6644/*
6645 * Handle a SMA idle message
6646 *
6647 * This is a work-queue function outside of the interrupt.
6648 */
6649void handle_sma_message(struct work_struct *work)
6650{
6651 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6652 sma_message_work);
6653 struct hfi1_devdata *dd = ppd->dd;
6654 u64 msg;
6655 int ret;
6656
Jubin John4d114fd2016-02-14 20:21:43 -08006657 /*
6658 * msg is bytes 1-4 of the 40-bit idle message - the command code
6659 * is stripped off
6660 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006661 ret = read_idle_sma(dd, &msg);
6662 if (ret)
6663 return;
6664 dd_dev_info(dd, "%s: SMA message 0x%llx\n", __func__, msg);
6665 /*
6666 * React to the SMA message. Byte[1] (0 for us) is the command.
6667 */
6668 switch (msg & 0xff) {
6669 case SMA_IDLE_ARM:
6670 /*
6671 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6672 * State Transitions
6673 *
6674 * Only expected in INIT or ARMED, discard otherwise.
6675 */
6676 if (ppd->host_link_state & (HLS_UP_INIT | HLS_UP_ARMED))
6677 ppd->neighbor_normal = 1;
6678 break;
6679 case SMA_IDLE_ACTIVE:
6680 /*
6681 * See OPAv1 table 9-14 - HFI and External Switch Ports Key
6682 * State Transitions
6683 *
6684 * Can activate the node. Discard otherwise.
6685 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08006686 if (ppd->host_link_state == HLS_UP_ARMED &&
6687 ppd->is_active_optimize_enabled) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006688 ppd->neighbor_normal = 1;
6689 ret = set_link_state(ppd, HLS_UP_ACTIVE);
6690 if (ret)
6691 dd_dev_err(
6692 dd,
6693 "%s: received Active SMA idle message, couldn't set link to Active\n",
6694 __func__);
6695 }
6696 break;
6697 default:
6698 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006699 "%s: received unexpected SMA idle message 0x%llx\n",
6700 __func__, msg);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006701 break;
6702 }
6703}
6704
6705static void adjust_rcvctrl(struct hfi1_devdata *dd, u64 add, u64 clear)
6706{
6707 u64 rcvctrl;
6708 unsigned long flags;
6709
6710 spin_lock_irqsave(&dd->rcvctrl_lock, flags);
6711 rcvctrl = read_csr(dd, RCV_CTRL);
6712 rcvctrl |= add;
6713 rcvctrl &= ~clear;
6714 write_csr(dd, RCV_CTRL, rcvctrl);
6715 spin_unlock_irqrestore(&dd->rcvctrl_lock, flags);
6716}
6717
6718static inline void add_rcvctrl(struct hfi1_devdata *dd, u64 add)
6719{
6720 adjust_rcvctrl(dd, add, 0);
6721}
6722
6723static inline void clear_rcvctrl(struct hfi1_devdata *dd, u64 clear)
6724{
6725 adjust_rcvctrl(dd, 0, clear);
6726}
6727
6728/*
6729 * Called from all interrupt handlers to start handling an SPC freeze.
6730 */
6731void start_freeze_handling(struct hfi1_pportdata *ppd, int flags)
6732{
6733 struct hfi1_devdata *dd = ppd->dd;
6734 struct send_context *sc;
6735 int i;
6736
6737 if (flags & FREEZE_SELF)
6738 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6739
6740 /* enter frozen mode */
6741 dd->flags |= HFI1_FROZEN;
6742
6743 /* notify all SDMA engines that they are going into a freeze */
6744 sdma_freeze_notify(dd, !!(flags & FREEZE_LINK_DOWN));
6745
6746 /* do halt pre-handling on all enabled send contexts */
6747 for (i = 0; i < dd->num_send_contexts; i++) {
6748 sc = dd->send_contexts[i].sc;
6749 if (sc && (sc->flags & SCF_ENABLED))
6750 sc_stop(sc, SCF_FROZEN | SCF_HALTED);
6751 }
6752
6753 /* Send context are frozen. Notify user space */
6754 hfi1_set_uevent_bits(ppd, _HFI1_EVENT_FROZEN_BIT);
6755
6756 if (flags & FREEZE_ABORT) {
6757 dd_dev_err(dd,
6758 "Aborted freeze recovery. Please REBOOT system\n");
6759 return;
6760 }
6761 /* queue non-interrupt handler */
6762 queue_work(ppd->hfi1_wq, &ppd->freeze_work);
6763}
6764
6765/*
6766 * Wait until all 4 sub-blocks indicate that they have frozen or unfrozen,
6767 * depending on the "freeze" parameter.
6768 *
6769 * No need to return an error if it times out, our only option
6770 * is to proceed anyway.
6771 */
6772static void wait_for_freeze_status(struct hfi1_devdata *dd, int freeze)
6773{
6774 unsigned long timeout;
6775 u64 reg;
6776
6777 timeout = jiffies + msecs_to_jiffies(FREEZE_STATUS_TIMEOUT);
6778 while (1) {
6779 reg = read_csr(dd, CCE_STATUS);
6780 if (freeze) {
6781 /* waiting until all indicators are set */
6782 if ((reg & ALL_FROZE) == ALL_FROZE)
6783 return; /* all done */
6784 } else {
6785 /* waiting until all indicators are clear */
6786 if ((reg & ALL_FROZE) == 0)
6787 return; /* all done */
6788 }
6789
6790 if (time_after(jiffies, timeout)) {
6791 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006792 "Time out waiting for SPC %sfreeze, bits 0x%llx, expecting 0x%llx, continuing",
6793 freeze ? "" : "un", reg & ALL_FROZE,
6794 freeze ? ALL_FROZE : 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006795 return;
6796 }
6797 usleep_range(80, 120);
6798 }
6799}
6800
6801/*
6802 * Do all freeze handling for the RXE block.
6803 */
6804static void rxe_freeze(struct hfi1_devdata *dd)
6805{
6806 int i;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006807 struct hfi1_ctxtdata *rcd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006808
6809 /* disable port */
6810 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6811
6812 /* disable all receive contexts */
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006813 for (i = 0; i < dd->num_rcv_contexts; i++) {
6814 rcd = hfi1_rcd_get_by_index(dd, i);
6815 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS, rcd);
6816 hfi1_rcd_put(rcd);
6817 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006818}
6819
6820/*
6821 * Unfreeze handling for the RXE block - kernel contexts only.
6822 * This will also enable the port. User contexts will do unfreeze
6823 * handling on a per-context basis as they call into the driver.
6824 *
6825 */
6826static void rxe_kernel_unfreeze(struct hfi1_devdata *dd)
6827{
Mitko Haralanov566c1572016-02-03 14:32:49 -08006828 u32 rcvmask;
Michael J. Ruhle6f76222017-07-24 07:45:55 -07006829 u16 i;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006830 struct hfi1_ctxtdata *rcd;
Mike Marciniszyn77241052015-07-30 15:17:43 -04006831
6832 /* enable all kernel contexts */
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07006833 for (i = 0; i < dd->num_rcv_contexts; i++) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006834 rcd = hfi1_rcd_get_by_index(dd, i);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07006835
6836 /* Ensure all non-user contexts(including vnic) are enabled */
Niranjana Vishwanathapuracc9a97e2017-11-06 06:38:52 -08006837 if (!rcd ||
6838 (i >= dd->first_dyn_alloc_ctxt && !rcd->is_vnic)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006839 hfi1_rcd_put(rcd);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07006840 continue;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006841 }
Mitko Haralanov566c1572016-02-03 14:32:49 -08006842 rcvmask = HFI1_RCVCTRL_CTXT_ENB;
6843 /* HFI1_RCVCTRL_TAILUPD_[ENB|DIS] needs to be set explicitly */
Mike Marciniszyn1bc02992018-05-31 11:30:09 -07006844 rcvmask |= rcd->rcvhdrtail_kvaddr ?
Mitko Haralanov566c1572016-02-03 14:32:49 -08006845 HFI1_RCVCTRL_TAILUPD_ENB : HFI1_RCVCTRL_TAILUPD_DIS;
Michael J. Ruhl22505632017-07-24 07:46:06 -07006846 hfi1_rcvctrl(dd, rcvmask, rcd);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07006847 hfi1_rcd_put(rcd);
Mitko Haralanov566c1572016-02-03 14:32:49 -08006848 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04006849
6850 /* enable port */
6851 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
6852}
6853
6854/*
6855 * Non-interrupt SPC freeze handling.
6856 *
6857 * This is a work-queue function outside of the triggering interrupt.
6858 */
6859void handle_freeze(struct work_struct *work)
6860{
6861 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
6862 freeze_work);
6863 struct hfi1_devdata *dd = ppd->dd;
6864
6865 /* wait for freeze indicators on all affected blocks */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006866 wait_for_freeze_status(dd, 1);
6867
6868 /* SPC is now frozen */
6869
6870 /* do send PIO freeze steps */
6871 pio_freeze(dd);
6872
6873 /* do send DMA freeze steps */
6874 sdma_freeze(dd);
6875
6876 /* do send egress freeze steps - nothing to do */
6877
6878 /* do receive freeze steps */
6879 rxe_freeze(dd);
6880
6881 /*
6882 * Unfreeze the hardware - clear the freeze, wait for each
6883 * block's frozen bit to clear, then clear the frozen flag.
6884 */
6885 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6886 wait_for_freeze_status(dd, 0);
6887
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05006888 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04006889 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_FREEZE_SMASK);
6890 wait_for_freeze_status(dd, 1);
6891 write_csr(dd, CCE_CTRL, CCE_CTRL_SPC_UNFREEZE_SMASK);
6892 wait_for_freeze_status(dd, 0);
6893 }
6894
6895 /* do send PIO unfreeze steps for kernel contexts */
6896 pio_kernel_unfreeze(dd);
6897
6898 /* do send DMA unfreeze steps */
6899 sdma_unfreeze(dd);
6900
6901 /* do send egress unfreeze steps - nothing to do */
6902
6903 /* do receive unfreeze steps for kernel contexts */
6904 rxe_kernel_unfreeze(dd);
6905
6906 /*
6907 * The unfreeze procedure touches global device registers when
6908 * it disables and re-enables RXE. Mark the device unfrozen
6909 * after all that is done so other parts of the driver waiting
6910 * for the device to unfreeze don't do things out of order.
6911 *
6912 * The above implies that the meaning of HFI1_FROZEN flag is
6913 * "Device has gone into freeze mode and freeze mode handling
6914 * is still in progress."
6915 *
6916 * The flag will be removed when freeze mode processing has
6917 * completed.
6918 */
6919 dd->flags &= ~HFI1_FROZEN;
6920 wake_up(&dd->event_queue);
6921
6922 /* no longer frozen */
Mike Marciniszyn77241052015-07-30 15:17:43 -04006923}
6924
Kamenee Arumugam07190072018-02-01 10:52:28 -08006925/**
6926 * update_xmit_counters - update PortXmitWait/PortVlXmitWait
6927 * counters.
6928 * @ppd: info of physical Hfi port
6929 * @link_width: new link width after link up or downgrade
6930 *
6931 * Update the PortXmitWait and PortVlXmitWait counters after
6932 * a link up or downgrade event to reflect a link width change.
6933 */
6934static void update_xmit_counters(struct hfi1_pportdata *ppd, u16 link_width)
6935{
6936 int i;
6937 u16 tx_width;
6938 u16 link_speed;
6939
6940 tx_width = tx_link_width(link_width);
6941 link_speed = get_link_speed(ppd->link_speed_active);
6942
6943 /*
6944 * There are C_VL_COUNT number of PortVLXmitWait counters.
6945 * Adding 1 to C_VL_COUNT to include the PortXmitWait counter.
6946 */
6947 for (i = 0; i < C_VL_COUNT + 1; i++)
6948 get_xmit_wait_counters(ppd, tx_width, link_speed, i);
6949}
6950
Mike Marciniszyn77241052015-07-30 15:17:43 -04006951/*
6952 * Handle a link up interrupt from the 8051.
6953 *
6954 * This is a work-queue function outside of the interrupt.
6955 */
6956void handle_link_up(struct work_struct *work)
6957{
6958 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Jubin John17fb4f22016-02-14 20:21:52 -08006959 link_up_work);
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006960 struct hfi1_devdata *dd = ppd->dd;
6961
Mike Marciniszyn77241052015-07-30 15:17:43 -04006962 set_link_state(ppd, HLS_UP_INIT);
6963
6964 /* cache the read of DC_LCB_STS_ROUND_TRIP_LTP_CNT */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006965 read_ltp_rtt(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006966 /*
6967 * OPA specifies that certain counters are cleared on a transition
6968 * to link up, so do that.
6969 */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006970 clear_linkup_counters(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006971 /*
6972 * And (re)set link up default values.
6973 */
6974 set_linkup_defaults(ppd);
6975
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006976 /*
6977 * Set VL15 credits. Use cached value from verify cap interrupt.
6978 * In case of quick linkup or simulator, vl15 value will be set by
6979 * handle_linkup_change. VerifyCap interrupt handler will not be
6980 * called in those scenarios.
6981 */
6982 if (!(quick_linkup || dd->icode == ICODE_FUNCTIONAL_SIMULATOR))
6983 set_up_vl15(dd, dd->vl15buf_cached);
6984
Mike Marciniszyn77241052015-07-30 15:17:43 -04006985 /* enforce link speed enabled */
6986 if ((ppd->link_speed_active & ppd->link_speed_enabled) == 0) {
6987 /* oops - current speed is not enabled, bounce */
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07006988 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08006989 "Link speed active 0x%x is outside enabled 0x%x, downing link\n",
6990 ppd->link_speed_active, ppd->link_speed_enabled);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006991 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SPEED_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08006992 OPA_LINKDOWN_REASON_SPEED_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04006993 set_link_state(ppd, HLS_DN_OFFLINE);
6994 start_link(ppd);
6995 }
6996}
6997
Jubin John4d114fd2016-02-14 20:21:43 -08006998/*
6999 * Several pieces of LNI information were cached for SMA in ppd.
7000 * Reset these on link down
7001 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04007002static void reset_neighbor_info(struct hfi1_pportdata *ppd)
7003{
7004 ppd->neighbor_guid = 0;
7005 ppd->neighbor_port_number = 0;
7006 ppd->neighbor_type = 0;
7007 ppd->neighbor_fm_security = 0;
7008}
7009
Dean Luickfeb831d2016-04-14 08:31:36 -07007010static const char * const link_down_reason_strs[] = {
7011 [OPA_LINKDOWN_REASON_NONE] = "None",
Dennis Dalessandro67838e62017-05-29 17:18:46 -07007012 [OPA_LINKDOWN_REASON_RCV_ERROR_0] = "Receive error 0",
Dean Luickfeb831d2016-04-14 08:31:36 -07007013 [OPA_LINKDOWN_REASON_BAD_PKT_LEN] = "Bad packet length",
7014 [OPA_LINKDOWN_REASON_PKT_TOO_LONG] = "Packet too long",
7015 [OPA_LINKDOWN_REASON_PKT_TOO_SHORT] = "Packet too short",
7016 [OPA_LINKDOWN_REASON_BAD_SLID] = "Bad SLID",
7017 [OPA_LINKDOWN_REASON_BAD_DLID] = "Bad DLID",
7018 [OPA_LINKDOWN_REASON_BAD_L2] = "Bad L2",
7019 [OPA_LINKDOWN_REASON_BAD_SC] = "Bad SC",
7020 [OPA_LINKDOWN_REASON_RCV_ERROR_8] = "Receive error 8",
7021 [OPA_LINKDOWN_REASON_BAD_MID_TAIL] = "Bad mid tail",
7022 [OPA_LINKDOWN_REASON_RCV_ERROR_10] = "Receive error 10",
7023 [OPA_LINKDOWN_REASON_PREEMPT_ERROR] = "Preempt error",
7024 [OPA_LINKDOWN_REASON_PREEMPT_VL15] = "Preempt vl15",
7025 [OPA_LINKDOWN_REASON_BAD_VL_MARKER] = "Bad VL marker",
7026 [OPA_LINKDOWN_REASON_RCV_ERROR_14] = "Receive error 14",
7027 [OPA_LINKDOWN_REASON_RCV_ERROR_15] = "Receive error 15",
7028 [OPA_LINKDOWN_REASON_BAD_HEAD_DIST] = "Bad head distance",
7029 [OPA_LINKDOWN_REASON_BAD_TAIL_DIST] = "Bad tail distance",
7030 [OPA_LINKDOWN_REASON_BAD_CTRL_DIST] = "Bad control distance",
7031 [OPA_LINKDOWN_REASON_BAD_CREDIT_ACK] = "Bad credit ack",
7032 [OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER] = "Unsupported VL marker",
7033 [OPA_LINKDOWN_REASON_BAD_PREEMPT] = "Bad preempt",
7034 [OPA_LINKDOWN_REASON_BAD_CONTROL_FLIT] = "Bad control flit",
7035 [OPA_LINKDOWN_REASON_EXCEED_MULTICAST_LIMIT] = "Exceed multicast limit",
7036 [OPA_LINKDOWN_REASON_RCV_ERROR_24] = "Receive error 24",
7037 [OPA_LINKDOWN_REASON_RCV_ERROR_25] = "Receive error 25",
7038 [OPA_LINKDOWN_REASON_RCV_ERROR_26] = "Receive error 26",
7039 [OPA_LINKDOWN_REASON_RCV_ERROR_27] = "Receive error 27",
7040 [OPA_LINKDOWN_REASON_RCV_ERROR_28] = "Receive error 28",
7041 [OPA_LINKDOWN_REASON_RCV_ERROR_29] = "Receive error 29",
7042 [OPA_LINKDOWN_REASON_RCV_ERROR_30] = "Receive error 30",
7043 [OPA_LINKDOWN_REASON_EXCESSIVE_BUFFER_OVERRUN] =
7044 "Excessive buffer overrun",
7045 [OPA_LINKDOWN_REASON_UNKNOWN] = "Unknown",
7046 [OPA_LINKDOWN_REASON_REBOOT] = "Reboot",
7047 [OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN] = "Neighbor unknown",
7048 [OPA_LINKDOWN_REASON_FM_BOUNCE] = "FM bounce",
7049 [OPA_LINKDOWN_REASON_SPEED_POLICY] = "Speed policy",
7050 [OPA_LINKDOWN_REASON_WIDTH_POLICY] = "Width policy",
7051 [OPA_LINKDOWN_REASON_DISCONNECTED] = "Disconnected",
7052 [OPA_LINKDOWN_REASON_LOCAL_MEDIA_NOT_INSTALLED] =
7053 "Local media not installed",
7054 [OPA_LINKDOWN_REASON_NOT_INSTALLED] = "Not installed",
7055 [OPA_LINKDOWN_REASON_CHASSIS_CONFIG] = "Chassis config",
7056 [OPA_LINKDOWN_REASON_END_TO_END_NOT_INSTALLED] =
7057 "End to end not installed",
7058 [OPA_LINKDOWN_REASON_POWER_POLICY] = "Power policy",
7059 [OPA_LINKDOWN_REASON_LINKSPEED_POLICY] = "Link speed policy",
7060 [OPA_LINKDOWN_REASON_LINKWIDTH_POLICY] = "Link width policy",
7061 [OPA_LINKDOWN_REASON_SWITCH_MGMT] = "Switch management",
7062 [OPA_LINKDOWN_REASON_SMA_DISABLED] = "SMA disabled",
7063 [OPA_LINKDOWN_REASON_TRANSIENT] = "Transient"
7064};
7065
7066/* return the neighbor link down reason string */
7067static const char *link_down_reason_str(u8 reason)
7068{
7069 const char *str = NULL;
7070
7071 if (reason < ARRAY_SIZE(link_down_reason_strs))
7072 str = link_down_reason_strs[reason];
7073 if (!str)
7074 str = "(invalid)";
7075
7076 return str;
7077}
7078
Mike Marciniszyn77241052015-07-30 15:17:43 -04007079/*
7080 * Handle a link down interrupt from the 8051.
7081 *
7082 * This is a work-queue function outside of the interrupt.
7083 */
7084void handle_link_down(struct work_struct *work)
7085{
7086 u8 lcl_reason, neigh_reason = 0;
Dean Luickfeb831d2016-04-14 08:31:36 -07007087 u8 link_down_reason;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007088 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
Dean Luickfeb831d2016-04-14 08:31:36 -07007089 link_down_work);
7090 int was_up;
7091 static const char ldr_str[] = "Link down reason: ";
Mike Marciniszyn77241052015-07-30 15:17:43 -04007092
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08007093 if ((ppd->host_link_state &
7094 (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) &&
7095 ppd->port_type == PORT_TYPE_FIXED)
7096 ppd->offline_disabled_reason =
7097 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NOT_INSTALLED);
7098
7099 /* Go offline first, then deal with reading/writing through 8051 */
Dean Luickfeb831d2016-04-14 08:31:36 -07007100 was_up = !!(ppd->host_link_state & HLS_UP);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007101 set_link_state(ppd, HLS_DN_OFFLINE);
Sebastian Sanchez626c0772017-07-29 08:43:55 -07007102 xchg(&ppd->is_link_down_queued, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007103
Dean Luickfeb831d2016-04-14 08:31:36 -07007104 if (was_up) {
7105 lcl_reason = 0;
7106 /* link down reason is only valid if the link was up */
7107 read_link_down_reason(ppd->dd, &link_down_reason);
7108 switch (link_down_reason) {
7109 case LDR_LINK_TRANSFER_ACTIVE_LOW:
7110 /* the link went down, no idle message reason */
7111 dd_dev_info(ppd->dd, "%sUnexpected link down\n",
7112 ldr_str);
7113 break;
7114 case LDR_RECEIVED_LINKDOWN_IDLE_MSG:
7115 /*
7116 * The neighbor reason is only valid if an idle message
7117 * was received for it.
7118 */
7119 read_planned_down_reason_code(ppd->dd, &neigh_reason);
7120 dd_dev_info(ppd->dd,
7121 "%sNeighbor link down message %d, %s\n",
7122 ldr_str, neigh_reason,
7123 link_down_reason_str(neigh_reason));
7124 break;
7125 case LDR_RECEIVED_HOST_OFFLINE_REQ:
7126 dd_dev_info(ppd->dd,
7127 "%sHost requested link to go offline\n",
7128 ldr_str);
7129 break;
7130 default:
7131 dd_dev_info(ppd->dd, "%sUnknown reason 0x%x\n",
7132 ldr_str, link_down_reason);
7133 break;
7134 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007135
Dean Luickfeb831d2016-04-14 08:31:36 -07007136 /*
7137 * If no reason, assume peer-initiated but missed
7138 * LinkGoingDown idle flits.
7139 */
7140 if (neigh_reason == 0)
7141 lcl_reason = OPA_LINKDOWN_REASON_NEIGHBOR_UNKNOWN;
7142 } else {
7143 /* went down while polling or going up */
7144 lcl_reason = OPA_LINKDOWN_REASON_TRANSIENT;
7145 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007146
7147 set_link_down_reason(ppd, lcl_reason, neigh_reason, 0);
7148
Dean Luick015e91f2016-04-14 08:31:42 -07007149 /* inform the SMA when the link transitions from up to down */
7150 if (was_up && ppd->local_link_down_reason.sma == 0 &&
7151 ppd->neigh_link_down_reason.sma == 0) {
7152 ppd->local_link_down_reason.sma =
7153 ppd->local_link_down_reason.latest;
7154 ppd->neigh_link_down_reason.sma =
7155 ppd->neigh_link_down_reason.latest;
7156 }
7157
Mike Marciniszyn77241052015-07-30 15:17:43 -04007158 reset_neighbor_info(ppd);
7159
7160 /* disable the port */
7161 clear_rcvctrl(ppd->dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
7162
Jubin John4d114fd2016-02-14 20:21:43 -08007163 /*
7164 * If there is no cable attached, turn the DC off. Otherwise,
7165 * start the link bring up.
7166 */
Dean Luick0db9dec2016-09-06 04:35:20 -07007167 if (ppd->port_type == PORT_TYPE_QSFP && !qsfp_mod_present(ppd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04007168 dc_shutdown(ppd->dd);
Dean Luick0db9dec2016-09-06 04:35:20 -07007169 else
Mike Marciniszyn77241052015-07-30 15:17:43 -04007170 start_link(ppd);
7171}
7172
7173void handle_link_bounce(struct work_struct *work)
7174{
7175 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7176 link_bounce_work);
7177
7178 /*
7179 * Only do something if the link is currently up.
7180 */
7181 if (ppd->host_link_state & HLS_UP) {
7182 set_link_state(ppd, HLS_DN_OFFLINE);
7183 start_link(ppd);
7184 } else {
7185 dd_dev_info(ppd->dd, "%s: link not up (%s), nothing to do\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007186 __func__, link_state_name(ppd->host_link_state));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007187 }
7188}
7189
7190/*
7191 * Mask conversion: Capability exchange to Port LTP. The capability
7192 * exchange has an implicit 16b CRC that is mandatory.
7193 */
7194static int cap_to_port_ltp(int cap)
7195{
7196 int port_ltp = PORT_LTP_CRC_MODE_16; /* this mode is mandatory */
7197
7198 if (cap & CAP_CRC_14B)
7199 port_ltp |= PORT_LTP_CRC_MODE_14;
7200 if (cap & CAP_CRC_48B)
7201 port_ltp |= PORT_LTP_CRC_MODE_48;
7202 if (cap & CAP_CRC_12B_16B_PER_LANE)
7203 port_ltp |= PORT_LTP_CRC_MODE_PER_LANE;
7204
7205 return port_ltp;
7206}
7207
7208/*
7209 * Convert an OPA Port LTP mask to capability mask
7210 */
7211int port_ltp_to_cap(int port_ltp)
7212{
7213 int cap_mask = 0;
7214
7215 if (port_ltp & PORT_LTP_CRC_MODE_14)
7216 cap_mask |= CAP_CRC_14B;
7217 if (port_ltp & PORT_LTP_CRC_MODE_48)
7218 cap_mask |= CAP_CRC_48B;
7219 if (port_ltp & PORT_LTP_CRC_MODE_PER_LANE)
7220 cap_mask |= CAP_CRC_12B_16B_PER_LANE;
7221
7222 return cap_mask;
7223}
7224
7225/*
7226 * Convert a single DC LCB CRC mode to an OPA Port LTP mask.
7227 */
7228static int lcb_to_port_ltp(int lcb_crc)
7229{
7230 int port_ltp = 0;
7231
7232 if (lcb_crc == LCB_CRC_12B_16B_PER_LANE)
7233 port_ltp = PORT_LTP_CRC_MODE_PER_LANE;
7234 else if (lcb_crc == LCB_CRC_48B)
7235 port_ltp = PORT_LTP_CRC_MODE_48;
7236 else if (lcb_crc == LCB_CRC_14B)
7237 port_ltp = PORT_LTP_CRC_MODE_14;
7238 else
7239 port_ltp = PORT_LTP_CRC_MODE_16;
7240
7241 return port_ltp;
7242}
7243
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007244static void clear_full_mgmt_pkey(struct hfi1_pportdata *ppd)
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007245{
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007246 if (ppd->pkeys[2] != 0) {
7247 ppd->pkeys[2] = 0;
7248 (void)hfi1_set_ib_cfg(ppd, HFI1_IB_CFG_PKEYS, 0);
Sebastian Sanchez34d351f2016-06-09 07:52:03 -07007249 hfi1_event_pkey_change(ppd->dd, ppd->port);
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07007250 }
Sebastian Sanchezce8b2fd2016-05-24 12:50:47 -07007251}
7252
Mike Marciniszyn77241052015-07-30 15:17:43 -04007253/*
7254 * Convert the given link width to the OPA link width bitmask.
7255 */
7256static u16 link_width_to_bits(struct hfi1_devdata *dd, u16 width)
7257{
7258 switch (width) {
7259 case 0:
7260 /*
7261 * Simulator and quick linkup do not set the width.
7262 * Just set it to 4x without complaint.
7263 */
7264 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR || quick_linkup)
7265 return OPA_LINK_WIDTH_4X;
7266 return 0; /* no lanes up */
7267 case 1: return OPA_LINK_WIDTH_1X;
7268 case 2: return OPA_LINK_WIDTH_2X;
7269 case 3: return OPA_LINK_WIDTH_3X;
7270 default:
7271 dd_dev_info(dd, "%s: invalid width %d, using 4\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007272 __func__, width);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007273 /* fall through */
7274 case 4: return OPA_LINK_WIDTH_4X;
7275 }
7276}
7277
7278/*
7279 * Do a population count on the bottom nibble.
7280 */
7281static const u8 bit_counts[16] = {
7282 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4
7283};
Jubin Johnf4d507c2016-02-14 20:20:25 -08007284
Mike Marciniszyn77241052015-07-30 15:17:43 -04007285static inline u8 nibble_to_count(u8 nibble)
7286{
7287 return bit_counts[nibble & 0xf];
7288}
7289
7290/*
7291 * Read the active lane information from the 8051 registers and return
7292 * their widths.
7293 *
7294 * Active lane information is found in these 8051 registers:
7295 * enable_lane_tx
7296 * enable_lane_rx
7297 */
7298static void get_link_widths(struct hfi1_devdata *dd, u16 *tx_width,
7299 u16 *rx_width)
7300{
7301 u16 tx, rx;
7302 u8 enable_lane_rx;
7303 u8 enable_lane_tx;
7304 u8 tx_polarity_inversion;
7305 u8 rx_polarity_inversion;
7306 u8 max_rate;
7307
7308 /* read the active lanes */
7309 read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08007310 &rx_polarity_inversion, &max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007311 read_local_lni(dd, &enable_lane_rx);
7312
7313 /* convert to counts */
7314 tx = nibble_to_count(enable_lane_tx);
7315 rx = nibble_to_count(enable_lane_rx);
7316
7317 /*
7318 * Set link_speed_active here, overriding what was set in
7319 * handle_verify_cap(). The ASIC 8051 firmware does not correctly
7320 * set the max_rate field in handle_verify_cap until v0.19.
7321 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007322 if ((dd->icode == ICODE_RTL_SILICON) &&
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07007323 (dd->dc8051_ver < dc8051_ver(0, 19, 0))) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007324 /* max_rate: 0 = 12.5G, 1 = 25G */
7325 switch (max_rate) {
7326 case 0:
7327 dd->pport[0].link_speed_active = OPA_LINK_SPEED_12_5G;
7328 break;
7329 default:
7330 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007331 "%s: unexpected max rate %d, using 25Gb\n",
7332 __func__, (int)max_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007333 /* fall through */
7334 case 1:
7335 dd->pport[0].link_speed_active = OPA_LINK_SPEED_25G;
7336 break;
7337 }
7338 }
7339
7340 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007341 "Fabric active lanes (width): tx 0x%x (%d), rx 0x%x (%d)\n",
7342 enable_lane_tx, tx, enable_lane_rx, rx);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007343 *tx_width = link_width_to_bits(dd, tx);
7344 *rx_width = link_width_to_bits(dd, rx);
7345}
7346
7347/*
7348 * Read verify_cap_local_fm_link_width[1] to obtain the link widths.
7349 * Valid after the end of VerifyCap and during LinkUp. Does not change
7350 * after link up. I.e. look elsewhere for downgrade information.
7351 *
7352 * Bits are:
7353 * + bits [7:4] contain the number of active transmitters
7354 * + bits [3:0] contain the number of active receivers
7355 * These are numbers 1 through 4 and can be different values if the
7356 * link is asymmetric.
7357 *
7358 * verify_cap_local_fm_link_width[0] retains its original value.
7359 */
7360static void get_linkup_widths(struct hfi1_devdata *dd, u16 *tx_width,
7361 u16 *rx_width)
7362{
7363 u16 widths, tx, rx;
7364 u8 misc_bits, local_flags;
7365 u16 active_tx, active_rx;
7366
Sebastian Sanchez254361c2018-05-02 06:42:21 -07007367 read_vc_local_link_mode(dd, &misc_bits, &local_flags, &widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007368 tx = widths >> 12;
7369 rx = (widths >> 8) & 0xf;
7370
7371 *tx_width = link_width_to_bits(dd, tx);
7372 *rx_width = link_width_to_bits(dd, rx);
7373
7374 /* print the active widths */
7375 get_link_widths(dd, &active_tx, &active_rx);
7376}
7377
7378/*
7379 * Set ppd->link_width_active and ppd->link_width_downgrade_active using
7380 * hardware information when the link first comes up.
7381 *
7382 * The link width is not available until after VerifyCap.AllFramesReceived
7383 * (the trigger for handle_verify_cap), so this is outside that routine
7384 * and should be called when the 8051 signals linkup.
7385 */
7386void get_linkup_link_widths(struct hfi1_pportdata *ppd)
7387{
7388 u16 tx_width, rx_width;
7389
7390 /* get end-of-LNI link widths */
7391 get_linkup_widths(ppd->dd, &tx_width, &rx_width);
7392
7393 /* use tx_width as the link is supposed to be symmetric on link up */
7394 ppd->link_width_active = tx_width;
7395 /* link width downgrade active (LWD.A) starts out matching LW.A */
7396 ppd->link_width_downgrade_tx_active = ppd->link_width_active;
7397 ppd->link_width_downgrade_rx_active = ppd->link_width_active;
7398 /* per OPA spec, on link up LWD.E resets to LWD.S */
7399 ppd->link_width_downgrade_enabled = ppd->link_width_downgrade_supported;
7400 /* cache the active egress rate (units {10^6 bits/sec]) */
7401 ppd->current_egress_rate = active_egress_rate(ppd);
7402}
7403
7404/*
7405 * Handle a verify capabilities interrupt from the 8051.
7406 *
7407 * This is a work-queue function outside of the interrupt.
7408 */
7409void handle_verify_cap(struct work_struct *work)
7410{
7411 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7412 link_vc_work);
7413 struct hfi1_devdata *dd = ppd->dd;
7414 u64 reg;
7415 u8 power_management;
Colin Ian Kinga63aa5d2017-07-13 23:13:38 +01007416 u8 continuous;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007417 u8 vcu;
7418 u8 vau;
7419 u8 z;
7420 u16 vl15buf;
7421 u16 link_widths;
7422 u16 crc_mask;
7423 u16 crc_val;
7424 u16 device_id;
7425 u16 active_tx, active_rx;
7426 u8 partner_supported_crc;
7427 u8 remote_tx_rate;
7428 u8 device_rev;
7429
7430 set_link_state(ppd, HLS_VERIFY_CAP);
7431
7432 lcb_shutdown(dd, 0);
7433 adjust_lcb_for_fpga_serdes(dd);
7434
Colin Ian Kinga63aa5d2017-07-13 23:13:38 +01007435 read_vc_remote_phy(dd, &power_management, &continuous);
Jubin John17fb4f22016-02-14 20:21:52 -08007436 read_vc_remote_fabric(dd, &vau, &z, &vcu, &vl15buf,
7437 &partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007438 read_vc_remote_link_width(dd, &remote_tx_rate, &link_widths);
7439 read_remote_device_id(dd, &device_id, &device_rev);
Jan Sokolowski641f3482017-11-06 06:38:16 -08007440
Mike Marciniszyn77241052015-07-30 15:17:43 -04007441 /* print the active widths */
7442 get_link_widths(dd, &active_tx, &active_rx);
7443 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007444 "Peer PHY: power management 0x%x, continuous updates 0x%x\n",
Colin Ian Kinga63aa5d2017-07-13 23:13:38 +01007445 (int)power_management, (int)continuous);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007446 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007447 "Peer Fabric: vAU %d, Z %d, vCU %d, vl15 credits 0x%x, CRC sizes 0x%x\n",
7448 (int)vau, (int)z, (int)vcu, (int)vl15buf,
7449 (int)partner_supported_crc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007450 dd_dev_info(dd, "Peer Link Width: tx rate 0x%x, widths 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007451 (u32)remote_tx_rate, (u32)link_widths);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007452 dd_dev_info(dd, "Peer Device ID: 0x%04x, Revision 0x%02x\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007453 (u32)device_id, (u32)device_rev);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007454 /*
7455 * The peer vAU value just read is the peer receiver value. HFI does
7456 * not support a transmit vAU of 0 (AU == 8). We advertised that
7457 * with Z=1 in the fabric capabilities sent to the peer. The peer
7458 * will see our Z=1, and, if it advertised a vAU of 0, will move its
7459 * receive to vAU of 1 (AU == 16). Do the same here. We do not care
7460 * about the peer Z value - our sent vAU is 3 (hardwired) and is not
7461 * subject to the Z value exception.
7462 */
7463 if (vau == 0)
7464 vau = 1;
Byczkowski, Jakubb3e6b4b2017-05-12 09:01:37 -07007465 set_up_vau(dd, vau);
7466
7467 /*
7468 * Set VL15 credits to 0 in global credit register. Cache remote VL15
7469 * credits value and wait for link-up interrupt ot set it.
7470 */
7471 set_up_vl15(dd, 0);
7472 dd->vl15buf_cached = vl15buf;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007473
7474 /* set up the LCB CRC mode */
7475 crc_mask = ppd->port_crc_mode_enabled & partner_supported_crc;
7476
7477 /* order is important: use the lowest bit in common */
7478 if (crc_mask & CAP_CRC_14B)
7479 crc_val = LCB_CRC_14B;
7480 else if (crc_mask & CAP_CRC_48B)
7481 crc_val = LCB_CRC_48B;
7482 else if (crc_mask & CAP_CRC_12B_16B_PER_LANE)
7483 crc_val = LCB_CRC_12B_16B_PER_LANE;
7484 else
7485 crc_val = LCB_CRC_16B;
7486
7487 dd_dev_info(dd, "Final LCB CRC mode: %d\n", (int)crc_val);
7488 write_csr(dd, DC_LCB_CFG_CRC_MODE,
7489 (u64)crc_val << DC_LCB_CFG_CRC_MODE_TX_VAL_SHIFT);
7490
7491 /* set (14b only) or clear sideband credit */
7492 reg = read_csr(dd, SEND_CM_CTRL);
7493 if (crc_val == LCB_CRC_14B && crc_14b_sideband) {
7494 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007495 reg | SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007496 } else {
7497 write_csr(dd, SEND_CM_CTRL,
Jubin John17fb4f22016-02-14 20:21:52 -08007498 reg & ~SEND_CM_CTRL_FORCE_CREDIT_MODE_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007499 }
7500
7501 ppd->link_speed_active = 0; /* invalid value */
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07007502 if (dd->dc8051_ver < dc8051_ver(0, 20, 0)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007503 /* remote_tx_rate: 0 = 12.5G, 1 = 25G */
7504 switch (remote_tx_rate) {
7505 case 0:
7506 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7507 break;
7508 case 1:
7509 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7510 break;
7511 }
7512 } else {
7513 /* actual rate is highest bit of the ANDed rates */
7514 u8 rate = remote_tx_rate & ppd->local_tx_rate;
7515
7516 if (rate & 2)
7517 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7518 else if (rate & 1)
7519 ppd->link_speed_active = OPA_LINK_SPEED_12_5G;
7520 }
7521 if (ppd->link_speed_active == 0) {
7522 dd_dev_err(dd, "%s: unexpected remote tx rate %d, using 25Gb\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007523 __func__, (int)remote_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007524 ppd->link_speed_active = OPA_LINK_SPEED_25G;
7525 }
7526
7527 /*
7528 * Cache the values of the supported, enabled, and active
7529 * LTP CRC modes to return in 'portinfo' queries. But the bit
7530 * flags that are returned in the portinfo query differ from
7531 * what's in the link_crc_mask, crc_sizes, and crc_val
7532 * variables. Convert these here.
7533 */
7534 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
7535 /* supported crc modes */
7536 ppd->port_ltp_crc_mode |=
7537 cap_to_port_ltp(ppd->port_crc_mode_enabled) << 4;
7538 /* enabled crc modes */
7539 ppd->port_ltp_crc_mode |= lcb_to_port_ltp(crc_val);
7540 /* active crc mode */
7541
7542 /* set up the remote credit return table */
7543 assign_remote_cm_au_table(dd, vcu);
7544
7545 /*
7546 * The LCB is reset on entry to handle_verify_cap(), so this must
7547 * be applied on every link up.
7548 *
7549 * Adjust LCB error kill enable to kill the link if
7550 * these RBUF errors are seen:
7551 * REPLAY_BUF_MBE_SMASK
7552 * FLIT_INPUT_BUF_MBE_SMASK
7553 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05007554 if (is_ax(dd)) { /* fixed in B0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04007555 reg = read_csr(dd, DC_LCB_CFG_LINK_KILL_EN);
7556 reg |= DC_LCB_CFG_LINK_KILL_EN_REPLAY_BUF_MBE_SMASK
7557 | DC_LCB_CFG_LINK_KILL_EN_FLIT_INPUT_BUF_MBE_SMASK;
7558 write_csr(dd, DC_LCB_CFG_LINK_KILL_EN, reg);
7559 }
7560
7561 /* pull LCB fifos out of reset - all fifo clocks must be stable */
7562 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
7563
7564 /* give 8051 access to the LCB CSRs */
7565 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
7566 set_8051_lcb_access(dd);
7567
Mike Marciniszyn77241052015-07-30 15:17:43 -04007568 /* tell the 8051 to go to LinkUp */
7569 set_link_state(ppd, HLS_GOING_UP);
7570}
7571
Kamenee Arumugam07190072018-02-01 10:52:28 -08007572/**
7573 * apply_link_downgrade_policy - Apply the link width downgrade enabled
7574 * policy against the current active link widths.
7575 * @ppd: info of physical Hfi port
7576 * @refresh_widths: True indicates link downgrade event
7577 * @return: True indicates a successful link downgrade. False indicates
7578 * link downgrade event failed and the link will bounce back to
7579 * default link width.
Mike Marciniszyn77241052015-07-30 15:17:43 -04007580 *
Kamenee Arumugam07190072018-02-01 10:52:28 -08007581 * Called when the enabled policy changes or the active link widths
7582 * change.
7583 * Refresh_widths indicates that a link downgrade occurred. The
7584 * link_downgraded variable is set by refresh_widths and
7585 * determines the success/failure of the policy application.
Mike Marciniszyn77241052015-07-30 15:17:43 -04007586 */
Kamenee Arumugam07190072018-02-01 10:52:28 -08007587bool apply_link_downgrade_policy(struct hfi1_pportdata *ppd,
7588 bool refresh_widths)
Mike Marciniszyn77241052015-07-30 15:17:43 -04007589{
Mike Marciniszyn77241052015-07-30 15:17:43 -04007590 int do_bounce = 0;
Dean Luick323fd782015-11-16 21:59:24 -05007591 int tries;
7592 u16 lwde;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007593 u16 tx, rx;
Kamenee Arumugam07190072018-02-01 10:52:28 -08007594 bool link_downgraded = refresh_widths;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007595
Dean Luick323fd782015-11-16 21:59:24 -05007596 /* use the hls lock to avoid a race with actual link up */
7597 tries = 0;
7598retry:
Mike Marciniszyn77241052015-07-30 15:17:43 -04007599 mutex_lock(&ppd->hls_lock);
7600 /* only apply if the link is up */
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07007601 if (ppd->host_link_state & HLS_DOWN) {
Dean Luick323fd782015-11-16 21:59:24 -05007602 /* still going up..wait and retry */
7603 if (ppd->host_link_state & HLS_GOING_UP) {
7604 if (++tries < 1000) {
7605 mutex_unlock(&ppd->hls_lock);
7606 usleep_range(100, 120); /* arbitrary */
7607 goto retry;
7608 }
7609 dd_dev_err(ppd->dd,
7610 "%s: giving up waiting for link state change\n",
7611 __func__);
7612 }
7613 goto done;
7614 }
7615
7616 lwde = ppd->link_width_downgrade_enabled;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007617
7618 if (refresh_widths) {
7619 get_link_widths(ppd->dd, &tx, &rx);
7620 ppd->link_width_downgrade_tx_active = tx;
7621 ppd->link_width_downgrade_rx_active = rx;
7622 }
7623
Dean Luickf9b56352016-04-14 08:31:30 -07007624 if (ppd->link_width_downgrade_tx_active == 0 ||
7625 ppd->link_width_downgrade_rx_active == 0) {
7626 /* the 8051 reported a dead link as a downgrade */
7627 dd_dev_err(ppd->dd, "Link downgrade is really a link down, ignoring\n");
Kamenee Arumugam07190072018-02-01 10:52:28 -08007628 link_downgraded = false;
Dean Luickf9b56352016-04-14 08:31:30 -07007629 } else if (lwde == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007630 /* downgrade is disabled */
7631
7632 /* bounce if not at starting active width */
7633 if ((ppd->link_width_active !=
Jubin John17fb4f22016-02-14 20:21:52 -08007634 ppd->link_width_downgrade_tx_active) ||
7635 (ppd->link_width_active !=
7636 ppd->link_width_downgrade_rx_active)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007637 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007638 "Link downgrade is disabled and link has downgraded, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007639 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007640 " original 0x%x, tx active 0x%x, rx active 0x%x\n",
7641 ppd->link_width_active,
7642 ppd->link_width_downgrade_tx_active,
7643 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007644 do_bounce = 1;
Kamenee Arumugam07190072018-02-01 10:52:28 -08007645 link_downgraded = false;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007646 }
Jubin Johnd0d236e2016-02-14 20:20:15 -08007647 } else if ((lwde & ppd->link_width_downgrade_tx_active) == 0 ||
7648 (lwde & ppd->link_width_downgrade_rx_active) == 0) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04007649 /* Tx or Rx is outside the enabled policy */
7650 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007651 "Link is outside of downgrade allowed, downing link\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04007652 dd_dev_err(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08007653 " enabled 0x%x, tx active 0x%x, rx active 0x%x\n",
7654 lwde, ppd->link_width_downgrade_tx_active,
7655 ppd->link_width_downgrade_rx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007656 do_bounce = 1;
Kamenee Arumugam07190072018-02-01 10:52:28 -08007657 link_downgraded = false;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007658 }
7659
Dean Luick323fd782015-11-16 21:59:24 -05007660done:
7661 mutex_unlock(&ppd->hls_lock);
7662
Mike Marciniszyn77241052015-07-30 15:17:43 -04007663 if (do_bounce) {
7664 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_WIDTH_POLICY, 0,
Jubin John17fb4f22016-02-14 20:21:52 -08007665 OPA_LINKDOWN_REASON_WIDTH_POLICY);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007666 set_link_state(ppd, HLS_DN_OFFLINE);
7667 start_link(ppd);
7668 }
Kamenee Arumugam07190072018-02-01 10:52:28 -08007669
7670 return link_downgraded;
Mike Marciniszyn77241052015-07-30 15:17:43 -04007671}
7672
7673/*
7674 * Handle a link downgrade interrupt from the 8051.
7675 *
7676 * This is a work-queue function outside of the interrupt.
7677 */
7678void handle_link_downgrade(struct work_struct *work)
7679{
7680 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
7681 link_downgrade_work);
7682
7683 dd_dev_info(ppd->dd, "8051: Link width downgrade\n");
Kamenee Arumugam07190072018-02-01 10:52:28 -08007684 if (apply_link_downgrade_policy(ppd, true))
7685 update_xmit_counters(ppd, ppd->link_width_downgrade_tx_active);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007686}
7687
7688static char *dcc_err_string(char *buf, int buf_len, u64 flags)
7689{
7690 return flag_string(buf, buf_len, flags, dcc_err_flags,
7691 ARRAY_SIZE(dcc_err_flags));
7692}
7693
7694static char *lcb_err_string(char *buf, int buf_len, u64 flags)
7695{
7696 return flag_string(buf, buf_len, flags, lcb_err_flags,
7697 ARRAY_SIZE(lcb_err_flags));
7698}
7699
7700static char *dc8051_err_string(char *buf, int buf_len, u64 flags)
7701{
7702 return flag_string(buf, buf_len, flags, dc8051_err_flags,
7703 ARRAY_SIZE(dc8051_err_flags));
7704}
7705
7706static char *dc8051_info_err_string(char *buf, int buf_len, u64 flags)
7707{
7708 return flag_string(buf, buf_len, flags, dc8051_info_err_flags,
7709 ARRAY_SIZE(dc8051_info_err_flags));
7710}
7711
7712static char *dc8051_info_host_msg_string(char *buf, int buf_len, u64 flags)
7713{
7714 return flag_string(buf, buf_len, flags, dc8051_info_host_msg_flags,
7715 ARRAY_SIZE(dc8051_info_host_msg_flags));
7716}
7717
7718static void handle_8051_interrupt(struct hfi1_devdata *dd, u32 unused, u64 reg)
7719{
7720 struct hfi1_pportdata *ppd = dd->pport;
7721 u64 info, err, host_msg;
7722 int queue_link_down = 0;
7723 char buf[96];
7724
7725 /* look at the flags */
7726 if (reg & DC_DC8051_ERR_FLG_SET_BY_8051_SMASK) {
7727 /* 8051 information set by firmware */
7728 /* read DC8051_DBG_ERR_INFO_SET_BY_8051 for details */
7729 info = read_csr(dd, DC_DC8051_DBG_ERR_INFO_SET_BY_8051);
7730 err = (info >> DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_SHIFT)
7731 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_ERROR_MASK;
7732 host_msg = (info >>
7733 DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_SHIFT)
7734 & DC_DC8051_DBG_ERR_INFO_SET_BY_8051_HOST_MSG_MASK;
7735
7736 /*
7737 * Handle error flags.
7738 */
7739 if (err & FAILED_LNI) {
7740 /*
7741 * LNI error indications are cleared by the 8051
7742 * only when starting polling. Only pay attention
7743 * to them when in the states that occur during
7744 * LNI.
7745 */
7746 if (ppd->host_link_state
7747 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
7748 queue_link_down = 1;
7749 dd_dev_info(dd, "Link error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007750 dc8051_info_err_string(buf,
7751 sizeof(buf),
7752 err &
7753 FAILED_LNI));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007754 }
7755 err &= ~(u64)FAILED_LNI;
7756 }
Dean Luick6d014532015-12-01 15:38:23 -05007757 /* unknown frames can happen durning LNI, just count */
7758 if (err & UNKNOWN_FRAME) {
7759 ppd->unknown_frame_count++;
7760 err &= ~(u64)UNKNOWN_FRAME;
7761 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04007762 if (err) {
7763 /* report remaining errors, but do not do anything */
7764 dd_dev_err(dd, "8051 info error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007765 dc8051_info_err_string(buf, sizeof(buf),
7766 err));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007767 }
7768
7769 /*
7770 * Handle host message flags.
7771 */
7772 if (host_msg & HOST_REQ_DONE) {
7773 /*
7774 * Presently, the driver does a busy wait for
7775 * host requests to complete. This is only an
7776 * informational message.
7777 * NOTE: The 8051 clears the host message
7778 * information *on the next 8051 command*.
7779 * Therefore, when linkup is achieved,
7780 * this flag will still be set.
7781 */
7782 host_msg &= ~(u64)HOST_REQ_DONE;
7783 }
7784 if (host_msg & BC_SMA_MSG) {
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007785 queue_work(ppd->link_wq, &ppd->sma_message_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007786 host_msg &= ~(u64)BC_SMA_MSG;
7787 }
7788 if (host_msg & LINKUP_ACHIEVED) {
7789 dd_dev_info(dd, "8051: Link up\n");
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007790 queue_work(ppd->link_wq, &ppd->link_up_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007791 host_msg &= ~(u64)LINKUP_ACHIEVED;
7792 }
7793 if (host_msg & EXT_DEVICE_CFG_REQ) {
Easwar Hariharan145dd2b2016-04-12 11:25:31 -07007794 handle_8051_request(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007795 host_msg &= ~(u64)EXT_DEVICE_CFG_REQ;
7796 }
7797 if (host_msg & VERIFY_CAP_FRAME) {
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007798 queue_work(ppd->link_wq, &ppd->link_vc_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007799 host_msg &= ~(u64)VERIFY_CAP_FRAME;
7800 }
7801 if (host_msg & LINK_GOING_DOWN) {
7802 const char *extra = "";
7803 /* no downgrade action needed if going down */
7804 if (host_msg & LINK_WIDTH_DOWNGRADED) {
7805 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7806 extra = " (ignoring downgrade)";
7807 }
7808 dd_dev_info(dd, "8051: Link down%s\n", extra);
7809 queue_link_down = 1;
7810 host_msg &= ~(u64)LINK_GOING_DOWN;
7811 }
7812 if (host_msg & LINK_WIDTH_DOWNGRADED) {
Sebastian Sanchez71d47002017-07-29 08:43:49 -07007813 queue_work(ppd->link_wq, &ppd->link_downgrade_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007814 host_msg &= ~(u64)LINK_WIDTH_DOWNGRADED;
7815 }
7816 if (host_msg) {
7817 /* report remaining messages, but do not do anything */
7818 dd_dev_info(dd, "8051 info host message: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007819 dc8051_info_host_msg_string(buf,
7820 sizeof(buf),
7821 host_msg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007822 }
7823
7824 reg &= ~DC_DC8051_ERR_FLG_SET_BY_8051_SMASK;
7825 }
7826 if (reg & DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK) {
7827 /*
7828 * Lost the 8051 heartbeat. If this happens, we
7829 * receive constant interrupts about it. Disable
7830 * the interrupt after the first.
7831 */
7832 dd_dev_err(dd, "Lost 8051 heartbeat\n");
7833 write_csr(dd, DC_DC8051_ERR_EN,
Jubin John17fb4f22016-02-14 20:21:52 -08007834 read_csr(dd, DC_DC8051_ERR_EN) &
7835 ~DC_DC8051_ERR_EN_LOST_8051_HEART_BEAT_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007836
7837 reg &= ~DC_DC8051_ERR_FLG_LOST_8051_HEART_BEAT_SMASK;
7838 }
7839 if (reg) {
7840 /* report the error, but do not do anything */
7841 dd_dev_err(dd, "8051 error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08007842 dc8051_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04007843 }
7844
7845 if (queue_link_down) {
Jubin John4d114fd2016-02-14 20:21:43 -08007846 /*
7847 * if the link is already going down or disabled, do not
Sebastian Sanchezb6422bc2017-08-13 08:08:22 -07007848 * queue another. If there's a link down entry already
7849 * queued, don't queue another one.
Jubin John4d114fd2016-02-14 20:21:43 -08007850 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08007851 if ((ppd->host_link_state &
7852 (HLS_GOING_OFFLINE | HLS_LINK_COOLDOWN)) ||
Sebastian Sanchezb6422bc2017-08-13 08:08:22 -07007853 ppd->link_enabled == 0) {
7854 dd_dev_info(dd, "%s: not queuing link down. host_link_state %x, link_enabled %x\n",
7855 __func__, ppd->host_link_state,
7856 ppd->link_enabled);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007857 } else {
Sebastian Sanchezb6422bc2017-08-13 08:08:22 -07007858 if (xchg(&ppd->is_link_down_queued, 1) == 1)
7859 dd_dev_info(dd,
7860 "%s: link down request already queued\n",
7861 __func__);
7862 else
7863 queue_work(ppd->link_wq, &ppd->link_down_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007864 }
7865 }
7866}
7867
7868static const char * const fm_config_txt[] = {
7869[0] =
7870 "BadHeadDist: Distance violation between two head flits",
7871[1] =
7872 "BadTailDist: Distance violation between two tail flits",
7873[2] =
7874 "BadCtrlDist: Distance violation between two credit control flits",
7875[3] =
7876 "BadCrdAck: Credits return for unsupported VL",
7877[4] =
7878 "UnsupportedVLMarker: Received VL Marker",
7879[5] =
7880 "BadPreempt: Exceeded the preemption nesting level",
7881[6] =
7882 "BadControlFlit: Received unsupported control flit",
7883/* no 7 */
7884[8] =
7885 "UnsupportedVLMarker: Received VL Marker for unconfigured or disabled VL",
7886};
7887
7888static const char * const port_rcv_txt[] = {
7889[1] =
7890 "BadPktLen: Illegal PktLen",
7891[2] =
7892 "PktLenTooLong: Packet longer than PktLen",
7893[3] =
7894 "PktLenTooShort: Packet shorter than PktLen",
7895[4] =
7896 "BadSLID: Illegal SLID (0, using multicast as SLID, does not include security validation of SLID)",
7897[5] =
7898 "BadDLID: Illegal DLID (0, doesn't match HFI)",
7899[6] =
7900 "BadL2: Illegal L2 opcode",
7901[7] =
7902 "BadSC: Unsupported SC",
7903[9] =
7904 "BadRC: Illegal RC",
7905[11] =
7906 "PreemptError: Preempting with same VL",
7907[12] =
7908 "PreemptVL15: Preempting a VL15 packet",
7909};
7910
7911#define OPA_LDR_FMCONFIG_OFFSET 16
7912#define OPA_LDR_PORTRCV_OFFSET 0
7913static void handle_dcc_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
7914{
7915 u64 info, hdr0, hdr1;
7916 const char *extra;
7917 char buf[96];
7918 struct hfi1_pportdata *ppd = dd->pport;
7919 u8 lcl_reason = 0;
7920 int do_bounce = 0;
7921
7922 if (reg & DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK) {
7923 if (!(dd->err_info_uncorrectable & OPA_EI_STATUS_SMASK)) {
7924 info = read_csr(dd, DCC_ERR_INFO_UNCORRECTABLE);
7925 dd->err_info_uncorrectable = info & OPA_EI_CODE_SMASK;
7926 /* set status bit */
7927 dd->err_info_uncorrectable |= OPA_EI_STATUS_SMASK;
7928 }
7929 reg &= ~DCC_ERR_FLG_UNCORRECTABLE_ERR_SMASK;
7930 }
7931
7932 if (reg & DCC_ERR_FLG_LINK_ERR_SMASK) {
7933 struct hfi1_pportdata *ppd = dd->pport;
7934 /* this counter saturates at (2^32) - 1 */
7935 if (ppd->link_downed < (u32)UINT_MAX)
7936 ppd->link_downed++;
7937 reg &= ~DCC_ERR_FLG_LINK_ERR_SMASK;
7938 }
7939
7940 if (reg & DCC_ERR_FLG_FMCONFIG_ERR_SMASK) {
7941 u8 reason_valid = 1;
7942
7943 info = read_csr(dd, DCC_ERR_INFO_FMCONFIG);
7944 if (!(dd->err_info_fmconfig & OPA_EI_STATUS_SMASK)) {
7945 dd->err_info_fmconfig = info & OPA_EI_CODE_SMASK;
7946 /* set status bit */
7947 dd->err_info_fmconfig |= OPA_EI_STATUS_SMASK;
7948 }
7949 switch (info) {
7950 case 0:
7951 case 1:
7952 case 2:
7953 case 3:
7954 case 4:
7955 case 5:
7956 case 6:
7957 extra = fm_config_txt[info];
7958 break;
7959 case 8:
7960 extra = fm_config_txt[info];
7961 if (ppd->port_error_action &
7962 OPA_PI_MASK_FM_CFG_UNSUPPORTED_VL_MARKER) {
7963 do_bounce = 1;
7964 /*
7965 * lcl_reason cannot be derived from info
7966 * for this error
7967 */
7968 lcl_reason =
7969 OPA_LINKDOWN_REASON_UNSUPPORTED_VL_MARKER;
7970 }
7971 break;
7972 default:
7973 reason_valid = 0;
7974 snprintf(buf, sizeof(buf), "reserved%lld", info);
7975 extra = buf;
7976 break;
7977 }
7978
7979 if (reason_valid && !do_bounce) {
7980 do_bounce = ppd->port_error_action &
7981 (1 << (OPA_LDR_FMCONFIG_OFFSET + info));
7982 lcl_reason = info + OPA_LINKDOWN_REASON_BAD_HEAD_DIST;
7983 }
7984
7985 /* just report this */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08007986 dd_dev_info_ratelimited(dd, "DCC Error: fmconfig error: %s\n",
7987 extra);
Mike Marciniszyn77241052015-07-30 15:17:43 -04007988 reg &= ~DCC_ERR_FLG_FMCONFIG_ERR_SMASK;
7989 }
7990
7991 if (reg & DCC_ERR_FLG_RCVPORT_ERR_SMASK) {
7992 u8 reason_valid = 1;
7993
7994 info = read_csr(dd, DCC_ERR_INFO_PORTRCV);
7995 hdr0 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR0);
7996 hdr1 = read_csr(dd, DCC_ERR_INFO_PORTRCV_HDR1);
7997 if (!(dd->err_info_rcvport.status_and_code &
7998 OPA_EI_STATUS_SMASK)) {
7999 dd->err_info_rcvport.status_and_code =
8000 info & OPA_EI_CODE_SMASK;
8001 /* set status bit */
8002 dd->err_info_rcvport.status_and_code |=
8003 OPA_EI_STATUS_SMASK;
Jubin John4d114fd2016-02-14 20:21:43 -08008004 /*
8005 * save first 2 flits in the packet that caused
8006 * the error
8007 */
Bart Van Assche48a0cc132016-06-03 12:09:56 -07008008 dd->err_info_rcvport.packet_flit1 = hdr0;
8009 dd->err_info_rcvport.packet_flit2 = hdr1;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008010 }
8011 switch (info) {
8012 case 1:
8013 case 2:
8014 case 3:
8015 case 4:
8016 case 5:
8017 case 6:
8018 case 7:
8019 case 9:
8020 case 11:
8021 case 12:
8022 extra = port_rcv_txt[info];
8023 break;
8024 default:
8025 reason_valid = 0;
8026 snprintf(buf, sizeof(buf), "reserved%lld", info);
8027 extra = buf;
8028 break;
8029 }
8030
8031 if (reason_valid && !do_bounce) {
8032 do_bounce = ppd->port_error_action &
8033 (1 << (OPA_LDR_PORTRCV_OFFSET + info));
8034 lcl_reason = info + OPA_LINKDOWN_REASON_RCV_ERROR_0;
8035 }
8036
8037 /* just report this */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008038 dd_dev_info_ratelimited(dd, "DCC Error: PortRcv error: %s\n"
8039 " hdr0 0x%llx, hdr1 0x%llx\n",
8040 extra, hdr0, hdr1);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008041
8042 reg &= ~DCC_ERR_FLG_RCVPORT_ERR_SMASK;
8043 }
8044
8045 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK) {
8046 /* informative only */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008047 dd_dev_info_ratelimited(dd, "8051 access to LCB blocked\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008048 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_UC_SMASK;
8049 }
8050 if (reg & DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK) {
8051 /* informative only */
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008052 dd_dev_info_ratelimited(dd, "host access to LCB blocked\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04008053 reg &= ~DCC_ERR_FLG_EN_CSR_ACCESS_BLOCKED_HOST_SMASK;
8054 }
8055
Don Hiatt243d9f42017-03-20 17:26:20 -07008056 if (unlikely(hfi1_dbg_fault_suppress_err(&dd->verbs_dev)))
8057 reg &= ~DCC_ERR_FLG_LATE_EBP_ERR_SMASK;
8058
Mike Marciniszyn77241052015-07-30 15:17:43 -04008059 /* report any remaining errors */
8060 if (reg)
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008061 dd_dev_info_ratelimited(dd, "DCC Error: %s\n",
8062 dcc_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008063
8064 if (lcl_reason == 0)
8065 lcl_reason = OPA_LINKDOWN_REASON_UNKNOWN;
8066
8067 if (do_bounce) {
Jakub Byczkowskic27aad02017-02-08 05:27:55 -08008068 dd_dev_info_ratelimited(dd, "%s: PortErrorAction bounce\n",
8069 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008070 set_link_down_reason(ppd, lcl_reason, 0, lcl_reason);
Sebastian Sanchez71d47002017-07-29 08:43:49 -07008071 queue_work(ppd->link_wq, &ppd->link_bounce_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008072 }
8073}
8074
8075static void handle_lcb_err(struct hfi1_devdata *dd, u32 unused, u64 reg)
8076{
8077 char buf[96];
8078
8079 dd_dev_info(dd, "LCB Error: %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008080 lcb_err_string(buf, sizeof(buf), reg));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008081}
8082
8083/*
8084 * CCE block DC interrupt. Source is < 8.
8085 */
8086static void is_dc_int(struct hfi1_devdata *dd, unsigned int source)
8087{
8088 const struct err_reg_info *eri = &dc_errs[source];
8089
8090 if (eri->handler) {
8091 interrupt_clear_down(dd, 0, eri);
8092 } else if (source == 3 /* dc_lbm_int */) {
8093 /*
8094 * This indicates that a parity error has occurred on the
8095 * address/control lines presented to the LBM. The error
8096 * is a single pulse, there is no associated error flag,
8097 * and it is non-maskable. This is because if a parity
8098 * error occurs on the request the request is dropped.
8099 * This should never occur, but it is nice to know if it
8100 * ever does.
8101 */
8102 dd_dev_err(dd, "Parity error in DC LBM block\n");
8103 } else {
8104 dd_dev_err(dd, "Invalid DC interrupt %u\n", source);
8105 }
8106}
8107
8108/*
8109 * TX block send credit interrupt. Source is < 160.
8110 */
8111static void is_send_credit_int(struct hfi1_devdata *dd, unsigned int source)
8112{
8113 sc_group_release_update(dd, source);
8114}
8115
8116/*
8117 * TX block SDMA interrupt. Source is < 48.
8118 *
8119 * SDMA interrupts are grouped by type:
8120 *
8121 * 0 - N-1 = SDma
8122 * N - 2N-1 = SDmaProgress
8123 * 2N - 3N-1 = SDmaIdle
8124 */
8125static void is_sdma_eng_int(struct hfi1_devdata *dd, unsigned int source)
8126{
8127 /* what interrupt */
8128 unsigned int what = source / TXE_NUM_SDMA_ENGINES;
8129 /* which engine */
8130 unsigned int which = source % TXE_NUM_SDMA_ENGINES;
8131
8132#ifdef CONFIG_SDMA_VERBOSITY
8133 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", which,
8134 slashstrip(__FILE__), __LINE__, __func__);
8135 sdma_dumpstate(&dd->per_sdma[which]);
8136#endif
8137
8138 if (likely(what < 3 && which < dd->num_sdma)) {
8139 sdma_engine_interrupt(&dd->per_sdma[which], 1ull << source);
8140 } else {
8141 /* should not happen */
8142 dd_dev_err(dd, "Invalid SDMA interrupt 0x%x\n", source);
8143 }
8144}
8145
8146/*
8147 * RX block receive available interrupt. Source is < 160.
8148 */
8149static void is_rcv_avail_int(struct hfi1_devdata *dd, unsigned int source)
8150{
8151 struct hfi1_ctxtdata *rcd;
8152 char *err_detail;
8153
8154 if (likely(source < dd->num_rcv_contexts)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008155 rcd = hfi1_rcd_get_by_index(dd, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008156 if (rcd) {
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -07008157 /* Check for non-user contexts, including vnic */
Niranjana Vishwanathapuracc9a97e2017-11-06 06:38:52 -08008158 if (source < dd->first_dyn_alloc_ctxt || rcd->is_vnic)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008159 rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008160 else
8161 handle_user_interrupt(rcd);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008162
8163 hfi1_rcd_put(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008164 return; /* OK */
8165 }
8166 /* received an interrupt, but no rcd */
8167 err_detail = "dataless";
8168 } else {
8169 /* received an interrupt, but are not using that context */
8170 err_detail = "out of range";
8171 }
8172 dd_dev_err(dd, "unexpected %s receive available context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008173 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008174}
8175
8176/*
8177 * RX block receive urgent interrupt. Source is < 160.
8178 */
8179static void is_rcv_urgent_int(struct hfi1_devdata *dd, unsigned int source)
8180{
8181 struct hfi1_ctxtdata *rcd;
8182 char *err_detail;
8183
8184 if (likely(source < dd->num_rcv_contexts)) {
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008185 rcd = hfi1_rcd_get_by_index(dd, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008186 if (rcd) {
8187 /* only pay attention to user urgent interrupts */
Niranjana Vishwanathapuracc9a97e2017-11-06 06:38:52 -08008188 if (source >= dd->first_dyn_alloc_ctxt &&
8189 !rcd->is_vnic)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008190 handle_user_interrupt(rcd);
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008191
8192 hfi1_rcd_put(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008193 return; /* OK */
8194 }
8195 /* received an interrupt, but no rcd */
8196 err_detail = "dataless";
8197 } else {
8198 /* received an interrupt, but are not using that context */
8199 err_detail = "out of range";
8200 }
8201 dd_dev_err(dd, "unexpected %s receive urgent context interrupt %u\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008202 err_detail, source);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008203}
8204
8205/*
8206 * Reserved range interrupt. Should not be called in normal operation.
8207 */
8208static void is_reserved_int(struct hfi1_devdata *dd, unsigned int source)
8209{
8210 char name[64];
8211
8212 dd_dev_err(dd, "unexpected %s interrupt\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008213 is_reserved_name(name, sizeof(name), source));
Mike Marciniszyn77241052015-07-30 15:17:43 -04008214}
8215
8216static const struct is_table is_table[] = {
Jubin John4d114fd2016-02-14 20:21:43 -08008217/*
8218 * start end
8219 * name func interrupt func
8220 */
Mike Marciniszyn77241052015-07-30 15:17:43 -04008221{ IS_GENERAL_ERR_START, IS_GENERAL_ERR_END,
8222 is_misc_err_name, is_misc_err_int },
8223{ IS_SDMAENG_ERR_START, IS_SDMAENG_ERR_END,
8224 is_sdma_eng_err_name, is_sdma_eng_err_int },
8225{ IS_SENDCTXT_ERR_START, IS_SENDCTXT_ERR_END,
8226 is_sendctxt_err_name, is_sendctxt_err_int },
8227{ IS_SDMA_START, IS_SDMA_END,
8228 is_sdma_eng_name, is_sdma_eng_int },
8229{ IS_VARIOUS_START, IS_VARIOUS_END,
8230 is_various_name, is_various_int },
8231{ IS_DC_START, IS_DC_END,
8232 is_dc_name, is_dc_int },
8233{ IS_RCVAVAIL_START, IS_RCVAVAIL_END,
8234 is_rcv_avail_name, is_rcv_avail_int },
8235{ IS_RCVURGENT_START, IS_RCVURGENT_END,
8236 is_rcv_urgent_name, is_rcv_urgent_int },
8237{ IS_SENDCREDIT_START, IS_SENDCREDIT_END,
8238 is_send_credit_name, is_send_credit_int},
8239{ IS_RESERVED_START, IS_RESERVED_END,
8240 is_reserved_name, is_reserved_int},
8241};
8242
8243/*
8244 * Interrupt source interrupt - called when the given source has an interrupt.
8245 * Source is a bit index into an array of 64-bit integers.
8246 */
8247static void is_interrupt(struct hfi1_devdata *dd, unsigned int source)
8248{
8249 const struct is_table *entry;
8250
8251 /* avoids a double compare by walking the table in-order */
8252 for (entry = &is_table[0]; entry->is_name; entry++) {
8253 if (source < entry->end) {
8254 trace_hfi1_interrupt(dd, entry, source);
8255 entry->is_int(dd, source - entry->start);
8256 return;
8257 }
8258 }
8259 /* fell off the end */
8260 dd_dev_err(dd, "invalid interrupt source %u\n", source);
8261}
8262
Michael J. Ruhl70324732018-06-20 09:43:23 -07008263/**
8264 * gerneral_interrupt() - General interrupt handler
8265 * @irq: MSIx IRQ vector
8266 * @data: hfi1 devdata
8267 *
8268 * This is able to correctly handle all non-threaded interrupts. Receive
8269 * context DATA IRQs are threaded and are not supported by this handler.
8270 *
Mike Marciniszyn77241052015-07-30 15:17:43 -04008271 */
8272static irqreturn_t general_interrupt(int irq, void *data)
8273{
8274 struct hfi1_devdata *dd = data;
8275 u64 regs[CCE_NUM_INT_CSRS];
8276 u32 bit;
8277 int i;
Kamenee Arumugam09592af2017-09-26 06:06:15 -07008278 irqreturn_t handled = IRQ_NONE;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008279
8280 this_cpu_inc(*dd->int_counter);
8281
8282 /* phase 1: scan and clear all handled interrupts */
8283 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
8284 if (dd->gi_mask[i] == 0) {
8285 regs[i] = 0; /* used later */
8286 continue;
8287 }
8288 regs[i] = read_csr(dd, CCE_INT_STATUS + (8 * i)) &
8289 dd->gi_mask[i];
8290 /* only clear if anything is set */
8291 if (regs[i])
8292 write_csr(dd, CCE_INT_CLEAR + (8 * i), regs[i]);
8293 }
8294
8295 /* phase 2: call the appropriate handler */
8296 for_each_set_bit(bit, (unsigned long *)&regs[0],
Jubin John17fb4f22016-02-14 20:21:52 -08008297 CCE_NUM_INT_CSRS * 64) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04008298 is_interrupt(dd, bit);
Kamenee Arumugam09592af2017-09-26 06:06:15 -07008299 handled = IRQ_HANDLED;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008300 }
8301
Kamenee Arumugam09592af2017-09-26 06:06:15 -07008302 return handled;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008303}
8304
8305static irqreturn_t sdma_interrupt(int irq, void *data)
8306{
8307 struct sdma_engine *sde = data;
8308 struct hfi1_devdata *dd = sde->dd;
8309 u64 status;
8310
8311#ifdef CONFIG_SDMA_VERBOSITY
8312 dd_dev_err(dd, "CONFIG SDMA(%u) %s:%d %s()\n", sde->this_idx,
8313 slashstrip(__FILE__), __LINE__, __func__);
8314 sdma_dumpstate(sde);
8315#endif
8316
8317 this_cpu_inc(*dd->int_counter);
8318
8319 /* This read_csr is really bad in the hot path */
8320 status = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008321 CCE_INT_STATUS + (8 * (IS_SDMA_START / 64)))
8322 & sde->imask;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008323 if (likely(status)) {
8324 /* clear the interrupt(s) */
8325 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008326 CCE_INT_CLEAR + (8 * (IS_SDMA_START / 64)),
8327 status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008328
8329 /* handle the interrupt(s) */
8330 sdma_engine_interrupt(sde, status);
Dennis Dalessandroee495ad2017-04-09 10:17:18 -07008331 } else {
Michael J. Ruhl82a97922018-02-01 10:43:42 -08008332 dd_dev_info_ratelimited(dd, "SDMA engine %u interrupt, but no status bits set\n",
8333 sde->this_idx);
Dennis Dalessandroee495ad2017-04-09 10:17:18 -07008334 }
Mike Marciniszyn77241052015-07-30 15:17:43 -04008335 return IRQ_HANDLED;
8336}
8337
8338/*
Dean Luickecd42f82016-02-03 14:35:14 -08008339 * Clear the receive interrupt. Use a read of the interrupt clear CSR
8340 * to insure that the write completed. This does NOT guarantee that
8341 * queued DMA writes to memory from the chip are pushed.
Dean Luickf4f30031c2015-10-26 10:28:44 -04008342 */
8343static inline void clear_recv_intr(struct hfi1_ctxtdata *rcd)
8344{
8345 struct hfi1_devdata *dd = rcd->dd;
8346 u32 addr = CCE_INT_CLEAR + (8 * rcd->ireg);
8347
8348 mmiowb(); /* make sure everything before is written */
8349 write_csr(dd, addr, rcd->imask);
8350 /* force the above write on the chip and get a value back */
8351 (void)read_csr(dd, addr);
8352}
8353
8354/* force the receive interrupt */
Jim Snowfb9036d2016-01-11 18:32:21 -05008355void force_recv_intr(struct hfi1_ctxtdata *rcd)
Dean Luickf4f30031c2015-10-26 10:28:44 -04008356{
8357 write_csr(rcd->dd, CCE_INT_FORCE + (8 * rcd->ireg), rcd->imask);
8358}
8359
Dean Luickecd42f82016-02-03 14:35:14 -08008360/*
8361 * Return non-zero if a packet is present.
8362 *
8363 * This routine is called when rechecking for packets after the RcvAvail
8364 * interrupt has been cleared down. First, do a quick check of memory for
8365 * a packet present. If not found, use an expensive CSR read of the context
8366 * tail to determine the actual tail. The CSR read is necessary because there
8367 * is no method to push pending DMAs to memory other than an interrupt and we
8368 * are trying to determine if we need to force an interrupt.
8369 */
Dean Luickf4f30031c2015-10-26 10:28:44 -04008370static inline int check_packet_present(struct hfi1_ctxtdata *rcd)
8371{
Dean Luickecd42f82016-02-03 14:35:14 -08008372 u32 tail;
8373 int present;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008374
Mike Marciniszyn1bc02992018-05-31 11:30:09 -07008375 if (!rcd->rcvhdrtail_kvaddr)
Dean Luickecd42f82016-02-03 14:35:14 -08008376 present = (rcd->seq_cnt ==
8377 rhf_rcv_seq(rhf_to_cpu(get_rhf_addr(rcd))));
8378 else /* is RDMA rtail */
8379 present = (rcd->head != get_rcvhdrtail(rcd));
8380
8381 if (present)
8382 return 1;
8383
8384 /* fall back to a CSR read, correct indpendent of DMA_RTAIL */
8385 tail = (u32)read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
8386 return rcd->head != tail;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008387}
8388
8389/*
8390 * Receive packet IRQ handler. This routine expects to be on its own IRQ.
8391 * This routine will try to handle packets immediately (latency), but if
8392 * it finds too many, it will invoke the thread handler (bandwitdh). The
Jubin John16733b82016-02-14 20:20:58 -08008393 * chip receive interrupt is *not* cleared down until this or the thread (if
Dean Luickf4f30031c2015-10-26 10:28:44 -04008394 * invoked) is finished. The intent is to avoid extra interrupts while we
8395 * are processing packets anyway.
Mike Marciniszyn77241052015-07-30 15:17:43 -04008396 */
8397static irqreturn_t receive_context_interrupt(int irq, void *data)
8398{
8399 struct hfi1_ctxtdata *rcd = data;
8400 struct hfi1_devdata *dd = rcd->dd;
Dean Luickf4f30031c2015-10-26 10:28:44 -04008401 int disposition;
8402 int present;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008403
Michael J. Ruhld295dbe2017-08-04 13:52:44 -07008404 trace_hfi1_receive_interrupt(dd, rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008405 this_cpu_inc(*dd->int_counter);
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -08008406 aspm_ctx_disable(rcd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008407
Dean Luickf4f30031c2015-10-26 10:28:44 -04008408 /* receive interrupt remains blocked while processing packets */
8409 disposition = rcd->do_interrupt(rcd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008410
Dean Luickf4f30031c2015-10-26 10:28:44 -04008411 /*
8412 * Too many packets were seen while processing packets in this
8413 * IRQ handler. Invoke the handler thread. The receive interrupt
8414 * remains blocked.
8415 */
8416 if (disposition == RCV_PKT_LIMIT)
8417 return IRQ_WAKE_THREAD;
8418
8419 /*
8420 * The packet processor detected no more packets. Clear the receive
8421 * interrupt and recheck for a packet packet that may have arrived
8422 * after the previous check and interrupt clear. If a packet arrived,
8423 * force another interrupt.
8424 */
8425 clear_recv_intr(rcd);
8426 present = check_packet_present(rcd);
8427 if (present)
8428 force_recv_intr(rcd);
8429
8430 return IRQ_HANDLED;
8431}
8432
8433/*
8434 * Receive packet thread handler. This expects to be invoked with the
8435 * receive interrupt still blocked.
8436 */
8437static irqreturn_t receive_context_thread(int irq, void *data)
8438{
8439 struct hfi1_ctxtdata *rcd = data;
8440 int present;
8441
8442 /* receive interrupt is still blocked from the IRQ handler */
8443 (void)rcd->do_interrupt(rcd, 1);
8444
8445 /*
8446 * The packet processor will only return if it detected no more
8447 * packets. Hold IRQs here so we can safely clear the interrupt and
8448 * recheck for a packet that may have arrived after the previous
8449 * check and the interrupt clear. If a packet arrived, force another
8450 * interrupt.
8451 */
8452 local_irq_disable();
8453 clear_recv_intr(rcd);
8454 present = check_packet_present(rcd);
8455 if (present)
8456 force_recv_intr(rcd);
8457 local_irq_enable();
Mike Marciniszyn77241052015-07-30 15:17:43 -04008458
8459 return IRQ_HANDLED;
8460}
8461
8462/* ========================================================================= */
8463
8464u32 read_physical_state(struct hfi1_devdata *dd)
8465{
8466 u64 reg;
8467
8468 reg = read_csr(dd, DC_DC8051_STS_CUR_STATE);
8469 return (reg >> DC_DC8051_STS_CUR_STATE_PORT_SHIFT)
8470 & DC_DC8051_STS_CUR_STATE_PORT_MASK;
8471}
8472
Jim Snowfb9036d2016-01-11 18:32:21 -05008473u32 read_logical_state(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008474{
8475 u64 reg;
8476
8477 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8478 return (reg >> DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT)
8479 & DCC_CFG_PORT_CONFIG_LINK_STATE_MASK;
8480}
8481
8482static void set_logical_state(struct hfi1_devdata *dd, u32 chip_lstate)
8483{
8484 u64 reg;
8485
8486 reg = read_csr(dd, DCC_CFG_PORT_CONFIG);
8487 /* clear current state, set new state */
8488 reg &= ~DCC_CFG_PORT_CONFIG_LINK_STATE_SMASK;
8489 reg |= (u64)chip_lstate << DCC_CFG_PORT_CONFIG_LINK_STATE_SHIFT;
8490 write_csr(dd, DCC_CFG_PORT_CONFIG, reg);
8491}
8492
8493/*
8494 * Use the 8051 to read a LCB CSR.
8495 */
8496static int read_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 *data)
8497{
8498 u32 regno;
8499 int ret;
8500
8501 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
8502 if (acquire_lcb_access(dd, 0) == 0) {
8503 *data = read_csr(dd, addr);
8504 release_lcb_access(dd, 0);
8505 return 0;
8506 }
8507 return -EBUSY;
8508 }
8509
8510 /* register is an index of LCB registers: (offset - base) / 8 */
8511 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8512 ret = do_8051_command(dd, HCMD_READ_LCB_CSR, regno, data);
8513 if (ret != HCMD_SUCCESS)
8514 return -EBUSY;
8515 return 0;
8516}
8517
8518/*
Michael J. Ruhl86884262017-03-20 17:24:51 -07008519 * Provide a cache for some of the LCB registers in case the LCB is
8520 * unavailable.
8521 * (The LCB is unavailable in certain link states, for example.)
8522 */
8523struct lcb_datum {
8524 u32 off;
8525 u64 val;
8526};
8527
8528static struct lcb_datum lcb_cache[] = {
8529 { DC_LCB_ERR_INFO_RX_REPLAY_CNT, 0},
8530 { DC_LCB_ERR_INFO_SEQ_CRC_CNT, 0 },
8531 { DC_LCB_ERR_INFO_REINIT_FROM_PEER_CNT, 0 },
8532};
8533
8534static void update_lcb_cache(struct hfi1_devdata *dd)
8535{
8536 int i;
8537 int ret;
8538 u64 val;
8539
8540 for (i = 0; i < ARRAY_SIZE(lcb_cache); i++) {
8541 ret = read_lcb_csr(dd, lcb_cache[i].off, &val);
8542
8543 /* Update if we get good data */
8544 if (likely(ret != -EBUSY))
8545 lcb_cache[i].val = val;
8546 }
8547}
8548
8549static int read_lcb_cache(u32 off, u64 *val)
8550{
8551 int i;
8552
8553 for (i = 0; i < ARRAY_SIZE(lcb_cache); i++) {
8554 if (lcb_cache[i].off == off) {
8555 *val = lcb_cache[i].val;
8556 return 0;
8557 }
8558 }
8559
8560 pr_warn("%s bad offset 0x%x\n", __func__, off);
8561 return -1;
8562}
8563
8564/*
Mike Marciniszyn77241052015-07-30 15:17:43 -04008565 * Read an LCB CSR. Access may not be in host control, so check.
8566 * Return 0 on success, -EBUSY on failure.
8567 */
8568int read_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 *data)
8569{
8570 struct hfi1_pportdata *ppd = dd->pport;
8571
8572 /* if up, go through the 8051 for the value */
8573 if (ppd->host_link_state & HLS_UP)
8574 return read_lcb_via_8051(dd, addr, data);
Michael J. Ruhl86884262017-03-20 17:24:51 -07008575 /* if going up or down, check the cache, otherwise, no access */
8576 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE)) {
8577 if (read_lcb_cache(addr, data))
8578 return -EBUSY;
8579 return 0;
8580 }
8581
Mike Marciniszyn77241052015-07-30 15:17:43 -04008582 /* otherwise, host has access */
8583 *data = read_csr(dd, addr);
8584 return 0;
8585}
8586
8587/*
8588 * Use the 8051 to write a LCB CSR.
8589 */
8590static int write_lcb_via_8051(struct hfi1_devdata *dd, u32 addr, u64 data)
8591{
Dean Luick3bf40d62015-11-06 20:07:04 -05008592 u32 regno;
8593 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008594
Dean Luick3bf40d62015-11-06 20:07:04 -05008595 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR ||
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07008596 (dd->dc8051_ver < dc8051_ver(0, 20, 0))) {
Dean Luick3bf40d62015-11-06 20:07:04 -05008597 if (acquire_lcb_access(dd, 0) == 0) {
8598 write_csr(dd, addr, data);
8599 release_lcb_access(dd, 0);
8600 return 0;
8601 }
8602 return -EBUSY;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008603 }
Dean Luick3bf40d62015-11-06 20:07:04 -05008604
8605 /* register is an index of LCB registers: (offset - base) / 8 */
8606 regno = (addr - DC_LCB_CFG_RUN) >> 3;
8607 ret = do_8051_command(dd, HCMD_WRITE_LCB_CSR, regno, &data);
8608 if (ret != HCMD_SUCCESS)
8609 return -EBUSY;
8610 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008611}
8612
8613/*
8614 * Write an LCB CSR. Access may not be in host control, so check.
8615 * Return 0 on success, -EBUSY on failure.
8616 */
8617int write_lcb_csr(struct hfi1_devdata *dd, u32 addr, u64 data)
8618{
8619 struct hfi1_pportdata *ppd = dd->pport;
8620
8621 /* if up, go through the 8051 for the value */
8622 if (ppd->host_link_state & HLS_UP)
8623 return write_lcb_via_8051(dd, addr, data);
8624 /* if going up or down, no access */
8625 if (ppd->host_link_state & (HLS_GOING_UP | HLS_GOING_OFFLINE))
8626 return -EBUSY;
8627 /* otherwise, host has access */
8628 write_csr(dd, addr, data);
8629 return 0;
8630}
8631
8632/*
8633 * Returns:
8634 * < 0 = Linux error, not able to get access
8635 * > 0 = 8051 command RETURN_CODE
8636 */
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008637static int do_8051_command(struct hfi1_devdata *dd, u32 type, u64 in_data,
8638 u64 *out_data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008639{
8640 u64 reg, completed;
8641 int return_code;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008642 unsigned long timeout;
8643
8644 hfi1_cdbg(DC8051, "type %d, data 0x%012llx", type, in_data);
8645
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008646 mutex_lock(&dd->dc8051_lock);
8647
8648 /* We can't send any commands to the 8051 if it's in reset */
8649 if (dd->dc_shutdown) {
8650 return_code = -ENODEV;
8651 goto fail;
8652 }
8653
Mike Marciniszyn77241052015-07-30 15:17:43 -04008654 /*
8655 * If an 8051 host command timed out previously, then the 8051 is
8656 * stuck.
8657 *
8658 * On first timeout, attempt to reset and restart the entire DC
8659 * block (including 8051). (Is this too big of a hammer?)
8660 *
8661 * If the 8051 times out a second time, the reset did not bring it
8662 * back to healthy life. In that case, fail any subsequent commands.
8663 */
8664 if (dd->dc8051_timed_out) {
8665 if (dd->dc8051_timed_out > 1) {
8666 dd_dev_err(dd,
8667 "Previous 8051 host command timed out, skipping command %u\n",
8668 type);
8669 return_code = -ENXIO;
8670 goto fail;
8671 }
Tadeusz Struk22546b72017-04-28 10:40:02 -07008672 _dc_shutdown(dd);
8673 _dc_start(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008674 }
8675
8676 /*
8677 * If there is no timeout, then the 8051 command interface is
8678 * waiting for a command.
8679 */
8680
8681 /*
Dean Luick3bf40d62015-11-06 20:07:04 -05008682 * When writing a LCB CSR, out_data contains the full value to
8683 * to be written, while in_data contains the relative LCB
8684 * address in 7:0. Do the work here, rather than the caller,
8685 * of distrubting the write data to where it needs to go:
8686 *
8687 * Write data
8688 * 39:00 -> in_data[47:8]
8689 * 47:40 -> DC8051_CFG_EXT_DEV_0.RETURN_CODE
8690 * 63:48 -> DC8051_CFG_EXT_DEV_0.RSP_DATA
8691 */
8692 if (type == HCMD_WRITE_LCB_CSR) {
8693 in_data |= ((*out_data) & 0xffffffffffull) << 8;
Dean Luick00801672016-12-07 19:33:40 -08008694 /* must preserve COMPLETED - it is tied to hardware */
8695 reg = read_csr(dd, DC_DC8051_CFG_EXT_DEV_0);
8696 reg &= DC_DC8051_CFG_EXT_DEV_0_COMPLETED_SMASK;
8697 reg |= ((((*out_data) >> 40) & 0xff) <<
Dean Luick3bf40d62015-11-06 20:07:04 -05008698 DC_DC8051_CFG_EXT_DEV_0_RETURN_CODE_SHIFT)
8699 | ((((*out_data) >> 48) & 0xffff) <<
8700 DC_DC8051_CFG_EXT_DEV_0_RSP_DATA_SHIFT);
8701 write_csr(dd, DC_DC8051_CFG_EXT_DEV_0, reg);
8702 }
8703
8704 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -04008705 * Do two writes: the first to stabilize the type and req_data, the
8706 * second to activate.
8707 */
8708 reg = ((u64)type & DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_MASK)
8709 << DC_DC8051_CFG_HOST_CMD_0_REQ_TYPE_SHIFT
8710 | (in_data & DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_MASK)
8711 << DC_DC8051_CFG_HOST_CMD_0_REQ_DATA_SHIFT;
8712 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8713 reg |= DC_DC8051_CFG_HOST_CMD_0_REQ_NEW_SMASK;
8714 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, reg);
8715
8716 /* wait for completion, alternate: interrupt */
8717 timeout = jiffies + msecs_to_jiffies(DC8051_COMMAND_TIMEOUT);
8718 while (1) {
8719 reg = read_csr(dd, DC_DC8051_CFG_HOST_CMD_1);
8720 completed = reg & DC_DC8051_CFG_HOST_CMD_1_COMPLETED_SMASK;
8721 if (completed)
8722 break;
8723 if (time_after(jiffies, timeout)) {
8724 dd->dc8051_timed_out++;
8725 dd_dev_err(dd, "8051 host command %u timeout\n", type);
8726 if (out_data)
8727 *out_data = 0;
8728 return_code = -ETIMEDOUT;
8729 goto fail;
8730 }
8731 udelay(2);
8732 }
8733
8734 if (out_data) {
8735 *out_data = (reg >> DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_SHIFT)
8736 & DC_DC8051_CFG_HOST_CMD_1_RSP_DATA_MASK;
8737 if (type == HCMD_READ_LCB_CSR) {
8738 /* top 16 bits are in a different register */
8739 *out_data |= (read_csr(dd, DC_DC8051_CFG_EXT_DEV_1)
8740 & DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SMASK)
8741 << (48
8742 - DC_DC8051_CFG_EXT_DEV_1_REQ_DATA_SHIFT);
8743 }
8744 }
8745 return_code = (reg >> DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_SHIFT)
8746 & DC_DC8051_CFG_HOST_CMD_1_RETURN_CODE_MASK;
8747 dd->dc8051_timed_out = 0;
8748 /*
8749 * Clear command for next user.
8750 */
8751 write_csr(dd, DC_DC8051_CFG_HOST_CMD_0, 0);
8752
8753fail:
Tadeusz Struk22546b72017-04-28 10:40:02 -07008754 mutex_unlock(&dd->dc8051_lock);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008755 return return_code;
8756}
8757
8758static int set_physical_link_state(struct hfi1_devdata *dd, u64 state)
8759{
8760 return do_8051_command(dd, HCMD_CHANGE_PHY_STATE, state, NULL);
8761}
8762
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008763int load_8051_config(struct hfi1_devdata *dd, u8 field_id,
8764 u8 lane_id, u32 config_data)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008765{
8766 u64 data;
8767 int ret;
8768
8769 data = (u64)field_id << LOAD_DATA_FIELD_ID_SHIFT
8770 | (u64)lane_id << LOAD_DATA_LANE_ID_SHIFT
8771 | (u64)config_data << LOAD_DATA_DATA_SHIFT;
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008772 ret = do_8051_command(dd, HCMD_LOAD_CONFIG_DATA, data, NULL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008773 if (ret != HCMD_SUCCESS) {
8774 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08008775 "load 8051 config: field id %d, lane %d, err %d\n",
8776 (int)field_id, (int)lane_id, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008777 }
8778 return ret;
8779}
8780
8781/*
8782 * Read the 8051 firmware "registers". Use the RAM directly. Always
8783 * set the result, even on error.
8784 * Return 0 on success, -errno on failure
8785 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08008786int read_8051_config(struct hfi1_devdata *dd, u8 field_id, u8 lane_id,
8787 u32 *result)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008788{
8789 u64 big_data;
8790 u32 addr;
8791 int ret;
8792
8793 /* address start depends on the lane_id */
8794 if (lane_id < 4)
8795 addr = (4 * NUM_GENERAL_FIELDS)
8796 + (lane_id * 4 * NUM_LANE_FIELDS);
8797 else
8798 addr = 0;
8799 addr += field_id * 4;
8800
8801 /* read is in 8-byte chunks, hardware will truncate the address down */
8802 ret = read_8051_data(dd, addr, 8, &big_data);
8803
8804 if (ret == 0) {
8805 /* extract the 4 bytes we want */
8806 if (addr & 0x4)
8807 *result = (u32)(big_data >> 32);
8808 else
8809 *result = (u32)big_data;
8810 } else {
8811 *result = 0;
8812 dd_dev_err(dd, "%s: direct read failed, lane %d, field %d!\n",
Jubin John17fb4f22016-02-14 20:21:52 -08008813 __func__, lane_id, field_id);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008814 }
8815
8816 return ret;
8817}
8818
8819static int write_vc_local_phy(struct hfi1_devdata *dd, u8 power_management,
8820 u8 continuous)
8821{
8822 u32 frame;
8823
8824 frame = continuous << CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT
8825 | power_management << POWER_MANAGEMENT_SHIFT;
8826 return load_8051_config(dd, VERIFY_CAP_LOCAL_PHY,
8827 GENERAL_CONFIG, frame);
8828}
8829
8830static int write_vc_local_fabric(struct hfi1_devdata *dd, u8 vau, u8 z, u8 vcu,
8831 u16 vl15buf, u8 crc_sizes)
8832{
8833 u32 frame;
8834
8835 frame = (u32)vau << VAU_SHIFT
8836 | (u32)z << Z_SHIFT
8837 | (u32)vcu << VCU_SHIFT
8838 | (u32)vl15buf << VL15BUF_SHIFT
8839 | (u32)crc_sizes << CRC_SIZES_SHIFT;
8840 return load_8051_config(dd, VERIFY_CAP_LOCAL_FABRIC,
8841 GENERAL_CONFIG, frame);
8842}
8843
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008844static void read_vc_local_link_mode(struct hfi1_devdata *dd, u8 *misc_bits,
8845 u8 *flag_bits, u16 *link_widths)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008846{
8847 u32 frame;
8848
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008849 read_8051_config(dd, VERIFY_CAP_LOCAL_LINK_MODE, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008850 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008851 *misc_bits = (frame >> MISC_CONFIG_BITS_SHIFT) & MISC_CONFIG_BITS_MASK;
8852 *flag_bits = (frame >> LOCAL_FLAG_BITS_SHIFT) & LOCAL_FLAG_BITS_MASK;
8853 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8854}
8855
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008856static int write_vc_local_link_mode(struct hfi1_devdata *dd,
8857 u8 misc_bits,
8858 u8 flag_bits,
8859 u16 link_widths)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008860{
8861 u32 frame;
8862
8863 frame = (u32)misc_bits << MISC_CONFIG_BITS_SHIFT
8864 | (u32)flag_bits << LOCAL_FLAG_BITS_SHIFT
8865 | (u32)link_widths << LINK_WIDTH_SHIFT;
Sebastian Sanchez254361c2018-05-02 06:42:21 -07008866 return load_8051_config(dd, VERIFY_CAP_LOCAL_LINK_MODE, GENERAL_CONFIG,
Mike Marciniszyn77241052015-07-30 15:17:43 -04008867 frame);
8868}
8869
8870static int write_local_device_id(struct hfi1_devdata *dd, u16 device_id,
8871 u8 device_rev)
8872{
8873 u32 frame;
8874
8875 frame = ((u32)device_id << LOCAL_DEVICE_ID_SHIFT)
8876 | ((u32)device_rev << LOCAL_DEVICE_REV_SHIFT);
8877 return load_8051_config(dd, LOCAL_DEVICE_ID, GENERAL_CONFIG, frame);
8878}
8879
8880static void read_remote_device_id(struct hfi1_devdata *dd, u16 *device_id,
8881 u8 *device_rev)
8882{
8883 u32 frame;
8884
8885 read_8051_config(dd, REMOTE_DEVICE_ID, GENERAL_CONFIG, &frame);
8886 *device_id = (frame >> REMOTE_DEVICE_ID_SHIFT) & REMOTE_DEVICE_ID_MASK;
8887 *device_rev = (frame >> REMOTE_DEVICE_REV_SHIFT)
8888 & REMOTE_DEVICE_REV_MASK;
8889}
8890
Sebastian Sanchez913cc672017-07-29 08:44:01 -07008891int write_host_interface_version(struct hfi1_devdata *dd, u8 version)
8892{
8893 u32 frame;
8894 u32 mask;
8895
8896 mask = (HOST_INTERFACE_VERSION_MASK << HOST_INTERFACE_VERSION_SHIFT);
8897 read_8051_config(dd, RESERVED_REGISTERS, GENERAL_CONFIG, &frame);
8898 /* Clear, then set field */
8899 frame &= ~mask;
8900 frame |= ((u32)version << HOST_INTERFACE_VERSION_SHIFT);
Sebastian Sanchez9996b042017-12-18 19:56:59 -08008901 return load_8051_config(dd, RESERVED_REGISTERS, GENERAL_CONFIG,
8902 frame);
Sebastian Sanchez913cc672017-07-29 08:44:01 -07008903}
8904
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07008905void read_misc_status(struct hfi1_devdata *dd, u8 *ver_major, u8 *ver_minor,
8906 u8 *ver_patch)
Mike Marciniszyn77241052015-07-30 15:17:43 -04008907{
8908 u32 frame;
8909
8910 read_8051_config(dd, MISC_STATUS, GENERAL_CONFIG, &frame);
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07008911 *ver_major = (frame >> STS_FM_VERSION_MAJOR_SHIFT) &
8912 STS_FM_VERSION_MAJOR_MASK;
8913 *ver_minor = (frame >> STS_FM_VERSION_MINOR_SHIFT) &
8914 STS_FM_VERSION_MINOR_MASK;
8915
8916 read_8051_config(dd, VERSION_PATCH, GENERAL_CONFIG, &frame);
8917 *ver_patch = (frame >> STS_FM_VERSION_PATCH_SHIFT) &
8918 STS_FM_VERSION_PATCH_MASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -04008919}
8920
8921static void read_vc_remote_phy(struct hfi1_devdata *dd, u8 *power_management,
8922 u8 *continuous)
8923{
8924 u32 frame;
8925
8926 read_8051_config(dd, VERIFY_CAP_REMOTE_PHY, GENERAL_CONFIG, &frame);
8927 *power_management = (frame >> POWER_MANAGEMENT_SHIFT)
8928 & POWER_MANAGEMENT_MASK;
8929 *continuous = (frame >> CONTINIOUS_REMOTE_UPDATE_SUPPORT_SHIFT)
8930 & CONTINIOUS_REMOTE_UPDATE_SUPPORT_MASK;
8931}
8932
8933static void read_vc_remote_fabric(struct hfi1_devdata *dd, u8 *vau, u8 *z,
8934 u8 *vcu, u16 *vl15buf, u8 *crc_sizes)
8935{
8936 u32 frame;
8937
8938 read_8051_config(dd, VERIFY_CAP_REMOTE_FABRIC, GENERAL_CONFIG, &frame);
8939 *vau = (frame >> VAU_SHIFT) & VAU_MASK;
8940 *z = (frame >> Z_SHIFT) & Z_MASK;
8941 *vcu = (frame >> VCU_SHIFT) & VCU_MASK;
8942 *vl15buf = (frame >> VL15BUF_SHIFT) & VL15BUF_MASK;
8943 *crc_sizes = (frame >> CRC_SIZES_SHIFT) & CRC_SIZES_MASK;
8944}
8945
8946static void read_vc_remote_link_width(struct hfi1_devdata *dd,
8947 u8 *remote_tx_rate,
8948 u16 *link_widths)
8949{
8950 u32 frame;
8951
8952 read_8051_config(dd, VERIFY_CAP_REMOTE_LINK_WIDTH, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008953 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008954 *remote_tx_rate = (frame >> REMOTE_TX_RATE_SHIFT)
8955 & REMOTE_TX_RATE_MASK;
8956 *link_widths = (frame >> LINK_WIDTH_SHIFT) & LINK_WIDTH_MASK;
8957}
8958
8959static void read_local_lni(struct hfi1_devdata *dd, u8 *enable_lane_rx)
8960{
8961 u32 frame;
8962
8963 read_8051_config(dd, LOCAL_LNI_INFO, GENERAL_CONFIG, &frame);
8964 *enable_lane_rx = (frame >> ENABLE_LANE_RX_SHIFT) & ENABLE_LANE_RX_MASK;
8965}
8966
Mike Marciniszyn77241052015-07-30 15:17:43 -04008967static void read_last_local_state(struct hfi1_devdata *dd, u32 *lls)
8968{
8969 read_8051_config(dd, LAST_LOCAL_STATE_COMPLETE, GENERAL_CONFIG, lls);
8970}
8971
8972static void read_last_remote_state(struct hfi1_devdata *dd, u32 *lrs)
8973{
8974 read_8051_config(dd, LAST_REMOTE_STATE_COMPLETE, GENERAL_CONFIG, lrs);
8975}
8976
8977void hfi1_read_link_quality(struct hfi1_devdata *dd, u8 *link_quality)
8978{
8979 u32 frame;
8980 int ret;
8981
8982 *link_quality = 0;
8983 if (dd->pport->host_link_state & HLS_UP) {
8984 ret = read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG,
Jubin John17fb4f22016-02-14 20:21:52 -08008985 &frame);
Mike Marciniszyn77241052015-07-30 15:17:43 -04008986 if (ret == 0)
8987 *link_quality = (frame >> LINK_QUALITY_SHIFT)
8988 & LINK_QUALITY_MASK;
8989 }
8990}
8991
8992static void read_planned_down_reason_code(struct hfi1_devdata *dd, u8 *pdrrc)
8993{
8994 u32 frame;
8995
8996 read_8051_config(dd, LINK_QUALITY_INFO, GENERAL_CONFIG, &frame);
8997 *pdrrc = (frame >> DOWN_REMOTE_REASON_SHIFT) & DOWN_REMOTE_REASON_MASK;
8998}
8999
Dean Luickfeb831d2016-04-14 08:31:36 -07009000static void read_link_down_reason(struct hfi1_devdata *dd, u8 *ldr)
9001{
9002 u32 frame;
9003
9004 read_8051_config(dd, LINK_DOWN_REASON, GENERAL_CONFIG, &frame);
9005 *ldr = (frame & 0xff);
9006}
9007
Mike Marciniszyn77241052015-07-30 15:17:43 -04009008static int read_tx_settings(struct hfi1_devdata *dd,
9009 u8 *enable_lane_tx,
9010 u8 *tx_polarity_inversion,
9011 u8 *rx_polarity_inversion,
9012 u8 *max_rate)
9013{
9014 u32 frame;
9015 int ret;
9016
9017 ret = read_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, &frame);
9018 *enable_lane_tx = (frame >> ENABLE_LANE_TX_SHIFT)
9019 & ENABLE_LANE_TX_MASK;
9020 *tx_polarity_inversion = (frame >> TX_POLARITY_INVERSION_SHIFT)
9021 & TX_POLARITY_INVERSION_MASK;
9022 *rx_polarity_inversion = (frame >> RX_POLARITY_INVERSION_SHIFT)
9023 & RX_POLARITY_INVERSION_MASK;
9024 *max_rate = (frame >> MAX_RATE_SHIFT) & MAX_RATE_MASK;
9025 return ret;
9026}
9027
9028static int write_tx_settings(struct hfi1_devdata *dd,
9029 u8 enable_lane_tx,
9030 u8 tx_polarity_inversion,
9031 u8 rx_polarity_inversion,
9032 u8 max_rate)
9033{
9034 u32 frame;
9035
9036 /* no need to mask, all variable sizes match field widths */
9037 frame = enable_lane_tx << ENABLE_LANE_TX_SHIFT
9038 | tx_polarity_inversion << TX_POLARITY_INVERSION_SHIFT
9039 | rx_polarity_inversion << RX_POLARITY_INVERSION_SHIFT
9040 | max_rate << MAX_RATE_SHIFT;
9041 return load_8051_config(dd, TX_SETTINGS, GENERAL_CONFIG, frame);
9042}
9043
Mike Marciniszyn77241052015-07-30 15:17:43 -04009044/*
9045 * Read an idle LCB message.
9046 *
9047 * Returns 0 on success, -EINVAL on error
9048 */
9049static int read_idle_message(struct hfi1_devdata *dd, u64 type, u64 *data_out)
9050{
9051 int ret;
9052
Jubin John17fb4f22016-02-14 20:21:52 -08009053 ret = do_8051_command(dd, HCMD_READ_LCB_IDLE_MSG, type, data_out);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009054 if (ret != HCMD_SUCCESS) {
9055 dd_dev_err(dd, "read idle message: type %d, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08009056 (u32)type, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009057 return -EINVAL;
9058 }
9059 dd_dev_info(dd, "%s: read idle message 0x%llx\n", __func__, *data_out);
9060 /* return only the payload as we already know the type */
9061 *data_out >>= IDLE_PAYLOAD_SHIFT;
9062 return 0;
9063}
9064
9065/*
9066 * Read an idle SMA message. To be done in response to a notification from
9067 * the 8051.
9068 *
9069 * Returns 0 on success, -EINVAL on error
9070 */
9071static int read_idle_sma(struct hfi1_devdata *dd, u64 *data)
9072{
Jubin John17fb4f22016-02-14 20:21:52 -08009073 return read_idle_message(dd, (u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT,
9074 data);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009075}
9076
9077/*
9078 * Send an idle LCB message.
9079 *
9080 * Returns 0 on success, -EINVAL on error
9081 */
9082static int send_idle_message(struct hfi1_devdata *dd, u64 data)
9083{
9084 int ret;
9085
9086 dd_dev_info(dd, "%s: sending idle message 0x%llx\n", __func__, data);
9087 ret = do_8051_command(dd, HCMD_SEND_LCB_IDLE_MSG, data, NULL);
9088 if (ret != HCMD_SUCCESS) {
9089 dd_dev_err(dd, "send idle message: data 0x%llx, err %d\n",
Jubin John17fb4f22016-02-14 20:21:52 -08009090 data, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009091 return -EINVAL;
9092 }
9093 return 0;
9094}
9095
9096/*
9097 * Send an idle SMA message.
9098 *
9099 * Returns 0 on success, -EINVAL on error
9100 */
9101int send_idle_sma(struct hfi1_devdata *dd, u64 message)
9102{
9103 u64 data;
9104
Jubin John17fb4f22016-02-14 20:21:52 -08009105 data = ((message & IDLE_PAYLOAD_MASK) << IDLE_PAYLOAD_SHIFT) |
9106 ((u64)IDLE_SMA << IDLE_MSG_TYPE_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009107 return send_idle_message(dd, data);
9108}
9109
9110/*
9111 * Initialize the LCB then do a quick link up. This may or may not be
9112 * in loopback.
9113 *
9114 * return 0 on success, -errno on error
9115 */
9116static int do_quick_linkup(struct hfi1_devdata *dd)
9117{
Mike Marciniszyn77241052015-07-30 15:17:43 -04009118 int ret;
9119
9120 lcb_shutdown(dd, 0);
9121
9122 if (loopback) {
9123 /* LCB_CFG_LOOPBACK.VAL = 2 */
9124 /* LCB_CFG_LANE_WIDTH.VAL = 0 */
9125 write_csr(dd, DC_LCB_CFG_LOOPBACK,
Jubin John17fb4f22016-02-14 20:21:52 -08009126 IB_PACKET_TYPE << DC_LCB_CFG_LOOPBACK_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009127 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0);
9128 }
9129
9130 /* start the LCBs */
9131 /* LCB_CFG_TX_FIFOS_RESET.VAL = 0 */
9132 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
9133
9134 /* simulator only loopback steps */
9135 if (loopback && dd->icode == ICODE_FUNCTIONAL_SIMULATOR) {
9136 /* LCB_CFG_RUN.EN = 1 */
9137 write_csr(dd, DC_LCB_CFG_RUN,
Jubin John17fb4f22016-02-14 20:21:52 -08009138 1ull << DC_LCB_CFG_RUN_EN_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009139
Dean Luickec8a1422017-03-20 17:24:39 -07009140 ret = wait_link_transfer_active(dd, 10);
9141 if (ret)
9142 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009143
9144 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP,
Jubin John17fb4f22016-02-14 20:21:52 -08009145 1ull << DC_LCB_CFG_ALLOW_LINK_UP_VAL_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009146 }
9147
9148 if (!loopback) {
9149 /*
9150 * When doing quick linkup and not in loopback, both
9151 * sides must be done with LCB set-up before either
9152 * starts the quick linkup. Put a delay here so that
9153 * both sides can be started and have a chance to be
9154 * done with LCB set up before resuming.
9155 */
9156 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009157 "Pausing for peer to be finished with LCB set up\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009158 msleep(5000);
Jubin John17fb4f22016-02-14 20:21:52 -08009159 dd_dev_err(dd, "Continuing with quick linkup\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009160 }
9161
9162 write_csr(dd, DC_LCB_ERR_EN, 0); /* mask LCB errors */
9163 set_8051_lcb_access(dd);
9164
9165 /*
9166 * State "quick" LinkUp request sets the physical link state to
9167 * LinkUp without a verify capability sequence.
9168 * This state is in simulator v37 and later.
9169 */
9170 ret = set_physical_link_state(dd, PLS_QUICK_LINKUP);
9171 if (ret != HCMD_SUCCESS) {
9172 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009173 "%s: set physical link state to quick LinkUp failed with return %d\n",
9174 __func__, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009175
9176 set_host_lcb_access(dd);
9177 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
9178
9179 if (ret >= 0)
9180 ret = -EINVAL;
9181 return ret;
9182 }
9183
9184 return 0; /* success */
9185}
9186
9187/*
Mike Marciniszyn77241052015-07-30 15:17:43 -04009188 * Do all special steps to set up loopback.
9189 */
9190static int init_loopback(struct hfi1_devdata *dd)
9191{
9192 dd_dev_info(dd, "Entering loopback mode\n");
9193
9194 /* all loopbacks should disable self GUID check */
9195 write_csr(dd, DC_DC8051_CFG_MODE,
Jubin John17fb4f22016-02-14 20:21:52 -08009196 (read_csr(dd, DC_DC8051_CFG_MODE) | DISABLE_SELF_GUID_CHECK));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009197
9198 /*
9199 * The simulator has only one loopback option - LCB. Switch
9200 * to that option, which includes quick link up.
9201 *
9202 * Accept all valid loopback values.
9203 */
Jubin Johnd0d236e2016-02-14 20:20:15 -08009204 if ((dd->icode == ICODE_FUNCTIONAL_SIMULATOR) &&
9205 (loopback == LOOPBACK_SERDES || loopback == LOOPBACK_LCB ||
9206 loopback == LOOPBACK_CABLE)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009207 loopback = LOOPBACK_LCB;
9208 quick_linkup = 1;
9209 return 0;
9210 }
9211
Jan Sokolowski242b4942017-10-09 13:08:28 -07009212 /*
9213 * SerDes loopback init sequence is handled in set_local_link_attributes
9214 */
9215 if (loopback == LOOPBACK_SERDES)
9216 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009217
9218 /* LCB loopback - handled at poll time */
9219 if (loopback == LOOPBACK_LCB) {
9220 quick_linkup = 1; /* LCB is always quick linkup */
9221
9222 /* not supported in emulation due to emulation RTL changes */
9223 if (dd->icode == ICODE_FPGA_EMULATION) {
9224 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009225 "LCB loopback not supported in emulation\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -04009226 return -EINVAL;
9227 }
9228 return 0;
9229 }
9230
9231 /* external cable loopback requires no extra steps */
9232 if (loopback == LOOPBACK_CABLE)
9233 return 0;
9234
9235 dd_dev_err(dd, "Invalid loopback mode %d\n", loopback);
9236 return -EINVAL;
9237}
9238
9239/*
9240 * Translate from the OPA_LINK_WIDTH handed to us by the FM to bits
9241 * used in the Verify Capability link width attribute.
9242 */
9243static u16 opa_to_vc_link_widths(u16 opa_widths)
9244{
9245 int i;
9246 u16 result = 0;
9247
9248 static const struct link_bits {
9249 u16 from;
9250 u16 to;
9251 } opa_link_xlate[] = {
Jubin John8638b772016-02-14 20:19:24 -08009252 { OPA_LINK_WIDTH_1X, 1 << (1 - 1) },
9253 { OPA_LINK_WIDTH_2X, 1 << (2 - 1) },
9254 { OPA_LINK_WIDTH_3X, 1 << (3 - 1) },
9255 { OPA_LINK_WIDTH_4X, 1 << (4 - 1) },
Mike Marciniszyn77241052015-07-30 15:17:43 -04009256 };
9257
9258 for (i = 0; i < ARRAY_SIZE(opa_link_xlate); i++) {
9259 if (opa_widths & opa_link_xlate[i].from)
9260 result |= opa_link_xlate[i].to;
9261 }
9262 return result;
9263}
9264
9265/*
9266 * Set link attributes before moving to polling.
9267 */
9268static int set_local_link_attributes(struct hfi1_pportdata *ppd)
9269{
9270 struct hfi1_devdata *dd = ppd->dd;
9271 u8 enable_lane_tx;
9272 u8 tx_polarity_inversion;
9273 u8 rx_polarity_inversion;
9274 int ret;
Jan Sokolowski242b4942017-10-09 13:08:28 -07009275 u32 misc_bits = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009276 /* reset our fabric serdes to clear any lingering problems */
9277 fabric_serdes_reset(dd);
9278
9279 /* set the local tx rate - need to read-modify-write */
9280 ret = read_tx_settings(dd, &enable_lane_tx, &tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009281 &rx_polarity_inversion, &ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009282 if (ret)
9283 goto set_local_link_attributes_fail;
9284
Michael J. Ruhl5e6e94242017-03-20 17:25:48 -07009285 if (dd->dc8051_ver < dc8051_ver(0, 20, 0)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009286 /* set the tx rate to the fastest enabled */
9287 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9288 ppd->local_tx_rate = 1;
9289 else
9290 ppd->local_tx_rate = 0;
9291 } else {
9292 /* set the tx rate to all enabled */
9293 ppd->local_tx_rate = 0;
9294 if (ppd->link_speed_enabled & OPA_LINK_SPEED_25G)
9295 ppd->local_tx_rate |= 2;
9296 if (ppd->link_speed_enabled & OPA_LINK_SPEED_12_5G)
9297 ppd->local_tx_rate |= 1;
9298 }
Easwar Hariharanfebffe22015-10-26 10:28:36 -04009299
9300 enable_lane_tx = 0xF; /* enable all four lanes */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009301 ret = write_tx_settings(dd, enable_lane_tx, tx_polarity_inversion,
Jubin John17fb4f22016-02-14 20:21:52 -08009302 rx_polarity_inversion, ppd->local_tx_rate);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009303 if (ret != HCMD_SUCCESS)
9304 goto set_local_link_attributes_fail;
9305
Sebastian Sanchez9996b042017-12-18 19:56:59 -08009306 ret = write_host_interface_version(dd, HOST_INTERFACE_VERSION);
9307 if (ret != HCMD_SUCCESS) {
9308 dd_dev_err(dd,
9309 "Failed to set host interface version, return 0x%x\n",
9310 ret);
9311 goto set_local_link_attributes_fail;
9312 }
9313
Mike Marciniszyn77241052015-07-30 15:17:43 -04009314 /*
9315 * DC supports continuous updates.
9316 */
Jubin John17fb4f22016-02-14 20:21:52 -08009317 ret = write_vc_local_phy(dd,
9318 0 /* no power management */,
9319 1 /* continuous updates */);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009320 if (ret != HCMD_SUCCESS)
9321 goto set_local_link_attributes_fail;
9322
9323 /* z=1 in the next call: AU of 0 is not supported by the hardware */
9324 ret = write_vc_local_fabric(dd, dd->vau, 1, dd->vcu, dd->vl15_init,
9325 ppd->port_crc_mode_enabled);
9326 if (ret != HCMD_SUCCESS)
9327 goto set_local_link_attributes_fail;
9328
Jan Sokolowski242b4942017-10-09 13:08:28 -07009329 /*
9330 * SerDes loopback init sequence requires
9331 * setting bit 0 of MISC_CONFIG_BITS
9332 */
9333 if (loopback == LOOPBACK_SERDES)
9334 misc_bits |= 1 << LOOPBACK_SERDES_CONFIG_BIT_MASK_SHIFT;
9335
Sebastian Sanchez254361c2018-05-02 06:42:21 -07009336 /*
9337 * An external device configuration request is used to reset the LCB
9338 * to retry to obtain operational lanes when the first attempt is
9339 * unsuccesful.
9340 */
9341 if (dd->dc8051_ver >= dc8051_ver(1, 25, 0))
9342 misc_bits |= 1 << EXT_CFG_LCB_RESET_SUPPORTED_SHIFT;
9343
9344 ret = write_vc_local_link_mode(dd, misc_bits, 0,
9345 opa_to_vc_link_widths(
Jubin John17fb4f22016-02-14 20:21:52 -08009346 ppd->link_width_enabled));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009347 if (ret != HCMD_SUCCESS)
9348 goto set_local_link_attributes_fail;
9349
9350 /* let peer know who we are */
9351 ret = write_local_device_id(dd, dd->pcidev->device, dd->minrev);
9352 if (ret == HCMD_SUCCESS)
9353 return 0;
9354
9355set_local_link_attributes_fail:
9356 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009357 "Failed to set local link attributes, return 0x%x\n",
9358 ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009359 return ret;
9360}
9361
9362/*
Easwar Hariharan623bba22016-04-12 11:25:57 -07009363 * Call this to start the link.
9364 * Do not do anything if the link is disabled.
9365 * Returns 0 if link is disabled, moved to polling, or the driver is not ready.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009366 */
9367int start_link(struct hfi1_pportdata *ppd)
9368{
Dean Luick0db9dec2016-09-06 04:35:20 -07009369 /*
9370 * Tune the SerDes to a ballpark setting for optimal signal and bit
9371 * error rate. Needs to be done before starting the link.
9372 */
9373 tune_serdes(ppd);
9374
Mike Marciniszyn77241052015-07-30 15:17:43 -04009375 if (!ppd->driver_link_ready) {
9376 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009377 "%s: stopping link start because driver is not ready\n",
9378 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009379 return 0;
9380 }
9381
Sebastian Sanchez3ec5fa22016-06-09 07:51:57 -07009382 /*
9383 * FULL_MGMT_P_KEY is cleared from the pkey table, so that the
9384 * pkey table can be configured properly if the HFI unit is connected
9385 * to switch port with MgmtAllowed=NO
9386 */
9387 clear_full_mgmt_pkey(ppd);
9388
Easwar Hariharan623bba22016-04-12 11:25:57 -07009389 return set_link_state(ppd, HLS_DN_POLL);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009390}
9391
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009392static void wait_for_qsfp_init(struct hfi1_pportdata *ppd)
9393{
9394 struct hfi1_devdata *dd = ppd->dd;
9395 u64 mask;
9396 unsigned long timeout;
9397
9398 /*
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009399 * Some QSFP cables have a quirk that asserts the IntN line as a side
9400 * effect of power up on plug-in. We ignore this false positive
9401 * interrupt until the module has finished powering up by waiting for
9402 * a minimum timeout of the module inrush initialization time of
9403 * 500 ms (SFF 8679 Table 5-6) to ensure the voltage rails in the
9404 * module have stabilized.
9405 */
9406 msleep(500);
9407
9408 /*
9409 * Check for QSFP interrupt for t_init (SFF 8679 Table 8-1)
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009410 */
9411 timeout = jiffies + msecs_to_jiffies(2000);
9412 while (1) {
9413 mask = read_csr(dd, dd->hfi1_id ?
9414 ASIC_QSFP2_IN : ASIC_QSFP1_IN);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009415 if (!(mask & QSFP_HFI0_INT_N))
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009416 break;
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009417 if (time_after(jiffies, timeout)) {
9418 dd_dev_info(dd, "%s: No IntN detected, reset complete\n",
9419 __func__);
9420 break;
9421 }
9422 udelay(2);
9423 }
9424}
9425
9426static void set_qsfp_int_n(struct hfi1_pportdata *ppd, u8 enable)
9427{
9428 struct hfi1_devdata *dd = ppd->dd;
9429 u64 mask;
9430
9431 mask = read_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK);
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009432 if (enable) {
9433 /*
9434 * Clear the status register to avoid an immediate interrupt
9435 * when we re-enable the IntN pin
9436 */
9437 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9438 QSFP_HFI0_INT_N);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009439 mask |= (u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009440 } else {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009441 mask &= ~(u64)QSFP_HFI0_INT_N;
Easwar Hariharan5fbd98d2016-07-25 13:39:57 -07009442 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009443 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK, mask);
9444}
9445
Sebastian Sanchez30e10522017-09-26 06:06:03 -07009446int reset_qsfp(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009447{
9448 struct hfi1_devdata *dd = ppd->dd;
9449 u64 mask, qsfp_mask;
9450
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009451 /* Disable INT_N from triggering QSFP interrupts */
9452 set_qsfp_int_n(ppd, 0);
9453
9454 /* Reset the QSFP */
Mike Marciniszyn77241052015-07-30 15:17:43 -04009455 mask = (u64)QSFP_HFI0_RESET_N;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009456
9457 qsfp_mask = read_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009458 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009459 qsfp_mask &= ~mask;
9460 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009461 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009462
9463 udelay(10);
9464
9465 qsfp_mask |= mask;
9466 write_csr(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009467 dd->hfi1_id ? ASIC_QSFP2_OUT : ASIC_QSFP1_OUT, qsfp_mask);
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009468
9469 wait_for_qsfp_init(ppd);
9470
9471 /*
9472 * Allow INT_N to trigger the QSFP interrupt to watch
9473 * for alarms and warnings
9474 */
9475 set_qsfp_int_n(ppd, 1);
Sebastian Sanchez30e10522017-09-26 06:06:03 -07009476
9477 /*
9478 * After the reset, AOC transmitters are enabled by default. They need
9479 * to be turned off to complete the QSFP setup before they can be
9480 * enabled again.
9481 */
9482 return set_qsfp_tx(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009483}
9484
9485static int handle_qsfp_error_conditions(struct hfi1_pportdata *ppd,
9486 u8 *qsfp_interrupt_status)
9487{
9488 struct hfi1_devdata *dd = ppd->dd;
9489
9490 if ((qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009491 (qsfp_interrupt_status[0] & QSFP_HIGH_TEMP_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009492 dd_dev_err(dd, "%s: QSFP cable temperature too high\n",
9493 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009494
9495 if ((qsfp_interrupt_status[0] & QSFP_LOW_TEMP_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009496 (qsfp_interrupt_status[0] & QSFP_LOW_TEMP_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009497 dd_dev_err(dd, "%s: QSFP cable temperature too low\n",
9498 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009499
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009500 /*
9501 * The remaining alarms/warnings don't matter if the link is down.
9502 */
9503 if (ppd->host_link_state & HLS_DOWN)
9504 return 0;
9505
Mike Marciniszyn77241052015-07-30 15:17:43 -04009506 if ((qsfp_interrupt_status[1] & QSFP_HIGH_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009507 (qsfp_interrupt_status[1] & QSFP_HIGH_VCC_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009508 dd_dev_err(dd, "%s: QSFP supply voltage too high\n",
9509 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009510
9511 if ((qsfp_interrupt_status[1] & QSFP_LOW_VCC_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009512 (qsfp_interrupt_status[1] & QSFP_LOW_VCC_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009513 dd_dev_err(dd, "%s: QSFP supply voltage too low\n",
9514 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009515
9516 /* Byte 2 is vendor specific */
9517
9518 if ((qsfp_interrupt_status[3] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009519 (qsfp_interrupt_status[3] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009520 dd_dev_err(dd, "%s: Cable RX channel 1/2 power too high\n",
9521 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009522
9523 if ((qsfp_interrupt_status[3] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009524 (qsfp_interrupt_status[3] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009525 dd_dev_err(dd, "%s: Cable RX channel 1/2 power too low\n",
9526 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009527
9528 if ((qsfp_interrupt_status[4] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009529 (qsfp_interrupt_status[4] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009530 dd_dev_err(dd, "%s: Cable RX channel 3/4 power too high\n",
9531 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009532
9533 if ((qsfp_interrupt_status[4] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009534 (qsfp_interrupt_status[4] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009535 dd_dev_err(dd, "%s: Cable RX channel 3/4 power too low\n",
9536 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009537
9538 if ((qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009539 (qsfp_interrupt_status[5] & QSFP_HIGH_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009540 dd_dev_err(dd, "%s: Cable TX channel 1/2 bias too high\n",
9541 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009542
9543 if ((qsfp_interrupt_status[5] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009544 (qsfp_interrupt_status[5] & QSFP_LOW_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009545 dd_dev_err(dd, "%s: Cable TX channel 1/2 bias too low\n",
9546 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009547
9548 if ((qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009549 (qsfp_interrupt_status[6] & QSFP_HIGH_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009550 dd_dev_err(dd, "%s: Cable TX channel 3/4 bias too high\n",
9551 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009552
9553 if ((qsfp_interrupt_status[6] & QSFP_LOW_BIAS_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009554 (qsfp_interrupt_status[6] & QSFP_LOW_BIAS_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009555 dd_dev_err(dd, "%s: Cable TX channel 3/4 bias too low\n",
9556 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009557
9558 if ((qsfp_interrupt_status[7] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009559 (qsfp_interrupt_status[7] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009560 dd_dev_err(dd, "%s: Cable TX channel 1/2 power too high\n",
9561 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009562
9563 if ((qsfp_interrupt_status[7] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009564 (qsfp_interrupt_status[7] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009565 dd_dev_err(dd, "%s: Cable TX channel 1/2 power too low\n",
9566 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009567
9568 if ((qsfp_interrupt_status[8] & QSFP_HIGH_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009569 (qsfp_interrupt_status[8] & QSFP_HIGH_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009570 dd_dev_err(dd, "%s: Cable TX channel 3/4 power too high\n",
9571 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009572
9573 if ((qsfp_interrupt_status[8] & QSFP_LOW_POWER_ALARM) ||
Jubin John17fb4f22016-02-14 20:21:52 -08009574 (qsfp_interrupt_status[8] & QSFP_LOW_POWER_WARNING))
Jan Sokolowski702265f2017-06-09 15:59:33 -07009575 dd_dev_err(dd, "%s: Cable TX channel 3/4 power too low\n",
9576 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009577
9578 /* Bytes 9-10 and 11-12 are reserved */
9579 /* Bytes 13-15 are vendor specific */
9580
9581 return 0;
9582}
9583
Easwar Hariharan623bba22016-04-12 11:25:57 -07009584/* This routine will only be scheduled if the QSFP module present is asserted */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009585void qsfp_event(struct work_struct *work)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009586{
9587 struct qsfp_data *qd;
9588 struct hfi1_pportdata *ppd;
9589 struct hfi1_devdata *dd;
9590
9591 qd = container_of(work, struct qsfp_data, qsfp_work);
9592 ppd = qd->ppd;
9593 dd = ppd->dd;
9594
9595 /* Sanity check */
9596 if (!qsfp_mod_present(ppd))
9597 return;
9598
Jan Sokolowski96603ed2017-07-29 08:43:26 -07009599 if (ppd->host_link_state == HLS_DN_DISABLE) {
9600 dd_dev_info(ppd->dd,
9601 "%s: stopping link start because link is disabled\n",
9602 __func__);
9603 return;
9604 }
9605
Mike Marciniszyn77241052015-07-30 15:17:43 -04009606 /*
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -07009607 * Turn DC back on after cable has been re-inserted. Up until
9608 * now, the DC has been in reset to save power.
Mike Marciniszyn77241052015-07-30 15:17:43 -04009609 */
9610 dc_start(dd);
9611
9612 if (qd->cache_refresh_required) {
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009613 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009614
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009615 wait_for_qsfp_init(ppd);
9616
9617 /*
9618 * Allow INT_N to trigger the QSFP interrupt to watch
9619 * for alarms and warnings
Mike Marciniszyn77241052015-07-30 15:17:43 -04009620 */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009621 set_qsfp_int_n(ppd, 1);
9622
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009623 start_link(ppd);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009624 }
9625
9626 if (qd->check_interrupt_flags) {
9627 u8 qsfp_interrupt_status[16] = {0,};
9628
Dean Luick765a6fa2016-03-05 08:50:06 -08009629 if (one_qsfp_read(ppd, dd->hfi1_id, 6,
9630 &qsfp_interrupt_status[0], 16) != 16) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009631 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009632 "%s: Failed to read status of QSFP module\n",
9633 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009634 } else {
9635 unsigned long flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009636
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009637 handle_qsfp_error_conditions(
9638 ppd, qsfp_interrupt_status);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009639 spin_lock_irqsave(&ppd->qsfp_info.qsfp_lock, flags);
9640 ppd->qsfp_info.check_interrupt_flags = 0;
9641 spin_unlock_irqrestore(&ppd->qsfp_info.qsfp_lock,
Jubin John17fb4f22016-02-14 20:21:52 -08009642 flags);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009643 }
9644 }
9645}
9646
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009647static void init_qsfp_int(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009648{
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009649 struct hfi1_pportdata *ppd = dd->pport;
9650 u64 qsfp_mask, cce_int_mask;
9651 const int qsfp1_int_smask = QSFP1_INT % 64;
9652 const int qsfp2_int_smask = QSFP2_INT % 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009653
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009654 /*
9655 * disable QSFP1 interrupts for HFI1, QSFP2 interrupts for HFI0
9656 * Qsfp1Int and Qsfp2Int are adjacent bits in the same CSR,
9657 * therefore just one of QSFP1_INT/QSFP2_INT can be used to find
9658 * the index of the appropriate CSR in the CCEIntMask CSR array
9659 */
9660 cce_int_mask = read_csr(dd, CCE_INT_MASK +
9661 (8 * (QSFP1_INT / 64)));
9662 if (dd->hfi1_id) {
9663 cce_int_mask &= ~((u64)1 << qsfp1_int_smask);
9664 write_csr(dd, CCE_INT_MASK + (8 * (QSFP1_INT / 64)),
9665 cce_int_mask);
9666 } else {
9667 cce_int_mask &= ~((u64)1 << qsfp2_int_smask);
9668 write_csr(dd, CCE_INT_MASK + (8 * (QSFP2_INT / 64)),
9669 cce_int_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009670 }
9671
Mike Marciniszyn77241052015-07-30 15:17:43 -04009672 qsfp_mask = (u64)(QSFP_HFI0_INT_N | QSFP_HFI0_MODPRST_N);
9673 /* Clear current status to avoid spurious interrupts */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009674 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_CLEAR : ASIC_QSFP1_CLEAR,
9675 qsfp_mask);
9676 write_csr(dd, dd->hfi1_id ? ASIC_QSFP2_MASK : ASIC_QSFP1_MASK,
9677 qsfp_mask);
9678
9679 set_qsfp_int_n(ppd, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009680
9681 /* Handle active low nature of INT_N and MODPRST_N pins */
9682 if (qsfp_mod_present(ppd))
9683 qsfp_mask &= ~(u64)QSFP_HFI0_MODPRST_N;
9684 write_csr(dd,
9685 dd->hfi1_id ? ASIC_QSFP2_INVERT : ASIC_QSFP1_INVERT,
9686 qsfp_mask);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009687}
9688
Dean Luickbbdeb332015-12-01 15:38:15 -05009689/*
9690 * Do a one-time initialize of the LCB block.
9691 */
9692static void init_lcb(struct hfi1_devdata *dd)
9693{
Dean Luicka59329d2016-02-03 14:32:31 -08009694 /* simulator does not correctly handle LCB cclk loopback, skip */
9695 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
9696 return;
9697
Dean Luickbbdeb332015-12-01 15:38:15 -05009698 /* the DC has been reset earlier in the driver load */
9699
9700 /* set LCB for cclk loopback on the port */
9701 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x01);
9702 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0x00);
9703 write_csr(dd, DC_LCB_CFG_REINIT_AS_SLAVE, 0x00);
9704 write_csr(dd, DC_LCB_CFG_CNT_FOR_SKIP_STALL, 0x110);
9705 write_csr(dd, DC_LCB_CFG_CLK_CNTR, 0x08);
9706 write_csr(dd, DC_LCB_CFG_LOOPBACK, 0x02);
9707 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0x00);
9708}
9709
Dean Luick673b9752016-08-31 07:24:33 -07009710/*
9711 * Perform a test read on the QSFP. Return 0 on success, -ERRNO
9712 * on error.
9713 */
9714static int test_qsfp_read(struct hfi1_pportdata *ppd)
9715{
9716 int ret;
9717 u8 status;
9718
Easwar Hariharanfb897ad2017-03-20 17:25:42 -07009719 /*
9720 * Report success if not a QSFP or, if it is a QSFP, but the cable is
9721 * not present
9722 */
9723 if (ppd->port_type != PORT_TYPE_QSFP || !qsfp_mod_present(ppd))
Dean Luick673b9752016-08-31 07:24:33 -07009724 return 0;
9725
9726 /* read byte 2, the status byte */
9727 ret = one_qsfp_read(ppd, ppd->dd->hfi1_id, 2, &status, 1);
9728 if (ret < 0)
9729 return ret;
9730 if (ret != 1)
9731 return -EIO;
9732
9733 return 0; /* success */
9734}
9735
9736/*
9737 * Values for QSFP retry.
9738 *
9739 * Give up after 10s (20 x 500ms). The overall timeout was empirically
9740 * arrived at from experience on a large cluster.
9741 */
9742#define MAX_QSFP_RETRIES 20
9743#define QSFP_RETRY_WAIT 500 /* msec */
9744
9745/*
9746 * Try a QSFP read. If it fails, schedule a retry for later.
9747 * Called on first link activation after driver load.
9748 */
9749static void try_start_link(struct hfi1_pportdata *ppd)
9750{
9751 if (test_qsfp_read(ppd)) {
9752 /* read failed */
9753 if (ppd->qsfp_retry_count >= MAX_QSFP_RETRIES) {
9754 dd_dev_err(ppd->dd, "QSFP not responding, giving up\n");
9755 return;
9756 }
9757 dd_dev_info(ppd->dd,
9758 "QSFP not responding, waiting and retrying %d\n",
9759 (int)ppd->qsfp_retry_count);
9760 ppd->qsfp_retry_count++;
Sebastian Sanchez71d47002017-07-29 08:43:49 -07009761 queue_delayed_work(ppd->link_wq, &ppd->start_link_work,
Dean Luick673b9752016-08-31 07:24:33 -07009762 msecs_to_jiffies(QSFP_RETRY_WAIT));
9763 return;
9764 }
9765 ppd->qsfp_retry_count = 0;
9766
Dean Luick673b9752016-08-31 07:24:33 -07009767 start_link(ppd);
9768}
9769
9770/*
9771 * Workqueue function to start the link after a delay.
9772 */
9773void handle_start_link(struct work_struct *work)
9774{
9775 struct hfi1_pportdata *ppd = container_of(work, struct hfi1_pportdata,
9776 start_link_work.work);
9777 try_start_link(ppd);
9778}
9779
Mike Marciniszyn77241052015-07-30 15:17:43 -04009780int bringup_serdes(struct hfi1_pportdata *ppd)
9781{
9782 struct hfi1_devdata *dd = ppd->dd;
9783 u64 guid;
9784 int ret;
9785
9786 if (HFI1_CAP_IS_KSET(EXTENDED_PSN))
9787 add_rcvctrl(dd, RCV_CTRL_RCV_EXTENDED_PSN_ENABLE_SMASK);
9788
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07009789 guid = ppd->guids[HFI1_PORT_GUID_INDEX];
Mike Marciniszyn77241052015-07-30 15:17:43 -04009790 if (!guid) {
9791 if (dd->base_guid)
9792 guid = dd->base_guid + ppd->port - 1;
Jakub Pawlaka6cd5f02016-10-17 04:19:30 -07009793 ppd->guids[HFI1_PORT_GUID_INDEX] = guid;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009794 }
9795
Mike Marciniszyn77241052015-07-30 15:17:43 -04009796 /* Set linkinit_reason on power up per OPA spec */
9797 ppd->linkinit_reason = OPA_LINKINIT_REASON_LINKUP;
9798
Dean Luickbbdeb332015-12-01 15:38:15 -05009799 /* one-time init of the LCB */
9800 init_lcb(dd);
9801
Mike Marciniszyn77241052015-07-30 15:17:43 -04009802 if (loopback) {
9803 ret = init_loopback(dd);
9804 if (ret < 0)
9805 return ret;
9806 }
9807
Easwar Hariharan9775a992016-05-12 10:22:39 -07009808 get_port_type(ppd);
9809 if (ppd->port_type == PORT_TYPE_QSFP) {
9810 set_qsfp_int_n(ppd, 0);
9811 wait_for_qsfp_init(ppd);
9812 set_qsfp_int_n(ppd, 1);
9813 }
9814
Dean Luick673b9752016-08-31 07:24:33 -07009815 try_start_link(ppd);
9816 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009817}
9818
9819void hfi1_quiet_serdes(struct hfi1_pportdata *ppd)
9820{
9821 struct hfi1_devdata *dd = ppd->dd;
9822
9823 /*
9824 * Shut down the link and keep it down. First turn off that the
9825 * driver wants to allow the link to be up (driver_link_ready).
9826 * Then make sure the link is not automatically restarted
9827 * (link_enabled). Cancel any pending restart. And finally
9828 * go offline.
9829 */
9830 ppd->driver_link_ready = 0;
9831 ppd->link_enabled = 0;
9832
Dean Luick673b9752016-08-31 07:24:33 -07009833 ppd->qsfp_retry_count = MAX_QSFP_RETRIES; /* prevent more retries */
9834 flush_delayed_work(&ppd->start_link_work);
9835 cancel_delayed_work_sync(&ppd->start_link_work);
9836
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -08009837 ppd->offline_disabled_reason =
Jan Sokolowskie8d5aff2017-11-06 06:39:07 -08009838 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_REBOOT);
9839 set_link_down_reason(ppd, OPA_LINKDOWN_REASON_REBOOT, 0,
9840 OPA_LINKDOWN_REASON_REBOOT);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009841 set_link_state(ppd, HLS_DN_OFFLINE);
9842
9843 /* disable the port */
9844 clear_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
9845}
9846
9847static inline int init_cpu_counters(struct hfi1_devdata *dd)
9848{
9849 struct hfi1_pportdata *ppd;
9850 int i;
9851
9852 ppd = (struct hfi1_pportdata *)(dd + 1);
9853 for (i = 0; i < dd->num_pports; i++, ppd++) {
Dennis Dalessandro4eb06882016-01-19 14:42:39 -08009854 ppd->ibport_data.rvp.rc_acks = NULL;
9855 ppd->ibport_data.rvp.rc_qacks = NULL;
9856 ppd->ibport_data.rvp.rc_acks = alloc_percpu(u64);
9857 ppd->ibport_data.rvp.rc_qacks = alloc_percpu(u64);
9858 ppd->ibport_data.rvp.rc_delayed_comp = alloc_percpu(u64);
9859 if (!ppd->ibport_data.rvp.rc_acks ||
9860 !ppd->ibport_data.rvp.rc_delayed_comp ||
9861 !ppd->ibport_data.rvp.rc_qacks)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009862 return -ENOMEM;
9863 }
9864
9865 return 0;
9866}
9867
Mike Marciniszyn77241052015-07-30 15:17:43 -04009868/*
9869 * index is the index into the receive array
9870 */
9871void hfi1_put_tid(struct hfi1_devdata *dd, u32 index,
9872 u32 type, unsigned long pa, u16 order)
9873{
9874 u64 reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009875
9876 if (!(dd->flags & HFI1_PRESENT))
9877 goto done;
9878
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009879 if (type == PT_INVALID || type == PT_INVALID_FLUSH) {
Mike Marciniszyn77241052015-07-30 15:17:43 -04009880 pa = 0;
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009881 order = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009882 } else if (type > PT_INVALID) {
9883 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -08009884 "unexpected receive array type %u for index %u, not handled\n",
9885 type, index);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009886 goto done;
9887 }
Mike Marciniszyn8cb10212017-06-09 15:59:59 -07009888 trace_hfi1_put_tid(dd, index, type, pa, order);
Mike Marciniszyn77241052015-07-30 15:17:43 -04009889
9890#define RT_ADDR_SHIFT 12 /* 4KB kernel address boundary */
9891 reg = RCV_ARRAY_RT_WRITE_ENABLE_SMASK
9892 | (u64)order << RCV_ARRAY_RT_BUF_SIZE_SHIFT
9893 | ((pa >> RT_ADDR_SHIFT) & RCV_ARRAY_RT_ADDR_MASK)
9894 << RCV_ARRAY_RT_ADDR_SHIFT;
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009895 trace_hfi1_write_rcvarray(dd->rcvarray_wc + (index * 8), reg);
9896 writeq(reg, dd->rcvarray_wc + (index * 8));
Mike Marciniszyn77241052015-07-30 15:17:43 -04009897
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009898 if (type == PT_EAGER || type == PT_INVALID_FLUSH || (index & 3) == 3)
Mike Marciniszyn77241052015-07-30 15:17:43 -04009899 /*
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -07009900 * Eager entries are written and flushed
9901 *
9902 * Expected entries are flushed every 4 writes
Mike Marciniszyn77241052015-07-30 15:17:43 -04009903 */
9904 flush_wc();
9905done:
9906 return;
9907}
9908
9909void hfi1_clear_tids(struct hfi1_ctxtdata *rcd)
9910{
9911 struct hfi1_devdata *dd = rcd->dd;
9912 u32 i;
9913
9914 /* this could be optimized */
9915 for (i = rcd->eager_base; i < rcd->eager_base +
9916 rcd->egrbufs.alloced; i++)
9917 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9918
9919 for (i = rcd->expected_base;
9920 i < rcd->expected_base + rcd->expected_count; i++)
9921 hfi1_put_tid(dd, i, PT_INVALID, 0, 0);
9922}
9923
Mike Marciniszyn77241052015-07-30 15:17:43 -04009924static const char * const ib_cfg_name_strings[] = {
9925 "HFI1_IB_CFG_LIDLMC",
9926 "HFI1_IB_CFG_LWID_DG_ENB",
9927 "HFI1_IB_CFG_LWID_ENB",
9928 "HFI1_IB_CFG_LWID",
9929 "HFI1_IB_CFG_SPD_ENB",
9930 "HFI1_IB_CFG_SPD",
9931 "HFI1_IB_CFG_RXPOL_ENB",
9932 "HFI1_IB_CFG_LREV_ENB",
9933 "HFI1_IB_CFG_LINKLATENCY",
9934 "HFI1_IB_CFG_HRTBT",
9935 "HFI1_IB_CFG_OP_VLS",
9936 "HFI1_IB_CFG_VL_HIGH_CAP",
9937 "HFI1_IB_CFG_VL_LOW_CAP",
9938 "HFI1_IB_CFG_OVERRUN_THRESH",
9939 "HFI1_IB_CFG_PHYERR_THRESH",
9940 "HFI1_IB_CFG_LINKDEFAULT",
9941 "HFI1_IB_CFG_PKEYS",
9942 "HFI1_IB_CFG_MTU",
9943 "HFI1_IB_CFG_LSTATE",
9944 "HFI1_IB_CFG_VL_HIGH_LIMIT",
9945 "HFI1_IB_CFG_PMA_TICKS",
9946 "HFI1_IB_CFG_PORT"
9947};
9948
9949static const char *ib_cfg_name(int which)
9950{
9951 if (which < 0 || which >= ARRAY_SIZE(ib_cfg_name_strings))
9952 return "invalid";
9953 return ib_cfg_name_strings[which];
9954}
9955
9956int hfi1_get_ib_cfg(struct hfi1_pportdata *ppd, int which)
9957{
9958 struct hfi1_devdata *dd = ppd->dd;
9959 int val = 0;
9960
9961 switch (which) {
9962 case HFI1_IB_CFG_LWID_ENB: /* allowed Link-width */
9963 val = ppd->link_width_enabled;
9964 break;
9965 case HFI1_IB_CFG_LWID: /* currently active Link-width */
9966 val = ppd->link_width_active;
9967 break;
9968 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
9969 val = ppd->link_speed_enabled;
9970 break;
9971 case HFI1_IB_CFG_SPD: /* current Link speed */
9972 val = ppd->link_speed_active;
9973 break;
9974
9975 case HFI1_IB_CFG_RXPOL_ENB: /* Auto-RX-polarity enable */
9976 case HFI1_IB_CFG_LREV_ENB: /* Auto-Lane-reversal enable */
9977 case HFI1_IB_CFG_LINKLATENCY:
9978 goto unimplemented;
9979
9980 case HFI1_IB_CFG_OP_VLS:
Patel Jay P00f92032017-10-23 06:05:53 -07009981 val = ppd->actual_vls_operational;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009982 break;
9983 case HFI1_IB_CFG_VL_HIGH_CAP: /* VL arb high priority table size */
9984 val = VL_ARB_HIGH_PRIO_TABLE_SIZE;
9985 break;
9986 case HFI1_IB_CFG_VL_LOW_CAP: /* VL arb low priority table size */
9987 val = VL_ARB_LOW_PRIO_TABLE_SIZE;
9988 break;
9989 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
9990 val = ppd->overrun_threshold;
9991 break;
9992 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
9993 val = ppd->phy_error_threshold;
9994 break;
9995 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
Ira Weiny156d24d2017-09-26 07:00:43 -07009996 val = HLS_DEFAULT;
Mike Marciniszyn77241052015-07-30 15:17:43 -04009997 break;
9998
9999 case HFI1_IB_CFG_HRTBT: /* Heartbeat off/enable/auto */
10000 case HFI1_IB_CFG_PMA_TICKS:
10001 default:
10002unimplemented:
10003 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
10004 dd_dev_info(
10005 dd,
10006 "%s: which %s: not implemented\n",
10007 __func__,
10008 ib_cfg_name(which));
10009 break;
10010 }
10011
10012 return val;
10013}
10014
10015/*
10016 * The largest MAD packet size.
10017 */
10018#define MAX_MAD_PACKET 2048
10019
10020/*
10021 * Return the maximum header bytes that can go on the _wire_
10022 * for this device. This count includes the ICRC which is
10023 * not part of the packet held in memory but it is appended
10024 * by the HW.
10025 * This is dependent on the device's receive header entry size.
10026 * HFI allows this to be set per-receive context, but the
10027 * driver presently enforces a global value.
10028 */
10029u32 lrh_max_header_bytes(struct hfi1_devdata *dd)
10030{
10031 /*
10032 * The maximum non-payload (MTU) bytes in LRH.PktLen are
10033 * the Receive Header Entry Size minus the PBC (or RHF) size
10034 * plus one DW for the ICRC appended by HW.
10035 *
10036 * dd->rcd[0].rcvhdrqentsize is in DW.
10037 * We use rcd[0] as all context will have the same value. Also,
10038 * the first kernel context would have been allocated by now so
10039 * we are guaranteed a valid value.
10040 */
10041 return (dd->rcd[0]->rcvhdrqentsize - 2/*PBC/RHF*/ + 1/*ICRC*/) << 2;
10042}
10043
10044/*
10045 * Set Send Length
10046 * @ppd - per port data
10047 *
10048 * Set the MTU by limiting how many DWs may be sent. The SendLenCheck*
10049 * registers compare against LRH.PktLen, so use the max bytes included
10050 * in the LRH.
10051 *
10052 * This routine changes all VL values except VL15, which it maintains at
10053 * the same value.
10054 */
10055static void set_send_length(struct hfi1_pportdata *ppd)
10056{
10057 struct hfi1_devdata *dd = ppd->dd;
Harish Chegondi6cc6ad22015-12-01 15:38:24 -050010058 u32 max_hb = lrh_max_header_bytes(dd), dcmtu;
10059 u32 maxvlmtu = dd->vld[15].mtu;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010060 u64 len1 = 0, len2 = (((dd->vld[15].mtu + max_hb) >> 2)
10061 & SEND_LEN_CHECK1_LEN_VL15_MASK) <<
10062 SEND_LEN_CHECK1_LEN_VL15_SHIFT;
Jubin Johnb4ba6632016-06-09 07:51:08 -070010063 int i, j;
Jianxin Xiong44306f12016-04-12 11:30:28 -070010064 u32 thres;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010065
10066 for (i = 0; i < ppd->vls_supported; i++) {
10067 if (dd->vld[i].mtu > maxvlmtu)
10068 maxvlmtu = dd->vld[i].mtu;
10069 if (i <= 3)
10070 len1 |= (((dd->vld[i].mtu + max_hb) >> 2)
10071 & SEND_LEN_CHECK0_LEN_VL0_MASK) <<
10072 ((i % 4) * SEND_LEN_CHECK0_LEN_VL1_SHIFT);
10073 else
10074 len2 |= (((dd->vld[i].mtu + max_hb) >> 2)
10075 & SEND_LEN_CHECK1_LEN_VL4_MASK) <<
10076 ((i % 4) * SEND_LEN_CHECK1_LEN_VL5_SHIFT);
10077 }
10078 write_csr(dd, SEND_LEN_CHECK0, len1);
10079 write_csr(dd, SEND_LEN_CHECK1, len2);
10080 /* adjust kernel credit return thresholds based on new MTUs */
10081 /* all kernel receive contexts have the same hdrqentsize */
10082 for (i = 0; i < ppd->vls_supported; i++) {
Jianxin Xiong44306f12016-04-12 11:30:28 -070010083 thres = min(sc_percent_to_threshold(dd->vld[i].sc, 50),
10084 sc_mtu_to_threshold(dd->vld[i].sc,
10085 dd->vld[i].mtu,
Jubin John17fb4f22016-02-14 20:21:52 -080010086 dd->rcd[0]->rcvhdrqentsize));
Jubin Johnb4ba6632016-06-09 07:51:08 -070010087 for (j = 0; j < INIT_SC_PER_VL; j++)
10088 sc_set_cr_threshold(
10089 pio_select_send_context_vl(dd, j, i),
10090 thres);
Jianxin Xiong44306f12016-04-12 11:30:28 -070010091 }
10092 thres = min(sc_percent_to_threshold(dd->vld[15].sc, 50),
10093 sc_mtu_to_threshold(dd->vld[15].sc,
10094 dd->vld[15].mtu,
10095 dd->rcd[0]->rcvhdrqentsize));
10096 sc_set_cr_threshold(dd->vld[15].sc, thres);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010097
10098 /* Adjust maximum MTU for the port in DC */
10099 dcmtu = maxvlmtu == 10240 ? DCC_CFG_PORT_MTU_CAP_10240 :
10100 (ilog2(maxvlmtu >> 8) + 1);
10101 len1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG);
10102 len1 &= ~DCC_CFG_PORT_CONFIG_MTU_CAP_SMASK;
10103 len1 |= ((u64)dcmtu & DCC_CFG_PORT_CONFIG_MTU_CAP_MASK) <<
10104 DCC_CFG_PORT_CONFIG_MTU_CAP_SHIFT;
10105 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG, len1);
10106}
10107
10108static void set_lidlmc(struct hfi1_pportdata *ppd)
10109{
10110 int i;
10111 u64 sreg = 0;
10112 struct hfi1_devdata *dd = ppd->dd;
10113 u32 mask = ~((1U << ppd->lmc) - 1);
10114 u64 c1 = read_csr(ppd->dd, DCC_CFG_PORT_CONFIG1);
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010115 u32 lid;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010116
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010117 /*
10118 * Program 0 in CSR if port lid is extended. This prevents
10119 * 9B packets being sent out for large lids.
10120 */
10121 lid = (ppd->lid >= be16_to_cpu(IB_MULTICAST_LID_BASE)) ? 0 : ppd->lid;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010122 c1 &= ~(DCC_CFG_PORT_CONFIG1_TARGET_DLID_SMASK
10123 | DCC_CFG_PORT_CONFIG1_DLID_MASK_SMASK);
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010124 c1 |= ((lid & DCC_CFG_PORT_CONFIG1_TARGET_DLID_MASK)
Jubin John8638b772016-02-14 20:19:24 -080010125 << DCC_CFG_PORT_CONFIG1_TARGET_DLID_SHIFT) |
Mike Marciniszyn77241052015-07-30 15:17:43 -040010126 ((mask & DCC_CFG_PORT_CONFIG1_DLID_MASK_MASK)
10127 << DCC_CFG_PORT_CONFIG1_DLID_MASK_SHIFT);
10128 write_csr(ppd->dd, DCC_CFG_PORT_CONFIG1, c1);
10129
10130 /*
10131 * Iterate over all the send contexts and set their SLID check
10132 */
10133 sreg = ((mask & SEND_CTXT_CHECK_SLID_MASK_MASK) <<
10134 SEND_CTXT_CHECK_SLID_MASK_SHIFT) |
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010135 (((lid & mask) & SEND_CTXT_CHECK_SLID_VALUE_MASK) <<
Mike Marciniszyn77241052015-07-30 15:17:43 -040010136 SEND_CTXT_CHECK_SLID_VALUE_SHIFT);
10137
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070010138 for (i = 0; i < chip_send_contexts(dd); i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010139 hfi1_cdbg(LINKVERB, "SendContext[%d].SLID_CHECK = 0x%x",
10140 i, (u32)sreg);
10141 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, sreg);
10142 }
10143
10144 /* Now we have to do the same thing for the sdma engines */
Dasaratharaman Chandramouli51e658f52017-08-04 13:54:35 -070010145 sdma_update_lmc(dd, mask, lid);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010146}
10147
Dean Luick6854c692016-07-25 13:38:56 -070010148static const char *state_completed_string(u32 completed)
10149{
10150 static const char * const state_completed[] = {
10151 "EstablishComm",
10152 "OptimizeEQ",
10153 "VerifyCap"
10154 };
10155
10156 if (completed < ARRAY_SIZE(state_completed))
10157 return state_completed[completed];
10158
10159 return "unknown";
10160}
10161
10162static const char all_lanes_dead_timeout_expired[] =
10163 "All lanes were inactive – was the interconnect media removed?";
10164static const char tx_out_of_policy[] =
10165 "Passing lanes on local port do not meet the local link width policy";
10166static const char no_state_complete[] =
10167 "State timeout occurred before link partner completed the state";
10168static const char * const state_complete_reasons[] = {
10169 [0x00] = "Reason unknown",
10170 [0x01] = "Link was halted by driver, refer to LinkDownReason",
10171 [0x02] = "Link partner reported failure",
10172 [0x10] = "Unable to achieve frame sync on any lane",
10173 [0x11] =
10174 "Unable to find a common bit rate with the link partner",
10175 [0x12] =
10176 "Unable to achieve frame sync on sufficient lanes to meet the local link width policy",
10177 [0x13] =
10178 "Unable to identify preset equalization on sufficient lanes to meet the local link width policy",
10179 [0x14] = no_state_complete,
10180 [0x15] =
10181 "State timeout occurred before link partner identified equalization presets",
10182 [0x16] =
10183 "Link partner completed the EstablishComm state, but the passing lanes do not meet the local link width policy",
10184 [0x17] = tx_out_of_policy,
10185 [0x20] = all_lanes_dead_timeout_expired,
10186 [0x21] =
10187 "Unable to achieve acceptable BER on sufficient lanes to meet the local link width policy",
10188 [0x22] = no_state_complete,
10189 [0x23] =
10190 "Link partner completed the OptimizeEq state, but the passing lanes do not meet the local link width policy",
10191 [0x24] = tx_out_of_policy,
10192 [0x30] = all_lanes_dead_timeout_expired,
10193 [0x31] =
10194 "State timeout occurred waiting for host to process received frames",
10195 [0x32] = no_state_complete,
10196 [0x33] =
10197 "Link partner completed the VerifyCap state, but the passing lanes do not meet the local link width policy",
10198 [0x34] = tx_out_of_policy,
Jakub Byczkowskie870b4a2017-09-26 07:00:04 -070010199 [0x35] = "Negotiated link width is mutually exclusive",
10200 [0x36] =
10201 "Timed out before receiving verifycap frames in VerifyCap.Exchange",
10202 [0x37] = "Unable to resolve secure data exchange",
Dean Luick6854c692016-07-25 13:38:56 -070010203};
10204
10205static const char *state_complete_reason_code_string(struct hfi1_pportdata *ppd,
10206 u32 code)
10207{
10208 const char *str = NULL;
10209
10210 if (code < ARRAY_SIZE(state_complete_reasons))
10211 str = state_complete_reasons[code];
10212
10213 if (str)
10214 return str;
10215 return "Reserved";
10216}
10217
10218/* describe the given last state complete frame */
10219static void decode_state_complete(struct hfi1_pportdata *ppd, u32 frame,
10220 const char *prefix)
10221{
10222 struct hfi1_devdata *dd = ppd->dd;
10223 u32 success;
10224 u32 state;
10225 u32 reason;
10226 u32 lanes;
10227
10228 /*
10229 * Decode frame:
10230 * [ 0: 0] - success
10231 * [ 3: 1] - state
10232 * [ 7: 4] - next state timeout
10233 * [15: 8] - reason code
10234 * [31:16] - lanes
10235 */
10236 success = frame & 0x1;
10237 state = (frame >> 1) & 0x7;
10238 reason = (frame >> 8) & 0xff;
10239 lanes = (frame >> 16) & 0xffff;
10240
10241 dd_dev_err(dd, "Last %s LNI state complete frame 0x%08x:\n",
10242 prefix, frame);
10243 dd_dev_err(dd, " last reported state state: %s (0x%x)\n",
10244 state_completed_string(state), state);
10245 dd_dev_err(dd, " state successfully completed: %s\n",
10246 success ? "yes" : "no");
10247 dd_dev_err(dd, " fail reason 0x%x: %s\n",
10248 reason, state_complete_reason_code_string(ppd, reason));
10249 dd_dev_err(dd, " passing lane mask: 0x%x", lanes);
10250}
10251
10252/*
10253 * Read the last state complete frames and explain them. This routine
10254 * expects to be called if the link went down during link negotiation
10255 * and initialization (LNI). That is, anywhere between polling and link up.
10256 */
10257static void check_lni_states(struct hfi1_pportdata *ppd)
10258{
10259 u32 last_local_state;
10260 u32 last_remote_state;
10261
10262 read_last_local_state(ppd->dd, &last_local_state);
10263 read_last_remote_state(ppd->dd, &last_remote_state);
10264
10265 /*
10266 * Don't report anything if there is nothing to report. A value of
10267 * 0 means the link was taken down while polling and there was no
10268 * training in-process.
10269 */
10270 if (last_local_state == 0 && last_remote_state == 0)
10271 return;
10272
10273 decode_state_complete(ppd, last_local_state, "transmitted");
10274 decode_state_complete(ppd, last_remote_state, "received");
10275}
10276
Dean Luickec8a1422017-03-20 17:24:39 -070010277/* wait for wait_ms for LINK_TRANSFER_ACTIVE to go to 1 */
10278static int wait_link_transfer_active(struct hfi1_devdata *dd, int wait_ms)
10279{
10280 u64 reg;
10281 unsigned long timeout;
10282
10283 /* watch LCB_STS_LINK_TRANSFER_ACTIVE */
10284 timeout = jiffies + msecs_to_jiffies(wait_ms);
10285 while (1) {
10286 reg = read_csr(dd, DC_LCB_STS_LINK_TRANSFER_ACTIVE);
10287 if (reg)
10288 break;
10289 if (time_after(jiffies, timeout)) {
10290 dd_dev_err(dd,
10291 "timeout waiting for LINK_TRANSFER_ACTIVE\n");
10292 return -ETIMEDOUT;
10293 }
10294 udelay(2);
10295 }
10296 return 0;
10297}
10298
10299/* called when the logical link state is not down as it should be */
10300static void force_logical_link_state_down(struct hfi1_pportdata *ppd)
10301{
10302 struct hfi1_devdata *dd = ppd->dd;
10303
10304 /*
10305 * Bring link up in LCB loopback
10306 */
10307 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 1);
10308 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK,
10309 DC_LCB_CFG_IGNORE_LOST_RCLK_EN_SMASK);
10310
10311 write_csr(dd, DC_LCB_CFG_LANE_WIDTH, 0);
10312 write_csr(dd, DC_LCB_CFG_REINIT_AS_SLAVE, 0);
10313 write_csr(dd, DC_LCB_CFG_CNT_FOR_SKIP_STALL, 0x110);
10314 write_csr(dd, DC_LCB_CFG_LOOPBACK, 0x2);
10315
10316 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 0);
10317 (void)read_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET);
10318 udelay(3);
10319 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP, 1);
10320 write_csr(dd, DC_LCB_CFG_RUN, 1ull << DC_LCB_CFG_RUN_EN_SHIFT);
10321
10322 wait_link_transfer_active(dd, 100);
10323
10324 /*
10325 * Bring the link down again.
10326 */
10327 write_csr(dd, DC_LCB_CFG_TX_FIFOS_RESET, 1);
10328 write_csr(dd, DC_LCB_CFG_ALLOW_LINK_UP, 0);
10329 write_csr(dd, DC_LCB_CFG_IGNORE_LOST_RCLK, 0);
10330
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070010331 dd_dev_info(ppd->dd, "logical state forced to LINK_DOWN\n");
Dean Luickec8a1422017-03-20 17:24:39 -070010332}
10333
Mike Marciniszyn77241052015-07-30 15:17:43 -040010334/*
10335 * Helper for set_link_state(). Do not call except from that routine.
10336 * Expects ppd->hls_mutex to be held.
10337 *
10338 * @rem_reason value to be sent to the neighbor
10339 *
10340 * LinkDownReasons only set if transition succeeds.
10341 */
10342static int goto_offline(struct hfi1_pportdata *ppd, u8 rem_reason)
10343{
10344 struct hfi1_devdata *dd = ppd->dd;
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010345 u32 previous_state;
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010346 int offline_state_ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010347 int ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010348
Michael J. Ruhl86884262017-03-20 17:24:51 -070010349 update_lcb_cache(dd);
10350
Mike Marciniszyn77241052015-07-30 15:17:43 -040010351 previous_state = ppd->host_link_state;
10352 ppd->host_link_state = HLS_GOING_OFFLINE;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010353
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010354 /* start offline transition */
10355 ret = set_physical_link_state(dd, (rem_reason << 8) | PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010356
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010357 if (ret != HCMD_SUCCESS) {
10358 dd_dev_err(dd,
10359 "Failed to transition to Offline link state, return %d\n",
10360 ret);
10361 return -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010362 }
Sebastian Sanchez913cc672017-07-29 08:44:01 -070010363 if (ppd->offline_disabled_reason ==
10364 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE))
10365 ppd->offline_disabled_reason =
10366 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_TRANSIENT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010367
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010368 offline_state_ret = wait_phys_link_offline_substates(ppd, 10000);
10369 if (offline_state_ret < 0)
10370 return offline_state_ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010371
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010372 /* Disabling AOC transmitters */
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010373 if (ppd->port_type == PORT_TYPE_QSFP &&
10374 ppd->qsfp_info.limiting_active &&
10375 qsfp_mod_present(ppd)) {
Dean Luick765a6fa2016-03-05 08:50:06 -080010376 int ret;
10377
10378 ret = acquire_chip_resource(dd, qsfp_resource(dd), QSFP_WAIT);
10379 if (ret == 0) {
10380 set_qsfp_tx(ppd, 0);
10381 release_chip_resource(dd, qsfp_resource(dd));
10382 } else {
10383 /* not fatal, but should warn */
10384 dd_dev_err(dd,
10385 "Unable to acquire lock to turn off QSFP TX\n");
10386 }
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080010387 }
10388
Mike Marciniszyn77241052015-07-30 15:17:43 -040010389 /*
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010390 * Wait for the offline.Quiet transition if it hasn't happened yet. It
10391 * can take a while for the link to go down.
10392 */
10393 if (offline_state_ret != PLS_OFFLINE_QUIET) {
10394 ret = wait_physical_linkstate(ppd, PLS_OFFLINE, 30000);
10395 if (ret < 0)
10396 return ret;
10397 }
10398
10399 /*
10400 * Now in charge of LCB - must be after the physical state is
10401 * offline.quiet and before host_link_state is changed.
10402 */
10403 set_host_lcb_access(dd);
10404 write_csr(dd, DC_LCB_ERR_EN, ~0ull); /* watch LCB errors */
10405
10406 /* make sure the logical state is also down */
10407 ret = wait_logical_linkstate(ppd, IB_PORT_DOWN, 1000);
10408 if (ret)
10409 force_logical_link_state_down(ppd);
10410
10411 ppd->host_link_state = HLS_LINK_COOLDOWN; /* LCB access allowed */
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010412 update_statusp(ppd, IB_PORT_DOWN);
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070010413
10414 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -040010415 * The LNI has a mandatory wait time after the physical state
10416 * moves to Offline.Quiet. The wait time may be different
10417 * depending on how the link went down. The 8051 firmware
10418 * will observe the needed wait time and only move to ready
10419 * when that is completed. The largest of the quiet timeouts
Dean Luick05087f3b2015-12-01 15:38:16 -050010420 * is 6s, so wait that long and then at least 0.5s more for
10421 * other transitions, and another 0.5s for a buffer.
Mike Marciniszyn77241052015-07-30 15:17:43 -040010422 */
Dean Luick05087f3b2015-12-01 15:38:16 -050010423 ret = wait_fm_ready(dd, 7000);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010424 if (ret) {
10425 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010426 "After going offline, timed out waiting for the 8051 to become ready to accept host requests\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040010427 /* state is really offline, so make it so */
10428 ppd->host_link_state = HLS_DN_OFFLINE;
10429 return ret;
10430 }
10431
10432 /*
10433 * The state is now offline and the 8051 is ready to accept host
10434 * requests.
10435 * - change our state
10436 * - notify others if we were previously in a linkup state
10437 */
10438 ppd->host_link_state = HLS_DN_OFFLINE;
10439 if (previous_state & HLS_UP) {
10440 /* went down while link was up */
10441 handle_linkup_change(dd, 0);
10442 } else if (previous_state
10443 & (HLS_DN_POLL | HLS_VERIFY_CAP | HLS_GOING_UP)) {
10444 /* went down while attempting link up */
Dean Luick6854c692016-07-25 13:38:56 -070010445 check_lni_states(ppd);
Sebastian Sanchez30e10522017-09-26 06:06:03 -070010446
10447 /* The QSFP doesn't need to be reset on LNI failure */
10448 ppd->qsfp_info.reset_needed = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010449 }
10450
10451 /* the active link width (downgrade) is 0 on link down */
10452 ppd->link_width_active = 0;
10453 ppd->link_width_downgrade_tx_active = 0;
10454 ppd->link_width_downgrade_rx_active = 0;
10455 ppd->current_egress_rate = 0;
10456 return 0;
10457}
10458
10459/* return the link state name */
10460static const char *link_state_name(u32 state)
10461{
10462 const char *name;
10463 int n = ilog2(state);
10464 static const char * const names[] = {
10465 [__HLS_UP_INIT_BP] = "INIT",
10466 [__HLS_UP_ARMED_BP] = "ARMED",
10467 [__HLS_UP_ACTIVE_BP] = "ACTIVE",
10468 [__HLS_DN_DOWNDEF_BP] = "DOWNDEF",
10469 [__HLS_DN_POLL_BP] = "POLL",
10470 [__HLS_DN_DISABLE_BP] = "DISABLE",
10471 [__HLS_DN_OFFLINE_BP] = "OFFLINE",
10472 [__HLS_VERIFY_CAP_BP] = "VERIFY_CAP",
10473 [__HLS_GOING_UP_BP] = "GOING_UP",
10474 [__HLS_GOING_OFFLINE_BP] = "GOING_OFFLINE",
10475 [__HLS_LINK_COOLDOWN_BP] = "LINK_COOLDOWN"
10476 };
10477
10478 name = n < ARRAY_SIZE(names) ? names[n] : NULL;
10479 return name ? name : "unknown";
10480}
10481
10482/* return the link state reason name */
10483static const char *link_state_reason_name(struct hfi1_pportdata *ppd, u32 state)
10484{
10485 if (state == HLS_UP_INIT) {
10486 switch (ppd->linkinit_reason) {
10487 case OPA_LINKINIT_REASON_LINKUP:
10488 return "(LINKUP)";
10489 case OPA_LINKINIT_REASON_FLAPPING:
10490 return "(FLAPPING)";
10491 case OPA_LINKINIT_OUTSIDE_POLICY:
10492 return "(OUTSIDE_POLICY)";
10493 case OPA_LINKINIT_QUARANTINED:
10494 return "(QUARANTINED)";
10495 case OPA_LINKINIT_INSUFIC_CAPABILITY:
10496 return "(INSUFIC_CAPABILITY)";
10497 default:
10498 break;
10499 }
10500 }
10501 return "";
10502}
10503
10504/*
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010505 * driver_pstate - convert the driver's notion of a port's
Mike Marciniszyn77241052015-07-30 15:17:43 -040010506 * state (an HLS_*) into a physical state (a {IB,OPA}_PORTPHYSSTATE_*).
10507 * Return -1 (converted to a u32) to indicate error.
10508 */
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010509u32 driver_pstate(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040010510{
10511 switch (ppd->host_link_state) {
10512 case HLS_UP_INIT:
10513 case HLS_UP_ARMED:
10514 case HLS_UP_ACTIVE:
10515 return IB_PORTPHYSSTATE_LINKUP;
10516 case HLS_DN_POLL:
10517 return IB_PORTPHYSSTATE_POLLING;
10518 case HLS_DN_DISABLE:
10519 return IB_PORTPHYSSTATE_DISABLED;
10520 case HLS_DN_OFFLINE:
10521 return OPA_PORTPHYSSTATE_OFFLINE;
10522 case HLS_VERIFY_CAP:
Michael J. Ruhle4607072018-05-02 06:42:59 -070010523 return IB_PORTPHYSSTATE_TRAINING;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010524 case HLS_GOING_UP:
Michael J. Ruhle4607072018-05-02 06:42:59 -070010525 return IB_PORTPHYSSTATE_TRAINING;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010526 case HLS_GOING_OFFLINE:
10527 return OPA_PORTPHYSSTATE_OFFLINE;
10528 case HLS_LINK_COOLDOWN:
10529 return OPA_PORTPHYSSTATE_OFFLINE;
10530 case HLS_DN_DOWNDEF:
10531 default:
10532 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10533 ppd->host_link_state);
10534 return -1;
10535 }
10536}
10537
10538/*
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070010539 * driver_lstate - convert the driver's notion of a port's
Mike Marciniszyn77241052015-07-30 15:17:43 -040010540 * state (an HLS_*) into a logical state (a IB_PORT_*). Return -1
10541 * (converted to a u32) to indicate error.
10542 */
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070010543u32 driver_lstate(struct hfi1_pportdata *ppd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040010544{
Easwar Hariharan0c7f77a2016-05-12 10:22:33 -070010545 if (ppd->host_link_state && (ppd->host_link_state & HLS_DOWN))
Mike Marciniszyn77241052015-07-30 15:17:43 -040010546 return IB_PORT_DOWN;
10547
10548 switch (ppd->host_link_state & HLS_UP) {
10549 case HLS_UP_INIT:
10550 return IB_PORT_INIT;
10551 case HLS_UP_ARMED:
10552 return IB_PORT_ARMED;
10553 case HLS_UP_ACTIVE:
10554 return IB_PORT_ACTIVE;
10555 default:
10556 dd_dev_err(ppd->dd, "invalid host_link_state 0x%x\n",
10557 ppd->host_link_state);
10558 return -1;
10559 }
10560}
10561
10562void set_link_down_reason(struct hfi1_pportdata *ppd, u8 lcl_reason,
10563 u8 neigh_reason, u8 rem_reason)
10564{
10565 if (ppd->local_link_down_reason.latest == 0 &&
10566 ppd->neigh_link_down_reason.latest == 0) {
10567 ppd->local_link_down_reason.latest = lcl_reason;
10568 ppd->neigh_link_down_reason.latest = neigh_reason;
10569 ppd->remote_link_down_reason = rem_reason;
10570 }
10571}
10572
10573/*
Alex Estrin5e2d6762017-07-24 07:46:36 -070010574 * Verify if BCT for data VLs is non-zero.
10575 */
10576static inline bool data_vls_operational(struct hfi1_pportdata *ppd)
10577{
10578 return !!ppd->actual_vls_operational;
10579}
10580
10581/*
Mike Marciniszyn77241052015-07-30 15:17:43 -040010582 * Change the physical and/or logical link state.
10583 *
10584 * Do not call this routine while inside an interrupt. It contains
10585 * calls to routines that can take multiple seconds to finish.
10586 *
10587 * Returns 0 on success, -errno on failure.
10588 */
10589int set_link_state(struct hfi1_pportdata *ppd, u32 state)
10590{
10591 struct hfi1_devdata *dd = ppd->dd;
10592 struct ib_event event = {.device = NULL};
10593 int ret1, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010594 int orig_new_state, poll_bounce;
10595
10596 mutex_lock(&ppd->hls_lock);
10597
10598 orig_new_state = state;
10599 if (state == HLS_DN_DOWNDEF)
Ira Weiny156d24d2017-09-26 07:00:43 -070010600 state = HLS_DEFAULT;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010601
10602 /* interpret poll -> poll as a link bounce */
Jubin Johnd0d236e2016-02-14 20:20:15 -080010603 poll_bounce = ppd->host_link_state == HLS_DN_POLL &&
10604 state == HLS_DN_POLL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010605
10606 dd_dev_info(dd, "%s: current %s, new %s %s%s\n", __func__,
Jubin John17fb4f22016-02-14 20:21:52 -080010607 link_state_name(ppd->host_link_state),
10608 link_state_name(orig_new_state),
10609 poll_bounce ? "(bounce) " : "",
10610 link_state_reason_name(ppd, state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010611
Mike Marciniszyn77241052015-07-30 15:17:43 -040010612 /*
10613 * If we're going to a (HLS_*) link state that implies the logical
10614 * link state is neither of (IB_PORT_ARMED, IB_PORT_ACTIVE), then
10615 * reset is_sm_config_started to 0.
10616 */
10617 if (!(state & (HLS_UP_ARMED | HLS_UP_ACTIVE)))
10618 ppd->is_sm_config_started = 0;
10619
10620 /*
10621 * Do nothing if the states match. Let a poll to poll link bounce
10622 * go through.
10623 */
10624 if (ppd->host_link_state == state && !poll_bounce)
10625 goto done;
10626
10627 switch (state) {
10628 case HLS_UP_INIT:
Jubin Johnd0d236e2016-02-14 20:20:15 -080010629 if (ppd->host_link_state == HLS_DN_POLL &&
10630 (quick_linkup || dd->icode == ICODE_FUNCTIONAL_SIMULATOR)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010631 /*
10632 * Quick link up jumps from polling to here.
10633 *
10634 * Whether in normal or loopback mode, the
10635 * simulator jumps from polling to link up.
10636 * Accept that here.
10637 */
Jubin John17fb4f22016-02-14 20:21:52 -080010638 /* OK */
Mike Marciniszyn77241052015-07-30 15:17:43 -040010639 } else if (ppd->host_link_state != HLS_GOING_UP) {
10640 goto unexpected;
10641 }
10642
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070010643 /*
10644 * Wait for Link_Up physical state.
10645 * Physical and Logical states should already be
10646 * be transitioned to LinkUp and LinkInit respectively.
10647 */
10648 ret = wait_physical_linkstate(ppd, PLS_LINKUP, 1000);
10649 if (ret) {
10650 dd_dev_err(dd,
10651 "%s: physical state did not change to LINK-UP\n",
10652 __func__);
10653 break;
10654 }
10655
Mike Marciniszyn77241052015-07-30 15:17:43 -040010656 ret = wait_logical_linkstate(ppd, IB_PORT_INIT, 1000);
10657 if (ret) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010658 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010659 "%s: logical state did not change to INIT\n",
10660 __func__);
Jan Sokolowski59ec8732017-07-24 07:46:18 -070010661 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010662 }
Jan Sokolowski59ec8732017-07-24 07:46:18 -070010663
10664 /* clear old transient LINKINIT_REASON code */
10665 if (ppd->linkinit_reason >= OPA_LINKINIT_REASON_CLEAR)
10666 ppd->linkinit_reason =
10667 OPA_LINKINIT_REASON_LINKUP;
10668
10669 /* enable the port */
10670 add_rcvctrl(dd, RCV_CTRL_RCV_PORT_ENABLE_SMASK);
10671
10672 handle_linkup_change(dd, 1);
Kamenee Arumugam07190072018-02-01 10:52:28 -080010673
10674 /*
10675 * After link up, a new link width will have been set.
10676 * Update the xmit counters with regards to the new
10677 * link width.
10678 */
10679 update_xmit_counters(ppd, ppd->link_width_active);
10680
Jan Sokolowski59ec8732017-07-24 07:46:18 -070010681 ppd->host_link_state = HLS_UP_INIT;
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010682 update_statusp(ppd, IB_PORT_INIT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010683 break;
10684 case HLS_UP_ARMED:
10685 if (ppd->host_link_state != HLS_UP_INIT)
10686 goto unexpected;
10687
Alex Estrin5e2d6762017-07-24 07:46:36 -070010688 if (!data_vls_operational(ppd)) {
10689 dd_dev_err(dd,
10690 "%s: data VLs not operational\n", __func__);
10691 ret = -EINVAL;
10692 break;
10693 }
10694
Mike Marciniszyn77241052015-07-30 15:17:43 -040010695 set_logical_state(dd, LSTATE_ARMED);
10696 ret = wait_logical_linkstate(ppd, IB_PORT_ARMED, 1000);
10697 if (ret) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010698 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010699 "%s: logical state did not change to ARMED\n",
10700 __func__);
Alex Estrin5efd40c2017-07-29 08:43:20 -070010701 break;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010702 }
Alex Estrin5efd40c2017-07-29 08:43:20 -070010703 ppd->host_link_state = HLS_UP_ARMED;
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010704 update_statusp(ppd, IB_PORT_ARMED);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010705 /*
10706 * The simulator does not currently implement SMA messages,
10707 * so neighbor_normal is not set. Set it here when we first
10708 * move to Armed.
10709 */
10710 if (dd->icode == ICODE_FUNCTIONAL_SIMULATOR)
10711 ppd->neighbor_normal = 1;
10712 break;
10713 case HLS_UP_ACTIVE:
10714 if (ppd->host_link_state != HLS_UP_ARMED)
10715 goto unexpected;
10716
Mike Marciniszyn77241052015-07-30 15:17:43 -040010717 set_logical_state(dd, LSTATE_ACTIVE);
10718 ret = wait_logical_linkstate(ppd, IB_PORT_ACTIVE, 1000);
10719 if (ret) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010720 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010721 "%s: logical state did not change to ACTIVE\n",
10722 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010723 } else {
Mike Marciniszyn77241052015-07-30 15:17:43 -040010724 /* tell all engines to go running */
10725 sdma_all_running(dd);
Alex Estrin5efd40c2017-07-29 08:43:20 -070010726 ppd->host_link_state = HLS_UP_ACTIVE;
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070010727 update_statusp(ppd, IB_PORT_ACTIVE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010728
10729 /* Signal the IB layer that the port has went active */
Dennis Dalessandroec3f2c12016-01-19 14:41:33 -080010730 event.device = &dd->verbs_dev.rdi.ibdev;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010731 event.element.port_num = ppd->port;
10732 event.event = IB_EVENT_PORT_ACTIVE;
10733 }
10734 break;
10735 case HLS_DN_POLL:
10736 if ((ppd->host_link_state == HLS_DN_DISABLE ||
10737 ppd->host_link_state == HLS_DN_OFFLINE) &&
10738 dd->dc_shutdown)
10739 dc_start(dd);
10740 /* Hand LED control to the DC */
10741 write_csr(dd, DCC_CFG_LED_CNTRL, 0);
10742
10743 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10744 u8 tmp = ppd->link_enabled;
10745
10746 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10747 if (ret) {
10748 ppd->link_enabled = tmp;
10749 break;
10750 }
10751 ppd->remote_link_down_reason = 0;
10752
10753 if (ppd->driver_link_ready)
10754 ppd->link_enabled = 1;
10755 }
10756
Jim Snowfb9036d2016-01-11 18:32:21 -050010757 set_all_slowpath(ppd->dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010758 ret = set_local_link_attributes(ppd);
10759 if (ret)
10760 break;
10761
10762 ppd->port_error_action = 0;
10763 ppd->host_link_state = HLS_DN_POLL;
10764
10765 if (quick_linkup) {
10766 /* quick linkup does not go into polling */
10767 ret = do_quick_linkup(dd);
10768 } else {
10769 ret1 = set_physical_link_state(dd, PLS_POLLING);
10770 if (ret1 != HCMD_SUCCESS) {
10771 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010772 "Failed to transition to Polling link state, return 0x%x\n",
10773 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010774 ret = -EINVAL;
10775 }
10776 }
Bryan Morgana9c05e32016-02-03 14:30:49 -080010777 ppd->offline_disabled_reason =
10778 HFI1_ODR_MASK(OPA_LINKDOWN_REASON_NONE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010779 /*
10780 * If an error occurred above, go back to offline. The
10781 * caller may reschedule another attempt.
10782 */
10783 if (ret)
10784 goto_offline(ppd, 0);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070010785 else
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010786 log_physical_state(ppd, PLS_POLLING);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010787 break;
10788 case HLS_DN_DISABLE:
10789 /* link is disabled */
10790 ppd->link_enabled = 0;
10791
10792 /* allow any state to transition to disabled */
10793
10794 /* must transition to offline first */
10795 if (ppd->host_link_state != HLS_DN_OFFLINE) {
10796 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10797 if (ret)
10798 break;
10799 ppd->remote_link_down_reason = 0;
10800 }
10801
Michael J. Ruhldb069ec2017-02-08 05:28:13 -080010802 if (!dd->dc_shutdown) {
10803 ret1 = set_physical_link_state(dd, PLS_DISABLED);
10804 if (ret1 != HCMD_SUCCESS) {
10805 dd_dev_err(dd,
10806 "Failed to transition to Disabled link state, return 0x%x\n",
10807 ret1);
10808 ret = -EINVAL;
10809 break;
10810 }
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070010811 ret = wait_physical_linkstate(ppd, PLS_DISABLED, 10000);
10812 if (ret) {
10813 dd_dev_err(dd,
10814 "%s: physical state did not change to DISABLED\n",
10815 __func__);
10816 break;
10817 }
Michael J. Ruhldb069ec2017-02-08 05:28:13 -080010818 dc_shutdown(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010819 }
10820 ppd->host_link_state = HLS_DN_DISABLE;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010821 break;
10822 case HLS_DN_OFFLINE:
10823 if (ppd->host_link_state == HLS_DN_DISABLE)
10824 dc_start(dd);
10825
10826 /* allow any state to transition to offline */
10827 ret = goto_offline(ppd, ppd->remote_link_down_reason);
10828 if (!ret)
10829 ppd->remote_link_down_reason = 0;
10830 break;
10831 case HLS_VERIFY_CAP:
10832 if (ppd->host_link_state != HLS_DN_POLL)
10833 goto unexpected;
10834 ppd->host_link_state = HLS_VERIFY_CAP;
Jakub Byczkowskid392a672017-08-13 08:08:52 -070010835 log_physical_state(ppd, PLS_CONFIGPHY_VERIFYCAP);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010836 break;
10837 case HLS_GOING_UP:
10838 if (ppd->host_link_state != HLS_VERIFY_CAP)
10839 goto unexpected;
10840
10841 ret1 = set_physical_link_state(dd, PLS_LINKUP);
10842 if (ret1 != HCMD_SUCCESS) {
10843 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010844 "Failed to transition to link up state, return 0x%x\n",
10845 ret1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010846 ret = -EINVAL;
10847 break;
10848 }
10849 ppd->host_link_state = HLS_GOING_UP;
10850 break;
10851
10852 case HLS_GOING_OFFLINE: /* transient within goto_offline() */
10853 case HLS_LINK_COOLDOWN: /* transient within goto_offline() */
10854 default:
10855 dd_dev_info(dd, "%s: state 0x%x: not supported\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010856 __func__, state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010857 ret = -EINVAL;
10858 break;
10859 }
10860
Mike Marciniszyn77241052015-07-30 15:17:43 -040010861 goto done;
10862
10863unexpected:
10864 dd_dev_err(dd, "%s: unexpected state transition from %s to %s\n",
Jubin John17fb4f22016-02-14 20:21:52 -080010865 __func__, link_state_name(ppd->host_link_state),
10866 link_state_name(state));
Mike Marciniszyn77241052015-07-30 15:17:43 -040010867 ret = -EINVAL;
10868
10869done:
10870 mutex_unlock(&ppd->hls_lock);
10871
10872 if (event.device)
10873 ib_dispatch_event(&event);
10874
10875 return ret;
10876}
10877
10878int hfi1_set_ib_cfg(struct hfi1_pportdata *ppd, int which, u32 val)
10879{
10880 u64 reg;
10881 int ret = 0;
10882
10883 switch (which) {
10884 case HFI1_IB_CFG_LIDLMC:
10885 set_lidlmc(ppd);
10886 break;
10887 case HFI1_IB_CFG_VL_HIGH_LIMIT:
10888 /*
10889 * The VL Arbitrator high limit is sent in units of 4k
10890 * bytes, while HFI stores it in units of 64 bytes.
10891 */
Jubin John8638b772016-02-14 20:19:24 -080010892 val *= 4096 / 64;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010893 reg = ((u64)val & SEND_HIGH_PRIORITY_LIMIT_LIMIT_MASK)
10894 << SEND_HIGH_PRIORITY_LIMIT_LIMIT_SHIFT;
10895 write_csr(ppd->dd, SEND_HIGH_PRIORITY_LIMIT, reg);
10896 break;
10897 case HFI1_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
10898 /* HFI only supports POLL as the default link down state */
10899 if (val != HLS_DN_POLL)
10900 ret = -EINVAL;
10901 break;
10902 case HFI1_IB_CFG_OP_VLS:
10903 if (ppd->vls_operational != val) {
10904 ppd->vls_operational = val;
10905 if (!ppd->port)
10906 ret = -EINVAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040010907 }
10908 break;
10909 /*
10910 * For link width, link width downgrade, and speed enable, always AND
10911 * the setting with what is actually supported. This has two benefits.
10912 * First, enabled can't have unsupported values, no matter what the
10913 * SM or FM might want. Second, the ALL_SUPPORTED wildcards that mean
10914 * "fill in with your supported value" have all the bits in the
10915 * field set, so simply ANDing with supported has the desired result.
10916 */
10917 case HFI1_IB_CFG_LWID_ENB: /* set allowed Link-width */
10918 ppd->link_width_enabled = val & ppd->link_width_supported;
10919 break;
10920 case HFI1_IB_CFG_LWID_DG_ENB: /* set allowed link width downgrade */
10921 ppd->link_width_downgrade_enabled =
10922 val & ppd->link_width_downgrade_supported;
10923 break;
10924 case HFI1_IB_CFG_SPD_ENB: /* allowed Link speeds */
10925 ppd->link_speed_enabled = val & ppd->link_speed_supported;
10926 break;
10927 case HFI1_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
10928 /*
10929 * HFI does not follow IB specs, save this value
10930 * so we can report it, if asked.
10931 */
10932 ppd->overrun_threshold = val;
10933 break;
10934 case HFI1_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
10935 /*
10936 * HFI does not follow IB specs, save this value
10937 * so we can report it, if asked.
10938 */
10939 ppd->phy_error_threshold = val;
10940 break;
10941
10942 case HFI1_IB_CFG_MTU:
10943 set_send_length(ppd);
10944 break;
10945
10946 case HFI1_IB_CFG_PKEYS:
10947 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
10948 set_partition_keys(ppd);
10949 break;
10950
10951 default:
10952 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
10953 dd_dev_info(ppd->dd,
Jubin John17fb4f22016-02-14 20:21:52 -080010954 "%s: which %s, val 0x%x: not implemented\n",
10955 __func__, ib_cfg_name(which), val);
Mike Marciniszyn77241052015-07-30 15:17:43 -040010956 break;
10957 }
10958 return ret;
10959}
10960
10961/* begin functions related to vl arbitration table caching */
10962static void init_vl_arb_caches(struct hfi1_pportdata *ppd)
10963{
10964 int i;
10965
10966 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10967 VL_ARB_LOW_PRIO_TABLE_SIZE);
10968 BUILD_BUG_ON(VL_ARB_TABLE_SIZE !=
10969 VL_ARB_HIGH_PRIO_TABLE_SIZE);
10970
10971 /*
10972 * Note that we always return values directly from the
10973 * 'vl_arb_cache' (and do no CSR reads) in response to a
10974 * 'Get(VLArbTable)'. This is obviously correct after a
10975 * 'Set(VLArbTable)', since the cache will then be up to
10976 * date. But it's also correct prior to any 'Set(VLArbTable)'
10977 * since then both the cache, and the relevant h/w registers
10978 * will be zeroed.
10979 */
10980
10981 for (i = 0; i < MAX_PRIO_TABLE; i++)
10982 spin_lock_init(&ppd->vl_arb_cache[i].lock);
10983}
10984
10985/*
10986 * vl_arb_lock_cache
10987 *
10988 * All other vl_arb_* functions should be called only after locking
10989 * the cache.
10990 */
10991static inline struct vl_arb_cache *
10992vl_arb_lock_cache(struct hfi1_pportdata *ppd, int idx)
10993{
10994 if (idx != LO_PRIO_TABLE && idx != HI_PRIO_TABLE)
10995 return NULL;
10996 spin_lock(&ppd->vl_arb_cache[idx].lock);
10997 return &ppd->vl_arb_cache[idx];
10998}
10999
11000static inline void vl_arb_unlock_cache(struct hfi1_pportdata *ppd, int idx)
11001{
11002 spin_unlock(&ppd->vl_arb_cache[idx].lock);
11003}
11004
11005static void vl_arb_get_cache(struct vl_arb_cache *cache,
11006 struct ib_vl_weight_elem *vl)
11007{
11008 memcpy(vl, cache->table, VL_ARB_TABLE_SIZE * sizeof(*vl));
11009}
11010
11011static void vl_arb_set_cache(struct vl_arb_cache *cache,
11012 struct ib_vl_weight_elem *vl)
11013{
11014 memcpy(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
11015}
11016
11017static int vl_arb_match_cache(struct vl_arb_cache *cache,
11018 struct ib_vl_weight_elem *vl)
11019{
11020 return !memcmp(cache->table, vl, VL_ARB_TABLE_SIZE * sizeof(*vl));
11021}
Jubin Johnf4d507c2016-02-14 20:20:25 -080011022
Mike Marciniszyn77241052015-07-30 15:17:43 -040011023/* end functions related to vl arbitration table caching */
11024
11025static int set_vl_weights(struct hfi1_pportdata *ppd, u32 target,
11026 u32 size, struct ib_vl_weight_elem *vl)
11027{
11028 struct hfi1_devdata *dd = ppd->dd;
11029 u64 reg;
11030 unsigned int i, is_up = 0;
11031 int drain, ret = 0;
11032
11033 mutex_lock(&ppd->hls_lock);
11034
11035 if (ppd->host_link_state & HLS_UP)
11036 is_up = 1;
11037
11038 drain = !is_ax(dd) && is_up;
11039
11040 if (drain)
11041 /*
11042 * Before adjusting VL arbitration weights, empty per-VL
11043 * FIFOs, otherwise a packet whose VL weight is being
11044 * set to 0 could get stuck in a FIFO with no chance to
11045 * egress.
11046 */
11047 ret = stop_drain_data_vls(dd);
11048
11049 if (ret) {
11050 dd_dev_err(
11051 dd,
11052 "%s: cannot stop/drain VLs - refusing to change VL arbitration weights\n",
11053 __func__);
11054 goto err;
11055 }
11056
11057 for (i = 0; i < size; i++, vl++) {
11058 /*
11059 * NOTE: The low priority shift and mask are used here, but
11060 * they are the same for both the low and high registers.
11061 */
11062 reg = (((u64)vl->vl & SEND_LOW_PRIORITY_LIST_VL_MASK)
11063 << SEND_LOW_PRIORITY_LIST_VL_SHIFT)
11064 | (((u64)vl->weight
11065 & SEND_LOW_PRIORITY_LIST_WEIGHT_MASK)
11066 << SEND_LOW_PRIORITY_LIST_WEIGHT_SHIFT);
11067 write_csr(dd, target + (i * 8), reg);
11068 }
11069 pio_send_control(dd, PSC_GLOBAL_VLARB_ENABLE);
11070
11071 if (drain)
11072 open_fill_data_vls(dd); /* reopen all VLs */
11073
11074err:
11075 mutex_unlock(&ppd->hls_lock);
11076
11077 return ret;
11078}
11079
11080/*
11081 * Read one credit merge VL register.
11082 */
11083static void read_one_cm_vl(struct hfi1_devdata *dd, u32 csr,
11084 struct vl_limit *vll)
11085{
11086 u64 reg = read_csr(dd, csr);
11087
11088 vll->dedicated = cpu_to_be16(
11089 (reg >> SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT)
11090 & SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_MASK);
11091 vll->shared = cpu_to_be16(
11092 (reg >> SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT)
11093 & SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_MASK);
11094}
11095
11096/*
11097 * Read the current credit merge limits.
11098 */
11099static int get_buffer_control(struct hfi1_devdata *dd,
11100 struct buffer_control *bc, u16 *overall_limit)
11101{
11102 u64 reg;
11103 int i;
11104
11105 /* not all entries are filled in */
11106 memset(bc, 0, sizeof(*bc));
11107
11108 /* OPA and HFI have a 1-1 mapping */
11109 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080011110 read_one_cm_vl(dd, SEND_CM_CREDIT_VL + (8 * i), &bc->vl[i]);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011111
11112 /* NOTE: assumes that VL* and VL15 CSRs are bit-wise identical */
11113 read_one_cm_vl(dd, SEND_CM_CREDIT_VL15, &bc->vl[15]);
11114
11115 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
11116 bc->overall_shared_limit = cpu_to_be16(
11117 (reg >> SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT)
11118 & SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_MASK);
11119 if (overall_limit)
11120 *overall_limit = (reg
11121 >> SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT)
11122 & SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_MASK;
11123 return sizeof(struct buffer_control);
11124}
11125
11126static int get_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
11127{
11128 u64 reg;
11129 int i;
11130
11131 /* each register contains 16 SC->VLnt mappings, 4 bits each */
11132 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_15_0);
11133 for (i = 0; i < sizeof(u64); i++) {
11134 u8 byte = *(((u8 *)&reg) + i);
11135
11136 dp->vlnt[2 * i] = byte & 0xf;
11137 dp->vlnt[(2 * i) + 1] = (byte & 0xf0) >> 4;
11138 }
11139
11140 reg = read_csr(dd, DCC_CFG_SC_VL_TABLE_31_16);
11141 for (i = 0; i < sizeof(u64); i++) {
11142 u8 byte = *(((u8 *)&reg) + i);
11143
11144 dp->vlnt[16 + (2 * i)] = byte & 0xf;
11145 dp->vlnt[16 + (2 * i) + 1] = (byte & 0xf0) >> 4;
11146 }
11147 return sizeof(struct sc2vlnt);
11148}
11149
11150static void get_vlarb_preempt(struct hfi1_devdata *dd, u32 nelems,
11151 struct ib_vl_weight_elem *vl)
11152{
11153 unsigned int i;
11154
11155 for (i = 0; i < nelems; i++, vl++) {
11156 vl->vl = 0xf;
11157 vl->weight = 0;
11158 }
11159}
11160
11161static void set_sc2vlnt(struct hfi1_devdata *dd, struct sc2vlnt *dp)
11162{
11163 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0,
Jubin John17fb4f22016-02-14 20:21:52 -080011164 DC_SC_VL_VAL(15_0,
11165 0, dp->vlnt[0] & 0xf,
11166 1, dp->vlnt[1] & 0xf,
11167 2, dp->vlnt[2] & 0xf,
11168 3, dp->vlnt[3] & 0xf,
11169 4, dp->vlnt[4] & 0xf,
11170 5, dp->vlnt[5] & 0xf,
11171 6, dp->vlnt[6] & 0xf,
11172 7, dp->vlnt[7] & 0xf,
11173 8, dp->vlnt[8] & 0xf,
11174 9, dp->vlnt[9] & 0xf,
11175 10, dp->vlnt[10] & 0xf,
11176 11, dp->vlnt[11] & 0xf,
11177 12, dp->vlnt[12] & 0xf,
11178 13, dp->vlnt[13] & 0xf,
11179 14, dp->vlnt[14] & 0xf,
11180 15, dp->vlnt[15] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011181 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16,
Jubin John17fb4f22016-02-14 20:21:52 -080011182 DC_SC_VL_VAL(31_16,
11183 16, dp->vlnt[16] & 0xf,
11184 17, dp->vlnt[17] & 0xf,
11185 18, dp->vlnt[18] & 0xf,
11186 19, dp->vlnt[19] & 0xf,
11187 20, dp->vlnt[20] & 0xf,
11188 21, dp->vlnt[21] & 0xf,
11189 22, dp->vlnt[22] & 0xf,
11190 23, dp->vlnt[23] & 0xf,
11191 24, dp->vlnt[24] & 0xf,
11192 25, dp->vlnt[25] & 0xf,
11193 26, dp->vlnt[26] & 0xf,
11194 27, dp->vlnt[27] & 0xf,
11195 28, dp->vlnt[28] & 0xf,
11196 29, dp->vlnt[29] & 0xf,
11197 30, dp->vlnt[30] & 0xf,
11198 31, dp->vlnt[31] & 0xf));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011199}
11200
11201static void nonzero_msg(struct hfi1_devdata *dd, int idx, const char *what,
11202 u16 limit)
11203{
11204 if (limit != 0)
11205 dd_dev_info(dd, "Invalid %s limit %d on VL %d, ignoring\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011206 what, (int)limit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011207}
11208
11209/* change only the shared limit portion of SendCmGLobalCredit */
11210static void set_global_shared(struct hfi1_devdata *dd, u16 limit)
11211{
11212 u64 reg;
11213
11214 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
11215 reg &= ~SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SMASK;
11216 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_SHARED_LIMIT_SHIFT;
11217 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
11218}
11219
11220/* change only the total credit limit portion of SendCmGLobalCredit */
11221static void set_global_limit(struct hfi1_devdata *dd, u16 limit)
11222{
11223 u64 reg;
11224
11225 reg = read_csr(dd, SEND_CM_GLOBAL_CREDIT);
11226 reg &= ~SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SMASK;
11227 reg |= (u64)limit << SEND_CM_GLOBAL_CREDIT_TOTAL_CREDIT_LIMIT_SHIFT;
11228 write_csr(dd, SEND_CM_GLOBAL_CREDIT, reg);
11229}
11230
11231/* set the given per-VL shared limit */
11232static void set_vl_shared(struct hfi1_devdata *dd, int vl, u16 limit)
11233{
11234 u64 reg;
11235 u32 addr;
11236
11237 if (vl < TXE_NUM_DATA_VL)
11238 addr = SEND_CM_CREDIT_VL + (8 * vl);
11239 else
11240 addr = SEND_CM_CREDIT_VL15;
11241
11242 reg = read_csr(dd, addr);
11243 reg &= ~SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SMASK;
11244 reg |= (u64)limit << SEND_CM_CREDIT_VL_SHARED_LIMIT_VL_SHIFT;
11245 write_csr(dd, addr, reg);
11246}
11247
11248/* set the given per-VL dedicated limit */
11249static void set_vl_dedicated(struct hfi1_devdata *dd, int vl, u16 limit)
11250{
11251 u64 reg;
11252 u32 addr;
11253
11254 if (vl < TXE_NUM_DATA_VL)
11255 addr = SEND_CM_CREDIT_VL + (8 * vl);
11256 else
11257 addr = SEND_CM_CREDIT_VL15;
11258
11259 reg = read_csr(dd, addr);
11260 reg &= ~SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SMASK;
11261 reg |= (u64)limit << SEND_CM_CREDIT_VL_DEDICATED_LIMIT_VL_SHIFT;
11262 write_csr(dd, addr, reg);
11263}
11264
11265/* spin until the given per-VL status mask bits clear */
11266static void wait_for_vl_status_clear(struct hfi1_devdata *dd, u64 mask,
11267 const char *which)
11268{
11269 unsigned long timeout;
11270 u64 reg;
11271
11272 timeout = jiffies + msecs_to_jiffies(VL_STATUS_CLEAR_TIMEOUT);
11273 while (1) {
11274 reg = read_csr(dd, SEND_CM_CREDIT_USED_STATUS) & mask;
11275
11276 if (reg == 0)
11277 return; /* success */
11278 if (time_after(jiffies, timeout))
11279 break; /* timed out */
11280 udelay(1);
11281 }
11282
11283 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011284 "%s credit change status not clearing after %dms, mask 0x%llx, not clear 0x%llx\n",
11285 which, VL_STATUS_CLEAR_TIMEOUT, mask, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011286 /*
11287 * If this occurs, it is likely there was a credit loss on the link.
11288 * The only recovery from that is a link bounce.
11289 */
11290 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011291 "Continuing anyway. A credit loss may occur. Suggest a link bounce\n");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011292}
11293
11294/*
11295 * The number of credits on the VLs may be changed while everything
11296 * is "live", but the following algorithm must be followed due to
11297 * how the hardware is actually implemented. In particular,
11298 * Return_Credit_Status[] is the only correct status check.
11299 *
11300 * if (reducing Global_Shared_Credit_Limit or any shared limit changing)
11301 * set Global_Shared_Credit_Limit = 0
11302 * use_all_vl = 1
11303 * mask0 = all VLs that are changing either dedicated or shared limits
11304 * set Shared_Limit[mask0] = 0
11305 * spin until Return_Credit_Status[use_all_vl ? all VL : mask0] == 0
11306 * if (changing any dedicated limit)
11307 * mask1 = all VLs that are lowering dedicated limits
11308 * lower Dedicated_Limit[mask1]
11309 * spin until Return_Credit_Status[mask1] == 0
11310 * raise Dedicated_Limits
11311 * raise Shared_Limits
11312 * raise Global_Shared_Credit_Limit
11313 *
11314 * lower = if the new limit is lower, set the limit to the new value
11315 * raise = if the new limit is higher than the current value (may be changed
11316 * earlier in the algorithm), set the new limit to the new value
11317 */
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011318int set_buffer_control(struct hfi1_pportdata *ppd,
11319 struct buffer_control *new_bc)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011320{
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011321 struct hfi1_devdata *dd = ppd->dd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011322 u64 changing_mask, ld_mask, stat_mask;
11323 int change_count;
11324 int i, use_all_mask;
11325 int this_shared_changing;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011326 int vl_count = 0, ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011327 /*
11328 * A0: add the variable any_shared_limit_changing below and in the
11329 * algorithm above. If removing A0 support, it can be removed.
11330 */
11331 int any_shared_limit_changing;
11332 struct buffer_control cur_bc;
11333 u8 changing[OPA_MAX_VLS];
11334 u8 lowering_dedicated[OPA_MAX_VLS];
11335 u16 cur_total;
11336 u32 new_total = 0;
11337 const u64 all_mask =
11338 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK
11339 | SEND_CM_CREDIT_USED_STATUS_VL1_RETURN_CREDIT_STATUS_SMASK
11340 | SEND_CM_CREDIT_USED_STATUS_VL2_RETURN_CREDIT_STATUS_SMASK
11341 | SEND_CM_CREDIT_USED_STATUS_VL3_RETURN_CREDIT_STATUS_SMASK
11342 | SEND_CM_CREDIT_USED_STATUS_VL4_RETURN_CREDIT_STATUS_SMASK
11343 | SEND_CM_CREDIT_USED_STATUS_VL5_RETURN_CREDIT_STATUS_SMASK
11344 | SEND_CM_CREDIT_USED_STATUS_VL6_RETURN_CREDIT_STATUS_SMASK
11345 | SEND_CM_CREDIT_USED_STATUS_VL7_RETURN_CREDIT_STATUS_SMASK
11346 | SEND_CM_CREDIT_USED_STATUS_VL15_RETURN_CREDIT_STATUS_SMASK;
11347
11348#define valid_vl(idx) ((idx) < TXE_NUM_DATA_VL || (idx) == 15)
11349#define NUM_USABLE_VLS 16 /* look at VL15 and less */
11350
Mike Marciniszyn77241052015-07-30 15:17:43 -040011351 /* find the new total credits, do sanity check on unused VLs */
11352 for (i = 0; i < OPA_MAX_VLS; i++) {
11353 if (valid_vl(i)) {
11354 new_total += be16_to_cpu(new_bc->vl[i].dedicated);
11355 continue;
11356 }
11357 nonzero_msg(dd, i, "dedicated",
Jubin John17fb4f22016-02-14 20:21:52 -080011358 be16_to_cpu(new_bc->vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011359 nonzero_msg(dd, i, "shared",
Jubin John17fb4f22016-02-14 20:21:52 -080011360 be16_to_cpu(new_bc->vl[i].shared));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011361 new_bc->vl[i].dedicated = 0;
11362 new_bc->vl[i].shared = 0;
11363 }
11364 new_total += be16_to_cpu(new_bc->overall_shared_limit);
Dean Luickbff14bb2015-12-17 19:24:13 -050011365
Mike Marciniszyn77241052015-07-30 15:17:43 -040011366 /* fetch the current values */
11367 get_buffer_control(dd, &cur_bc, &cur_total);
11368
11369 /*
11370 * Create the masks we will use.
11371 */
11372 memset(changing, 0, sizeof(changing));
11373 memset(lowering_dedicated, 0, sizeof(lowering_dedicated));
Jubin John4d114fd2016-02-14 20:21:43 -080011374 /*
11375 * NOTE: Assumes that the individual VL bits are adjacent and in
11376 * increasing order
11377 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011378 stat_mask =
11379 SEND_CM_CREDIT_USED_STATUS_VL0_RETURN_CREDIT_STATUS_SMASK;
11380 changing_mask = 0;
11381 ld_mask = 0;
11382 change_count = 0;
11383 any_shared_limit_changing = 0;
11384 for (i = 0; i < NUM_USABLE_VLS; i++, stat_mask <<= 1) {
11385 if (!valid_vl(i))
11386 continue;
11387 this_shared_changing = new_bc->vl[i].shared
11388 != cur_bc.vl[i].shared;
11389 if (this_shared_changing)
11390 any_shared_limit_changing = 1;
Jubin Johnd0d236e2016-02-14 20:20:15 -080011391 if (new_bc->vl[i].dedicated != cur_bc.vl[i].dedicated ||
11392 this_shared_changing) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011393 changing[i] = 1;
11394 changing_mask |= stat_mask;
11395 change_count++;
11396 }
11397 if (be16_to_cpu(new_bc->vl[i].dedicated) <
11398 be16_to_cpu(cur_bc.vl[i].dedicated)) {
11399 lowering_dedicated[i] = 1;
11400 ld_mask |= stat_mask;
11401 }
11402 }
11403
11404 /* bracket the credit change with a total adjustment */
11405 if (new_total > cur_total)
11406 set_global_limit(dd, new_total);
11407
11408 /*
11409 * Start the credit change algorithm.
11410 */
11411 use_all_mask = 0;
11412 if ((be16_to_cpu(new_bc->overall_shared_limit) <
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011413 be16_to_cpu(cur_bc.overall_shared_limit)) ||
11414 (is_ax(dd) && any_shared_limit_changing)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011415 set_global_shared(dd, 0);
11416 cur_bc.overall_shared_limit = 0;
11417 use_all_mask = 1;
11418 }
11419
11420 for (i = 0; i < NUM_USABLE_VLS; i++) {
11421 if (!valid_vl(i))
11422 continue;
11423
11424 if (changing[i]) {
11425 set_vl_shared(dd, i, 0);
11426 cur_bc.vl[i].shared = 0;
11427 }
11428 }
11429
11430 wait_for_vl_status_clear(dd, use_all_mask ? all_mask : changing_mask,
Jubin John17fb4f22016-02-14 20:21:52 -080011431 "shared");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011432
11433 if (change_count > 0) {
11434 for (i = 0; i < NUM_USABLE_VLS; i++) {
11435 if (!valid_vl(i))
11436 continue;
11437
11438 if (lowering_dedicated[i]) {
11439 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011440 be16_to_cpu(new_bc->
11441 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011442 cur_bc.vl[i].dedicated =
11443 new_bc->vl[i].dedicated;
11444 }
11445 }
11446
11447 wait_for_vl_status_clear(dd, ld_mask, "dedicated");
11448
11449 /* now raise all dedicated that are going up */
11450 for (i = 0; i < NUM_USABLE_VLS; i++) {
11451 if (!valid_vl(i))
11452 continue;
11453
11454 if (be16_to_cpu(new_bc->vl[i].dedicated) >
11455 be16_to_cpu(cur_bc.vl[i].dedicated))
11456 set_vl_dedicated(dd, i,
Jubin John17fb4f22016-02-14 20:21:52 -080011457 be16_to_cpu(new_bc->
11458 vl[i].dedicated));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011459 }
11460 }
11461
11462 /* next raise all shared that are going up */
11463 for (i = 0; i < NUM_USABLE_VLS; i++) {
11464 if (!valid_vl(i))
11465 continue;
11466
11467 if (be16_to_cpu(new_bc->vl[i].shared) >
11468 be16_to_cpu(cur_bc.vl[i].shared))
11469 set_vl_shared(dd, i, be16_to_cpu(new_bc->vl[i].shared));
11470 }
11471
11472 /* finally raise the global shared */
11473 if (be16_to_cpu(new_bc->overall_shared_limit) >
Jubin John17fb4f22016-02-14 20:21:52 -080011474 be16_to_cpu(cur_bc.overall_shared_limit))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011475 set_global_shared(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080011476 be16_to_cpu(new_bc->overall_shared_limit));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011477
11478 /* bracket the credit change with a total adjustment */
11479 if (new_total < cur_total)
11480 set_global_limit(dd, new_total);
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011481
11482 /*
11483 * Determine the actual number of operational VLS using the number of
11484 * dedicated and shared credits for each VL.
11485 */
11486 if (change_count > 0) {
11487 for (i = 0; i < TXE_NUM_DATA_VL; i++)
11488 if (be16_to_cpu(new_bc->vl[i].dedicated) > 0 ||
11489 be16_to_cpu(new_bc->vl[i].shared) > 0)
11490 vl_count++;
11491 ppd->actual_vls_operational = vl_count;
11492 ret = sdma_map_init(dd, ppd->port - 1, vl_count ?
11493 ppd->actual_vls_operational :
11494 ppd->vls_operational,
11495 NULL);
11496 if (ret == 0)
11497 ret = pio_map_init(dd, ppd->port - 1, vl_count ?
11498 ppd->actual_vls_operational :
11499 ppd->vls_operational, NULL);
11500 if (ret)
11501 return ret;
11502 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011503 return 0;
11504}
11505
11506/*
11507 * Read the given fabric manager table. Return the size of the
11508 * table (in bytes) on success, and a negative error code on
11509 * failure.
11510 */
11511int fm_get_table(struct hfi1_pportdata *ppd, int which, void *t)
11512
11513{
11514 int size;
11515 struct vl_arb_cache *vlc;
11516
11517 switch (which) {
11518 case FM_TBL_VL_HIGH_ARB:
11519 size = 256;
11520 /*
11521 * OPA specifies 128 elements (of 2 bytes each), though
11522 * HFI supports only 16 elements in h/w.
11523 */
11524 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11525 vl_arb_get_cache(vlc, t);
11526 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11527 break;
11528 case FM_TBL_VL_LOW_ARB:
11529 size = 256;
11530 /*
11531 * OPA specifies 128 elements (of 2 bytes each), though
11532 * HFI supports only 16 elements in h/w.
11533 */
11534 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11535 vl_arb_get_cache(vlc, t);
11536 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11537 break;
11538 case FM_TBL_BUFFER_CONTROL:
11539 size = get_buffer_control(ppd->dd, t, NULL);
11540 break;
11541 case FM_TBL_SC2VLNT:
11542 size = get_sc2vlnt(ppd->dd, t);
11543 break;
11544 case FM_TBL_VL_PREEMPT_ELEMS:
11545 size = 256;
11546 /* OPA specifies 128 elements, of 2 bytes each */
11547 get_vlarb_preempt(ppd->dd, OPA_MAX_VLS, t);
11548 break;
11549 case FM_TBL_VL_PREEMPT_MATRIX:
11550 size = 256;
11551 /*
11552 * OPA specifies that this is the same size as the VL
11553 * arbitration tables (i.e., 256 bytes).
11554 */
11555 break;
11556 default:
11557 return -EINVAL;
11558 }
11559 return size;
11560}
11561
11562/*
11563 * Write the given fabric manager table.
11564 */
11565int fm_set_table(struct hfi1_pportdata *ppd, int which, void *t)
11566{
11567 int ret = 0;
11568 struct vl_arb_cache *vlc;
11569
11570 switch (which) {
11571 case FM_TBL_VL_HIGH_ARB:
11572 vlc = vl_arb_lock_cache(ppd, HI_PRIO_TABLE);
11573 if (vl_arb_match_cache(vlc, t)) {
11574 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11575 break;
11576 }
11577 vl_arb_set_cache(vlc, t);
11578 vl_arb_unlock_cache(ppd, HI_PRIO_TABLE);
11579 ret = set_vl_weights(ppd, SEND_HIGH_PRIORITY_LIST,
11580 VL_ARB_HIGH_PRIO_TABLE_SIZE, t);
11581 break;
11582 case FM_TBL_VL_LOW_ARB:
11583 vlc = vl_arb_lock_cache(ppd, LO_PRIO_TABLE);
11584 if (vl_arb_match_cache(vlc, t)) {
11585 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11586 break;
11587 }
11588 vl_arb_set_cache(vlc, t);
11589 vl_arb_unlock_cache(ppd, LO_PRIO_TABLE);
11590 ret = set_vl_weights(ppd, SEND_LOW_PRIORITY_LIST,
11591 VL_ARB_LOW_PRIO_TABLE_SIZE, t);
11592 break;
11593 case FM_TBL_BUFFER_CONTROL:
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080011594 ret = set_buffer_control(ppd, t);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011595 break;
11596 case FM_TBL_SC2VLNT:
11597 set_sc2vlnt(ppd->dd, t);
11598 break;
11599 default:
11600 ret = -EINVAL;
11601 }
11602 return ret;
11603}
11604
11605/*
11606 * Disable all data VLs.
11607 *
11608 * Return 0 if disabled, non-zero if the VLs cannot be disabled.
11609 */
11610static int disable_data_vls(struct hfi1_devdata *dd)
11611{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011612 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011613 return 1;
11614
11615 pio_send_control(dd, PSC_DATA_VL_DISABLE);
11616
11617 return 0;
11618}
11619
11620/*
11621 * open_fill_data_vls() - the counterpart to stop_drain_data_vls().
11622 * Just re-enables all data VLs (the "fill" part happens
11623 * automatically - the name was chosen for symmetry with
11624 * stop_drain_data_vls()).
11625 *
11626 * Return 0 if successful, non-zero if the VLs cannot be enabled.
11627 */
11628int open_fill_data_vls(struct hfi1_devdata *dd)
11629{
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050011630 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040011631 return 1;
11632
11633 pio_send_control(dd, PSC_DATA_VL_ENABLE);
11634
11635 return 0;
11636}
11637
11638/*
11639 * drain_data_vls() - assumes that disable_data_vls() has been called,
11640 * wait for occupancy (of per-VL FIFOs) for all contexts, and SDMA
11641 * engines to drop to 0.
11642 */
11643static void drain_data_vls(struct hfi1_devdata *dd)
11644{
11645 sc_wait(dd);
11646 sdma_wait(dd);
11647 pause_for_credit_return(dd);
11648}
11649
11650/*
11651 * stop_drain_data_vls() - disable, then drain all per-VL fifos.
11652 *
11653 * Use open_fill_data_vls() to resume using data VLs. This pair is
11654 * meant to be used like this:
11655 *
11656 * stop_drain_data_vls(dd);
11657 * // do things with per-VL resources
11658 * open_fill_data_vls(dd);
11659 */
11660int stop_drain_data_vls(struct hfi1_devdata *dd)
11661{
11662 int ret;
11663
11664 ret = disable_data_vls(dd);
11665 if (ret == 0)
11666 drain_data_vls(dd);
11667
11668 return ret;
11669}
11670
11671/*
11672 * Convert a nanosecond time to a cclock count. No matter how slow
11673 * the cclock, a non-zero ns will always have a non-zero result.
11674 */
11675u32 ns_to_cclock(struct hfi1_devdata *dd, u32 ns)
11676{
11677 u32 cclocks;
11678
11679 if (dd->icode == ICODE_FPGA_EMULATION)
11680 cclocks = (ns * 1000) / FPGA_CCLOCK_PS;
11681 else /* simulation pretends to be ASIC */
11682 cclocks = (ns * 1000) / ASIC_CCLOCK_PS;
11683 if (ns && !cclocks) /* if ns nonzero, must be at least 1 */
11684 cclocks = 1;
11685 return cclocks;
11686}
11687
11688/*
11689 * Convert a cclock count to nanoseconds. Not matter how slow
11690 * the cclock, a non-zero cclocks will always have a non-zero result.
11691 */
11692u32 cclock_to_ns(struct hfi1_devdata *dd, u32 cclocks)
11693{
11694 u32 ns;
11695
11696 if (dd->icode == ICODE_FPGA_EMULATION)
11697 ns = (cclocks * FPGA_CCLOCK_PS) / 1000;
11698 else /* simulation pretends to be ASIC */
11699 ns = (cclocks * ASIC_CCLOCK_PS) / 1000;
11700 if (cclocks && !ns)
11701 ns = 1;
11702 return ns;
11703}
11704
11705/*
11706 * Dynamically adjust the receive interrupt timeout for a context based on
11707 * incoming packet rate.
11708 *
11709 * NOTE: Dynamic adjustment does not allow rcv_intr_count to be zero.
11710 */
11711static void adjust_rcv_timeout(struct hfi1_ctxtdata *rcd, u32 npkts)
11712{
11713 struct hfi1_devdata *dd = rcd->dd;
11714 u32 timeout = rcd->rcvavail_timeout;
11715
11716 /*
11717 * This algorithm doubles or halves the timeout depending on whether
11718 * the number of packets received in this interrupt were less than or
11719 * greater equal the interrupt count.
11720 *
11721 * The calculations below do not allow a steady state to be achieved.
11722 * Only at the endpoints it is possible to have an unchanging
11723 * timeout.
11724 */
11725 if (npkts < rcv_intr_count) {
11726 /*
11727 * Not enough packets arrived before the timeout, adjust
11728 * timeout downward.
11729 */
11730 if (timeout < 2) /* already at minimum? */
11731 return;
11732 timeout >>= 1;
11733 } else {
11734 /*
11735 * More than enough packets arrived before the timeout, adjust
11736 * timeout upward.
11737 */
11738 if (timeout >= dd->rcv_intr_timeout_csr) /* already at max? */
11739 return;
11740 timeout = min(timeout << 1, dd->rcv_intr_timeout_csr);
11741 }
11742
11743 rcd->rcvavail_timeout = timeout;
Jubin John4d114fd2016-02-14 20:21:43 -080011744 /*
11745 * timeout cannot be larger than rcv_intr_timeout_csr which has already
11746 * been verified to be in range
11747 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011748 write_kctxt_csr(dd, rcd->ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011749 (u64)timeout <<
11750 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011751}
11752
11753void update_usrhead(struct hfi1_ctxtdata *rcd, u32 hd, u32 updegr, u32 egrhd,
11754 u32 intr_adjust, u32 npkts)
11755{
11756 struct hfi1_devdata *dd = rcd->dd;
11757 u64 reg;
11758 u32 ctxt = rcd->ctxt;
11759
11760 /*
11761 * Need to write timeout register before updating RcvHdrHead to ensure
11762 * that a new value is used when the HW decides to restart counting.
11763 */
11764 if (intr_adjust)
11765 adjust_rcv_timeout(rcd, npkts);
11766 if (updegr) {
11767 reg = (egrhd & RCV_EGR_INDEX_HEAD_HEAD_MASK)
11768 << RCV_EGR_INDEX_HEAD_HEAD_SHIFT;
11769 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, reg);
11770 }
11771 mmiowb();
11772 reg = ((u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT) |
11773 (((u64)hd & RCV_HDR_HEAD_HEAD_MASK)
11774 << RCV_HDR_HEAD_HEAD_SHIFT);
11775 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11776 mmiowb();
11777}
11778
11779u32 hdrqempty(struct hfi1_ctxtdata *rcd)
11780{
11781 u32 head, tail;
11782
11783 head = (read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_HEAD)
11784 & RCV_HDR_HEAD_HEAD_SMASK) >> RCV_HDR_HEAD_HEAD_SHIFT;
11785
11786 if (rcd->rcvhdrtail_kvaddr)
11787 tail = get_rcvhdrtail(rcd);
11788 else
11789 tail = read_uctxt_csr(rcd->dd, rcd->ctxt, RCV_HDR_TAIL);
11790
11791 return head == tail;
11792}
11793
11794/*
11795 * Context Control and Receive Array encoding for buffer size:
11796 * 0x0 invalid
11797 * 0x1 4 KB
11798 * 0x2 8 KB
11799 * 0x3 16 KB
11800 * 0x4 32 KB
11801 * 0x5 64 KB
11802 * 0x6 128 KB
11803 * 0x7 256 KB
11804 * 0x8 512 KB (Receive Array only)
11805 * 0x9 1 MB (Receive Array only)
11806 * 0xa 2 MB (Receive Array only)
11807 *
11808 * 0xB-0xF - reserved (Receive Array only)
11809 *
11810 *
11811 * This routine assumes that the value has already been sanity checked.
11812 */
11813static u32 encoded_size(u32 size)
11814{
11815 switch (size) {
Jubin John8638b772016-02-14 20:19:24 -080011816 case 4 * 1024: return 0x1;
11817 case 8 * 1024: return 0x2;
11818 case 16 * 1024: return 0x3;
11819 case 32 * 1024: return 0x4;
11820 case 64 * 1024: return 0x5;
11821 case 128 * 1024: return 0x6;
11822 case 256 * 1024: return 0x7;
11823 case 512 * 1024: return 0x8;
11824 case 1 * 1024 * 1024: return 0x9;
11825 case 2 * 1024 * 1024: return 0xa;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011826 }
11827 return 0x1; /* if invalid, go with the minimum size */
11828}
11829
Michael J. Ruhl22505632017-07-24 07:46:06 -070011830void hfi1_rcvctrl(struct hfi1_devdata *dd, unsigned int op,
11831 struct hfi1_ctxtdata *rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011832{
Mike Marciniszyn77241052015-07-30 15:17:43 -040011833 u64 rcvctrl, reg;
11834 int did_enable = 0;
Michael J. Ruhl22505632017-07-24 07:46:06 -070011835 u16 ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011836
Mike Marciniszyn77241052015-07-30 15:17:43 -040011837 if (!rcd)
11838 return;
11839
Michael J. Ruhl22505632017-07-24 07:46:06 -070011840 ctxt = rcd->ctxt;
11841
Mike Marciniszyn77241052015-07-30 15:17:43 -040011842 hfi1_cdbg(RCVCTRL, "ctxt %d op 0x%x", ctxt, op);
11843
11844 rcvctrl = read_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL);
11845 /* if the context already enabled, don't do the extra steps */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011846 if ((op & HFI1_RCVCTRL_CTXT_ENB) &&
11847 !(rcvctrl & RCV_CTXT_CTRL_ENABLE_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011848 /* reset the tail and hdr addresses, and sequence count */
11849 write_kctxt_csr(dd, ctxt, RCV_HDR_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011850 rcd->rcvhdrq_dma);
Mike Marciniszyn1bc02992018-05-31 11:30:09 -070011851 if (rcd->rcvhdrtail_kvaddr)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011852 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011853 rcd->rcvhdrqtailaddr_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011854 rcd->seq_cnt = 1;
11855
11856 /* reset the cached receive header queue head value */
11857 rcd->head = 0;
11858
11859 /*
11860 * Zero the receive header queue so we don't get false
11861 * positives when checking the sequence number. The
11862 * sequence numbers could land exactly on the same spot.
11863 * E.g. a rcd restart before the receive header wrapped.
11864 */
Mike Marciniszynb2578432018-06-20 09:42:31 -070011865 memset(rcd->rcvhdrq, 0, rcvhdrq_size(rcd));
Mike Marciniszyn77241052015-07-30 15:17:43 -040011866
11867 /* starting timeout */
11868 rcd->rcvavail_timeout = dd->rcv_intr_timeout_csr;
11869
11870 /* enable the context */
11871 rcvctrl |= RCV_CTXT_CTRL_ENABLE_SMASK;
11872
11873 /* clean the egr buffer size first */
11874 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11875 rcvctrl |= ((u64)encoded_size(rcd->egrbufs.rcvtid_size)
11876 & RCV_CTXT_CTRL_EGR_BUF_SIZE_MASK)
11877 << RCV_CTXT_CTRL_EGR_BUF_SIZE_SHIFT;
11878
11879 /* zero RcvHdrHead - set RcvHdrHead.Counter after enable */
11880 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0);
11881 did_enable = 1;
11882
11883 /* zero RcvEgrIndexHead */
11884 write_uctxt_csr(dd, ctxt, RCV_EGR_INDEX_HEAD, 0);
11885
11886 /* set eager count and base index */
11887 reg = (((u64)(rcd->egrbufs.alloced >> RCV_SHIFT)
11888 & RCV_EGR_CTRL_EGR_CNT_MASK)
11889 << RCV_EGR_CTRL_EGR_CNT_SHIFT) |
11890 (((rcd->eager_base >> RCV_SHIFT)
11891 & RCV_EGR_CTRL_EGR_BASE_INDEX_MASK)
11892 << RCV_EGR_CTRL_EGR_BASE_INDEX_SHIFT);
11893 write_kctxt_csr(dd, ctxt, RCV_EGR_CTRL, reg);
11894
11895 /*
11896 * Set TID (expected) count and base index.
11897 * rcd->expected_count is set to individual RcvArray entries,
11898 * not pairs, and the CSR takes a pair-count in groups of
11899 * four, so divide by 8.
11900 */
11901 reg = (((rcd->expected_count >> RCV_SHIFT)
11902 & RCV_TID_CTRL_TID_PAIR_CNT_MASK)
11903 << RCV_TID_CTRL_TID_PAIR_CNT_SHIFT) |
11904 (((rcd->expected_base >> RCV_SHIFT)
11905 & RCV_TID_CTRL_TID_BASE_INDEX_MASK)
11906 << RCV_TID_CTRL_TID_BASE_INDEX_SHIFT);
11907 write_kctxt_csr(dd, ctxt, RCV_TID_CTRL, reg);
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050011908 if (ctxt == HFI1_CTRL_CTXT)
11909 write_csr(dd, RCV_VL15, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011910 }
11911 if (op & HFI1_RCVCTRL_CTXT_DIS) {
11912 write_csr(dd, RCV_VL15, 0);
Mark F. Brown46b010d2015-11-09 19:18:20 -050011913 /*
11914 * When receive context is being disabled turn on tail
11915 * update with a dummy tail address and then disable
11916 * receive context.
11917 */
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011918 if (dd->rcvhdrtail_dummy_dma) {
Mark F. Brown46b010d2015-11-09 19:18:20 -050011919 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070011920 dd->rcvhdrtail_dummy_dma);
Mitko Haralanov566c1572016-02-03 14:32:49 -080011921 /* Enabling RcvCtxtCtrl.TailUpd is intentional. */
Mark F. Brown46b010d2015-11-09 19:18:20 -050011922 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11923 }
11924
Mike Marciniszyn77241052015-07-30 15:17:43 -040011925 rcvctrl &= ~RCV_CTXT_CTRL_ENABLE_SMASK;
11926 }
11927 if (op & HFI1_RCVCTRL_INTRAVAIL_ENB)
11928 rcvctrl |= RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
11929 if (op & HFI1_RCVCTRL_INTRAVAIL_DIS)
11930 rcvctrl &= ~RCV_CTXT_CTRL_INTR_AVAIL_SMASK;
Mike Marciniszyn1bc02992018-05-31 11:30:09 -070011931 if ((op & HFI1_RCVCTRL_TAILUPD_ENB) && rcd->rcvhdrtail_kvaddr)
Mike Marciniszyn77241052015-07-30 15:17:43 -040011932 rcvctrl |= RCV_CTXT_CTRL_TAIL_UPD_SMASK;
Mitko Haralanov566c1572016-02-03 14:32:49 -080011933 if (op & HFI1_RCVCTRL_TAILUPD_DIS) {
11934 /* See comment on RcvCtxtCtrl.TailUpd above */
11935 if (!(op & HFI1_RCVCTRL_CTXT_DIS))
11936 rcvctrl &= ~RCV_CTXT_CTRL_TAIL_UPD_SMASK;
11937 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040011938 if (op & HFI1_RCVCTRL_TIDFLOW_ENB)
11939 rcvctrl |= RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11940 if (op & HFI1_RCVCTRL_TIDFLOW_DIS)
11941 rcvctrl &= ~RCV_CTXT_CTRL_TID_FLOW_ENABLE_SMASK;
11942 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_ENB) {
Jubin John4d114fd2016-02-14 20:21:43 -080011943 /*
11944 * In one-packet-per-eager mode, the size comes from
11945 * the RcvArray entry.
11946 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040011947 rcvctrl &= ~RCV_CTXT_CTRL_EGR_BUF_SIZE_SMASK;
11948 rcvctrl |= RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11949 }
11950 if (op & HFI1_RCVCTRL_ONE_PKT_EGR_DIS)
11951 rcvctrl &= ~RCV_CTXT_CTRL_ONE_PACKET_PER_EGR_BUFFER_SMASK;
11952 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_ENB)
11953 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11954 if (op & HFI1_RCVCTRL_NO_RHQ_DROP_DIS)
11955 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK;
11956 if (op & HFI1_RCVCTRL_NO_EGR_DROP_ENB)
11957 rcvctrl |= RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
11958 if (op & HFI1_RCVCTRL_NO_EGR_DROP_DIS)
11959 rcvctrl &= ~RCV_CTXT_CTRL_DONT_DROP_EGR_FULL_SMASK;
Mike Marciniszyn77241052015-07-30 15:17:43 -040011960 hfi1_cdbg(RCVCTRL, "ctxt %d rcvctrl 0x%llx\n", ctxt, rcvctrl);
Mike Marciniszynb67bbc52018-06-20 09:42:40 -070011961 write_kctxt_csr(dd, ctxt, RCV_CTXT_CTRL, rcvctrl);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011962
11963 /* work around sticky RcvCtxtStatus.BlockedRHQFull */
Jubin Johnd0d236e2016-02-14 20:20:15 -080011964 if (did_enable &&
11965 (rcvctrl & RCV_CTXT_CTRL_DONT_DROP_RHQ_FULL_SMASK)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040011966 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11967 if (reg != 0) {
11968 dd_dev_info(dd, "ctxt %d status %lld (blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011969 ctxt, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040011970 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11971 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x10);
11972 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, 0x00);
11973 read_uctxt_csr(dd, ctxt, RCV_HDR_HEAD);
11974 reg = read_kctxt_csr(dd, ctxt, RCV_CTXT_STATUS);
11975 dd_dev_info(dd, "ctxt %d status %lld (%s blocked)\n",
Jubin John17fb4f22016-02-14 20:21:52 -080011976 ctxt, reg, reg == 0 ? "not" : "still");
Mike Marciniszyn77241052015-07-30 15:17:43 -040011977 }
11978 }
11979
11980 if (did_enable) {
11981 /*
11982 * The interrupt timeout and count must be set after
11983 * the context is enabled to take effect.
11984 */
11985 /* set interrupt timeout */
11986 write_kctxt_csr(dd, ctxt, RCV_AVAIL_TIME_OUT,
Jubin John17fb4f22016-02-14 20:21:52 -080011987 (u64)rcd->rcvavail_timeout <<
Mike Marciniszyn77241052015-07-30 15:17:43 -040011988 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_SHIFT);
11989
11990 /* set RcvHdrHead.Counter, zero RcvHdrHead.Head (again) */
11991 reg = (u64)rcv_intr_count << RCV_HDR_HEAD_COUNTER_SHIFT;
11992 write_uctxt_csr(dd, ctxt, RCV_HDR_HEAD, reg);
11993 }
11994
11995 if (op & (HFI1_RCVCTRL_TAILUPD_DIS | HFI1_RCVCTRL_CTXT_DIS))
11996 /*
11997 * If the context has been disabled and the Tail Update has
Mark F. Brown46b010d2015-11-09 19:18:20 -050011998 * been cleared, set the RCV_HDR_TAIL_ADDR CSR to dummy address
11999 * so it doesn't contain an address that is invalid.
Mike Marciniszyn77241052015-07-30 15:17:43 -040012000 */
Mark F. Brown46b010d2015-11-09 19:18:20 -050012001 write_kctxt_csr(dd, ctxt, RCV_HDR_TAIL_ADDR,
Tymoteusz Kielan60368182016-09-06 04:35:54 -070012002 dd->rcvhdrtail_dummy_dma);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012003}
12004
Dean Luick582e05c2016-02-18 11:13:01 -080012005u32 hfi1_read_cntrs(struct hfi1_devdata *dd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012006{
12007 int ret;
12008 u64 val = 0;
12009
12010 if (namep) {
12011 ret = dd->cntrnameslen;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012012 *namep = dd->cntrnames;
12013 } else {
12014 const struct cntr_entry *entry;
12015 int i, j;
12016
12017 ret = (dd->ndevcntrs) * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012018
12019 /* Get the start of the block of counters */
12020 *cntrp = dd->cntrs;
12021
12022 /*
12023 * Now go and fill in each counter in the block.
12024 */
12025 for (i = 0; i < DEV_CNTR_LAST; i++) {
12026 entry = &dev_cntrs[i];
12027 hfi1_cdbg(CNTR, "reading %s", entry->name);
12028 if (entry->flags & CNTR_DISABLED) {
12029 /* Nothing */
12030 hfi1_cdbg(CNTR, "\tDisabled\n");
12031 } else {
12032 if (entry->flags & CNTR_VL) {
12033 hfi1_cdbg(CNTR, "\tPer VL\n");
12034 for (j = 0; j < C_VL_COUNT; j++) {
12035 val = entry->rw_cntr(entry,
12036 dd, j,
12037 CNTR_MODE_R,
12038 0);
12039 hfi1_cdbg(
12040 CNTR,
12041 "\t\tRead 0x%llx for %d\n",
12042 val, j);
12043 dd->cntrs[entry->offset + j] =
12044 val;
12045 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012046 } else if (entry->flags & CNTR_SDMA) {
12047 hfi1_cdbg(CNTR,
12048 "\t Per SDMA Engine\n");
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070012049 for (j = 0; j < chip_sdma_engines(dd);
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012050 j++) {
12051 val =
12052 entry->rw_cntr(entry, dd, j,
12053 CNTR_MODE_R, 0);
12054 hfi1_cdbg(CNTR,
12055 "\t\tRead 0x%llx for %d\n",
12056 val, j);
12057 dd->cntrs[entry->offset + j] =
12058 val;
12059 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012060 } else {
12061 val = entry->rw_cntr(entry, dd,
12062 CNTR_INVALID_VL,
12063 CNTR_MODE_R, 0);
12064 dd->cntrs[entry->offset] = val;
12065 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
12066 }
12067 }
12068 }
12069 }
12070 return ret;
12071}
12072
12073/*
12074 * Used by sysfs to create files for hfi stats to read
12075 */
Dean Luick582e05c2016-02-18 11:13:01 -080012076u32 hfi1_read_portcntrs(struct hfi1_pportdata *ppd, char **namep, u64 **cntrp)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012077{
12078 int ret;
12079 u64 val = 0;
12080
12081 if (namep) {
Dean Luick582e05c2016-02-18 11:13:01 -080012082 ret = ppd->dd->portcntrnameslen;
12083 *namep = ppd->dd->portcntrnames;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012084 } else {
12085 const struct cntr_entry *entry;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012086 int i, j;
12087
Dean Luick582e05c2016-02-18 11:13:01 -080012088 ret = ppd->dd->nportcntrs * sizeof(u64);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012089 *cntrp = ppd->cntrs;
12090
12091 for (i = 0; i < PORT_CNTR_LAST; i++) {
12092 entry = &port_cntrs[i];
12093 hfi1_cdbg(CNTR, "reading %s", entry->name);
12094 if (entry->flags & CNTR_DISABLED) {
12095 /* Nothing */
12096 hfi1_cdbg(CNTR, "\tDisabled\n");
12097 continue;
12098 }
12099
12100 if (entry->flags & CNTR_VL) {
12101 hfi1_cdbg(CNTR, "\tPer VL");
12102 for (j = 0; j < C_VL_COUNT; j++) {
12103 val = entry->rw_cntr(entry, ppd, j,
12104 CNTR_MODE_R,
12105 0);
12106 hfi1_cdbg(
12107 CNTR,
12108 "\t\tRead 0x%llx for %d",
12109 val, j);
12110 ppd->cntrs[entry->offset + j] = val;
12111 }
12112 } else {
12113 val = entry->rw_cntr(entry, ppd,
12114 CNTR_INVALID_VL,
12115 CNTR_MODE_R,
12116 0);
12117 ppd->cntrs[entry->offset] = val;
12118 hfi1_cdbg(CNTR, "\tRead 0x%llx", val);
12119 }
12120 }
12121 }
12122 return ret;
12123}
12124
12125static void free_cntrs(struct hfi1_devdata *dd)
12126{
12127 struct hfi1_pportdata *ppd;
12128 int i;
12129
Kees Cook80641352017-10-16 15:51:54 -070012130 if (dd->synth_stats_timer.function)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012131 del_timer_sync(&dd->synth_stats_timer);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012132 ppd = (struct hfi1_pportdata *)(dd + 1);
12133 for (i = 0; i < dd->num_pports; i++, ppd++) {
12134 kfree(ppd->cntrs);
12135 kfree(ppd->scntrs);
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080012136 free_percpu(ppd->ibport_data.rvp.rc_acks);
12137 free_percpu(ppd->ibport_data.rvp.rc_qacks);
12138 free_percpu(ppd->ibport_data.rvp.rc_delayed_comp);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012139 ppd->cntrs = NULL;
12140 ppd->scntrs = NULL;
Dennis Dalessandro4eb06882016-01-19 14:42:39 -080012141 ppd->ibport_data.rvp.rc_acks = NULL;
12142 ppd->ibport_data.rvp.rc_qacks = NULL;
12143 ppd->ibport_data.rvp.rc_delayed_comp = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012144 }
12145 kfree(dd->portcntrnames);
12146 dd->portcntrnames = NULL;
12147 kfree(dd->cntrs);
12148 dd->cntrs = NULL;
12149 kfree(dd->scntrs);
12150 dd->scntrs = NULL;
12151 kfree(dd->cntrnames);
12152 dd->cntrnames = NULL;
Tadeusz Struk22546b72017-04-28 10:40:02 -070012153 if (dd->update_cntr_wq) {
12154 destroy_workqueue(dd->update_cntr_wq);
12155 dd->update_cntr_wq = NULL;
12156 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012157}
12158
Mike Marciniszyn77241052015-07-30 15:17:43 -040012159static u64 read_dev_port_cntr(struct hfi1_devdata *dd, struct cntr_entry *entry,
12160 u64 *psval, void *context, int vl)
12161{
12162 u64 val;
12163 u64 sval = *psval;
12164
12165 if (entry->flags & CNTR_DISABLED) {
12166 dd_dev_err(dd, "Counter %s not enabled", entry->name);
12167 return 0;
12168 }
12169
12170 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
12171
12172 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_R, 0);
12173
12174 /* If its a synthetic counter there is more work we need to do */
12175 if (entry->flags & CNTR_SYNTH) {
12176 if (sval == CNTR_MAX) {
12177 /* No need to read already saturated */
12178 return CNTR_MAX;
12179 }
12180
12181 if (entry->flags & CNTR_32BIT) {
12182 /* 32bit counters can wrap multiple times */
12183 u64 upper = sval >> 32;
12184 u64 lower = (sval << 32) >> 32;
12185
12186 if (lower > val) { /* hw wrapped */
12187 if (upper == CNTR_32BIT_MAX)
12188 val = CNTR_MAX;
12189 else
12190 upper++;
12191 }
12192
12193 if (val != CNTR_MAX)
12194 val = (upper << 32) | val;
12195
12196 } else {
12197 /* If we rolled we are saturated */
12198 if ((val < sval) || (val > CNTR_MAX))
12199 val = CNTR_MAX;
12200 }
12201 }
12202
12203 *psval = val;
12204
12205 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
12206
12207 return val;
12208}
12209
12210static u64 write_dev_port_cntr(struct hfi1_devdata *dd,
12211 struct cntr_entry *entry,
12212 u64 *psval, void *context, int vl, u64 data)
12213{
12214 u64 val;
12215
12216 if (entry->flags & CNTR_DISABLED) {
12217 dd_dev_err(dd, "Counter %s not enabled", entry->name);
12218 return 0;
12219 }
12220
12221 hfi1_cdbg(CNTR, "cntr: %s vl %d psval 0x%llx", entry->name, vl, *psval);
12222
12223 if (entry->flags & CNTR_SYNTH) {
12224 *psval = data;
12225 if (entry->flags & CNTR_32BIT) {
12226 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
12227 (data << 32) >> 32);
12228 val = data; /* return the full 64bit value */
12229 } else {
12230 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W,
12231 data);
12232 }
12233 } else {
12234 val = entry->rw_cntr(entry, context, vl, CNTR_MODE_W, data);
12235 }
12236
12237 *psval = val;
12238
12239 hfi1_cdbg(CNTR, "\tNew val=0x%llx", val);
12240
12241 return val;
12242}
12243
12244u64 read_dev_cntr(struct hfi1_devdata *dd, int index, int vl)
12245{
12246 struct cntr_entry *entry;
12247 u64 *sval;
12248
12249 entry = &dev_cntrs[index];
12250 sval = dd->scntrs + entry->offset;
12251
12252 if (vl != CNTR_INVALID_VL)
12253 sval += vl;
12254
12255 return read_dev_port_cntr(dd, entry, sval, dd, vl);
12256}
12257
12258u64 write_dev_cntr(struct hfi1_devdata *dd, int index, int vl, u64 data)
12259{
12260 struct cntr_entry *entry;
12261 u64 *sval;
12262
12263 entry = &dev_cntrs[index];
12264 sval = dd->scntrs + entry->offset;
12265
12266 if (vl != CNTR_INVALID_VL)
12267 sval += vl;
12268
12269 return write_dev_port_cntr(dd, entry, sval, dd, vl, data);
12270}
12271
12272u64 read_port_cntr(struct hfi1_pportdata *ppd, int index, int vl)
12273{
12274 struct cntr_entry *entry;
12275 u64 *sval;
12276
12277 entry = &port_cntrs[index];
12278 sval = ppd->scntrs + entry->offset;
12279
12280 if (vl != CNTR_INVALID_VL)
12281 sval += vl;
12282
12283 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
12284 (index <= C_RCV_HDR_OVF_LAST)) {
12285 /* We do not want to bother for disabled contexts */
12286 return 0;
12287 }
12288
12289 return read_dev_port_cntr(ppd->dd, entry, sval, ppd, vl);
12290}
12291
12292u64 write_port_cntr(struct hfi1_pportdata *ppd, int index, int vl, u64 data)
12293{
12294 struct cntr_entry *entry;
12295 u64 *sval;
12296
12297 entry = &port_cntrs[index];
12298 sval = ppd->scntrs + entry->offset;
12299
12300 if (vl != CNTR_INVALID_VL)
12301 sval += vl;
12302
12303 if ((index >= C_RCV_HDR_OVF_FIRST + ppd->dd->num_rcv_contexts) &&
12304 (index <= C_RCV_HDR_OVF_LAST)) {
12305 /* We do not want to bother for disabled contexts */
12306 return 0;
12307 }
12308
12309 return write_dev_port_cntr(ppd->dd, entry, sval, ppd, vl, data);
12310}
12311
Tadeusz Struk22546b72017-04-28 10:40:02 -070012312static void do_update_synth_timer(struct work_struct *work)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012313{
12314 u64 cur_tx;
12315 u64 cur_rx;
12316 u64 total_flits;
12317 u8 update = 0;
12318 int i, j, vl;
12319 struct hfi1_pportdata *ppd;
12320 struct cntr_entry *entry;
Tadeusz Struk22546b72017-04-28 10:40:02 -070012321 struct hfi1_devdata *dd = container_of(work, struct hfi1_devdata,
12322 update_cntr_work);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012323
12324 /*
12325 * Rather than keep beating on the CSRs pick a minimal set that we can
12326 * check to watch for potential roll over. We can do this by looking at
12327 * the number of flits sent/recv. If the total flits exceeds 32bits then
12328 * we have to iterate all the counters and update.
12329 */
12330 entry = &dev_cntrs[C_DC_RCV_FLITS];
12331 cur_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12332
12333 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12334 cur_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL, CNTR_MODE_R, 0);
12335
12336 hfi1_cdbg(
12337 CNTR,
12338 "[%d] curr tx=0x%llx rx=0x%llx :: last tx=0x%llx rx=0x%llx\n",
12339 dd->unit, cur_tx, cur_rx, dd->last_tx, dd->last_rx);
12340
12341 if ((cur_tx < dd->last_tx) || (cur_rx < dd->last_rx)) {
12342 /*
12343 * May not be strictly necessary to update but it won't hurt and
12344 * simplifies the logic here.
12345 */
12346 update = 1;
12347 hfi1_cdbg(CNTR, "[%d] Tripwire counter rolled, updating",
12348 dd->unit);
12349 } else {
12350 total_flits = (cur_tx - dd->last_tx) + (cur_rx - dd->last_rx);
12351 hfi1_cdbg(CNTR,
12352 "[%d] total flits 0x%llx limit 0x%llx\n", dd->unit,
12353 total_flits, (u64)CNTR_32BIT_MAX);
12354 if (total_flits >= CNTR_32BIT_MAX) {
12355 hfi1_cdbg(CNTR, "[%d] 32bit limit hit, updating",
12356 dd->unit);
12357 update = 1;
12358 }
12359 }
12360
12361 if (update) {
12362 hfi1_cdbg(CNTR, "[%d] Updating dd and ppd counters", dd->unit);
12363 for (i = 0; i < DEV_CNTR_LAST; i++) {
12364 entry = &dev_cntrs[i];
12365 if (entry->flags & CNTR_VL) {
12366 for (vl = 0; vl < C_VL_COUNT; vl++)
12367 read_dev_cntr(dd, i, vl);
12368 } else {
12369 read_dev_cntr(dd, i, CNTR_INVALID_VL);
12370 }
12371 }
12372 ppd = (struct hfi1_pportdata *)(dd + 1);
12373 for (i = 0; i < dd->num_pports; i++, ppd++) {
12374 for (j = 0; j < PORT_CNTR_LAST; j++) {
12375 entry = &port_cntrs[j];
12376 if (entry->flags & CNTR_VL) {
12377 for (vl = 0; vl < C_VL_COUNT; vl++)
12378 read_port_cntr(ppd, j, vl);
12379 } else {
12380 read_port_cntr(ppd, j, CNTR_INVALID_VL);
12381 }
12382 }
12383 }
12384
12385 /*
12386 * We want the value in the register. The goal is to keep track
12387 * of the number of "ticks" not the counter value. In other
12388 * words if the register rolls we want to notice it and go ahead
12389 * and force an update.
12390 */
12391 entry = &dev_cntrs[C_DC_XMIT_FLITS];
12392 dd->last_tx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12393 CNTR_MODE_R, 0);
12394
12395 entry = &dev_cntrs[C_DC_RCV_FLITS];
12396 dd->last_rx = entry->rw_cntr(entry, dd, CNTR_INVALID_VL,
12397 CNTR_MODE_R, 0);
12398
12399 hfi1_cdbg(CNTR, "[%d] setting last tx/rx to 0x%llx 0x%llx",
12400 dd->unit, dd->last_tx, dd->last_rx);
12401
12402 } else {
12403 hfi1_cdbg(CNTR, "[%d] No update necessary", dd->unit);
12404 }
Tadeusz Struk22546b72017-04-28 10:40:02 -070012405}
Mike Marciniszyn77241052015-07-30 15:17:43 -040012406
Kees Cook80641352017-10-16 15:51:54 -070012407static void update_synth_timer(struct timer_list *t)
Tadeusz Struk22546b72017-04-28 10:40:02 -070012408{
Kees Cook80641352017-10-16 15:51:54 -070012409 struct hfi1_devdata *dd = from_timer(dd, t, synth_stats_timer);
Tadeusz Struk22546b72017-04-28 10:40:02 -070012410
12411 queue_work(dd->update_cntr_wq, &dd->update_cntr_work);
Bart Van Assche48a0cc132016-06-03 12:09:56 -070012412 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012413}
12414
Jianxin Xiong09a79082016-10-25 13:12:40 -070012415#define C_MAX_NAME 16 /* 15 chars + one for /0 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012416static int init_cntrs(struct hfi1_devdata *dd)
12417{
Dean Luickc024c552016-01-11 18:30:57 -050012418 int i, rcv_ctxts, j;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012419 size_t sz;
12420 char *p;
12421 char name[C_MAX_NAME];
12422 struct hfi1_pportdata *ppd;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012423 const char *bit_type_32 = ",32";
12424 const int bit_type_32_sz = strlen(bit_type_32);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070012425 u32 sdma_engines = chip_sdma_engines(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012426
12427 /* set up the stats timer; the add_timer is done at the end */
Kees Cook80641352017-10-16 15:51:54 -070012428 timer_setup(&dd->synth_stats_timer, update_synth_timer, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012429
12430 /***********************/
12431 /* per device counters */
12432 /***********************/
12433
12434 /* size names and determine how many we have*/
12435 dd->ndevcntrs = 0;
12436 sz = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012437
12438 for (i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012439 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12440 hfi1_dbg_early("\tSkipping %s\n", dev_cntrs[i].name);
12441 continue;
12442 }
12443
12444 if (dev_cntrs[i].flags & CNTR_VL) {
Dean Luickc024c552016-01-11 18:30:57 -050012445 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012446 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012447 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012448 dev_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012449 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012450 /* Add ",32" for 32-bit counters */
12451 if (dev_cntrs[i].flags & CNTR_32BIT)
12452 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012453 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012454 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012455 }
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012456 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
Dean Luickc024c552016-01-11 18:30:57 -050012457 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070012458 for (j = 0; j < sdma_engines; j++) {
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012459 snprintf(name, C_MAX_NAME, "%s%d",
12460 dev_cntrs[i].name, j);
12461 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012462 /* Add ",32" for 32-bit counters */
12463 if (dev_cntrs[i].flags & CNTR_32BIT)
12464 sz += bit_type_32_sz;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012465 sz++;
Vennila Megavannana699c6c2016-01-11 18:30:56 -050012466 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012467 }
12468 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012469 /* +1 for newline. */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012470 sz += strlen(dev_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012471 /* Add ",32" for 32-bit counters */
12472 if (dev_cntrs[i].flags & CNTR_32BIT)
12473 sz += bit_type_32_sz;
Dean Luickc024c552016-01-11 18:30:57 -050012474 dev_cntrs[i].offset = dd->ndevcntrs;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012475 dd->ndevcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012476 }
12477 }
12478
12479 /* allocate space for the counter values */
Dean Luickc024c552016-01-11 18:30:57 -050012480 dd->cntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012481 if (!dd->cntrs)
12482 goto bail;
12483
Dean Luickc024c552016-01-11 18:30:57 -050012484 dd->scntrs = kcalloc(dd->ndevcntrs, sizeof(u64), GFP_KERNEL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012485 if (!dd->scntrs)
12486 goto bail;
12487
Mike Marciniszyn77241052015-07-30 15:17:43 -040012488 /* allocate space for the counter names */
12489 dd->cntrnameslen = sz;
12490 dd->cntrnames = kmalloc(sz, GFP_KERNEL);
12491 if (!dd->cntrnames)
12492 goto bail;
12493
12494 /* fill in the names */
Dean Luickc024c552016-01-11 18:30:57 -050012495 for (p = dd->cntrnames, i = 0; i < DEV_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012496 if (dev_cntrs[i].flags & CNTR_DISABLED) {
12497 /* Nothing */
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012498 } else if (dev_cntrs[i].flags & CNTR_VL) {
12499 for (j = 0; j < C_VL_COUNT; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012500 snprintf(name, C_MAX_NAME, "%s%d",
12501 dev_cntrs[i].name,
12502 vl_from_idx(j));
12503 memcpy(p, name, strlen(name));
12504 p += strlen(name);
12505
12506 /* Counter is 32 bits */
12507 if (dev_cntrs[i].flags & CNTR_32BIT) {
12508 memcpy(p, bit_type_32, bit_type_32_sz);
12509 p += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012510 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012511
Mike Marciniszyn77241052015-07-30 15:17:43 -040012512 *p++ = '\n';
12513 }
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012514 } else if (dev_cntrs[i].flags & CNTR_SDMA) {
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070012515 for (j = 0; j < sdma_engines; j++) {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012516 snprintf(name, C_MAX_NAME, "%s%d",
12517 dev_cntrs[i].name, j);
12518 memcpy(p, name, strlen(name));
12519 p += strlen(name);
12520
12521 /* Counter is 32 bits */
12522 if (dev_cntrs[i].flags & CNTR_32BIT) {
12523 memcpy(p, bit_type_32, bit_type_32_sz);
12524 p += bit_type_32_sz;
12525 }
12526
12527 *p++ = '\n';
12528 }
12529 } else {
12530 memcpy(p, dev_cntrs[i].name, strlen(dev_cntrs[i].name));
12531 p += strlen(dev_cntrs[i].name);
12532
12533 /* Counter is 32 bits */
12534 if (dev_cntrs[i].flags & CNTR_32BIT) {
12535 memcpy(p, bit_type_32, bit_type_32_sz);
12536 p += bit_type_32_sz;
12537 }
12538
12539 *p++ = '\n';
Mike Marciniszyn77241052015-07-30 15:17:43 -040012540 }
12541 }
12542
12543 /*********************/
12544 /* per port counters */
12545 /*********************/
12546
12547 /*
12548 * Go through the counters for the overflows and disable the ones we
12549 * don't need. This varies based on platform so we need to do it
12550 * dynamically here.
12551 */
12552 rcv_ctxts = dd->num_rcv_contexts;
12553 for (i = C_RCV_HDR_OVF_FIRST + rcv_ctxts;
12554 i <= C_RCV_HDR_OVF_LAST; i++) {
12555 port_cntrs[i].flags |= CNTR_DISABLED;
12556 }
12557
12558 /* size port counter names and determine how many we have*/
12559 sz = 0;
12560 dd->nportcntrs = 0;
12561 for (i = 0; i < PORT_CNTR_LAST; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012562 if (port_cntrs[i].flags & CNTR_DISABLED) {
12563 hfi1_dbg_early("\tSkipping %s\n", port_cntrs[i].name);
12564 continue;
12565 }
12566
12567 if (port_cntrs[i].flags & CNTR_VL) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012568 port_cntrs[i].offset = dd->nportcntrs;
12569 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012570 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012571 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012572 sz += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012573 /* Add ",32" for 32-bit counters */
12574 if (port_cntrs[i].flags & CNTR_32BIT)
12575 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012576 sz++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012577 dd->nportcntrs++;
12578 }
12579 } else {
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012580 /* +1 for newline */
Mike Marciniszyn77241052015-07-30 15:17:43 -040012581 sz += strlen(port_cntrs[i].name) + 1;
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012582 /* Add ",32" for 32-bit counters */
12583 if (port_cntrs[i].flags & CNTR_32BIT)
12584 sz += bit_type_32_sz;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012585 port_cntrs[i].offset = dd->nportcntrs;
12586 dd->nportcntrs++;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012587 }
12588 }
12589
12590 /* allocate space for the counter names */
12591 dd->portcntrnameslen = sz;
12592 dd->portcntrnames = kmalloc(sz, GFP_KERNEL);
12593 if (!dd->portcntrnames)
12594 goto bail;
12595
12596 /* fill in port cntr names */
12597 for (p = dd->portcntrnames, i = 0; i < PORT_CNTR_LAST; i++) {
12598 if (port_cntrs[i].flags & CNTR_DISABLED)
12599 continue;
12600
12601 if (port_cntrs[i].flags & CNTR_VL) {
12602 for (j = 0; j < C_VL_COUNT; j++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012603 snprintf(name, C_MAX_NAME, "%s%d",
Jubin John17fb4f22016-02-14 20:21:52 -080012604 port_cntrs[i].name, vl_from_idx(j));
Mike Marciniszyn77241052015-07-30 15:17:43 -040012605 memcpy(p, name, strlen(name));
12606 p += strlen(name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012607
12608 /* Counter is 32 bits */
12609 if (port_cntrs[i].flags & CNTR_32BIT) {
12610 memcpy(p, bit_type_32, bit_type_32_sz);
12611 p += bit_type_32_sz;
12612 }
12613
Mike Marciniszyn77241052015-07-30 15:17:43 -040012614 *p++ = '\n';
12615 }
12616 } else {
12617 memcpy(p, port_cntrs[i].name,
12618 strlen(port_cntrs[i].name));
12619 p += strlen(port_cntrs[i].name);
Sebastian Sanchez11d2b112016-02-03 14:32:40 -080012620
12621 /* Counter is 32 bits */
12622 if (port_cntrs[i].flags & CNTR_32BIT) {
12623 memcpy(p, bit_type_32, bit_type_32_sz);
12624 p += bit_type_32_sz;
12625 }
12626
Mike Marciniszyn77241052015-07-30 15:17:43 -040012627 *p++ = '\n';
12628 }
12629 }
12630
12631 /* allocate per port storage for counter values */
12632 ppd = (struct hfi1_pportdata *)(dd + 1);
12633 for (i = 0; i < dd->num_pports; i++, ppd++) {
12634 ppd->cntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12635 if (!ppd->cntrs)
12636 goto bail;
12637
12638 ppd->scntrs = kcalloc(dd->nportcntrs, sizeof(u64), GFP_KERNEL);
12639 if (!ppd->scntrs)
12640 goto bail;
12641 }
12642
12643 /* CPU counters need to be allocated and zeroed */
12644 if (init_cpu_counters(dd))
12645 goto bail;
12646
Tadeusz Struk22546b72017-04-28 10:40:02 -070012647 dd->update_cntr_wq = alloc_ordered_workqueue("hfi1_update_cntr_%d",
12648 WQ_MEM_RECLAIM, dd->unit);
12649 if (!dd->update_cntr_wq)
12650 goto bail;
12651
12652 INIT_WORK(&dd->update_cntr_work, do_update_synth_timer);
12653
Mike Marciniszyn77241052015-07-30 15:17:43 -040012654 mod_timer(&dd->synth_stats_timer, jiffies + HZ * SYNTH_CNT_TIME);
12655 return 0;
12656bail:
12657 free_cntrs(dd);
12658 return -ENOMEM;
12659}
12660
Mike Marciniszyn77241052015-07-30 15:17:43 -040012661static u32 chip_to_opa_lstate(struct hfi1_devdata *dd, u32 chip_lstate)
12662{
12663 switch (chip_lstate) {
12664 default:
12665 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080012666 "Unknown logical state 0x%x, reporting IB_PORT_DOWN\n",
12667 chip_lstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012668 /* fall through */
12669 case LSTATE_DOWN:
12670 return IB_PORT_DOWN;
12671 case LSTATE_INIT:
12672 return IB_PORT_INIT;
12673 case LSTATE_ARMED:
12674 return IB_PORT_ARMED;
12675 case LSTATE_ACTIVE:
12676 return IB_PORT_ACTIVE;
12677 }
12678}
12679
12680u32 chip_to_opa_pstate(struct hfi1_devdata *dd, u32 chip_pstate)
12681{
12682 /* look at the HFI meta-states only */
12683 switch (chip_pstate & 0xf0) {
12684 default:
12685 dd_dev_err(dd, "Unexpected chip physical state of 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080012686 chip_pstate);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012687 /* fall through */
12688 case PLS_DISABLED:
12689 return IB_PORTPHYSSTATE_DISABLED;
12690 case PLS_OFFLINE:
12691 return OPA_PORTPHYSSTATE_OFFLINE;
12692 case PLS_POLLING:
12693 return IB_PORTPHYSSTATE_POLLING;
12694 case PLS_CONFIGPHY:
12695 return IB_PORTPHYSSTATE_TRAINING;
12696 case PLS_LINKUP:
12697 return IB_PORTPHYSSTATE_LINKUP;
12698 case PLS_PHYTEST:
12699 return IB_PORTPHYSSTATE_PHY_TEST;
12700 }
12701}
12702
12703/* return the OPA port logical state name */
12704const char *opa_lstate_name(u32 lstate)
12705{
12706 static const char * const port_logical_names[] = {
12707 "PORT_NOP",
12708 "PORT_DOWN",
12709 "PORT_INIT",
12710 "PORT_ARMED",
12711 "PORT_ACTIVE",
12712 "PORT_ACTIVE_DEFER",
12713 };
12714 if (lstate < ARRAY_SIZE(port_logical_names))
12715 return port_logical_names[lstate];
12716 return "unknown";
12717}
12718
12719/* return the OPA port physical state name */
12720const char *opa_pstate_name(u32 pstate)
12721{
12722 static const char * const port_physical_names[] = {
12723 "PHYS_NOP",
12724 "reserved1",
12725 "PHYS_POLL",
12726 "PHYS_DISABLED",
12727 "PHYS_TRAINING",
12728 "PHYS_LINKUP",
12729 "PHYS_LINK_ERR_RECOVER",
12730 "PHYS_PHY_TEST",
12731 "reserved8",
12732 "PHYS_OFFLINE",
12733 "PHYS_GANGED",
12734 "PHYS_TEST",
12735 };
12736 if (pstate < ARRAY_SIZE(port_physical_names))
12737 return port_physical_names[pstate];
12738 return "unknown";
12739}
12740
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070012741/**
12742 * update_statusp - Update userspace status flag
12743 * @ppd: Port data structure
12744 * @state: port state information
12745 *
12746 * Actual port status is determined by the host_link_state value
12747 * in the ppd.
12748 *
12749 * host_link_state MUST be updated before updating the user space
12750 * statusp.
12751 */
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012752static void update_statusp(struct hfi1_pportdata *ppd, u32 state)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012753{
Mike Marciniszyn77241052015-07-30 15:17:43 -040012754 /*
12755 * Set port status flags in the page mapped into userspace
12756 * memory. Do it here to ensure a reliable state - this is
12757 * the only function called by all state handling code.
12758 * Always set the flags due to the fact that the cache value
12759 * might have been changed explicitly outside of this
12760 * function.
12761 */
12762 if (ppd->statusp) {
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012763 switch (state) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012764 case IB_PORT_DOWN:
12765 case IB_PORT_INIT:
12766 *ppd->statusp &= ~(HFI1_STATUS_IB_CONF |
12767 HFI1_STATUS_IB_READY);
12768 break;
12769 case IB_PORT_ARMED:
12770 *ppd->statusp |= HFI1_STATUS_IB_CONF;
12771 break;
12772 case IB_PORT_ACTIVE:
12773 *ppd->statusp |= HFI1_STATUS_IB_READY;
12774 break;
12775 }
12776 }
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070012777 dd_dev_info(ppd->dd, "logical state changed to %s (0x%x)\n",
12778 opa_lstate_name(state), state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012779}
12780
Michael J. Ruhl4061f3a2017-10-23 06:05:45 -070012781/**
Mike Marciniszyn77241052015-07-30 15:17:43 -040012782 * wait_logical_linkstate - wait for an IB link state change to occur
12783 * @ppd: port device
12784 * @state: the state to wait for
12785 * @msecs: the number of milliseconds to wait
12786 *
12787 * Wait up to msecs milliseconds for IB link state change to occur.
12788 * For now, take the easy polling route.
12789 * Returns 0 if state reached, otherwise -ETIMEDOUT.
12790 */
12791static int wait_logical_linkstate(struct hfi1_pportdata *ppd, u32 state,
12792 int msecs)
12793{
12794 unsigned long timeout;
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012795 u32 new_state;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012796
12797 timeout = jiffies + msecs_to_jiffies(msecs);
12798 while (1) {
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012799 new_state = chip_to_opa_lstate(ppd->dd,
12800 read_logical_state(ppd->dd));
12801 if (new_state == state)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012802 break;
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012803 if (time_after(jiffies, timeout)) {
12804 dd_dev_err(ppd->dd,
12805 "timeout waiting for link state 0x%x\n",
12806 state);
12807 return -ETIMEDOUT;
12808 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012809 msleep(20);
12810 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012811
Byczkowski, Jakub02a222c2017-08-04 13:52:26 -070012812 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012813}
12814
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012815static void log_state_transition(struct hfi1_pportdata *ppd, u32 state)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012816{
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012817 u32 ib_pstate = chip_to_opa_pstate(ppd->dd, state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012818
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012819 dd_dev_info(ppd->dd,
12820 "physical state changed to %s (0x%x), phy 0x%x\n",
12821 opa_pstate_name(ib_pstate), ib_pstate, state);
12822}
12823
12824/*
12825 * Read the physical hardware link state and check if it matches host
12826 * drivers anticipated state.
12827 */
12828static void log_physical_state(struct hfi1_pportdata *ppd, u32 state)
12829{
12830 u32 read_state = read_physical_state(ppd->dd);
12831
12832 if (read_state == state) {
12833 log_state_transition(ppd, state);
12834 } else {
12835 dd_dev_err(ppd->dd,
12836 "anticipated phy link state 0x%x, read 0x%x\n",
12837 state, read_state);
Mike Marciniszyn77241052015-07-30 15:17:43 -040012838 }
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012839}
12840
12841/*
12842 * wait_physical_linkstate - wait for an physical link state change to occur
12843 * @ppd: port device
12844 * @state: the state to wait for
12845 * @msecs: the number of milliseconds to wait
12846 *
12847 * Wait up to msecs milliseconds for physical link state change to occur.
12848 * Returns 0 if state reached, otherwise -ETIMEDOUT.
12849 */
12850static int wait_physical_linkstate(struct hfi1_pportdata *ppd, u32 state,
12851 int msecs)
12852{
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012853 u32 read_state;
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012854 unsigned long timeout;
12855
12856 timeout = jiffies + msecs_to_jiffies(msecs);
12857 while (1) {
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012858 read_state = read_physical_state(ppd->dd);
12859 if (read_state == state)
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012860 break;
12861 if (time_after(jiffies, timeout)) {
12862 dd_dev_err(ppd->dd,
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012863 "timeout waiting for phy link state 0x%x\n",
12864 state);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012865 return -ETIMEDOUT;
12866 }
12867 usleep_range(1950, 2050); /* sleep 2ms-ish */
12868 }
12869
Jakub Byczkowskid392a672017-08-13 08:08:52 -070012870 log_state_transition(ppd, state);
Byczkowski, Jakubbec7c792017-05-29 17:21:32 -070012871 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040012872}
12873
Sebastian Sanchezdf5efdd2017-09-26 06:05:57 -070012874/*
12875 * wait_phys_link_offline_quiet_substates - wait for any offline substate
12876 * @ppd: port device
12877 * @msecs: the number of milliseconds to wait
12878 *
12879 * Wait up to msecs milliseconds for any offline physical link
12880 * state change to occur.
12881 * Returns 0 if at least one state is reached, otherwise -ETIMEDOUT.
12882 */
12883static int wait_phys_link_offline_substates(struct hfi1_pportdata *ppd,
12884 int msecs)
12885{
12886 u32 read_state;
12887 unsigned long timeout;
12888
12889 timeout = jiffies + msecs_to_jiffies(msecs);
12890 while (1) {
12891 read_state = read_physical_state(ppd->dd);
12892 if ((read_state & 0xF0) == PLS_OFFLINE)
12893 break;
12894 if (time_after(jiffies, timeout)) {
12895 dd_dev_err(ppd->dd,
12896 "timeout waiting for phy link offline.quiet substates. Read state 0x%x, %dms\n",
12897 read_state, msecs);
12898 return -ETIMEDOUT;
12899 }
12900 usleep_range(1950, 2050); /* sleep 2ms-ish */
12901 }
12902
12903 log_state_transition(ppd, read_state);
12904 return read_state;
12905}
12906
Mike Marciniszyn77241052015-07-30 15:17:43 -040012907#define CLEAR_STATIC_RATE_CONTROL_SMASK(r) \
12908(r &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12909
12910#define SET_STATIC_RATE_CONTROL_SMASK(r) \
12911(r |= SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK)
12912
Michael J. Ruhl9b60d2c2017-05-04 05:15:09 -070012913void hfi1_init_ctxt(struct send_context *sc)
Mike Marciniszyn77241052015-07-30 15:17:43 -040012914{
Jubin Johnd125a6c2016-02-14 20:19:49 -080012915 if (sc) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040012916 struct hfi1_devdata *dd = sc->dd;
12917 u64 reg;
12918 u8 set = (sc->type == SC_USER ?
12919 HFI1_CAP_IS_USET(STATIC_RATE_CTRL) :
12920 HFI1_CAP_IS_KSET(STATIC_RATE_CTRL));
12921 reg = read_kctxt_csr(dd, sc->hw_context,
12922 SEND_CTXT_CHECK_ENABLE);
12923 if (set)
12924 CLEAR_STATIC_RATE_CONTROL_SMASK(reg);
12925 else
12926 SET_STATIC_RATE_CONTROL_SMASK(reg);
12927 write_kctxt_csr(dd, sc->hw_context,
12928 SEND_CTXT_CHECK_ENABLE, reg);
12929 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040012930}
12931
12932int hfi1_tempsense_rd(struct hfi1_devdata *dd, struct hfi1_temp *temp)
12933{
12934 int ret = 0;
12935 u64 reg;
12936
12937 if (dd->icode != ICODE_RTL_SILICON) {
12938 if (HFI1_CAP_IS_KSET(PRINT_UNIMPL))
12939 dd_dev_info(dd, "%s: tempsense not supported by HW\n",
12940 __func__);
12941 return -EINVAL;
12942 }
12943 reg = read_csr(dd, ASIC_STS_THERM);
12944 temp->curr = ((reg >> ASIC_STS_THERM_CURR_TEMP_SHIFT) &
12945 ASIC_STS_THERM_CURR_TEMP_MASK);
12946 temp->lo_lim = ((reg >> ASIC_STS_THERM_LO_TEMP_SHIFT) &
12947 ASIC_STS_THERM_LO_TEMP_MASK);
12948 temp->hi_lim = ((reg >> ASIC_STS_THERM_HI_TEMP_SHIFT) &
12949 ASIC_STS_THERM_HI_TEMP_MASK);
12950 temp->crit_lim = ((reg >> ASIC_STS_THERM_CRIT_TEMP_SHIFT) &
12951 ASIC_STS_THERM_CRIT_TEMP_MASK);
12952 /* triggers is a 3-bit value - 1 bit per trigger. */
12953 temp->triggers = (u8)((reg >> ASIC_STS_THERM_LOW_SHIFT) & 0x7);
12954
12955 return ret;
12956}
12957
Mike Marciniszyn2d9544a2017-10-23 06:06:16 -070012958/**
12959 * get_int_mask - get 64 bit int mask
12960 * @dd - the devdata
12961 * @i - the csr (relative to CCE_INT_MASK)
12962 *
12963 * Returns the mask with the urgent interrupt mask
12964 * bit clear for kernel receive contexts.
12965 */
12966static u64 get_int_mask(struct hfi1_devdata *dd, u32 i)
12967{
12968 u64 mask = U64_MAX; /* default to no change */
12969
12970 if (i >= (IS_RCVURGENT_START / 64) && i < (IS_RCVURGENT_END / 64)) {
12971 int j = (i - (IS_RCVURGENT_START / 64)) * 64;
12972 int k = !j ? IS_RCVURGENT_START % 64 : 0;
12973
12974 if (j)
12975 j -= IS_RCVURGENT_START % 64;
12976 /* j = 0..dd->first_dyn_alloc_ctxt - 1,k = 0..63 */
12977 for (; j < dd->first_dyn_alloc_ctxt && k < 64; j++, k++)
12978 /* convert to bit in mask and clear */
12979 mask &= ~BIT_ULL(k);
12980 }
12981 return mask;
12982}
12983
Mike Marciniszyn77241052015-07-30 15:17:43 -040012984/* ========================================================================= */
12985
12986/*
12987 * Enable/disable chip from delivering interrupts.
12988 */
12989void set_intr_state(struct hfi1_devdata *dd, u32 enable)
12990{
12991 int i;
12992
12993 /*
12994 * In HFI, the mask needs to be 1 to allow interrupts.
12995 */
12996 if (enable) {
Mike Marciniszyn2d9544a2017-10-23 06:06:16 -070012997 /* enable all interrupts but urgent on kernel contexts */
12998 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
12999 u64 mask = get_int_mask(dd, i);
13000
13001 write_csr(dd, CCE_INT_MASK + (8 * i), mask);
13002 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013003
Easwar Hariharan8ebd4cf2016-02-03 14:31:14 -080013004 init_qsfp_int(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013005 } else {
13006 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013007 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013008 }
13009}
13010
13011/*
13012 * Clear all interrupt sources on the chip.
13013 */
13014static void clear_all_interrupts(struct hfi1_devdata *dd)
13015{
13016 int i;
13017
13018 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013019 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~(u64)0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013020
13021 write_csr(dd, CCE_ERR_CLEAR, ~(u64)0);
13022 write_csr(dd, MISC_ERR_CLEAR, ~(u64)0);
13023 write_csr(dd, RCV_ERR_CLEAR, ~(u64)0);
13024 write_csr(dd, SEND_ERR_CLEAR, ~(u64)0);
13025 write_csr(dd, SEND_PIO_ERR_CLEAR, ~(u64)0);
13026 write_csr(dd, SEND_DMA_ERR_CLEAR, ~(u64)0);
13027 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~(u64)0);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013028 for (i = 0; i < chip_send_contexts(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013029 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~(u64)0);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013030 for (i = 0; i < chip_sdma_engines(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013031 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~(u64)0);
13032
13033 write_csr(dd, DCC_ERR_FLG_CLR, ~(u64)0);
13034 write_csr(dd, DC_LCB_ERR_CLR, ~(u64)0);
13035 write_csr(dd, DC_DC8051_ERR_CLR, ~(u64)0);
13036}
13037
Michael J. Ruhl82a97922018-02-01 10:43:42 -080013038/**
13039 * hfi1_clean_up_interrupts() - Free all IRQ resources
13040 * @dd: valid device data data structure
13041 *
Michael J. Ruhl70324732018-06-20 09:43:23 -070013042 * Free the MSIx and assoicated PCI resources, if they have been allocated.
Michael J. Ruhl82a97922018-02-01 10:43:42 -080013043 */
13044void hfi1_clean_up_interrupts(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013045{
13046 int i;
Michael J. Ruhl70324732018-06-20 09:43:23 -070013047 struct hfi1_msix_entry *me = dd->msix_entries;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013048
13049 /* remove irqs - must happen before disabling/turning off */
Michael J. Ruhl70324732018-06-20 09:43:23 -070013050 for (i = 0; i < dd->num_msix_entries; i++, me++) {
13051 if (!me->arg) /* => no irq, no affinity */
13052 continue;
13053 hfi1_put_irq_affinity(dd, me);
13054 pci_free_irq(dd->pcidev, i, me->arg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013055 }
13056
Michael J. Ruhl70324732018-06-20 09:43:23 -070013057 /* clean structures */
13058 kfree(dd->msix_entries);
13059 dd->msix_entries = NULL;
13060 dd->num_msix_entries = 0;
13061
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013062 pci_free_irq_vectors(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013063}
13064
13065/*
13066 * Remap the interrupt source from the general handler to the given MSI-X
13067 * interrupt.
13068 */
13069static void remap_intr(struct hfi1_devdata *dd, int isrc, int msix_intr)
13070{
13071 u64 reg;
13072 int m, n;
13073
13074 /* clear from the handled mask of the general interrupt */
13075 m = isrc / 64;
13076 n = isrc % 64;
Dennis Dalessandrobc54f672017-05-29 17:18:14 -070013077 if (likely(m < CCE_NUM_INT_CSRS)) {
13078 dd->gi_mask[m] &= ~((u64)1 << n);
13079 } else {
13080 dd_dev_err(dd, "remap interrupt err\n");
13081 return;
13082 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013083
13084 /* direct the chip source to the given MSI-X interrupt */
13085 m = isrc / 8;
13086 n = isrc % 8;
Jubin John8638b772016-02-14 20:19:24 -080013087 reg = read_csr(dd, CCE_INT_MAP + (8 * m));
13088 reg &= ~((u64)0xff << (8 * n));
13089 reg |= ((u64)msix_intr & 0xff) << (8 * n);
13090 write_csr(dd, CCE_INT_MAP + (8 * m), reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013091}
13092
13093static void remap_sdma_interrupts(struct hfi1_devdata *dd,
13094 int engine, int msix_intr)
13095{
13096 /*
13097 * SDMA engine interrupt sources grouped by type, rather than
13098 * engine. Per-engine interrupts are as follows:
13099 * SDMA
13100 * SDMAProgress
13101 * SDMAIdle
13102 */
Jubin John8638b772016-02-14 20:19:24 -080013103 remap_intr(dd, IS_SDMA_START + 0 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080013104 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080013105 remap_intr(dd, IS_SDMA_START + 1 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080013106 msix_intr);
Jubin John8638b772016-02-14 20:19:24 -080013107 remap_intr(dd, IS_SDMA_START + 2 * TXE_NUM_SDMA_ENGINES + engine,
Jubin John17fb4f22016-02-14 20:21:52 -080013108 msix_intr);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013109}
13110
Mike Marciniszyn77241052015-07-30 15:17:43 -040013111static int request_msix_irqs(struct hfi1_devdata *dd)
13112{
Mike Marciniszyn77241052015-07-30 15:17:43 -040013113 int first_general, last_general;
13114 int first_sdma, last_sdma;
13115 int first_rx, last_rx;
Mitko Haralanov957558c2016-02-03 14:33:40 -080013116 int i, ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013117
13118 /* calculate the ranges we are going to use */
13119 first_general = 0;
Jubin Johnf3ff8182016-02-14 20:20:50 -080013120 last_general = first_general + 1;
13121 first_sdma = last_general;
13122 last_sdma = first_sdma + dd->num_sdma;
13123 first_rx = last_sdma;
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013124 last_rx = first_rx + dd->n_krcv_queues + dd->num_vnic_contexts;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013125
13126 /* VNIC MSIx interrupts get mapped when VNIC contexts are created */
13127 dd->first_dyn_msix_idx = first_rx + dd->n_krcv_queues;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013128
13129 /*
Mike Marciniszyn77241052015-07-30 15:17:43 -040013130 * Sanity check - the code expects all SDMA chip source
13131 * interrupts to be in the same CSR, starting at bit 0. Verify
13132 * that this is true by checking the bit location of the start.
13133 */
13134 BUILD_BUG_ON(IS_SDMA_START % 64);
13135
13136 for (i = 0; i < dd->num_msix_entries; i++) {
13137 struct hfi1_msix_entry *me = &dd->msix_entries[i];
13138 const char *err_info;
13139 irq_handler_t handler;
Dean Luickf4f30031c2015-10-26 10:28:44 -040013140 irq_handler_t thread = NULL;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013141 void *arg = NULL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013142 int idx;
13143 struct hfi1_ctxtdata *rcd = NULL;
13144 struct sdma_engine *sde = NULL;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013145 char name[MAX_NAME_SIZE];
Mike Marciniszyn77241052015-07-30 15:17:43 -040013146
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013147 /* obtain the arguments to pci_request_irq */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013148 if (first_general <= i && i < last_general) {
13149 idx = i - first_general;
13150 handler = general_interrupt;
13151 arg = dd;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013152 snprintf(name, sizeof(name),
Jubin John98050712015-11-16 21:59:27 -050013153 DRIVER_NAME "_%d", dd->unit);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013154 err_info = "general";
Mitko Haralanov957558c2016-02-03 14:33:40 -080013155 me->type = IRQ_GENERAL;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013156 } else if (first_sdma <= i && i < last_sdma) {
13157 idx = i - first_sdma;
13158 sde = &dd->per_sdma[idx];
13159 handler = sdma_interrupt;
13160 arg = sde;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013161 snprintf(name, sizeof(name),
Jubin John98050712015-11-16 21:59:27 -050013162 DRIVER_NAME "_%d sdma%d", dd->unit, idx);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013163 err_info = "sdma";
13164 remap_sdma_interrupts(dd, idx, i);
Mitko Haralanov957558c2016-02-03 14:33:40 -080013165 me->type = IRQ_SDMA;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013166 } else if (first_rx <= i && i < last_rx) {
13167 idx = i - first_rx;
Michael J. Ruhld59075a2017-09-26 07:01:16 -070013168 rcd = hfi1_rcd_get_by_index_safe(dd, idx);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013169 if (rcd) {
13170 /*
13171 * Set the interrupt register and mask for this
13172 * context's interrupt.
13173 */
13174 rcd->ireg = (IS_RCVAVAIL_START + idx) / 64;
13175 rcd->imask = ((u64)1) <<
13176 ((IS_RCVAVAIL_START + idx) % 64);
13177 handler = receive_context_interrupt;
13178 thread = receive_context_thread;
13179 arg = rcd;
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013180 snprintf(name, sizeof(name),
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013181 DRIVER_NAME "_%d kctxt%d",
13182 dd->unit, idx);
13183 err_info = "receive context";
13184 remap_intr(dd, IS_RCVAVAIL_START + idx, i);
13185 me->type = IRQ_RCVCTXT;
13186 rcd->msix_intr = i;
Michael J. Ruhld295dbe2017-08-04 13:52:44 -070013187 hfi1_rcd_put(rcd);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013188 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040013189 } else {
13190 /* not in our expected range - complain, then
Jubin John4d114fd2016-02-14 20:21:43 -080013191 * ignore it
13192 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013193 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013194 "Unexpected extra MSI-X interrupt %d\n", i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013195 continue;
13196 }
13197 /* no argument, no interrupt */
Jubin Johnd125a6c2016-02-14 20:19:49 -080013198 if (!arg)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013199 continue;
13200 /* make sure the name is terminated */
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013201 name[sizeof(name) - 1] = 0;
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013202 me->irq = pci_irq_vector(dd->pcidev, i);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013203 ret = pci_request_irq(dd->pcidev, i, handler, thread, arg,
13204 name);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013205 if (ret) {
13206 dd_dev_err(dd,
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013207 "unable to allocate %s interrupt, irq %d, index %d, err %d\n",
13208 err_info, me->irq, idx, ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013209 return ret;
13210 }
13211 /*
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013212 * assign arg after pci_request_irq call, so it will be
Mike Marciniszyn77241052015-07-30 15:17:43 -040013213 * cleaned up
13214 */
13215 me->arg = arg;
13216
Mitko Haralanov957558c2016-02-03 14:33:40 -080013217 ret = hfi1_get_irq_affinity(dd, me);
13218 if (ret)
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013219 dd_dev_err(dd, "unable to pin IRQ %d\n", ret);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013220 }
13221
Mike Marciniszyn77241052015-07-30 15:17:43 -040013222 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013223}
13224
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013225void hfi1_vnic_synchronize_irq(struct hfi1_devdata *dd)
13226{
13227 int i;
13228
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013229 for (i = 0; i < dd->vnic.num_ctxt; i++) {
13230 struct hfi1_ctxtdata *rcd = dd->vnic.ctxt[i];
13231 struct hfi1_msix_entry *me = &dd->msix_entries[rcd->msix_intr];
13232
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013233 synchronize_irq(me->irq);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013234 }
13235}
13236
13237void hfi1_reset_vnic_msix_info(struct hfi1_ctxtdata *rcd)
13238{
13239 struct hfi1_devdata *dd = rcd->dd;
13240 struct hfi1_msix_entry *me = &dd->msix_entries[rcd->msix_intr];
13241
13242 if (!me->arg) /* => no irq, no affinity */
13243 return;
13244
13245 hfi1_put_irq_affinity(dd, me);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013246 pci_free_irq(dd->pcidev, rcd->msix_intr, me->arg);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013247
13248 me->arg = NULL;
13249}
13250
13251void hfi1_set_vnic_msix_info(struct hfi1_ctxtdata *rcd)
13252{
13253 struct hfi1_devdata *dd = rcd->dd;
13254 struct hfi1_msix_entry *me;
13255 int idx = rcd->ctxt;
13256 void *arg = rcd;
13257 int ret;
13258
13259 rcd->msix_intr = dd->vnic.msix_idx++;
13260 me = &dd->msix_entries[rcd->msix_intr];
13261
13262 /*
13263 * Set the interrupt register and mask for this
13264 * context's interrupt.
13265 */
13266 rcd->ireg = (IS_RCVAVAIL_START + idx) / 64;
13267 rcd->imask = ((u64)1) <<
13268 ((IS_RCVAVAIL_START + idx) % 64);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013269 me->type = IRQ_RCVCTXT;
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013270 me->irq = pci_irq_vector(dd->pcidev, rcd->msix_intr);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013271 remap_intr(dd, IS_RCVAVAIL_START + idx, rcd->msix_intr);
13272
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013273 ret = pci_request_irq(dd->pcidev, rcd->msix_intr,
13274 receive_context_interrupt,
13275 receive_context_thread, arg,
13276 DRIVER_NAME "_%d kctxt%d", dd->unit, idx);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013277 if (ret) {
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013278 dd_dev_err(dd, "vnic irq request (irq %d, idx %d) fail %d\n",
13279 me->irq, idx, ret);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013280 return;
13281 }
13282 /*
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013283 * assign arg after pci_request_irq call, so it will be
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013284 * cleaned up
13285 */
13286 me->arg = arg;
13287
13288 ret = hfi1_get_irq_affinity(dd, me);
13289 if (ret) {
13290 dd_dev_err(dd,
13291 "unable to pin IRQ %d\n", ret);
Michael J. Ruhl05cb18f2017-09-26 07:00:30 -070013292 pci_free_irq(dd->pcidev, rcd->msix_intr, me->arg);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013293 }
13294}
13295
Mike Marciniszyn77241052015-07-30 15:17:43 -040013296/*
13297 * Set the general handler to accept all interrupts, remap all
13298 * chip interrupts back to MSI-X 0.
13299 */
13300static void reset_interrupts(struct hfi1_devdata *dd)
13301{
13302 int i;
13303
13304 /* all interrupts handled by the general handler */
13305 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
13306 dd->gi_mask[i] = ~(u64)0;
13307
13308 /* all chip interrupts map to MSI-X 0 */
13309 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013310 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013311}
13312
13313static int set_up_interrupts(struct hfi1_devdata *dd)
13314{
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013315 u32 total;
13316 int ret, request;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013317
13318 /*
13319 * Interrupt count:
13320 * 1 general, "slow path" interrupt (includes the SDMA engines
13321 * slow source, SDMACleanupDone)
13322 * N interrupts - one per used SDMA engine
13323 * M interrupt - one per kernel receive context
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013324 * V interrupt - one for each VNIC context
Mike Marciniszyn77241052015-07-30 15:17:43 -040013325 */
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013326 total = 1 + dd->num_sdma + dd->n_krcv_queues + dd->num_vnic_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013327
Mike Marciniszyn77241052015-07-30 15:17:43 -040013328 /* ask for MSI-X interrupts */
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013329 request = request_msix(dd, total);
13330 if (request < 0) {
13331 ret = request;
13332 goto fail;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013333 } else {
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013334 dd->msix_entries = kcalloc(total, sizeof(*dd->msix_entries),
13335 GFP_KERNEL);
13336 if (!dd->msix_entries) {
13337 ret = -ENOMEM;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013338 goto fail;
13339 }
Michael J. Ruhlbb7dde82017-05-26 05:35:31 -070013340 /* using MSI-X */
13341 dd->num_msix_entries = total;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013342 dd_dev_info(dd, "%u MSI-X interrupts allocated\n", total);
13343 }
13344
13345 /* mask all interrupts */
13346 set_intr_state(dd, 0);
13347 /* clear all pending interrupts */
13348 clear_all_interrupts(dd);
13349
13350 /* reset general handler mask, chip MSI-X mappings */
13351 reset_interrupts(dd);
13352
Michael J. Ruhl70324732018-06-20 09:43:23 -070013353 ret = request_msix_irqs(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013354 if (ret)
13355 goto fail;
13356
13357 return 0;
13358
13359fail:
Michael J. Ruhl82a97922018-02-01 10:43:42 -080013360 hfi1_clean_up_interrupts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013361 return ret;
13362}
13363
13364/*
13365 * Set up context values in dd. Sets:
13366 *
13367 * num_rcv_contexts - number of contexts being used
13368 * n_krcv_queues - number of kernel contexts
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013369 * first_dyn_alloc_ctxt - first dynamically allocated context
13370 * in array of contexts
Mike Marciniszyn77241052015-07-30 15:17:43 -040013371 * freectxts - number of free user contexts
13372 * num_send_contexts - number of PIO send contexts being used
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013373 * num_vnic_contexts - number of contexts reserved for VNIC
Mike Marciniszyn77241052015-07-30 15:17:43 -040013374 */
13375static int set_up_context_variables(struct hfi1_devdata *dd)
13376{
Harish Chegondi429b6a72016-08-31 07:24:40 -070013377 unsigned long num_kernel_contexts;
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013378 u16 num_vnic_contexts = HFI1_NUM_VNIC_CTXT;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013379 int total_contexts;
13380 int ret;
13381 unsigned ngroups;
Dean Luick8f000f72016-04-12 11:32:06 -070013382 int qos_rmt_count;
13383 int user_rmt_reduced;
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013384 u32 n_usr_ctxts;
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013385 u32 send_contexts = chip_send_contexts(dd);
13386 u32 rcv_contexts = chip_rcv_contexts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013387
13388 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070013389 * Kernel receive contexts:
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013390 * - Context 0 - control context (VL15/multicast/error)
Dean Luick33a9eb52016-04-12 10:50:22 -070013391 * - Context 1 - first kernel context
13392 * - Context 2 - second kernel context
13393 * ...
Mike Marciniszyn77241052015-07-30 15:17:43 -040013394 */
13395 if (n_krcvqs)
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013396 /*
Dean Luick33a9eb52016-04-12 10:50:22 -070013397 * n_krcvqs is the sum of module parameter kernel receive
13398 * contexts, krcvqs[]. It does not include the control
13399 * context, so add that.
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050013400 */
Dean Luick33a9eb52016-04-12 10:50:22 -070013401 num_kernel_contexts = n_krcvqs + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013402 else
Harish Chegondi8784ac02016-07-25 13:38:50 -070013403 num_kernel_contexts = DEFAULT_KRCVQS + 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013404 /*
13405 * Every kernel receive context needs an ACK send context.
13406 * one send context is allocated for each VL{0-7} and VL15
13407 */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013408 if (num_kernel_contexts > (send_contexts - num_vls - 1)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013409 dd_dev_err(dd,
Harish Chegondi429b6a72016-08-31 07:24:40 -070013410 "Reducing # kernel rcv contexts to: %d, from %lu\n",
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013411 send_contexts - num_vls - 1,
Harish Chegondi429b6a72016-08-31 07:24:40 -070013412 num_kernel_contexts);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013413 num_kernel_contexts = send_contexts - num_vls - 1;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013414 }
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013415
13416 /* Accommodate VNIC contexts if possible */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013417 if ((num_kernel_contexts + num_vnic_contexts) > rcv_contexts) {
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013418 dd_dev_err(dd, "No receive contexts available for VNIC\n");
13419 num_vnic_contexts = 0;
13420 }
13421 total_contexts = num_kernel_contexts + num_vnic_contexts;
13422
Mike Marciniszyn77241052015-07-30 15:17:43 -040013423 /*
Jubin John0852d242016-04-12 11:30:08 -070013424 * User contexts:
13425 * - default to 1 user context per real (non-HT) CPU core if
13426 * num_user_contexts is negative
Mike Marciniszyn77241052015-07-30 15:17:43 -040013427 */
Sebastian Sanchez2ce6bf22015-12-11 08:44:48 -050013428 if (num_user_contexts < 0)
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013429 n_usr_ctxts = cpumask_weight(&node_affinity.real_cpu_mask);
13430 else
13431 n_usr_ctxts = num_user_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013432 /*
13433 * Adjust the counts given a global max.
13434 */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013435 if (total_contexts + n_usr_ctxts > rcv_contexts) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013436 dd_dev_err(dd,
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013437 "Reducing # user receive contexts to: %d, from %u\n",
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013438 rcv_contexts - total_contexts,
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013439 n_usr_ctxts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013440 /* recalculate */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013441 n_usr_ctxts = rcv_contexts - total_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013442 }
13443
Dean Luick8f000f72016-04-12 11:32:06 -070013444 /* each user context requires an entry in the RMT */
13445 qos_rmt_count = qos_rmt_entries(dd, NULL, NULL);
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013446 if (qos_rmt_count + n_usr_ctxts > NUM_MAP_ENTRIES) {
Dean Luick8f000f72016-04-12 11:32:06 -070013447 user_rmt_reduced = NUM_MAP_ENTRIES - qos_rmt_count;
13448 dd_dev_err(dd,
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013449 "RMT size is reducing the number of user receive contexts from %u to %d\n",
13450 n_usr_ctxts,
Dean Luick8f000f72016-04-12 11:32:06 -070013451 user_rmt_reduced);
13452 /* recalculate */
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013453 n_usr_ctxts = user_rmt_reduced;
Dean Luick8f000f72016-04-12 11:32:06 -070013454 }
13455
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013456 total_contexts += n_usr_ctxts;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013457
13458 /* the first N are kernel contexts, the rest are user/vnic contexts */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013459 dd->num_rcv_contexts = total_contexts;
13460 dd->n_krcv_queues = num_kernel_contexts;
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013461 dd->first_dyn_alloc_ctxt = num_kernel_contexts;
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013462 dd->num_vnic_contexts = num_vnic_contexts;
Kamenee Arumugam45a041c2017-10-23 06:06:24 -070013463 dd->num_user_contexts = n_usr_ctxts;
13464 dd->freectxts = n_usr_ctxts;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013465 dd_dev_info(dd,
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013466 "rcv contexts: chip %d, used %d (kernel %d, vnic %u, user %u)\n",
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013467 rcv_contexts,
Jubin John17fb4f22016-02-14 20:21:52 -080013468 (int)dd->num_rcv_contexts,
13469 (int)dd->n_krcv_queues,
Michael J. Ruhld7d62612017-10-02 11:04:19 -070013470 dd->num_vnic_contexts,
13471 dd->num_user_contexts);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013472
13473 /*
13474 * Receive array allocation:
13475 * All RcvArray entries are divided into groups of 8. This
13476 * is required by the hardware and will speed up writes to
13477 * consecutive entries by using write-combining of the entire
13478 * cacheline.
13479 *
13480 * The number of groups are evenly divided among all contexts.
13481 * any left over groups will be given to the first N user
13482 * contexts.
13483 */
13484 dd->rcv_entries.group_size = RCV_INCREMENT;
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013485 ngroups = chip_rcv_array_count(dd) / dd->rcv_entries.group_size;
Mike Marciniszyn77241052015-07-30 15:17:43 -040013486 dd->rcv_entries.ngroups = ngroups / dd->num_rcv_contexts;
13487 dd->rcv_entries.nctxt_extra = ngroups -
13488 (dd->num_rcv_contexts * dd->rcv_entries.ngroups);
13489 dd_dev_info(dd, "RcvArray groups %u, ctxts extra %u\n",
13490 dd->rcv_entries.ngroups,
13491 dd->rcv_entries.nctxt_extra);
13492 if (dd->rcv_entries.ngroups * dd->rcv_entries.group_size >
13493 MAX_EAGER_ENTRIES * 2) {
13494 dd->rcv_entries.ngroups = (MAX_EAGER_ENTRIES * 2) /
13495 dd->rcv_entries.group_size;
13496 dd_dev_info(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013497 "RcvArray group count too high, change to %u\n",
13498 dd->rcv_entries.ngroups);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013499 dd->rcv_entries.nctxt_extra = 0;
13500 }
13501 /*
13502 * PIO send contexts
13503 */
13504 ret = init_sc_pools_and_sizes(dd);
13505 if (ret >= 0) { /* success */
13506 dd->num_send_contexts = ret;
13507 dd_dev_info(
13508 dd,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013509 "send contexts: chip %d, used %d (kernel %d, ack %d, user %d, vl15 %d)\n",
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013510 send_contexts,
Mike Marciniszyn77241052015-07-30 15:17:43 -040013511 dd->num_send_contexts,
13512 dd->sc_sizes[SC_KERNEL].count,
13513 dd->sc_sizes[SC_ACK].count,
Jianxin Xiong44306f12016-04-12 11:30:28 -070013514 dd->sc_sizes[SC_USER].count,
13515 dd->sc_sizes[SC_VL15].count);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013516 ret = 0; /* success */
13517 }
13518
13519 return ret;
13520}
13521
13522/*
13523 * Set the device/port partition key table. The MAD code
13524 * will ensure that, at least, the partial management
13525 * partition key is present in the table.
13526 */
13527static void set_partition_keys(struct hfi1_pportdata *ppd)
13528{
13529 struct hfi1_devdata *dd = ppd->dd;
13530 u64 reg = 0;
13531 int i;
13532
13533 dd_dev_info(dd, "Setting partition keys\n");
13534 for (i = 0; i < hfi1_get_npkeys(dd); i++) {
13535 reg |= (ppd->pkeys[i] &
13536 RCV_PARTITION_KEY_PARTITION_KEY_A_MASK) <<
13537 ((i % 4) *
13538 RCV_PARTITION_KEY_PARTITION_KEY_B_SHIFT);
13539 /* Each register holds 4 PKey values. */
13540 if ((i % 4) == 3) {
13541 write_csr(dd, RCV_PARTITION_KEY +
13542 ((i - 3) * 2), reg);
13543 reg = 0;
13544 }
13545 }
13546
13547 /* Always enable HW pkeys check when pkeys table is set */
13548 add_rcvctrl(dd, RCV_CTRL_RCV_PARTITION_KEY_ENABLE_SMASK);
13549}
13550
13551/*
13552 * These CSRs and memories are uninitialized on reset and must be
13553 * written before reading to set the ECC/parity bits.
13554 *
13555 * NOTE: All user context CSRs that are not mmaped write-only
13556 * (e.g. the TID flows) must be initialized even if the driver never
13557 * reads them.
13558 */
13559static void write_uninitialized_csrs_and_memories(struct hfi1_devdata *dd)
13560{
13561 int i, j;
13562
13563 /* CceIntMap */
13564 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080013565 write_csr(dd, CCE_INT_MAP + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013566
13567 /* SendCtxtCreditReturnAddr */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013568 for (i = 0; i < chip_send_contexts(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040013569 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13570
13571 /* PIO Send buffers */
13572 /* SDMA Send buffers */
Jubin John4d114fd2016-02-14 20:21:43 -080013573 /*
13574 * These are not normally read, and (presently) have no method
13575 * to be read, so are not pre-initialized
13576 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013577
13578 /* RcvHdrAddr */
13579 /* RcvHdrTailAddr */
13580 /* RcvTidFlowTable */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013581 for (i = 0; i < chip_rcv_contexts(dd); i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013582 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13583 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13584 for (j = 0; j < RXE_NUM_TID_FLOWS; j++)
Jubin John8638b772016-02-14 20:19:24 -080013585 write_uctxt_csr(dd, i, RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013586 }
13587
13588 /* RcvArray */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013589 for (i = 0; i < chip_rcv_array_count(dd); i++)
Mike Marciniszyncb51c5d2017-07-24 07:45:31 -070013590 hfi1_put_tid(dd, i, PT_INVALID_FLUSH, 0, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013591
13592 /* RcvQPMapTable */
13593 for (i = 0; i < 32; i++)
13594 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13595}
13596
13597/*
13598 * Use the ctrl_bits in CceCtrl to clear the status_bits in CceStatus.
13599 */
13600static void clear_cce_status(struct hfi1_devdata *dd, u64 status_bits,
13601 u64 ctrl_bits)
13602{
13603 unsigned long timeout;
13604 u64 reg;
13605
13606 /* is the condition present? */
13607 reg = read_csr(dd, CCE_STATUS);
13608 if ((reg & status_bits) == 0)
13609 return;
13610
13611 /* clear the condition */
13612 write_csr(dd, CCE_CTRL, ctrl_bits);
13613
13614 /* wait for the condition to clear */
13615 timeout = jiffies + msecs_to_jiffies(CCE_STATUS_TIMEOUT);
13616 while (1) {
13617 reg = read_csr(dd, CCE_STATUS);
13618 if ((reg & status_bits) == 0)
13619 return;
13620 if (time_after(jiffies, timeout)) {
13621 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013622 "Timeout waiting for CceStatus to clear bits 0x%llx, remaining 0x%llx\n",
13623 status_bits, reg & status_bits);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013624 return;
13625 }
13626 udelay(1);
13627 }
13628}
13629
13630/* set CCE CSRs to chip reset defaults */
13631static void reset_cce_csrs(struct hfi1_devdata *dd)
13632{
13633 int i;
13634
13635 /* CCE_REVISION read-only */
13636 /* CCE_REVISION2 read-only */
13637 /* CCE_CTRL - bits clear automatically */
13638 /* CCE_STATUS read-only, use CceCtrl to clear */
13639 clear_cce_status(dd, ALL_FROZE, CCE_CTRL_SPC_UNFREEZE_SMASK);
13640 clear_cce_status(dd, ALL_TXE_PAUSE, CCE_CTRL_TXE_RESUME_SMASK);
13641 clear_cce_status(dd, ALL_RXE_PAUSE, CCE_CTRL_RXE_RESUME_SMASK);
13642 for (i = 0; i < CCE_NUM_SCRATCH; i++)
13643 write_csr(dd, CCE_SCRATCH + (8 * i), 0);
13644 /* CCE_ERR_STATUS read-only */
13645 write_csr(dd, CCE_ERR_MASK, 0);
13646 write_csr(dd, CCE_ERR_CLEAR, ~0ull);
13647 /* CCE_ERR_FORCE leave alone */
13648 for (i = 0; i < CCE_NUM_32_BIT_COUNTERS; i++)
13649 write_csr(dd, CCE_COUNTER_ARRAY32 + (8 * i), 0);
13650 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_RESETCSR);
13651 /* CCE_PCIE_CTRL leave alone */
13652 for (i = 0; i < CCE_NUM_MSIX_VECTORS; i++) {
13653 write_csr(dd, CCE_MSIX_TABLE_LOWER + (8 * i), 0);
13654 write_csr(dd, CCE_MSIX_TABLE_UPPER + (8 * i),
Jubin John17fb4f22016-02-14 20:21:52 -080013655 CCE_MSIX_TABLE_UPPER_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013656 }
13657 for (i = 0; i < CCE_NUM_MSIX_PBAS; i++) {
13658 /* CCE_MSIX_PBA read-only */
13659 write_csr(dd, CCE_MSIX_INT_GRANTED, ~0ull);
13660 write_csr(dd, CCE_MSIX_VEC_CLR_WITHOUT_INT, ~0ull);
13661 }
13662 for (i = 0; i < CCE_NUM_INT_MAP_CSRS; i++)
13663 write_csr(dd, CCE_INT_MAP, 0);
13664 for (i = 0; i < CCE_NUM_INT_CSRS; i++) {
13665 /* CCE_INT_STATUS read-only */
13666 write_csr(dd, CCE_INT_MASK + (8 * i), 0);
13667 write_csr(dd, CCE_INT_CLEAR + (8 * i), ~0ull);
13668 /* CCE_INT_FORCE leave alone */
13669 /* CCE_INT_BLOCKED read-only */
13670 }
13671 for (i = 0; i < CCE_NUM_32_BIT_INT_COUNTERS; i++)
13672 write_csr(dd, CCE_INT_COUNTER_ARRAY32 + (8 * i), 0);
13673}
13674
Mike Marciniszyn77241052015-07-30 15:17:43 -040013675/* set MISC CSRs to chip reset defaults */
13676static void reset_misc_csrs(struct hfi1_devdata *dd)
13677{
13678 int i;
13679
13680 for (i = 0; i < 32; i++) {
13681 write_csr(dd, MISC_CFG_RSA_R2 + (8 * i), 0);
13682 write_csr(dd, MISC_CFG_RSA_SIGNATURE + (8 * i), 0);
13683 write_csr(dd, MISC_CFG_RSA_MODULUS + (8 * i), 0);
13684 }
Jubin John4d114fd2016-02-14 20:21:43 -080013685 /*
13686 * MISC_CFG_SHA_PRELOAD leave alone - always reads 0 and can
13687 * only be written 128-byte chunks
13688 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040013689 /* init RSA engine to clear lingering errors */
13690 write_csr(dd, MISC_CFG_RSA_CMD, 1);
13691 write_csr(dd, MISC_CFG_RSA_MU, 0);
13692 write_csr(dd, MISC_CFG_FW_CTRL, 0);
13693 /* MISC_STS_8051_DIGEST read-only */
13694 /* MISC_STS_SBM_DIGEST read-only */
13695 /* MISC_STS_PCIE_DIGEST read-only */
13696 /* MISC_STS_FAB_DIGEST read-only */
13697 /* MISC_ERR_STATUS read-only */
13698 write_csr(dd, MISC_ERR_MASK, 0);
13699 write_csr(dd, MISC_ERR_CLEAR, ~0ull);
13700 /* MISC_ERR_FORCE leave alone */
13701}
13702
13703/* set TXE CSRs to chip reset defaults */
13704static void reset_txe_csrs(struct hfi1_devdata *dd)
13705{
13706 int i;
13707
13708 /*
13709 * TXE Kernel CSRs
13710 */
13711 write_csr(dd, SEND_CTRL, 0);
13712 __cm_reset(dd, 0); /* reset CM internal state */
13713 /* SEND_CONTEXTS read-only */
13714 /* SEND_DMA_ENGINES read-only */
13715 /* SEND_PIO_MEM_SIZE read-only */
13716 /* SEND_DMA_MEM_SIZE read-only */
13717 write_csr(dd, SEND_HIGH_PRIORITY_LIMIT, 0);
13718 pio_reset_all(dd); /* SEND_PIO_INIT_CTXT */
13719 /* SEND_PIO_ERR_STATUS read-only */
13720 write_csr(dd, SEND_PIO_ERR_MASK, 0);
13721 write_csr(dd, SEND_PIO_ERR_CLEAR, ~0ull);
13722 /* SEND_PIO_ERR_FORCE leave alone */
13723 /* SEND_DMA_ERR_STATUS read-only */
13724 write_csr(dd, SEND_DMA_ERR_MASK, 0);
13725 write_csr(dd, SEND_DMA_ERR_CLEAR, ~0ull);
13726 /* SEND_DMA_ERR_FORCE leave alone */
13727 /* SEND_EGRESS_ERR_STATUS read-only */
13728 write_csr(dd, SEND_EGRESS_ERR_MASK, 0);
13729 write_csr(dd, SEND_EGRESS_ERR_CLEAR, ~0ull);
13730 /* SEND_EGRESS_ERR_FORCE leave alone */
13731 write_csr(dd, SEND_BTH_QP, 0);
13732 write_csr(dd, SEND_STATIC_RATE_CONTROL, 0);
13733 write_csr(dd, SEND_SC2VLT0, 0);
13734 write_csr(dd, SEND_SC2VLT1, 0);
13735 write_csr(dd, SEND_SC2VLT2, 0);
13736 write_csr(dd, SEND_SC2VLT3, 0);
13737 write_csr(dd, SEND_LEN_CHECK0, 0);
13738 write_csr(dd, SEND_LEN_CHECK1, 0);
13739 /* SEND_ERR_STATUS read-only */
13740 write_csr(dd, SEND_ERR_MASK, 0);
13741 write_csr(dd, SEND_ERR_CLEAR, ~0ull);
13742 /* SEND_ERR_FORCE read-only */
13743 for (i = 0; i < VL_ARB_LOW_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013744 write_csr(dd, SEND_LOW_PRIORITY_LIST + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013745 for (i = 0; i < VL_ARB_HIGH_PRIO_TABLE_SIZE; i++)
Jubin John8638b772016-02-14 20:19:24 -080013746 write_csr(dd, SEND_HIGH_PRIORITY_LIST + (8 * i), 0);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013747 for (i = 0; i < chip_send_contexts(dd) / NUM_CONTEXTS_PER_SET; i++)
Jubin John8638b772016-02-14 20:19:24 -080013748 write_csr(dd, SEND_CONTEXT_SET_CTRL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013749 for (i = 0; i < TXE_NUM_32_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013750 write_csr(dd, SEND_COUNTER_ARRAY32 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013751 for (i = 0; i < TXE_NUM_64_BIT_COUNTER; i++)
Jubin John8638b772016-02-14 20:19:24 -080013752 write_csr(dd, SEND_COUNTER_ARRAY64 + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013753 write_csr(dd, SEND_CM_CTRL, SEND_CM_CTRL_RESETCSR);
Jubin John17fb4f22016-02-14 20:21:52 -080013754 write_csr(dd, SEND_CM_GLOBAL_CREDIT, SEND_CM_GLOBAL_CREDIT_RESETCSR);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013755 /* SEND_CM_CREDIT_USED_STATUS read-only */
13756 write_csr(dd, SEND_CM_TIMER_CTRL, 0);
13757 write_csr(dd, SEND_CM_LOCAL_AU_TABLE0_TO3, 0);
13758 write_csr(dd, SEND_CM_LOCAL_AU_TABLE4_TO7, 0);
13759 write_csr(dd, SEND_CM_REMOTE_AU_TABLE0_TO3, 0);
13760 write_csr(dd, SEND_CM_REMOTE_AU_TABLE4_TO7, 0);
13761 for (i = 0; i < TXE_NUM_DATA_VL; i++)
Jubin John8638b772016-02-14 20:19:24 -080013762 write_csr(dd, SEND_CM_CREDIT_VL + (8 * i), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013763 write_csr(dd, SEND_CM_CREDIT_VL15, 0);
13764 /* SEND_CM_CREDIT_USED_VL read-only */
13765 /* SEND_CM_CREDIT_USED_VL15 read-only */
13766 /* SEND_EGRESS_CTXT_STATUS read-only */
13767 /* SEND_EGRESS_SEND_DMA_STATUS read-only */
13768 write_csr(dd, SEND_EGRESS_ERR_INFO, ~0ull);
13769 /* SEND_EGRESS_ERR_INFO read-only */
13770 /* SEND_EGRESS_ERR_SOURCE read-only */
13771
13772 /*
13773 * TXE Per-Context CSRs
13774 */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013775 for (i = 0; i < chip_send_contexts(dd); i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013776 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
13777 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_CTRL, 0);
13778 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_RETURN_ADDR, 0);
13779 write_kctxt_csr(dd, i, SEND_CTXT_CREDIT_FORCE, 0);
13780 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, 0);
13781 write_kctxt_csr(dd, i, SEND_CTXT_ERR_CLEAR, ~0ull);
13782 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_ENABLE, 0);
13783 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_VL, 0);
13784 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_JOB_KEY, 0);
13785 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_PARTITION_KEY, 0);
13786 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_SLID, 0);
13787 write_kctxt_csr(dd, i, SEND_CTXT_CHECK_OPCODE, 0);
13788 }
13789
13790 /*
13791 * TXE Per-SDMA CSRs
13792 */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013793 for (i = 0; i < chip_sdma_engines(dd); i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013794 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
13795 /* SEND_DMA_STATUS read-only */
13796 write_kctxt_csr(dd, i, SEND_DMA_BASE_ADDR, 0);
13797 write_kctxt_csr(dd, i, SEND_DMA_LEN_GEN, 0);
13798 write_kctxt_csr(dd, i, SEND_DMA_TAIL, 0);
13799 /* SEND_DMA_HEAD read-only */
13800 write_kctxt_csr(dd, i, SEND_DMA_HEAD_ADDR, 0);
13801 write_kctxt_csr(dd, i, SEND_DMA_PRIORITY_THLD, 0);
13802 /* SEND_DMA_IDLE_CNT read-only */
13803 write_kctxt_csr(dd, i, SEND_DMA_RELOAD_CNT, 0);
13804 write_kctxt_csr(dd, i, SEND_DMA_DESC_CNT, 0);
13805 /* SEND_DMA_DESC_FETCHED_CNT read-only */
13806 /* SEND_DMA_ENG_ERR_STATUS read-only */
13807 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, 0);
13808 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_CLEAR, ~0ull);
13809 /* SEND_DMA_ENG_ERR_FORCE leave alone */
13810 write_kctxt_csr(dd, i, SEND_DMA_CHECK_ENABLE, 0);
13811 write_kctxt_csr(dd, i, SEND_DMA_CHECK_VL, 0);
13812 write_kctxt_csr(dd, i, SEND_DMA_CHECK_JOB_KEY, 0);
13813 write_kctxt_csr(dd, i, SEND_DMA_CHECK_PARTITION_KEY, 0);
13814 write_kctxt_csr(dd, i, SEND_DMA_CHECK_SLID, 0);
13815 write_kctxt_csr(dd, i, SEND_DMA_CHECK_OPCODE, 0);
13816 write_kctxt_csr(dd, i, SEND_DMA_MEMORY, 0);
13817 }
13818}
13819
13820/*
13821 * Expect on entry:
13822 * o Packet ingress is disabled, i.e. RcvCtrl.RcvPortEnable == 0
13823 */
13824static void init_rbufs(struct hfi1_devdata *dd)
13825{
13826 u64 reg;
13827 int count;
13828
13829 /*
13830 * Wait for DMA to stop: RxRbufPktPending and RxPktInProgress are
13831 * clear.
13832 */
13833 count = 0;
13834 while (1) {
13835 reg = read_csr(dd, RCV_STATUS);
13836 if ((reg & (RCV_STATUS_RX_RBUF_PKT_PENDING_SMASK
13837 | RCV_STATUS_RX_PKT_IN_PROGRESS_SMASK)) == 0)
13838 break;
13839 /*
13840 * Give up after 1ms - maximum wait time.
13841 *
Harish Chegondie8a70af2016-09-25 07:42:01 -070013842 * RBuf size is 136KiB. Slowest possible is PCIe Gen1 x1 at
Mike Marciniszyn77241052015-07-30 15:17:43 -040013843 * 250MB/s bandwidth. Lower rate to 66% for overhead to get:
Harish Chegondie8a70af2016-09-25 07:42:01 -070013844 * 136 KB / (66% * 250MB/s) = 844us
Mike Marciniszyn77241052015-07-30 15:17:43 -040013845 */
13846 if (count++ > 500) {
13847 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013848 "%s: in-progress DMA not clearing: RcvStatus 0x%llx, continuing\n",
13849 __func__, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013850 break;
13851 }
13852 udelay(2); /* do not busy-wait the CSR */
13853 }
13854
13855 /* start the init - expect RcvCtrl to be 0 */
13856 write_csr(dd, RCV_CTRL, RCV_CTRL_RX_RBUF_INIT_SMASK);
13857
13858 /*
13859 * Read to force the write of Rcvtrl.RxRbufInit. There is a brief
13860 * period after the write before RcvStatus.RxRbufInitDone is valid.
13861 * The delay in the first run through the loop below is sufficient and
13862 * required before the first read of RcvStatus.RxRbufInintDone.
13863 */
13864 read_csr(dd, RCV_CTRL);
13865
13866 /* wait for the init to finish */
13867 count = 0;
13868 while (1) {
13869 /* delay is required first time through - see above */
13870 udelay(2); /* do not busy-wait the CSR */
13871 reg = read_csr(dd, RCV_STATUS);
13872 if (reg & (RCV_STATUS_RX_RBUF_INIT_DONE_SMASK))
13873 break;
13874
13875 /* give up after 100us - slowest possible at 33MHz is 73us */
13876 if (count++ > 50) {
13877 dd_dev_err(dd,
Jubin John17fb4f22016-02-14 20:21:52 -080013878 "%s: RcvStatus.RxRbufInit not set, continuing\n",
13879 __func__);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013880 break;
13881 }
13882 }
13883}
13884
13885/* set RXE CSRs to chip reset defaults */
13886static void reset_rxe_csrs(struct hfi1_devdata *dd)
13887{
13888 int i, j;
13889
13890 /*
13891 * RXE Kernel CSRs
13892 */
13893 write_csr(dd, RCV_CTRL, 0);
13894 init_rbufs(dd);
13895 /* RCV_STATUS read-only */
13896 /* RCV_CONTEXTS read-only */
13897 /* RCV_ARRAY_CNT read-only */
13898 /* RCV_BUF_SIZE read-only */
13899 write_csr(dd, RCV_BTH_QP, 0);
13900 write_csr(dd, RCV_MULTICAST, 0);
13901 write_csr(dd, RCV_BYPASS, 0);
13902 write_csr(dd, RCV_VL15, 0);
13903 /* this is a clear-down */
13904 write_csr(dd, RCV_ERR_INFO,
Jubin John17fb4f22016-02-14 20:21:52 -080013905 RCV_ERR_INFO_RCV_EXCESS_BUFFER_OVERRUN_SMASK);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013906 /* RCV_ERR_STATUS read-only */
13907 write_csr(dd, RCV_ERR_MASK, 0);
13908 write_csr(dd, RCV_ERR_CLEAR, ~0ull);
13909 /* RCV_ERR_FORCE leave alone */
13910 for (i = 0; i < 32; i++)
13911 write_csr(dd, RCV_QP_MAP_TABLE + (8 * i), 0);
13912 for (i = 0; i < 4; i++)
13913 write_csr(dd, RCV_PARTITION_KEY + (8 * i), 0);
13914 for (i = 0; i < RXE_NUM_32_BIT_COUNTERS; i++)
13915 write_csr(dd, RCV_COUNTER_ARRAY32 + (8 * i), 0);
13916 for (i = 0; i < RXE_NUM_64_BIT_COUNTERS; i++)
13917 write_csr(dd, RCV_COUNTER_ARRAY64 + (8 * i), 0);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070013918 for (i = 0; i < RXE_NUM_RSM_INSTANCES; i++)
13919 clear_rsm_rule(dd, i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013920 for (i = 0; i < 32; i++)
13921 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), 0);
13922
13923 /*
13924 * RXE Kernel and User Per-Context CSRs
13925 */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070013926 for (i = 0; i < chip_rcv_contexts(dd); i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040013927 /* kernel */
13928 write_kctxt_csr(dd, i, RCV_CTXT_CTRL, 0);
13929 /* RCV_CTXT_STATUS read-only */
13930 write_kctxt_csr(dd, i, RCV_EGR_CTRL, 0);
13931 write_kctxt_csr(dd, i, RCV_TID_CTRL, 0);
13932 write_kctxt_csr(dd, i, RCV_KEY_CTRL, 0);
13933 write_kctxt_csr(dd, i, RCV_HDR_ADDR, 0);
13934 write_kctxt_csr(dd, i, RCV_HDR_CNT, 0);
13935 write_kctxt_csr(dd, i, RCV_HDR_ENT_SIZE, 0);
13936 write_kctxt_csr(dd, i, RCV_HDR_SIZE, 0);
13937 write_kctxt_csr(dd, i, RCV_HDR_TAIL_ADDR, 0);
13938 write_kctxt_csr(dd, i, RCV_AVAIL_TIME_OUT, 0);
13939 write_kctxt_csr(dd, i, RCV_HDR_OVFL_CNT, 0);
13940
13941 /* user */
13942 /* RCV_HDR_TAIL read-only */
13943 write_uctxt_csr(dd, i, RCV_HDR_HEAD, 0);
13944 /* RCV_EGR_INDEX_TAIL read-only */
13945 write_uctxt_csr(dd, i, RCV_EGR_INDEX_HEAD, 0);
13946 /* RCV_EGR_OFFSET_TAIL read-only */
13947 for (j = 0; j < RXE_NUM_TID_FLOWS; j++) {
Jubin John17fb4f22016-02-14 20:21:52 -080013948 write_uctxt_csr(dd, i,
13949 RCV_TID_FLOW_TABLE + (8 * j), 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040013950 }
13951 }
13952}
13953
13954/*
13955 * Set sc2vl tables.
13956 *
13957 * They power on to zeros, so to avoid send context errors
13958 * they need to be set:
13959 *
13960 * SC 0-7 -> VL 0-7 (respectively)
13961 * SC 15 -> VL 15
13962 * otherwise
13963 * -> VL 0
13964 */
13965static void init_sc2vl_tables(struct hfi1_devdata *dd)
13966{
13967 int i;
13968 /* init per architecture spec, constrained by hardware capability */
13969
13970 /* HFI maps sent packets */
13971 write_csr(dd, SEND_SC2VLT0, SC2VL_VAL(
13972 0,
13973 0, 0, 1, 1,
13974 2, 2, 3, 3,
13975 4, 4, 5, 5,
13976 6, 6, 7, 7));
13977 write_csr(dd, SEND_SC2VLT1, SC2VL_VAL(
13978 1,
13979 8, 0, 9, 0,
13980 10, 0, 11, 0,
13981 12, 0, 13, 0,
13982 14, 0, 15, 15));
13983 write_csr(dd, SEND_SC2VLT2, SC2VL_VAL(
13984 2,
13985 16, 0, 17, 0,
13986 18, 0, 19, 0,
13987 20, 0, 21, 0,
13988 22, 0, 23, 0));
13989 write_csr(dd, SEND_SC2VLT3, SC2VL_VAL(
13990 3,
13991 24, 0, 25, 0,
13992 26, 0, 27, 0,
13993 28, 0, 29, 0,
13994 30, 0, 31, 0));
13995
13996 /* DC maps received packets */
13997 write_csr(dd, DCC_CFG_SC_VL_TABLE_15_0, DC_SC_VL_VAL(
13998 15_0,
13999 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
14000 8, 0, 9, 0, 10, 0, 11, 0, 12, 0, 13, 0, 14, 0, 15, 15));
14001 write_csr(dd, DCC_CFG_SC_VL_TABLE_31_16, DC_SC_VL_VAL(
14002 31_16,
14003 16, 0, 17, 0, 18, 0, 19, 0, 20, 0, 21, 0, 22, 0, 23, 0,
14004 24, 0, 25, 0, 26, 0, 27, 0, 28, 0, 29, 0, 30, 0, 31, 0));
14005
14006 /* initialize the cached sc2vl values consistently with h/w */
14007 for (i = 0; i < 32; i++) {
14008 if (i < 8 || i == 15)
14009 *((u8 *)(dd->sc2vl) + i) = (u8)i;
14010 else
14011 *((u8 *)(dd->sc2vl) + i) = 0;
14012 }
14013}
14014
14015/*
14016 * Read chip sizes and then reset parts to sane, disabled, values. We cannot
14017 * depend on the chip going through a power-on reset - a driver may be loaded
14018 * and unloaded many times.
14019 *
14020 * Do not write any CSR values to the chip in this routine - there may be
14021 * a reset following the (possible) FLR in this routine.
14022 *
14023 */
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014024static int init_chip(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014025{
14026 int i;
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014027 int ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014028
14029 /*
14030 * Put the HFI CSRs in a known state.
14031 * Combine this with a DC reset.
14032 *
14033 * Stop the device from doing anything while we do a
14034 * reset. We know there are no other active users of
14035 * the device since we are now in charge. Turn off
14036 * off all outbound and inbound traffic and make sure
14037 * the device does not generate any interrupts.
14038 */
14039
14040 /* disable send contexts and SDMA engines */
14041 write_csr(dd, SEND_CTRL, 0);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014042 for (i = 0; i < chip_send_contexts(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014043 write_kctxt_csr(dd, i, SEND_CTXT_CTRL, 0);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014044 for (i = 0; i < chip_sdma_engines(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014045 write_kctxt_csr(dd, i, SEND_DMA_CTRL, 0);
14046 /* disable port (turn off RXE inbound traffic) and contexts */
14047 write_csr(dd, RCV_CTRL, 0);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014048 for (i = 0; i < chip_rcv_contexts(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014049 write_csr(dd, RCV_CTXT_CTRL, 0);
14050 /* mask all interrupt sources */
14051 for (i = 0; i < CCE_NUM_INT_CSRS; i++)
Jubin John8638b772016-02-14 20:19:24 -080014052 write_csr(dd, CCE_INT_MASK + (8 * i), 0ull);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014053
14054 /*
14055 * DC Reset: do a full DC reset before the register clear.
14056 * A recommended length of time to hold is one CSR read,
14057 * so reread the CceDcCtrl. Then, hold the DC in reset
14058 * across the clear.
14059 */
14060 write_csr(dd, CCE_DC_CTRL, CCE_DC_CTRL_DC_RESET_SMASK);
Jubin John50e5dcb2016-02-14 20:19:41 -080014061 (void)read_csr(dd, CCE_DC_CTRL);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014062
14063 if (use_flr) {
14064 /*
14065 * A FLR will reset the SPC core and part of the PCIe.
14066 * The parts that need to be restored have already been
14067 * saved.
14068 */
14069 dd_dev_info(dd, "Resetting CSRs with FLR\n");
14070
14071 /* do the FLR, the DC reset will remain */
Christoph Hellwig21c433a2017-04-25 14:36:19 -050014072 pcie_flr(dd->pcidev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014073
14074 /* restore command and BARs */
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014075 ret = restore_pci_variables(dd);
14076 if (ret) {
14077 dd_dev_err(dd, "%s: Could not restore PCI variables\n",
14078 __func__);
14079 return ret;
14080 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014081
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014082 if (is_ax(dd)) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014083 dd_dev_info(dd, "Resetting CSRs with FLR\n");
Christoph Hellwig21c433a2017-04-25 14:36:19 -050014084 pcie_flr(dd->pcidev);
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014085 ret = restore_pci_variables(dd);
14086 if (ret) {
14087 dd_dev_err(dd, "%s: Could not restore PCI variables\n",
14088 __func__);
14089 return ret;
14090 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014091 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014092 } else {
14093 dd_dev_info(dd, "Resetting CSRs with writes\n");
14094 reset_cce_csrs(dd);
14095 reset_txe_csrs(dd);
14096 reset_rxe_csrs(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014097 reset_misc_csrs(dd);
14098 }
14099 /* clear the DC reset */
14100 write_csr(dd, CCE_DC_CTRL, 0);
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014101
Mike Marciniszyn77241052015-07-30 15:17:43 -040014102 /* Set the LED off */
Sebastian Sanchez773d04512016-02-09 14:29:40 -080014103 setextled(dd, 0);
14104
Mike Marciniszyn77241052015-07-30 15:17:43 -040014105 /*
14106 * Clear the QSFP reset.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014107 * An FLR enforces a 0 on all out pins. The driver does not touch
Mike Marciniszyn77241052015-07-30 15:17:43 -040014108 * ASIC_QSFPn_OUT otherwise. This leaves RESET_N low and
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014109 * anything plugged constantly in reset, if it pays attention
Mike Marciniszyn77241052015-07-30 15:17:43 -040014110 * to RESET_N.
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014111 * Prime examples of this are optical cables. Set all pins high.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014112 * I2CCLK and I2CDAT will change per direction, and INT_N and
14113 * MODPRS_N are input only and their value is ignored.
14114 */
Easwar Hariharan72a67ba2015-11-06 20:06:57 -050014115 write_csr(dd, ASIC_QSFP1_OUT, 0x1f);
14116 write_csr(dd, ASIC_QSFP2_OUT, 0x1f);
Dean Luicka2ee27a2016-03-05 08:49:50 -080014117 init_chip_resources(dd);
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070014118 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014119}
14120
14121static void init_early_variables(struct hfi1_devdata *dd)
14122{
14123 int i;
14124
14125 /* assign link credit variables */
14126 dd->vau = CM_VAU;
14127 dd->link_credits = CM_GLOBAL_CREDITS;
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014128 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -040014129 dd->link_credits--;
14130 dd->vcu = cu_to_vcu(hfi1_cu);
14131 /* enough room for 8 MAD packets plus header - 17K */
14132 dd->vl15_init = (8 * (2048 + 128)) / vau_to_au(dd->vau);
14133 if (dd->vl15_init > dd->link_credits)
14134 dd->vl15_init = dd->link_credits;
14135
14136 write_uninitialized_csrs_and_memories(dd);
14137
14138 if (HFI1_CAP_IS_KSET(PKEY_CHECK))
14139 for (i = 0; i < dd->num_pports; i++) {
14140 struct hfi1_pportdata *ppd = &dd->pport[i];
14141
14142 set_partition_keys(ppd);
14143 }
14144 init_sc2vl_tables(dd);
14145}
14146
14147static void init_kdeth_qp(struct hfi1_devdata *dd)
14148{
14149 /* user changed the KDETH_QP */
14150 if (kdeth_qp != 0 && kdeth_qp >= 0xff) {
14151 /* out of range or illegal value */
14152 dd_dev_err(dd, "Invalid KDETH queue pair prefix, ignoring");
14153 kdeth_qp = 0;
14154 }
14155 if (kdeth_qp == 0) /* not set, or failed range check */
14156 kdeth_qp = DEFAULT_KDETH_QP;
14157
14158 write_csr(dd, SEND_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080014159 (kdeth_qp & SEND_BTH_QP_KDETH_QP_MASK) <<
14160 SEND_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014161
14162 write_csr(dd, RCV_BTH_QP,
Jubin John17fb4f22016-02-14 20:21:52 -080014163 (kdeth_qp & RCV_BTH_QP_KDETH_QP_MASK) <<
14164 RCV_BTH_QP_KDETH_QP_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014165}
14166
14167/**
14168 * init_qpmap_table
14169 * @dd - device data
14170 * @first_ctxt - first context
14171 * @last_ctxt - first context
14172 *
14173 * This return sets the qpn mapping table that
14174 * is indexed by qpn[8:1].
14175 *
14176 * The routine will round robin the 256 settings
14177 * from first_ctxt to last_ctxt.
14178 *
14179 * The first/last looks ahead to having specialized
14180 * receive contexts for mgmt and bypass. Normal
14181 * verbs traffic will assumed to be on a range
14182 * of receive contexts.
14183 */
14184static void init_qpmap_table(struct hfi1_devdata *dd,
14185 u32 first_ctxt,
14186 u32 last_ctxt)
14187{
14188 u64 reg = 0;
14189 u64 regno = RCV_QP_MAP_TABLE;
14190 int i;
14191 u64 ctxt = first_ctxt;
14192
Dean Luick60d585ad2016-04-12 10:50:35 -070014193 for (i = 0; i < 256; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014194 reg |= ctxt << (8 * (i % 8));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014195 ctxt++;
14196 if (ctxt > last_ctxt)
14197 ctxt = first_ctxt;
Dean Luick60d585ad2016-04-12 10:50:35 -070014198 if (i % 8 == 7) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014199 write_csr(dd, regno, reg);
14200 reg = 0;
14201 regno += 8;
14202 }
14203 }
Mike Marciniszyn77241052015-07-30 15:17:43 -040014204
14205 add_rcvctrl(dd, RCV_CTRL_RCV_QP_MAP_ENABLE_SMASK
14206 | RCV_CTRL_RCV_BYPASS_ENABLE_SMASK);
14207}
14208
Dean Luick372cc85a2016-04-12 11:30:51 -070014209struct rsm_map_table {
14210 u64 map[NUM_MAP_REGS];
14211 unsigned int used;
14212};
14213
Dean Luickb12349a2016-04-12 11:31:33 -070014214struct rsm_rule_data {
14215 u8 offset;
14216 u8 pkt_type;
14217 u32 field1_off;
14218 u32 field2_off;
14219 u32 index1_off;
14220 u32 index1_width;
14221 u32 index2_off;
14222 u32 index2_width;
14223 u32 mask1;
14224 u32 value1;
14225 u32 mask2;
14226 u32 value2;
14227};
14228
Dean Luick372cc85a2016-04-12 11:30:51 -070014229/*
14230 * Return an initialized RMT map table for users to fill in. OK if it
14231 * returns NULL, indicating no table.
14232 */
14233static struct rsm_map_table *alloc_rsm_map_table(struct hfi1_devdata *dd)
14234{
14235 struct rsm_map_table *rmt;
14236 u8 rxcontext = is_ax(dd) ? 0 : 0xff; /* 0 is default if a0 ver. */
14237
14238 rmt = kmalloc(sizeof(*rmt), GFP_KERNEL);
14239 if (rmt) {
14240 memset(rmt->map, rxcontext, sizeof(rmt->map));
14241 rmt->used = 0;
14242 }
14243
14244 return rmt;
14245}
14246
14247/*
14248 * Write the final RMT map table to the chip and free the table. OK if
14249 * table is NULL.
14250 */
14251static void complete_rsm_map_table(struct hfi1_devdata *dd,
14252 struct rsm_map_table *rmt)
14253{
14254 int i;
14255
14256 if (rmt) {
14257 /* write table to chip */
14258 for (i = 0; i < NUM_MAP_REGS; i++)
14259 write_csr(dd, RCV_RSM_MAP_TABLE + (8 * i), rmt->map[i]);
14260
14261 /* enable RSM */
14262 add_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
14263 }
14264}
14265
Dean Luickb12349a2016-04-12 11:31:33 -070014266/*
14267 * Add a receive side mapping rule.
14268 */
14269static void add_rsm_rule(struct hfi1_devdata *dd, u8 rule_index,
14270 struct rsm_rule_data *rrd)
14271{
14272 write_csr(dd, RCV_RSM_CFG + (8 * rule_index),
14273 (u64)rrd->offset << RCV_RSM_CFG_OFFSET_SHIFT |
14274 1ull << rule_index | /* enable bit */
14275 (u64)rrd->pkt_type << RCV_RSM_CFG_PACKET_TYPE_SHIFT);
14276 write_csr(dd, RCV_RSM_SELECT + (8 * rule_index),
14277 (u64)rrd->field1_off << RCV_RSM_SELECT_FIELD1_OFFSET_SHIFT |
14278 (u64)rrd->field2_off << RCV_RSM_SELECT_FIELD2_OFFSET_SHIFT |
14279 (u64)rrd->index1_off << RCV_RSM_SELECT_INDEX1_OFFSET_SHIFT |
14280 (u64)rrd->index1_width << RCV_RSM_SELECT_INDEX1_WIDTH_SHIFT |
14281 (u64)rrd->index2_off << RCV_RSM_SELECT_INDEX2_OFFSET_SHIFT |
14282 (u64)rrd->index2_width << RCV_RSM_SELECT_INDEX2_WIDTH_SHIFT);
14283 write_csr(dd, RCV_RSM_MATCH + (8 * rule_index),
14284 (u64)rrd->mask1 << RCV_RSM_MATCH_MASK1_SHIFT |
14285 (u64)rrd->value1 << RCV_RSM_MATCH_VALUE1_SHIFT |
14286 (u64)rrd->mask2 << RCV_RSM_MATCH_MASK2_SHIFT |
14287 (u64)rrd->value2 << RCV_RSM_MATCH_VALUE2_SHIFT);
14288}
14289
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014290/*
14291 * Clear a receive side mapping rule.
14292 */
14293static void clear_rsm_rule(struct hfi1_devdata *dd, u8 rule_index)
14294{
14295 write_csr(dd, RCV_RSM_CFG + (8 * rule_index), 0);
14296 write_csr(dd, RCV_RSM_SELECT + (8 * rule_index), 0);
14297 write_csr(dd, RCV_RSM_MATCH + (8 * rule_index), 0);
14298}
14299
Dean Luick4a818be2016-04-12 11:31:11 -070014300/* return the number of RSM map table entries that will be used for QOS */
14301static int qos_rmt_entries(struct hfi1_devdata *dd, unsigned int *mp,
14302 unsigned int *np)
14303{
14304 int i;
14305 unsigned int m, n;
14306 u8 max_by_vl = 0;
14307
14308 /* is QOS active at all? */
14309 if (dd->n_krcv_queues <= MIN_KERNEL_KCTXTS ||
14310 num_vls == 1 ||
14311 krcvqsset <= 1)
14312 goto no_qos;
14313
14314 /* determine bits for qpn */
14315 for (i = 0; i < min_t(unsigned int, num_vls, krcvqsset); i++)
14316 if (krcvqs[i] > max_by_vl)
14317 max_by_vl = krcvqs[i];
14318 if (max_by_vl > 32)
14319 goto no_qos;
14320 m = ilog2(__roundup_pow_of_two(max_by_vl));
14321
14322 /* determine bits for vl */
14323 n = ilog2(__roundup_pow_of_two(num_vls));
14324
14325 /* reject if too much is used */
14326 if ((m + n) > 7)
14327 goto no_qos;
14328
14329 if (mp)
14330 *mp = m;
14331 if (np)
14332 *np = n;
14333
14334 return 1 << (m + n);
14335
14336no_qos:
14337 if (mp)
14338 *mp = 0;
14339 if (np)
14340 *np = 0;
14341 return 0;
14342}
14343
Mike Marciniszyn77241052015-07-30 15:17:43 -040014344/**
14345 * init_qos - init RX qos
14346 * @dd - device data
Dean Luick372cc85a2016-04-12 11:30:51 -070014347 * @rmt - RSM map table
Mike Marciniszyn77241052015-07-30 15:17:43 -040014348 *
Dean Luick33a9eb52016-04-12 10:50:22 -070014349 * This routine initializes Rule 0 and the RSM map table to implement
14350 * quality of service (qos).
Mike Marciniszyn77241052015-07-30 15:17:43 -040014351 *
Dean Luick33a9eb52016-04-12 10:50:22 -070014352 * If all of the limit tests succeed, qos is applied based on the array
14353 * interpretation of krcvqs where entry 0 is VL0.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014354 *
Dean Luick33a9eb52016-04-12 10:50:22 -070014355 * The number of vl bits (n) and the number of qpn bits (m) are computed to
14356 * feed both the RSM map table and the single rule.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014357 */
Dean Luick372cc85a2016-04-12 11:30:51 -070014358static void init_qos(struct hfi1_devdata *dd, struct rsm_map_table *rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014359{
Dean Luickb12349a2016-04-12 11:31:33 -070014360 struct rsm_rule_data rrd;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014361 unsigned qpns_per_vl, ctxt, i, qpn, n = 1, m;
Dean Luick372cc85a2016-04-12 11:30:51 -070014362 unsigned int rmt_entries;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014363 u64 reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014364
Dean Luick4a818be2016-04-12 11:31:11 -070014365 if (!rmt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014366 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070014367 rmt_entries = qos_rmt_entries(dd, &m, &n);
14368 if (rmt_entries == 0)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014369 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070014370 qpns_per_vl = 1 << m;
14371
Dean Luick372cc85a2016-04-12 11:30:51 -070014372 /* enough room in the map table? */
14373 rmt_entries = 1 << (m + n);
14374 if (rmt->used + rmt_entries >= NUM_MAP_ENTRIES)
Easwar Hariharan859bcad2015-12-10 11:13:38 -050014375 goto bail;
Dean Luick4a818be2016-04-12 11:31:11 -070014376
Dean Luick372cc85a2016-04-12 11:30:51 -070014377 /* add qos entries to the the RSM map table */
Dean Luick33a9eb52016-04-12 10:50:22 -070014378 for (i = 0, ctxt = FIRST_KERNEL_KCTXT; i < num_vls; i++) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040014379 unsigned tctxt;
14380
14381 for (qpn = 0, tctxt = ctxt;
14382 krcvqs[i] && qpn < qpns_per_vl; qpn++) {
14383 unsigned idx, regoff, regidx;
14384
Dean Luick372cc85a2016-04-12 11:30:51 -070014385 /* generate the index the hardware will produce */
14386 idx = rmt->used + ((qpn << n) ^ i);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014387 regoff = (idx % 8) * 8;
14388 regidx = idx / 8;
Dean Luick372cc85a2016-04-12 11:30:51 -070014389 /* replace default with context number */
14390 reg = rmt->map[regidx];
Mike Marciniszyn77241052015-07-30 15:17:43 -040014391 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK
14392 << regoff);
14393 reg |= (u64)(tctxt++) << regoff;
Dean Luick372cc85a2016-04-12 11:30:51 -070014394 rmt->map[regidx] = reg;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014395 if (tctxt == ctxt + krcvqs[i])
14396 tctxt = ctxt;
14397 }
14398 ctxt += krcvqs[i];
14399 }
Dean Luickb12349a2016-04-12 11:31:33 -070014400
14401 rrd.offset = rmt->used;
14402 rrd.pkt_type = 2;
14403 rrd.field1_off = LRH_BTH_MATCH_OFFSET;
14404 rrd.field2_off = LRH_SC_MATCH_OFFSET;
14405 rrd.index1_off = LRH_SC_SELECT_OFFSET;
14406 rrd.index1_width = n;
14407 rrd.index2_off = QPN_SELECT_OFFSET;
14408 rrd.index2_width = m + n;
14409 rrd.mask1 = LRH_BTH_MASK;
14410 rrd.value1 = LRH_BTH_VALUE;
14411 rrd.mask2 = LRH_SC_MASK;
14412 rrd.value2 = LRH_SC_VALUE;
14413
14414 /* add rule 0 */
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014415 add_rsm_rule(dd, RSM_INS_VERBS, &rrd);
Dean Luickb12349a2016-04-12 11:31:33 -070014416
Dean Luick372cc85a2016-04-12 11:30:51 -070014417 /* mark RSM map entries as used */
14418 rmt->used += rmt_entries;
Dean Luick33a9eb52016-04-12 10:50:22 -070014419 /* map everything else to the mcast/err/vl15 context */
14420 init_qpmap_table(dd, HFI1_CTRL_CTXT, HFI1_CTRL_CTXT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014421 dd->qos_shift = n + 1;
14422 return;
14423bail:
14424 dd->qos_shift = 1;
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -050014425 init_qpmap_table(dd, FIRST_KERNEL_KCTXT, dd->n_krcv_queues - 1);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014426}
14427
Dean Luick8f000f72016-04-12 11:32:06 -070014428static void init_user_fecn_handling(struct hfi1_devdata *dd,
14429 struct rsm_map_table *rmt)
14430{
14431 struct rsm_rule_data rrd;
14432 u64 reg;
14433 int i, idx, regoff, regidx;
14434 u8 offset;
14435
14436 /* there needs to be enough room in the map table */
14437 if (rmt->used + dd->num_user_contexts >= NUM_MAP_ENTRIES) {
14438 dd_dev_err(dd, "User FECN handling disabled - too many user contexts allocated\n");
14439 return;
14440 }
14441
14442 /*
14443 * RSM will extract the destination context as an index into the
14444 * map table. The destination contexts are a sequential block
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014445 * in the range first_dyn_alloc_ctxt...num_rcv_contexts-1 (inclusive).
Dean Luick8f000f72016-04-12 11:32:06 -070014446 * Map entries are accessed as offset + extracted value. Adjust
14447 * the added offset so this sequence can be placed anywhere in
14448 * the table - as long as the entries themselves do not wrap.
14449 * There are only enough bits in offset for the table size, so
14450 * start with that to allow for a "negative" offset.
14451 */
14452 offset = (u8)(NUM_MAP_ENTRIES + (int)rmt->used -
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014453 (int)dd->first_dyn_alloc_ctxt);
Dean Luick8f000f72016-04-12 11:32:06 -070014454
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014455 for (i = dd->first_dyn_alloc_ctxt, idx = rmt->used;
Dean Luick8f000f72016-04-12 11:32:06 -070014456 i < dd->num_rcv_contexts; i++, idx++) {
14457 /* replace with identity mapping */
14458 regoff = (idx % 8) * 8;
14459 regidx = idx / 8;
14460 reg = rmt->map[regidx];
14461 reg &= ~(RCV_RSM_MAP_TABLE_RCV_CONTEXT_A_MASK << regoff);
14462 reg |= (u64)i << regoff;
14463 rmt->map[regidx] = reg;
14464 }
14465
14466 /*
14467 * For RSM intercept of Expected FECN packets:
14468 * o packet type 0 - expected
14469 * o match on F (bit 95), using select/match 1, and
14470 * o match on SH (bit 133), using select/match 2.
14471 *
14472 * Use index 1 to extract the 8-bit receive context from DestQP
14473 * (start at bit 64). Use that as the RSM map table index.
14474 */
14475 rrd.offset = offset;
14476 rrd.pkt_type = 0;
14477 rrd.field1_off = 95;
14478 rrd.field2_off = 133;
14479 rrd.index1_off = 64;
14480 rrd.index1_width = 8;
14481 rrd.index2_off = 0;
14482 rrd.index2_width = 0;
14483 rrd.mask1 = 1;
14484 rrd.value1 = 1;
14485 rrd.mask2 = 1;
14486 rrd.value2 = 1;
14487
14488 /* add rule 1 */
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014489 add_rsm_rule(dd, RSM_INS_FECN, &rrd);
Dean Luick8f000f72016-04-12 11:32:06 -070014490
14491 rmt->used += dd->num_user_contexts;
14492}
14493
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014494/* Initialize RSM for VNIC */
14495void hfi1_init_vnic_rsm(struct hfi1_devdata *dd)
14496{
14497 u8 i, j;
14498 u8 ctx_id = 0;
14499 u64 reg;
14500 u32 regoff;
14501 struct rsm_rule_data rrd;
14502
14503 if (hfi1_vnic_is_rsm_full(dd, NUM_VNIC_MAP_ENTRIES)) {
14504 dd_dev_err(dd, "Vnic RSM disabled, rmt entries used = %d\n",
14505 dd->vnic.rmt_start);
14506 return;
14507 }
14508
14509 dev_dbg(&(dd)->pcidev->dev, "Vnic rsm start = %d, end %d\n",
14510 dd->vnic.rmt_start,
14511 dd->vnic.rmt_start + NUM_VNIC_MAP_ENTRIES);
14512
14513 /* Update RSM mapping table, 32 regs, 256 entries - 1 ctx per byte */
14514 regoff = RCV_RSM_MAP_TABLE + (dd->vnic.rmt_start / 8) * 8;
14515 reg = read_csr(dd, regoff);
14516 for (i = 0; i < NUM_VNIC_MAP_ENTRIES; i++) {
14517 /* Update map register with vnic context */
14518 j = (dd->vnic.rmt_start + i) % 8;
14519 reg &= ~(0xffllu << (j * 8));
14520 reg |= (u64)dd->vnic.ctxt[ctx_id++]->ctxt << (j * 8);
14521 /* Wrap up vnic ctx index */
14522 ctx_id %= dd->vnic.num_ctxt;
14523 /* Write back map register */
14524 if (j == 7 || ((i + 1) == NUM_VNIC_MAP_ENTRIES)) {
14525 dev_dbg(&(dd)->pcidev->dev,
14526 "Vnic rsm map reg[%d] =0x%llx\n",
14527 regoff - RCV_RSM_MAP_TABLE, reg);
14528
14529 write_csr(dd, regoff, reg);
14530 regoff += 8;
14531 if (i < (NUM_VNIC_MAP_ENTRIES - 1))
14532 reg = read_csr(dd, regoff);
14533 }
14534 }
14535
14536 /* Add rule for vnic */
14537 rrd.offset = dd->vnic.rmt_start;
14538 rrd.pkt_type = 4;
14539 /* Match 16B packets */
14540 rrd.field1_off = L2_TYPE_MATCH_OFFSET;
14541 rrd.mask1 = L2_TYPE_MASK;
14542 rrd.value1 = L2_16B_VALUE;
14543 /* Match ETH L4 packets */
14544 rrd.field2_off = L4_TYPE_MATCH_OFFSET;
14545 rrd.mask2 = L4_16B_TYPE_MASK;
14546 rrd.value2 = L4_16B_ETH_VALUE;
14547 /* Calc context from veswid and entropy */
14548 rrd.index1_off = L4_16B_HDR_VESWID_OFFSET;
14549 rrd.index1_width = ilog2(NUM_VNIC_MAP_ENTRIES);
14550 rrd.index2_off = L2_16B_ENTROPY_OFFSET;
14551 rrd.index2_width = ilog2(NUM_VNIC_MAP_ENTRIES);
14552 add_rsm_rule(dd, RSM_INS_VNIC, &rrd);
14553
14554 /* Enable RSM if not already enabled */
14555 add_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
14556}
14557
14558void hfi1_deinit_vnic_rsm(struct hfi1_devdata *dd)
14559{
14560 clear_rsm_rule(dd, RSM_INS_VNIC);
14561
14562 /* Disable RSM if used only by vnic */
14563 if (dd->vnic.rmt_start == 0)
14564 clear_rcvctrl(dd, RCV_CTRL_RCV_RSM_ENABLE_SMASK);
14565}
14566
Mike Marciniszyn77241052015-07-30 15:17:43 -040014567static void init_rxe(struct hfi1_devdata *dd)
14568{
Dean Luick372cc85a2016-04-12 11:30:51 -070014569 struct rsm_map_table *rmt;
Don Hiatt72c07e22017-08-04 13:53:58 -070014570 u64 val;
Dean Luick372cc85a2016-04-12 11:30:51 -070014571
Mike Marciniszyn77241052015-07-30 15:17:43 -040014572 /* enable all receive errors */
14573 write_csr(dd, RCV_ERR_MASK, ~0ull);
Dean Luick372cc85a2016-04-12 11:30:51 -070014574
14575 rmt = alloc_rsm_map_table(dd);
14576 /* set up QOS, including the QPN map table */
14577 init_qos(dd, rmt);
Dean Luick8f000f72016-04-12 11:32:06 -070014578 init_user_fecn_handling(dd, rmt);
Dean Luick372cc85a2016-04-12 11:30:51 -070014579 complete_rsm_map_table(dd, rmt);
Vishwanathapura, Niranjana22807402017-04-12 20:29:29 -070014580 /* record number of used rsm map entries for vnic */
14581 dd->vnic.rmt_start = rmt->used;
Dean Luick372cc85a2016-04-12 11:30:51 -070014582 kfree(rmt);
14583
Mike Marciniszyn77241052015-07-30 15:17:43 -040014584 /*
14585 * make sure RcvCtrl.RcvWcb <= PCIe Device Control
14586 * Register Max_Payload_Size (PCI_EXP_DEVCTL in Linux PCIe config
14587 * space, PciCfgCap2.MaxPayloadSize in HFI). There is only one
14588 * invalid configuration: RcvCtrl.RcvWcb set to its max of 256 and
14589 * Max_PayLoad_Size set to its minimum of 128.
14590 *
14591 * Presently, RcvCtrl.RcvWcb is not modified from its default of 0
14592 * (64 bytes). Max_Payload_Size is possibly modified upward in
14593 * tune_pcie_caps() which is called after this routine.
14594 */
Don Hiatt72c07e22017-08-04 13:53:58 -070014595
14596 /* Have 16 bytes (4DW) of bypass header available in header queue */
14597 val = read_csr(dd, RCV_BYPASS);
Mike Marciniszyndc2b2a92018-06-04 11:43:21 -070014598 val &= ~RCV_BYPASS_HDR_SIZE_SMASK;
14599 val |= ((4ull & RCV_BYPASS_HDR_SIZE_MASK) <<
14600 RCV_BYPASS_HDR_SIZE_SHIFT);
Don Hiatt72c07e22017-08-04 13:53:58 -070014601 write_csr(dd, RCV_BYPASS, val);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014602}
14603
14604static void init_other(struct hfi1_devdata *dd)
14605{
14606 /* enable all CCE errors */
14607 write_csr(dd, CCE_ERR_MASK, ~0ull);
14608 /* enable *some* Misc errors */
14609 write_csr(dd, MISC_ERR_MASK, DRIVER_MISC_MASK);
14610 /* enable all DC errors, except LCB */
14611 write_csr(dd, DCC_ERR_FLG_EN, ~0ull);
14612 write_csr(dd, DC_DC8051_ERR_EN, ~0ull);
14613}
14614
14615/*
14616 * Fill out the given AU table using the given CU. A CU is defined in terms
14617 * AUs. The table is a an encoding: given the index, how many AUs does that
14618 * represent?
14619 *
14620 * NOTE: Assumes that the register layout is the same for the
14621 * local and remote tables.
14622 */
14623static void assign_cm_au_table(struct hfi1_devdata *dd, u32 cu,
14624 u32 csr0to3, u32 csr4to7)
14625{
14626 write_csr(dd, csr0to3,
Jubin John17fb4f22016-02-14 20:21:52 -080014627 0ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE0_SHIFT |
14628 1ull << SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE1_SHIFT |
14629 2ull * cu <<
14630 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE2_SHIFT |
14631 4ull * cu <<
14632 SEND_CM_LOCAL_AU_TABLE0_TO3_LOCAL_AU_TABLE3_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014633 write_csr(dd, csr4to7,
Jubin John17fb4f22016-02-14 20:21:52 -080014634 8ull * cu <<
14635 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE4_SHIFT |
14636 16ull * cu <<
14637 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE5_SHIFT |
14638 32ull * cu <<
14639 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE6_SHIFT |
14640 64ull * cu <<
14641 SEND_CM_LOCAL_AU_TABLE4_TO7_LOCAL_AU_TABLE7_SHIFT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014642}
14643
14644static void assign_local_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14645{
14646 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_LOCAL_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014647 SEND_CM_LOCAL_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014648}
14649
14650void assign_remote_cm_au_table(struct hfi1_devdata *dd, u8 vcu)
14651{
14652 assign_cm_au_table(dd, vcu_to_cu(vcu), SEND_CM_REMOTE_AU_TABLE0_TO3,
Jubin John17fb4f22016-02-14 20:21:52 -080014653 SEND_CM_REMOTE_AU_TABLE4_TO7);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014654}
14655
14656static void init_txe(struct hfi1_devdata *dd)
14657{
14658 int i;
14659
14660 /* enable all PIO, SDMA, general, and Egress errors */
14661 write_csr(dd, SEND_PIO_ERR_MASK, ~0ull);
14662 write_csr(dd, SEND_DMA_ERR_MASK, ~0ull);
14663 write_csr(dd, SEND_ERR_MASK, ~0ull);
14664 write_csr(dd, SEND_EGRESS_ERR_MASK, ~0ull);
14665
14666 /* enable all per-context and per-SDMA engine errors */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014667 for (i = 0; i < chip_send_contexts(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014668 write_kctxt_csr(dd, i, SEND_CTXT_ERR_MASK, ~0ull);
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014669 for (i = 0; i < chip_sdma_engines(dd); i++)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014670 write_kctxt_csr(dd, i, SEND_DMA_ENG_ERR_MASK, ~0ull);
14671
14672 /* set the local CU to AU mapping */
14673 assign_local_cm_au_table(dd, dd->vcu);
14674
14675 /*
14676 * Set reasonable default for Credit Return Timer
14677 * Don't set on Simulator - causes it to choke.
14678 */
14679 if (dd->icode != ICODE_FUNCTIONAL_SIMULATOR)
14680 write_csr(dd, SEND_CM_TIMER_CTRL, HFI1_CREDIT_RETURN_RATE);
14681}
14682
Michael J. Ruhl17573972017-07-24 07:46:01 -070014683int hfi1_set_ctxt_jkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd,
14684 u16 jkey)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014685{
Michael J. Ruhl17573972017-07-24 07:46:01 -070014686 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014687 u64 reg;
14688
Michael J. Ruhl17573972017-07-24 07:46:01 -070014689 if (!rcd || !rcd->sc)
14690 return -EINVAL;
14691
14692 hw_ctxt = rcd->sc->hw_context;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014693 reg = SEND_CTXT_CHECK_JOB_KEY_MASK_SMASK | /* mask is always 1's */
14694 ((jkey & SEND_CTXT_CHECK_JOB_KEY_VALUE_MASK) <<
14695 SEND_CTXT_CHECK_JOB_KEY_VALUE_SHIFT);
14696 /* JOB_KEY_ALLOW_PERMISSIVE is not allowed by default */
14697 if (HFI1_CAP_KGET_MASK(rcd->flags, ALLOW_PERM_JKEY))
14698 reg |= SEND_CTXT_CHECK_JOB_KEY_ALLOW_PERMISSIVE_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014699 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_JOB_KEY, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014700 /*
14701 * Enable send-side J_KEY integrity check, unless this is A0 h/w
Mike Marciniszyn77241052015-07-30 15:17:43 -040014702 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014703 if (!is_ax(dd)) {
Michael J. Ruhl17573972017-07-24 07:46:01 -070014704 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014705 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014706 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014707 }
14708
14709 /* Enable J_KEY check on receive context. */
14710 reg = RCV_KEY_CTRL_JOB_KEY_ENABLE_SMASK |
14711 ((jkey & RCV_KEY_CTRL_JOB_KEY_VALUE_MASK) <<
14712 RCV_KEY_CTRL_JOB_KEY_VALUE_SHIFT);
Michael J. Ruhl17573972017-07-24 07:46:01 -070014713 write_kctxt_csr(dd, rcd->ctxt, RCV_KEY_CTRL, reg);
14714
14715 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014716}
14717
Michael J. Ruhl17573972017-07-24 07:46:01 -070014718int hfi1_clear_ctxt_jkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014719{
Michael J. Ruhl17573972017-07-24 07:46:01 -070014720 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014721 u64 reg;
14722
Michael J. Ruhl17573972017-07-24 07:46:01 -070014723 if (!rcd || !rcd->sc)
14724 return -EINVAL;
14725
14726 hw_ctxt = rcd->sc->hw_context;
14727 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_JOB_KEY, 0);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014728 /*
14729 * Disable send-side J_KEY integrity check, unless this is A0 h/w.
14730 * This check would not have been enabled for A0 h/w, see
14731 * set_ctxt_jkey().
14732 */
Mike Marciniszyn995deaf2015-11-16 21:59:29 -050014733 if (!is_ax(dd)) {
Michael J. Ruhl17573972017-07-24 07:46:01 -070014734 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014735 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014736 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014737 }
14738 /* Turn off the J_KEY on the receive side */
Michael J. Ruhl17573972017-07-24 07:46:01 -070014739 write_kctxt_csr(dd, rcd->ctxt, RCV_KEY_CTRL, 0);
14740
14741 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014742}
14743
Michael J. Ruhl17573972017-07-24 07:46:01 -070014744int hfi1_set_ctxt_pkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd,
14745 u16 pkey)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014746{
Michael J. Ruhl17573972017-07-24 07:46:01 -070014747 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014748 u64 reg;
14749
Michael J. Ruhl17573972017-07-24 07:46:01 -070014750 if (!rcd || !rcd->sc)
14751 return -EINVAL;
14752
14753 hw_ctxt = rcd->sc->hw_context;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014754 reg = ((u64)pkey & SEND_CTXT_CHECK_PARTITION_KEY_VALUE_MASK) <<
14755 SEND_CTXT_CHECK_PARTITION_KEY_VALUE_SHIFT;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014756 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_PARTITION_KEY, reg);
14757 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014758 reg |= SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
Sebastian Sancheze38d1e42016-04-12 11:22:21 -070014759 reg &= ~SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK;
Michael J. Ruhl17573972017-07-24 07:46:01 -070014760 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
14761
14762 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014763}
14764
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014765int hfi1_clear_ctxt_pkey(struct hfi1_devdata *dd, struct hfi1_ctxtdata *ctxt)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014766{
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014767 u8 hw_ctxt;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014768 u64 reg;
14769
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014770 if (!ctxt || !ctxt->sc)
14771 return -EINVAL;
14772
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014773 hw_ctxt = ctxt->sc->hw_context;
14774 reg = read_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014775 reg &= ~SEND_CTXT_CHECK_ENABLE_CHECK_PARTITION_KEY_SMASK;
Michael J. Ruhl637a9a72017-05-04 05:15:03 -070014776 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_ENABLE, reg);
14777 write_kctxt_csr(dd, hw_ctxt, SEND_CTXT_CHECK_PARTITION_KEY, 0);
14778
14779 return 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014780}
14781
14782/*
14783 * Start doing the clean up the the chip. Our clean up happens in multiple
14784 * stages and this is just the first.
14785 */
14786void hfi1_start_cleanup(struct hfi1_devdata *dd)
14787{
Ashutosh Dixitaffa48d2016-02-03 14:33:06 -080014788 aspm_exit(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014789 free_cntrs(dd);
14790 free_rcverr(dd);
Dean Luicka2ee27a2016-03-05 08:49:50 -080014791 finish_chip_resources(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014792}
14793
14794#define HFI_BASE_GUID(dev) \
14795 ((dev)->base_guid & ~(1ULL << GUID_HFI_INDEX_SHIFT))
14796
14797/*
Dean Luick78eb1292016-03-05 08:49:45 -080014798 * Information can be shared between the two HFIs on the same ASIC
14799 * in the same OS. This function finds the peer device and sets
14800 * up a shared structure.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014801 */
Dean Luick78eb1292016-03-05 08:49:45 -080014802static int init_asic_data(struct hfi1_devdata *dd)
Mike Marciniszyn77241052015-07-30 15:17:43 -040014803{
14804 unsigned long flags;
14805 struct hfi1_devdata *tmp, *peer = NULL;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014806 struct hfi1_asic_data *asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014807 int ret = 0;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014808
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014809 /* pre-allocate the asic structure in case we are the first device */
14810 asic_data = kzalloc(sizeof(*dd->asic_data), GFP_KERNEL);
14811 if (!asic_data)
14812 return -ENOMEM;
14813
Mike Marciniszyn77241052015-07-30 15:17:43 -040014814 spin_lock_irqsave(&hfi1_devs_lock, flags);
14815 /* Find our peer device */
14816 list_for_each_entry(tmp, &hfi1_dev_list, list) {
14817 if ((HFI_BASE_GUID(dd) == HFI_BASE_GUID(tmp)) &&
14818 dd->unit != tmp->unit) {
14819 peer = tmp;
14820 break;
14821 }
14822 }
14823
Dean Luick78eb1292016-03-05 08:49:45 -080014824 if (peer) {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014825 /* use already allocated structure */
Dean Luick78eb1292016-03-05 08:49:45 -080014826 dd->asic_data = peer->asic_data;
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014827 kfree(asic_data);
Dean Luick78eb1292016-03-05 08:49:45 -080014828 } else {
Tadeusz Struk98f179a2016-07-06 17:14:47 -040014829 dd->asic_data = asic_data;
Dean Luick78eb1292016-03-05 08:49:45 -080014830 mutex_init(&dd->asic_data->asic_resource_mutex);
14831 }
14832 dd->asic_data->dds[dd->hfi1_id] = dd; /* self back-pointer */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014833 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
Dean Luickdba715f2016-07-06 17:28:52 -040014834
14835 /* first one through - set up i2c devices */
14836 if (!peer)
14837 ret = set_up_i2c(dd, dd->asic_data);
14838
Dean Luick78eb1292016-03-05 08:49:45 -080014839 return ret;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014840}
14841
Dean Luick5d9157a2015-11-16 21:59:34 -050014842/*
14843 * Set dd->boardname. Use a generic name if a name is not returned from
14844 * EFI variable space.
14845 *
14846 * Return 0 on success, -ENOMEM if space could not be allocated.
14847 */
14848static int obtain_boardname(struct hfi1_devdata *dd)
14849{
14850 /* generic board description */
14851 const char generic[] =
14852 "Intel Omni-Path Host Fabric Interface Adapter 100 Series";
14853 unsigned long size;
14854 int ret;
14855
14856 ret = read_hfi1_efi_var(dd, "description", &size,
14857 (void **)&dd->boardname);
14858 if (ret) {
Dean Luick845f8762016-02-03 14:31:57 -080014859 dd_dev_info(dd, "Board description not found\n");
Dean Luick5d9157a2015-11-16 21:59:34 -050014860 /* use generic description */
14861 dd->boardname = kstrdup(generic, GFP_KERNEL);
14862 if (!dd->boardname)
14863 return -ENOMEM;
14864 }
14865 return 0;
14866}
14867
Kaike Wan24487dd2016-02-26 13:33:23 -080014868/*
14869 * Check the interrupt registers to make sure that they are mapped correctly.
14870 * It is intended to help user identify any mismapping by VMM when the driver
14871 * is running in a VM. This function should only be called before interrupt
14872 * is set up properly.
14873 *
14874 * Return 0 on success, -EINVAL on failure.
14875 */
14876static int check_int_registers(struct hfi1_devdata *dd)
14877{
14878 u64 reg;
14879 u64 all_bits = ~(u64)0;
14880 u64 mask;
14881
14882 /* Clear CceIntMask[0] to avoid raising any interrupts */
14883 mask = read_csr(dd, CCE_INT_MASK);
14884 write_csr(dd, CCE_INT_MASK, 0ull);
14885 reg = read_csr(dd, CCE_INT_MASK);
14886 if (reg)
14887 goto err_exit;
14888
14889 /* Clear all interrupt status bits */
14890 write_csr(dd, CCE_INT_CLEAR, all_bits);
14891 reg = read_csr(dd, CCE_INT_STATUS);
14892 if (reg)
14893 goto err_exit;
14894
14895 /* Set all interrupt status bits */
14896 write_csr(dd, CCE_INT_FORCE, all_bits);
14897 reg = read_csr(dd, CCE_INT_STATUS);
14898 if (reg != all_bits)
14899 goto err_exit;
14900
14901 /* Restore the interrupt mask */
14902 write_csr(dd, CCE_INT_CLEAR, all_bits);
14903 write_csr(dd, CCE_INT_MASK, mask);
14904
14905 return 0;
14906err_exit:
14907 write_csr(dd, CCE_INT_MASK, mask);
14908 dd_dev_err(dd, "Interrupt registers not properly mapped by VMM\n");
14909 return -EINVAL;
14910}
14911
Mike Marciniszyn77241052015-07-30 15:17:43 -040014912/**
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040014913 * Allocate and initialize the device structure for the hfi.
Mike Marciniszyn77241052015-07-30 15:17:43 -040014914 * @dev: the pci_dev for hfi1_ib device
14915 * @ent: pci_device_id struct for this dev
14916 *
14917 * Also allocates, initializes, and returns the devdata struct for this
14918 * device instance
14919 *
14920 * This is global, and is called directly at init to set up the
14921 * chip-specific function pointers for later use.
14922 */
14923struct hfi1_devdata *hfi1_init_dd(struct pci_dev *pdev,
14924 const struct pci_device_id *ent)
14925{
14926 struct hfi1_devdata *dd;
14927 struct hfi1_pportdata *ppd;
14928 u64 reg;
14929 int i, ret;
14930 static const char * const inames[] = { /* implementation names */
14931 "RTL silicon",
14932 "RTL VCS simulation",
14933 "RTL FPGA emulation",
14934 "Functional simulator"
14935 };
Kaike Wan24487dd2016-02-26 13:33:23 -080014936 struct pci_dev *parent = pdev->bus->self;
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014937 u32 sdma_engines;
Mike Marciniszyn77241052015-07-30 15:17:43 -040014938
Jubin John17fb4f22016-02-14 20:21:52 -080014939 dd = hfi1_alloc_devdata(pdev, NUM_IB_PORTS *
14940 sizeof(struct hfi1_pportdata));
Mike Marciniszyn77241052015-07-30 15:17:43 -040014941 if (IS_ERR(dd))
14942 goto bail;
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070014943 sdma_engines = chip_sdma_engines(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014944 ppd = dd->pport;
14945 for (i = 0; i < dd->num_pports; i++, ppd++) {
14946 int vl;
14947 /* init common fields */
14948 hfi1_init_pportdata(pdev, ppd, dd, 0, 1);
14949 /* DC supports 4 link widths */
14950 ppd->link_width_supported =
14951 OPA_LINK_WIDTH_1X | OPA_LINK_WIDTH_2X |
14952 OPA_LINK_WIDTH_3X | OPA_LINK_WIDTH_4X;
14953 ppd->link_width_downgrade_supported =
14954 ppd->link_width_supported;
14955 /* start out enabling only 4X */
14956 ppd->link_width_enabled = OPA_LINK_WIDTH_4X;
14957 ppd->link_width_downgrade_enabled =
14958 ppd->link_width_downgrade_supported;
14959 /* link width active is 0 when link is down */
14960 /* link width downgrade active is 0 when link is down */
14961
Jubin Johnd0d236e2016-02-14 20:20:15 -080014962 if (num_vls < HFI1_MIN_VLS_SUPPORTED ||
14963 num_vls > HFI1_MAX_VLS_SUPPORTED) {
Michael J. Ruhl11f0e892017-12-18 19:57:21 -080014964 dd_dev_err(dd, "Invalid num_vls %u, using %u VLs\n",
14965 num_vls, HFI1_MAX_VLS_SUPPORTED);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014966 num_vls = HFI1_MAX_VLS_SUPPORTED;
14967 }
14968 ppd->vls_supported = num_vls;
14969 ppd->vls_operational = ppd->vls_supported;
14970 /* Set the default MTU. */
14971 for (vl = 0; vl < num_vls; vl++)
14972 dd->vld[vl].mtu = hfi1_max_mtu;
14973 dd->vld[15].mtu = MAX_MAD_PACKET;
14974 /*
14975 * Set the initial values to reasonable default, will be set
14976 * for real when link is up.
14977 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040014978 ppd->overrun_threshold = 0x4;
14979 ppd->phy_error_threshold = 0xf;
14980 ppd->port_crc_mode_enabled = link_crc_mask;
14981 /* initialize supported LTP CRC mode */
14982 ppd->port_ltp_crc_mode = cap_to_port_ltp(link_crc_mask) << 8;
14983 /* initialize enabled LTP CRC mode */
14984 ppd->port_ltp_crc_mode |= cap_to_port_ltp(link_crc_mask) << 4;
14985 /* start in offline */
14986 ppd->host_link_state = HLS_DN_OFFLINE;
14987 init_vl_arb_caches(ppd);
14988 }
14989
Mike Marciniszyn77241052015-07-30 15:17:43 -040014990 /*
14991 * Do remaining PCIe setup and save PCIe values in dd.
14992 * Any error printing is already done by the init code.
14993 * On return, we have the chip mapped.
14994 */
Easwar Hariharan26ea2542016-10-17 04:19:58 -070014995 ret = hfi1_pcie_ddinit(dd, pdev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040014996 if (ret < 0)
14997 goto bail_free;
14998
Bartlomiej Dudeka618b7e2017-07-24 07:46:30 -070014999 /* Save PCI space registers to rewrite after device reset */
15000 ret = save_pci_variables(dd);
15001 if (ret < 0)
15002 goto bail_cleanup;
15003
Mike Marciniszyn77241052015-07-30 15:17:43 -040015004 dd->majrev = (dd->revision >> CCE_REVISION_CHIP_REV_MAJOR_SHIFT)
15005 & CCE_REVISION_CHIP_REV_MAJOR_MASK;
15006 dd->minrev = (dd->revision >> CCE_REVISION_CHIP_REV_MINOR_SHIFT)
15007 & CCE_REVISION_CHIP_REV_MINOR_MASK;
15008
Jubin John4d114fd2016-02-14 20:21:43 -080015009 /*
Kaike Wan24487dd2016-02-26 13:33:23 -080015010 * Check interrupt registers mapping if the driver has no access to
15011 * the upstream component. In this case, it is likely that the driver
15012 * is running in a VM.
15013 */
15014 if (!parent) {
15015 ret = check_int_registers(dd);
15016 if (ret)
15017 goto bail_cleanup;
15018 }
15019
15020 /*
Jubin John4d114fd2016-02-14 20:21:43 -080015021 * obtain the hardware ID - NOT related to unit, which is a
15022 * software enumeration
15023 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015024 reg = read_csr(dd, CCE_REVISION2);
15025 dd->hfi1_id = (reg >> CCE_REVISION2_HFI_ID_SHIFT)
15026 & CCE_REVISION2_HFI_ID_MASK;
15027 /* the variable size will remove unwanted bits */
15028 dd->icode = reg >> CCE_REVISION2_IMPL_CODE_SHIFT;
15029 dd->irev = reg >> CCE_REVISION2_IMPL_REVISION_SHIFT;
15030 dd_dev_info(dd, "Implementation: %s, revision 0x%x\n",
Jubin John17fb4f22016-02-14 20:21:52 -080015031 dd->icode < ARRAY_SIZE(inames) ?
15032 inames[dd->icode] : "unknown", (int)dd->irev);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015033
15034 /* speeds the hardware can support */
15035 dd->pport->link_speed_supported = OPA_LINK_SPEED_25G;
15036 /* speeds allowed to run at */
15037 dd->pport->link_speed_enabled = dd->pport->link_speed_supported;
15038 /* give a reasonable active value, will be set on link up */
15039 dd->pport->link_speed_active = OPA_LINK_SPEED_25G;
15040
Mike Marciniszyn77241052015-07-30 15:17:43 -040015041 /* fix up link widths for emulation _p */
15042 ppd = dd->pport;
15043 if (dd->icode == ICODE_FPGA_EMULATION && is_emulator_p(dd)) {
15044 ppd->link_width_supported =
15045 ppd->link_width_enabled =
15046 ppd->link_width_downgrade_supported =
15047 ppd->link_width_downgrade_enabled =
15048 OPA_LINK_WIDTH_1X;
15049 }
15050 /* insure num_vls isn't larger than number of sdma engines */
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070015051 if (HFI1_CAP_IS_KSET(SDMA) && num_vls > sdma_engines) {
Mike Marciniszyn77241052015-07-30 15:17:43 -040015052 dd_dev_err(dd, "num_vls %u too large, using %u VLs\n",
Mike Marciniszyn06e81e32018-06-20 09:43:06 -070015053 num_vls, sdma_engines);
15054 num_vls = sdma_engines;
15055 ppd->vls_supported = sdma_engines;
Mike Marciniszyn8a4d3442016-02-14 12:46:01 -080015056 ppd->vls_operational = ppd->vls_supported;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015057 }
15058
15059 /*
15060 * Convert the ns parameter to the 64 * cclocks used in the CSR.
15061 * Limit the max if larger than the field holds. If timeout is
15062 * non-zero, then the calculated field will be at least 1.
15063 *
15064 * Must be after icode is set up - the cclock rate depends
15065 * on knowing the hardware being used.
15066 */
15067 dd->rcv_intr_timeout_csr = ns_to_cclock(dd, rcv_intr_timeout) / 64;
15068 if (dd->rcv_intr_timeout_csr >
15069 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK)
15070 dd->rcv_intr_timeout_csr =
15071 RCV_AVAIL_TIME_OUT_TIME_OUT_RELOAD_MASK;
15072 else if (dd->rcv_intr_timeout_csr == 0 && rcv_intr_timeout)
15073 dd->rcv_intr_timeout_csr = 1;
15074
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040015075 /* needs to be done before we look for the peer device */
15076 read_guid(dd);
15077
Dean Luick78eb1292016-03-05 08:49:45 -080015078 /* set up shared ASIC data with peer device */
15079 ret = init_asic_data(dd);
15080 if (ret)
15081 goto bail_cleanup;
Easwar Hariharan7c03ed82015-10-26 10:28:28 -040015082
Mike Marciniszyn77241052015-07-30 15:17:43 -040015083 /* obtain chip sizes, reset chip CSRs */
Bartlomiej Dudekc53df622017-06-30 13:14:40 -070015084 ret = init_chip(dd);
15085 if (ret)
15086 goto bail_cleanup;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015087
15088 /* read in the PCIe link speed information */
15089 ret = pcie_speeds(dd);
15090 if (ret)
15091 goto bail_cleanup;
15092
Dean Luicke83eba22016-09-30 04:41:45 -070015093 /* call before get_platform_config(), after init_chip_resources() */
15094 ret = eprom_init(dd);
15095 if (ret)
15096 goto bail_free_rcverr;
15097
Easwar Hariharanc3838b32016-02-09 14:29:13 -080015098 /* Needs to be called before hfi1_firmware_init */
15099 get_platform_config(dd);
15100
Mike Marciniszyn77241052015-07-30 15:17:43 -040015101 /* read in firmware */
15102 ret = hfi1_firmware_init(dd);
15103 if (ret)
15104 goto bail_cleanup;
15105
15106 /*
15107 * In general, the PCIe Gen3 transition must occur after the
15108 * chip has been idled (so it won't initiate any PCIe transactions
15109 * e.g. an interrupt) and before the driver changes any registers
15110 * (the transition will reset the registers).
15111 *
15112 * In particular, place this call after:
15113 * - init_chip() - the chip will not initiate any PCIe transactions
15114 * - pcie_speeds() - reads the current link speed
15115 * - hfi1_firmware_init() - the needed firmware is ready to be
15116 * downloaded
15117 */
15118 ret = do_pcie_gen3_transition(dd);
15119 if (ret)
15120 goto bail_cleanup;
15121
15122 /* start setting dd values and adjusting CSRs */
15123 init_early_variables(dd);
15124
15125 parse_platform_config(dd);
15126
Dean Luick5d9157a2015-11-16 21:59:34 -050015127 ret = obtain_boardname(dd);
15128 if (ret)
Mike Marciniszyn77241052015-07-30 15:17:43 -040015129 goto bail_cleanup;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015130
15131 snprintf(dd->boardversion, BOARD_VERS_MAX,
Dean Luick5d9157a2015-11-16 21:59:34 -050015132 "ChipABI %u.%u, ChipRev %u.%u, SW Compat %llu\n",
Mike Marciniszyn77241052015-07-30 15:17:43 -040015133 HFI1_CHIP_VERS_MAJ, HFI1_CHIP_VERS_MIN,
Mike Marciniszyn77241052015-07-30 15:17:43 -040015134 (u32)dd->majrev,
15135 (u32)dd->minrev,
15136 (dd->revision >> CCE_REVISION_SW_SHIFT)
15137 & CCE_REVISION_SW_MASK);
15138
15139 ret = set_up_context_variables(dd);
15140 if (ret)
15141 goto bail_cleanup;
15142
15143 /* set initial RXE CSRs */
15144 init_rxe(dd);
15145 /* set initial TXE CSRs */
15146 init_txe(dd);
15147 /* set initial non-RXE, non-TXE CSRs */
15148 init_other(dd);
15149 /* set up KDETH QP prefix in both RX and TX CSRs */
15150 init_kdeth_qp(dd);
15151
Dennis Dalessandro41973442016-07-25 07:52:36 -070015152 ret = hfi1_dev_affinity_init(dd);
15153 if (ret)
15154 goto bail_cleanup;
Mitko Haralanov957558c2016-02-03 14:33:40 -080015155
Mike Marciniszyn77241052015-07-30 15:17:43 -040015156 /* send contexts must be set up before receive contexts */
15157 ret = init_send_contexts(dd);
15158 if (ret)
15159 goto bail_cleanup;
15160
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070015161 ret = hfi1_create_kctxts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015162 if (ret)
15163 goto bail_cleanup;
15164
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070015165 /*
15166 * Initialize aspm, to be done after gen3 transition and setting up
15167 * contexts and before enabling interrupts
15168 */
15169 aspm_init(dd);
15170
Mike Marciniszyn77241052015-07-30 15:17:43 -040015171 ret = init_pervl_scs(dd);
15172 if (ret)
15173 goto bail_cleanup;
15174
15175 /* sdma init */
15176 for (i = 0; i < dd->num_pports; ++i) {
15177 ret = sdma_init(dd, i);
15178 if (ret)
15179 goto bail_cleanup;
15180 }
15181
Michael J. Ruhlf2a3bc02017-08-04 13:52:38 -070015182 /* use contexts created by hfi1_create_kctxts */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015183 ret = set_up_interrupts(dd);
15184 if (ret)
15185 goto bail_cleanup;
15186
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -070015187 ret = hfi1_comp_vectors_set_up(dd);
15188 if (ret)
15189 goto bail_clear_intr;
15190
Mike Marciniszyn77241052015-07-30 15:17:43 -040015191 /* set up LCB access - must be after set_up_interrupts() */
15192 init_lcb_access(dd);
15193
Ira Weinyfc0b76c2016-07-27 21:09:40 -040015194 /*
15195 * Serial number is created from the base guid:
15196 * [27:24] = base guid [38:35]
15197 * [23: 0] = base guid [23: 0]
15198 */
Mike Marciniszyn77241052015-07-30 15:17:43 -040015199 snprintf(dd->serial, SERIAL_MAX, "0x%08llx\n",
Ira Weinyfc0b76c2016-07-27 21:09:40 -040015200 (dd->base_guid & 0xFFFFFF) |
15201 ((dd->base_guid >> 11) & 0xF000000));
Mike Marciniszyn77241052015-07-30 15:17:43 -040015202
15203 dd->oui1 = dd->base_guid >> 56 & 0xFF;
15204 dd->oui2 = dd->base_guid >> 48 & 0xFF;
15205 dd->oui3 = dd->base_guid >> 40 & 0xFF;
15206
15207 ret = load_firmware(dd); /* asymmetric with dispose_firmware() */
15208 if (ret)
15209 goto bail_clear_intr;
Mike Marciniszyn77241052015-07-30 15:17:43 -040015210
15211 thermal_init(dd);
15212
15213 ret = init_cntrs(dd);
15214 if (ret)
15215 goto bail_clear_intr;
15216
15217 ret = init_rcverr(dd);
15218 if (ret)
15219 goto bail_free_cntrs;
15220
Tadeusz Strukacd7c8f2016-10-25 08:57:55 -070015221 init_completion(&dd->user_comp);
15222
15223 /* The user refcount starts with one to inidicate an active device */
15224 atomic_set(&dd->user_refcount, 1);
15225
Mike Marciniszyn77241052015-07-30 15:17:43 -040015226 goto bail;
15227
15228bail_free_rcverr:
15229 free_rcverr(dd);
15230bail_free_cntrs:
15231 free_cntrs(dd);
15232bail_clear_intr:
Sebastian Sanchez5d18ee62018-05-02 06:43:55 -070015233 hfi1_comp_vectors_clean_up(dd);
Michael J. Ruhl82a97922018-02-01 10:43:42 -080015234 hfi1_clean_up_interrupts(dd);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015235bail_cleanup:
15236 hfi1_pcie_ddcleanup(dd);
15237bail_free:
15238 hfi1_free_devdata(dd);
15239 dd = ERR_PTR(ret);
15240bail:
15241 return dd;
15242}
15243
15244static u16 delay_cycles(struct hfi1_pportdata *ppd, u32 desired_egress_rate,
15245 u32 dw_len)
15246{
15247 u32 delta_cycles;
15248 u32 current_egress_rate = ppd->current_egress_rate;
15249 /* rates here are in units of 10^6 bits/sec */
15250
15251 if (desired_egress_rate == -1)
15252 return 0; /* shouldn't happen */
15253
15254 if (desired_egress_rate >= current_egress_rate)
15255 return 0; /* we can't help go faster, only slower */
15256
15257 delta_cycles = egress_cycles(dw_len * 4, desired_egress_rate) -
15258 egress_cycles(dw_len * 4, current_egress_rate);
15259
15260 return (u16)delta_cycles;
15261}
15262
Mike Marciniszyn77241052015-07-30 15:17:43 -040015263/**
15264 * create_pbc - build a pbc for transmission
15265 * @flags: special case flags or-ed in built pbc
15266 * @srate: static rate
15267 * @vl: vl
15268 * @dwlen: dword length (header words + data words + pbc words)
15269 *
15270 * Create a PBC with the given flags, rate, VL, and length.
15271 *
15272 * NOTE: The PBC created will not insert any HCRC - all callers but one are
15273 * for verbs, which does not use this PSM feature. The lone other caller
15274 * is for the diagnostic interface which calls this if the user does not
15275 * supply their own PBC.
15276 */
15277u64 create_pbc(struct hfi1_pportdata *ppd, u64 flags, int srate_mbs, u32 vl,
15278 u32 dw_len)
15279{
15280 u64 pbc, delay = 0;
15281
15282 if (unlikely(srate_mbs))
15283 delay = delay_cycles(ppd, srate_mbs, dw_len);
15284
15285 pbc = flags
15286 | (delay << PBC_STATIC_RATE_CONTROL_COUNT_SHIFT)
15287 | ((u64)PBC_IHCRC_NONE << PBC_INSERT_HCRC_SHIFT)
15288 | (vl & PBC_VL_MASK) << PBC_VL_SHIFT
15289 | (dw_len & PBC_LENGTH_DWS_MASK)
15290 << PBC_LENGTH_DWS_SHIFT;
15291
15292 return pbc;
15293}
15294
15295#define SBUS_THERMAL 0x4f
15296#define SBUS_THERM_MONITOR_MODE 0x1
15297
15298#define THERM_FAILURE(dev, ret, reason) \
15299 dd_dev_err((dd), \
15300 "Thermal sensor initialization failed: %s (%d)\n", \
15301 (reason), (ret))
15302
15303/*
Jakub Pawlakcde10af2016-05-12 10:23:35 -070015304 * Initialize the thermal sensor.
Mike Marciniszyn77241052015-07-30 15:17:43 -040015305 *
15306 * After initialization, enable polling of thermal sensor through
15307 * SBus interface. In order for this to work, the SBus Master
15308 * firmware has to be loaded due to the fact that the HW polling
15309 * logic uses SBus interrupts, which are not supported with
15310 * default firmware. Otherwise, no data will be returned through
15311 * the ASIC_STS_THERM CSR.
15312 */
15313static int thermal_init(struct hfi1_devdata *dd)
15314{
15315 int ret = 0;
15316
15317 if (dd->icode != ICODE_RTL_SILICON ||
Dean Luicka4536982016-03-05 08:50:11 -080015318 check_chip_resource(dd, CR_THERM_INIT, NULL))
Mike Marciniszyn77241052015-07-30 15:17:43 -040015319 return ret;
15320
Dean Luick576531f2016-03-05 08:50:01 -080015321 ret = acquire_chip_resource(dd, CR_SBUS, SBUS_TIMEOUT);
15322 if (ret) {
15323 THERM_FAILURE(dd, ret, "Acquire SBus");
15324 return ret;
15325 }
15326
Mike Marciniszyn77241052015-07-30 15:17:43 -040015327 dd_dev_info(dd, "Initializing thermal sensor\n");
Jareer Abdel-Qader4ef98982015-11-06 20:07:00 -050015328 /* Disable polling of thermal readings */
15329 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x0);
15330 msleep(100);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015331 /* Thermal Sensor Initialization */
15332 /* Step 1: Reset the Thermal SBus Receiver */
15333 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
15334 RESET_SBUS_RECEIVER, 0);
15335 if (ret) {
15336 THERM_FAILURE(dd, ret, "Bus Reset");
15337 goto done;
15338 }
15339 /* Step 2: Set Reset bit in Thermal block */
15340 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
15341 WRITE_SBUS_RECEIVER, 0x1);
15342 if (ret) {
15343 THERM_FAILURE(dd, ret, "Therm Block Reset");
15344 goto done;
15345 }
15346 /* Step 3: Write clock divider value (100MHz -> 2MHz) */
15347 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x1,
15348 WRITE_SBUS_RECEIVER, 0x32);
15349 if (ret) {
15350 THERM_FAILURE(dd, ret, "Write Clock Div");
15351 goto done;
15352 }
15353 /* Step 4: Select temperature mode */
15354 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x3,
15355 WRITE_SBUS_RECEIVER,
15356 SBUS_THERM_MONITOR_MODE);
15357 if (ret) {
15358 THERM_FAILURE(dd, ret, "Write Mode Sel");
15359 goto done;
15360 }
15361 /* Step 5: De-assert block reset and start conversion */
15362 ret = sbus_request_slow(dd, SBUS_THERMAL, 0x0,
15363 WRITE_SBUS_RECEIVER, 0x2);
15364 if (ret) {
15365 THERM_FAILURE(dd, ret, "Write Reset Deassert");
15366 goto done;
15367 }
15368 /* Step 5.1: Wait for first conversion (21.5ms per spec) */
15369 msleep(22);
15370
15371 /* Enable polling of thermal readings */
15372 write_csr(dd, ASIC_CFG_THERM_POLL_EN, 0x1);
Dean Luicka4536982016-03-05 08:50:11 -080015373
15374 /* Set initialized flag */
15375 ret = acquire_chip_resource(dd, CR_THERM_INIT, 0);
15376 if (ret)
15377 THERM_FAILURE(dd, ret, "Unable to set thermal init flag");
15378
Mike Marciniszyn77241052015-07-30 15:17:43 -040015379done:
Dean Luick576531f2016-03-05 08:50:01 -080015380 release_chip_resource(dd, CR_SBUS);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015381 return ret;
15382}
15383
15384static void handle_temp_err(struct hfi1_devdata *dd)
15385{
15386 struct hfi1_pportdata *ppd = &dd->pport[0];
15387 /*
15388 * Thermal Critical Interrupt
15389 * Put the device into forced freeze mode, take link down to
15390 * offline, and put DC into reset.
15391 */
15392 dd_dev_emerg(dd,
15393 "Critical temperature reached! Forcing device into freeze mode!\n");
15394 dd->flags |= HFI1_FORCED_FREEZE;
Jubin John8638b772016-02-14 20:19:24 -080015395 start_freeze_handling(ppd, FREEZE_SELF | FREEZE_ABORT);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015396 /*
15397 * Shut DC down as much and as quickly as possible.
15398 *
15399 * Step 1: Take the link down to OFFLINE. This will cause the
15400 * 8051 to put the Serdes in reset. However, we don't want to
15401 * go through the entire link state machine since we want to
15402 * shutdown ASAP. Furthermore, this is not a graceful shutdown
15403 * but rather an attempt to save the chip.
15404 * Code below is almost the same as quiet_serdes() but avoids
15405 * all the extra work and the sleeps.
15406 */
15407 ppd->driver_link_ready = 0;
15408 ppd->link_enabled = 0;
Harish Chegondibf640092016-03-05 08:49:29 -080015409 set_physical_link_state(dd, (OPA_LINKDOWN_REASON_SMA_DISABLED << 8) |
15410 PLS_OFFLINE);
Mike Marciniszyn77241052015-07-30 15:17:43 -040015411 /*
15412 * Step 2: Shutdown LCB and 8051
15413 * After shutdown, do not restore DC_CFG_RESET value.
15414 */
15415 dc_shutdown(dd);
15416}