IB/qib: Hold links until tuning data is available
[deliverable/linux.git] / drivers / infiniband / hw / qib / qib_iba7322.c
CommitLineData
f931551b
RC
1/*
2 * Copyright (c) 2008, 2009, 2010 QLogic Corporation. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33/*
34 * This file contains all of the code that is specific to the
35 * InfiniPath 7322 chip
36 */
37
38#include <linux/interrupt.h>
39#include <linux/pci.h>
40#include <linux/delay.h>
41#include <linux/io.h>
42#include <linux/jiffies.h>
43#include <rdma/ib_verbs.h>
44#include <rdma/ib_smi.h>
f931551b
RC
45
46#include "qib.h"
47#include "qib_7322_regs.h"
48#include "qib_qsfp.h"
49
50#include "qib_mad.h"
51
52static void qib_setup_7322_setextled(struct qib_pportdata *, u32);
53static void qib_7322_handle_hwerrors(struct qib_devdata *, char *, size_t);
54static void sendctrl_7322_mod(struct qib_pportdata *ppd, u32 op);
55static irqreturn_t qib_7322intr(int irq, void *data);
56static irqreturn_t qib_7322bufavail(int irq, void *data);
57static irqreturn_t sdma_intr(int irq, void *data);
58static irqreturn_t sdma_idle_intr(int irq, void *data);
59static irqreturn_t sdma_progress_intr(int irq, void *data);
60static irqreturn_t sdma_cleanup_intr(int irq, void *data);
61static void qib_7322_txchk_change(struct qib_devdata *, u32, u32, u32,
62 struct qib_ctxtdata *rcd);
63static u8 qib_7322_phys_portstate(u64);
64static u32 qib_7322_iblink_state(u64);
65static void qib_set_ib_7322_lstate(struct qib_pportdata *ppd, u16 linkcmd,
66 u16 linitcmd);
67static void force_h1(struct qib_pportdata *);
68static void adj_tx_serdes(struct qib_pportdata *);
69static u32 qib_7322_setpbc_control(struct qib_pportdata *, u32, u8, u8);
70static void qib_7322_mini_pcs_reset(struct qib_pportdata *);
71
72static u32 ahb_mod(struct qib_devdata *, int, int, int, u32, u32);
73static void ibsd_wr_allchans(struct qib_pportdata *, int, unsigned, unsigned);
a0a234d4
MM
74static void serdes_7322_los_enable(struct qib_pportdata *, int);
75static int serdes_7322_init_old(struct qib_pportdata *);
76static int serdes_7322_init_new(struct qib_pportdata *);
f931551b
RC
77
78#define BMASK(msb, lsb) (((1 << ((msb) + 1 - (lsb))) - 1) << (lsb))
79
80/* LE2 serdes values for different cases */
81#define LE2_DEFAULT 5
82#define LE2_5m 4
83#define LE2_QME 0
84
85/* Below is special-purpose, so only really works for the IB SerDes blocks. */
86#define IBSD(hw_pidx) (hw_pidx + 2)
87
88/* these are variables for documentation and experimentation purposes */
89static const unsigned rcv_int_timeout = 375;
90static const unsigned rcv_int_count = 16;
91static const unsigned sdma_idle_cnt = 64;
92
93/* Time to stop altering Rx Equalization parameters, after link up. */
94#define RXEQ_DISABLE_MSECS 2500
95
96/*
97 * Number of VLs we are configured to use (to allow for more
98 * credits per vl, etc.)
99 */
100ushort qib_num_cfg_vls = 2;
101module_param_named(num_vls, qib_num_cfg_vls, ushort, S_IRUGO);
102MODULE_PARM_DESC(num_vls, "Set number of Virtual Lanes to use (1-8)");
103
104static ushort qib_chase = 1;
105module_param_named(chase, qib_chase, ushort, S_IRUGO);
106MODULE_PARM_DESC(chase, "Enable state chase handling");
107
108static ushort qib_long_atten = 10; /* 10 dB ~= 5m length */
109module_param_named(long_attenuation, qib_long_atten, ushort, S_IRUGO);
110MODULE_PARM_DESC(long_attenuation, \
111 "attenuation cutoff (dB) for long copper cable setup");
112
113static ushort qib_singleport;
114module_param_named(singleport, qib_singleport, ushort, S_IRUGO);
115MODULE_PARM_DESC(singleport, "Use only IB port 1; more per-port buffer space");
116
e67306a3
MM
117static ushort qib_krcvq01_no_msi;
118module_param_named(krcvq01_no_msi, qib_krcvq01_no_msi, ushort, S_IRUGO);
119MODULE_PARM_DESC(krcvq01_no_msi, "No MSI for kctx < 2");
120
0a43e117
MM
121/*
122 * Receive header queue sizes
123 */
124static unsigned qib_rcvhdrcnt;
125module_param_named(rcvhdrcnt, qib_rcvhdrcnt, uint, S_IRUGO);
126MODULE_PARM_DESC(rcvhdrcnt, "receive header count");
127
128static unsigned qib_rcvhdrsize;
129module_param_named(rcvhdrsize, qib_rcvhdrsize, uint, S_IRUGO);
130MODULE_PARM_DESC(rcvhdrsize, "receive header size in 32-bit words");
131
132static unsigned qib_rcvhdrentsize;
133module_param_named(rcvhdrentsize, qib_rcvhdrentsize, uint, S_IRUGO);
134MODULE_PARM_DESC(rcvhdrentsize, "receive header entry size in 32-bit words");
135
f931551b
RC
136#define MAX_ATTEN_LEN 64 /* plenty for any real system */
137/* for read back, default index is ~5m copper cable */
a77fcf89
RC
138static char txselect_list[MAX_ATTEN_LEN] = "10";
139static struct kparam_string kp_txselect = {
140 .string = txselect_list,
f931551b
RC
141 .maxlen = MAX_ATTEN_LEN
142};
a77fcf89
RC
143static int setup_txselect(const char *, struct kernel_param *);
144module_param_call(txselect, setup_txselect, param_get_string,
145 &kp_txselect, S_IWUSR | S_IRUGO);
146MODULE_PARM_DESC(txselect, \
147 "Tx serdes indices (for no QSFP or invalid QSFP data)");
f931551b
RC
148
149#define BOARD_QME7342 5
150#define BOARD_QMH7342 6
151#define IS_QMH(dd) (SYM_FIELD((dd)->revision, Revision, BoardID) == \
152 BOARD_QMH7342)
153#define IS_QME(dd) (SYM_FIELD((dd)->revision, Revision, BoardID) == \
154 BOARD_QME7342)
155
156#define KREG_IDX(regname) (QIB_7322_##regname##_OFFS / sizeof(u64))
157
158#define KREG_IBPORT_IDX(regname) ((QIB_7322_##regname##_0_OFFS / sizeof(u64)))
159
160#define MASK_ACROSS(lsb, msb) \
161 (((1ULL << ((msb) + 1 - (lsb))) - 1) << (lsb))
162
163#define SYM_RMASK(regname, fldname) ((u64) \
164 QIB_7322_##regname##_##fldname##_RMASK)
165
166#define SYM_MASK(regname, fldname) ((u64) \
167 QIB_7322_##regname##_##fldname##_RMASK << \
168 QIB_7322_##regname##_##fldname##_LSB)
169
170#define SYM_FIELD(value, regname, fldname) ((u64) \
171 (((value) >> SYM_LSB(regname, fldname)) & \
172 SYM_RMASK(regname, fldname)))
173
174/* useful for things like LaFifoEmpty_0...7, TxCreditOK_0...7, etc. */
175#define SYM_FIELD_ACROSS(value, regname, fldname, nbits) \
176 (((value) >> SYM_LSB(regname, fldname)) & MASK_ACROSS(0, nbits))
177
178#define HWE_MASK(fldname) SYM_MASK(HwErrMask, fldname##Mask)
179#define ERR_MASK(fldname) SYM_MASK(ErrMask, fldname##Mask)
180#define ERR_MASK_N(fldname) SYM_MASK(ErrMask_0, fldname##Mask)
181#define INT_MASK(fldname) SYM_MASK(IntMask, fldname##IntMask)
182#define INT_MASK_P(fldname, port) SYM_MASK(IntMask, fldname##IntMask##_##port)
183/* Below because most, but not all, fields of IntMask have that full suffix */
184#define INT_MASK_PM(fldname, port) SYM_MASK(IntMask, fldname##Mask##_##port)
185
186
187#define SYM_LSB(regname, fldname) (QIB_7322_##regname##_##fldname##_LSB)
188
189/*
190 * the size bits give us 2^N, in KB units. 0 marks as invalid,
191 * and 7 is reserved. We currently use only 2KB and 4KB
192 */
193#define IBA7322_TID_SZ_SHIFT QIB_7322_RcvTIDArray0_RT_BufSize_LSB
194#define IBA7322_TID_SZ_2K (1UL<<IBA7322_TID_SZ_SHIFT) /* 2KB */
195#define IBA7322_TID_SZ_4K (2UL<<IBA7322_TID_SZ_SHIFT) /* 4KB */
196#define IBA7322_TID_PA_SHIFT 11U /* TID addr in chip stored w/o low bits */
197
198#define SendIBSLIDAssignMask \
199 QIB_7322_SendIBSLIDAssign_0_SendIBSLIDAssign_15_0_RMASK
200#define SendIBSLMCMask \
201 QIB_7322_SendIBSLIDMask_0_SendIBSLIDMask_15_0_RMASK
202
203#define ExtLED_IB1_YEL SYM_MASK(EXTCtrl, LEDPort0YellowOn)
204#define ExtLED_IB1_GRN SYM_MASK(EXTCtrl, LEDPort0GreenOn)
205#define ExtLED_IB2_YEL SYM_MASK(EXTCtrl, LEDPort1YellowOn)
206#define ExtLED_IB2_GRN SYM_MASK(EXTCtrl, LEDPort1GreenOn)
207#define ExtLED_IB1_MASK (ExtLED_IB1_YEL | ExtLED_IB1_GRN)
208#define ExtLED_IB2_MASK (ExtLED_IB2_YEL | ExtLED_IB2_GRN)
209
210#define _QIB_GPIO_SDA_NUM 1
211#define _QIB_GPIO_SCL_NUM 0
212#define QIB_EEPROM_WEN_NUM 14
213#define QIB_TWSI_EEPROM_DEV 0xA2 /* All Production 7322 cards. */
214
215/* HW counter clock is at 4nsec */
216#define QIB_7322_PSXMITWAIT_CHECK_RATE 4000
217
218/* full speed IB port 1 only */
219#define PORT_SPD_CAP (QIB_IB_SDR | QIB_IB_DDR | QIB_IB_QDR)
220#define PORT_SPD_CAP_SHIFT 3
221
222/* full speed featuremask, both ports */
223#define DUAL_PORT_CAP (PORT_SPD_CAP | (PORT_SPD_CAP << PORT_SPD_CAP_SHIFT))
224
225/*
226 * This file contains almost all the chip-specific register information and
227 * access functions for the FAKED QLogic InfiniPath 7322 PCI-Express chip.
228 */
229
230/* Use defines to tie machine-generated names to lower-case names */
231#define kr_contextcnt KREG_IDX(ContextCnt)
232#define kr_control KREG_IDX(Control)
233#define kr_counterregbase KREG_IDX(CntrRegBase)
234#define kr_errclear KREG_IDX(ErrClear)
235#define kr_errmask KREG_IDX(ErrMask)
236#define kr_errstatus KREG_IDX(ErrStatus)
237#define kr_extctrl KREG_IDX(EXTCtrl)
238#define kr_extstatus KREG_IDX(EXTStatus)
239#define kr_gpio_clear KREG_IDX(GPIOClear)
240#define kr_gpio_mask KREG_IDX(GPIOMask)
241#define kr_gpio_out KREG_IDX(GPIOOut)
242#define kr_gpio_status KREG_IDX(GPIOStatus)
243#define kr_hwdiagctrl KREG_IDX(HwDiagCtrl)
244#define kr_debugportval KREG_IDX(DebugPortValueReg)
245#define kr_fmask KREG_IDX(feature_mask)
246#define kr_act_fmask KREG_IDX(active_feature_mask)
247#define kr_hwerrclear KREG_IDX(HwErrClear)
248#define kr_hwerrmask KREG_IDX(HwErrMask)
249#define kr_hwerrstatus KREG_IDX(HwErrStatus)
250#define kr_intclear KREG_IDX(IntClear)
251#define kr_intmask KREG_IDX(IntMask)
252#define kr_intredirect KREG_IDX(IntRedirect0)
253#define kr_intstatus KREG_IDX(IntStatus)
254#define kr_pagealign KREG_IDX(PageAlign)
255#define kr_rcvavailtimeout KREG_IDX(RcvAvailTimeOut0)
256#define kr_rcvctrl KREG_IDX(RcvCtrl) /* Common, but chip also has per-port */
257#define kr_rcvegrbase KREG_IDX(RcvEgrBase)
258#define kr_rcvegrcnt KREG_IDX(RcvEgrCnt)
259#define kr_rcvhdrcnt KREG_IDX(RcvHdrCnt)
260#define kr_rcvhdrentsize KREG_IDX(RcvHdrEntSize)
261#define kr_rcvhdrsize KREG_IDX(RcvHdrSize)
262#define kr_rcvtidbase KREG_IDX(RcvTIDBase)
263#define kr_rcvtidcnt KREG_IDX(RcvTIDCnt)
264#define kr_revision KREG_IDX(Revision)
265#define kr_scratch KREG_IDX(Scratch)
266#define kr_sendbuffererror KREG_IDX(SendBufErr0) /* and base for 1 and 2 */
267#define kr_sendcheckmask KREG_IDX(SendCheckMask0) /* and 1, 2 */
268#define kr_sendctrl KREG_IDX(SendCtrl)
269#define kr_sendgrhcheckmask KREG_IDX(SendGRHCheckMask0) /* and 1, 2 */
270#define kr_sendibpktmask KREG_IDX(SendIBPacketMask0) /* and 1, 2 */
271#define kr_sendpioavailaddr KREG_IDX(SendBufAvailAddr)
272#define kr_sendpiobufbase KREG_IDX(SendBufBase)
273#define kr_sendpiobufcnt KREG_IDX(SendBufCnt)
274#define kr_sendpiosize KREG_IDX(SendBufSize)
275#define kr_sendregbase KREG_IDX(SendRegBase)
276#define kr_sendbufavail0 KREG_IDX(SendBufAvail0)
277#define kr_userregbase KREG_IDX(UserRegBase)
278#define kr_intgranted KREG_IDX(Int_Granted)
279#define kr_vecclr_wo_int KREG_IDX(vec_clr_without_int)
280#define kr_intblocked KREG_IDX(IntBlocked)
281#define kr_r_access KREG_IDX(SPC_JTAG_ACCESS_REG)
282
283/*
284 * per-port kernel registers. Access only with qib_read_kreg_port()
285 * or qib_write_kreg_port()
286 */
287#define krp_errclear KREG_IBPORT_IDX(ErrClear)
288#define krp_errmask KREG_IBPORT_IDX(ErrMask)
289#define krp_errstatus KREG_IBPORT_IDX(ErrStatus)
290#define krp_highprio_0 KREG_IBPORT_IDX(HighPriority0)
291#define krp_highprio_limit KREG_IBPORT_IDX(HighPriorityLimit)
292#define krp_hrtbt_guid KREG_IBPORT_IDX(HRTBT_GUID)
293#define krp_ib_pcsconfig KREG_IBPORT_IDX(IBPCSConfig)
294#define krp_ibcctrl_a KREG_IBPORT_IDX(IBCCtrlA)
295#define krp_ibcctrl_b KREG_IBPORT_IDX(IBCCtrlB)
296#define krp_ibcctrl_c KREG_IBPORT_IDX(IBCCtrlC)
297#define krp_ibcstatus_a KREG_IBPORT_IDX(IBCStatusA)
298#define krp_ibcstatus_b KREG_IBPORT_IDX(IBCStatusB)
299#define krp_txestatus KREG_IBPORT_IDX(TXEStatus)
300#define krp_lowprio_0 KREG_IBPORT_IDX(LowPriority0)
301#define krp_ncmodectrl KREG_IBPORT_IDX(IBNCModeCtrl)
302#define krp_partitionkey KREG_IBPORT_IDX(RcvPartitionKey)
303#define krp_psinterval KREG_IBPORT_IDX(PSInterval)
304#define krp_psstart KREG_IBPORT_IDX(PSStart)
305#define krp_psstat KREG_IBPORT_IDX(PSStat)
306#define krp_rcvbthqp KREG_IBPORT_IDX(RcvBTHQP)
307#define krp_rcvctrl KREG_IBPORT_IDX(RcvCtrl)
308#define krp_rcvpktledcnt KREG_IBPORT_IDX(RcvPktLEDCnt)
309#define krp_rcvqpmaptable KREG_IBPORT_IDX(RcvQPMapTableA)
310#define krp_rxcreditvl0 KREG_IBPORT_IDX(RxCreditVL0)
311#define krp_rxcreditvl15 (KREG_IBPORT_IDX(RxCreditVL0)+15)
312#define krp_sendcheckcontrol KREG_IBPORT_IDX(SendCheckControl)
313#define krp_sendctrl KREG_IBPORT_IDX(SendCtrl)
314#define krp_senddmabase KREG_IBPORT_IDX(SendDmaBase)
315#define krp_senddmabufmask0 KREG_IBPORT_IDX(SendDmaBufMask0)
316#define krp_senddmabufmask1 (KREG_IBPORT_IDX(SendDmaBufMask0) + 1)
317#define krp_senddmabufmask2 (KREG_IBPORT_IDX(SendDmaBufMask0) + 2)
318#define krp_senddmabuf_use0 KREG_IBPORT_IDX(SendDmaBufUsed0)
319#define krp_senddmabuf_use1 (KREG_IBPORT_IDX(SendDmaBufUsed0) + 1)
320#define krp_senddmabuf_use2 (KREG_IBPORT_IDX(SendDmaBufUsed0) + 2)
321#define krp_senddmadesccnt KREG_IBPORT_IDX(SendDmaDescCnt)
322#define krp_senddmahead KREG_IBPORT_IDX(SendDmaHead)
323#define krp_senddmaheadaddr KREG_IBPORT_IDX(SendDmaHeadAddr)
324#define krp_senddmaidlecnt KREG_IBPORT_IDX(SendDmaIdleCnt)
325#define krp_senddmalengen KREG_IBPORT_IDX(SendDmaLenGen)
326#define krp_senddmaprioritythld KREG_IBPORT_IDX(SendDmaPriorityThld)
327#define krp_senddmareloadcnt KREG_IBPORT_IDX(SendDmaReloadCnt)
328#define krp_senddmastatus KREG_IBPORT_IDX(SendDmaStatus)
329#define krp_senddmatail KREG_IBPORT_IDX(SendDmaTail)
330#define krp_sendhdrsymptom KREG_IBPORT_IDX(SendHdrErrSymptom)
331#define krp_sendslid KREG_IBPORT_IDX(SendIBSLIDAssign)
332#define krp_sendslidmask KREG_IBPORT_IDX(SendIBSLIDMask)
333#define krp_ibsdtestiftx KREG_IBPORT_IDX(IB_SDTEST_IF_TX)
334#define krp_adapt_dis_timer KREG_IBPORT_IDX(ADAPT_DISABLE_TIMER_THRESHOLD)
335#define krp_tx_deemph_override KREG_IBPORT_IDX(IBSD_TX_DEEMPHASIS_OVERRIDE)
336#define krp_serdesctrl KREG_IBPORT_IDX(IBSerdesCtrl)
337
338/*
b595076a 339 * Per-context kernel registers. Access only with qib_read_kreg_ctxt()
f931551b
RC
340 * or qib_write_kreg_ctxt()
341 */
342#define krc_rcvhdraddr KREG_IDX(RcvHdrAddr0)
343#define krc_rcvhdrtailaddr KREG_IDX(RcvHdrTailAddr0)
344
345/*
346 * TID Flow table, per context. Reduces
347 * number of hdrq updates to one per flow (or on errors).
348 * context 0 and 1 share same memory, but have distinct
349 * addresses. Since for now, we never use expected sends
350 * on kernel contexts, we don't worry about that (we initialize
351 * those entries for ctxt 0/1 on driver load twice, for example).
352 */
353#define NUM_TIDFLOWS_CTXT 0x20 /* 0x20 per context; have to hardcode */
354#define ur_rcvflowtable (KREG_IDX(RcvTIDFlowTable0) - KREG_IDX(RcvHdrTail0))
355
356/* these are the error bits in the tid flows, and are W1C */
357#define TIDFLOW_ERRBITS ( \
358 (SYM_MASK(RcvTIDFlowTable0, GenMismatch) << \
359 SYM_LSB(RcvTIDFlowTable0, GenMismatch)) | \
360 (SYM_MASK(RcvTIDFlowTable0, SeqMismatch) << \
361 SYM_LSB(RcvTIDFlowTable0, SeqMismatch)))
362
363/* Most (not all) Counters are per-IBport.
364 * Requires LBIntCnt is at offset 0 in the group
365 */
366#define CREG_IDX(regname) \
367((QIB_7322_##regname##_0_OFFS - QIB_7322_LBIntCnt_OFFS) / sizeof(u64))
368
369#define crp_badformat CREG_IDX(RxVersionErrCnt)
370#define crp_err_rlen CREG_IDX(RxLenErrCnt)
371#define crp_erricrc CREG_IDX(RxICRCErrCnt)
372#define crp_errlink CREG_IDX(RxLinkMalformCnt)
373#define crp_errlpcrc CREG_IDX(RxLPCRCErrCnt)
374#define crp_errpkey CREG_IDX(RxPKeyMismatchCnt)
375#define crp_errvcrc CREG_IDX(RxVCRCErrCnt)
376#define crp_excessbufferovfl CREG_IDX(ExcessBufferOvflCnt)
377#define crp_iblinkdown CREG_IDX(IBLinkDownedCnt)
378#define crp_iblinkerrrecov CREG_IDX(IBLinkErrRecoveryCnt)
379#define crp_ibstatuschange CREG_IDX(IBStatusChangeCnt)
380#define crp_ibsymbolerr CREG_IDX(IBSymbolErrCnt)
381#define crp_invalidrlen CREG_IDX(RxMaxMinLenErrCnt)
382#define crp_locallinkintegrityerr CREG_IDX(LocalLinkIntegrityErrCnt)
383#define crp_pktrcv CREG_IDX(RxDataPktCnt)
384#define crp_pktrcvflowctrl CREG_IDX(RxFlowPktCnt)
385#define crp_pktsend CREG_IDX(TxDataPktCnt)
386#define crp_pktsendflow CREG_IDX(TxFlowPktCnt)
387#define crp_psrcvdatacount CREG_IDX(PSRcvDataCount)
388#define crp_psrcvpktscount CREG_IDX(PSRcvPktsCount)
389#define crp_psxmitdatacount CREG_IDX(PSXmitDataCount)
390#define crp_psxmitpktscount CREG_IDX(PSXmitPktsCount)
391#define crp_psxmitwaitcount CREG_IDX(PSXmitWaitCount)
392#define crp_rcvebp CREG_IDX(RxEBPCnt)
393#define crp_rcvflowctrlviol CREG_IDX(RxFlowCtrlViolCnt)
394#define crp_rcvovfl CREG_IDX(RxBufOvflCnt)
395#define crp_rxdlidfltr CREG_IDX(RxDlidFltrCnt)
396#define crp_rxdroppkt CREG_IDX(RxDroppedPktCnt)
397#define crp_rxotherlocalphyerr CREG_IDX(RxOtherLocalPhyErrCnt)
398#define crp_rxqpinvalidctxt CREG_IDX(RxQPInvalidContextCnt)
399#define crp_rxvlerr CREG_IDX(RxVlErrCnt)
400#define crp_sendstall CREG_IDX(TxFlowStallCnt)
401#define crp_txdroppedpkt CREG_IDX(TxDroppedPktCnt)
402#define crp_txhdrerr CREG_IDX(TxHeadersErrCnt)
403#define crp_txlenerr CREG_IDX(TxLenErrCnt)
f931551b
RC
404#define crp_txminmaxlenerr CREG_IDX(TxMaxMinLenErrCnt)
405#define crp_txsdmadesc CREG_IDX(TxSDmaDescCnt)
406#define crp_txunderrun CREG_IDX(TxUnderrunCnt)
407#define crp_txunsupvl CREG_IDX(TxUnsupVLErrCnt)
408#define crp_vl15droppedpkt CREG_IDX(RxVL15DroppedPktCnt)
409#define crp_wordrcv CREG_IDX(RxDwordCnt)
410#define crp_wordsend CREG_IDX(TxDwordCnt)
411#define crp_tx_creditstalls CREG_IDX(TxCreditUpToDateTimeOut)
412
413/* these are the (few) counters that are not port-specific */
414#define CREG_DEVIDX(regname) ((QIB_7322_##regname##_OFFS - \
415 QIB_7322_LBIntCnt_OFFS) / sizeof(u64))
416#define cr_base_egrovfl CREG_DEVIDX(RxP0HdrEgrOvflCnt)
417#define cr_lbint CREG_DEVIDX(LBIntCnt)
418#define cr_lbstall CREG_DEVIDX(LBFlowStallCnt)
419#define cr_pcieretrydiag CREG_DEVIDX(PcieRetryBufDiagQwordCnt)
420#define cr_rxtidflowdrop CREG_DEVIDX(RxTidFlowDropCnt)
421#define cr_tidfull CREG_DEVIDX(RxTIDFullErrCnt)
422#define cr_tidinvalid CREG_DEVIDX(RxTIDValidErrCnt)
423
424/* no chip register for # of IB ports supported, so define */
425#define NUM_IB_PORTS 2
426
427/* 1 VL15 buffer per hardware IB port, no register for this, so define */
428#define NUM_VL15_BUFS NUM_IB_PORTS
429
430/*
431 * context 0 and 1 are special, and there is no chip register that
432 * defines this value, so we have to define it here.
433 * These are all allocated to either 0 or 1 for single port
434 * hardware configuration, otherwise each gets half
435 */
436#define KCTXT0_EGRCNT 2048
437
438/* values for vl and port fields in PBC, 7322-specific */
439#define PBC_PORT_SEL_LSB 26
440#define PBC_PORT_SEL_RMASK 1
441#define PBC_VL_NUM_LSB 27
442#define PBC_VL_NUM_RMASK 7
443#define PBC_7322_VL15_SEND (1ULL << 63) /* pbc; VL15, no credit check */
444#define PBC_7322_VL15_SEND_CTRL (1ULL << 31) /* control version of same */
445
446static u8 ib_rate_to_delay[IB_RATE_120_GBPS + 1] = {
447 [IB_RATE_2_5_GBPS] = 16,
448 [IB_RATE_5_GBPS] = 8,
449 [IB_RATE_10_GBPS] = 4,
450 [IB_RATE_20_GBPS] = 2,
451 [IB_RATE_30_GBPS] = 2,
452 [IB_RATE_40_GBPS] = 1
453};
454
455#define IBA7322_LINKSPEED_SHIFT SYM_LSB(IBCStatusA_0, LinkSpeedActive)
456#define IBA7322_LINKWIDTH_SHIFT SYM_LSB(IBCStatusA_0, LinkWidthActive)
457
458/* link training states, from IBC */
459#define IB_7322_LT_STATE_DISABLED 0x00
460#define IB_7322_LT_STATE_LINKUP 0x01
461#define IB_7322_LT_STATE_POLLACTIVE 0x02
462#define IB_7322_LT_STATE_POLLQUIET 0x03
463#define IB_7322_LT_STATE_SLEEPDELAY 0x04
464#define IB_7322_LT_STATE_SLEEPQUIET 0x05
465#define IB_7322_LT_STATE_CFGDEBOUNCE 0x08
466#define IB_7322_LT_STATE_CFGRCVFCFG 0x09
467#define IB_7322_LT_STATE_CFGWAITRMT 0x0a
468#define IB_7322_LT_STATE_CFGIDLE 0x0b
469#define IB_7322_LT_STATE_RECOVERRETRAIN 0x0c
470#define IB_7322_LT_STATE_TXREVLANES 0x0d
471#define IB_7322_LT_STATE_RECOVERWAITRMT 0x0e
472#define IB_7322_LT_STATE_RECOVERIDLE 0x0f
473#define IB_7322_LT_STATE_CFGENH 0x10
474#define IB_7322_LT_STATE_CFGTEST 0x11
31264484
MH
475#define IB_7322_LT_STATE_CFGWAITRMTTEST 0x12
476#define IB_7322_LT_STATE_CFGWAITENH 0x13
f931551b
RC
477
478/* link state machine states from IBC */
479#define IB_7322_L_STATE_DOWN 0x0
480#define IB_7322_L_STATE_INIT 0x1
481#define IB_7322_L_STATE_ARM 0x2
482#define IB_7322_L_STATE_ACTIVE 0x3
483#define IB_7322_L_STATE_ACT_DEFER 0x4
484
485static const u8 qib_7322_physportstate[0x20] = {
486 [IB_7322_LT_STATE_DISABLED] = IB_PHYSPORTSTATE_DISABLED,
487 [IB_7322_LT_STATE_LINKUP] = IB_PHYSPORTSTATE_LINKUP,
488 [IB_7322_LT_STATE_POLLACTIVE] = IB_PHYSPORTSTATE_POLL,
489 [IB_7322_LT_STATE_POLLQUIET] = IB_PHYSPORTSTATE_POLL,
490 [IB_7322_LT_STATE_SLEEPDELAY] = IB_PHYSPORTSTATE_SLEEP,
491 [IB_7322_LT_STATE_SLEEPQUIET] = IB_PHYSPORTSTATE_SLEEP,
492 [IB_7322_LT_STATE_CFGDEBOUNCE] = IB_PHYSPORTSTATE_CFG_TRAIN,
493 [IB_7322_LT_STATE_CFGRCVFCFG] =
494 IB_PHYSPORTSTATE_CFG_TRAIN,
495 [IB_7322_LT_STATE_CFGWAITRMT] =
496 IB_PHYSPORTSTATE_CFG_TRAIN,
497 [IB_7322_LT_STATE_CFGIDLE] = IB_PHYSPORTSTATE_CFG_IDLE,
498 [IB_7322_LT_STATE_RECOVERRETRAIN] =
499 IB_PHYSPORTSTATE_LINK_ERR_RECOVER,
500 [IB_7322_LT_STATE_RECOVERWAITRMT] =
501 IB_PHYSPORTSTATE_LINK_ERR_RECOVER,
502 [IB_7322_LT_STATE_RECOVERIDLE] =
503 IB_PHYSPORTSTATE_LINK_ERR_RECOVER,
504 [IB_7322_LT_STATE_CFGENH] = IB_PHYSPORTSTATE_CFG_ENH,
505 [IB_7322_LT_STATE_CFGTEST] = IB_PHYSPORTSTATE_CFG_TRAIN,
31264484
MH
506 [IB_7322_LT_STATE_CFGWAITRMTTEST] =
507 IB_PHYSPORTSTATE_CFG_TRAIN,
508 [IB_7322_LT_STATE_CFGWAITENH] =
509 IB_PHYSPORTSTATE_CFG_WAIT_ENH,
f931551b
RC
510 [0x14] = IB_PHYSPORTSTATE_CFG_TRAIN,
511 [0x15] = IB_PHYSPORTSTATE_CFG_TRAIN,
512 [0x16] = IB_PHYSPORTSTATE_CFG_TRAIN,
513 [0x17] = IB_PHYSPORTSTATE_CFG_TRAIN
514};
515
516struct qib_chip_specific {
517 u64 __iomem *cregbase;
518 u64 *cntrs;
519 spinlock_t rcvmod_lock; /* protect rcvctrl shadow changes */
520 spinlock_t gpio_lock; /* RMW of shadows/regs for ExtCtrl and GPIO */
521 u64 main_int_mask; /* clear bits which have dedicated handlers */
522 u64 int_enable_mask; /* for per port interrupts in single port mode */
523 u64 errormask;
524 u64 hwerrmask;
525 u64 gpio_out; /* shadow of kr_gpio_out, for rmw ops */
526 u64 gpio_mask; /* shadow the gpio mask register */
527 u64 extctrl; /* shadow the gpio output enable, etc... */
528 u32 ncntrs;
529 u32 nportcntrs;
530 u32 cntrnamelen;
531 u32 portcntrnamelen;
532 u32 numctxts;
533 u32 rcvegrcnt;
534 u32 updthresh; /* current AvailUpdThld */
535 u32 updthresh_dflt; /* default AvailUpdThld */
536 u32 r1;
537 int irq;
538 u32 num_msix_entries;
539 u32 sdmabufcnt;
540 u32 lastbuf_for_pio;
541 u32 stay_in_freeze;
542 u32 recovery_ports_initted;
f931551b
RC
543 struct msix_entry *msix_entries;
544 void **msix_arg;
545 unsigned long *sendchkenable;
546 unsigned long *sendgrhchk;
547 unsigned long *sendibchk;
548 u32 rcvavail_timeout[18];
549 char emsgbuf[128]; /* for device error interrupt msg buffer */
550};
551
552/* Table of entries in "human readable" form Tx Emphasis. */
553struct txdds_ent {
554 u8 amp;
555 u8 pre;
556 u8 main;
557 u8 post;
558};
559
560struct vendor_txdds_ent {
561 u8 oui[QSFP_VOUI_LEN];
562 u8 *partnum;
563 struct txdds_ent sdr;
564 struct txdds_ent ddr;
565 struct txdds_ent qdr;
566};
567
568static void write_tx_serdes_param(struct qib_pportdata *, struct txdds_ent *);
569
570#define TXDDS_TABLE_SZ 16 /* number of entries per speed in onchip table */
7c7a416e 571#define TXDDS_EXTRA_SZ 13 /* number of extra tx settings entries */
e706203c 572#define TXDDS_MFG_SZ 2 /* number of mfg tx settings entries */
f931551b
RC
573#define SERDES_CHANS 4 /* yes, it's obvious, but one less magic number */
574
575#define H1_FORCE_VAL 8
a77fcf89
RC
576#define H1_FORCE_QME 1 /* may be overridden via setup_txselect() */
577#define H1_FORCE_QMH 7 /* may be overridden via setup_txselect() */
f931551b
RC
578
579/* The static and dynamic registers are paired, and the pairs indexed by spd */
580#define krp_static_adapt_dis(spd) (KREG_IBPORT_IDX(ADAPT_DISABLE_STATIC_SDR) \
581 + ((spd) * 2))
582
583#define QDR_DFE_DISABLE_DELAY 4000 /* msec after LINKUP */
584#define QDR_STATIC_ADAPT_DOWN 0xf0f0f0f0ULL /* link down, H1-H4 QDR adapts */
585#define QDR_STATIC_ADAPT_DOWN_R1 0ULL /* r1 link down, H1-H4 QDR adapts */
586#define QDR_STATIC_ADAPT_INIT 0xffffffffffULL /* up, disable H0,H1-8, LE */
587#define QDR_STATIC_ADAPT_INIT_R1 0xf0ffffffffULL /* r1 up, disable H0,H1-8 */
588
f931551b
RC
589struct qib_chippport_specific {
590 u64 __iomem *kpregbase;
591 u64 __iomem *cpregbase;
592 u64 *portcntrs;
593 struct qib_pportdata *ppd;
594 wait_queue_head_t autoneg_wait;
595 struct delayed_work autoneg_work;
596 struct delayed_work ipg_work;
597 struct timer_list chase_timer;
598 /*
599 * these 5 fields are used to establish deltas for IB symbol
600 * errors and linkrecovery errors. They can be reported on
601 * some chips during link negotiation prior to INIT, and with
602 * DDR when faking DDR negotiations with non-IBTA switches.
603 * The chip counters are adjusted at driver unload if there is
604 * a non-zero delta.
605 */
606 u64 ibdeltainprog;
607 u64 ibsymdelta;
608 u64 ibsymsnap;
609 u64 iblnkerrdelta;
610 u64 iblnkerrsnap;
611 u64 iblnkdownsnap;
612 u64 iblnkdowndelta;
613 u64 ibmalfdelta;
614 u64 ibmalfsnap;
615 u64 ibcctrl_a; /* krp_ibcctrl_a shadow */
616 u64 ibcctrl_b; /* krp_ibcctrl_b shadow */
617 u64 qdr_dfe_time;
618 u64 chase_end;
619 u32 autoneg_tries;
620 u32 recovery_init;
621 u32 qdr_dfe_on;
622 u32 qdr_reforce;
623 /*
624 * Per-bay per-channel rcv QMH H1 values and Tx values for QDR.
625 * entry zero is unused, to simplify indexing
626 */
a77fcf89
RC
627 u8 h1_val;
628 u8 no_eep; /* txselect table index to use if no qsfp info */
f931551b
RC
629 u8 ipg_tries;
630 u8 ibmalfusesnap;
631 struct qib_qsfp_data qsfp_data;
632 char epmsgbuf[192]; /* for port error interrupt msg buffer */
633};
634
635static struct {
636 const char *name;
637 irq_handler_t handler;
638 int lsb;
639 int port; /* 0 if not port-specific, else port # */
640} irq_table[] = {
641 { QIB_DRV_NAME, qib_7322intr, -1, 0 },
642 { QIB_DRV_NAME " (buf avail)", qib_7322bufavail,
643 SYM_LSB(IntStatus, SendBufAvail), 0 },
644 { QIB_DRV_NAME " (sdma 0)", sdma_intr,
645 SYM_LSB(IntStatus, SDmaInt_0), 1 },
646 { QIB_DRV_NAME " (sdma 1)", sdma_intr,
647 SYM_LSB(IntStatus, SDmaInt_1), 2 },
648 { QIB_DRV_NAME " (sdmaI 0)", sdma_idle_intr,
649 SYM_LSB(IntStatus, SDmaIdleInt_0), 1 },
650 { QIB_DRV_NAME " (sdmaI 1)", sdma_idle_intr,
651 SYM_LSB(IntStatus, SDmaIdleInt_1), 2 },
652 { QIB_DRV_NAME " (sdmaP 0)", sdma_progress_intr,
653 SYM_LSB(IntStatus, SDmaProgressInt_0), 1 },
654 { QIB_DRV_NAME " (sdmaP 1)", sdma_progress_intr,
655 SYM_LSB(IntStatus, SDmaProgressInt_1), 2 },
656 { QIB_DRV_NAME " (sdmaC 0)", sdma_cleanup_intr,
657 SYM_LSB(IntStatus, SDmaCleanupDone_0), 1 },
658 { QIB_DRV_NAME " (sdmaC 1)", sdma_cleanup_intr,
659 SYM_LSB(IntStatus, SDmaCleanupDone_1), 2 },
660};
661
f931551b
RC
662/* ibcctrl bits */
663#define QLOGIC_IB_IBCC_LINKINITCMD_DISABLE 1
664/* cycle through TS1/TS2 till OK */
665#define QLOGIC_IB_IBCC_LINKINITCMD_POLL 2
666/* wait for TS1, then go on */
667#define QLOGIC_IB_IBCC_LINKINITCMD_SLEEP 3
668#define QLOGIC_IB_IBCC_LINKINITCMD_SHIFT 16
669
670#define QLOGIC_IB_IBCC_LINKCMD_DOWN 1 /* move to 0x11 */
671#define QLOGIC_IB_IBCC_LINKCMD_ARMED 2 /* move to 0x21 */
672#define QLOGIC_IB_IBCC_LINKCMD_ACTIVE 3 /* move to 0x31 */
673
674#define BLOB_7322_IBCHG 0x101
675
676static inline void qib_write_kreg(const struct qib_devdata *dd,
677 const u32 regno, u64 value);
678static inline u32 qib_read_kreg32(const struct qib_devdata *, const u32);
679static void write_7322_initregs(struct qib_devdata *);
680static void write_7322_init_portregs(struct qib_pportdata *);
681static void setup_7322_link_recovery(struct qib_pportdata *, u32);
682static void check_7322_rxe_status(struct qib_pportdata *);
683static u32 __iomem *qib_7322_getsendbuf(struct qib_pportdata *, u64, u32 *);
684
685/**
686 * qib_read_ureg32 - read 32-bit virtualized per-context register
687 * @dd: device
688 * @regno: register number
689 * @ctxt: context number
690 *
691 * Return the contents of a register that is virtualized to be per context.
692 * Returns -1 on errors (not distinguishable from valid contents at
693 * runtime; we may add a separate error variable at some point).
694 */
695static inline u32 qib_read_ureg32(const struct qib_devdata *dd,
696 enum qib_ureg regno, int ctxt)
697{
698 if (!dd->kregbase || !(dd->flags & QIB_PRESENT))
699 return 0;
700 return readl(regno + (u64 __iomem *)(
701 (dd->ureg_align * ctxt) + (dd->userbase ?
702 (char __iomem *)dd->userbase :
703 (char __iomem *)dd->kregbase + dd->uregbase)));
704}
705
706/**
707 * qib_read_ureg - read virtualized per-context register
708 * @dd: device
709 * @regno: register number
710 * @ctxt: context number
711 *
712 * Return the contents of a register that is virtualized to be per context.
713 * Returns -1 on errors (not distinguishable from valid contents at
714 * runtime; we may add a separate error variable at some point).
715 */
716static inline u64 qib_read_ureg(const struct qib_devdata *dd,
717 enum qib_ureg regno, int ctxt)
718{
719
720 if (!dd->kregbase || !(dd->flags & QIB_PRESENT))
721 return 0;
722 return readq(regno + (u64 __iomem *)(
723 (dd->ureg_align * ctxt) + (dd->userbase ?
724 (char __iomem *)dd->userbase :
725 (char __iomem *)dd->kregbase + dd->uregbase)));
726}
727
728/**
729 * qib_write_ureg - write virtualized per-context register
730 * @dd: device
731 * @regno: register number
732 * @value: value
733 * @ctxt: context
734 *
735 * Write the contents of a register that is virtualized to be per context.
736 */
737static inline void qib_write_ureg(const struct qib_devdata *dd,
738 enum qib_ureg regno, u64 value, int ctxt)
739{
740 u64 __iomem *ubase;
741 if (dd->userbase)
742 ubase = (u64 __iomem *)
743 ((char __iomem *) dd->userbase +
744 dd->ureg_align * ctxt);
745 else
746 ubase = (u64 __iomem *)
747 (dd->uregbase +
748 (char __iomem *) dd->kregbase +
749 dd->ureg_align * ctxt);
750
751 if (dd->kregbase && (dd->flags & QIB_PRESENT))
752 writeq(value, &ubase[regno]);
753}
754
755static inline u32 qib_read_kreg32(const struct qib_devdata *dd,
756 const u32 regno)
757{
758 if (!dd->kregbase || !(dd->flags & QIB_PRESENT))
759 return -1;
760 return readl((u32 __iomem *) &dd->kregbase[regno]);
761}
762
763static inline u64 qib_read_kreg64(const struct qib_devdata *dd,
764 const u32 regno)
765{
766 if (!dd->kregbase || !(dd->flags & QIB_PRESENT))
767 return -1;
768 return readq(&dd->kregbase[regno]);
769}
770
771static inline void qib_write_kreg(const struct qib_devdata *dd,
772 const u32 regno, u64 value)
773{
774 if (dd->kregbase && (dd->flags & QIB_PRESENT))
775 writeq(value, &dd->kregbase[regno]);
776}
777
778/*
779 * not many sanity checks for the port-specific kernel register routines,
780 * since they are only used when it's known to be safe.
781*/
782static inline u64 qib_read_kreg_port(const struct qib_pportdata *ppd,
783 const u16 regno)
784{
785 if (!ppd->cpspec->kpregbase || !(ppd->dd->flags & QIB_PRESENT))
786 return 0ULL;
787 return readq(&ppd->cpspec->kpregbase[regno]);
788}
789
790static inline void qib_write_kreg_port(const struct qib_pportdata *ppd,
791 const u16 regno, u64 value)
792{
793 if (ppd->cpspec && ppd->dd && ppd->cpspec->kpregbase &&
794 (ppd->dd->flags & QIB_PRESENT))
795 writeq(value, &ppd->cpspec->kpregbase[regno]);
796}
797
798/**
799 * qib_write_kreg_ctxt - write a device's per-ctxt 64-bit kernel register
800 * @dd: the qlogic_ib device
801 * @regno: the register number to write
802 * @ctxt: the context containing the register
803 * @value: the value to write
804 */
805static inline void qib_write_kreg_ctxt(const struct qib_devdata *dd,
806 const u16 regno, unsigned ctxt,
807 u64 value)
808{
809 qib_write_kreg(dd, regno + ctxt, value);
810}
811
812static inline u64 read_7322_creg(const struct qib_devdata *dd, u16 regno)
813{
814 if (!dd->cspec->cregbase || !(dd->flags & QIB_PRESENT))
815 return 0;
816 return readq(&dd->cspec->cregbase[regno]);
817
818
819}
820
821static inline u32 read_7322_creg32(const struct qib_devdata *dd, u16 regno)
822{
823 if (!dd->cspec->cregbase || !(dd->flags & QIB_PRESENT))
824 return 0;
825 return readl(&dd->cspec->cregbase[regno]);
826
827
828}
829
830static inline void write_7322_creg_port(const struct qib_pportdata *ppd,
831 u16 regno, u64 value)
832{
833 if (ppd->cpspec && ppd->cpspec->cpregbase &&
834 (ppd->dd->flags & QIB_PRESENT))
835 writeq(value, &ppd->cpspec->cpregbase[regno]);
836}
837
838static inline u64 read_7322_creg_port(const struct qib_pportdata *ppd,
839 u16 regno)
840{
841 if (!ppd->cpspec || !ppd->cpspec->cpregbase ||
842 !(ppd->dd->flags & QIB_PRESENT))
843 return 0;
844 return readq(&ppd->cpspec->cpregbase[regno]);
845}
846
847static inline u32 read_7322_creg32_port(const struct qib_pportdata *ppd,
848 u16 regno)
849{
850 if (!ppd->cpspec || !ppd->cpspec->cpregbase ||
851 !(ppd->dd->flags & QIB_PRESENT))
852 return 0;
853 return readl(&ppd->cpspec->cpregbase[regno]);
854}
855
856/* bits in Control register */
857#define QLOGIC_IB_C_RESET SYM_MASK(Control, SyncReset)
858#define QLOGIC_IB_C_SDMAFETCHPRIOEN SYM_MASK(Control, SDmaDescFetchPriorityEn)
859
860/* bits in general interrupt regs */
861#define QIB_I_RCVURG_LSB SYM_LSB(IntMask, RcvUrg0IntMask)
862#define QIB_I_RCVURG_RMASK MASK_ACROSS(0, 17)
863#define QIB_I_RCVURG_MASK (QIB_I_RCVURG_RMASK << QIB_I_RCVURG_LSB)
864#define QIB_I_RCVAVAIL_LSB SYM_LSB(IntMask, RcvAvail0IntMask)
865#define QIB_I_RCVAVAIL_RMASK MASK_ACROSS(0, 17)
866#define QIB_I_RCVAVAIL_MASK (QIB_I_RCVAVAIL_RMASK << QIB_I_RCVAVAIL_LSB)
867#define QIB_I_C_ERROR INT_MASK(Err)
868
869#define QIB_I_SPIOSENT (INT_MASK_P(SendDone, 0) | INT_MASK_P(SendDone, 1))
870#define QIB_I_SPIOBUFAVAIL INT_MASK(SendBufAvail)
871#define QIB_I_GPIO INT_MASK(AssertGPIO)
872#define QIB_I_P_SDMAINT(pidx) \
873 (INT_MASK_P(SDma, pidx) | INT_MASK_P(SDmaIdle, pidx) | \
874 INT_MASK_P(SDmaProgress, pidx) | \
875 INT_MASK_PM(SDmaCleanupDone, pidx))
876
877/* Interrupt bits that are "per port" */
878#define QIB_I_P_BITSEXTANT(pidx) \
879 (INT_MASK_P(Err, pidx) | INT_MASK_P(SendDone, pidx) | \
880 INT_MASK_P(SDma, pidx) | INT_MASK_P(SDmaIdle, pidx) | \
881 INT_MASK_P(SDmaProgress, pidx) | \
882 INT_MASK_PM(SDmaCleanupDone, pidx))
883
884/* Interrupt bits that are common to a device */
885/* currently unused: QIB_I_SPIOSENT */
886#define QIB_I_C_BITSEXTANT \
887 (QIB_I_RCVURG_MASK | QIB_I_RCVAVAIL_MASK | \
888 QIB_I_SPIOSENT | \
889 QIB_I_C_ERROR | QIB_I_SPIOBUFAVAIL | QIB_I_GPIO)
890
891#define QIB_I_BITSEXTANT (QIB_I_C_BITSEXTANT | \
892 QIB_I_P_BITSEXTANT(0) | QIB_I_P_BITSEXTANT(1))
893
894/*
895 * Error bits that are "per port".
896 */
897#define QIB_E_P_IBSTATUSCHANGED ERR_MASK_N(IBStatusChanged)
898#define QIB_E_P_SHDR ERR_MASK_N(SHeadersErr)
899#define QIB_E_P_VL15_BUF_MISUSE ERR_MASK_N(VL15BufMisuseErr)
900#define QIB_E_P_SND_BUF_MISUSE ERR_MASK_N(SendBufMisuseErr)
901#define QIB_E_P_SUNSUPVL ERR_MASK_N(SendUnsupportedVLErr)
902#define QIB_E_P_SUNEXP_PKTNUM ERR_MASK_N(SendUnexpectedPktNumErr)
903#define QIB_E_P_SDROP_DATA ERR_MASK_N(SendDroppedDataPktErr)
904#define QIB_E_P_SDROP_SMP ERR_MASK_N(SendDroppedSmpPktErr)
905#define QIB_E_P_SPKTLEN ERR_MASK_N(SendPktLenErr)
906#define QIB_E_P_SUNDERRUN ERR_MASK_N(SendUnderRunErr)
907#define QIB_E_P_SMAXPKTLEN ERR_MASK_N(SendMaxPktLenErr)
908#define QIB_E_P_SMINPKTLEN ERR_MASK_N(SendMinPktLenErr)
909#define QIB_E_P_RIBLOSTLINK ERR_MASK_N(RcvIBLostLinkErr)
910#define QIB_E_P_RHDR ERR_MASK_N(RcvHdrErr)
911#define QIB_E_P_RHDRLEN ERR_MASK_N(RcvHdrLenErr)
912#define QIB_E_P_RBADTID ERR_MASK_N(RcvBadTidErr)
913#define QIB_E_P_RBADVERSION ERR_MASK_N(RcvBadVersionErr)
914#define QIB_E_P_RIBFLOW ERR_MASK_N(RcvIBFlowErr)
915#define QIB_E_P_REBP ERR_MASK_N(RcvEBPErr)
916#define QIB_E_P_RUNSUPVL ERR_MASK_N(RcvUnsupportedVLErr)
917#define QIB_E_P_RUNEXPCHAR ERR_MASK_N(RcvUnexpectedCharErr)
918#define QIB_E_P_RSHORTPKTLEN ERR_MASK_N(RcvShortPktLenErr)
919#define QIB_E_P_RLONGPKTLEN ERR_MASK_N(RcvLongPktLenErr)
920#define QIB_E_P_RMAXPKTLEN ERR_MASK_N(RcvMaxPktLenErr)
921#define QIB_E_P_RMINPKTLEN ERR_MASK_N(RcvMinPktLenErr)
922#define QIB_E_P_RICRC ERR_MASK_N(RcvICRCErr)
923#define QIB_E_P_RVCRC ERR_MASK_N(RcvVCRCErr)
924#define QIB_E_P_RFORMATERR ERR_MASK_N(RcvFormatErr)
925
926#define QIB_E_P_SDMA1STDESC ERR_MASK_N(SDma1stDescErr)
927#define QIB_E_P_SDMABASE ERR_MASK_N(SDmaBaseErr)
928#define QIB_E_P_SDMADESCADDRMISALIGN ERR_MASK_N(SDmaDescAddrMisalignErr)
929#define QIB_E_P_SDMADWEN ERR_MASK_N(SDmaDwEnErr)
930#define QIB_E_P_SDMAGENMISMATCH ERR_MASK_N(SDmaGenMismatchErr)
931#define QIB_E_P_SDMAHALT ERR_MASK_N(SDmaHaltErr)
932#define QIB_E_P_SDMAMISSINGDW ERR_MASK_N(SDmaMissingDwErr)
933#define QIB_E_P_SDMAOUTOFBOUND ERR_MASK_N(SDmaOutOfBoundErr)
934#define QIB_E_P_SDMARPYTAG ERR_MASK_N(SDmaRpyTagErr)
935#define QIB_E_P_SDMATAILOUTOFBOUND ERR_MASK_N(SDmaTailOutOfBoundErr)
936#define QIB_E_P_SDMAUNEXPDATA ERR_MASK_N(SDmaUnexpDataErr)
937
938/* Error bits that are common to a device */
939#define QIB_E_RESET ERR_MASK(ResetNegated)
940#define QIB_E_HARDWARE ERR_MASK(HardwareErr)
941#define QIB_E_INVALIDADDR ERR_MASK(InvalidAddrErr)
942
943
944/*
945 * Per chip (rather than per-port) errors. Most either do
946 * nothing but trigger a print (because they self-recover, or
947 * always occur in tandem with other errors that handle the
948 * issue), or because they indicate errors with no recovery,
949 * but we want to know that they happened.
950 */
951#define QIB_E_SBUF_VL15_MISUSE ERR_MASK(SBufVL15MisUseErr)
952#define QIB_E_BADEEP ERR_MASK(InvalidEEPCmd)
953#define QIB_E_VLMISMATCH ERR_MASK(SendVLMismatchErr)
954#define QIB_E_ARMLAUNCH ERR_MASK(SendArmLaunchErr)
955#define QIB_E_SPCLTRIG ERR_MASK(SendSpecialTriggerErr)
956#define QIB_E_RRCVHDRFULL ERR_MASK(RcvHdrFullErr)
957#define QIB_E_RRCVEGRFULL ERR_MASK(RcvEgrFullErr)
958#define QIB_E_RCVCTXTSHARE ERR_MASK(RcvContextShareErr)
959
960/* SDMA chip errors (not per port)
961 * QIB_E_SDMA_BUF_DUP needs no special handling, because we will also get
962 * the SDMAHALT error immediately, so we just print the dup error via the
963 * E_AUTO mechanism. This is true of most of the per-port fatal errors
964 * as well, but since this is port-independent, by definition, it's
965 * handled a bit differently. SDMA_VL15 and SDMA_WRONG_PORT are per
966 * packet send errors, and so are handled in the same manner as other
967 * per-packet errors.
968 */
969#define QIB_E_SDMA_VL15 ERR_MASK(SDmaVL15Err)
970#define QIB_E_SDMA_WRONG_PORT ERR_MASK(SDmaWrongPortErr)
971#define QIB_E_SDMA_BUF_DUP ERR_MASK(SDmaBufMaskDuplicateErr)
972
973/*
974 * Below functionally equivalent to legacy QLOGIC_IB_E_PKTERRS
975 * it is used to print "common" packet errors.
976 */
977#define QIB_E_P_PKTERRS (QIB_E_P_SPKTLEN |\
978 QIB_E_P_SDROP_DATA | QIB_E_P_RVCRC |\
979 QIB_E_P_RICRC | QIB_E_P_RSHORTPKTLEN |\
980 QIB_E_P_VL15_BUF_MISUSE | QIB_E_P_SHDR | \
981 QIB_E_P_REBP)
982
983/* Error Bits that Packet-related (Receive, per-port) */
984#define QIB_E_P_RPKTERRS (\
985 QIB_E_P_RHDRLEN | QIB_E_P_RBADTID | \
986 QIB_E_P_RBADVERSION | QIB_E_P_RHDR | \
987 QIB_E_P_RLONGPKTLEN | QIB_E_P_RSHORTPKTLEN |\
988 QIB_E_P_RMAXPKTLEN | QIB_E_P_RMINPKTLEN | \
989 QIB_E_P_RFORMATERR | QIB_E_P_RUNSUPVL | \
990 QIB_E_P_RUNEXPCHAR | QIB_E_P_RIBFLOW | QIB_E_P_REBP)
991
992/*
993 * Error bits that are Send-related (per port)
994 * (ARMLAUNCH excluded from E_SPKTERRS because it gets special handling).
995 * All of these potentially need to have a buffer disarmed
996 */
997#define QIB_E_P_SPKTERRS (\
998 QIB_E_P_SUNEXP_PKTNUM |\
999 QIB_E_P_SDROP_DATA | QIB_E_P_SDROP_SMP |\
1000 QIB_E_P_SMAXPKTLEN |\
1001 QIB_E_P_VL15_BUF_MISUSE | QIB_E_P_SHDR | \
1002 QIB_E_P_SMINPKTLEN | QIB_E_P_SPKTLEN | \
1003 QIB_E_P_SND_BUF_MISUSE | QIB_E_P_SUNSUPVL)
1004
1005#define QIB_E_SPKTERRS ( \
1006 QIB_E_SBUF_VL15_MISUSE | QIB_E_VLMISMATCH | \
1007 ERR_MASK_N(SendUnsupportedVLErr) | \
1008 QIB_E_SPCLTRIG | QIB_E_SDMA_VL15 | QIB_E_SDMA_WRONG_PORT)
1009
1010#define QIB_E_P_SDMAERRS ( \
1011 QIB_E_P_SDMAHALT | \
1012 QIB_E_P_SDMADESCADDRMISALIGN | \
1013 QIB_E_P_SDMAUNEXPDATA | \
1014 QIB_E_P_SDMAMISSINGDW | \
1015 QIB_E_P_SDMADWEN | \
1016 QIB_E_P_SDMARPYTAG | \
1017 QIB_E_P_SDMA1STDESC | \
1018 QIB_E_P_SDMABASE | \
1019 QIB_E_P_SDMATAILOUTOFBOUND | \
1020 QIB_E_P_SDMAOUTOFBOUND | \
1021 QIB_E_P_SDMAGENMISMATCH)
1022
1023/*
1024 * This sets some bits more than once, but makes it more obvious which
1025 * bits are not handled under other categories, and the repeat definition
1026 * is not a problem.
1027 */
1028#define QIB_E_P_BITSEXTANT ( \
1029 QIB_E_P_SPKTERRS | QIB_E_P_PKTERRS | QIB_E_P_RPKTERRS | \
1030 QIB_E_P_RIBLOSTLINK | QIB_E_P_IBSTATUSCHANGED | \
1031 QIB_E_P_SND_BUF_MISUSE | QIB_E_P_SUNDERRUN | \
1032 QIB_E_P_SHDR | QIB_E_P_VL15_BUF_MISUSE | QIB_E_P_SDMAERRS \
1033 )
1034
1035/*
1036 * These are errors that can occur when the link
1037 * changes state while a packet is being sent or received. This doesn't
1038 * cover things like EBP or VCRC that can be the result of a sending
1039 * having the link change state, so we receive a "known bad" packet.
1040 * All of these are "per port", so renamed:
1041 */
1042#define QIB_E_P_LINK_PKTERRS (\
1043 QIB_E_P_SDROP_DATA | QIB_E_P_SDROP_SMP |\
1044 QIB_E_P_SMINPKTLEN | QIB_E_P_SPKTLEN |\
1045 QIB_E_P_RSHORTPKTLEN | QIB_E_P_RMINPKTLEN |\
1046 QIB_E_P_RUNEXPCHAR)
1047
1048/*
1049 * This sets some bits more than once, but makes it more obvious which
1050 * bits are not handled under other categories (such as QIB_E_SPKTERRS),
1051 * and the repeat definition is not a problem.
1052 */
1053#define QIB_E_C_BITSEXTANT (\
1054 QIB_E_HARDWARE | QIB_E_INVALIDADDR | QIB_E_BADEEP |\
1055 QIB_E_ARMLAUNCH | QIB_E_VLMISMATCH | QIB_E_RRCVHDRFULL |\
1056 QIB_E_RRCVEGRFULL | QIB_E_RESET | QIB_E_SBUF_VL15_MISUSE)
1057
1058/* Likewise Neuter E_SPKT_ERRS_IGNORE */
1059#define E_SPKT_ERRS_IGNORE 0
1060
1061#define QIB_EXTS_MEMBIST_DISABLED \
1062 SYM_MASK(EXTStatus, MemBISTDisabled)
1063#define QIB_EXTS_MEMBIST_ENDTEST \
1064 SYM_MASK(EXTStatus, MemBISTEndTest)
1065
1066#define QIB_E_SPIOARMLAUNCH \
1067 ERR_MASK(SendArmLaunchErr)
1068
1069#define IBA7322_IBCC_LINKINITCMD_MASK SYM_RMASK(IBCCtrlA_0, LinkInitCmd)
1070#define IBA7322_IBCC_LINKCMD_SHIFT SYM_LSB(IBCCtrlA_0, LinkCmd)
1071
1072/*
1073 * IBTA_1_2 is set when multiple speeds are enabled (normal),
1074 * and also if forced QDR (only QDR enabled). It's enabled for the
1075 * forced QDR case so that scrambling will be enabled by the TS3
1076 * exchange, when supported by both sides of the link.
1077 */
1078#define IBA7322_IBC_IBTA_1_2_MASK SYM_MASK(IBCCtrlB_0, IB_ENHANCED_MODE)
1079#define IBA7322_IBC_MAX_SPEED_MASK SYM_MASK(IBCCtrlB_0, SD_SPEED)
1080#define IBA7322_IBC_SPEED_QDR SYM_MASK(IBCCtrlB_0, SD_SPEED_QDR)
1081#define IBA7322_IBC_SPEED_DDR SYM_MASK(IBCCtrlB_0, SD_SPEED_DDR)
1082#define IBA7322_IBC_SPEED_SDR SYM_MASK(IBCCtrlB_0, SD_SPEED_SDR)
1083#define IBA7322_IBC_SPEED_MASK (SYM_MASK(IBCCtrlB_0, SD_SPEED_SDR) | \
1084 SYM_MASK(IBCCtrlB_0, SD_SPEED_DDR) | SYM_MASK(IBCCtrlB_0, SD_SPEED_QDR))
1085#define IBA7322_IBC_SPEED_LSB SYM_LSB(IBCCtrlB_0, SD_SPEED_SDR)
1086
1087#define IBA7322_LEDBLINK_OFF_SHIFT SYM_LSB(RcvPktLEDCnt_0, OFFperiod)
1088#define IBA7322_LEDBLINK_ON_SHIFT SYM_LSB(RcvPktLEDCnt_0, ONperiod)
1089
1090#define IBA7322_IBC_WIDTH_AUTONEG SYM_MASK(IBCCtrlB_0, IB_NUM_CHANNELS)
1091#define IBA7322_IBC_WIDTH_4X_ONLY (1<<SYM_LSB(IBCCtrlB_0, IB_NUM_CHANNELS))
1092#define IBA7322_IBC_WIDTH_1X_ONLY (0<<SYM_LSB(IBCCtrlB_0, IB_NUM_CHANNELS))
1093
1094#define IBA7322_IBC_RXPOL_MASK SYM_MASK(IBCCtrlB_0, IB_POLARITY_REV_SUPP)
1095#define IBA7322_IBC_RXPOL_LSB SYM_LSB(IBCCtrlB_0, IB_POLARITY_REV_SUPP)
1096#define IBA7322_IBC_HRTBT_MASK (SYM_MASK(IBCCtrlB_0, HRTBT_AUTO) | \
1097 SYM_MASK(IBCCtrlB_0, HRTBT_ENB))
1098#define IBA7322_IBC_HRTBT_RMASK (IBA7322_IBC_HRTBT_MASK >> \
1099 SYM_LSB(IBCCtrlB_0, HRTBT_ENB))
1100#define IBA7322_IBC_HRTBT_LSB SYM_LSB(IBCCtrlB_0, HRTBT_ENB)
1101
1102#define IBA7322_REDIRECT_VEC_PER_REG 12
1103
1104#define IBA7322_SENDCHK_PKEY SYM_MASK(SendCheckControl_0, PKey_En)
1105#define IBA7322_SENDCHK_BTHQP SYM_MASK(SendCheckControl_0, BTHQP_En)
1106#define IBA7322_SENDCHK_SLID SYM_MASK(SendCheckControl_0, SLID_En)
1107#define IBA7322_SENDCHK_RAW_IPV6 SYM_MASK(SendCheckControl_0, RawIPV6_En)
1108#define IBA7322_SENDCHK_MINSZ SYM_MASK(SendCheckControl_0, PacketTooSmall_En)
1109
1110#define AUTONEG_TRIES 3 /* sequential retries to negotiate DDR */
1111
1112#define HWE_AUTO(fldname) { .mask = SYM_MASK(HwErrMask, fldname##Mask), \
e67306a3 1113 .msg = #fldname , .sz = sizeof(#fldname) }
f931551b 1114#define HWE_AUTO_P(fldname, port) { .mask = SYM_MASK(HwErrMask, \
e67306a3 1115 fldname##Mask##_##port), .msg = #fldname , .sz = sizeof(#fldname) }
f931551b
RC
1116static const struct qib_hwerror_msgs qib_7322_hwerror_msgs[] = {
1117 HWE_AUTO_P(IBSerdesPClkNotDetect, 1),
1118 HWE_AUTO_P(IBSerdesPClkNotDetect, 0),
1119 HWE_AUTO(PCIESerdesPClkNotDetect),
1120 HWE_AUTO(PowerOnBISTFailed),
1121 HWE_AUTO(TempsenseTholdReached),
1122 HWE_AUTO(MemoryErr),
1123 HWE_AUTO(PCIeBusParityErr),
1124 HWE_AUTO(PcieCplTimeout),
1125 HWE_AUTO(PciePoisonedTLP),
1126 HWE_AUTO_P(SDmaMemReadErr, 1),
1127 HWE_AUTO_P(SDmaMemReadErr, 0),
1128 HWE_AUTO_P(IBCBusFromSPCParityErr, 1),
b9e03e04 1129 HWE_AUTO_P(IBCBusToSPCParityErr, 1),
f931551b 1130 HWE_AUTO_P(IBCBusFromSPCParityErr, 0),
b9e03e04 1131 HWE_AUTO(statusValidNoEop),
f931551b 1132 HWE_AUTO(LATriggered),
e67306a3 1133 { .mask = 0, .sz = 0 }
f931551b
RC
1134};
1135
1136#define E_AUTO(fldname) { .mask = SYM_MASK(ErrMask, fldname##Mask), \
e67306a3 1137 .msg = #fldname, .sz = sizeof(#fldname) }
f931551b 1138#define E_P_AUTO(fldname) { .mask = SYM_MASK(ErrMask_0, fldname##Mask), \
e67306a3 1139 .msg = #fldname, .sz = sizeof(#fldname) }
f931551b 1140static const struct qib_hwerror_msgs qib_7322error_msgs[] = {
e67306a3
MM
1141 E_AUTO(RcvEgrFullErr),
1142 E_AUTO(RcvHdrFullErr),
f931551b
RC
1143 E_AUTO(ResetNegated),
1144 E_AUTO(HardwareErr),
1145 E_AUTO(InvalidAddrErr),
1146 E_AUTO(SDmaVL15Err),
1147 E_AUTO(SBufVL15MisUseErr),
1148 E_AUTO(InvalidEEPCmd),
1149 E_AUTO(RcvContextShareErr),
1150 E_AUTO(SendVLMismatchErr),
1151 E_AUTO(SendArmLaunchErr),
1152 E_AUTO(SendSpecialTriggerErr),
1153 E_AUTO(SDmaWrongPortErr),
1154 E_AUTO(SDmaBufMaskDuplicateErr),
e67306a3 1155 { .mask = 0, .sz = 0 }
f931551b
RC
1156};
1157
1158static const struct qib_hwerror_msgs qib_7322p_error_msgs[] = {
1159 E_P_AUTO(IBStatusChanged),
1160 E_P_AUTO(SHeadersErr),
1161 E_P_AUTO(VL15BufMisuseErr),
1162 /*
1163 * SDmaHaltErr is not really an error, make it clearer;
1164 */
e67306a3
MM
1165 {.mask = SYM_MASK(ErrMask_0, SDmaHaltErrMask), .msg = "SDmaHalted",
1166 .sz = 11},
f931551b
RC
1167 E_P_AUTO(SDmaDescAddrMisalignErr),
1168 E_P_AUTO(SDmaUnexpDataErr),
1169 E_P_AUTO(SDmaMissingDwErr),
1170 E_P_AUTO(SDmaDwEnErr),
1171 E_P_AUTO(SDmaRpyTagErr),
1172 E_P_AUTO(SDma1stDescErr),
1173 E_P_AUTO(SDmaBaseErr),
1174 E_P_AUTO(SDmaTailOutOfBoundErr),
1175 E_P_AUTO(SDmaOutOfBoundErr),
1176 E_P_AUTO(SDmaGenMismatchErr),
1177 E_P_AUTO(SendBufMisuseErr),
1178 E_P_AUTO(SendUnsupportedVLErr),
1179 E_P_AUTO(SendUnexpectedPktNumErr),
1180 E_P_AUTO(SendDroppedDataPktErr),
1181 E_P_AUTO(SendDroppedSmpPktErr),
1182 E_P_AUTO(SendPktLenErr),
1183 E_P_AUTO(SendUnderRunErr),
1184 E_P_AUTO(SendMaxPktLenErr),
1185 E_P_AUTO(SendMinPktLenErr),
1186 E_P_AUTO(RcvIBLostLinkErr),
1187 E_P_AUTO(RcvHdrErr),
1188 E_P_AUTO(RcvHdrLenErr),
1189 E_P_AUTO(RcvBadTidErr),
1190 E_P_AUTO(RcvBadVersionErr),
1191 E_P_AUTO(RcvIBFlowErr),
1192 E_P_AUTO(RcvEBPErr),
1193 E_P_AUTO(RcvUnsupportedVLErr),
1194 E_P_AUTO(RcvUnexpectedCharErr),
1195 E_P_AUTO(RcvShortPktLenErr),
1196 E_P_AUTO(RcvLongPktLenErr),
1197 E_P_AUTO(RcvMaxPktLenErr),
1198 E_P_AUTO(RcvMinPktLenErr),
1199 E_P_AUTO(RcvICRCErr),
1200 E_P_AUTO(RcvVCRCErr),
1201 E_P_AUTO(RcvFormatErr),
e67306a3 1202 { .mask = 0, .sz = 0 }
f931551b
RC
1203};
1204
1205/*
1206 * Below generates "auto-message" for interrupts not specific to any port or
1207 * context
1208 */
1209#define INTR_AUTO(fldname) { .mask = SYM_MASK(IntMask, fldname##Mask), \
e67306a3 1210 .msg = #fldname, .sz = sizeof(#fldname) }
f931551b
RC
1211/* Below generates "auto-message" for interrupts specific to a port */
1212#define INTR_AUTO_P(fldname) { .mask = MASK_ACROSS(\
1213 SYM_LSB(IntMask, fldname##Mask##_0), \
1214 SYM_LSB(IntMask, fldname##Mask##_1)), \
e67306a3 1215 .msg = #fldname "_P", .sz = sizeof(#fldname "_P") }
f931551b
RC
1216/* For some reason, the SerDesTrimDone bits are reversed */
1217#define INTR_AUTO_PI(fldname) { .mask = MASK_ACROSS(\
1218 SYM_LSB(IntMask, fldname##Mask##_1), \
1219 SYM_LSB(IntMask, fldname##Mask##_0)), \
e67306a3 1220 .msg = #fldname "_P", .sz = sizeof(#fldname "_P") }
f931551b
RC
1221/*
1222 * Below generates "auto-message" for interrupts specific to a context,
1223 * with ctxt-number appended
1224 */
1225#define INTR_AUTO_C(fldname) { .mask = MASK_ACROSS(\
1226 SYM_LSB(IntMask, fldname##0IntMask), \
1227 SYM_LSB(IntMask, fldname##17IntMask)), \
e67306a3 1228 .msg = #fldname "_C", .sz = sizeof(#fldname "_C") }
f931551b
RC
1229
1230static const struct qib_hwerror_msgs qib_7322_intr_msgs[] = {
1231 INTR_AUTO_P(SDmaInt),
1232 INTR_AUTO_P(SDmaProgressInt),
1233 INTR_AUTO_P(SDmaIdleInt),
1234 INTR_AUTO_P(SDmaCleanupDone),
1235 INTR_AUTO_C(RcvUrg),
1236 INTR_AUTO_P(ErrInt),
1237 INTR_AUTO(ErrInt), /* non-port-specific errs */
1238 INTR_AUTO(AssertGPIOInt),
1239 INTR_AUTO_P(SendDoneInt),
1240 INTR_AUTO(SendBufAvailInt),
1241 INTR_AUTO_C(RcvAvail),
e67306a3 1242 { .mask = 0, .sz = 0 }
f931551b
RC
1243};
1244
1245#define TXSYMPTOM_AUTO_P(fldname) \
e67306a3
MM
1246 { .mask = SYM_MASK(SendHdrErrSymptom_0, fldname), \
1247 .msg = #fldname, .sz = sizeof(#fldname) }
f931551b
RC
1248static const struct qib_hwerror_msgs hdrchk_msgs[] = {
1249 TXSYMPTOM_AUTO_P(NonKeyPacket),
1250 TXSYMPTOM_AUTO_P(GRHFail),
1251 TXSYMPTOM_AUTO_P(PkeyFail),
1252 TXSYMPTOM_AUTO_P(QPFail),
1253 TXSYMPTOM_AUTO_P(SLIDFail),
1254 TXSYMPTOM_AUTO_P(RawIPV6),
1255 TXSYMPTOM_AUTO_P(PacketTooSmall),
e67306a3 1256 { .mask = 0, .sz = 0 }
f931551b
RC
1257};
1258
1259#define IBA7322_HDRHEAD_PKTINT_SHIFT 32 /* interrupt cnt in upper 32 bits */
1260
1261/*
1262 * Called when we might have an error that is specific to a particular
1263 * PIO buffer, and may need to cancel that buffer, so it can be re-used,
1264 * because we don't need to force the update of pioavail
1265 */
1266static void qib_disarm_7322_senderrbufs(struct qib_pportdata *ppd)
1267{
1268 struct qib_devdata *dd = ppd->dd;
1269 u32 i;
1270 int any;
1271 u32 piobcnt = dd->piobcnt2k + dd->piobcnt4k + NUM_VL15_BUFS;
1272 u32 regcnt = (piobcnt + BITS_PER_LONG - 1) / BITS_PER_LONG;
1273 unsigned long sbuf[4];
1274
1275 /*
1276 * It's possible that sendbuffererror could have bits set; might
1277 * have already done this as a result of hardware error handling.
1278 */
1279 any = 0;
1280 for (i = 0; i < regcnt; ++i) {
1281 sbuf[i] = qib_read_kreg64(dd, kr_sendbuffererror + i);
1282 if (sbuf[i]) {
1283 any = 1;
1284 qib_write_kreg(dd, kr_sendbuffererror + i, sbuf[i]);
1285 }
1286 }
1287
1288 if (any)
1289 qib_disarm_piobufs_set(dd, sbuf, piobcnt);
1290}
1291
1292/* No txe_recover yet, if ever */
1293
1294/* No decode__errors yet */
1295static void err_decode(char *msg, size_t len, u64 errs,
1296 const struct qib_hwerror_msgs *msp)
1297{
1298 u64 these, lmask;
1299 int took, multi, n = 0;
1300
e67306a3 1301 while (errs && msp && msp->mask) {
f931551b
RC
1302 multi = (msp->mask & (msp->mask - 1));
1303 while (errs & msp->mask) {
1304 these = (errs & msp->mask);
1305 lmask = (these & (these - 1)) ^ these;
1306 if (len) {
1307 if (n++) {
1308 /* separate the strings */
1309 *msg++ = ',';
1310 len--;
1311 }
e67306a3
MM
1312 BUG_ON(!msp->sz);
1313 /* msp->sz counts the nul */
1314 took = min_t(size_t, msp->sz - (size_t)1, len);
1315 memcpy(msg, msp->msg, took);
f931551b
RC
1316 len -= took;
1317 msg += took;
e67306a3
MM
1318 if (len)
1319 *msg = '\0';
f931551b
RC
1320 }
1321 errs &= ~lmask;
1322 if (len && multi) {
1323 /* More than one bit this mask */
1324 int idx = -1;
1325
1326 while (lmask & msp->mask) {
1327 ++idx;
1328 lmask >>= 1;
1329 }
1330 took = scnprintf(msg, len, "_%d", idx);
1331 len -= took;
1332 msg += took;
1333 }
1334 }
1335 ++msp;
1336 }
1337 /* If some bits are left, show in hex. */
1338 if (len && errs)
1339 snprintf(msg, len, "%sMORE:%llX", n ? "," : "",
1340 (unsigned long long) errs);
1341}
1342
1343/* only called if r1 set */
1344static void flush_fifo(struct qib_pportdata *ppd)
1345{
1346 struct qib_devdata *dd = ppd->dd;
1347 u32 __iomem *piobuf;
1348 u32 bufn;
1349 u32 *hdr;
1350 u64 pbc;
1351 const unsigned hdrwords = 7;
1352 static struct qib_ib_header ibhdr = {
1353 .lrh[0] = cpu_to_be16(0xF000 | QIB_LRH_BTH),
1354 .lrh[1] = IB_LID_PERMISSIVE,
1355 .lrh[2] = cpu_to_be16(hdrwords + SIZE_OF_CRC),
1356 .lrh[3] = IB_LID_PERMISSIVE,
1357 .u.oth.bth[0] = cpu_to_be32(
1358 (IB_OPCODE_UD_SEND_ONLY << 24) | QIB_DEFAULT_P_KEY),
1359 .u.oth.bth[1] = cpu_to_be32(0),
1360 .u.oth.bth[2] = cpu_to_be32(0),
1361 .u.oth.u.ud.deth[0] = cpu_to_be32(0),
1362 .u.oth.u.ud.deth[1] = cpu_to_be32(0),
1363 };
1364
1365 /*
1366 * Send a dummy VL15 packet to flush the launch FIFO.
1367 * This will not actually be sent since the TxeBypassIbc bit is set.
1368 */
1369 pbc = PBC_7322_VL15_SEND |
1370 (((u64)ppd->hw_pidx) << (PBC_PORT_SEL_LSB + 32)) |
1371 (hdrwords + SIZE_OF_CRC);
1372 piobuf = qib_7322_getsendbuf(ppd, pbc, &bufn);
1373 if (!piobuf)
1374 return;
1375 writeq(pbc, piobuf);
1376 hdr = (u32 *) &ibhdr;
1377 if (dd->flags & QIB_PIO_FLUSH_WC) {
1378 qib_flush_wc();
1379 qib_pio_copy(piobuf + 2, hdr, hdrwords - 1);
1380 qib_flush_wc();
1381 __raw_writel(hdr[hdrwords - 1], piobuf + hdrwords + 1);
1382 qib_flush_wc();
1383 } else
1384 qib_pio_copy(piobuf + 2, hdr, hdrwords);
1385 qib_sendbuf_done(dd, bufn);
1386}
1387
1388/*
1389 * This is called with interrupts disabled and sdma_lock held.
1390 */
1391static void qib_7322_sdma_sendctrl(struct qib_pportdata *ppd, unsigned op)
1392{
1393 struct qib_devdata *dd = ppd->dd;
1394 u64 set_sendctrl = 0;
1395 u64 clr_sendctrl = 0;
1396
1397 if (op & QIB_SDMA_SENDCTRL_OP_ENABLE)
1398 set_sendctrl |= SYM_MASK(SendCtrl_0, SDmaEnable);
1399 else
1400 clr_sendctrl |= SYM_MASK(SendCtrl_0, SDmaEnable);
1401
1402 if (op & QIB_SDMA_SENDCTRL_OP_INTENABLE)
1403 set_sendctrl |= SYM_MASK(SendCtrl_0, SDmaIntEnable);
1404 else
1405 clr_sendctrl |= SYM_MASK(SendCtrl_0, SDmaIntEnable);
1406
1407 if (op & QIB_SDMA_SENDCTRL_OP_HALT)
1408 set_sendctrl |= SYM_MASK(SendCtrl_0, SDmaHalt);
1409 else
1410 clr_sendctrl |= SYM_MASK(SendCtrl_0, SDmaHalt);
1411
1412 if (op & QIB_SDMA_SENDCTRL_OP_DRAIN)
1413 set_sendctrl |= SYM_MASK(SendCtrl_0, TxeBypassIbc) |
1414 SYM_MASK(SendCtrl_0, TxeAbortIbc) |
1415 SYM_MASK(SendCtrl_0, TxeDrainRmFifo);
1416 else
1417 clr_sendctrl |= SYM_MASK(SendCtrl_0, TxeBypassIbc) |
1418 SYM_MASK(SendCtrl_0, TxeAbortIbc) |
1419 SYM_MASK(SendCtrl_0, TxeDrainRmFifo);
1420
1421 spin_lock(&dd->sendctrl_lock);
1422
1423 /* If we are draining everything, block sends first */
1424 if (op & QIB_SDMA_SENDCTRL_OP_DRAIN) {
1425 ppd->p_sendctrl &= ~SYM_MASK(SendCtrl_0, SendEnable);
1426 qib_write_kreg_port(ppd, krp_sendctrl, ppd->p_sendctrl);
1427 qib_write_kreg(dd, kr_scratch, 0);
1428 }
1429
1430 ppd->p_sendctrl |= set_sendctrl;
1431 ppd->p_sendctrl &= ~clr_sendctrl;
1432
1433 if (op & QIB_SDMA_SENDCTRL_OP_CLEANUP)
1434 qib_write_kreg_port(ppd, krp_sendctrl,
1435 ppd->p_sendctrl |
1436 SYM_MASK(SendCtrl_0, SDmaCleanup));
1437 else
1438 qib_write_kreg_port(ppd, krp_sendctrl, ppd->p_sendctrl);
1439 qib_write_kreg(dd, kr_scratch, 0);
1440
1441 if (op & QIB_SDMA_SENDCTRL_OP_DRAIN) {
1442 ppd->p_sendctrl |= SYM_MASK(SendCtrl_0, SendEnable);
1443 qib_write_kreg_port(ppd, krp_sendctrl, ppd->p_sendctrl);
1444 qib_write_kreg(dd, kr_scratch, 0);
1445 }
1446
1447 spin_unlock(&dd->sendctrl_lock);
1448
1449 if ((op & QIB_SDMA_SENDCTRL_OP_DRAIN) && ppd->dd->cspec->r1)
1450 flush_fifo(ppd);
1451}
1452
1453static void qib_7322_sdma_hw_clean_up(struct qib_pportdata *ppd)
1454{
1455 __qib_sdma_process_event(ppd, qib_sdma_event_e50_hw_cleaned);
1456}
1457
1458static void qib_sdma_7322_setlengen(struct qib_pportdata *ppd)
1459{
1460 /*
1461 * Set SendDmaLenGen and clear and set
1462 * the MSB of the generation count to enable generation checking
1463 * and load the internal generation counter.
1464 */
1465 qib_write_kreg_port(ppd, krp_senddmalengen, ppd->sdma_descq_cnt);
1466 qib_write_kreg_port(ppd, krp_senddmalengen,
1467 ppd->sdma_descq_cnt |
1468 (1ULL << QIB_7322_SendDmaLenGen_0_Generation_MSB));
1469}
1470
1471/*
1472 * Must be called with sdma_lock held, or before init finished.
1473 */
1474static void qib_sdma_update_7322_tail(struct qib_pportdata *ppd, u16 tail)
1475{
1476 /* Commit writes to memory and advance the tail on the chip */
1477 wmb();
1478 ppd->sdma_descq_tail = tail;
1479 qib_write_kreg_port(ppd, krp_senddmatail, tail);
1480}
1481
1482/*
1483 * This is called with interrupts disabled and sdma_lock held.
1484 */
1485static void qib_7322_sdma_hw_start_up(struct qib_pportdata *ppd)
1486{
1487 /*
1488 * Drain all FIFOs.
1489 * The hardware doesn't require this but we do it so that verbs
1490 * and user applications don't wait for link active to send stale
1491 * data.
1492 */
1493 sendctrl_7322_mod(ppd, QIB_SENDCTRL_FLUSH);
1494
1495 qib_sdma_7322_setlengen(ppd);
1496 qib_sdma_update_7322_tail(ppd, 0); /* Set SendDmaTail */
1497 ppd->sdma_head_dma[0] = 0;
1498 qib_7322_sdma_sendctrl(ppd,
1499 ppd->sdma_state.current_op | QIB_SDMA_SENDCTRL_OP_CLEANUP);
1500}
1501
1502#define DISABLES_SDMA ( \
1503 QIB_E_P_SDMAHALT | \
1504 QIB_E_P_SDMADESCADDRMISALIGN | \
1505 QIB_E_P_SDMAMISSINGDW | \
1506 QIB_E_P_SDMADWEN | \
1507 QIB_E_P_SDMARPYTAG | \
1508 QIB_E_P_SDMA1STDESC | \
1509 QIB_E_P_SDMABASE | \
1510 QIB_E_P_SDMATAILOUTOFBOUND | \
1511 QIB_E_P_SDMAOUTOFBOUND | \
1512 QIB_E_P_SDMAGENMISMATCH)
1513
1514static void sdma_7322_p_errors(struct qib_pportdata *ppd, u64 errs)
1515{
1516 unsigned long flags;
1517 struct qib_devdata *dd = ppd->dd;
1518
1519 errs &= QIB_E_P_SDMAERRS;
1520
1521 if (errs & QIB_E_P_SDMAUNEXPDATA)
1522 qib_dev_err(dd, "IB%u:%u SDmaUnexpData\n", dd->unit,
1523 ppd->port);
1524
1525 spin_lock_irqsave(&ppd->sdma_lock, flags);
1526
1527 switch (ppd->sdma_state.current_state) {
1528 case qib_sdma_state_s00_hw_down:
1529 break;
1530
1531 case qib_sdma_state_s10_hw_start_up_wait:
1532 if (errs & QIB_E_P_SDMAHALT)
1533 __qib_sdma_process_event(ppd,
1534 qib_sdma_event_e20_hw_started);
1535 break;
1536
1537 case qib_sdma_state_s20_idle:
1538 break;
1539
1540 case qib_sdma_state_s30_sw_clean_up_wait:
1541 break;
1542
1543 case qib_sdma_state_s40_hw_clean_up_wait:
1544 if (errs & QIB_E_P_SDMAHALT)
1545 __qib_sdma_process_event(ppd,
1546 qib_sdma_event_e50_hw_cleaned);
1547 break;
1548
1549 case qib_sdma_state_s50_hw_halt_wait:
1550 if (errs & QIB_E_P_SDMAHALT)
1551 __qib_sdma_process_event(ppd,
1552 qib_sdma_event_e60_hw_halted);
1553 break;
1554
1555 case qib_sdma_state_s99_running:
1556 __qib_sdma_process_event(ppd, qib_sdma_event_e7322_err_halted);
1557 __qib_sdma_process_event(ppd, qib_sdma_event_e60_hw_halted);
1558 break;
1559 }
1560
1561 spin_unlock_irqrestore(&ppd->sdma_lock, flags);
1562}
1563
1564/*
1565 * handle per-device errors (not per-port errors)
1566 */
1567static noinline void handle_7322_errors(struct qib_devdata *dd)
1568{
1569 char *msg;
1570 u64 iserr = 0;
1571 u64 errs;
1572 u64 mask;
1573 int log_idx;
1574
1575 qib_stats.sps_errints++;
1576 errs = qib_read_kreg64(dd, kr_errstatus);
1577 if (!errs) {
1578 qib_devinfo(dd->pcidev, "device error interrupt, "
1579 "but no error bits set!\n");
1580 goto done;
1581 }
1582
1583 /* don't report errors that are masked */
1584 errs &= dd->cspec->errormask;
1585 msg = dd->cspec->emsgbuf;
1586
1587 /* do these first, they are most important */
1588 if (errs & QIB_E_HARDWARE) {
1589 *msg = '\0';
1590 qib_7322_handle_hwerrors(dd, msg, sizeof dd->cspec->emsgbuf);
1591 } else
1592 for (log_idx = 0; log_idx < QIB_EEP_LOG_CNT; ++log_idx)
1593 if (errs & dd->eep_st_masks[log_idx].errs_to_log)
1594 qib_inc_eeprom_err(dd, log_idx, 1);
1595
1596 if (errs & QIB_E_SPKTERRS) {
1597 qib_disarm_7322_senderrbufs(dd->pport);
1598 qib_stats.sps_txerrs++;
1599 } else if (errs & QIB_E_INVALIDADDR)
1600 qib_stats.sps_txerrs++;
1601 else if (errs & QIB_E_ARMLAUNCH) {
1602 qib_stats.sps_txerrs++;
1603 qib_disarm_7322_senderrbufs(dd->pport);
1604 }
1605 qib_write_kreg(dd, kr_errclear, errs);
1606
1607 /*
1608 * The ones we mask off are handled specially below
1609 * or above. Also mask SDMADISABLED by default as it
1610 * is too chatty.
1611 */
1612 mask = QIB_E_HARDWARE;
1613 *msg = '\0';
1614
1615 err_decode(msg, sizeof dd->cspec->emsgbuf, errs & ~mask,
1616 qib_7322error_msgs);
1617
1618 /*
1619 * Getting reset is a tragedy for all ports. Mark the device
1620 * _and_ the ports as "offline" in way meaningful to each.
1621 */
1622 if (errs & QIB_E_RESET) {
1623 int pidx;
1624
1625 qib_dev_err(dd, "Got reset, requires re-init "
1626 "(unload and reload driver)\n");
1627 dd->flags &= ~QIB_INITTED; /* needs re-init */
1628 /* mark as having had error */
1629 *dd->devstatusp |= QIB_STATUS_HWERROR;
1630 for (pidx = 0; pidx < dd->num_pports; ++pidx)
1631 if (dd->pport[pidx].link_speed_supported)
1632 *dd->pport[pidx].statusp &= ~QIB_STATUS_IB_CONF;
1633 }
1634
1635 if (*msg && iserr)
1636 qib_dev_err(dd, "%s error\n", msg);
1637
1638 /*
1639 * If there were hdrq or egrfull errors, wake up any processes
1640 * waiting in poll. We used to try to check which contexts had
1641 * the overflow, but given the cost of that and the chip reads
1642 * to support it, it's better to just wake everybody up if we
1643 * get an overflow; waiters can poll again if it's not them.
1644 */
1645 if (errs & (ERR_MASK(RcvEgrFullErr) | ERR_MASK(RcvHdrFullErr))) {
1646 qib_handle_urcv(dd, ~0U);
1647 if (errs & ERR_MASK(RcvEgrFullErr))
1648 qib_stats.sps_buffull++;
1649 else
1650 qib_stats.sps_hdrfull++;
1651 }
1652
1653done:
1654 return;
1655}
1656
e67306a3
MM
1657static void qib_error_tasklet(unsigned long data)
1658{
1659 struct qib_devdata *dd = (struct qib_devdata *)data;
1660
1661 handle_7322_errors(dd);
1662 qib_write_kreg(dd, kr_errmask, dd->cspec->errormask);
1663}
1664
f931551b
RC
1665static void reenable_chase(unsigned long opaque)
1666{
1667 struct qib_pportdata *ppd = (struct qib_pportdata *)opaque;
1668
1669 ppd->cpspec->chase_timer.expires = 0;
1670 qib_set_ib_7322_lstate(ppd, QLOGIC_IB_IBCC_LINKCMD_DOWN,
1671 QLOGIC_IB_IBCC_LINKINITCMD_POLL);
1672}
1673
1674static void disable_chase(struct qib_pportdata *ppd, u64 tnow, u8 ibclt)
1675{
1676 ppd->cpspec->chase_end = 0;
1677
1678 if (!qib_chase)
1679 return;
1680
1681 qib_set_ib_7322_lstate(ppd, QLOGIC_IB_IBCC_LINKCMD_DOWN,
1682 QLOGIC_IB_IBCC_LINKINITCMD_DISABLE);
1683 ppd->cpspec->chase_timer.expires = jiffies + QIB_CHASE_DIS_TIME;
1684 add_timer(&ppd->cpspec->chase_timer);
1685}
1686
1687static void handle_serdes_issues(struct qib_pportdata *ppd, u64 ibcst)
1688{
1689 u8 ibclt;
1690 u64 tnow;
1691
1692 ibclt = (u8)SYM_FIELD(ibcst, IBCStatusA_0, LinkTrainingState);
1693
1694 /*
1695 * Detect and handle the state chase issue, where we can
1696 * get stuck if we are unlucky on timing on both sides of
1697 * the link. If we are, we disable, set a timer, and
1698 * then re-enable.
1699 */
1700 switch (ibclt) {
1701 case IB_7322_LT_STATE_CFGRCVFCFG:
1702 case IB_7322_LT_STATE_CFGWAITRMT:
1703 case IB_7322_LT_STATE_TXREVLANES:
1704 case IB_7322_LT_STATE_CFGENH:
1705 tnow = get_jiffies_64();
1706 if (ppd->cpspec->chase_end &&
1707 time_after64(tnow, ppd->cpspec->chase_end))
1708 disable_chase(ppd, tnow, ibclt);
1709 else if (!ppd->cpspec->chase_end)
1710 ppd->cpspec->chase_end = tnow + QIB_CHASE_TIME;
1711 break;
1712 default:
1713 ppd->cpspec->chase_end = 0;
1714 break;
1715 }
1716
31264484
MH
1717 if (((ibclt >= IB_7322_LT_STATE_CFGTEST &&
1718 ibclt <= IB_7322_LT_STATE_CFGWAITENH) ||
1719 ibclt == IB_7322_LT_STATE_LINKUP) &&
f931551b
RC
1720 (ibcst & SYM_MASK(IBCStatusA_0, LinkSpeedQDR))) {
1721 force_h1(ppd);
1722 ppd->cpspec->qdr_reforce = 1;
a0a234d4
MM
1723 if (!ppd->dd->cspec->r1)
1724 serdes_7322_los_enable(ppd, 0);
f931551b
RC
1725 } else if (ppd->cpspec->qdr_reforce &&
1726 (ibcst & SYM_MASK(IBCStatusA_0, LinkSpeedQDR)) &&
1727 (ibclt == IB_7322_LT_STATE_CFGENH ||
1728 ibclt == IB_7322_LT_STATE_CFGIDLE ||
1729 ibclt == IB_7322_LT_STATE_LINKUP))
1730 force_h1(ppd);
1731
1732 if ((IS_QMH(ppd->dd) || IS_QME(ppd->dd)) &&
1733 ppd->link_speed_enabled == QIB_IB_QDR &&
1734 (ibclt == IB_7322_LT_STATE_CFGTEST ||
1735 ibclt == IB_7322_LT_STATE_CFGENH ||
1736 (ibclt >= IB_7322_LT_STATE_POLLACTIVE &&
1737 ibclt <= IB_7322_LT_STATE_SLEEPQUIET)))
1738 adj_tx_serdes(ppd);
1739
a0a234d4
MM
1740 if (ibclt != IB_7322_LT_STATE_LINKUP) {
1741 u8 ltstate = qib_7322_phys_portstate(ibcst);
1742 u8 pibclt = (u8)SYM_FIELD(ppd->lastibcstat, IBCStatusA_0,
1743 LinkTrainingState);
1744 if (!ppd->dd->cspec->r1 &&
1745 pibclt == IB_7322_LT_STATE_LINKUP &&
1746 ltstate != IB_PHYSPORTSTATE_LINK_ERR_RECOVER &&
1747 ltstate != IB_PHYSPORTSTATE_RECOVERY_RETRAIN &&
1748 ltstate != IB_PHYSPORTSTATE_RECOVERY_WAITRMT &&
1749 ltstate != IB_PHYSPORTSTATE_RECOVERY_IDLE)
1750 /* If the link went down (but no into recovery,
1751 * turn LOS back on */
1752 serdes_7322_los_enable(ppd, 1);
1753 if (!ppd->cpspec->qdr_dfe_on &&
1754 ibclt <= IB_7322_LT_STATE_SLEEPQUIET) {
1755 ppd->cpspec->qdr_dfe_on = 1;
1756 ppd->cpspec->qdr_dfe_time = 0;
1757 /* On link down, reenable QDR adaptation */
1758 qib_write_kreg_port(ppd, krp_static_adapt_dis(2),
1759 ppd->dd->cspec->r1 ?
1760 QDR_STATIC_ADAPT_DOWN_R1 :
1761 QDR_STATIC_ADAPT_DOWN);
1762 printk(KERN_INFO QIB_DRV_NAME
1763 " IB%u:%u re-enabled QDR adaptation "
1764 "ibclt %x\n", ppd->dd->unit, ppd->port, ibclt);
1765 }
f931551b
RC
1766 }
1767}
1768
f2d255a0
MM
1769static int qib_7322_set_ib_cfg(struct qib_pportdata *, int, u32);
1770
f931551b
RC
1771/*
1772 * This is per-pport error handling.
1773 * will likely get it's own MSIx interrupt (one for each port,
1774 * although just a single handler).
1775 */
1776static noinline void handle_7322_p_errors(struct qib_pportdata *ppd)
1777{
1778 char *msg;
1779 u64 ignore_this_time = 0, iserr = 0, errs, fmask;
1780 struct qib_devdata *dd = ppd->dd;
1781
1782 /* do this as soon as possible */
1783 fmask = qib_read_kreg64(dd, kr_act_fmask);
1784 if (!fmask)
1785 check_7322_rxe_status(ppd);
1786
1787 errs = qib_read_kreg_port(ppd, krp_errstatus);
1788 if (!errs)
1789 qib_devinfo(dd->pcidev,
1790 "Port%d error interrupt, but no error bits set!\n",
1791 ppd->port);
1792 if (!fmask)
1793 errs &= ~QIB_E_P_IBSTATUSCHANGED;
1794 if (!errs)
1795 goto done;
1796
1797 msg = ppd->cpspec->epmsgbuf;
1798 *msg = '\0';
1799
1800 if (errs & ~QIB_E_P_BITSEXTANT) {
1801 err_decode(msg, sizeof ppd->cpspec->epmsgbuf,
1802 errs & ~QIB_E_P_BITSEXTANT, qib_7322p_error_msgs);
1803 if (!*msg)
1804 snprintf(msg, sizeof ppd->cpspec->epmsgbuf,
1805 "no others");
1806 qib_dev_porterr(dd, ppd->port, "error interrupt with unknown"
1807 " errors 0x%016Lx set (and %s)\n",
1808 (errs & ~QIB_E_P_BITSEXTANT), msg);
1809 *msg = '\0';
1810 }
1811
1812 if (errs & QIB_E_P_SHDR) {
1813 u64 symptom;
1814
1815 /* determine cause, then write to clear */
1816 symptom = qib_read_kreg_port(ppd, krp_sendhdrsymptom);
1817 qib_write_kreg_port(ppd, krp_sendhdrsymptom, 0);
1818 err_decode(msg, sizeof ppd->cpspec->epmsgbuf, symptom,
1819 hdrchk_msgs);
1820 *msg = '\0';
1821 /* senderrbuf cleared in SPKTERRS below */
1822 }
1823
1824 if (errs & QIB_E_P_SPKTERRS) {
1825 if ((errs & QIB_E_P_LINK_PKTERRS) &&
1826 !(ppd->lflags & QIBL_LINKACTIVE)) {
1827 /*
1828 * This can happen when trying to bring the link
1829 * up, but the IB link changes state at the "wrong"
1830 * time. The IB logic then complains that the packet
1831 * isn't valid. We don't want to confuse people, so
1832 * we just don't print them, except at debug
1833 */
1834 err_decode(msg, sizeof ppd->cpspec->epmsgbuf,
1835 (errs & QIB_E_P_LINK_PKTERRS),
1836 qib_7322p_error_msgs);
1837 *msg = '\0';
1838 ignore_this_time = errs & QIB_E_P_LINK_PKTERRS;
1839 }
1840 qib_disarm_7322_senderrbufs(ppd);
1841 } else if ((errs & QIB_E_P_LINK_PKTERRS) &&
1842 !(ppd->lflags & QIBL_LINKACTIVE)) {
1843 /*
1844 * This can happen when SMA is trying to bring the link
1845 * up, but the IB link changes state at the "wrong" time.
1846 * The IB logic then complains that the packet isn't
1847 * valid. We don't want to confuse people, so we just
1848 * don't print them, except at debug
1849 */
1850 err_decode(msg, sizeof ppd->cpspec->epmsgbuf, errs,
1851 qib_7322p_error_msgs);
1852 ignore_this_time = errs & QIB_E_P_LINK_PKTERRS;
1853 *msg = '\0';
1854 }
1855
1856 qib_write_kreg_port(ppd, krp_errclear, errs);
1857
1858 errs &= ~ignore_this_time;
1859 if (!errs)
1860 goto done;
1861
1862 if (errs & QIB_E_P_RPKTERRS)
1863 qib_stats.sps_rcverrs++;
1864 if (errs & QIB_E_P_SPKTERRS)
1865 qib_stats.sps_txerrs++;
1866
1867 iserr = errs & ~(QIB_E_P_RPKTERRS | QIB_E_P_PKTERRS);
1868
1869 if (errs & QIB_E_P_SDMAERRS)
1870 sdma_7322_p_errors(ppd, errs);
1871
1872 if (errs & QIB_E_P_IBSTATUSCHANGED) {
1873 u64 ibcs;
1874 u8 ltstate;
1875
1876 ibcs = qib_read_kreg_port(ppd, krp_ibcstatus_a);
1877 ltstate = qib_7322_phys_portstate(ibcs);
1878
1879 if (!(ppd->lflags & QIBL_IB_AUTONEG_INPROG))
1880 handle_serdes_issues(ppd, ibcs);
1881 if (!(ppd->cpspec->ibcctrl_a &
1882 SYM_MASK(IBCCtrlA_0, IBStatIntReductionEn))) {
1883 /*
1884 * We got our interrupt, so init code should be
1885 * happy and not try alternatives. Now squelch
1886 * other "chatter" from link-negotiation (pre Init)
1887 */
1888 ppd->cpspec->ibcctrl_a |=
1889 SYM_MASK(IBCCtrlA_0, IBStatIntReductionEn);
1890 qib_write_kreg_port(ppd, krp_ibcctrl_a,
1891 ppd->cpspec->ibcctrl_a);
1892 }
1893
1894 /* Update our picture of width and speed from chip */
1895 ppd->link_width_active =
1896 (ibcs & SYM_MASK(IBCStatusA_0, LinkWidthActive)) ?
1897 IB_WIDTH_4X : IB_WIDTH_1X;
1898 ppd->link_speed_active = (ibcs & SYM_MASK(IBCStatusA_0,
1899 LinkSpeedQDR)) ? QIB_IB_QDR : (ibcs &
1900 SYM_MASK(IBCStatusA_0, LinkSpeedActive)) ?
1901 QIB_IB_DDR : QIB_IB_SDR;
1902
1903 if ((ppd->lflags & QIBL_IB_LINK_DISABLED) && ltstate !=
1904 IB_PHYSPORTSTATE_DISABLED)
1905 qib_set_ib_7322_lstate(ppd, 0,
1906 QLOGIC_IB_IBCC_LINKINITCMD_DISABLE);
d70585f7 1907 else
f931551b
RC
1908 /*
1909 * Since going into a recovery state causes the link
1910 * state to go down and since recovery is transitory,
1911 * it is better if we "miss" ever seeing the link
1912 * training state go into recovery (i.e., ignore this
1913 * transition for link state special handling purposes)
1914 * without updating lastibcstat.
1915 */
1916 if (ltstate != IB_PHYSPORTSTATE_LINK_ERR_RECOVER &&
1917 ltstate != IB_PHYSPORTSTATE_RECOVERY_RETRAIN &&
1918 ltstate != IB_PHYSPORTSTATE_RECOVERY_WAITRMT &&
1919 ltstate != IB_PHYSPORTSTATE_RECOVERY_IDLE)
1920 qib_handle_e_ibstatuschanged(ppd, ibcs);
1921 }
1922 if (*msg && iserr)
1923 qib_dev_porterr(dd, ppd->port, "%s error\n", msg);
1924
1925 if (ppd->state_wanted & ppd->lflags)
1926 wake_up_interruptible(&ppd->state_wait);
1927done:
1928 return;
1929}
1930
1931/* enable/disable chip from delivering interrupts */
1932static void qib_7322_set_intr_state(struct qib_devdata *dd, u32 enable)
1933{
1934 if (enable) {
1935 if (dd->flags & QIB_BADINTR)
1936 return;
1937 qib_write_kreg(dd, kr_intmask, dd->cspec->int_enable_mask);
1938 /* cause any pending enabled interrupts to be re-delivered */
1939 qib_write_kreg(dd, kr_intclear, 0ULL);
1940 if (dd->cspec->num_msix_entries) {
1941 /* and same for MSIx */
1942 u64 val = qib_read_kreg64(dd, kr_intgranted);
1943 if (val)
1944 qib_write_kreg(dd, kr_intgranted, val);
1945 }
1946 } else
1947 qib_write_kreg(dd, kr_intmask, 0ULL);
1948}
1949
1950/*
1951 * Try to cleanup as much as possible for anything that might have gone
1952 * wrong while in freeze mode, such as pio buffers being written by user
1953 * processes (causing armlaunch), send errors due to going into freeze mode,
1954 * etc., and try to avoid causing extra interrupts while doing so.
1955 * Forcibly update the in-memory pioavail register copies after cleanup
1956 * because the chip won't do it while in freeze mode (the register values
1957 * themselves are kept correct).
1958 * Make sure that we don't lose any important interrupts by using the chip
1959 * feature that says that writing 0 to a bit in *clear that is set in
1960 * *status will cause an interrupt to be generated again (if allowed by
1961 * the *mask value).
1962 * This is in chip-specific code because of all of the register accesses,
1963 * even though the details are similar on most chips.
1964 */
1965static void qib_7322_clear_freeze(struct qib_devdata *dd)
1966{
1967 int pidx;
1968
1969 /* disable error interrupts, to avoid confusion */
1970 qib_write_kreg(dd, kr_errmask, 0ULL);
1971
1972 for (pidx = 0; pidx < dd->num_pports; ++pidx)
1973 if (dd->pport[pidx].link_speed_supported)
1974 qib_write_kreg_port(dd->pport + pidx, krp_errmask,
1975 0ULL);
1976
1977 /* also disable interrupts; errormask is sometimes overwriten */
1978 qib_7322_set_intr_state(dd, 0);
1979
1980 /* clear the freeze, and be sure chip saw it */
1981 qib_write_kreg(dd, kr_control, dd->control);
1982 qib_read_kreg32(dd, kr_scratch);
1983
1984 /*
1985 * Force new interrupt if any hwerr, error or interrupt bits are
1986 * still set, and clear "safe" send packet errors related to freeze
1987 * and cancelling sends. Re-enable error interrupts before possible
1988 * force of re-interrupt on pending interrupts.
1989 */
1990 qib_write_kreg(dd, kr_hwerrclear, 0ULL);
1991 qib_write_kreg(dd, kr_errclear, E_SPKT_ERRS_IGNORE);
1992 qib_write_kreg(dd, kr_errmask, dd->cspec->errormask);
1993 /* We need to purge per-port errs and reset mask, too */
1994 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1995 if (!dd->pport[pidx].link_speed_supported)
1996 continue;
1997 qib_write_kreg_port(dd->pport + pidx, krp_errclear, ~0Ull);
1998 qib_write_kreg_port(dd->pport + pidx, krp_errmask, ~0Ull);
1999 }
2000 qib_7322_set_intr_state(dd, 1);
2001}
2002
2003/* no error handling to speak of */
2004/**
2005 * qib_7322_handle_hwerrors - display hardware errors.
2006 * @dd: the qlogic_ib device
2007 * @msg: the output buffer
2008 * @msgl: the size of the output buffer
2009 *
2010 * Use same msg buffer as regular errors to avoid excessive stack
2011 * use. Most hardware errors are catastrophic, but for right now,
2012 * we'll print them and continue. We reuse the same message buffer as
2013 * qib_handle_errors() to avoid excessive stack usage.
2014 */
2015static void qib_7322_handle_hwerrors(struct qib_devdata *dd, char *msg,
2016 size_t msgl)
2017{
2018 u64 hwerrs;
2019 u32 ctrl;
2020 int isfatal = 0;
2021
2022 hwerrs = qib_read_kreg64(dd, kr_hwerrstatus);
2023 if (!hwerrs)
2024 goto bail;
2025 if (hwerrs == ~0ULL) {
2026 qib_dev_err(dd, "Read of hardware error status failed "
2027 "(all bits set); ignoring\n");
2028 goto bail;
2029 }
2030 qib_stats.sps_hwerrs++;
2031
2032 /* Always clear the error status register, except BIST fail */
2033 qib_write_kreg(dd, kr_hwerrclear, hwerrs &
2034 ~HWE_MASK(PowerOnBISTFailed));
2035
2036 hwerrs &= dd->cspec->hwerrmask;
2037
2038 /* no EEPROM logging, yet */
2039
2040 if (hwerrs)
2041 qib_devinfo(dd->pcidev, "Hardware error: hwerr=0x%llx "
2042 "(cleared)\n", (unsigned long long) hwerrs);
2043
2044 ctrl = qib_read_kreg32(dd, kr_control);
2045 if ((ctrl & SYM_MASK(Control, FreezeMode)) && !dd->diag_client) {
2046 /*
2047 * No recovery yet...
2048 */
2049 if ((hwerrs & ~HWE_MASK(LATriggered)) ||
2050 dd->cspec->stay_in_freeze) {
2051 /*
2052 * If any set that we aren't ignoring only make the
2053 * complaint once, in case it's stuck or recurring,
2054 * and we get here multiple times
2055 * Force link down, so switch knows, and
2056 * LEDs are turned off.
2057 */
2058 if (dd->flags & QIB_INITTED)
2059 isfatal = 1;
2060 } else
2061 qib_7322_clear_freeze(dd);
2062 }
2063
2064 if (hwerrs & HWE_MASK(PowerOnBISTFailed)) {
2065 isfatal = 1;
2066 strlcpy(msg, "[Memory BIST test failed, "
2067 "InfiniPath hardware unusable]", msgl);
2068 /* ignore from now on, so disable until driver reloaded */
2069 dd->cspec->hwerrmask &= ~HWE_MASK(PowerOnBISTFailed);
2070 qib_write_kreg(dd, kr_hwerrmask, dd->cspec->hwerrmask);
2071 }
2072
2073 err_decode(msg, msgl, hwerrs, qib_7322_hwerror_msgs);
2074
2075 /* Ignore esoteric PLL failures et al. */
2076
2077 qib_dev_err(dd, "%s hardware error\n", msg);
2078
2079 if (isfatal && !dd->diag_client) {
2080 qib_dev_err(dd, "Fatal Hardware Error, no longer"
2081 " usable, SN %.16s\n", dd->serial);
2082 /*
2083 * for /sys status file and user programs to print; if no
2084 * trailing brace is copied, we'll know it was truncated.
2085 */
2086 if (dd->freezemsg)
2087 snprintf(dd->freezemsg, dd->freezelen,
2088 "{%s}", msg);
2089 qib_disable_after_error(dd);
2090 }
2091bail:;
2092}
2093
2094/**
2095 * qib_7322_init_hwerrors - enable hardware errors
2096 * @dd: the qlogic_ib device
2097 *
2098 * now that we have finished initializing everything that might reasonably
2099 * cause a hardware error, and cleared those errors bits as they occur,
2100 * we can enable hardware errors in the mask (potentially enabling
2101 * freeze mode), and enable hardware errors as errors (along with
2102 * everything else) in errormask
2103 */
2104static void qib_7322_init_hwerrors(struct qib_devdata *dd)
2105{
2106 int pidx;
2107 u64 extsval;
2108
2109 extsval = qib_read_kreg64(dd, kr_extstatus);
2110 if (!(extsval & (QIB_EXTS_MEMBIST_DISABLED |
2111 QIB_EXTS_MEMBIST_ENDTEST)))
2112 qib_dev_err(dd, "MemBIST did not complete!\n");
2113
2114 /* never clear BIST failure, so reported on each driver load */
2115 qib_write_kreg(dd, kr_hwerrclear, ~HWE_MASK(PowerOnBISTFailed));
2116 qib_write_kreg(dd, kr_hwerrmask, dd->cspec->hwerrmask);
2117
2118 /* clear all */
2119 qib_write_kreg(dd, kr_errclear, ~0ULL);
2120 /* enable errors that are masked, at least this first time. */
2121 qib_write_kreg(dd, kr_errmask, ~0ULL);
2122 dd->cspec->errormask = qib_read_kreg64(dd, kr_errmask);
2123 for (pidx = 0; pidx < dd->num_pports; ++pidx)
2124 if (dd->pport[pidx].link_speed_supported)
2125 qib_write_kreg_port(dd->pport + pidx, krp_errmask,
2126 ~0ULL);
2127}
2128
2129/*
2130 * Disable and enable the armlaunch error. Used for PIO bandwidth testing
2131 * on chips that are count-based, rather than trigger-based. There is no
2132 * reference counting, but that's also fine, given the intended use.
2133 * Only chip-specific because it's all register accesses
2134 */
2135static void qib_set_7322_armlaunch(struct qib_devdata *dd, u32 enable)
2136{
2137 if (enable) {
2138 qib_write_kreg(dd, kr_errclear, QIB_E_SPIOARMLAUNCH);
2139 dd->cspec->errormask |= QIB_E_SPIOARMLAUNCH;
2140 } else
2141 dd->cspec->errormask &= ~QIB_E_SPIOARMLAUNCH;
2142 qib_write_kreg(dd, kr_errmask, dd->cspec->errormask);
2143}
2144
2145/*
2146 * Formerly took parameter <which> in pre-shifted,
2147 * pre-merged form with LinkCmd and LinkInitCmd
2148 * together, and assuming the zero was NOP.
2149 */
2150static void qib_set_ib_7322_lstate(struct qib_pportdata *ppd, u16 linkcmd,
2151 u16 linitcmd)
2152{
2153 u64 mod_wd;
2154 struct qib_devdata *dd = ppd->dd;
2155 unsigned long flags;
2156
2157 if (linitcmd == QLOGIC_IB_IBCC_LINKINITCMD_DISABLE) {
2158 /*
2159 * If we are told to disable, note that so link-recovery
2160 * code does not attempt to bring us back up.
2161 * Also reset everything that we can, so we start
2162 * completely clean when re-enabled (before we
2163 * actually issue the disable to the IBC)
2164 */
2165 qib_7322_mini_pcs_reset(ppd);
2166 spin_lock_irqsave(&ppd->lflags_lock, flags);
2167 ppd->lflags |= QIBL_IB_LINK_DISABLED;
2168 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
2169 } else if (linitcmd || linkcmd == QLOGIC_IB_IBCC_LINKCMD_DOWN) {
2170 /*
2171 * Any other linkinitcmd will lead to LINKDOWN and then
2172 * to INIT (if all is well), so clear flag to let
2173 * link-recovery code attempt to bring us back up.
2174 */
2175 spin_lock_irqsave(&ppd->lflags_lock, flags);
2176 ppd->lflags &= ~QIBL_IB_LINK_DISABLED;
2177 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
2178 /*
2179 * Clear status change interrupt reduction so the
2180 * new state is seen.
2181 */
2182 ppd->cpspec->ibcctrl_a &=
2183 ~SYM_MASK(IBCCtrlA_0, IBStatIntReductionEn);
2184 }
2185
2186 mod_wd = (linkcmd << IBA7322_IBCC_LINKCMD_SHIFT) |
2187 (linitcmd << QLOGIC_IB_IBCC_LINKINITCMD_SHIFT);
2188
2189 qib_write_kreg_port(ppd, krp_ibcctrl_a, ppd->cpspec->ibcctrl_a |
2190 mod_wd);
2191 /* write to chip to prevent back-to-back writes of ibc reg */
2192 qib_write_kreg(dd, kr_scratch, 0);
2193
2194}
2195
2196/*
2197 * The total RCV buffer memory is 64KB, used for both ports, and is
2198 * in units of 64 bytes (same as IB flow control credit unit).
2199 * The consumedVL unit in the same registers are in 32 byte units!
2200 * So, a VL15 packet needs 4.50 IB credits, and 9 rx buffer chunks,
2201 * and we can therefore allocate just 9 IB credits for 2 VL15 packets
2202 * in krp_rxcreditvl15, rather than 10.
2203 */
2204#define RCV_BUF_UNITSZ 64
2205#define NUM_RCV_BUF_UNITS(dd) ((64 * 1024) / (RCV_BUF_UNITSZ * dd->num_pports))
2206
2207static void set_vls(struct qib_pportdata *ppd)
2208{
2209 int i, numvls, totcred, cred_vl, vl0extra;
2210 struct qib_devdata *dd = ppd->dd;
2211 u64 val;
2212
2213 numvls = qib_num_vls(ppd->vls_operational);
2214
2215 /*
2216 * Set up per-VL credits. Below is kluge based on these assumptions:
2217 * 1) port is disabled at the time early_init is called.
2218 * 2) give VL15 17 credits, for two max-plausible packets.
2219 * 3) Give VL0-N the rest, with any rounding excess used for VL0
2220 */
2221 /* 2 VL15 packets @ 288 bytes each (including IB headers) */
2222 totcred = NUM_RCV_BUF_UNITS(dd);
2223 cred_vl = (2 * 288 + RCV_BUF_UNITSZ - 1) / RCV_BUF_UNITSZ;
2224 totcred -= cred_vl;
2225 qib_write_kreg_port(ppd, krp_rxcreditvl15, (u64) cred_vl);
2226 cred_vl = totcred / numvls;
2227 vl0extra = totcred - cred_vl * numvls;
2228 qib_write_kreg_port(ppd, krp_rxcreditvl0, cred_vl + vl0extra);
2229 for (i = 1; i < numvls; i++)
2230 qib_write_kreg_port(ppd, krp_rxcreditvl0 + i, cred_vl);
2231 for (; i < 8; i++) /* no buffer space for other VLs */
2232 qib_write_kreg_port(ppd, krp_rxcreditvl0 + i, 0);
2233
2234 /* Notify IBC that credits need to be recalculated */
2235 val = qib_read_kreg_port(ppd, krp_ibsdtestiftx);
2236 val |= SYM_MASK(IB_SDTEST_IF_TX_0, CREDIT_CHANGE);
2237 qib_write_kreg_port(ppd, krp_ibsdtestiftx, val);
2238 qib_write_kreg(dd, kr_scratch, 0ULL);
2239 val &= ~SYM_MASK(IB_SDTEST_IF_TX_0, CREDIT_CHANGE);
2240 qib_write_kreg_port(ppd, krp_ibsdtestiftx, val);
2241
2242 for (i = 0; i < numvls; i++)
2243 val = qib_read_kreg_port(ppd, krp_rxcreditvl0 + i);
2244 val = qib_read_kreg_port(ppd, krp_rxcreditvl15);
2245
2246 /* Change the number of operational VLs */
2247 ppd->cpspec->ibcctrl_a = (ppd->cpspec->ibcctrl_a &
2248 ~SYM_MASK(IBCCtrlA_0, NumVLane)) |
2249 ((u64)(numvls - 1) << SYM_LSB(IBCCtrlA_0, NumVLane));
2250 qib_write_kreg_port(ppd, krp_ibcctrl_a, ppd->cpspec->ibcctrl_a);
2251 qib_write_kreg(dd, kr_scratch, 0ULL);
2252}
2253
2254/*
2255 * The code that deals with actual SerDes is in serdes_7322_init().
2256 * Compared to the code for iba7220, it is minimal.
2257 */
2258static int serdes_7322_init(struct qib_pportdata *ppd);
2259
2260/**
2261 * qib_7322_bringup_serdes - bring up the serdes
2262 * @ppd: physical port on the qlogic_ib device
2263 */
2264static int qib_7322_bringup_serdes(struct qib_pportdata *ppd)
2265{
2266 struct qib_devdata *dd = ppd->dd;
2267 u64 val, guid, ibc;
2268 unsigned long flags;
2269 int ret = 0;
2270
2271 /*
2272 * SerDes model not in Pd, but still need to
2273 * set up much of IBCCtrl and IBCDDRCtrl; move elsewhere
2274 * eventually.
2275 */
2276 /* Put IBC in reset, sends disabled (should be in reset already) */
2277 ppd->cpspec->ibcctrl_a &= ~SYM_MASK(IBCCtrlA_0, IBLinkEn);
2278 qib_write_kreg_port(ppd, krp_ibcctrl_a, ppd->cpspec->ibcctrl_a);
2279 qib_write_kreg(dd, kr_scratch, 0ULL);
2280
2281 if (qib_compat_ddr_negotiate) {
2282 ppd->cpspec->ibdeltainprog = 1;
2283 ppd->cpspec->ibsymsnap = read_7322_creg32_port(ppd,
2284 crp_ibsymbolerr);
2285 ppd->cpspec->iblnkerrsnap = read_7322_creg32_port(ppd,
2286 crp_iblinkerrrecov);
2287 }
2288
2289 /* flowcontrolwatermark is in units of KBytes */
2290 ibc = 0x5ULL << SYM_LSB(IBCCtrlA_0, FlowCtrlWaterMark);
2291 /*
2292 * Flow control is sent this often, even if no changes in
2293 * buffer space occur. Units are 128ns for this chip.
2294 * Set to 3usec.
2295 */
2296 ibc |= 24ULL << SYM_LSB(IBCCtrlA_0, FlowCtrlPeriod);
2297 /* max error tolerance */
2298 ibc |= 0xfULL << SYM_LSB(IBCCtrlA_0, PhyerrThreshold);
2299 /* IB credit flow control. */
2300 ibc |= 0xfULL << SYM_LSB(IBCCtrlA_0, OverrunThreshold);
2301 /*
2302 * set initial max size pkt IBC will send, including ICRC; it's the
2303 * PIO buffer size in dwords, less 1; also see qib_set_mtu()
2304 */
2305 ibc |= ((u64)(ppd->ibmaxlen >> 2) + 1) <<
2306 SYM_LSB(IBCCtrlA_0, MaxPktLen);
2307 ppd->cpspec->ibcctrl_a = ibc; /* without linkcmd or linkinitcmd! */
2308
2309 /* initially come up waiting for TS1, without sending anything. */
2310 val = ppd->cpspec->ibcctrl_a | (QLOGIC_IB_IBCC_LINKINITCMD_DISABLE <<
2311 QLOGIC_IB_IBCC_LINKINITCMD_SHIFT);
2312
2313 /*
2314 * Reset the PCS interface to the serdes (and also ibc, which is still
2315 * in reset from above). Writes new value of ibcctrl_a as last step.
2316 */
2317 qib_7322_mini_pcs_reset(ppd);
2318 qib_write_kreg(dd, kr_scratch, 0ULL);
2319
2320 if (!ppd->cpspec->ibcctrl_b) {
2321 unsigned lse = ppd->link_speed_enabled;
2322
2323 /*
2324 * Not on re-init after reset, establish shadow
2325 * and force initial config.
2326 */
2327 ppd->cpspec->ibcctrl_b = qib_read_kreg_port(ppd,
2328 krp_ibcctrl_b);
2329 ppd->cpspec->ibcctrl_b &= ~(IBA7322_IBC_SPEED_QDR |
2330 IBA7322_IBC_SPEED_DDR |
2331 IBA7322_IBC_SPEED_SDR |
2332 IBA7322_IBC_WIDTH_AUTONEG |
2333 SYM_MASK(IBCCtrlB_0, IB_LANE_REV_SUPPORTED));
2334 if (lse & (lse - 1)) /* Muliple speeds enabled */
2335 ppd->cpspec->ibcctrl_b |=
2336 (lse << IBA7322_IBC_SPEED_LSB) |
2337 IBA7322_IBC_IBTA_1_2_MASK |
2338 IBA7322_IBC_MAX_SPEED_MASK;
2339 else
2340 ppd->cpspec->ibcctrl_b |= (lse == QIB_IB_QDR) ?
2341 IBA7322_IBC_SPEED_QDR |
2342 IBA7322_IBC_IBTA_1_2_MASK :
2343 (lse == QIB_IB_DDR) ?
2344 IBA7322_IBC_SPEED_DDR :
2345 IBA7322_IBC_SPEED_SDR;
2346 if ((ppd->link_width_enabled & (IB_WIDTH_1X | IB_WIDTH_4X)) ==
2347 (IB_WIDTH_1X | IB_WIDTH_4X))
2348 ppd->cpspec->ibcctrl_b |= IBA7322_IBC_WIDTH_AUTONEG;
2349 else
2350 ppd->cpspec->ibcctrl_b |=
2351 ppd->link_width_enabled == IB_WIDTH_4X ?
2352 IBA7322_IBC_WIDTH_4X_ONLY :
2353 IBA7322_IBC_WIDTH_1X_ONLY;
2354
2355 /* always enable these on driver reload, not sticky */
2356 ppd->cpspec->ibcctrl_b |= (IBA7322_IBC_RXPOL_MASK |
2357 IBA7322_IBC_HRTBT_MASK);
2358 }
2359 qib_write_kreg_port(ppd, krp_ibcctrl_b, ppd->cpspec->ibcctrl_b);
2360
2361 /* setup so we have more time at CFGTEST to change H1 */
2362 val = qib_read_kreg_port(ppd, krp_ibcctrl_c);
2363 val &= ~SYM_MASK(IBCCtrlC_0, IB_FRONT_PORCH);
2364 val |= 0xfULL << SYM_LSB(IBCCtrlC_0, IB_FRONT_PORCH);
2365 qib_write_kreg_port(ppd, krp_ibcctrl_c, val);
2366
2367 serdes_7322_init(ppd);
2368
2369 guid = be64_to_cpu(ppd->guid);
2370 if (!guid) {
2371 if (dd->base_guid)
2372 guid = be64_to_cpu(dd->base_guid) + ppd->port - 1;
2373 ppd->guid = cpu_to_be64(guid);
2374 }
2375
2376 qib_write_kreg_port(ppd, krp_hrtbt_guid, guid);
2377 /* write to chip to prevent back-to-back writes of ibc reg */
2378 qib_write_kreg(dd, kr_scratch, 0);
2379
2380 /* Enable port */
2381 ppd->cpspec->ibcctrl_a |= SYM_MASK(IBCCtrlA_0, IBLinkEn);
2382 set_vls(ppd);
2383
dde05cbd
MH
2384 /* Hold the link state machine for mezz boards */
2385 qib_set_ib_7322_lstate(ppd, 0,
2386 QLOGIC_IB_IBCC_LINKINITCMD_DISABLE);
2387
2388
f931551b
RC
2389 /* be paranoid against later code motion, etc. */
2390 spin_lock_irqsave(&dd->cspec->rcvmod_lock, flags);
2391 ppd->p_rcvctrl |= SYM_MASK(RcvCtrl_0, RcvIBPortEnable);
2392 qib_write_kreg_port(ppd, krp_rcvctrl, ppd->p_rcvctrl);
2393 spin_unlock_irqrestore(&dd->cspec->rcvmod_lock, flags);
2394
2395 /* Also enable IBSTATUSCHG interrupt. */
2396 val = qib_read_kreg_port(ppd, krp_errmask);
2397 qib_write_kreg_port(ppd, krp_errmask,
2398 val | ERR_MASK_N(IBStatusChanged));
2399
2400 /* Always zero until we start messing with SerDes for real */
2401 return ret;
2402}
2403
2404/**
2405 * qib_7322_quiet_serdes - set serdes to txidle
2406 * @dd: the qlogic_ib device
2407 * Called when driver is being unloaded
2408 */
2409static void qib_7322_mini_quiet_serdes(struct qib_pportdata *ppd)
2410{
2411 u64 val;
2412 unsigned long flags;
2413
2414 qib_set_ib_7322_lstate(ppd, 0, QLOGIC_IB_IBCC_LINKINITCMD_DISABLE);
2415
2416 spin_lock_irqsave(&ppd->lflags_lock, flags);
2417 ppd->lflags &= ~QIBL_IB_AUTONEG_INPROG;
2418 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
2419 wake_up(&ppd->cpspec->autoneg_wait);
f0626710 2420 cancel_delayed_work_sync(&ppd->cpspec->autoneg_work);
f931551b 2421 if (ppd->dd->cspec->r1)
f0626710 2422 cancel_delayed_work_sync(&ppd->cpspec->ipg_work);
f931551b
RC
2423
2424 ppd->cpspec->chase_end = 0;
2425 if (ppd->cpspec->chase_timer.data) /* if initted */
2426 del_timer_sync(&ppd->cpspec->chase_timer);
2427
2428 /*
2429 * Despite the name, actually disables IBC as well. Do it when
2430 * we are as sure as possible that no more packets can be
2431 * received, following the down and the PCS reset.
2432 * The actual disabling happens in qib_7322_mini_pci_reset(),
2433 * along with the PCS being reset.
2434 */
2435 ppd->cpspec->ibcctrl_a &= ~SYM_MASK(IBCCtrlA_0, IBLinkEn);
2436 qib_7322_mini_pcs_reset(ppd);
2437
2438 /*
2439 * Update the adjusted counters so the adjustment persists
2440 * across driver reload.
2441 */
2442 if (ppd->cpspec->ibsymdelta || ppd->cpspec->iblnkerrdelta ||
2443 ppd->cpspec->ibdeltainprog || ppd->cpspec->iblnkdowndelta) {
2444 struct qib_devdata *dd = ppd->dd;
2445 u64 diagc;
2446
2447 /* enable counter writes */
2448 diagc = qib_read_kreg64(dd, kr_hwdiagctrl);
2449 qib_write_kreg(dd, kr_hwdiagctrl,
2450 diagc | SYM_MASK(HwDiagCtrl, CounterWrEnable));
2451
2452 if (ppd->cpspec->ibsymdelta || ppd->cpspec->ibdeltainprog) {
2453 val = read_7322_creg32_port(ppd, crp_ibsymbolerr);
2454 if (ppd->cpspec->ibdeltainprog)
2455 val -= val - ppd->cpspec->ibsymsnap;
2456 val -= ppd->cpspec->ibsymdelta;
2457 write_7322_creg_port(ppd, crp_ibsymbolerr, val);
2458 }
2459 if (ppd->cpspec->iblnkerrdelta || ppd->cpspec->ibdeltainprog) {
2460 val = read_7322_creg32_port(ppd, crp_iblinkerrrecov);
2461 if (ppd->cpspec->ibdeltainprog)
2462 val -= val - ppd->cpspec->iblnkerrsnap;
2463 val -= ppd->cpspec->iblnkerrdelta;
2464 write_7322_creg_port(ppd, crp_iblinkerrrecov, val);
2465 }
2466 if (ppd->cpspec->iblnkdowndelta) {
2467 val = read_7322_creg32_port(ppd, crp_iblinkdown);
2468 val += ppd->cpspec->iblnkdowndelta;
2469 write_7322_creg_port(ppd, crp_iblinkdown, val);
2470 }
2471 /*
2472 * No need to save ibmalfdelta since IB perfcounters
2473 * are cleared on driver reload.
2474 */
2475
2476 /* and disable counter writes */
2477 qib_write_kreg(dd, kr_hwdiagctrl, diagc);
2478 }
2479}
2480
2481/**
2482 * qib_setup_7322_setextled - set the state of the two external LEDs
2483 * @ppd: physical port on the qlogic_ib device
2484 * @on: whether the link is up or not
2485 *
2486 * The exact combo of LEDs if on is true is determined by looking
2487 * at the ibcstatus.
2488 *
2489 * These LEDs indicate the physical and logical state of IB link.
2490 * For this chip (at least with recommended board pinouts), LED1
2491 * is Yellow (logical state) and LED2 is Green (physical state),
2492 *
2493 * Note: We try to match the Mellanox HCA LED behavior as best
2494 * we can. Green indicates physical link state is OK (something is
2495 * plugged in, and we can train).
2496 * Amber indicates the link is logically up (ACTIVE).
2497 * Mellanox further blinks the amber LED to indicate data packet
2498 * activity, but we have no hardware support for that, so it would
2499 * require waking up every 10-20 msecs and checking the counters
2500 * on the chip, and then turning the LED off if appropriate. That's
2501 * visible overhead, so not something we will do.
2502 */
2503static void qib_setup_7322_setextled(struct qib_pportdata *ppd, u32 on)
2504{
2505 struct qib_devdata *dd = ppd->dd;
2506 u64 extctl, ledblink = 0, val;
2507 unsigned long flags;
2508 int yel, grn;
2509
2510 /*
2511 * The diags use the LED to indicate diag info, so we leave
2512 * the external LED alone when the diags are running.
2513 */
2514 if (dd->diag_client)
2515 return;
2516
2517 /* Allow override of LED display for, e.g. Locating system in rack */
2518 if (ppd->led_override) {
2519 grn = (ppd->led_override & QIB_LED_PHYS);
2520 yel = (ppd->led_override & QIB_LED_LOG);
2521 } else if (on) {
2522 val = qib_read_kreg_port(ppd, krp_ibcstatus_a);
2523 grn = qib_7322_phys_portstate(val) ==
2524 IB_PHYSPORTSTATE_LINKUP;
2525 yel = qib_7322_iblink_state(val) == IB_PORT_ACTIVE;
2526 } else {
2527 grn = 0;
2528 yel = 0;
2529 }
2530
2531 spin_lock_irqsave(&dd->cspec->gpio_lock, flags);
2532 extctl = dd->cspec->extctrl & (ppd->port == 1 ?
2533 ~ExtLED_IB1_MASK : ~ExtLED_IB2_MASK);
2534 if (grn) {
2535 extctl |= ppd->port == 1 ? ExtLED_IB1_GRN : ExtLED_IB2_GRN;
2536 /*
2537 * Counts are in chip clock (4ns) periods.
2538 * This is 1/16 sec (66.6ms) on,
2539 * 3/16 sec (187.5 ms) off, with packets rcvd.
2540 */
2541 ledblink = ((66600 * 1000UL / 4) << IBA7322_LEDBLINK_ON_SHIFT) |
2542 ((187500 * 1000UL / 4) << IBA7322_LEDBLINK_OFF_SHIFT);
2543 }
2544 if (yel)
2545 extctl |= ppd->port == 1 ? ExtLED_IB1_YEL : ExtLED_IB2_YEL;
2546 dd->cspec->extctrl = extctl;
2547 qib_write_kreg(dd, kr_extctrl, dd->cspec->extctrl);
2548 spin_unlock_irqrestore(&dd->cspec->gpio_lock, flags);
2549
2550 if (ledblink) /* blink the LED on packet receive */
2551 qib_write_kreg_port(ppd, krp_rcvpktledcnt, ledblink);
2552}
2553
f931551b
RC
2554/*
2555 * Disable MSIx interrupt if enabled, call generic MSIx code
2556 * to cleanup, and clear pending MSIx interrupts.
2557 * Used for fallback to INTx, after reset, and when MSIx setup fails.
2558 */
2559static void qib_7322_nomsix(struct qib_devdata *dd)
2560{
2561 u64 intgranted;
2562 int n;
2563
2564 dd->cspec->main_int_mask = ~0ULL;
2565 n = dd->cspec->num_msix_entries;
2566 if (n) {
2567 int i;
2568
2569 dd->cspec->num_msix_entries = 0;
2570 for (i = 0; i < n; i++)
2571 free_irq(dd->cspec->msix_entries[i].vector,
2572 dd->cspec->msix_arg[i]);
2573 qib_nomsix(dd);
2574 }
2575 /* make sure no MSIx interrupts are left pending */
2576 intgranted = qib_read_kreg64(dd, kr_intgranted);
2577 if (intgranted)
2578 qib_write_kreg(dd, kr_intgranted, intgranted);
2579}
2580
2581static void qib_7322_free_irq(struct qib_devdata *dd)
2582{
2583 if (dd->cspec->irq) {
2584 free_irq(dd->cspec->irq, dd);
2585 dd->cspec->irq = 0;
2586 }
2587 qib_7322_nomsix(dd);
2588}
2589
2590static void qib_setup_7322_cleanup(struct qib_devdata *dd)
2591{
2592 int i;
2593
f931551b
RC
2594 qib_7322_free_irq(dd);
2595 kfree(dd->cspec->cntrs);
2596 kfree(dd->cspec->sendchkenable);
2597 kfree(dd->cspec->sendgrhchk);
2598 kfree(dd->cspec->sendibchk);
2599 kfree(dd->cspec->msix_entries);
2600 kfree(dd->cspec->msix_arg);
2601 for (i = 0; i < dd->num_pports; i++) {
2602 unsigned long flags;
2603 u32 mask = QSFP_GPIO_MOD_PRS_N |
2604 (QSFP_GPIO_MOD_PRS_N << QSFP_GPIO_PORT2_SHIFT);
2605
2606 kfree(dd->pport[i].cpspec->portcntrs);
2607 if (dd->flags & QIB_HAS_QSFP) {
2608 spin_lock_irqsave(&dd->cspec->gpio_lock, flags);
2609 dd->cspec->gpio_mask &= ~mask;
2610 qib_write_kreg(dd, kr_gpio_mask, dd->cspec->gpio_mask);
2611 spin_unlock_irqrestore(&dd->cspec->gpio_lock, flags);
2612 qib_qsfp_deinit(&dd->pport[i].cpspec->qsfp_data);
2613 }
2614 if (dd->pport[i].ibport_data.smi_ah)
2615 ib_destroy_ah(&dd->pport[i].ibport_data.smi_ah->ibah);
2616 }
2617}
2618
2619/* handle SDMA interrupts */
2620static void sdma_7322_intr(struct qib_devdata *dd, u64 istat)
2621{
2622 struct qib_pportdata *ppd0 = &dd->pport[0];
2623 struct qib_pportdata *ppd1 = &dd->pport[1];
2624 u64 intr0 = istat & (INT_MASK_P(SDma, 0) |
2625 INT_MASK_P(SDmaIdle, 0) | INT_MASK_P(SDmaProgress, 0));
2626 u64 intr1 = istat & (INT_MASK_P(SDma, 1) |
2627 INT_MASK_P(SDmaIdle, 1) | INT_MASK_P(SDmaProgress, 1));
2628
2629 if (intr0)
2630 qib_sdma_intr(ppd0);
2631 if (intr1)
2632 qib_sdma_intr(ppd1);
2633
2634 if (istat & INT_MASK_PM(SDmaCleanupDone, 0))
2635 qib_sdma_process_event(ppd0, qib_sdma_event_e20_hw_started);
2636 if (istat & INT_MASK_PM(SDmaCleanupDone, 1))
2637 qib_sdma_process_event(ppd1, qib_sdma_event_e20_hw_started);
2638}
2639
2640/*
2641 * Set or clear the Send buffer available interrupt enable bit.
2642 */
2643static void qib_wantpiobuf_7322_intr(struct qib_devdata *dd, u32 needint)
2644{
2645 unsigned long flags;
2646
2647 spin_lock_irqsave(&dd->sendctrl_lock, flags);
2648 if (needint)
2649 dd->sendctrl |= SYM_MASK(SendCtrl, SendIntBufAvail);
2650 else
2651 dd->sendctrl &= ~SYM_MASK(SendCtrl, SendIntBufAvail);
2652 qib_write_kreg(dd, kr_sendctrl, dd->sendctrl);
2653 qib_write_kreg(dd, kr_scratch, 0ULL);
2654 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
2655}
2656
2657/*
2658 * Somehow got an interrupt with reserved bits set in interrupt status.
2659 * Print a message so we know it happened, then clear them.
2660 * keep mainline interrupt handler cache-friendly
2661 */
2662static noinline void unknown_7322_ibits(struct qib_devdata *dd, u64 istat)
2663{
2664 u64 kills;
2665 char msg[128];
2666
2667 kills = istat & ~QIB_I_BITSEXTANT;
2668 qib_dev_err(dd, "Clearing reserved interrupt(s) 0x%016llx:"
2669 " %s\n", (unsigned long long) kills, msg);
2670 qib_write_kreg(dd, kr_intmask, (dd->cspec->int_enable_mask & ~kills));
2671}
2672
2673/* keep mainline interrupt handler cache-friendly */
2674static noinline void unknown_7322_gpio_intr(struct qib_devdata *dd)
2675{
2676 u32 gpiostatus;
2677 int handled = 0;
2678 int pidx;
2679
2680 /*
2681 * Boards for this chip currently don't use GPIO interrupts,
2682 * so clear by writing GPIOstatus to GPIOclear, and complain
2683 * to developer. To avoid endless repeats, clear
2684 * the bits in the mask, since there is some kind of
2685 * programming error or chip problem.
2686 */
2687 gpiostatus = qib_read_kreg32(dd, kr_gpio_status);
2688 /*
2689 * In theory, writing GPIOstatus to GPIOclear could
2690 * have a bad side-effect on some diagnostic that wanted
2691 * to poll for a status-change, but the various shadows
2692 * make that problematic at best. Diags will just suppress
2693 * all GPIO interrupts during such tests.
2694 */
2695 qib_write_kreg(dd, kr_gpio_clear, gpiostatus);
2696 /*
2697 * Check for QSFP MOD_PRS changes
2698 * only works for single port if IB1 != pidx1
2699 */
2700 for (pidx = 0; pidx < dd->num_pports && (dd->flags & QIB_HAS_QSFP);
2701 ++pidx) {
2702 struct qib_pportdata *ppd;
2703 struct qib_qsfp_data *qd;
2704 u32 mask;
2705 if (!dd->pport[pidx].link_speed_supported)
2706 continue;
2707 mask = QSFP_GPIO_MOD_PRS_N;
2708 ppd = dd->pport + pidx;
2709 mask <<= (QSFP_GPIO_PORT2_SHIFT * ppd->hw_pidx);
2710 if (gpiostatus & dd->cspec->gpio_mask & mask) {
2711 u64 pins;
2712 qd = &ppd->cpspec->qsfp_data;
2713 gpiostatus &= ~mask;
2714 pins = qib_read_kreg64(dd, kr_extstatus);
2715 pins >>= SYM_LSB(EXTStatus, GPIOIn);
2716 if (!(pins & mask)) {
2717 ++handled;
2718 qd->t_insert = get_jiffies_64();
f0626710 2719 queue_work(ib_wq, &qd->work);
f931551b
RC
2720 }
2721 }
2722 }
2723
2724 if (gpiostatus && !handled) {
2725 const u32 mask = qib_read_kreg32(dd, kr_gpio_mask);
2726 u32 gpio_irq = mask & gpiostatus;
2727
2728 /*
2729 * Clear any troublemakers, and update chip from shadow
2730 */
2731 dd->cspec->gpio_mask &= ~gpio_irq;
2732 qib_write_kreg(dd, kr_gpio_mask, dd->cspec->gpio_mask);
2733 }
2734}
2735
2736/*
2737 * Handle errors and unusual events first, separate function
2738 * to improve cache hits for fast path interrupt handling.
2739 */
2740static noinline void unlikely_7322_intr(struct qib_devdata *dd, u64 istat)
2741{
2742 if (istat & ~QIB_I_BITSEXTANT)
2743 unknown_7322_ibits(dd, istat);
2744 if (istat & QIB_I_GPIO)
2745 unknown_7322_gpio_intr(dd);
e67306a3
MM
2746 if (istat & QIB_I_C_ERROR) {
2747 qib_write_kreg(dd, kr_errmask, 0ULL);
2748 tasklet_schedule(&dd->error_tasklet);
2749 }
f931551b
RC
2750 if (istat & INT_MASK_P(Err, 0) && dd->rcd[0])
2751 handle_7322_p_errors(dd->rcd[0]->ppd);
2752 if (istat & INT_MASK_P(Err, 1) && dd->rcd[1])
2753 handle_7322_p_errors(dd->rcd[1]->ppd);
2754}
2755
2756/*
2757 * Dynamically adjust the rcv int timeout for a context based on incoming
2758 * packet rate.
2759 */
2760static void adjust_rcv_timeout(struct qib_ctxtdata *rcd, int npkts)
2761{
2762 struct qib_devdata *dd = rcd->dd;
2763 u32 timeout = dd->cspec->rcvavail_timeout[rcd->ctxt];
2764
2765 /*
2766 * Dynamically adjust idle timeout on chip
2767 * based on number of packets processed.
2768 */
2769 if (npkts < rcv_int_count && timeout > 2)
2770 timeout >>= 1;
2771 else if (npkts >= rcv_int_count && timeout < rcv_int_timeout)
2772 timeout = min(timeout << 1, rcv_int_timeout);
2773 else
2774 return;
2775
2776 dd->cspec->rcvavail_timeout[rcd->ctxt] = timeout;
2777 qib_write_kreg(dd, kr_rcvavailtimeout + rcd->ctxt, timeout);
2778}
2779
2780/*
2781 * This is the main interrupt handler.
2782 * It will normally only be used for low frequency interrupts but may
2783 * have to handle all interrupts if INTx is enabled or fewer than normal
2784 * MSIx interrupts were allocated.
2785 * This routine should ignore the interrupt bits for any of the
2786 * dedicated MSIx handlers.
2787 */
2788static irqreturn_t qib_7322intr(int irq, void *data)
2789{
2790 struct qib_devdata *dd = data;
2791 irqreturn_t ret;
2792 u64 istat;
2793 u64 ctxtrbits;
2794 u64 rmask;
2795 unsigned i;
2796 u32 npkts;
2797
2798 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT) {
2799 /*
2800 * This return value is not great, but we do not want the
2801 * interrupt core code to remove our interrupt handler
2802 * because we don't appear to be handling an interrupt
2803 * during a chip reset.
2804 */
2805 ret = IRQ_HANDLED;
2806 goto bail;
2807 }
2808
2809 istat = qib_read_kreg64(dd, kr_intstatus);
2810
2811 if (unlikely(istat == ~0ULL)) {
2812 qib_bad_intrstatus(dd);
2813 qib_dev_err(dd, "Interrupt status all f's, skipping\n");
2814 /* don't know if it was our interrupt or not */
2815 ret = IRQ_NONE;
2816 goto bail;
2817 }
2818
2819 istat &= dd->cspec->main_int_mask;
2820 if (unlikely(!istat)) {
2821 /* already handled, or shared and not us */
2822 ret = IRQ_NONE;
2823 goto bail;
2824 }
2825
2826 qib_stats.sps_ints++;
2827 if (dd->int_counter != (u32) -1)
2828 dd->int_counter++;
2829
2830 /* handle "errors" of various kinds first, device ahead of port */
2831 if (unlikely(istat & (~QIB_I_BITSEXTANT | QIB_I_GPIO |
2832 QIB_I_C_ERROR | INT_MASK_P(Err, 0) |
2833 INT_MASK_P(Err, 1))))
2834 unlikely_7322_intr(dd, istat);
2835
2836 /*
2837 * Clear the interrupt bits we found set, relatively early, so we
2838 * "know" know the chip will have seen this by the time we process
2839 * the queue, and will re-interrupt if necessary. The processor
2840 * itself won't take the interrupt again until we return.
2841 */
2842 qib_write_kreg(dd, kr_intclear, istat);
2843
2844 /*
2845 * Handle kernel receive queues before checking for pio buffers
2846 * available since receives can overflow; piobuf waiters can afford
2847 * a few extra cycles, since they were waiting anyway.
2848 */
2849 ctxtrbits = istat & (QIB_I_RCVAVAIL_MASK | QIB_I_RCVURG_MASK);
2850 if (ctxtrbits) {
2851 rmask = (1ULL << QIB_I_RCVAVAIL_LSB) |
2852 (1ULL << QIB_I_RCVURG_LSB);
2853 for (i = 0; i < dd->first_user_ctxt; i++) {
2854 if (ctxtrbits & rmask) {
2855 ctxtrbits &= ~rmask;
44d75d3d 2856 if (dd->rcd[i])
f931551b 2857 qib_kreceive(dd->rcd[i], NULL, &npkts);
f931551b
RC
2858 }
2859 rmask <<= 1;
2860 }
2861 if (ctxtrbits) {
2862 ctxtrbits = (ctxtrbits >> QIB_I_RCVAVAIL_LSB) |
2863 (ctxtrbits >> QIB_I_RCVURG_LSB);
2864 qib_handle_urcv(dd, ctxtrbits);
2865 }
2866 }
2867
2868 if (istat & (QIB_I_P_SDMAINT(0) | QIB_I_P_SDMAINT(1)))
2869 sdma_7322_intr(dd, istat);
2870
2871 if ((istat & QIB_I_SPIOBUFAVAIL) && (dd->flags & QIB_INITTED))
2872 qib_ib_piobufavail(dd);
2873
2874 ret = IRQ_HANDLED;
2875bail:
2876 return ret;
2877}
2878
2879/*
2880 * Dedicated receive packet available interrupt handler.
2881 */
2882static irqreturn_t qib_7322pintr(int irq, void *data)
2883{
2884 struct qib_ctxtdata *rcd = data;
2885 struct qib_devdata *dd = rcd->dd;
2886 u32 npkts;
2887
2888 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT)
2889 /*
2890 * This return value is not great, but we do not want the
2891 * interrupt core code to remove our interrupt handler
2892 * because we don't appear to be handling an interrupt
2893 * during a chip reset.
2894 */
2895 return IRQ_HANDLED;
2896
2897 qib_stats.sps_ints++;
2898 if (dd->int_counter != (u32) -1)
2899 dd->int_counter++;
2900
f931551b
RC
2901 /* Clear the interrupt bit we expect to be set. */
2902 qib_write_kreg(dd, kr_intclear, ((1ULL << QIB_I_RCVAVAIL_LSB) |
2903 (1ULL << QIB_I_RCVURG_LSB)) << rcd->ctxt);
2904
2905 qib_kreceive(rcd, NULL, &npkts);
f931551b
RC
2906
2907 return IRQ_HANDLED;
2908}
2909
2910/*
2911 * Dedicated Send buffer available interrupt handler.
2912 */
2913static irqreturn_t qib_7322bufavail(int irq, void *data)
2914{
2915 struct qib_devdata *dd = data;
2916
2917 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT)
2918 /*
2919 * This return value is not great, but we do not want the
2920 * interrupt core code to remove our interrupt handler
2921 * because we don't appear to be handling an interrupt
2922 * during a chip reset.
2923 */
2924 return IRQ_HANDLED;
2925
2926 qib_stats.sps_ints++;
2927 if (dd->int_counter != (u32) -1)
2928 dd->int_counter++;
2929
2930 /* Clear the interrupt bit we expect to be set. */
2931 qib_write_kreg(dd, kr_intclear, QIB_I_SPIOBUFAVAIL);
2932
2933 /* qib_ib_piobufavail() will clear the want PIO interrupt if needed */
2934 if (dd->flags & QIB_INITTED)
2935 qib_ib_piobufavail(dd);
2936 else
2937 qib_wantpiobuf_7322_intr(dd, 0);
2938
2939 return IRQ_HANDLED;
2940}
2941
2942/*
2943 * Dedicated Send DMA interrupt handler.
2944 */
2945static irqreturn_t sdma_intr(int irq, void *data)
2946{
2947 struct qib_pportdata *ppd = data;
2948 struct qib_devdata *dd = ppd->dd;
2949
2950 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT)
2951 /*
2952 * This return value is not great, but we do not want the
2953 * interrupt core code to remove our interrupt handler
2954 * because we don't appear to be handling an interrupt
2955 * during a chip reset.
2956 */
2957 return IRQ_HANDLED;
2958
2959 qib_stats.sps_ints++;
2960 if (dd->int_counter != (u32) -1)
2961 dd->int_counter++;
2962
f931551b
RC
2963 /* Clear the interrupt bit we expect to be set. */
2964 qib_write_kreg(dd, kr_intclear, ppd->hw_pidx ?
2965 INT_MASK_P(SDma, 1) : INT_MASK_P(SDma, 0));
2966 qib_sdma_intr(ppd);
2967
2968 return IRQ_HANDLED;
2969}
2970
2971/*
2972 * Dedicated Send DMA idle interrupt handler.
2973 */
2974static irqreturn_t sdma_idle_intr(int irq, void *data)
2975{
2976 struct qib_pportdata *ppd = data;
2977 struct qib_devdata *dd = ppd->dd;
2978
2979 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT)
2980 /*
2981 * This return value is not great, but we do not want the
2982 * interrupt core code to remove our interrupt handler
2983 * because we don't appear to be handling an interrupt
2984 * during a chip reset.
2985 */
2986 return IRQ_HANDLED;
2987
2988 qib_stats.sps_ints++;
2989 if (dd->int_counter != (u32) -1)
2990 dd->int_counter++;
2991
f931551b
RC
2992 /* Clear the interrupt bit we expect to be set. */
2993 qib_write_kreg(dd, kr_intclear, ppd->hw_pidx ?
2994 INT_MASK_P(SDmaIdle, 1) : INT_MASK_P(SDmaIdle, 0));
2995 qib_sdma_intr(ppd);
2996
2997 return IRQ_HANDLED;
2998}
2999
3000/*
3001 * Dedicated Send DMA progress interrupt handler.
3002 */
3003static irqreturn_t sdma_progress_intr(int irq, void *data)
3004{
3005 struct qib_pportdata *ppd = data;
3006 struct qib_devdata *dd = ppd->dd;
3007
3008 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT)
3009 /*
3010 * This return value is not great, but we do not want the
3011 * interrupt core code to remove our interrupt handler
3012 * because we don't appear to be handling an interrupt
3013 * during a chip reset.
3014 */
3015 return IRQ_HANDLED;
3016
3017 qib_stats.sps_ints++;
3018 if (dd->int_counter != (u32) -1)
3019 dd->int_counter++;
3020
f931551b
RC
3021 /* Clear the interrupt bit we expect to be set. */
3022 qib_write_kreg(dd, kr_intclear, ppd->hw_pidx ?
3023 INT_MASK_P(SDmaProgress, 1) :
3024 INT_MASK_P(SDmaProgress, 0));
3025 qib_sdma_intr(ppd);
3026
3027 return IRQ_HANDLED;
3028}
3029
3030/*
3031 * Dedicated Send DMA cleanup interrupt handler.
3032 */
3033static irqreturn_t sdma_cleanup_intr(int irq, void *data)
3034{
3035 struct qib_pportdata *ppd = data;
3036 struct qib_devdata *dd = ppd->dd;
3037
3038 if ((dd->flags & (QIB_PRESENT | QIB_BADINTR)) != QIB_PRESENT)
3039 /*
3040 * This return value is not great, but we do not want the
3041 * interrupt core code to remove our interrupt handler
3042 * because we don't appear to be handling an interrupt
3043 * during a chip reset.
3044 */
3045 return IRQ_HANDLED;
3046
3047 qib_stats.sps_ints++;
3048 if (dd->int_counter != (u32) -1)
3049 dd->int_counter++;
3050
f931551b
RC
3051 /* Clear the interrupt bit we expect to be set. */
3052 qib_write_kreg(dd, kr_intclear, ppd->hw_pidx ?
3053 INT_MASK_PM(SDmaCleanupDone, 1) :
3054 INT_MASK_PM(SDmaCleanupDone, 0));
3055 qib_sdma_process_event(ppd, qib_sdma_event_e20_hw_started);
3056
3057 return IRQ_HANDLED;
3058}
3059
3060/*
3061 * Set up our chip-specific interrupt handler.
3062 * The interrupt type has already been setup, so
3063 * we just need to do the registration and error checking.
3064 * If we are using MSIx interrupts, we may fall back to
3065 * INTx later, if the interrupt handler doesn't get called
3066 * within 1/2 second (see verify_interrupt()).
3067 */
3068static void qib_setup_7322_interrupt(struct qib_devdata *dd, int clearpend)
3069{
3070 int ret, i, msixnum;
3071 u64 redirect[6];
3072 u64 mask;
3073
3074 if (!dd->num_pports)
3075 return;
3076
3077 if (clearpend) {
3078 /*
3079 * if not switching interrupt types, be sure interrupts are
3080 * disabled, and then clear anything pending at this point,
3081 * because we are starting clean.
3082 */
3083 qib_7322_set_intr_state(dd, 0);
3084
3085 /* clear the reset error, init error/hwerror mask */
3086 qib_7322_init_hwerrors(dd);
3087
3088 /* clear any interrupt bits that might be set */
3089 qib_write_kreg(dd, kr_intclear, ~0ULL);
3090
3091 /* make sure no pending MSIx intr, and clear diag reg */
3092 qib_write_kreg(dd, kr_intgranted, ~0ULL);
3093 qib_write_kreg(dd, kr_vecclr_wo_int, ~0ULL);
3094 }
3095
3096 if (!dd->cspec->num_msix_entries) {
3097 /* Try to get INTx interrupt */
3098try_intx:
3099 if (!dd->pcidev->irq) {
3100 qib_dev_err(dd, "irq is 0, BIOS error? "
3101 "Interrupts won't work\n");
3102 goto bail;
3103 }
3104 ret = request_irq(dd->pcidev->irq, qib_7322intr,
3105 IRQF_SHARED, QIB_DRV_NAME, dd);
3106 if (ret) {
3107 qib_dev_err(dd, "Couldn't setup INTx "
3108 "interrupt (irq=%d): %d\n",
3109 dd->pcidev->irq, ret);
3110 goto bail;
3111 }
3112 dd->cspec->irq = dd->pcidev->irq;
3113 dd->cspec->main_int_mask = ~0ULL;
3114 goto bail;
3115 }
3116
3117 /* Try to get MSIx interrupts */
3118 memset(redirect, 0, sizeof redirect);
3119 mask = ~0ULL;
3120 msixnum = 0;
3121 for (i = 0; msixnum < dd->cspec->num_msix_entries; i++) {
3122 irq_handler_t handler;
3123 const char *name;
3124 void *arg;
3125 u64 val;
3126 int lsb, reg, sh;
3127
3128 if (i < ARRAY_SIZE(irq_table)) {
3129 if (irq_table[i].port) {
3130 /* skip if for a non-configured port */
3131 if (irq_table[i].port > dd->num_pports)
3132 continue;
3133 arg = dd->pport + irq_table[i].port - 1;
3134 } else
3135 arg = dd;
3136 lsb = irq_table[i].lsb;
3137 handler = irq_table[i].handler;
3138 name = irq_table[i].name;
3139 } else {
3140 unsigned ctxt;
3141
3142 ctxt = i - ARRAY_SIZE(irq_table);
3143 /* per krcvq context receive interrupt */
3144 arg = dd->rcd[ctxt];
3145 if (!arg)
3146 continue;
e67306a3
MM
3147 if (qib_krcvq01_no_msi && ctxt < 2)
3148 continue;
f931551b
RC
3149 lsb = QIB_I_RCVAVAIL_LSB + ctxt;
3150 handler = qib_7322pintr;
3151 name = QIB_DRV_NAME " (kctx)";
3152 }
3153 ret = request_irq(dd->cspec->msix_entries[msixnum].vector,
3154 handler, 0, name, arg);
3155 if (ret) {
3156 /*
3157 * Shouldn't happen since the enable said we could
3158 * have as many as we are trying to setup here.
3159 */
3160 qib_dev_err(dd, "Couldn't setup MSIx "
3161 "interrupt (vec=%d, irq=%d): %d\n", msixnum,
3162 dd->cspec->msix_entries[msixnum].vector,
3163 ret);
3164 qib_7322_nomsix(dd);
3165 goto try_intx;
3166 }
3167 dd->cspec->msix_arg[msixnum] = arg;
3168 if (lsb >= 0) {
3169 reg = lsb / IBA7322_REDIRECT_VEC_PER_REG;
3170 sh = (lsb % IBA7322_REDIRECT_VEC_PER_REG) *
3171 SYM_LSB(IntRedirect0, vec1);
3172 mask &= ~(1ULL << lsb);
3173 redirect[reg] |= ((u64) msixnum) << sh;
3174 }
3175 val = qib_read_kreg64(dd, 2 * msixnum + 1 +
3176 (QIB_7322_MsixTable_OFFS / sizeof(u64)));
3177 msixnum++;
3178 }
3179 /* Initialize the vector mapping */
3180 for (i = 0; i < ARRAY_SIZE(redirect); i++)
3181 qib_write_kreg(dd, kr_intredirect + i, redirect[i]);
3182 dd->cspec->main_int_mask = mask;
e67306a3
MM
3183 tasklet_init(&dd->error_tasklet, qib_error_tasklet,
3184 (unsigned long)dd);
f931551b
RC
3185bail:;
3186}
3187
3188/**
3189 * qib_7322_boardname - fill in the board name and note features
3190 * @dd: the qlogic_ib device
3191 *
3192 * info will be based on the board revision register
3193 */
3194static unsigned qib_7322_boardname(struct qib_devdata *dd)
3195{
3196 /* Will need enumeration of board-types here */
3197 char *n;
3198 u32 boardid, namelen;
3199 unsigned features = DUAL_PORT_CAP;
3200
3201 boardid = SYM_FIELD(dd->revision, Revision, BoardID);
3202
3203 switch (boardid) {
3204 case 0:
3205 n = "InfiniPath_QLE7342_Emulation";
3206 break;
3207 case 1:
3208 n = "InfiniPath_QLE7340";
3209 dd->flags |= QIB_HAS_QSFP;
3210 features = PORT_SPD_CAP;
3211 break;
3212 case 2:
3213 n = "InfiniPath_QLE7342";
3214 dd->flags |= QIB_HAS_QSFP;
3215 break;
3216 case 3:
3217 n = "InfiniPath_QMI7342";
3218 break;
3219 case 4:
3220 n = "InfiniPath_Unsupported7342";
3221 qib_dev_err(dd, "Unsupported version of QMH7342\n");
3222 features = 0;
3223 break;
3224 case BOARD_QMH7342:
3225 n = "InfiniPath_QMH7342";
3226 features = 0x24;
3227 break;
3228 case BOARD_QME7342:
3229 n = "InfiniPath_QME7342";
3230 break;
f509f9c1
MM
3231 case 8:
3232 n = "InfiniPath_QME7362";
3233 dd->flags |= QIB_HAS_QSFP;
3234 break;
f931551b
RC
3235 case 15:
3236 n = "InfiniPath_QLE7342_TEST";
3237 dd->flags |= QIB_HAS_QSFP;
3238 break;
3239 default:
3240 n = "InfiniPath_QLE73xy_UNKNOWN";
3241 qib_dev_err(dd, "Unknown 7322 board type %u\n", boardid);
3242 break;
3243 }
3244 dd->board_atten = 1; /* index into txdds_Xdr */
3245
3246 namelen = strlen(n) + 1;
3247 dd->boardname = kmalloc(namelen, GFP_KERNEL);
3248 if (!dd->boardname)
3249 qib_dev_err(dd, "Failed allocation for board name: %s\n", n);
3250 else
3251 snprintf(dd->boardname, namelen, "%s", n);
3252
3253 snprintf(dd->boardversion, sizeof(dd->boardversion),
3254 "ChipABI %u.%u, %s, InfiniPath%u %u.%u, SW Compat %u\n",
3255 QIB_CHIP_VERS_MAJ, QIB_CHIP_VERS_MIN, dd->boardname,
3256 (unsigned)SYM_FIELD(dd->revision, Revision_R, Arch),
3257 dd->majrev, dd->minrev,
3258 (unsigned)SYM_FIELD(dd->revision, Revision_R, SW));
3259
3260 if (qib_singleport && (features >> PORT_SPD_CAP_SHIFT) & PORT_SPD_CAP) {
3261 qib_devinfo(dd->pcidev, "IB%u: Forced to single port mode"
3262 " by module parameter\n", dd->unit);
3263 features &= PORT_SPD_CAP;
3264 }
3265
3266 return features;
3267}
3268
3269/*
3270 * This routine sleeps, so it can only be called from user context, not
3271 * from interrupt context.
3272 */
3273static int qib_do_7322_reset(struct qib_devdata *dd)
3274{
3275 u64 val;
3276 u64 *msix_vecsave;
3277 int i, msix_entries, ret = 1;
3278 u16 cmdval;
3279 u8 int_line, clinesz;
3280 unsigned long flags;
3281
3282 /* Use dev_err so it shows up in logs, etc. */
3283 qib_dev_err(dd, "Resetting InfiniPath unit %u\n", dd->unit);
3284
3285 qib_pcie_getcmd(dd, &cmdval, &int_line, &clinesz);
3286
3287 msix_entries = dd->cspec->num_msix_entries;
3288
3289 /* no interrupts till re-initted */
3290 qib_7322_set_intr_state(dd, 0);
3291
3292 if (msix_entries) {
3293 qib_7322_nomsix(dd);
3294 /* can be up to 512 bytes, too big for stack */
3295 msix_vecsave = kmalloc(2 * dd->cspec->num_msix_entries *
3296 sizeof(u64), GFP_KERNEL);
3297 if (!msix_vecsave)
3298 qib_dev_err(dd, "No mem to save MSIx data\n");
3299 } else
3300 msix_vecsave = NULL;
3301
3302 /*
3303 * Core PCI (as of 2.6.18) doesn't save or rewrite the full vector
3304 * info that is set up by the BIOS, so we have to save and restore
3305 * it ourselves. There is some risk something could change it,
3306 * after we save it, but since we have disabled the MSIx, it
3307 * shouldn't be touched...
3308 */
3309 for (i = 0; i < msix_entries; i++) {
3310 u64 vecaddr, vecdata;
3311 vecaddr = qib_read_kreg64(dd, 2 * i +
3312 (QIB_7322_MsixTable_OFFS / sizeof(u64)));
3313 vecdata = qib_read_kreg64(dd, 1 + 2 * i +
3314 (QIB_7322_MsixTable_OFFS / sizeof(u64)));
3315 if (msix_vecsave) {
3316 msix_vecsave[2 * i] = vecaddr;
3317 /* save it without the masked bit set */
3318 msix_vecsave[1 + 2 * i] = vecdata & ~0x100000000ULL;
3319 }
3320 }
3321
3322 dd->pport->cpspec->ibdeltainprog = 0;
3323 dd->pport->cpspec->ibsymdelta = 0;
3324 dd->pport->cpspec->iblnkerrdelta = 0;
3325 dd->pport->cpspec->ibmalfdelta = 0;
3326 dd->int_counter = 0; /* so we check interrupts work again */
3327
3328 /*
3329 * Keep chip from being accessed until we are ready. Use
3330 * writeq() directly, to allow the write even though QIB_PRESENT
e9c54999 3331 * isn't set.
f931551b
RC
3332 */
3333 dd->flags &= ~(QIB_INITTED | QIB_PRESENT | QIB_BADINTR);
3334 dd->flags |= QIB_DOING_RESET;
3335 val = dd->control | QLOGIC_IB_C_RESET;
3336 writeq(val, &dd->kregbase[kr_control]);
3337
3338 for (i = 1; i <= 5; i++) {
3339 /*
3340 * Allow MBIST, etc. to complete; longer on each retry.
3341 * We sometimes get machine checks from bus timeout if no
3342 * response, so for now, make it *really* long.
3343 */
3344 msleep(1000 + (1 + i) * 3000);
3345
3346 qib_pcie_reenable(dd, cmdval, int_line, clinesz);
3347
3348 /*
3349 * Use readq directly, so we don't need to mark it as PRESENT
3350 * until we get a successful indication that all is well.
3351 */
3352 val = readq(&dd->kregbase[kr_revision]);
3353 if (val == dd->revision)
3354 break;
3355 if (i == 5) {
3356 qib_dev_err(dd, "Failed to initialize after reset, "
3357 "unusable\n");
3358 ret = 0;
3359 goto bail;
3360 }
3361 }
3362
3363 dd->flags |= QIB_PRESENT; /* it's back */
3364
3365 if (msix_entries) {
3366 /* restore the MSIx vector address and data if saved above */
3367 for (i = 0; i < msix_entries; i++) {
3368 dd->cspec->msix_entries[i].entry = i;
3369 if (!msix_vecsave || !msix_vecsave[2 * i])
3370 continue;
3371 qib_write_kreg(dd, 2 * i +
3372 (QIB_7322_MsixTable_OFFS / sizeof(u64)),
3373 msix_vecsave[2 * i]);
3374 qib_write_kreg(dd, 1 + 2 * i +
3375 (QIB_7322_MsixTable_OFFS / sizeof(u64)),
3376 msix_vecsave[1 + 2 * i]);
3377 }
3378 }
3379
3380 /* initialize the remaining registers. */
3381 for (i = 0; i < dd->num_pports; ++i)
3382 write_7322_init_portregs(&dd->pport[i]);
3383 write_7322_initregs(dd);
3384
3385 if (qib_pcie_params(dd, dd->lbus_width,
3386 &dd->cspec->num_msix_entries,
3387 dd->cspec->msix_entries))
3388 qib_dev_err(dd, "Reset failed to setup PCIe or interrupts; "
3389 "continuing anyway\n");
3390
3391 qib_setup_7322_interrupt(dd, 1);
3392
3393 for (i = 0; i < dd->num_pports; ++i) {
3394 struct qib_pportdata *ppd = &dd->pport[i];
3395
3396 spin_lock_irqsave(&ppd->lflags_lock, flags);
3397 ppd->lflags |= QIBL_IB_FORCE_NOTIFY;
3398 ppd->lflags &= ~QIBL_IB_AUTONEG_FAILED;
3399 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
3400 }
3401
3402bail:
3403 dd->flags &= ~QIB_DOING_RESET; /* OK or not, no longer resetting */
3404 kfree(msix_vecsave);
3405 return ret;
3406}
3407
3408/**
3409 * qib_7322_put_tid - write a TID to the chip
3410 * @dd: the qlogic_ib device
3411 * @tidptr: pointer to the expected TID (in chip) to update
3412 * @tidtype: 0 for eager, 1 for expected
3413 * @pa: physical address of in memory buffer; tidinvalid if freeing
3414 */
3415static void qib_7322_put_tid(struct qib_devdata *dd, u64 __iomem *tidptr,
3416 u32 type, unsigned long pa)
3417{
3418 if (!(dd->flags & QIB_PRESENT))
3419 return;
3420 if (pa != dd->tidinvalid) {
3421 u64 chippa = pa >> IBA7322_TID_PA_SHIFT;
3422
3423 /* paranoia checks */
3424 if (pa != (chippa << IBA7322_TID_PA_SHIFT)) {
3425 qib_dev_err(dd, "Physaddr %lx not 2KB aligned!\n",
3426 pa);
3427 return;
3428 }
3429 if (chippa >= (1UL << IBA7322_TID_SZ_SHIFT)) {
3430 qib_dev_err(dd, "Physical page address 0x%lx "
3431 "larger than supported\n", pa);
3432 return;
3433 }
3434
3435 if (type == RCVHQ_RCV_TYPE_EAGER)
3436 chippa |= dd->tidtemplate;
3437 else /* for now, always full 4KB page */
3438 chippa |= IBA7322_TID_SZ_4K;
3439 pa = chippa;
3440 }
3441 writeq(pa, tidptr);
3442 mmiowb();
3443}
3444
3445/**
3446 * qib_7322_clear_tids - clear all TID entries for a ctxt, expected and eager
3447 * @dd: the qlogic_ib device
3448 * @ctxt: the ctxt
3449 *
3450 * clear all TID entries for a ctxt, expected and eager.
3451 * Used from qib_close().
3452 */
3453static void qib_7322_clear_tids(struct qib_devdata *dd,
3454 struct qib_ctxtdata *rcd)
3455{
3456 u64 __iomem *tidbase;
3457 unsigned long tidinv;
3458 u32 ctxt;
3459 int i;
3460
3461 if (!dd->kregbase || !rcd)
3462 return;
3463
3464 ctxt = rcd->ctxt;
3465
3466 tidinv = dd->tidinvalid;
3467 tidbase = (u64 __iomem *)
3468 ((char __iomem *) dd->kregbase +
3469 dd->rcvtidbase +
3470 ctxt * dd->rcvtidcnt * sizeof(*tidbase));
3471
3472 for (i = 0; i < dd->rcvtidcnt; i++)
3473 qib_7322_put_tid(dd, &tidbase[i], RCVHQ_RCV_TYPE_EXPECTED,
3474 tidinv);
3475
3476 tidbase = (u64 __iomem *)
3477 ((char __iomem *) dd->kregbase +
3478 dd->rcvegrbase +
3479 rcd->rcvegr_tid_base * sizeof(*tidbase));
3480
3481 for (i = 0; i < rcd->rcvegrcnt; i++)
3482 qib_7322_put_tid(dd, &tidbase[i], RCVHQ_RCV_TYPE_EAGER,
3483 tidinv);
3484}
3485
3486/**
3487 * qib_7322_tidtemplate - setup constants for TID updates
3488 * @dd: the qlogic_ib device
3489 *
3490 * We setup stuff that we use a lot, to avoid calculating each time
3491 */
3492static void qib_7322_tidtemplate(struct qib_devdata *dd)
3493{
3494 /*
3495 * For now, we always allocate 4KB buffers (at init) so we can
3496 * receive max size packets. We may want a module parameter to
3497 * specify 2KB or 4KB and/or make it per port instead of per device
3498 * for those who want to reduce memory footprint. Note that the
3499 * rcvhdrentsize size must be large enough to hold the largest
3500 * IB header (currently 96 bytes) that we expect to handle (plus of
3501 * course the 2 dwords of RHF).
3502 */
3503 if (dd->rcvegrbufsize == 2048)
3504 dd->tidtemplate = IBA7322_TID_SZ_2K;
3505 else if (dd->rcvegrbufsize == 4096)
3506 dd->tidtemplate = IBA7322_TID_SZ_4K;
3507 dd->tidinvalid = 0;
3508}
3509
3510/**
3511 * qib_init_7322_get_base_info - set chip-specific flags for user code
3512 * @rcd: the qlogic_ib ctxt
3513 * @kbase: qib_base_info pointer
3514 *
3515 * We set the PCIE flag because the lower bandwidth on PCIe vs
3516 * HyperTransport can affect some user packet algorithims.
3517 */
3518
3519static int qib_7322_get_base_info(struct qib_ctxtdata *rcd,
3520 struct qib_base_info *kinfo)
3521{
3522 kinfo->spi_runtime_flags |= QIB_RUNTIME_CTXT_MSB_IN_QP |
3523 QIB_RUNTIME_PCIE | QIB_RUNTIME_NODMA_RTAIL |
3524 QIB_RUNTIME_HDRSUPP | QIB_RUNTIME_SDMA;
3525 if (rcd->dd->cspec->r1)
3526 kinfo->spi_runtime_flags |= QIB_RUNTIME_RCHK;
3527 if (rcd->dd->flags & QIB_USE_SPCL_TRIG)
3528 kinfo->spi_runtime_flags |= QIB_RUNTIME_SPECIAL_TRIGGER;
3529
3530 return 0;
3531}
3532
3533static struct qib_message_header *
3534qib_7322_get_msgheader(struct qib_devdata *dd, __le32 *rhf_addr)
3535{
3536 u32 offset = qib_hdrget_offset(rhf_addr);
3537
3538 return (struct qib_message_header *)
3539 (rhf_addr - dd->rhf_offset + offset);
3540}
3541
3542/*
3543 * Configure number of contexts.
3544 */
3545static void qib_7322_config_ctxts(struct qib_devdata *dd)
3546{
3547 unsigned long flags;
3548 u32 nchipctxts;
3549
3550 nchipctxts = qib_read_kreg32(dd, kr_contextcnt);
3551 dd->cspec->numctxts = nchipctxts;
3552 if (qib_n_krcv_queues > 1 && dd->num_pports) {
f931551b
RC
3553 dd->first_user_ctxt = NUM_IB_PORTS +
3554 (qib_n_krcv_queues - 1) * dd->num_pports;
3555 if (dd->first_user_ctxt > nchipctxts)
3556 dd->first_user_ctxt = nchipctxts;
3557 dd->n_krcv_queues = dd->first_user_ctxt / dd->num_pports;
3558 } else {
3559 dd->first_user_ctxt = NUM_IB_PORTS;
3560 dd->n_krcv_queues = 1;
3561 }
3562
3563 if (!qib_cfgctxts) {
3564 int nctxts = dd->first_user_ctxt + num_online_cpus();
3565
3566 if (nctxts <= 6)
3567 dd->ctxtcnt = 6;
3568 else if (nctxts <= 10)
3569 dd->ctxtcnt = 10;
3570 else if (nctxts <= nchipctxts)
3571 dd->ctxtcnt = nchipctxts;
3572 } else if (qib_cfgctxts < dd->num_pports)
3573 dd->ctxtcnt = dd->num_pports;
3574 else if (qib_cfgctxts <= nchipctxts)
3575 dd->ctxtcnt = qib_cfgctxts;
3576 if (!dd->ctxtcnt) /* none of the above, set to max */
3577 dd->ctxtcnt = nchipctxts;
3578
3579 /*
3580 * Chip can be configured for 6, 10, or 18 ctxts, and choice
3581 * affects number of eager TIDs per ctxt (1K, 2K, 4K).
3582 * Lock to be paranoid about later motion, etc.
3583 */
3584 spin_lock_irqsave(&dd->cspec->rcvmod_lock, flags);
3585 if (dd->ctxtcnt > 10)
3586 dd->rcvctrl |= 2ULL << SYM_LSB(RcvCtrl, ContextCfg);
3587 else if (dd->ctxtcnt > 6)
3588 dd->rcvctrl |= 1ULL << SYM_LSB(RcvCtrl, ContextCfg);
3589 /* else configure for default 6 receive ctxts */
3590
3591 /* The XRC opcode is 5. */
3592 dd->rcvctrl |= 5ULL << SYM_LSB(RcvCtrl, XrcTypeCode);
3593
3594 /*
3595 * RcvCtrl *must* be written here so that the
3596 * chip understands how to change rcvegrcnt below.
3597 */
3598 qib_write_kreg(dd, kr_rcvctrl, dd->rcvctrl);
3599 spin_unlock_irqrestore(&dd->cspec->rcvmod_lock, flags);
3600
3601 /* kr_rcvegrcnt changes based on the number of contexts enabled */
3602 dd->cspec->rcvegrcnt = qib_read_kreg32(dd, kr_rcvegrcnt);
0a43e117
MM
3603 if (qib_rcvhdrcnt)
3604 dd->rcvhdrcnt = max(dd->cspec->rcvegrcnt, qib_rcvhdrcnt);
3605 else
3606 dd->rcvhdrcnt = max(dd->cspec->rcvegrcnt,
3607 dd->num_pports > 1 ? 1024U : 2048U);
f931551b
RC
3608}
3609
3610static int qib_7322_get_ib_cfg(struct qib_pportdata *ppd, int which)
3611{
3612
3613 int lsb, ret = 0;
3614 u64 maskr; /* right-justified mask */
3615
3616 switch (which) {
3617
3618 case QIB_IB_CFG_LWID_ENB: /* Get allowed Link-width */
3619 ret = ppd->link_width_enabled;
3620 goto done;
3621
3622 case QIB_IB_CFG_LWID: /* Get currently active Link-width */
3623 ret = ppd->link_width_active;
3624 goto done;
3625
3626 case QIB_IB_CFG_SPD_ENB: /* Get allowed Link speeds */
3627 ret = ppd->link_speed_enabled;
3628 goto done;
3629
3630 case QIB_IB_CFG_SPD: /* Get current Link spd */
3631 ret = ppd->link_speed_active;
3632 goto done;
3633
3634 case QIB_IB_CFG_RXPOL_ENB: /* Get Auto-RX-polarity enable */
3635 lsb = SYM_LSB(IBCCtrlB_0, IB_POLARITY_REV_SUPP);
3636 maskr = SYM_RMASK(IBCCtrlB_0, IB_POLARITY_REV_SUPP);
3637 break;
3638
3639 case QIB_IB_CFG_LREV_ENB: /* Get Auto-Lane-reversal enable */
3640 lsb = SYM_LSB(IBCCtrlB_0, IB_LANE_REV_SUPPORTED);
3641 maskr = SYM_RMASK(IBCCtrlB_0, IB_LANE_REV_SUPPORTED);
3642 break;
3643
3644 case QIB_IB_CFG_LINKLATENCY:
3645 ret = qib_read_kreg_port(ppd, krp_ibcstatus_b) &
3646 SYM_MASK(IBCStatusB_0, LinkRoundTripLatency);
3647 goto done;
3648
3649 case QIB_IB_CFG_OP_VLS:
3650 ret = ppd->vls_operational;
3651 goto done;
3652
3653 case QIB_IB_CFG_VL_HIGH_CAP:
3654 ret = 16;
3655 goto done;
3656
3657 case QIB_IB_CFG_VL_LOW_CAP:
3658 ret = 16;
3659 goto done;
3660
3661 case QIB_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
3662 ret = SYM_FIELD(ppd->cpspec->ibcctrl_a, IBCCtrlA_0,
3663 OverrunThreshold);
3664 goto done;
3665
3666 case QIB_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
3667 ret = SYM_FIELD(ppd->cpspec->ibcctrl_a, IBCCtrlA_0,
3668 PhyerrThreshold);
3669 goto done;
3670
3671 case QIB_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
3672 /* will only take effect when the link state changes */
3673 ret = (ppd->cpspec->ibcctrl_a &
3674 SYM_MASK(IBCCtrlA_0, LinkDownDefaultState)) ?
3675 IB_LINKINITCMD_SLEEP : IB_LINKINITCMD_POLL;
3676 goto done;
3677
3678 case QIB_IB_CFG_HRTBT: /* Get Heartbeat off/enable/auto */
3679 lsb = IBA7322_IBC_HRTBT_LSB;
3680 maskr = IBA7322_IBC_HRTBT_RMASK; /* OR of AUTO and ENB */
3681 break;
3682
3683 case QIB_IB_CFG_PMA_TICKS:
3684 /*
3685 * 0x00 = 10x link transfer rate or 4 nsec. for 2.5Gbs
3686 * Since the clock is always 250MHz, the value is 3, 1 or 0.
3687 */
3688 if (ppd->link_speed_active == QIB_IB_QDR)
3689 ret = 3;
3690 else if (ppd->link_speed_active == QIB_IB_DDR)
3691 ret = 1;
3692 else
3693 ret = 0;
3694 goto done;
3695
3696 default:
3697 ret = -EINVAL;
3698 goto done;
3699 }
3700 ret = (int)((ppd->cpspec->ibcctrl_b >> lsb) & maskr);
3701done:
3702 return ret;
3703}
3704
3705/*
3706 * Below again cribbed liberally from older version. Do not lean
3707 * heavily on it.
3708 */
3709#define IBA7322_IBC_DLIDLMC_SHIFT QIB_7322_IBCCtrlB_0_IB_DLID_LSB
3710#define IBA7322_IBC_DLIDLMC_MASK (QIB_7322_IBCCtrlB_0_IB_DLID_RMASK \
3711 | (QIB_7322_IBCCtrlB_0_IB_DLID_MASK_RMASK << 16))
3712
3713static int qib_7322_set_ib_cfg(struct qib_pportdata *ppd, int which, u32 val)
3714{
3715 struct qib_devdata *dd = ppd->dd;
3716 u64 maskr; /* right-justified mask */
3717 int lsb, ret = 0;
3718 u16 lcmd, licmd;
3719 unsigned long flags;
3720
3721 switch (which) {
3722 case QIB_IB_CFG_LIDLMC:
3723 /*
3724 * Set LID and LMC. Combined to avoid possible hazard
3725 * caller puts LMC in 16MSbits, DLID in 16LSbits of val
3726 */
3727 lsb = IBA7322_IBC_DLIDLMC_SHIFT;
3728 maskr = IBA7322_IBC_DLIDLMC_MASK;
3729 /*
3730 * For header-checking, the SLID in the packet will
3731 * be masked with SendIBSLMCMask, and compared
3732 * with SendIBSLIDAssignMask. Make sure we do not
3733 * set any bits not covered by the mask, or we get
3734 * false-positives.
3735 */
3736 qib_write_kreg_port(ppd, krp_sendslid,
3737 val & (val >> 16) & SendIBSLIDAssignMask);
3738 qib_write_kreg_port(ppd, krp_sendslidmask,
3739 (val >> 16) & SendIBSLMCMask);
3740 break;
3741
3742 case QIB_IB_CFG_LWID_ENB: /* set allowed Link-width */
3743 ppd->link_width_enabled = val;
3744 /* convert IB value to chip register value */
3745 if (val == IB_WIDTH_1X)
3746 val = 0;
3747 else if (val == IB_WIDTH_4X)
3748 val = 1;
3749 else
3750 val = 3;
3751 maskr = SYM_RMASK(IBCCtrlB_0, IB_NUM_CHANNELS);
3752 lsb = SYM_LSB(IBCCtrlB_0, IB_NUM_CHANNELS);
3753 break;
3754
3755 case QIB_IB_CFG_SPD_ENB: /* set allowed Link speeds */
3756 /*
3757 * As with width, only write the actual register if the
3758 * link is currently down, otherwise takes effect on next
25985edc 3759 * link change. Since setting is being explicitly requested
f931551b
RC
3760 * (via MAD or sysfs), clear autoneg failure status if speed
3761 * autoneg is enabled.
3762 */
3763 ppd->link_speed_enabled = val;
3764 val <<= IBA7322_IBC_SPEED_LSB;
3765 maskr = IBA7322_IBC_SPEED_MASK | IBA7322_IBC_IBTA_1_2_MASK |
3766 IBA7322_IBC_MAX_SPEED_MASK;
3767 if (val & (val - 1)) {
3768 /* Muliple speeds enabled */
3769 val |= IBA7322_IBC_IBTA_1_2_MASK |
3770 IBA7322_IBC_MAX_SPEED_MASK;
3771 spin_lock_irqsave(&ppd->lflags_lock, flags);
3772 ppd->lflags &= ~QIBL_IB_AUTONEG_FAILED;
3773 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
3774 } else if (val & IBA7322_IBC_SPEED_QDR)
3775 val |= IBA7322_IBC_IBTA_1_2_MASK;
3776 /* IBTA 1.2 mode + min/max + speed bits are contiguous */
3777 lsb = SYM_LSB(IBCCtrlB_0, IB_ENHANCED_MODE);
3778 break;
3779
3780 case QIB_IB_CFG_RXPOL_ENB: /* set Auto-RX-polarity enable */
3781 lsb = SYM_LSB(IBCCtrlB_0, IB_POLARITY_REV_SUPP);
3782 maskr = SYM_RMASK(IBCCtrlB_0, IB_POLARITY_REV_SUPP);
3783 break;
3784
3785 case QIB_IB_CFG_LREV_ENB: /* set Auto-Lane-reversal enable */
3786 lsb = SYM_LSB(IBCCtrlB_0, IB_LANE_REV_SUPPORTED);
3787 maskr = SYM_RMASK(IBCCtrlB_0, IB_LANE_REV_SUPPORTED);
3788 break;
3789
3790 case QIB_IB_CFG_OVERRUN_THRESH: /* IB overrun threshold */
3791 maskr = SYM_FIELD(ppd->cpspec->ibcctrl_a, IBCCtrlA_0,
3792 OverrunThreshold);
3793 if (maskr != val) {
3794 ppd->cpspec->ibcctrl_a &=
3795 ~SYM_MASK(IBCCtrlA_0, OverrunThreshold);
3796 ppd->cpspec->ibcctrl_a |= (u64) val <<
3797 SYM_LSB(IBCCtrlA_0, OverrunThreshold);
3798 qib_write_kreg_port(ppd, krp_ibcctrl_a,
3799 ppd->cpspec->ibcctrl_a);
3800 qib_write_kreg(dd, kr_scratch, 0ULL);
3801 }
3802 goto bail;
3803
3804 case QIB_IB_CFG_PHYERR_THRESH: /* IB PHY error threshold */
3805 maskr = SYM_FIELD(ppd->cpspec->ibcctrl_a, IBCCtrlA_0,
3806 PhyerrThreshold);
3807 if (maskr != val) {
3808 ppd->cpspec->ibcctrl_a &=
3809 ~SYM_MASK(IBCCtrlA_0, PhyerrThreshold);
3810 ppd->cpspec->ibcctrl_a |= (u64) val <<
3811 SYM_LSB(IBCCtrlA_0, PhyerrThreshold);
3812 qib_write_kreg_port(ppd, krp_ibcctrl_a,
3813 ppd->cpspec->ibcctrl_a);
3814 qib_write_kreg(dd, kr_scratch, 0ULL);
3815 }
3816 goto bail;
3817
3818 case QIB_IB_CFG_PKEYS: /* update pkeys */
3819 maskr = (u64) ppd->pkeys[0] | ((u64) ppd->pkeys[1] << 16) |
3820 ((u64) ppd->pkeys[2] << 32) |
3821 ((u64) ppd->pkeys[3] << 48);
3822 qib_write_kreg_port(ppd, krp_partitionkey, maskr);
3823 goto bail;
3824
3825 case QIB_IB_CFG_LINKDEFAULT: /* IB link default (sleep/poll) */
3826 /* will only take effect when the link state changes */
3827 if (val == IB_LINKINITCMD_POLL)
3828 ppd->cpspec->ibcctrl_a &=
3829 ~SYM_MASK(IBCCtrlA_0, LinkDownDefaultState);
3830 else /* SLEEP */
3831 ppd->cpspec->ibcctrl_a |=
3832 SYM_MASK(IBCCtrlA_0, LinkDownDefaultState);
3833 qib_write_kreg_port(ppd, krp_ibcctrl_a, ppd->cpspec->ibcctrl_a);
3834 qib_write_kreg(dd, kr_scratch, 0ULL);
3835 goto bail;
3836
3837 case QIB_IB_CFG_MTU: /* update the MTU in IBC */
3838 /*
3839 * Update our housekeeping variables, and set IBC max
3840 * size, same as init code; max IBC is max we allow in
3841 * buffer, less the qword pbc, plus 1 for ICRC, in dwords
3842 * Set even if it's unchanged, print debug message only
3843 * on changes.
3844 */
3845 val = (ppd->ibmaxlen >> 2) + 1;
3846 ppd->cpspec->ibcctrl_a &= ~SYM_MASK(IBCCtrlA_0, MaxPktLen);
3847 ppd->cpspec->ibcctrl_a |= (u64)val <<
3848 SYM_LSB(IBCCtrlA_0, MaxPktLen);
3849 qib_write_kreg_port(ppd, krp_ibcctrl_a,
3850 ppd->cpspec->ibcctrl_a);
3851 qib_write_kreg(dd, kr_scratch, 0ULL);
3852 goto bail;
3853
3854 case QIB_IB_CFG_LSTATE: /* set the IB link state */
3855 switch (val & 0xffff0000) {
3856 case IB_LINKCMD_DOWN:
3857 lcmd = QLOGIC_IB_IBCC_LINKCMD_DOWN;
3858 ppd->cpspec->ibmalfusesnap = 1;
3859 ppd->cpspec->ibmalfsnap = read_7322_creg32_port(ppd,
3860 crp_errlink);
3861 if (!ppd->cpspec->ibdeltainprog &&
3862 qib_compat_ddr_negotiate) {
3863 ppd->cpspec->ibdeltainprog = 1;
3864 ppd->cpspec->ibsymsnap =
3865 read_7322_creg32_port(ppd,
3866 crp_ibsymbolerr);
3867 ppd->cpspec->iblnkerrsnap =
3868 read_7322_creg32_port(ppd,
3869 crp_iblinkerrrecov);
3870 }
3871 break;
3872
3873 case IB_LINKCMD_ARMED:
3874 lcmd = QLOGIC_IB_IBCC_LINKCMD_ARMED;
3875 if (ppd->cpspec->ibmalfusesnap) {
3876 ppd->cpspec->ibmalfusesnap = 0;
3877 ppd->cpspec->ibmalfdelta +=
3878 read_7322_creg32_port(ppd,
3879 crp_errlink) -
3880 ppd->cpspec->ibmalfsnap;
3881 }
3882 break;
3883
3884 case IB_LINKCMD_ACTIVE:
3885 lcmd = QLOGIC_IB_IBCC_LINKCMD_ACTIVE;
3886 break;
3887
3888 default:
3889 ret = -EINVAL;
3890 qib_dev_err(dd, "bad linkcmd req 0x%x\n", val >> 16);
3891 goto bail;
3892 }
3893 switch (val & 0xffff) {
3894 case IB_LINKINITCMD_NOP:
3895 licmd = 0;
3896 break;
3897
3898 case IB_LINKINITCMD_POLL:
3899 licmd = QLOGIC_IB_IBCC_LINKINITCMD_POLL;
3900 break;
3901
3902 case IB_LINKINITCMD_SLEEP:
3903 licmd = QLOGIC_IB_IBCC_LINKINITCMD_SLEEP;
3904 break;
3905
3906 case IB_LINKINITCMD_DISABLE:
3907 licmd = QLOGIC_IB_IBCC_LINKINITCMD_DISABLE;
3908 ppd->cpspec->chase_end = 0;
3909 /*
3910 * stop state chase counter and timer, if running.
3911 * wait forpending timer, but don't clear .data (ppd)!
3912 */
3913 if (ppd->cpspec->chase_timer.expires) {
3914 del_timer_sync(&ppd->cpspec->chase_timer);
3915 ppd->cpspec->chase_timer.expires = 0;
3916 }
3917 break;
3918
3919 default:
3920 ret = -EINVAL;
3921 qib_dev_err(dd, "bad linkinitcmd req 0x%x\n",
3922 val & 0xffff);
3923 goto bail;
3924 }
3925 qib_set_ib_7322_lstate(ppd, lcmd, licmd);
3926 goto bail;
3927
3928 case QIB_IB_CFG_OP_VLS:
3929 if (ppd->vls_operational != val) {
3930 ppd->vls_operational = val;
3931 set_vls(ppd);
3932 }
3933 goto bail;
3934
3935 case QIB_IB_CFG_VL_HIGH_LIMIT:
3936 qib_write_kreg_port(ppd, krp_highprio_limit, val);
3937 goto bail;
3938
3939 case QIB_IB_CFG_HRTBT: /* set Heartbeat off/enable/auto */
3940 if (val > 3) {
3941 ret = -EINVAL;
3942 goto bail;
3943 }
3944 lsb = IBA7322_IBC_HRTBT_LSB;
3945 maskr = IBA7322_IBC_HRTBT_RMASK; /* OR of AUTO and ENB */
3946 break;
3947
3948 case QIB_IB_CFG_PORT:
3949 /* val is the port number of the switch we are connected to. */
3950 if (ppd->dd->cspec->r1) {
3951 cancel_delayed_work(&ppd->cpspec->ipg_work);
3952 ppd->cpspec->ipg_tries = 0;
3953 }
3954 goto bail;
3955
3956 default:
3957 ret = -EINVAL;
3958 goto bail;
3959 }
3960 ppd->cpspec->ibcctrl_b &= ~(maskr << lsb);
3961 ppd->cpspec->ibcctrl_b |= (((u64) val & maskr) << lsb);
3962 qib_write_kreg_port(ppd, krp_ibcctrl_b, ppd->cpspec->ibcctrl_b);
3963 qib_write_kreg(dd, kr_scratch, 0);
3964bail:
3965 return ret;
3966}
3967
3968static int qib_7322_set_loopback(struct qib_pportdata *ppd, const char *what)
3969{
3970 int ret = 0;
3971 u64 val, ctrlb;
3972
3973 /* only IBC loopback, may add serdes and xgxs loopbacks later */
3974 if (!strncmp(what, "ibc", 3)) {
3975 ppd->cpspec->ibcctrl_a |= SYM_MASK(IBCCtrlA_0,
3976 Loopback);
3977 val = 0; /* disable heart beat, so link will come up */
3978 qib_devinfo(ppd->dd->pcidev, "Enabling IB%u:%u IBC loopback\n",
3979 ppd->dd->unit, ppd->port);
3980 } else if (!strncmp(what, "off", 3)) {
3981 ppd->cpspec->ibcctrl_a &= ~SYM_MASK(IBCCtrlA_0,
3982 Loopback);
3983 /* enable heart beat again */
3984 val = IBA7322_IBC_HRTBT_RMASK << IBA7322_IBC_HRTBT_LSB;
3985 qib_devinfo(ppd->dd->pcidev, "Disabling IB%u:%u IBC loopback "
3986 "(normal)\n", ppd->dd->unit, ppd->port);
3987 } else
3988 ret = -EINVAL;
3989 if (!ret) {
3990 qib_write_kreg_port(ppd, krp_ibcctrl_a,
3991 ppd->cpspec->ibcctrl_a);
3992 ctrlb = ppd->cpspec->ibcctrl_b & ~(IBA7322_IBC_HRTBT_MASK
3993 << IBA7322_IBC_HRTBT_LSB);
3994 ppd->cpspec->ibcctrl_b = ctrlb | val;
3995 qib_write_kreg_port(ppd, krp_ibcctrl_b,
3996 ppd->cpspec->ibcctrl_b);
3997 qib_write_kreg(ppd->dd, kr_scratch, 0);
3998 }
3999 return ret;
4000}
4001
4002static void get_vl_weights(struct qib_pportdata *ppd, unsigned regno,
4003 struct ib_vl_weight_elem *vl)
4004{
4005 unsigned i;
4006
4007 for (i = 0; i < 16; i++, regno++, vl++) {
4008 u32 val = qib_read_kreg_port(ppd, regno);
4009
4010 vl->vl = (val >> SYM_LSB(LowPriority0_0, VirtualLane)) &
4011 SYM_RMASK(LowPriority0_0, VirtualLane);
4012 vl->weight = (val >> SYM_LSB(LowPriority0_0, Weight)) &
4013 SYM_RMASK(LowPriority0_0, Weight);
4014 }
4015}
4016
4017static void set_vl_weights(struct qib_pportdata *ppd, unsigned regno,
4018 struct ib_vl_weight_elem *vl)
4019{
4020 unsigned i;
4021
4022 for (i = 0; i < 16; i++, regno++, vl++) {
4023 u64 val;
4024
4025 val = ((vl->vl & SYM_RMASK(LowPriority0_0, VirtualLane)) <<
4026 SYM_LSB(LowPriority0_0, VirtualLane)) |
4027 ((vl->weight & SYM_RMASK(LowPriority0_0, Weight)) <<
4028 SYM_LSB(LowPriority0_0, Weight));
4029 qib_write_kreg_port(ppd, regno, val);
4030 }
4031 if (!(ppd->p_sendctrl & SYM_MASK(SendCtrl_0, IBVLArbiterEn))) {
4032 struct qib_devdata *dd = ppd->dd;
4033 unsigned long flags;
4034
4035 spin_lock_irqsave(&dd->sendctrl_lock, flags);
4036 ppd->p_sendctrl |= SYM_MASK(SendCtrl_0, IBVLArbiterEn);
4037 qib_write_kreg_port(ppd, krp_sendctrl, ppd->p_sendctrl);
4038 qib_write_kreg(dd, kr_scratch, 0);
4039 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
4040 }
4041}
4042
4043static int qib_7322_get_ib_table(struct qib_pportdata *ppd, int which, void *t)
4044{
4045 switch (which) {
4046 case QIB_IB_TBL_VL_HIGH_ARB:
4047 get_vl_weights(ppd, krp_highprio_0, t);
4048 break;
4049
4050 case QIB_IB_TBL_VL_LOW_ARB:
4051 get_vl_weights(ppd, krp_lowprio_0, t);
4052 break;
4053
4054 default:
4055 return -EINVAL;
4056 }
4057 return 0;
4058}
4059
4060static int qib_7322_set_ib_table(struct qib_pportdata *ppd, int which, void *t)
4061{
4062 switch (which) {
4063 case QIB_IB_TBL_VL_HIGH_ARB:
4064 set_vl_weights(ppd, krp_highprio_0, t);
4065 break;
4066
4067 case QIB_IB_TBL_VL_LOW_ARB:
4068 set_vl_weights(ppd, krp_lowprio_0, t);
4069 break;
4070
4071 default:
4072 return -EINVAL;
4073 }
4074 return 0;
4075}
4076
4077static void qib_update_7322_usrhead(struct qib_ctxtdata *rcd, u64 hd,
19ede2e4 4078 u32 updegr, u32 egrhd, u32 npkts)
f931551b 4079{
19ede2e4
MM
4080 /*
4081 * Need to write timeout register before updating rcvhdrhead to ensure
4082 * that the timer is enabled on reception of a packet.
4083 */
4084 if (hd >> IBA7322_HDRHEAD_PKTINT_SHIFT)
4085 adjust_rcv_timeout(rcd, npkts);
f931551b
RC
4086 qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt);
4087 qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt);
4088 if (updegr)
4089 qib_write_ureg(rcd->dd, ur_rcvegrindexhead, egrhd, rcd->ctxt);
4090}
4091
4092static u32 qib_7322_hdrqempty(struct qib_ctxtdata *rcd)
4093{
4094 u32 head, tail;
4095
4096 head = qib_read_ureg32(rcd->dd, ur_rcvhdrhead, rcd->ctxt);
4097 if (rcd->rcvhdrtail_kvaddr)
4098 tail = qib_get_rcvhdrtail(rcd);
4099 else
4100 tail = qib_read_ureg32(rcd->dd, ur_rcvhdrtail, rcd->ctxt);
4101 return head == tail;
4102}
4103
4104#define RCVCTRL_COMMON_MODS (QIB_RCVCTRL_CTXT_ENB | \
4105 QIB_RCVCTRL_CTXT_DIS | \
4106 QIB_RCVCTRL_TIDFLOW_ENB | \
4107 QIB_RCVCTRL_TIDFLOW_DIS | \
4108 QIB_RCVCTRL_TAILUPD_ENB | \
4109 QIB_RCVCTRL_TAILUPD_DIS | \
4110 QIB_RCVCTRL_INTRAVAIL_ENB | \
4111 QIB_RCVCTRL_INTRAVAIL_DIS | \
4112 QIB_RCVCTRL_BP_ENB | \
4113 QIB_RCVCTRL_BP_DIS)
4114
4115#define RCVCTRL_PORT_MODS (QIB_RCVCTRL_CTXT_ENB | \
4116 QIB_RCVCTRL_CTXT_DIS | \
4117 QIB_RCVCTRL_PKEY_DIS | \
4118 QIB_RCVCTRL_PKEY_ENB)
4119
4120/*
4121 * Modify the RCVCTRL register in chip-specific way. This
4122 * is a function because bit positions and (future) register
4123 * location is chip-specifc, but the needed operations are
4124 * generic. <op> is a bit-mask because we often want to
4125 * do multiple modifications.
4126 */
4127static void rcvctrl_7322_mod(struct qib_pportdata *ppd, unsigned int op,
4128 int ctxt)
4129{
4130 struct qib_devdata *dd = ppd->dd;
4131 struct qib_ctxtdata *rcd;
4132 u64 mask, val;
4133 unsigned long flags;
4134
4135 spin_lock_irqsave(&dd->cspec->rcvmod_lock, flags);
4136
4137 if (op & QIB_RCVCTRL_TIDFLOW_ENB)
4138 dd->rcvctrl |= SYM_MASK(RcvCtrl, TidFlowEnable);
4139 if (op & QIB_RCVCTRL_TIDFLOW_DIS)
4140 dd->rcvctrl &= ~SYM_MASK(RcvCtrl, TidFlowEnable);
4141 if (op & QIB_RCVCTRL_TAILUPD_ENB)
4142 dd->rcvctrl |= SYM_MASK(RcvCtrl, TailUpd);
4143 if (op & QIB_RCVCTRL_TAILUPD_DIS)
4144 dd->rcvctrl &= ~SYM_MASK(RcvCtrl, TailUpd);
4145 if (op & QIB_RCVCTRL_PKEY_ENB)
4146 ppd->p_rcvctrl &= ~SYM_MASK(RcvCtrl_0, RcvPartitionKeyDisable);
4147 if (op & QIB_RCVCTRL_PKEY_DIS)
4148 ppd->p_rcvctrl |= SYM_MASK(RcvCtrl_0, RcvPartitionKeyDisable);
4149 if (ctxt < 0) {
4150 mask = (1ULL << dd->ctxtcnt) - 1;
4151 rcd = NULL;
4152 } else {
4153 mask = (1ULL << ctxt);
4154 rcd = dd->rcd[ctxt];
4155 }
4156 if ((op & QIB_RCVCTRL_CTXT_ENB) && rcd) {
4157 ppd->p_rcvctrl |=
4158 (mask << SYM_LSB(RcvCtrl_0, ContextEnableKernel));
4159 if (!(dd->flags & QIB_NODMA_RTAIL)) {
4160 op |= QIB_RCVCTRL_TAILUPD_ENB; /* need reg write */
4161 dd->rcvctrl |= SYM_MASK(RcvCtrl, TailUpd);
4162 }
4163 /* Write these registers before the context is enabled. */
4164 qib_write_kreg_ctxt(dd, krc_rcvhdrtailaddr, ctxt,
4165 rcd->rcvhdrqtailaddr_phys);
4166 qib_write_kreg_ctxt(dd, krc_rcvhdraddr, ctxt,
4167 rcd->rcvhdrq_phys);
4168 rcd->seq_cnt = 1;
f931551b
RC
4169 }
4170 if (op & QIB_RCVCTRL_CTXT_DIS)
4171 ppd->p_rcvctrl &=
4172 ~(mask << SYM_LSB(RcvCtrl_0, ContextEnableKernel));
4173 if (op & QIB_RCVCTRL_BP_ENB)
4174 dd->rcvctrl |= mask << SYM_LSB(RcvCtrl, dontDropRHQFull);
4175 if (op & QIB_RCVCTRL_BP_DIS)
4176 dd->rcvctrl &= ~(mask << SYM_LSB(RcvCtrl, dontDropRHQFull));
4177 if (op & QIB_RCVCTRL_INTRAVAIL_ENB)
4178 dd->rcvctrl |= (mask << SYM_LSB(RcvCtrl, IntrAvail));
4179 if (op & QIB_RCVCTRL_INTRAVAIL_DIS)
4180 dd->rcvctrl &= ~(mask << SYM_LSB(RcvCtrl, IntrAvail));
4181 /*
4182 * Decide which registers to write depending on the ops enabled.
4183 * Special case is "flush" (no bits set at all)
4184 * which needs to write both.
4185 */
4186 if (op == 0 || (op & RCVCTRL_COMMON_MODS))
4187 qib_write_kreg(dd, kr_rcvctrl, dd->rcvctrl);
4188 if (op == 0 || (op & RCVCTRL_PORT_MODS))
4189 qib_write_kreg_port(ppd, krp_rcvctrl, ppd->p_rcvctrl);
4190 if ((op & QIB_RCVCTRL_CTXT_ENB) && dd->rcd[ctxt]) {
4191 /*
4192 * Init the context registers also; if we were
4193 * disabled, tail and head should both be zero
4194 * already from the enable, but since we don't
25985edc 4195 * know, we have to do it explicitly.
f931551b
RC
4196 */
4197 val = qib_read_ureg32(dd, ur_rcvegrindextail, ctxt);
4198 qib_write_ureg(dd, ur_rcvegrindexhead, val, ctxt);
4199
4200 /* be sure enabling write seen; hd/tl should be 0 */
4201 (void) qib_read_kreg32(dd, kr_scratch);
4202 val = qib_read_ureg32(dd, ur_rcvhdrtail, ctxt);
4203 dd->rcd[ctxt]->head = val;
4204 /* If kctxt, interrupt on next receive. */
4205 if (ctxt < dd->first_user_ctxt)
4206 val |= dd->rhdrhead_intr_off;
4207 qib_write_ureg(dd, ur_rcvhdrhead, val, ctxt);
4208 } else if ((op & QIB_RCVCTRL_INTRAVAIL_ENB) &&
4209 dd->rcd[ctxt] && dd->rhdrhead_intr_off) {
4210 /* arm rcv interrupt */
4211 val = dd->rcd[ctxt]->head | dd->rhdrhead_intr_off;
4212 qib_write_ureg(dd, ur_rcvhdrhead, val, ctxt);
4213 }
4214 if (op & QIB_RCVCTRL_CTXT_DIS) {
4215 unsigned f;
4216
4217 /* Now that the context is disabled, clear these registers. */
4218 if (ctxt >= 0) {
4219 qib_write_kreg_ctxt(dd, krc_rcvhdrtailaddr, ctxt, 0);
4220 qib_write_kreg_ctxt(dd, krc_rcvhdraddr, ctxt, 0);
4221 for (f = 0; f < NUM_TIDFLOWS_CTXT; f++)
4222 qib_write_ureg(dd, ur_rcvflowtable + f,
4223 TIDFLOW_ERRBITS, ctxt);
4224 } else {
4225 unsigned i;
4226
4227 for (i = 0; i < dd->cfgctxts; i++) {
4228 qib_write_kreg_ctxt(dd, krc_rcvhdrtailaddr,
4229 i, 0);
4230 qib_write_kreg_ctxt(dd, krc_rcvhdraddr, i, 0);
4231 for (f = 0; f < NUM_TIDFLOWS_CTXT; f++)
4232 qib_write_ureg(dd, ur_rcvflowtable + f,
4233 TIDFLOW_ERRBITS, i);
4234 }
4235 }
4236 }
4237 spin_unlock_irqrestore(&dd->cspec->rcvmod_lock, flags);
4238}
4239
4240/*
4241 * Modify the SENDCTRL register in chip-specific way. This
4242 * is a function where there are multiple such registers with
4243 * slightly different layouts.
4244 * The chip doesn't allow back-to-back sendctrl writes, so write
4245 * the scratch register after writing sendctrl.
4246 *
4247 * Which register is written depends on the operation.
4248 * Most operate on the common register, while
4249 * SEND_ENB and SEND_DIS operate on the per-port ones.
4250 * SEND_ENB is included in common because it can change SPCL_TRIG
4251 */
4252#define SENDCTRL_COMMON_MODS (\
4253 QIB_SENDCTRL_CLEAR | \
4254 QIB_SENDCTRL_AVAIL_DIS | \
4255 QIB_SENDCTRL_AVAIL_ENB | \
4256 QIB_SENDCTRL_AVAIL_BLIP | \
4257 QIB_SENDCTRL_DISARM | \
4258 QIB_SENDCTRL_DISARM_ALL | \
4259 QIB_SENDCTRL_SEND_ENB)
4260
4261#define SENDCTRL_PORT_MODS (\
4262 QIB_SENDCTRL_CLEAR | \
4263 QIB_SENDCTRL_SEND_ENB | \
4264 QIB_SENDCTRL_SEND_DIS | \
4265 QIB_SENDCTRL_FLUSH)
4266
4267static void sendctrl_7322_mod(struct qib_pportdata *ppd, u32 op)
4268{
4269 struct qib_devdata *dd = ppd->dd;
4270 u64 tmp_dd_sendctrl;
4271 unsigned long flags;
4272
4273 spin_lock_irqsave(&dd->sendctrl_lock, flags);
4274
4275 /* First the dd ones that are "sticky", saved in shadow */
4276 if (op & QIB_SENDCTRL_CLEAR)
4277 dd->sendctrl = 0;
4278 if (op & QIB_SENDCTRL_AVAIL_DIS)
4279 dd->sendctrl &= ~SYM_MASK(SendCtrl, SendBufAvailUpd);
4280 else if (op & QIB_SENDCTRL_AVAIL_ENB) {
4281 dd->sendctrl |= SYM_MASK(SendCtrl, SendBufAvailUpd);
4282 if (dd->flags & QIB_USE_SPCL_TRIG)
4283 dd->sendctrl |= SYM_MASK(SendCtrl, SpecialTriggerEn);
4284 }
4285
4286 /* Then the ppd ones that are "sticky", saved in shadow */
4287 if (op & QIB_SENDCTRL_SEND_DIS)
4288 ppd->p_sendctrl &= ~SYM_MASK(SendCtrl_0, SendEnable);
4289 else if (op & QIB_SENDCTRL_SEND_ENB)
4290 ppd->p_sendctrl |= SYM_MASK(SendCtrl_0, SendEnable);
4291
4292 if (op & QIB_SENDCTRL_DISARM_ALL) {
4293 u32 i, last;
4294
4295 tmp_dd_sendctrl = dd->sendctrl;
4296 last = dd->piobcnt2k + dd->piobcnt4k + NUM_VL15_BUFS;
4297 /*
4298 * Disarm any buffers that are not yet launched,
4299 * disabling updates until done.
4300 */
4301 tmp_dd_sendctrl &= ~SYM_MASK(SendCtrl, SendBufAvailUpd);
4302 for (i = 0; i < last; i++) {
4303 qib_write_kreg(dd, kr_sendctrl,
4304 tmp_dd_sendctrl |
4305 SYM_MASK(SendCtrl, Disarm) | i);
4306 qib_write_kreg(dd, kr_scratch, 0);
4307 }
4308 }
4309
4310 if (op & QIB_SENDCTRL_FLUSH) {
4311 u64 tmp_ppd_sendctrl = ppd->p_sendctrl;
4312
4313 /*
4314 * Now drain all the fifos. The Abort bit should never be
4315 * needed, so for now, at least, we don't use it.
4316 */
4317 tmp_ppd_sendctrl |=
4318 SYM_MASK(SendCtrl_0, TxeDrainRmFifo) |
4319 SYM_MASK(SendCtrl_0, TxeDrainLaFifo) |
4320 SYM_MASK(SendCtrl_0, TxeBypassIbc);
4321 qib_write_kreg_port(ppd, krp_sendctrl, tmp_ppd_sendctrl);
4322 qib_write_kreg(dd, kr_scratch, 0);
4323 }
4324
4325 tmp_dd_sendctrl = dd->sendctrl;
4326
4327 if (op & QIB_SENDCTRL_DISARM)
4328 tmp_dd_sendctrl |= SYM_MASK(SendCtrl, Disarm) |
4329 ((op & QIB_7322_SendCtrl_DisarmSendBuf_RMASK) <<
4330 SYM_LSB(SendCtrl, DisarmSendBuf));
4331 if ((op & QIB_SENDCTRL_AVAIL_BLIP) &&
4332 (dd->sendctrl & SYM_MASK(SendCtrl, SendBufAvailUpd)))
4333 tmp_dd_sendctrl &= ~SYM_MASK(SendCtrl, SendBufAvailUpd);
4334
4335 if (op == 0 || (op & SENDCTRL_COMMON_MODS)) {
4336 qib_write_kreg(dd, kr_sendctrl, tmp_dd_sendctrl);
4337 qib_write_kreg(dd, kr_scratch, 0);
4338 }
4339
4340 if (op == 0 || (op & SENDCTRL_PORT_MODS)) {
4341 qib_write_kreg_port(ppd, krp_sendctrl, ppd->p_sendctrl);
4342 qib_write_kreg(dd, kr_scratch, 0);
4343 }
4344
4345 if (op & QIB_SENDCTRL_AVAIL_BLIP) {
4346 qib_write_kreg(dd, kr_sendctrl, dd->sendctrl);
4347 qib_write_kreg(dd, kr_scratch, 0);
4348 }
4349
4350 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
4351
4352 if (op & QIB_SENDCTRL_FLUSH) {
4353 u32 v;
4354 /*
4355 * ensure writes have hit chip, then do a few
4356 * more reads, to allow DMA of pioavail registers
4357 * to occur, so in-memory copy is in sync with
4358 * the chip. Not always safe to sleep.
4359 */
4360 v = qib_read_kreg32(dd, kr_scratch);
4361 qib_write_kreg(dd, kr_scratch, v);
4362 v = qib_read_kreg32(dd, kr_scratch);
4363 qib_write_kreg(dd, kr_scratch, v);
4364 qib_read_kreg32(dd, kr_scratch);
4365 }
4366}
4367
4368#define _PORT_VIRT_FLAG 0x8000U /* "virtual", need adjustments */
4369#define _PORT_64BIT_FLAG 0x10000U /* not "virtual", but 64bit */
4370#define _PORT_CNTR_IDXMASK 0x7fffU /* mask off flags above */
4371
4372/**
4373 * qib_portcntr_7322 - read a per-port chip counter
4374 * @ppd: the qlogic_ib pport
4375 * @creg: the counter to read (not a chip offset)
4376 */
4377static u64 qib_portcntr_7322(struct qib_pportdata *ppd, u32 reg)
4378{
4379 struct qib_devdata *dd = ppd->dd;
4380 u64 ret = 0ULL;
4381 u16 creg;
4382 /* 0xffff for unimplemented or synthesized counters */
4383 static const u32 xlator[] = {
4384 [QIBPORTCNTR_PKTSEND] = crp_pktsend | _PORT_64BIT_FLAG,
4385 [QIBPORTCNTR_WORDSEND] = crp_wordsend | _PORT_64BIT_FLAG,
4386 [QIBPORTCNTR_PSXMITDATA] = crp_psxmitdatacount,
4387 [QIBPORTCNTR_PSXMITPKTS] = crp_psxmitpktscount,
4388 [QIBPORTCNTR_PSXMITWAIT] = crp_psxmitwaitcount,
4389 [QIBPORTCNTR_SENDSTALL] = crp_sendstall,
4390 [QIBPORTCNTR_PKTRCV] = crp_pktrcv | _PORT_64BIT_FLAG,
4391 [QIBPORTCNTR_PSRCVDATA] = crp_psrcvdatacount,
4392 [QIBPORTCNTR_PSRCVPKTS] = crp_psrcvpktscount,
4393 [QIBPORTCNTR_RCVEBP] = crp_rcvebp,
4394 [QIBPORTCNTR_RCVOVFL] = crp_rcvovfl,
4395 [QIBPORTCNTR_WORDRCV] = crp_wordrcv | _PORT_64BIT_FLAG,
4396 [QIBPORTCNTR_RXDROPPKT] = 0xffff, /* not needed for 7322 */
4397 [QIBPORTCNTR_RXLOCALPHYERR] = crp_rxotherlocalphyerr,
4398 [QIBPORTCNTR_RXVLERR] = crp_rxvlerr,
4399 [QIBPORTCNTR_ERRICRC] = crp_erricrc,
4400 [QIBPORTCNTR_ERRVCRC] = crp_errvcrc,
4401 [QIBPORTCNTR_ERRLPCRC] = crp_errlpcrc,
4402 [QIBPORTCNTR_BADFORMAT] = crp_badformat,
4403 [QIBPORTCNTR_ERR_RLEN] = crp_err_rlen,
4404 [QIBPORTCNTR_IBSYMBOLERR] = crp_ibsymbolerr,
4405 [QIBPORTCNTR_INVALIDRLEN] = crp_invalidrlen,
4406 [QIBPORTCNTR_UNSUPVL] = crp_txunsupvl,
4407 [QIBPORTCNTR_EXCESSBUFOVFL] = crp_excessbufferovfl,
4408 [QIBPORTCNTR_ERRLINK] = crp_errlink,
4409 [QIBPORTCNTR_IBLINKDOWN] = crp_iblinkdown,
4410 [QIBPORTCNTR_IBLINKERRRECOV] = crp_iblinkerrrecov,
4411 [QIBPORTCNTR_LLI] = crp_locallinkintegrityerr,
4412 [QIBPORTCNTR_VL15PKTDROP] = crp_vl15droppedpkt,
4413 [QIBPORTCNTR_ERRPKEY] = crp_errpkey,
4414 /*
4415 * the next 3 aren't really counters, but were implemented
4416 * as counters in older chips, so still get accessed as
4417 * though they were counters from this code.
4418 */
4419 [QIBPORTCNTR_PSINTERVAL] = krp_psinterval,
4420 [QIBPORTCNTR_PSSTART] = krp_psstart,
4421 [QIBPORTCNTR_PSSTAT] = krp_psstat,
4422 /* pseudo-counter, summed for all ports */
4423 [QIBPORTCNTR_KHDROVFL] = 0xffff,
4424 };
4425
4426 if (reg >= ARRAY_SIZE(xlator)) {
4427 qib_devinfo(ppd->dd->pcidev,
4428 "Unimplemented portcounter %u\n", reg);
4429 goto done;
4430 }
4431 creg = xlator[reg] & _PORT_CNTR_IDXMASK;
4432
4433 /* handle non-counters and special cases first */
4434 if (reg == QIBPORTCNTR_KHDROVFL) {
4435 int i;
4436
4437 /* sum over all kernel contexts (skip if mini_init) */
4438 for (i = 0; dd->rcd && i < dd->first_user_ctxt; i++) {
4439 struct qib_ctxtdata *rcd = dd->rcd[i];
4440
4441 if (!rcd || rcd->ppd != ppd)
4442 continue;
4443 ret += read_7322_creg32(dd, cr_base_egrovfl + i);
4444 }
4445 goto done;
4446 } else if (reg == QIBPORTCNTR_RXDROPPKT) {
4447 /*
4448 * Used as part of the synthesis of port_rcv_errors
4449 * in the verbs code for IBTA counters. Not needed for 7322,
4450 * because all the errors are already counted by other cntrs.
4451 */
4452 goto done;
4453 } else if (reg == QIBPORTCNTR_PSINTERVAL ||
4454 reg == QIBPORTCNTR_PSSTART || reg == QIBPORTCNTR_PSSTAT) {
4455 /* were counters in older chips, now per-port kernel regs */
4456 ret = qib_read_kreg_port(ppd, creg);
4457 goto done;
4458 }
4459
4460 /*
4461 * Only fast increment counters are 64 bits; use 32 bit reads to
4462 * avoid two independent reads when on Opteron.
4463 */
4464 if (xlator[reg] & _PORT_64BIT_FLAG)
4465 ret = read_7322_creg_port(ppd, creg);
4466 else
4467 ret = read_7322_creg32_port(ppd, creg);
4468 if (creg == crp_ibsymbolerr) {
4469 if (ppd->cpspec->ibdeltainprog)
4470 ret -= ret - ppd->cpspec->ibsymsnap;
4471 ret -= ppd->cpspec->ibsymdelta;
4472 } else if (creg == crp_iblinkerrrecov) {
4473 if (ppd->cpspec->ibdeltainprog)
4474 ret -= ret - ppd->cpspec->iblnkerrsnap;
4475 ret -= ppd->cpspec->iblnkerrdelta;
4476 } else if (creg == crp_errlink)
4477 ret -= ppd->cpspec->ibmalfdelta;
4478 else if (creg == crp_iblinkdown)
4479 ret += ppd->cpspec->iblnkdowndelta;
4480done:
4481 return ret;
4482}
4483
4484/*
4485 * Device counter names (not port-specific), one line per stat,
4486 * single string. Used by utilities like ipathstats to print the stats
4487 * in a way which works for different versions of drivers, without changing
4488 * the utility. Names need to be 12 chars or less (w/o newline), for proper
4489 * display by utility.
4490 * Non-error counters are first.
4491 * Start of "error" conters is indicated by a leading "E " on the first
4492 * "error" counter, and doesn't count in label length.
4493 * The EgrOvfl list needs to be last so we truncate them at the configured
4494 * context count for the device.
4495 * cntr7322indices contains the corresponding register indices.
4496 */
4497static const char cntr7322names[] =
4498 "Interrupts\n"
4499 "HostBusStall\n"
4500 "E RxTIDFull\n"
4501 "RxTIDInvalid\n"
4502 "RxTIDFloDrop\n" /* 7322 only */
4503 "Ctxt0EgrOvfl\n"
4504 "Ctxt1EgrOvfl\n"
4505 "Ctxt2EgrOvfl\n"
4506 "Ctxt3EgrOvfl\n"
4507 "Ctxt4EgrOvfl\n"
4508 "Ctxt5EgrOvfl\n"
4509 "Ctxt6EgrOvfl\n"
4510 "Ctxt7EgrOvfl\n"
4511 "Ctxt8EgrOvfl\n"
4512 "Ctxt9EgrOvfl\n"
4513 "Ctx10EgrOvfl\n"
4514 "Ctx11EgrOvfl\n"
4515 "Ctx12EgrOvfl\n"
4516 "Ctx13EgrOvfl\n"
4517 "Ctx14EgrOvfl\n"
4518 "Ctx15EgrOvfl\n"
4519 "Ctx16EgrOvfl\n"
4520 "Ctx17EgrOvfl\n"
4521 ;
4522
4523static const u32 cntr7322indices[] = {
4524 cr_lbint | _PORT_64BIT_FLAG,
4525 cr_lbstall | _PORT_64BIT_FLAG,
4526 cr_tidfull,
4527 cr_tidinvalid,
4528 cr_rxtidflowdrop,
4529 cr_base_egrovfl + 0,
4530 cr_base_egrovfl + 1,
4531 cr_base_egrovfl + 2,
4532 cr_base_egrovfl + 3,
4533 cr_base_egrovfl + 4,
4534 cr_base_egrovfl + 5,
4535 cr_base_egrovfl + 6,
4536 cr_base_egrovfl + 7,
4537 cr_base_egrovfl + 8,
4538 cr_base_egrovfl + 9,
4539 cr_base_egrovfl + 10,
4540 cr_base_egrovfl + 11,
4541 cr_base_egrovfl + 12,
4542 cr_base_egrovfl + 13,
4543 cr_base_egrovfl + 14,
4544 cr_base_egrovfl + 15,
4545 cr_base_egrovfl + 16,
4546 cr_base_egrovfl + 17,
4547};
4548
4549/*
4550 * same as cntr7322names and cntr7322indices, but for port-specific counters.
4551 * portcntr7322indices is somewhat complicated by some registers needing
4552 * adjustments of various kinds, and those are ORed with _PORT_VIRT_FLAG
4553 */
4554static const char portcntr7322names[] =
4555 "TxPkt\n"
4556 "TxFlowPkt\n"
4557 "TxWords\n"
4558 "RxPkt\n"
4559 "RxFlowPkt\n"
4560 "RxWords\n"
4561 "TxFlowStall\n"
4562 "TxDmaDesc\n" /* 7220 and 7322-only */
4563 "E RxDlidFltr\n" /* 7220 and 7322-only */
4564 "IBStatusChng\n"
4565 "IBLinkDown\n"
4566 "IBLnkRecov\n"
4567 "IBRxLinkErr\n"
4568 "IBSymbolErr\n"
4569 "RxLLIErr\n"
4570 "RxBadFormat\n"
4571 "RxBadLen\n"
4572 "RxBufOvrfl\n"
4573 "RxEBP\n"
4574 "RxFlowCtlErr\n"
4575 "RxICRCerr\n"
4576 "RxLPCRCerr\n"
4577 "RxVCRCerr\n"
4578 "RxInvalLen\n"
4579 "RxInvalPKey\n"
4580 "RxPktDropped\n"
4581 "TxBadLength\n"
4582 "TxDropped\n"
4583 "TxInvalLen\n"
4584 "TxUnderrun\n"
4585 "TxUnsupVL\n"
4586 "RxLclPhyErr\n" /* 7220 and 7322-only from here down */
4587 "RxVL15Drop\n"
4588 "RxVlErr\n"
4589 "XcessBufOvfl\n"
4590 "RxQPBadCtxt\n" /* 7322-only from here down */
4591 "TXBadHeader\n"
4592 ;
4593
4594static const u32 portcntr7322indices[] = {
4595 QIBPORTCNTR_PKTSEND | _PORT_VIRT_FLAG,
4596 crp_pktsendflow,
4597 QIBPORTCNTR_WORDSEND | _PORT_VIRT_FLAG,
4598 QIBPORTCNTR_PKTRCV | _PORT_VIRT_FLAG,
4599 crp_pktrcvflowctrl,
4600 QIBPORTCNTR_WORDRCV | _PORT_VIRT_FLAG,
4601 QIBPORTCNTR_SENDSTALL | _PORT_VIRT_FLAG,
4602 crp_txsdmadesc | _PORT_64BIT_FLAG,
4603 crp_rxdlidfltr,
4604 crp_ibstatuschange,
4605 QIBPORTCNTR_IBLINKDOWN | _PORT_VIRT_FLAG,
4606 QIBPORTCNTR_IBLINKERRRECOV | _PORT_VIRT_FLAG,
4607 QIBPORTCNTR_ERRLINK | _PORT_VIRT_FLAG,
4608 QIBPORTCNTR_IBSYMBOLERR | _PORT_VIRT_FLAG,
4609 QIBPORTCNTR_LLI | _PORT_VIRT_FLAG,
4610 QIBPORTCNTR_BADFORMAT | _PORT_VIRT_FLAG,
4611 QIBPORTCNTR_ERR_RLEN | _PORT_VIRT_FLAG,
4612 QIBPORTCNTR_RCVOVFL | _PORT_VIRT_FLAG,
4613 QIBPORTCNTR_RCVEBP | _PORT_VIRT_FLAG,
4614 crp_rcvflowctrlviol,
4615 QIBPORTCNTR_ERRICRC | _PORT_VIRT_FLAG,
4616 QIBPORTCNTR_ERRLPCRC | _PORT_VIRT_FLAG,
4617 QIBPORTCNTR_ERRVCRC | _PORT_VIRT_FLAG,
4618 QIBPORTCNTR_INVALIDRLEN | _PORT_VIRT_FLAG,
4619 QIBPORTCNTR_ERRPKEY | _PORT_VIRT_FLAG,
4620 QIBPORTCNTR_RXDROPPKT | _PORT_VIRT_FLAG,
4621 crp_txminmaxlenerr,
4622 crp_txdroppedpkt,
4623 crp_txlenerr,
4624 crp_txunderrun,
4625 crp_txunsupvl,
4626 QIBPORTCNTR_RXLOCALPHYERR | _PORT_VIRT_FLAG,
4627 QIBPORTCNTR_VL15PKTDROP | _PORT_VIRT_FLAG,
4628 QIBPORTCNTR_RXVLERR | _PORT_VIRT_FLAG,
4629 QIBPORTCNTR_EXCESSBUFOVFL | _PORT_VIRT_FLAG,
4630 crp_rxqpinvalidctxt,
4631 crp_txhdrerr,
4632};
4633
4634/* do all the setup to make the counter reads efficient later */
4635static void init_7322_cntrnames(struct qib_devdata *dd)
4636{
4637 int i, j = 0;
4638 char *s;
4639
4640 for (i = 0, s = (char *)cntr7322names; s && j <= dd->cfgctxts;
4641 i++) {
4642 /* we always have at least one counter before the egrovfl */
4643 if (!j && !strncmp("Ctxt0EgrOvfl", s + 1, 12))
4644 j = 1;
4645 s = strchr(s + 1, '\n');
4646 if (s && j)
4647 j++;
4648 }
4649 dd->cspec->ncntrs = i;
4650 if (!s)
4651 /* full list; size is without terminating null */
4652 dd->cspec->cntrnamelen = sizeof(cntr7322names) - 1;
4653 else
4654 dd->cspec->cntrnamelen = 1 + s - cntr7322names;
4655 dd->cspec->cntrs = kmalloc(dd->cspec->ncntrs
4656 * sizeof(u64), GFP_KERNEL);
4657 if (!dd->cspec->cntrs)
4658 qib_dev_err(dd, "Failed allocation for counters\n");
4659
4660 for (i = 0, s = (char *)portcntr7322names; s; i++)
4661 s = strchr(s + 1, '\n');
4662 dd->cspec->nportcntrs = i - 1;
4663 dd->cspec->portcntrnamelen = sizeof(portcntr7322names) - 1;
4664 for (i = 0; i < dd->num_pports; ++i) {
4665 dd->pport[i].cpspec->portcntrs = kmalloc(dd->cspec->nportcntrs
4666 * sizeof(u64), GFP_KERNEL);
4667 if (!dd->pport[i].cpspec->portcntrs)
4668 qib_dev_err(dd, "Failed allocation for"
4669 " portcounters\n");
4670 }
4671}
4672
4673static u32 qib_read_7322cntrs(struct qib_devdata *dd, loff_t pos, char **namep,
4674 u64 **cntrp)
4675{
4676 u32 ret;
4677
4678 if (namep) {
4679 ret = dd->cspec->cntrnamelen;
4680 if (pos >= ret)
4681 ret = 0; /* final read after getting everything */
4682 else
4683 *namep = (char *) cntr7322names;
4684 } else {
4685 u64 *cntr = dd->cspec->cntrs;
4686 int i;
4687
4688 ret = dd->cspec->ncntrs * sizeof(u64);
4689 if (!cntr || pos >= ret) {
4690 /* everything read, or couldn't get memory */
4691 ret = 0;
4692 goto done;
4693 }
4694 *cntrp = cntr;
4695 for (i = 0; i < dd->cspec->ncntrs; i++)
4696 if (cntr7322indices[i] & _PORT_64BIT_FLAG)
4697 *cntr++ = read_7322_creg(dd,
4698 cntr7322indices[i] &
4699 _PORT_CNTR_IDXMASK);
4700 else
4701 *cntr++ = read_7322_creg32(dd,
4702 cntr7322indices[i]);
4703 }
4704done:
4705 return ret;
4706}
4707
4708static u32 qib_read_7322portcntrs(struct qib_devdata *dd, loff_t pos, u32 port,
4709 char **namep, u64 **cntrp)
4710{
4711 u32 ret;
4712
4713 if (namep) {
4714 ret = dd->cspec->portcntrnamelen;
4715 if (pos >= ret)
4716 ret = 0; /* final read after getting everything */
4717 else
4718 *namep = (char *)portcntr7322names;
4719 } else {
4720 struct qib_pportdata *ppd = &dd->pport[port];
4721 u64 *cntr = ppd->cpspec->portcntrs;
4722 int i;
4723
4724 ret = dd->cspec->nportcntrs * sizeof(u64);
4725 if (!cntr || pos >= ret) {
4726 /* everything read, or couldn't get memory */
4727 ret = 0;
4728 goto done;
4729 }
4730 *cntrp = cntr;
4731 for (i = 0; i < dd->cspec->nportcntrs; i++) {
4732 if (portcntr7322indices[i] & _PORT_VIRT_FLAG)
4733 *cntr++ = qib_portcntr_7322(ppd,
4734 portcntr7322indices[i] &
4735 _PORT_CNTR_IDXMASK);
4736 else if (portcntr7322indices[i] & _PORT_64BIT_FLAG)
4737 *cntr++ = read_7322_creg_port(ppd,
4738 portcntr7322indices[i] &
4739 _PORT_CNTR_IDXMASK);
4740 else
4741 *cntr++ = read_7322_creg32_port(ppd,
4742 portcntr7322indices[i]);
4743 }
4744 }
4745done:
4746 return ret;
4747}
4748
4749/**
4750 * qib_get_7322_faststats - get word counters from chip before they overflow
4751 * @opaque - contains a pointer to the qlogic_ib device qib_devdata
4752 *
4753 * VESTIGIAL IBA7322 has no "small fast counters", so the only
4754 * real purpose of this function is to maintain the notion of
4755 * "active time", which in turn is only logged into the eeprom,
4756 * which we don;t have, yet, for 7322-based boards.
4757 *
4758 * called from add_timer
4759 */
4760static void qib_get_7322_faststats(unsigned long opaque)
4761{
4762 struct qib_devdata *dd = (struct qib_devdata *) opaque;
4763 struct qib_pportdata *ppd;
4764 unsigned long flags;
4765 u64 traffic_wds;
4766 int pidx;
4767
4768 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
4769 ppd = dd->pport + pidx;
4770
4771 /*
4772 * If port isn't enabled or not operational ports, or
4773 * diags is running (can cause memory diags to fail)
4774 * skip this port this time.
4775 */
4776 if (!ppd->link_speed_supported || !(dd->flags & QIB_INITTED)
4777 || dd->diag_client)
4778 continue;
4779
4780 /*
4781 * Maintain an activity timer, based on traffic
4782 * exceeding a threshold, so we need to check the word-counts
4783 * even if they are 64-bit.
4784 */
4785 traffic_wds = qib_portcntr_7322(ppd, QIBPORTCNTR_WORDRCV) +
4786 qib_portcntr_7322(ppd, QIBPORTCNTR_WORDSEND);
4787 spin_lock_irqsave(&ppd->dd->eep_st_lock, flags);
4788 traffic_wds -= ppd->dd->traffic_wds;
4789 ppd->dd->traffic_wds += traffic_wds;
4790 if (traffic_wds >= QIB_TRAFFIC_ACTIVE_THRESHOLD)
4791 atomic_add(ACTIVITY_TIMER, &ppd->dd->active_time);
4792 spin_unlock_irqrestore(&ppd->dd->eep_st_lock, flags);
4793 if (ppd->cpspec->qdr_dfe_on && (ppd->link_speed_active &
4794 QIB_IB_QDR) &&
4795 (ppd->lflags & (QIBL_LINKINIT | QIBL_LINKARMED |
4796 QIBL_LINKACTIVE)) &&
4797 ppd->cpspec->qdr_dfe_time &&
4798 time_after64(get_jiffies_64(), ppd->cpspec->qdr_dfe_time)) {
4799 ppd->cpspec->qdr_dfe_on = 0;
4800
4801 qib_write_kreg_port(ppd, krp_static_adapt_dis(2),
4802 ppd->dd->cspec->r1 ?
4803 QDR_STATIC_ADAPT_INIT_R1 :
4804 QDR_STATIC_ADAPT_INIT);
4805 force_h1(ppd);
4806 }
4807 }
4808 mod_timer(&dd->stats_timer, jiffies + HZ * ACTIVITY_TIMER);
4809}
4810
4811/*
4812 * If we were using MSIx, try to fallback to INTx.
4813 */
4814static int qib_7322_intr_fallback(struct qib_devdata *dd)
4815{
4816 if (!dd->cspec->num_msix_entries)
4817 return 0; /* already using INTx */
4818
4819 qib_devinfo(dd->pcidev, "MSIx interrupt not detected,"
4820 " trying INTx interrupts\n");
4821 qib_7322_nomsix(dd);
4822 qib_enable_intx(dd->pcidev);
4823 qib_setup_7322_interrupt(dd, 0);
4824 return 1;
4825}
4826
4827/*
4828 * Reset the XGXS (between serdes and IBC). Slightly less intrusive
4829 * than resetting the IBC or external link state, and useful in some
4830 * cases to cause some retraining. To do this right, we reset IBC
4831 * as well, then return to previous state (which may be still in reset)
4832 * NOTE: some callers of this "know" this writes the current value
4833 * of cpspec->ibcctrl_a as part of it's operation, so if that changes,
4834 * check all callers.
4835 */
4836static void qib_7322_mini_pcs_reset(struct qib_pportdata *ppd)
4837{
4838 u64 val;
4839 struct qib_devdata *dd = ppd->dd;
4840 const u64 reset_bits = SYM_MASK(IBPCSConfig_0, xcv_rreset) |
4841 SYM_MASK(IBPCSConfig_0, xcv_treset) |
4842 SYM_MASK(IBPCSConfig_0, tx_rx_reset);
4843
4844 val = qib_read_kreg_port(ppd, krp_ib_pcsconfig);
b9e03e04
RC
4845 qib_write_kreg(dd, kr_hwerrmask,
4846 dd->cspec->hwerrmask & ~HWE_MASK(statusValidNoEop));
f931551b
RC
4847 qib_write_kreg_port(ppd, krp_ibcctrl_a,
4848 ppd->cpspec->ibcctrl_a &
4849 ~SYM_MASK(IBCCtrlA_0, IBLinkEn));
4850
4851 qib_write_kreg_port(ppd, krp_ib_pcsconfig, val | reset_bits);
4852 qib_read_kreg32(dd, kr_scratch);
4853 qib_write_kreg_port(ppd, krp_ib_pcsconfig, val & ~reset_bits);
4854 qib_write_kreg_port(ppd, krp_ibcctrl_a, ppd->cpspec->ibcctrl_a);
4855 qib_write_kreg(dd, kr_scratch, 0ULL);
b9e03e04
RC
4856 qib_write_kreg(dd, kr_hwerrclear,
4857 SYM_MASK(HwErrClear, statusValidNoEopClear));
4858 qib_write_kreg(dd, kr_hwerrmask, dd->cspec->hwerrmask);
f931551b
RC
4859}
4860
4861/*
4862 * This code for non-IBTA-compliant IB speed negotiation is only known to
4863 * work for the SDR to DDR transition, and only between an HCA and a switch
4864 * with recent firmware. It is based on observed heuristics, rather than
4865 * actual knowledge of the non-compliant speed negotiation.
4866 * It has a number of hard-coded fields, since the hope is to rewrite this
4867 * when a spec is available on how the negoation is intended to work.
4868 */
4869static void autoneg_7322_sendpkt(struct qib_pportdata *ppd, u32 *hdr,
4870 u32 dcnt, u32 *data)
4871{
4872 int i;
4873 u64 pbc;
4874 u32 __iomem *piobuf;
4875 u32 pnum, control, len;
4876 struct qib_devdata *dd = ppd->dd;
4877
4878 i = 0;
4879 len = 7 + dcnt + 1; /* 7 dword header, dword data, icrc */
4880 control = qib_7322_setpbc_control(ppd, len, 0, 15);
4881 pbc = ((u64) control << 32) | len;
4882 while (!(piobuf = qib_7322_getsendbuf(ppd, pbc, &pnum))) {
4883 if (i++ > 15)
4884 return;
4885 udelay(2);
4886 }
4887 /* disable header check on this packet, since it can't be valid */
4888 dd->f_txchk_change(dd, pnum, 1, TXCHK_CHG_TYPE_DIS1, NULL);
4889 writeq(pbc, piobuf);
4890 qib_flush_wc();
4891 qib_pio_copy(piobuf + 2, hdr, 7);
4892 qib_pio_copy(piobuf + 9, data, dcnt);
4893 if (dd->flags & QIB_USE_SPCL_TRIG) {
4894 u32 spcl_off = (pnum >= dd->piobcnt2k) ? 2047 : 1023;
4895
4896 qib_flush_wc();
4897 __raw_writel(0xaebecede, piobuf + spcl_off);
4898 }
4899 qib_flush_wc();
4900 qib_sendbuf_done(dd, pnum);
4901 /* and re-enable hdr check */
4902 dd->f_txchk_change(dd, pnum, 1, TXCHK_CHG_TYPE_ENAB1, NULL);
4903}
4904
4905/*
4906 * _start packet gets sent twice at start, _done gets sent twice at end
4907 */
4908static void qib_autoneg_7322_send(struct qib_pportdata *ppd, int which)
4909{
4910 struct qib_devdata *dd = ppd->dd;
4911 static u32 swapped;
4912 u32 dw, i, hcnt, dcnt, *data;
4913 static u32 hdr[7] = { 0xf002ffff, 0x48ffff, 0x6400abba };
4914 static u32 madpayload_start[0x40] = {
4915 0x1810103, 0x1, 0x0, 0x0, 0x2c90000, 0x2c9, 0x0, 0x0,
4916 0xffffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
4917 0x1, 0x1388, 0x15e, 0x1, /* rest 0's */
4918 };
4919 static u32 madpayload_done[0x40] = {
4920 0x1810103, 0x1, 0x0, 0x0, 0x2c90000, 0x2c9, 0x0, 0x0,
4921 0xffffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
4922 0x40000001, 0x1388, 0x15e, /* rest 0's */
4923 };
4924
4925 dcnt = ARRAY_SIZE(madpayload_start);
4926 hcnt = ARRAY_SIZE(hdr);
4927 if (!swapped) {
4928 /* for maintainability, do it at runtime */
4929 for (i = 0; i < hcnt; i++) {
4930 dw = (__force u32) cpu_to_be32(hdr[i]);
4931 hdr[i] = dw;
4932 }
4933 for (i = 0; i < dcnt; i++) {
4934 dw = (__force u32) cpu_to_be32(madpayload_start[i]);
4935 madpayload_start[i] = dw;
4936 dw = (__force u32) cpu_to_be32(madpayload_done[i]);
4937 madpayload_done[i] = dw;
4938 }
4939 swapped = 1;
4940 }
4941
4942 data = which ? madpayload_done : madpayload_start;
4943
4944 autoneg_7322_sendpkt(ppd, hdr, dcnt, data);
4945 qib_read_kreg64(dd, kr_scratch);
4946 udelay(2);
4947 autoneg_7322_sendpkt(ppd, hdr, dcnt, data);
4948 qib_read_kreg64(dd, kr_scratch);
4949 udelay(2);
4950}
4951
4952/*
4953 * Do the absolute minimum to cause an IB speed change, and make it
4954 * ready, but don't actually trigger the change. The caller will
4955 * do that when ready (if link is in Polling training state, it will
4956 * happen immediately, otherwise when link next goes down)
4957 *
4958 * This routine should only be used as part of the DDR autonegotation
4959 * code for devices that are not compliant with IB 1.2 (or code that
4960 * fixes things up for same).
4961 *
4962 * When link has gone down, and autoneg enabled, or autoneg has
4963 * failed and we give up until next time we set both speeds, and
4964 * then we want IBTA enabled as well as "use max enabled speed.
4965 */
4966static void set_7322_ibspeed_fast(struct qib_pportdata *ppd, u32 speed)
4967{
4968 u64 newctrlb;
4969 newctrlb = ppd->cpspec->ibcctrl_b & ~(IBA7322_IBC_SPEED_MASK |
4970 IBA7322_IBC_IBTA_1_2_MASK |
4971 IBA7322_IBC_MAX_SPEED_MASK);
4972
4973 if (speed & (speed - 1)) /* multiple speeds */
4974 newctrlb |= (speed << IBA7322_IBC_SPEED_LSB) |
4975 IBA7322_IBC_IBTA_1_2_MASK |
4976 IBA7322_IBC_MAX_SPEED_MASK;
4977 else
4978 newctrlb |= speed == QIB_IB_QDR ?
4979 IBA7322_IBC_SPEED_QDR | IBA7322_IBC_IBTA_1_2_MASK :
4980 ((speed == QIB_IB_DDR ?
4981 IBA7322_IBC_SPEED_DDR : IBA7322_IBC_SPEED_SDR));
4982
4983 if (newctrlb == ppd->cpspec->ibcctrl_b)
4984 return;
4985
4986 ppd->cpspec->ibcctrl_b = newctrlb;
4987 qib_write_kreg_port(ppd, krp_ibcctrl_b, ppd->cpspec->ibcctrl_b);
4988 qib_write_kreg(ppd->dd, kr_scratch, 0);
4989}
4990
4991/*
4992 * This routine is only used when we are not talking to another
4993 * IB 1.2-compliant device that we think can do DDR.
4994 * (This includes all existing switch chips as of Oct 2007.)
4995 * 1.2-compliant devices go directly to DDR prior to reaching INIT
4996 */
4997static void try_7322_autoneg(struct qib_pportdata *ppd)
4998{
4999 unsigned long flags;
5000
5001 spin_lock_irqsave(&ppd->lflags_lock, flags);
5002 ppd->lflags |= QIBL_IB_AUTONEG_INPROG;
5003 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
5004 qib_autoneg_7322_send(ppd, 0);
5005 set_7322_ibspeed_fast(ppd, QIB_IB_DDR);
5006 qib_7322_mini_pcs_reset(ppd);
5007 /* 2 msec is minimum length of a poll cycle */
f0626710
TH
5008 queue_delayed_work(ib_wq, &ppd->cpspec->autoneg_work,
5009 msecs_to_jiffies(2));
f931551b
RC
5010}
5011
5012/*
5013 * Handle the empirically determined mechanism for auto-negotiation
5014 * of DDR speed with switches.
5015 */
5016static void autoneg_7322_work(struct work_struct *work)
5017{
5018 struct qib_pportdata *ppd;
5019 struct qib_devdata *dd;
5020 u64 startms;
5021 u32 i;
5022 unsigned long flags;
5023
5024 ppd = container_of(work, struct qib_chippport_specific,
5025 autoneg_work.work)->ppd;
5026 dd = ppd->dd;
5027
5028 startms = jiffies_to_msecs(jiffies);
5029
5030 /*
5031 * Busy wait for this first part, it should be at most a
5032 * few hundred usec, since we scheduled ourselves for 2msec.
5033 */
5034 for (i = 0; i < 25; i++) {
5035 if (SYM_FIELD(ppd->lastibcstat, IBCStatusA_0, LinkState)
5036 == IB_7322_LT_STATE_POLLQUIET) {
5037 qib_set_linkstate(ppd, QIB_IB_LINKDOWN_DISABLE);
5038 break;
5039 }
5040 udelay(100);
5041 }
5042
5043 if (!(ppd->lflags & QIBL_IB_AUTONEG_INPROG))
5044 goto done; /* we got there early or told to stop */
5045
5046 /* we expect this to timeout */
5047 if (wait_event_timeout(ppd->cpspec->autoneg_wait,
5048 !(ppd->lflags & QIBL_IB_AUTONEG_INPROG),
5049 msecs_to_jiffies(90)))
5050 goto done;
5051 qib_7322_mini_pcs_reset(ppd);
5052
5053 /* we expect this to timeout */
5054 if (wait_event_timeout(ppd->cpspec->autoneg_wait,
5055 !(ppd->lflags & QIBL_IB_AUTONEG_INPROG),
5056 msecs_to_jiffies(1700)))
5057 goto done;
5058 qib_7322_mini_pcs_reset(ppd);
5059
5060 set_7322_ibspeed_fast(ppd, QIB_IB_SDR);
5061
5062 /*
5063 * Wait up to 250 msec for link to train and get to INIT at DDR;
5064 * this should terminate early.
5065 */
5066 wait_event_timeout(ppd->cpspec->autoneg_wait,
5067 !(ppd->lflags & QIBL_IB_AUTONEG_INPROG),
5068 msecs_to_jiffies(250));
5069done:
5070 if (ppd->lflags & QIBL_IB_AUTONEG_INPROG) {
5071 spin_lock_irqsave(&ppd->lflags_lock, flags);
5072 ppd->lflags &= ~QIBL_IB_AUTONEG_INPROG;
5073 if (ppd->cpspec->autoneg_tries == AUTONEG_TRIES) {
5074 ppd->lflags |= QIBL_IB_AUTONEG_FAILED;
5075 ppd->cpspec->autoneg_tries = 0;
5076 }
5077 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
5078 set_7322_ibspeed_fast(ppd, ppd->link_speed_enabled);
5079 }
5080}
5081
5082/*
5083 * This routine is used to request IPG set in the QLogic switch.
5084 * Only called if r1.
5085 */
5086static void try_7322_ipg(struct qib_pportdata *ppd)
5087{
5088 struct qib_ibport *ibp = &ppd->ibport_data;
5089 struct ib_mad_send_buf *send_buf;
5090 struct ib_mad_agent *agent;
5091 struct ib_smp *smp;
5092 unsigned delay;
5093 int ret;
5094
5095 agent = ibp->send_agent;
5096 if (!agent)
5097 goto retry;
5098
5099 send_buf = ib_create_send_mad(agent, 0, 0, 0, IB_MGMT_MAD_HDR,
5100 IB_MGMT_MAD_DATA, GFP_ATOMIC);
5101 if (IS_ERR(send_buf))
5102 goto retry;
5103
5104 if (!ibp->smi_ah) {
5105 struct ib_ah_attr attr;
5106 struct ib_ah *ah;
5107
5108 memset(&attr, 0, sizeof attr);
5109 attr.dlid = be16_to_cpu(IB_LID_PERMISSIVE);
5110 attr.port_num = ppd->port;
5111 ah = ib_create_ah(ibp->qp0->ibqp.pd, &attr);
5112 if (IS_ERR(ah))
5113 ret = -EINVAL;
5114 else {
5115 send_buf->ah = ah;
5116 ibp->smi_ah = to_iah(ah);
5117 ret = 0;
5118 }
5119 } else {
5120 send_buf->ah = &ibp->smi_ah->ibah;
5121 ret = 0;
5122 }
5123
5124 smp = send_buf->mad;
5125 smp->base_version = IB_MGMT_BASE_VERSION;
5126 smp->mgmt_class = IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE;
5127 smp->class_version = 1;
5128 smp->method = IB_MGMT_METHOD_SEND;
5129 smp->hop_cnt = 1;
5130 smp->attr_id = QIB_VENDOR_IPG;
5131 smp->attr_mod = 0;
5132
5133 if (!ret)
5134 ret = ib_post_send_mad(send_buf, NULL);
5135 if (ret)
5136 ib_free_send_mad(send_buf);
5137retry:
5138 delay = 2 << ppd->cpspec->ipg_tries;
f0626710
TH
5139 queue_delayed_work(ib_wq, &ppd->cpspec->ipg_work,
5140 msecs_to_jiffies(delay));
f931551b
RC
5141}
5142
5143/*
5144 * Timeout handler for setting IPG.
5145 * Only called if r1.
5146 */
5147static void ipg_7322_work(struct work_struct *work)
5148{
5149 struct qib_pportdata *ppd;
5150
5151 ppd = container_of(work, struct qib_chippport_specific,
5152 ipg_work.work)->ppd;
5153 if ((ppd->lflags & (QIBL_LINKINIT | QIBL_LINKARMED | QIBL_LINKACTIVE))
5154 && ++ppd->cpspec->ipg_tries <= 10)
5155 try_7322_ipg(ppd);
5156}
5157
5158static u32 qib_7322_iblink_state(u64 ibcs)
5159{
5160 u32 state = (u32)SYM_FIELD(ibcs, IBCStatusA_0, LinkState);
5161
5162 switch (state) {
5163 case IB_7322_L_STATE_INIT:
5164 state = IB_PORT_INIT;
5165 break;
5166 case IB_7322_L_STATE_ARM:
5167 state = IB_PORT_ARMED;
5168 break;
5169 case IB_7322_L_STATE_ACTIVE:
5170 /* fall through */
5171 case IB_7322_L_STATE_ACT_DEFER:
5172 state = IB_PORT_ACTIVE;
5173 break;
5174 default: /* fall through */
5175 case IB_7322_L_STATE_DOWN:
5176 state = IB_PORT_DOWN;
5177 break;
5178 }
5179 return state;
5180}
5181
5182/* returns the IBTA port state, rather than the IBC link training state */
5183static u8 qib_7322_phys_portstate(u64 ibcs)
5184{
5185 u8 state = (u8)SYM_FIELD(ibcs, IBCStatusA_0, LinkTrainingState);
5186 return qib_7322_physportstate[state];
5187}
5188
5189static int qib_7322_ib_updown(struct qib_pportdata *ppd, int ibup, u64 ibcs)
5190{
5191 int ret = 0, symadj = 0;
5192 unsigned long flags;
5193 int mult;
5194
5195 spin_lock_irqsave(&ppd->lflags_lock, flags);
5196 ppd->lflags &= ~QIBL_IB_FORCE_NOTIFY;
5197 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
5198
5199 /* Update our picture of width and speed from chip */
5200 if (ibcs & SYM_MASK(IBCStatusA_0, LinkSpeedQDR)) {
5201 ppd->link_speed_active = QIB_IB_QDR;
5202 mult = 4;
5203 } else if (ibcs & SYM_MASK(IBCStatusA_0, LinkSpeedActive)) {
5204 ppd->link_speed_active = QIB_IB_DDR;
5205 mult = 2;
5206 } else {
5207 ppd->link_speed_active = QIB_IB_SDR;
5208 mult = 1;
5209 }
5210 if (ibcs & SYM_MASK(IBCStatusA_0, LinkWidthActive)) {
5211 ppd->link_width_active = IB_WIDTH_4X;
5212 mult *= 4;
5213 } else
5214 ppd->link_width_active = IB_WIDTH_1X;
5215 ppd->delay_mult = ib_rate_to_delay[mult_to_ib_rate(mult)];
5216
5217 if (!ibup) {
5218 u64 clr;
5219
5220 /* Link went down. */
5221 /* do IPG MAD again after linkdown, even if last time failed */
5222 ppd->cpspec->ipg_tries = 0;
5223 clr = qib_read_kreg_port(ppd, krp_ibcstatus_b) &
5224 (SYM_MASK(IBCStatusB_0, heartbeat_timed_out) |
5225 SYM_MASK(IBCStatusB_0, heartbeat_crosstalk));
5226 if (clr)
5227 qib_write_kreg_port(ppd, krp_ibcstatus_b, clr);
5228 if (!(ppd->lflags & (QIBL_IB_AUTONEG_FAILED |
5229 QIBL_IB_AUTONEG_INPROG)))
5230 set_7322_ibspeed_fast(ppd, ppd->link_speed_enabled);
5231 if (!(ppd->lflags & QIBL_IB_AUTONEG_INPROG)) {
dde05cbd
MH
5232 struct qib_qsfp_data *qd =
5233 &ppd->cpspec->qsfp_data;
a77fcf89
RC
5234 /* unlock the Tx settings, speed may change */
5235 qib_write_kreg_port(ppd, krp_tx_deemph_override,
5236 SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
5237 reset_tx_deemphasis_override));
f931551b 5238 qib_cancel_sends(ppd);
a77fcf89
RC
5239 /* on link down, ensure sane pcs state */
5240 qib_7322_mini_pcs_reset(ppd);
dde05cbd
MH
5241 /* schedule the qsfp refresh which should turn the link
5242 off */
5243 if (ppd->dd->flags & QIB_HAS_QSFP) {
5244 qd->t_insert = get_jiffies_64();
5245 schedule_work(&qd->work);
5246 }
f931551b
RC
5247 spin_lock_irqsave(&ppd->sdma_lock, flags);
5248 if (__qib_sdma_running(ppd))
5249 __qib_sdma_process_event(ppd,
5250 qib_sdma_event_e70_go_idle);
5251 spin_unlock_irqrestore(&ppd->sdma_lock, flags);
5252 }
5253 clr = read_7322_creg32_port(ppd, crp_iblinkdown);
5254 if (clr == ppd->cpspec->iblnkdownsnap)
5255 ppd->cpspec->iblnkdowndelta++;
5256 } else {
5257 if (qib_compat_ddr_negotiate &&
5258 !(ppd->lflags & (QIBL_IB_AUTONEG_FAILED |
5259 QIBL_IB_AUTONEG_INPROG)) &&
5260 ppd->link_speed_active == QIB_IB_SDR &&
5261 (ppd->link_speed_enabled & QIB_IB_DDR)
5262 && ppd->cpspec->autoneg_tries < AUTONEG_TRIES) {
5263 /* we are SDR, and auto-negotiation enabled */
5264 ++ppd->cpspec->autoneg_tries;
5265 if (!ppd->cpspec->ibdeltainprog) {
5266 ppd->cpspec->ibdeltainprog = 1;
5267 ppd->cpspec->ibsymdelta +=
5268 read_7322_creg32_port(ppd,
5269 crp_ibsymbolerr) -
5270 ppd->cpspec->ibsymsnap;
5271 ppd->cpspec->iblnkerrdelta +=
5272 read_7322_creg32_port(ppd,
5273 crp_iblinkerrrecov) -
5274 ppd->cpspec->iblnkerrsnap;
5275 }
5276 try_7322_autoneg(ppd);
5277 ret = 1; /* no other IB status change processing */
5278 } else if ((ppd->lflags & QIBL_IB_AUTONEG_INPROG) &&
5279 ppd->link_speed_active == QIB_IB_SDR) {
5280 qib_autoneg_7322_send(ppd, 1);
5281 set_7322_ibspeed_fast(ppd, QIB_IB_DDR);
5282 qib_7322_mini_pcs_reset(ppd);
5283 udelay(2);
5284 ret = 1; /* no other IB status change processing */
5285 } else if ((ppd->lflags & QIBL_IB_AUTONEG_INPROG) &&
5286 (ppd->link_speed_active & QIB_IB_DDR)) {
5287 spin_lock_irqsave(&ppd->lflags_lock, flags);
5288 ppd->lflags &= ~(QIBL_IB_AUTONEG_INPROG |
5289 QIBL_IB_AUTONEG_FAILED);
5290 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
5291 ppd->cpspec->autoneg_tries = 0;
5292 /* re-enable SDR, for next link down */
5293 set_7322_ibspeed_fast(ppd, ppd->link_speed_enabled);
5294 wake_up(&ppd->cpspec->autoneg_wait);
5295 symadj = 1;
5296 } else if (ppd->lflags & QIBL_IB_AUTONEG_FAILED) {
5297 /*
5298 * Clear autoneg failure flag, and do setup
5299 * so we'll try next time link goes down and
5300 * back to INIT (possibly connected to a
5301 * different device).
5302 */
5303 spin_lock_irqsave(&ppd->lflags_lock, flags);
5304 ppd->lflags &= ~QIBL_IB_AUTONEG_FAILED;
5305 spin_unlock_irqrestore(&ppd->lflags_lock, flags);
5306 ppd->cpspec->ibcctrl_b |= IBA7322_IBC_IBTA_1_2_MASK;
5307 symadj = 1;
5308 }
5309 if (!(ppd->lflags & QIBL_IB_AUTONEG_INPROG)) {
5310 symadj = 1;
5311 if (ppd->dd->cspec->r1 && ppd->cpspec->ipg_tries <= 10)
5312 try_7322_ipg(ppd);
5313 if (!ppd->cpspec->recovery_init)
5314 setup_7322_link_recovery(ppd, 0);
5315 ppd->cpspec->qdr_dfe_time = jiffies +
5316 msecs_to_jiffies(QDR_DFE_DISABLE_DELAY);
5317 }
5318 ppd->cpspec->ibmalfusesnap = 0;
5319 ppd->cpspec->ibmalfsnap = read_7322_creg32_port(ppd,
5320 crp_errlink);
5321 }
5322 if (symadj) {
5323 ppd->cpspec->iblnkdownsnap =
5324 read_7322_creg32_port(ppd, crp_iblinkdown);
5325 if (ppd->cpspec->ibdeltainprog) {
5326 ppd->cpspec->ibdeltainprog = 0;
5327 ppd->cpspec->ibsymdelta += read_7322_creg32_port(ppd,
5328 crp_ibsymbolerr) - ppd->cpspec->ibsymsnap;
5329 ppd->cpspec->iblnkerrdelta += read_7322_creg32_port(ppd,
5330 crp_iblinkerrrecov) - ppd->cpspec->iblnkerrsnap;
5331 }
5332 } else if (!ibup && qib_compat_ddr_negotiate &&
5333 !ppd->cpspec->ibdeltainprog &&
5334 !(ppd->lflags & QIBL_IB_AUTONEG_INPROG)) {
5335 ppd->cpspec->ibdeltainprog = 1;
5336 ppd->cpspec->ibsymsnap = read_7322_creg32_port(ppd,
5337 crp_ibsymbolerr);
5338 ppd->cpspec->iblnkerrsnap = read_7322_creg32_port(ppd,
5339 crp_iblinkerrrecov);
5340 }
5341
5342 if (!ret)
5343 qib_setup_7322_setextled(ppd, ibup);
5344 return ret;
5345}
5346
5347/*
5348 * Does read/modify/write to appropriate registers to
5349 * set output and direction bits selected by mask.
5350 * these are in their canonical postions (e.g. lsb of
5351 * dir will end up in D48 of extctrl on existing chips).
5352 * returns contents of GP Inputs.
5353 */
5354static int gpio_7322_mod(struct qib_devdata *dd, u32 out, u32 dir, u32 mask)
5355{
5356 u64 read_val, new_out;
5357 unsigned long flags;
5358
5359 if (mask) {
5360 /* some bits being written, lock access to GPIO */
5361 dir &= mask;
5362 out &= mask;
5363 spin_lock_irqsave(&dd->cspec->gpio_lock, flags);
5364 dd->cspec->extctrl &= ~((u64)mask << SYM_LSB(EXTCtrl, GPIOOe));
5365 dd->cspec->extctrl |= ((u64) dir << SYM_LSB(EXTCtrl, GPIOOe));
5366 new_out = (dd->cspec->gpio_out & ~mask) | out;
5367
5368 qib_write_kreg(dd, kr_extctrl, dd->cspec->extctrl);
5369 qib_write_kreg(dd, kr_gpio_out, new_out);
5370 dd->cspec->gpio_out = new_out;
5371 spin_unlock_irqrestore(&dd->cspec->gpio_lock, flags);
5372 }
5373 /*
5374 * It is unlikely that a read at this time would get valid
5375 * data on a pin whose direction line was set in the same
5376 * call to this function. We include the read here because
5377 * that allows us to potentially combine a change on one pin with
5378 * a read on another, and because the old code did something like
5379 * this.
5380 */
5381 read_val = qib_read_kreg64(dd, kr_extstatus);
5382 return SYM_FIELD(read_val, EXTStatus, GPIOIn);
5383}
5384
5385/* Enable writes to config EEPROM, if possible. Returns previous state */
5386static int qib_7322_eeprom_wen(struct qib_devdata *dd, int wen)
5387{
5388 int prev_wen;
5389 u32 mask;
5390
5391 mask = 1 << QIB_EEPROM_WEN_NUM;
5392 prev_wen = ~gpio_7322_mod(dd, 0, 0, 0) >> QIB_EEPROM_WEN_NUM;
5393 gpio_7322_mod(dd, wen ? 0 : mask, mask, mask);
5394
5395 return prev_wen & 1;
5396}
5397
5398/*
5399 * Read fundamental info we need to use the chip. These are
5400 * the registers that describe chip capabilities, and are
5401 * saved in shadow registers.
5402 */
5403static void get_7322_chip_params(struct qib_devdata *dd)
5404{
5405 u64 val;
5406 u32 piobufs;
5407 int mtu;
5408
5409 dd->palign = qib_read_kreg32(dd, kr_pagealign);
5410
5411 dd->uregbase = qib_read_kreg32(dd, kr_userregbase);
5412
5413 dd->rcvtidcnt = qib_read_kreg32(dd, kr_rcvtidcnt);
5414 dd->rcvtidbase = qib_read_kreg32(dd, kr_rcvtidbase);
5415 dd->rcvegrbase = qib_read_kreg32(dd, kr_rcvegrbase);
5416 dd->piobufbase = qib_read_kreg64(dd, kr_sendpiobufbase);
5417 dd->pio2k_bufbase = dd->piobufbase & 0xffffffff;
5418
5419 val = qib_read_kreg64(dd, kr_sendpiobufcnt);
5420 dd->piobcnt2k = val & ~0U;
5421 dd->piobcnt4k = val >> 32;
5422 val = qib_read_kreg64(dd, kr_sendpiosize);
5423 dd->piosize2k = val & ~0U;
5424 dd->piosize4k = val >> 32;
5425
5426 mtu = ib_mtu_enum_to_int(qib_ibmtu);
5427 if (mtu == -1)
5428 mtu = QIB_DEFAULT_MTU;
5429 dd->pport[0].ibmtu = (u32)mtu;
5430 dd->pport[1].ibmtu = (u32)mtu;
5431
5432 /* these may be adjusted in init_chip_wc_pat() */
5433 dd->pio2kbase = (u32 __iomem *)
5434 ((char __iomem *) dd->kregbase + dd->pio2k_bufbase);
5435 dd->pio4kbase = (u32 __iomem *)
5436 ((char __iomem *) dd->kregbase +
5437 (dd->piobufbase >> 32));
5438 /*
5439 * 4K buffers take 2 pages; we use roundup just to be
5440 * paranoid; we calculate it once here, rather than on
5441 * ever buf allocate
5442 */
5443 dd->align4k = ALIGN(dd->piosize4k, dd->palign);
5444
5445 piobufs = dd->piobcnt4k + dd->piobcnt2k + NUM_VL15_BUFS;
5446
5447 dd->pioavregs = ALIGN(piobufs, sizeof(u64) * BITS_PER_BYTE / 2) /
5448 (sizeof(u64) * BITS_PER_BYTE / 2);
5449}
5450
5451/*
5452 * The chip base addresses in cspec and cpspec have to be set
5453 * after possible init_chip_wc_pat(), rather than in
5454 * get_7322_chip_params(), so split out as separate function
5455 */
5456static void qib_7322_set_baseaddrs(struct qib_devdata *dd)
5457{
5458 u32 cregbase;
5459 cregbase = qib_read_kreg32(dd, kr_counterregbase);
5460
5461 dd->cspec->cregbase = (u64 __iomem *)(cregbase +
5462 (char __iomem *)dd->kregbase);
5463
5464 dd->egrtidbase = (u64 __iomem *)
5465 ((char __iomem *) dd->kregbase + dd->rcvegrbase);
5466
5467 /* port registers are defined as relative to base of chip */
5468 dd->pport[0].cpspec->kpregbase =
5469 (u64 __iomem *)((char __iomem *)dd->kregbase);
5470 dd->pport[1].cpspec->kpregbase =
5471 (u64 __iomem *)(dd->palign +
5472 (char __iomem *)dd->kregbase);
5473 dd->pport[0].cpspec->cpregbase =
5474 (u64 __iomem *)(qib_read_kreg_port(&dd->pport[0],
5475 kr_counterregbase) + (char __iomem *)dd->kregbase);
5476 dd->pport[1].cpspec->cpregbase =
5477 (u64 __iomem *)(qib_read_kreg_port(&dd->pport[1],
5478 kr_counterregbase) + (char __iomem *)dd->kregbase);
5479}
5480
5481/*
5482 * This is a fairly special-purpose observer, so we only support
5483 * the port-specific parts of SendCtrl
5484 */
5485
5486#define SENDCTRL_SHADOWED (SYM_MASK(SendCtrl_0, SendEnable) | \
5487 SYM_MASK(SendCtrl_0, SDmaEnable) | \
5488 SYM_MASK(SendCtrl_0, SDmaIntEnable) | \
5489 SYM_MASK(SendCtrl_0, SDmaSingleDescriptor) | \
5490 SYM_MASK(SendCtrl_0, SDmaHalt) | \
5491 SYM_MASK(SendCtrl_0, IBVLArbiterEn) | \
5492 SYM_MASK(SendCtrl_0, ForceCreditUpToDate))
5493
5494static int sendctrl_hook(struct qib_devdata *dd,
5495 const struct diag_observer *op, u32 offs,
5496 u64 *data, u64 mask, int only_32)
5497{
5498 unsigned long flags;
5499 unsigned idx;
5500 unsigned pidx;
5501 struct qib_pportdata *ppd = NULL;
5502 u64 local_data, all_bits;
5503
5504 /*
5505 * The fixed correspondence between Physical ports and pports is
5506 * severed. We need to hunt for the ppd that corresponds
5507 * to the offset we got. And we have to do that without admitting
5508 * we know the stride, apparently.
5509 */
5510 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
5511 u64 __iomem *psptr;
5512 u32 psoffs;
5513
5514 ppd = dd->pport + pidx;
5515 if (!ppd->cpspec->kpregbase)
5516 continue;
5517
5518 psptr = ppd->cpspec->kpregbase + krp_sendctrl;
5519 psoffs = (u32) (psptr - dd->kregbase) * sizeof(*psptr);
5520 if (psoffs == offs)
5521 break;
5522 }
5523
5524 /* If pport is not being managed by driver, just avoid shadows. */
5525 if (pidx >= dd->num_pports)
5526 ppd = NULL;
5527
5528 /* In any case, "idx" is flat index in kreg space */
5529 idx = offs / sizeof(u64);
5530
5531 all_bits = ~0ULL;
5532 if (only_32)
5533 all_bits >>= 32;
5534
5535 spin_lock_irqsave(&dd->sendctrl_lock, flags);
5536 if (!ppd || (mask & all_bits) != all_bits) {
5537 /*
5538 * At least some mask bits are zero, so we need
5539 * to read. The judgement call is whether from
5540 * reg or shadow. First-cut: read reg, and complain
5541 * if any bits which should be shadowed are different
5542 * from their shadowed value.
5543 */
5544 if (only_32)
5545 local_data = (u64)qib_read_kreg32(dd, idx);
5546 else
5547 local_data = qib_read_kreg64(dd, idx);
5548 *data = (local_data & ~mask) | (*data & mask);
5549 }
5550 if (mask) {
5551 /*
5552 * At least some mask bits are one, so we need
5553 * to write, but only shadow some bits.
5554 */
5555 u64 sval, tval; /* Shadowed, transient */
5556
5557 /*
5558 * New shadow val is bits we don't want to touch,
5559 * ORed with bits we do, that are intended for shadow.
5560 */
5561 if (ppd) {
5562 sval = ppd->p_sendctrl & ~mask;
5563 sval |= *data & SENDCTRL_SHADOWED & mask;
5564 ppd->p_sendctrl = sval;
5565 } else
5566 sval = *data & SENDCTRL_SHADOWED & mask;
5567 tval = sval | (*data & ~SENDCTRL_SHADOWED & mask);
5568 qib_write_kreg(dd, idx, tval);
5569 qib_write_kreg(dd, kr_scratch, 0Ull);
5570 }
5571 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
5572 return only_32 ? 4 : 8;
5573}
5574
5575static const struct diag_observer sendctrl_0_observer = {
5576 sendctrl_hook, KREG_IDX(SendCtrl_0) * sizeof(u64),
5577 KREG_IDX(SendCtrl_0) * sizeof(u64)
5578};
5579
5580static const struct diag_observer sendctrl_1_observer = {
5581 sendctrl_hook, KREG_IDX(SendCtrl_1) * sizeof(u64),
5582 KREG_IDX(SendCtrl_1) * sizeof(u64)
5583};
5584
5585static ushort sdma_fetch_prio = 8;
5586module_param_named(sdma_fetch_prio, sdma_fetch_prio, ushort, S_IRUGO);
5587MODULE_PARM_DESC(sdma_fetch_prio, "SDMA descriptor fetch priority");
5588
5589/* Besides logging QSFP events, we set appropriate TxDDS values */
5590static void init_txdds_table(struct qib_pportdata *ppd, int override);
5591
5592static void qsfp_7322_event(struct work_struct *work)
5593{
5594 struct qib_qsfp_data *qd;
5595 struct qib_pportdata *ppd;
5596 u64 pwrup;
5597 int ret;
5598 u32 le2;
5599
5600 qd = container_of(work, struct qib_qsfp_data, work);
5601 ppd = qd->ppd;
dde05cbd
MH
5602 pwrup = qd->t_insert +
5603 msecs_to_jiffies(QSFP_PWR_LAG_MSEC - QSFP_MODPRS_LAG_MSEC);
f931551b 5604
dde05cbd
MH
5605 /* Delay for 20 msecs to allow ModPrs resistor to setup */
5606 mdelay(QSFP_MODPRS_LAG_MSEC);
5607
5608 if (!qib_qsfp_mod_present(ppd))
5609 /* Set the physical link to disabled */
5610 qib_set_ib_7322_lstate(ppd, 0,
5611 QLOGIC_IB_IBCC_LINKINITCMD_DISABLE);
5612 else {
5613 /*
5614 * Some QSFP's not only do not respond until the full power-up
5615 * time, but may behave badly if we try. So hold off responding
5616 * to insertion.
5617 */
5618 while (1) {
5619 u64 now = get_jiffies_64();
5620 if (time_after64(now, pwrup))
5621 break;
5622 msleep(20);
5623 }
5624
5625 ret = qib_refresh_qsfp_cache(ppd, &qd->cache);
5626
5627 /*
5628 * Need to change LE2 back to defaults if we couldn't
5629 * read the cable type (to handle cable swaps), so do this
5630 * even on failure to read cable information. We don't
5631 * get here for QME, so IS_QME check not needed here.
5632 */
5633 if (!ret && !ppd->dd->cspec->r1) {
5634 if (QSFP_IS_ACTIVE_FAR(qd->cache.tech))
5635 le2 = LE2_QME;
5636 else if (qd->cache.atten[1] >= qib_long_atten &&
5637 QSFP_IS_CU(qd->cache.tech))
5638 le2 = LE2_5m;
5639 else
5640 le2 = LE2_DEFAULT;
5641 } else
4634b794 5642 le2 = LE2_DEFAULT;
dde05cbd
MH
5643 ibsd_wr_allchans(ppd, 13, (le2 << 7), BMASK(9, 7));
5644 /*
5645 * We always change parameteters, since we can choose
5646 * values for cables without eeproms, and the cable may have
5647 * changed from a cable with full or partial eeprom content
5648 * to one with partial or no content.
5649 */
5650 init_txdds_table(ppd, 0);
5651 /* The physical link is being re-enabled only when the
5652 previous state was DISABLED. This should only happen when
5653 the cable has been physically pulled. */
5654 if (ppd->lflags & QIBL_IB_LINK_DISABLED)
5655 qib_set_ib_7322_lstate(ppd, 0,
5656 QLOGIC_IB_IBCC_LINKINITCMD_SLEEP);
5657 }
f931551b
RC
5658}
5659
5660/*
5661 * There is little we can do but complain to the user if QSFP
5662 * initialization fails.
5663 */
5664static void qib_init_7322_qsfp(struct qib_pportdata *ppd)
5665{
5666 unsigned long flags;
5667 struct qib_qsfp_data *qd = &ppd->cpspec->qsfp_data;
5668 struct qib_devdata *dd = ppd->dd;
5669 u64 mod_prs_bit = QSFP_GPIO_MOD_PRS_N;
5670
5671 mod_prs_bit <<= (QSFP_GPIO_PORT2_SHIFT * ppd->hw_pidx);
5672 qd->ppd = ppd;
5673 qib_qsfp_init(qd, qsfp_7322_event);
5674 spin_lock_irqsave(&dd->cspec->gpio_lock, flags);
5675 dd->cspec->extctrl |= (mod_prs_bit << SYM_LSB(EXTCtrl, GPIOInvert));
5676 dd->cspec->gpio_mask |= mod_prs_bit;
5677 qib_write_kreg(dd, kr_extctrl, dd->cspec->extctrl);
5678 qib_write_kreg(dd, kr_gpio_mask, dd->cspec->gpio_mask);
5679 spin_unlock_irqrestore(&dd->cspec->gpio_lock, flags);
5680}
5681
5682/*
a77fcf89 5683 * called at device initialization time, and also if the txselect
f931551b
RC
5684 * module parameter is changed. This is used for cables that don't
5685 * have valid QSFP EEPROMs (not present, or attenuation is zero).
5686 * We initialize to the default, then if there is a specific
a77fcf89
RC
5687 * unit,port match, we use that (and set it immediately, for the
5688 * current speed, if the link is at INIT or better).
f931551b 5689 * String format is "default# unit#,port#=# ... u,p=#", separators must
a77fcf89
RC
5690 * be a SPACE character. A newline terminates. The u,p=# tuples may
5691 * optionally have "u,p=#,#", where the final # is the H1 value
f931551b
RC
5692 * The last specific match is used (actually, all are used, but last
5693 * one is the one that winds up set); if none at all, fall back on default.
5694 */
5695static void set_no_qsfp_atten(struct qib_devdata *dd, int change)
5696{
5697 char *nxt, *str;
a77fcf89 5698 u32 pidx, unit, port, deflt, h1;
f931551b 5699 unsigned long val;
a77fcf89 5700 int any = 0, seth1;
e706203c 5701 int txdds_size;
f931551b 5702
a77fcf89 5703 str = txselect_list;
f931551b 5704
a77fcf89 5705 /* default number is validated in setup_txselect() */
f931551b
RC
5706 deflt = simple_strtoul(str, &nxt, 0);
5707 for (pidx = 0; pidx < dd->num_pports; ++pidx)
5708 dd->pport[pidx].cpspec->no_eep = deflt;
5709
e706203c
MM
5710 txdds_size = TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ;
5711 if (IS_QME(dd) || IS_QMH(dd))
5712 txdds_size += TXDDS_MFG_SZ;
5713
f931551b
RC
5714 while (*nxt && nxt[1]) {
5715 str = ++nxt;
5716 unit = simple_strtoul(str, &nxt, 0);
5717 if (nxt == str || !*nxt || *nxt != ',') {
5718 while (*nxt && *nxt++ != ' ') /* skip to next, if any */
5719 ;
5720 continue;
5721 }
5722 str = ++nxt;
5723 port = simple_strtoul(str, &nxt, 0);
5724 if (nxt == str || *nxt != '=') {
5725 while (*nxt && *nxt++ != ' ') /* skip to next, if any */
5726 ;
5727 continue;
5728 }
5729 str = ++nxt;
5730 val = simple_strtoul(str, &nxt, 0);
5731 if (nxt == str) {
5732 while (*nxt && *nxt++ != ' ') /* skip to next, if any */
5733 ;
5734 continue;
5735 }
e706203c 5736 if (val >= txdds_size)
f931551b 5737 continue;
a77fcf89
RC
5738 seth1 = 0;
5739 h1 = 0; /* gcc thinks it might be used uninitted */
5740 if (*nxt == ',' && nxt[1]) {
5741 str = ++nxt;
5742 h1 = (u32)simple_strtoul(str, &nxt, 0);
5743 if (nxt == str)
5744 while (*nxt && *nxt++ != ' ') /* skip */
5745 ;
5746 else
5747 seth1 = 1;
5748 }
f931551b
RC
5749 for (pidx = 0; dd->unit == unit && pidx < dd->num_pports;
5750 ++pidx) {
a77fcf89
RC
5751 struct qib_pportdata *ppd = &dd->pport[pidx];
5752
5753 if (ppd->port != port || !ppd->link_speed_supported)
f931551b 5754 continue;
a77fcf89 5755 ppd->cpspec->no_eep = val;
7c7a416e
RC
5756 if (seth1)
5757 ppd->cpspec->h1_val = h1;
f931551b 5758 /* now change the IBC and serdes, overriding generic */
a77fcf89 5759 init_txdds_table(ppd, 1);
d70585f7 5760 /* Re-enable the physical state machine on mezz boards
dde05cbd
MH
5761 * now that the correct settings have been set.
5762 * QSFP boards are handles by the QSFP event handler */
d70585f7
MH
5763 if (IS_QMH(dd) || IS_QME(dd))
5764 qib_set_ib_7322_lstate(ppd, 0,
5765 QLOGIC_IB_IBCC_LINKINITCMD_SLEEP);
f931551b
RC
5766 any++;
5767 }
5768 if (*nxt == '\n')
5769 break; /* done */
5770 }
5771 if (change && !any) {
5772 /* no specific setting, use the default.
5773 * Change the IBC and serdes, but since it's
5774 * general, don't override specific settings.
5775 */
a77fcf89
RC
5776 for (pidx = 0; pidx < dd->num_pports; ++pidx)
5777 if (dd->pport[pidx].link_speed_supported)
5778 init_txdds_table(&dd->pport[pidx], 0);
f931551b
RC
5779 }
5780}
5781
a77fcf89
RC
5782/* handle the txselect parameter changing */
5783static int setup_txselect(const char *str, struct kernel_param *kp)
f931551b
RC
5784{
5785 struct qib_devdata *dd;
5786 unsigned long val;
5787 char *n;
5788 if (strlen(str) >= MAX_ATTEN_LEN) {
a77fcf89 5789 printk(KERN_INFO QIB_DRV_NAME " txselect_values string "
f931551b
RC
5790 "too long\n");
5791 return -ENOSPC;
5792 }
5793 val = simple_strtoul(str, &n, 0);
e706203c
MM
5794 if (n == str || val >= (TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ +
5795 TXDDS_MFG_SZ)) {
f931551b 5796 printk(KERN_INFO QIB_DRV_NAME
a77fcf89 5797 "txselect_values must start with a number < %d\n",
e706203c 5798 TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ + TXDDS_MFG_SZ);
f931551b
RC
5799 return -EINVAL;
5800 }
a77fcf89 5801 strcpy(txselect_list, str);
f931551b
RC
5802
5803 list_for_each_entry(dd, &qib_dev_list, list)
a77fcf89
RC
5804 if (dd->deviceid == PCI_DEVICE_ID_QLOGIC_IB_7322)
5805 set_no_qsfp_atten(dd, 1);
f931551b
RC
5806 return 0;
5807}
5808
5809/*
5810 * Write the final few registers that depend on some of the
5811 * init setup. Done late in init, just before bringing up
5812 * the serdes.
5813 */
5814static int qib_late_7322_initreg(struct qib_devdata *dd)
5815{
5816 int ret = 0, n;
5817 u64 val;
5818
5819 qib_write_kreg(dd, kr_rcvhdrentsize, dd->rcvhdrentsize);
5820 qib_write_kreg(dd, kr_rcvhdrsize, dd->rcvhdrsize);
5821 qib_write_kreg(dd, kr_rcvhdrcnt, dd->rcvhdrcnt);
5822 qib_write_kreg(dd, kr_sendpioavailaddr, dd->pioavailregs_phys);
5823 val = qib_read_kreg64(dd, kr_sendpioavailaddr);
5824 if (val != dd->pioavailregs_phys) {
5825 qib_dev_err(dd, "Catastrophic software error, "
5826 "SendPIOAvailAddr written as %lx, "
5827 "read back as %llx\n",
5828 (unsigned long) dd->pioavailregs_phys,
5829 (unsigned long long) val);
5830 ret = -EINVAL;
5831 }
5832
5833 n = dd->piobcnt2k + dd->piobcnt4k + NUM_VL15_BUFS;
5834 qib_7322_txchk_change(dd, 0, n, TXCHK_CHG_TYPE_KERN, NULL);
5835 /* driver sends get pkey, lid, etc. checking also, to catch bugs */
5836 qib_7322_txchk_change(dd, 0, n, TXCHK_CHG_TYPE_ENAB1, NULL);
5837
5838 qib_register_observer(dd, &sendctrl_0_observer);
5839 qib_register_observer(dd, &sendctrl_1_observer);
5840
5841 dd->control &= ~QLOGIC_IB_C_SDMAFETCHPRIOEN;
5842 qib_write_kreg(dd, kr_control, dd->control);
5843 /*
5844 * Set SendDmaFetchPriority and init Tx params, including
5845 * QSFP handler on boards that have QSFP.
5846 * First set our default attenuation entry for cables that
5847 * don't have valid attenuation.
5848 */
5849 set_no_qsfp_atten(dd, 0);
5850 for (n = 0; n < dd->num_pports; ++n) {
5851 struct qib_pportdata *ppd = dd->pport + n;
5852
5853 qib_write_kreg_port(ppd, krp_senddmaprioritythld,
5854 sdma_fetch_prio & 0xf);
5855 /* Initialize qsfp if present on board. */
5856 if (dd->flags & QIB_HAS_QSFP)
5857 qib_init_7322_qsfp(ppd);
5858 }
5859 dd->control |= QLOGIC_IB_C_SDMAFETCHPRIOEN;
5860 qib_write_kreg(dd, kr_control, dd->control);
5861
5862 return ret;
5863}
5864
5865/* per IB port errors. */
5866#define SENDCTRL_PIBP (MASK_ACROSS(0, 1) | MASK_ACROSS(3, 3) | \
5867 MASK_ACROSS(8, 15))
5868#define RCVCTRL_PIBP (MASK_ACROSS(0, 17) | MASK_ACROSS(39, 41))
5869#define ERRS_PIBP (MASK_ACROSS(57, 58) | MASK_ACROSS(54, 54) | \
5870 MASK_ACROSS(36, 49) | MASK_ACROSS(29, 34) | MASK_ACROSS(14, 17) | \
5871 MASK_ACROSS(0, 11))
5872
5873/*
5874 * Write the initialization per-port registers that need to be done at
5875 * driver load and after reset completes (i.e., that aren't done as part
5876 * of other init procedures called from qib_init.c).
5877 * Some of these should be redundant on reset, but play safe.
5878 */
5879static void write_7322_init_portregs(struct qib_pportdata *ppd)
5880{
5881 u64 val;
5882 int i;
5883
5884 if (!ppd->link_speed_supported) {
5885 /* no buffer credits for this port */
5886 for (i = 1; i < 8; i++)
5887 qib_write_kreg_port(ppd, krp_rxcreditvl0 + i, 0);
5888 qib_write_kreg_port(ppd, krp_ibcctrl_b, 0);
5889 qib_write_kreg(ppd->dd, kr_scratch, 0);
5890 return;
5891 }
5892
5893 /*
5894 * Set the number of supported virtual lanes in IBC,
5895 * for flow control packet handling on unsupported VLs
5896 */
5897 val = qib_read_kreg_port(ppd, krp_ibsdtestiftx);
5898 val &= ~SYM_MASK(IB_SDTEST_IF_TX_0, VL_CAP);
5899 val |= (u64)(ppd->vls_supported - 1) <<
5900 SYM_LSB(IB_SDTEST_IF_TX_0, VL_CAP);
5901 qib_write_kreg_port(ppd, krp_ibsdtestiftx, val);
5902
5903 qib_write_kreg_port(ppd, krp_rcvbthqp, QIB_KD_QP);
5904
5905 /* enable tx header checking */
5906 qib_write_kreg_port(ppd, krp_sendcheckcontrol, IBA7322_SENDCHK_PKEY |
5907 IBA7322_SENDCHK_BTHQP | IBA7322_SENDCHK_SLID |
5908 IBA7322_SENDCHK_RAW_IPV6 | IBA7322_SENDCHK_MINSZ);
5909
5910 qib_write_kreg_port(ppd, krp_ncmodectrl,
5911 SYM_MASK(IBNCModeCtrl_0, ScrambleCapLocal));
5912
5913 /*
5914 * Unconditionally clear the bufmask bits. If SDMA is
5915 * enabled, we'll set them appropriately later.
5916 */
5917 qib_write_kreg_port(ppd, krp_senddmabufmask0, 0);
5918 qib_write_kreg_port(ppd, krp_senddmabufmask1, 0);
5919 qib_write_kreg_port(ppd, krp_senddmabufmask2, 0);
5920 if (ppd->dd->cspec->r1)
5921 ppd->p_sendctrl |= SYM_MASK(SendCtrl_0, ForceCreditUpToDate);
5922}
5923
5924/*
5925 * Write the initialization per-device registers that need to be done at
5926 * driver load and after reset completes (i.e., that aren't done as part
5927 * of other init procedures called from qib_init.c). Also write per-port
5928 * registers that are affected by overall device config, such as QP mapping
5929 * Some of these should be redundant on reset, but play safe.
5930 */
5931static void write_7322_initregs(struct qib_devdata *dd)
5932{
5933 struct qib_pportdata *ppd;
5934 int i, pidx;
5935 u64 val;
5936
5937 /* Set Multicast QPs received by port 2 to map to context one. */
5938 qib_write_kreg(dd, KREG_IDX(RcvQPMulticastContext_1), 1);
5939
5940 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
5941 unsigned n, regno;
5942 unsigned long flags;
5943
2528ea60
MM
5944 if (dd->n_krcv_queues < 2 ||
5945 !dd->pport[pidx].link_speed_supported)
f931551b
RC
5946 continue;
5947
5948 ppd = &dd->pport[pidx];
5949
5950 /* be paranoid against later code motion, etc. */
5951 spin_lock_irqsave(&dd->cspec->rcvmod_lock, flags);
5952 ppd->p_rcvctrl |= SYM_MASK(RcvCtrl_0, RcvQPMapEnable);
5953 spin_unlock_irqrestore(&dd->cspec->rcvmod_lock, flags);
5954
5955 /* Initialize QP to context mapping */
5956 regno = krp_rcvqpmaptable;
5957 val = 0;
5958 if (dd->num_pports > 1)
5959 n = dd->first_user_ctxt / dd->num_pports;
5960 else
5961 n = dd->first_user_ctxt - 1;
5962 for (i = 0; i < 32; ) {
5963 unsigned ctxt;
5964
5965 if (dd->num_pports > 1)
5966 ctxt = (i % n) * dd->num_pports + pidx;
5967 else if (i % n)
5968 ctxt = (i % n) + 1;
5969 else
5970 ctxt = ppd->hw_pidx;
5971 val |= ctxt << (5 * (i % 6));
5972 i++;
5973 if (i % 6 == 0) {
5974 qib_write_kreg_port(ppd, regno, val);
5975 val = 0;
5976 regno++;
5977 }
5978 }
5979 qib_write_kreg_port(ppd, regno, val);
5980 }
5981
5982 /*
5983 * Setup up interrupt mitigation for kernel contexts, but
5984 * not user contexts (user contexts use interrupts when
5985 * stalled waiting for any packet, so want those interrupts
5986 * right away).
5987 */
5988 for (i = 0; i < dd->first_user_ctxt; i++) {
5989 dd->cspec->rcvavail_timeout[i] = rcv_int_timeout;
5990 qib_write_kreg(dd, kr_rcvavailtimeout + i, rcv_int_timeout);
5991 }
5992
5993 /*
5994 * Initialize as (disabled) rcvflow tables. Application code
5995 * will setup each flow as it uses the flow.
5996 * Doesn't clear any of the error bits that might be set.
5997 */
5998 val = TIDFLOW_ERRBITS; /* these are W1C */
0502f94c 5999 for (i = 0; i < dd->cfgctxts; i++) {
f931551b
RC
6000 int flow;
6001 for (flow = 0; flow < NUM_TIDFLOWS_CTXT; flow++)
6002 qib_write_ureg(dd, ur_rcvflowtable+flow, val, i);
6003 }
6004
6005 /*
6006 * dual cards init to dual port recovery, single port cards to
6007 * the one port. Dual port cards may later adjust to 1 port,
6008 * and then back to dual port if both ports are connected
6009 * */
6010 if (dd->num_pports)
6011 setup_7322_link_recovery(dd->pport, dd->num_pports > 1);
6012}
6013
6014static int qib_init_7322_variables(struct qib_devdata *dd)
6015{
6016 struct qib_pportdata *ppd;
6017 unsigned features, pidx, sbufcnt;
6018 int ret, mtu;
6019 u32 sbufs, updthresh;
6020
6021 /* pport structs are contiguous, allocated after devdata */
6022 ppd = (struct qib_pportdata *)(dd + 1);
6023 dd->pport = ppd;
6024 ppd[0].dd = dd;
6025 ppd[1].dd = dd;
6026
6027 dd->cspec = (struct qib_chip_specific *)(ppd + 2);
6028
6029 ppd[0].cpspec = (struct qib_chippport_specific *)(dd->cspec + 1);
6030 ppd[1].cpspec = &ppd[0].cpspec[1];
6031 ppd[0].cpspec->ppd = &ppd[0]; /* for autoneg_7322_work() */
6032 ppd[1].cpspec->ppd = &ppd[1]; /* for autoneg_7322_work() */
6033
6034 spin_lock_init(&dd->cspec->rcvmod_lock);
6035 spin_lock_init(&dd->cspec->gpio_lock);
6036
6037 /* we haven't yet set QIB_PRESENT, so use read directly */
6038 dd->revision = readq(&dd->kregbase[kr_revision]);
6039
6040 if ((dd->revision & 0xffffffffU) == 0xffffffffU) {
6041 qib_dev_err(dd, "Revision register read failure, "
6042 "giving up initialization\n");
6043 ret = -ENODEV;
6044 goto bail;
6045 }
6046 dd->flags |= QIB_PRESENT; /* now register routines work */
6047
6048 dd->majrev = (u8) SYM_FIELD(dd->revision, Revision_R, ChipRevMajor);
6049 dd->minrev = (u8) SYM_FIELD(dd->revision, Revision_R, ChipRevMinor);
6050 dd->cspec->r1 = dd->minrev == 1;
6051
6052 get_7322_chip_params(dd);
6053 features = qib_7322_boardname(dd);
6054
6055 /* now that piobcnt2k and 4k set, we can allocate these */
6056 sbufcnt = dd->piobcnt2k + dd->piobcnt4k +
6057 NUM_VL15_BUFS + BITS_PER_LONG - 1;
6058 sbufcnt /= BITS_PER_LONG;
6059 dd->cspec->sendchkenable = kmalloc(sbufcnt *
6060 sizeof(*dd->cspec->sendchkenable), GFP_KERNEL);
6061 dd->cspec->sendgrhchk = kmalloc(sbufcnt *
6062 sizeof(*dd->cspec->sendgrhchk), GFP_KERNEL);
6063 dd->cspec->sendibchk = kmalloc(sbufcnt *
6064 sizeof(*dd->cspec->sendibchk), GFP_KERNEL);
6065 if (!dd->cspec->sendchkenable || !dd->cspec->sendgrhchk ||
6066 !dd->cspec->sendibchk) {
6067 qib_dev_err(dd, "Failed allocation for hdrchk bitmaps\n");
6068 ret = -ENOMEM;
6069 goto bail;
6070 }
6071
6072 ppd = dd->pport;
6073
6074 /*
6075 * GPIO bits for TWSI data and clock,
6076 * used for serial EEPROM.
6077 */
6078 dd->gpio_sda_num = _QIB_GPIO_SDA_NUM;
6079 dd->gpio_scl_num = _QIB_GPIO_SCL_NUM;
6080 dd->twsi_eeprom_dev = QIB_TWSI_EEPROM_DEV;
6081
6082 dd->flags |= QIB_HAS_INTX | QIB_HAS_LINK_LATENCY |
6083 QIB_NODMA_RTAIL | QIB_HAS_VLSUPP | QIB_HAS_HDRSUPP |
6084 QIB_HAS_THRESH_UPDATE |
6085 (sdma_idle_cnt ? QIB_HAS_SDMA_TIMEOUT : 0);
6086 dd->flags |= qib_special_trigger ?
6087 QIB_USE_SPCL_TRIG : QIB_HAS_SEND_DMA;
6088
6089 /*
6090 * Setup initial values. These may change when PAT is enabled, but
6091 * we need these to do initial chip register accesses.
6092 */
6093 qib_7322_set_baseaddrs(dd);
6094
6095 mtu = ib_mtu_enum_to_int(qib_ibmtu);
6096 if (mtu == -1)
6097 mtu = QIB_DEFAULT_MTU;
6098
6099 dd->cspec->int_enable_mask = QIB_I_BITSEXTANT;
6100 /* all hwerrors become interrupts, unless special purposed */
6101 dd->cspec->hwerrmask = ~0ULL;
6102 /* link_recovery setup causes these errors, so ignore them,
6103 * other than clearing them when they occur */
6104 dd->cspec->hwerrmask &=
6105 ~(SYM_MASK(HwErrMask, IBSerdesPClkNotDetectMask_0) |
6106 SYM_MASK(HwErrMask, IBSerdesPClkNotDetectMask_1) |
6107 HWE_MASK(LATriggered));
6108
6109 for (pidx = 0; pidx < NUM_IB_PORTS; ++pidx) {
6110 struct qib_chippport_specific *cp = ppd->cpspec;
6111 ppd->link_speed_supported = features & PORT_SPD_CAP;
6112 features >>= PORT_SPD_CAP_SHIFT;
6113 if (!ppd->link_speed_supported) {
6114 /* single port mode (7340, or configured) */
6115 dd->skip_kctxt_mask |= 1 << pidx;
6116 if (pidx == 0) {
6117 /* Make sure port is disabled. */
6118 qib_write_kreg_port(ppd, krp_rcvctrl, 0);
6119 qib_write_kreg_port(ppd, krp_ibcctrl_a, 0);
6120 ppd[0] = ppd[1];
6121 dd->cspec->hwerrmask &= ~(SYM_MASK(HwErrMask,
6122 IBSerdesPClkNotDetectMask_0)
6123 | SYM_MASK(HwErrMask,
6124 SDmaMemReadErrMask_0));
6125 dd->cspec->int_enable_mask &= ~(
6126 SYM_MASK(IntMask, SDmaCleanupDoneMask_0) |
6127 SYM_MASK(IntMask, SDmaIdleIntMask_0) |
6128 SYM_MASK(IntMask, SDmaProgressIntMask_0) |
6129 SYM_MASK(IntMask, SDmaIntMask_0) |
6130 SYM_MASK(IntMask, ErrIntMask_0) |
6131 SYM_MASK(IntMask, SendDoneIntMask_0));
6132 } else {
6133 /* Make sure port is disabled. */
6134 qib_write_kreg_port(ppd, krp_rcvctrl, 0);
6135 qib_write_kreg_port(ppd, krp_ibcctrl_a, 0);
6136 dd->cspec->hwerrmask &= ~(SYM_MASK(HwErrMask,
6137 IBSerdesPClkNotDetectMask_1)
6138 | SYM_MASK(HwErrMask,
6139 SDmaMemReadErrMask_1));
6140 dd->cspec->int_enable_mask &= ~(
6141 SYM_MASK(IntMask, SDmaCleanupDoneMask_1) |
6142 SYM_MASK(IntMask, SDmaIdleIntMask_1) |
6143 SYM_MASK(IntMask, SDmaProgressIntMask_1) |
6144 SYM_MASK(IntMask, SDmaIntMask_1) |
6145 SYM_MASK(IntMask, ErrIntMask_1) |
6146 SYM_MASK(IntMask, SendDoneIntMask_1));
6147 }
6148 continue;
6149 }
6150
6151 dd->num_pports++;
6152 qib_init_pportdata(ppd, dd, pidx, dd->num_pports);
6153
6154 ppd->link_width_supported = IB_WIDTH_1X | IB_WIDTH_4X;
6155 ppd->link_width_enabled = IB_WIDTH_4X;
6156 ppd->link_speed_enabled = ppd->link_speed_supported;
6157 /*
6158 * Set the initial values to reasonable default, will be set
6159 * for real when link is up.
6160 */
6161 ppd->link_width_active = IB_WIDTH_4X;
6162 ppd->link_speed_active = QIB_IB_SDR;
6163 ppd->delay_mult = ib_rate_to_delay[IB_RATE_10_GBPS];
6164 switch (qib_num_cfg_vls) {
6165 case 1:
6166 ppd->vls_supported = IB_VL_VL0;
6167 break;
6168 case 2:
6169 ppd->vls_supported = IB_VL_VL0_1;
6170 break;
6171 default:
6172 qib_devinfo(dd->pcidev,
6173 "Invalid num_vls %u, using 4 VLs\n",
6174 qib_num_cfg_vls);
6175 qib_num_cfg_vls = 4;
6176 /* fall through */
6177 case 4:
6178 ppd->vls_supported = IB_VL_VL0_3;
6179 break;
6180 case 8:
6181 if (mtu <= 2048)
6182 ppd->vls_supported = IB_VL_VL0_7;
6183 else {
6184 qib_devinfo(dd->pcidev,
6185 "Invalid num_vls %u for MTU %d "
6186 ", using 4 VLs\n",
6187 qib_num_cfg_vls, mtu);
6188 ppd->vls_supported = IB_VL_VL0_3;
6189 qib_num_cfg_vls = 4;
6190 }
6191 break;
6192 }
6193 ppd->vls_operational = ppd->vls_supported;
6194
6195 init_waitqueue_head(&cp->autoneg_wait);
6196 INIT_DELAYED_WORK(&cp->autoneg_work,
6197 autoneg_7322_work);
6198 if (ppd->dd->cspec->r1)
6199 INIT_DELAYED_WORK(&cp->ipg_work, ipg_7322_work);
6200
6201 /*
6202 * For Mez and similar cards, no qsfp info, so do
6203 * the "cable info" setup here. Can be overridden
6204 * in adapter-specific routines.
6205 */
7c7a416e
RC
6206 if (!(dd->flags & QIB_HAS_QSFP)) {
6207 if (!IS_QMH(dd) && !IS_QME(dd))
6208 qib_devinfo(dd->pcidev, "IB%u:%u: "
f931551b 6209 "Unknown mezzanine card type\n",
a77fcf89
RC
6210 dd->unit, ppd->port);
6211 cp->h1_val = IS_QMH(dd) ? H1_FORCE_QMH : H1_FORCE_QME;
f931551b 6212 /*
a77fcf89
RC
6213 * Choose center value as default tx serdes setting
6214 * until changed through module parameter.
f931551b 6215 */
a77fcf89
RC
6216 ppd->cpspec->no_eep = IS_QMH(dd) ?
6217 TXDDS_TABLE_SZ + 2 : TXDDS_TABLE_SZ + 4;
f931551b
RC
6218 } else
6219 cp->h1_val = H1_FORCE_VAL;
6220
6221 /* Avoid writes to chip for mini_init */
6222 if (!qib_mini_init)
6223 write_7322_init_portregs(ppd);
6224
6225 init_timer(&cp->chase_timer);
6226 cp->chase_timer.function = reenable_chase;
6227 cp->chase_timer.data = (unsigned long)ppd;
6228
6229 ppd++;
6230 }
6231
0a43e117
MM
6232 dd->rcvhdrentsize = qib_rcvhdrentsize ?
6233 qib_rcvhdrentsize : QIB_RCVHDR_ENTSIZE;
6234 dd->rcvhdrsize = qib_rcvhdrsize ?
6235 qib_rcvhdrsize : QIB_DFLT_RCVHDRSIZE;
a77fcf89 6236 dd->rhf_offset = dd->rcvhdrentsize - sizeof(u64) / sizeof(u32);
f931551b
RC
6237
6238 /* we always allocate at least 2048 bytes for eager buffers */
6239 dd->rcvegrbufsize = max(mtu, 2048);
9e1c0e43
MM
6240 BUG_ON(!is_power_of_2(dd->rcvegrbufsize));
6241 dd->rcvegrbufsize_shift = ilog2(dd->rcvegrbufsize);
f931551b
RC
6242
6243 qib_7322_tidtemplate(dd);
6244
6245 /*
6246 * We can request a receive interrupt for 1 or
6247 * more packets from current offset.
6248 */
6249 dd->rhdrhead_intr_off =
6250 (u64) rcv_int_count << IBA7322_HDRHEAD_PKTINT_SHIFT;
6251
6252 /* setup the stats timer; the add_timer is done at end of init */
6253 init_timer(&dd->stats_timer);
6254 dd->stats_timer.function = qib_get_7322_faststats;
6255 dd->stats_timer.data = (unsigned long) dd;
6256
6257 dd->ureg_align = 0x10000; /* 64KB alignment */
6258
6259 dd->piosize2kmax_dwords = dd->piosize2k >> 2;
6260
6261 qib_7322_config_ctxts(dd);
6262 qib_set_ctxtcnt(dd);
6263
6264 if (qib_wc_pat) {
fce24a9d
DO
6265 resource_size_t vl15off;
6266 /*
6267 * We do not set WC on the VL15 buffers to avoid
6268 * a rare problem with unaligned writes from
6269 * interrupt-flushed store buffers, so we need
6270 * to map those separately here. We can't solve
6271 * this for the rarely used mtrr case.
6272 */
6273 ret = init_chip_wc_pat(dd, 0);
f931551b
RC
6274 if (ret)
6275 goto bail;
fce24a9d
DO
6276
6277 /* vl15 buffers start just after the 4k buffers */
6278 vl15off = dd->physaddr + (dd->piobufbase >> 32) +
6279 dd->piobcnt4k * dd->align4k;
6280 dd->piovl15base = ioremap_nocache(vl15off,
6281 NUM_VL15_BUFS * dd->align4k);
6282 if (!dd->piovl15base)
6283 goto bail;
f931551b
RC
6284 }
6285 qib_7322_set_baseaddrs(dd); /* set chip access pointers now */
6286
6287 ret = 0;
6288 if (qib_mini_init)
6289 goto bail;
6290 if (!dd->num_pports) {
6291 qib_dev_err(dd, "No ports enabled, giving up initialization\n");
6292 goto bail; /* no error, so can still figure out why err */
6293 }
6294
6295 write_7322_initregs(dd);
6296 ret = qib_create_ctxts(dd);
6297 init_7322_cntrnames(dd);
6298
6299 updthresh = 8U; /* update threshold */
6300
6301 /* use all of 4KB buffers for the kernel SDMA, zero if !SDMA.
6302 * reserve the update threshold amount for other kernel use, such
6303 * as sending SMI, MAD, and ACKs, or 3, whichever is greater,
6304 * unless we aren't enabling SDMA, in which case we want to use
6305 * all the 4k bufs for the kernel.
6306 * if this was less than the update threshold, we could wait
6307 * a long time for an update. Coded this way because we
6308 * sometimes change the update threshold for various reasons,
6309 * and we want this to remain robust.
6310 */
6311 if (dd->flags & QIB_HAS_SEND_DMA) {
6312 dd->cspec->sdmabufcnt = dd->piobcnt4k;
6313 sbufs = updthresh > 3 ? updthresh : 3;
6314 } else {
6315 dd->cspec->sdmabufcnt = 0;
6316 sbufs = dd->piobcnt4k;
6317 }
6318 dd->cspec->lastbuf_for_pio = dd->piobcnt2k + dd->piobcnt4k -
6319 dd->cspec->sdmabufcnt;
6320 dd->lastctxt_piobuf = dd->cspec->lastbuf_for_pio - sbufs;
6321 dd->cspec->lastbuf_for_pio--; /* range is <= , not < */
6322 dd->pbufsctxt = (dd->cfgctxts > dd->first_user_ctxt) ?
6323 dd->lastctxt_piobuf / (dd->cfgctxts - dd->first_user_ctxt) : 0;
6324
6325 /*
6326 * If we have 16 user contexts, we will have 7 sbufs
6327 * per context, so reduce the update threshold to match. We
6328 * want to update before we actually run out, at low pbufs/ctxt
6329 * so give ourselves some margin.
6330 */
6331 if (dd->pbufsctxt >= 2 && dd->pbufsctxt - 2 < updthresh)
6332 updthresh = dd->pbufsctxt - 2;
6333 dd->cspec->updthresh_dflt = updthresh;
6334 dd->cspec->updthresh = updthresh;
6335
6336 /* before full enable, no interrupts, no locking needed */
6337 dd->sendctrl |= ((updthresh & SYM_RMASK(SendCtrl, AvailUpdThld))
6338 << SYM_LSB(SendCtrl, AvailUpdThld)) |
6339 SYM_MASK(SendCtrl, SendBufAvailPad64Byte);
6340
6341 dd->psxmitwait_supported = 1;
6342 dd->psxmitwait_check_rate = QIB_7322_PSXMITWAIT_CHECK_RATE;
6343bail:
6344 if (!dd->ctxtcnt)
6345 dd->ctxtcnt = 1; /* for other initialization code */
6346
6347 return ret;
6348}
6349
6350static u32 __iomem *qib_7322_getsendbuf(struct qib_pportdata *ppd, u64 pbc,
6351 u32 *pbufnum)
6352{
6353 u32 first, last, plen = pbc & QIB_PBC_LENGTH_MASK;
6354 struct qib_devdata *dd = ppd->dd;
6355
6356 /* last is same for 2k and 4k, because we use 4k if all 2k busy */
6357 if (pbc & PBC_7322_VL15_SEND) {
6358 first = dd->piobcnt2k + dd->piobcnt4k + ppd->hw_pidx;
6359 last = first;
6360 } else {
6361 if ((plen + 1) > dd->piosize2kmax_dwords)
6362 first = dd->piobcnt2k;
6363 else
6364 first = 0;
6365 last = dd->cspec->lastbuf_for_pio;
6366 }
6367 return qib_getsendbuf_range(dd, pbufnum, first, last);
6368}
6369
6370static void qib_set_cntr_7322_sample(struct qib_pportdata *ppd, u32 intv,
6371 u32 start)
6372{
6373 qib_write_kreg_port(ppd, krp_psinterval, intv);
6374 qib_write_kreg_port(ppd, krp_psstart, start);
6375}
6376
6377/*
6378 * Must be called with sdma_lock held, or before init finished.
6379 */
6380static void qib_sdma_set_7322_desc_cnt(struct qib_pportdata *ppd, unsigned cnt)
6381{
6382 qib_write_kreg_port(ppd, krp_senddmadesccnt, cnt);
6383}
6384
6385static struct sdma_set_state_action sdma_7322_action_table[] = {
6386 [qib_sdma_state_s00_hw_down] = {
6387 .go_s99_running_tofalse = 1,
6388 .op_enable = 0,
6389 .op_intenable = 0,
6390 .op_halt = 0,
6391 .op_drain = 0,
6392 },
6393 [qib_sdma_state_s10_hw_start_up_wait] = {
6394 .op_enable = 0,
6395 .op_intenable = 1,
6396 .op_halt = 1,
6397 .op_drain = 0,
6398 },
6399 [qib_sdma_state_s20_idle] = {
6400 .op_enable = 1,
6401 .op_intenable = 1,
6402 .op_halt = 1,
6403 .op_drain = 0,
6404 },
6405 [qib_sdma_state_s30_sw_clean_up_wait] = {
6406 .op_enable = 0,
6407 .op_intenable = 1,
6408 .op_halt = 1,
6409 .op_drain = 0,
6410 },
6411 [qib_sdma_state_s40_hw_clean_up_wait] = {
6412 .op_enable = 1,
6413 .op_intenable = 1,
6414 .op_halt = 1,
6415 .op_drain = 0,
6416 },
6417 [qib_sdma_state_s50_hw_halt_wait] = {
6418 .op_enable = 1,
6419 .op_intenable = 1,
6420 .op_halt = 1,
6421 .op_drain = 1,
6422 },
6423 [qib_sdma_state_s99_running] = {
6424 .op_enable = 1,
6425 .op_intenable = 1,
6426 .op_halt = 0,
6427 .op_drain = 0,
6428 .go_s99_running_totrue = 1,
6429 },
6430};
6431
6432static void qib_7322_sdma_init_early(struct qib_pportdata *ppd)
6433{
6434 ppd->sdma_state.set_state_action = sdma_7322_action_table;
6435}
6436
6437static int init_sdma_7322_regs(struct qib_pportdata *ppd)
6438{
6439 struct qib_devdata *dd = ppd->dd;
6440 unsigned lastbuf, erstbuf;
6441 u64 senddmabufmask[3] = { 0 };
6442 int n, ret = 0;
6443
6444 qib_write_kreg_port(ppd, krp_senddmabase, ppd->sdma_descq_phys);
6445 qib_sdma_7322_setlengen(ppd);
6446 qib_sdma_update_7322_tail(ppd, 0); /* Set SendDmaTail */
6447 qib_write_kreg_port(ppd, krp_senddmareloadcnt, sdma_idle_cnt);
6448 qib_write_kreg_port(ppd, krp_senddmadesccnt, 0);
6449 qib_write_kreg_port(ppd, krp_senddmaheadaddr, ppd->sdma_head_phys);
6450
6451 if (dd->num_pports)
6452 n = dd->cspec->sdmabufcnt / dd->num_pports; /* no remainder */
6453 else
6454 n = dd->cspec->sdmabufcnt; /* failsafe for init */
6455 erstbuf = (dd->piobcnt2k + dd->piobcnt4k) -
6456 ((dd->num_pports == 1 || ppd->port == 2) ? n :
6457 dd->cspec->sdmabufcnt);
6458 lastbuf = erstbuf + n;
6459
6460 ppd->sdma_state.first_sendbuf = erstbuf;
6461 ppd->sdma_state.last_sendbuf = lastbuf;
6462 for (; erstbuf < lastbuf; ++erstbuf) {
6463 unsigned word = erstbuf / BITS_PER_LONG;
6464 unsigned bit = erstbuf & (BITS_PER_LONG - 1);
6465
6466 BUG_ON(word >= 3);
6467 senddmabufmask[word] |= 1ULL << bit;
6468 }
6469 qib_write_kreg_port(ppd, krp_senddmabufmask0, senddmabufmask[0]);
6470 qib_write_kreg_port(ppd, krp_senddmabufmask1, senddmabufmask[1]);
6471 qib_write_kreg_port(ppd, krp_senddmabufmask2, senddmabufmask[2]);
6472 return ret;
6473}
6474
6475/* sdma_lock must be held */
6476static u16 qib_sdma_7322_gethead(struct qib_pportdata *ppd)
6477{
6478 struct qib_devdata *dd = ppd->dd;
6479 int sane;
6480 int use_dmahead;
6481 u16 swhead;
6482 u16 swtail;
6483 u16 cnt;
6484 u16 hwhead;
6485
6486 use_dmahead = __qib_sdma_running(ppd) &&
6487 (dd->flags & QIB_HAS_SDMA_TIMEOUT);
6488retry:
6489 hwhead = use_dmahead ?
6490 (u16) le64_to_cpu(*ppd->sdma_head_dma) :
6491 (u16) qib_read_kreg_port(ppd, krp_senddmahead);
6492
6493 swhead = ppd->sdma_descq_head;
6494 swtail = ppd->sdma_descq_tail;
6495 cnt = ppd->sdma_descq_cnt;
6496
6497 if (swhead < swtail)
6498 /* not wrapped */
6499 sane = (hwhead >= swhead) & (hwhead <= swtail);
6500 else if (swhead > swtail)
6501 /* wrapped around */
6502 sane = ((hwhead >= swhead) && (hwhead < cnt)) ||
6503 (hwhead <= swtail);
6504 else
6505 /* empty */
6506 sane = (hwhead == swhead);
6507
6508 if (unlikely(!sane)) {
6509 if (use_dmahead) {
6510 /* try one more time, directly from the register */
6511 use_dmahead = 0;
6512 goto retry;
6513 }
6514 /* proceed as if no progress */
6515 hwhead = swhead;
6516 }
6517
6518 return hwhead;
6519}
6520
6521static int qib_sdma_7322_busy(struct qib_pportdata *ppd)
6522{
6523 u64 hwstatus = qib_read_kreg_port(ppd, krp_senddmastatus);
6524
6525 return (hwstatus & SYM_MASK(SendDmaStatus_0, ScoreBoardDrainInProg)) ||
6526 (hwstatus & SYM_MASK(SendDmaStatus_0, HaltInProg)) ||
6527 !(hwstatus & SYM_MASK(SendDmaStatus_0, InternalSDmaHalt)) ||
6528 !(hwstatus & SYM_MASK(SendDmaStatus_0, ScbEmpty));
6529}
6530
6531/*
6532 * Compute the amount of delay before sending the next packet if the
6533 * port's send rate differs from the static rate set for the QP.
6534 * The delay affects the next packet and the amount of the delay is
6535 * based on the length of the this packet.
6536 */
6537static u32 qib_7322_setpbc_control(struct qib_pportdata *ppd, u32 plen,
6538 u8 srate, u8 vl)
6539{
6540 u8 snd_mult = ppd->delay_mult;
6541 u8 rcv_mult = ib_rate_to_delay[srate];
6542 u32 ret;
6543
6544 ret = rcv_mult > snd_mult ? ((plen + 1) >> 1) * snd_mult : 0;
6545
6546 /* Indicate VL15, else set the VL in the control word */
6547 if (vl == 15)
6548 ret |= PBC_7322_VL15_SEND_CTRL;
6549 else
6550 ret |= vl << PBC_VL_NUM_LSB;
6551 ret |= ((u32)(ppd->hw_pidx)) << PBC_PORT_SEL_LSB;
6552
6553 return ret;
6554}
6555
6556/*
6557 * Enable the per-port VL15 send buffers for use.
6558 * They follow the rest of the buffers, without a config parameter.
6559 * This was in initregs, but that is done before the shadow
6560 * is set up, and this has to be done after the shadow is
6561 * set up.
6562 */
6563static void qib_7322_initvl15_bufs(struct qib_devdata *dd)
6564{
6565 unsigned vl15bufs;
6566
6567 vl15bufs = dd->piobcnt2k + dd->piobcnt4k;
6568 qib_chg_pioavailkernel(dd, vl15bufs, NUM_VL15_BUFS,
6569 TXCHK_CHG_TYPE_KERN, NULL);
6570}
6571
6572static void qib_7322_init_ctxt(struct qib_ctxtdata *rcd)
6573{
6574 if (rcd->ctxt < NUM_IB_PORTS) {
6575 if (rcd->dd->num_pports > 1) {
6576 rcd->rcvegrcnt = KCTXT0_EGRCNT / 2;
6577 rcd->rcvegr_tid_base = rcd->ctxt ? rcd->rcvegrcnt : 0;
6578 } else {
6579 rcd->rcvegrcnt = KCTXT0_EGRCNT;
6580 rcd->rcvegr_tid_base = 0;
6581 }
6582 } else {
6583 rcd->rcvegrcnt = rcd->dd->cspec->rcvegrcnt;
6584 rcd->rcvegr_tid_base = KCTXT0_EGRCNT +
6585 (rcd->ctxt - NUM_IB_PORTS) * rcd->rcvegrcnt;
6586 }
6587}
6588
6589#define QTXSLEEPS 5000
6590static void qib_7322_txchk_change(struct qib_devdata *dd, u32 start,
6591 u32 len, u32 which, struct qib_ctxtdata *rcd)
6592{
6593 int i;
6594 const int last = start + len - 1;
6595 const int lastr = last / BITS_PER_LONG;
6596 u32 sleeps = 0;
6597 int wait = rcd != NULL;
6598 unsigned long flags;
6599
6600 while (wait) {
6601 unsigned long shadow;
6602 int cstart, previ = -1;
6603
6604 /*
6605 * when flipping from kernel to user, we can't change
6606 * the checking type if the buffer is allocated to the
6607 * driver. It's OK the other direction, because it's
6608 * from close, and we have just disarm'ed all the
6609 * buffers. All the kernel to kernel changes are also
6610 * OK.
6611 */
6612 for (cstart = start; cstart <= last; cstart++) {
6613 i = ((2 * cstart) + QLOGIC_IB_SENDPIOAVAIL_BUSY_SHIFT)
6614 / BITS_PER_LONG;
6615 if (i != previ) {
6616 shadow = (unsigned long)
6617 le64_to_cpu(dd->pioavailregs_dma[i]);
6618 previ = i;
6619 }
6620 if (test_bit(((2 * cstart) +
6621 QLOGIC_IB_SENDPIOAVAIL_BUSY_SHIFT)
6622 % BITS_PER_LONG, &shadow))
6623 break;
6624 }
6625
6626 if (cstart > last)
6627 break;
6628
6629 if (sleeps == QTXSLEEPS)
6630 break;
6631 /* make sure we see an updated copy next time around */
6632 sendctrl_7322_mod(dd->pport, QIB_SENDCTRL_AVAIL_BLIP);
6633 sleeps++;
a0a234d4 6634 msleep(20);
f931551b
RC
6635 }
6636
6637 switch (which) {
6638 case TXCHK_CHG_TYPE_DIS1:
6639 /*
6640 * disable checking on a range; used by diags; just
6641 * one buffer, but still written generically
6642 */
6643 for (i = start; i <= last; i++)
6644 clear_bit(i, dd->cspec->sendchkenable);
6645 break;
6646
6647 case TXCHK_CHG_TYPE_ENAB1:
6648 /*
6649 * (re)enable checking on a range; used by diags; just
6650 * one buffer, but still written generically; read
6651 * scratch to be sure buffer actually triggered, not
6652 * just flushed from processor.
6653 */
6654 qib_read_kreg32(dd, kr_scratch);
6655 for (i = start; i <= last; i++)
6656 set_bit(i, dd->cspec->sendchkenable);
6657 break;
6658
6659 case TXCHK_CHG_TYPE_KERN:
6660 /* usable by kernel */
6661 for (i = start; i <= last; i++) {
6662 set_bit(i, dd->cspec->sendibchk);
6663 clear_bit(i, dd->cspec->sendgrhchk);
6664 }
6665 spin_lock_irqsave(&dd->uctxt_lock, flags);
6666 /* see if we need to raise avail update threshold */
6667 for (i = dd->first_user_ctxt;
6668 dd->cspec->updthresh != dd->cspec->updthresh_dflt
6669 && i < dd->cfgctxts; i++)
6670 if (dd->rcd[i] && dd->rcd[i]->subctxt_cnt &&
6671 ((dd->rcd[i]->piocnt / dd->rcd[i]->subctxt_cnt) - 1)
6672 < dd->cspec->updthresh_dflt)
6673 break;
6674 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
6675 if (i == dd->cfgctxts) {
6676 spin_lock_irqsave(&dd->sendctrl_lock, flags);
6677 dd->cspec->updthresh = dd->cspec->updthresh_dflt;
6678 dd->sendctrl &= ~SYM_MASK(SendCtrl, AvailUpdThld);
6679 dd->sendctrl |= (dd->cspec->updthresh &
6680 SYM_RMASK(SendCtrl, AvailUpdThld)) <<
6681 SYM_LSB(SendCtrl, AvailUpdThld);
6682 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
6683 sendctrl_7322_mod(dd->pport, QIB_SENDCTRL_AVAIL_BLIP);
6684 }
6685 break;
6686
6687 case TXCHK_CHG_TYPE_USER:
6688 /* for user process */
6689 for (i = start; i <= last; i++) {
6690 clear_bit(i, dd->cspec->sendibchk);
6691 set_bit(i, dd->cspec->sendgrhchk);
6692 }
6693 spin_lock_irqsave(&dd->sendctrl_lock, flags);
6694 if (rcd && rcd->subctxt_cnt && ((rcd->piocnt
6695 / rcd->subctxt_cnt) - 1) < dd->cspec->updthresh) {
6696 dd->cspec->updthresh = (rcd->piocnt /
6697 rcd->subctxt_cnt) - 1;
6698 dd->sendctrl &= ~SYM_MASK(SendCtrl, AvailUpdThld);
6699 dd->sendctrl |= (dd->cspec->updthresh &
6700 SYM_RMASK(SendCtrl, AvailUpdThld))
6701 << SYM_LSB(SendCtrl, AvailUpdThld);
6702 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
6703 sendctrl_7322_mod(dd->pport, QIB_SENDCTRL_AVAIL_BLIP);
6704 } else
6705 spin_unlock_irqrestore(&dd->sendctrl_lock, flags);
6706 break;
6707
6708 default:
6709 break;
6710 }
6711
6712 for (i = start / BITS_PER_LONG; which >= 2 && i <= lastr; ++i)
6713 qib_write_kreg(dd, kr_sendcheckmask + i,
6714 dd->cspec->sendchkenable[i]);
6715
6716 for (i = start / BITS_PER_LONG; which < 2 && i <= lastr; ++i) {
6717 qib_write_kreg(dd, kr_sendgrhcheckmask + i,
6718 dd->cspec->sendgrhchk[i]);
6719 qib_write_kreg(dd, kr_sendibpktmask + i,
6720 dd->cspec->sendibchk[i]);
6721 }
6722
6723 /*
6724 * Be sure whatever we did was seen by the chip and acted upon,
6725 * before we return. Mostly important for which >= 2.
6726 */
6727 qib_read_kreg32(dd, kr_scratch);
6728}
6729
6730
6731/* useful for trigger analyzers, etc. */
6732static void writescratch(struct qib_devdata *dd, u32 val)
6733{
6734 qib_write_kreg(dd, kr_scratch, val);
6735}
6736
6737/* Dummy for now, use chip regs soon */
6738static int qib_7322_tempsense_rd(struct qib_devdata *dd, int regnum)
6739{
6740 return -ENXIO;
6741}
6742
6743/**
6744 * qib_init_iba7322_funcs - set up the chip-specific function pointers
6745 * @dev: the pci_dev for qlogic_ib device
6746 * @ent: pci_device_id struct for this dev
6747 *
6748 * Also allocates, inits, and returns the devdata struct for this
6749 * device instance
6750 *
6751 * This is global, and is called directly at init to set up the
6752 * chip-specific function pointers for later use.
6753 */
6754struct qib_devdata *qib_init_iba7322_funcs(struct pci_dev *pdev,
6755 const struct pci_device_id *ent)
6756{
6757 struct qib_devdata *dd;
6758 int ret, i;
6759 u32 tabsize, actual_cnt = 0;
6760
6761 dd = qib_alloc_devdata(pdev,
6762 NUM_IB_PORTS * sizeof(struct qib_pportdata) +
6763 sizeof(struct qib_chip_specific) +
6764 NUM_IB_PORTS * sizeof(struct qib_chippport_specific));
6765 if (IS_ERR(dd))
6766 goto bail;
6767
6768 dd->f_bringup_serdes = qib_7322_bringup_serdes;
6769 dd->f_cleanup = qib_setup_7322_cleanup;
6770 dd->f_clear_tids = qib_7322_clear_tids;
6771 dd->f_free_irq = qib_7322_free_irq;
6772 dd->f_get_base_info = qib_7322_get_base_info;
6773 dd->f_get_msgheader = qib_7322_get_msgheader;
6774 dd->f_getsendbuf = qib_7322_getsendbuf;
6775 dd->f_gpio_mod = gpio_7322_mod;
6776 dd->f_eeprom_wen = qib_7322_eeprom_wen;
6777 dd->f_hdrqempty = qib_7322_hdrqempty;
6778 dd->f_ib_updown = qib_7322_ib_updown;
6779 dd->f_init_ctxt = qib_7322_init_ctxt;
6780 dd->f_initvl15_bufs = qib_7322_initvl15_bufs;
6781 dd->f_intr_fallback = qib_7322_intr_fallback;
6782 dd->f_late_initreg = qib_late_7322_initreg;
6783 dd->f_setpbc_control = qib_7322_setpbc_control;
6784 dd->f_portcntr = qib_portcntr_7322;
6785 dd->f_put_tid = qib_7322_put_tid;
6786 dd->f_quiet_serdes = qib_7322_mini_quiet_serdes;
6787 dd->f_rcvctrl = rcvctrl_7322_mod;
6788 dd->f_read_cntrs = qib_read_7322cntrs;
6789 dd->f_read_portcntrs = qib_read_7322portcntrs;
6790 dd->f_reset = qib_do_7322_reset;
6791 dd->f_init_sdma_regs = init_sdma_7322_regs;
6792 dd->f_sdma_busy = qib_sdma_7322_busy;
6793 dd->f_sdma_gethead = qib_sdma_7322_gethead;
6794 dd->f_sdma_sendctrl = qib_7322_sdma_sendctrl;
6795 dd->f_sdma_set_desc_cnt = qib_sdma_set_7322_desc_cnt;
6796 dd->f_sdma_update_tail = qib_sdma_update_7322_tail;
6797 dd->f_sendctrl = sendctrl_7322_mod;
6798 dd->f_set_armlaunch = qib_set_7322_armlaunch;
6799 dd->f_set_cntr_sample = qib_set_cntr_7322_sample;
6800 dd->f_iblink_state = qib_7322_iblink_state;
6801 dd->f_ibphys_portstate = qib_7322_phys_portstate;
6802 dd->f_get_ib_cfg = qib_7322_get_ib_cfg;
6803 dd->f_set_ib_cfg = qib_7322_set_ib_cfg;
6804 dd->f_set_ib_loopback = qib_7322_set_loopback;
6805 dd->f_get_ib_table = qib_7322_get_ib_table;
6806 dd->f_set_ib_table = qib_7322_set_ib_table;
6807 dd->f_set_intr_state = qib_7322_set_intr_state;
6808 dd->f_setextled = qib_setup_7322_setextled;
6809 dd->f_txchk_change = qib_7322_txchk_change;
6810 dd->f_update_usrhead = qib_update_7322_usrhead;
6811 dd->f_wantpiobuf_intr = qib_wantpiobuf_7322_intr;
6812 dd->f_xgxs_reset = qib_7322_mini_pcs_reset;
6813 dd->f_sdma_hw_clean_up = qib_7322_sdma_hw_clean_up;
6814 dd->f_sdma_hw_start_up = qib_7322_sdma_hw_start_up;
6815 dd->f_sdma_init_early = qib_7322_sdma_init_early;
6816 dd->f_writescratch = writescratch;
6817 dd->f_tempsense_rd = qib_7322_tempsense_rd;
6818 /*
6819 * Do remaining PCIe setup and save PCIe values in dd.
6820 * Any error printing is already done by the init code.
6821 * On return, we have the chip mapped, but chip registers
6822 * are not set up until start of qib_init_7322_variables.
6823 */
6824 ret = qib_pcie_ddinit(dd, pdev, ent);
6825 if (ret < 0)
6826 goto bail_free;
6827
6828 /* initialize chip-specific variables */
6829 ret = qib_init_7322_variables(dd);
6830 if (ret)
6831 goto bail_cleanup;
6832
6833 if (qib_mini_init || !dd->num_pports)
6834 goto bail;
6835
6836 /*
6837 * Determine number of vectors we want; depends on port count
6838 * and number of configured kernel receive queues actually used.
6839 * Should also depend on whether sdma is enabled or not, but
6840 * that's such a rare testing case it's not worth worrying about.
6841 */
6842 tabsize = dd->first_user_ctxt + ARRAY_SIZE(irq_table);
6843 for (i = 0; i < tabsize; i++)
6844 if ((i < ARRAY_SIZE(irq_table) &&
6845 irq_table[i].port <= dd->num_pports) ||
6846 (i >= ARRAY_SIZE(irq_table) &&
6847 dd->rcd[i - ARRAY_SIZE(irq_table)]))
6848 actual_cnt++;
e67306a3
MM
6849 /* reduce by ctxt's < 2 */
6850 if (qib_krcvq01_no_msi)
6851 actual_cnt -= dd->num_pports;
6852
f931551b
RC
6853 tabsize = actual_cnt;
6854 dd->cspec->msix_entries = kmalloc(tabsize *
6855 sizeof(struct msix_entry), GFP_KERNEL);
6856 dd->cspec->msix_arg = kmalloc(tabsize *
6857 sizeof(void *), GFP_KERNEL);
6858 if (!dd->cspec->msix_entries || !dd->cspec->msix_arg) {
6859 qib_dev_err(dd, "No memory for MSIx table\n");
6860 tabsize = 0;
6861 }
6862 for (i = 0; i < tabsize; i++)
6863 dd->cspec->msix_entries[i].entry = i;
6864
6865 if (qib_pcie_params(dd, 8, &tabsize, dd->cspec->msix_entries))
6866 qib_dev_err(dd, "Failed to setup PCIe or interrupts; "
6867 "continuing anyway\n");
6868 /* may be less than we wanted, if not enough available */
6869 dd->cspec->num_msix_entries = tabsize;
6870
6871 /* setup interrupt handler */
6872 qib_setup_7322_interrupt(dd, 1);
6873
6874 /* clear diagctrl register, in case diags were running and crashed */
6875 qib_write_kreg(dd, kr_hwdiagctrl, 0);
6876
f931551b
RC
6877 goto bail;
6878
6879bail_cleanup:
6880 qib_pcie_ddcleanup(dd);
6881bail_free:
6882 qib_free_devdata(dd);
6883 dd = ERR_PTR(ret);
6884bail:
6885 return dd;
6886}
6887
6888/*
6889 * Set the table entry at the specified index from the table specifed.
6890 * There are 3 * TXDDS_TABLE_SZ entries in all per port, with the first
6891 * TXDDS_TABLE_SZ for SDR, the next for DDR, and the last for QDR.
6892 * 'idx' below addresses the correct entry, while its 4 LSBs select the
6893 * corresponding entry (one of TXDDS_TABLE_SZ) from the selected table.
6894 */
6895#define DDS_ENT_AMP_LSB 14
6896#define DDS_ENT_MAIN_LSB 9
6897#define DDS_ENT_POST_LSB 5
6898#define DDS_ENT_PRE_XTRA_LSB 3
6899#define DDS_ENT_PRE_LSB 0
6900
6901/*
6902 * Set one entry in the TxDDS table for spec'd port
6903 * ridx picks one of the entries, while tp points
6904 * to the appropriate table entry.
6905 */
6906static void set_txdds(struct qib_pportdata *ppd, int ridx,
6907 const struct txdds_ent *tp)
6908{
6909 struct qib_devdata *dd = ppd->dd;
6910 u32 pack_ent;
6911 int regidx;
6912
6913 /* Get correct offset in chip-space, and in source table */
6914 regidx = KREG_IBPORT_IDX(IBSD_DDS_MAP_TABLE) + ridx;
6915 /*
6916 * We do not use qib_write_kreg_port() because it was intended
6917 * only for registers in the lower "port specific" pages.
6918 * So do index calculation by hand.
6919 */
6920 if (ppd->hw_pidx)
6921 regidx += (dd->palign / sizeof(u64));
6922
6923 pack_ent = tp->amp << DDS_ENT_AMP_LSB;
6924 pack_ent |= tp->main << DDS_ENT_MAIN_LSB;
6925 pack_ent |= tp->pre << DDS_ENT_PRE_LSB;
6926 pack_ent |= tp->post << DDS_ENT_POST_LSB;
6927 qib_write_kreg(dd, regidx, pack_ent);
6928 /* Prevent back-to-back writes by hitting scratch */
6929 qib_write_kreg(ppd->dd, kr_scratch, 0);
6930}
6931
6932static const struct vendor_txdds_ent vendor_txdds[] = {
6933 { /* Amphenol 1m 30awg NoEq */
6934 { 0x41, 0x50, 0x48 }, "584470002 ",
6935 { 10, 0, 0, 5 }, { 10, 0, 0, 9 }, { 7, 1, 0, 13 },
6936 },
6937 { /* Amphenol 3m 28awg NoEq */
6938 { 0x41, 0x50, 0x48 }, "584470004 ",
6939 { 0, 0, 0, 8 }, { 0, 0, 0, 11 }, { 0, 1, 7, 15 },
6940 },
6941 { /* Finisar 3m OM2 Optical */
6942 { 0x00, 0x90, 0x65 }, "FCBG410QB1C03-QL",
6943 { 0, 0, 0, 3 }, { 0, 0, 0, 4 }, { 0, 0, 0, 13 },
6944 },
6945 { /* Finisar 30m OM2 Optical */
6946 { 0x00, 0x90, 0x65 }, "FCBG410QB1C30-QL",
6947 { 0, 0, 0, 1 }, { 0, 0, 0, 5 }, { 0, 0, 0, 11 },
6948 },
6949 { /* Finisar Default OM2 Optical */
6950 { 0x00, 0x90, 0x65 }, NULL,
6951 { 0, 0, 0, 2 }, { 0, 0, 0, 5 }, { 0, 0, 0, 12 },
6952 },
6953 { /* Gore 1m 30awg NoEq */
6954 { 0x00, 0x21, 0x77 }, "QSN3300-1 ",
6955 { 0, 0, 0, 6 }, { 0, 0, 0, 9 }, { 0, 1, 0, 15 },
6956 },
6957 { /* Gore 2m 30awg NoEq */
6958 { 0x00, 0x21, 0x77 }, "QSN3300-2 ",
6959 { 0, 0, 0, 8 }, { 0, 0, 0, 10 }, { 0, 1, 7, 15 },
6960 },
6961 { /* Gore 1m 28awg NoEq */
6962 { 0x00, 0x21, 0x77 }, "QSN3800-1 ",
6963 { 0, 0, 0, 6 }, { 0, 0, 0, 8 }, { 0, 1, 0, 15 },
6964 },
6965 { /* Gore 3m 28awg NoEq */
6966 { 0x00, 0x21, 0x77 }, "QSN3800-3 ",
6967 { 0, 0, 0, 9 }, { 0, 0, 0, 13 }, { 0, 1, 7, 15 },
6968 },
6969 { /* Gore 5m 24awg Eq */
6970 { 0x00, 0x21, 0x77 }, "QSN7000-5 ",
6971 { 0, 0, 0, 7 }, { 0, 0, 0, 9 }, { 0, 1, 3, 15 },
6972 },
6973 { /* Gore 7m 24awg Eq */
6974 { 0x00, 0x21, 0x77 }, "QSN7000-7 ",
6975 { 0, 0, 0, 9 }, { 0, 0, 0, 11 }, { 0, 2, 6, 15 },
6976 },
6977 { /* Gore 5m 26awg Eq */
6978 { 0x00, 0x21, 0x77 }, "QSN7600-5 ",
6979 { 0, 0, 0, 8 }, { 0, 0, 0, 11 }, { 0, 1, 9, 13 },
6980 },
6981 { /* Gore 7m 26awg Eq */
6982 { 0x00, 0x21, 0x77 }, "QSN7600-7 ",
6983 { 0, 0, 0, 8 }, { 0, 0, 0, 11 }, { 10, 1, 8, 15 },
6984 },
6985 { /* Intersil 12m 24awg Active */
6986 { 0x00, 0x30, 0xB4 }, "QLX4000CQSFP1224",
6987 { 0, 0, 0, 2 }, { 0, 0, 0, 5 }, { 0, 3, 0, 9 },
6988 },
6989 { /* Intersil 10m 28awg Active */
6990 { 0x00, 0x30, 0xB4 }, "QLX4000CQSFP1028",
6991 { 0, 0, 0, 6 }, { 0, 0, 0, 4 }, { 0, 2, 0, 2 },
6992 },
6993 { /* Intersil 7m 30awg Active */
6994 { 0x00, 0x30, 0xB4 }, "QLX4000CQSFP0730",
6995 { 0, 0, 0, 6 }, { 0, 0, 0, 4 }, { 0, 1, 0, 3 },
6996 },
6997 { /* Intersil 5m 32awg Active */
6998 { 0x00, 0x30, 0xB4 }, "QLX4000CQSFP0532",
6999 { 0, 0, 0, 6 }, { 0, 0, 0, 6 }, { 0, 2, 0, 8 },
7000 },
7001 { /* Intersil Default Active */
7002 { 0x00, 0x30, 0xB4 }, NULL,
7003 { 0, 0, 0, 6 }, { 0, 0, 0, 5 }, { 0, 2, 0, 5 },
7004 },
7005 { /* Luxtera 20m Active Optical */
7006 { 0x00, 0x25, 0x63 }, NULL,
7007 { 0, 0, 0, 5 }, { 0, 0, 0, 8 }, { 0, 2, 0, 12 },
7008 },
7009 { /* Molex 1M Cu loopback */
7010 { 0x00, 0x09, 0x3A }, "74763-0025 ",
7011 { 2, 2, 6, 15 }, { 2, 2, 6, 15 }, { 2, 2, 6, 15 },
7012 },
7013 { /* Molex 2m 28awg NoEq */
7014 { 0x00, 0x09, 0x3A }, "74757-2201 ",
7015 { 0, 0, 0, 6 }, { 0, 0, 0, 9 }, { 0, 1, 1, 15 },
7016 },
7017};
7018
7019static const struct txdds_ent txdds_sdr[TXDDS_TABLE_SZ] = {
7020 /* amp, pre, main, post */
7021 { 2, 2, 15, 6 }, /* Loopback */
7022 { 0, 0, 0, 1 }, /* 2 dB */
7023 { 0, 0, 0, 2 }, /* 3 dB */
7024 { 0, 0, 0, 3 }, /* 4 dB */
7025 { 0, 0, 0, 4 }, /* 5 dB */
7026 { 0, 0, 0, 5 }, /* 6 dB */
7027 { 0, 0, 0, 6 }, /* 7 dB */
7028 { 0, 0, 0, 7 }, /* 8 dB */
7029 { 0, 0, 0, 8 }, /* 9 dB */
7030 { 0, 0, 0, 9 }, /* 10 dB */
7031 { 0, 0, 0, 10 }, /* 11 dB */
7032 { 0, 0, 0, 11 }, /* 12 dB */
7033 { 0, 0, 0, 12 }, /* 13 dB */
7034 { 0, 0, 0, 13 }, /* 14 dB */
7035 { 0, 0, 0, 14 }, /* 15 dB */
7036 { 0, 0, 0, 15 }, /* 16 dB */
7037};
7038
7039static const struct txdds_ent txdds_ddr[TXDDS_TABLE_SZ] = {
7040 /* amp, pre, main, post */
7041 { 2, 2, 15, 6 }, /* Loopback */
7042 { 0, 0, 0, 8 }, /* 2 dB */
7043 { 0, 0, 0, 8 }, /* 3 dB */
7044 { 0, 0, 0, 9 }, /* 4 dB */
7045 { 0, 0, 0, 9 }, /* 5 dB */
7046 { 0, 0, 0, 10 }, /* 6 dB */
7047 { 0, 0, 0, 10 }, /* 7 dB */
7048 { 0, 0, 0, 11 }, /* 8 dB */
7049 { 0, 0, 0, 11 }, /* 9 dB */
7050 { 0, 0, 0, 12 }, /* 10 dB */
7051 { 0, 0, 0, 12 }, /* 11 dB */
7052 { 0, 0, 0, 13 }, /* 12 dB */
7053 { 0, 0, 0, 13 }, /* 13 dB */
7054 { 0, 0, 0, 14 }, /* 14 dB */
7055 { 0, 0, 0, 14 }, /* 15 dB */
7056 { 0, 0, 0, 15 }, /* 16 dB */
7057};
7058
7059static const struct txdds_ent txdds_qdr[TXDDS_TABLE_SZ] = {
7060 /* amp, pre, main, post */
7061 { 2, 2, 15, 6 }, /* Loopback */
a77fcf89
RC
7062 { 0, 1, 0, 7 }, /* 2 dB (also QMH7342) */
7063 { 0, 1, 0, 9 }, /* 3 dB (also QMH7342) */
f931551b
RC
7064 { 0, 1, 0, 11 }, /* 4 dB */
7065 { 0, 1, 0, 13 }, /* 5 dB */
7066 { 0, 1, 0, 15 }, /* 6 dB */
7067 { 0, 1, 3, 15 }, /* 7 dB */
7068 { 0, 1, 7, 15 }, /* 8 dB */
7069 { 0, 1, 7, 15 }, /* 9 dB */
7070 { 0, 1, 8, 15 }, /* 10 dB */
7071 { 0, 1, 9, 15 }, /* 11 dB */
7072 { 0, 1, 10, 15 }, /* 12 dB */
7073 { 0, 2, 6, 15 }, /* 13 dB */
7074 { 0, 2, 7, 15 }, /* 14 dB */
7075 { 0, 2, 8, 15 }, /* 15 dB */
7076 { 0, 2, 9, 15 }, /* 16 dB */
7077};
7078
a77fcf89
RC
7079/*
7080 * extra entries for use with txselect, for indices >= TXDDS_TABLE_SZ.
7081 * These are mostly used for mez cards going through connectors
7082 * and backplane traces, but can be used to add other "unusual"
7083 * table values as well.
7084 */
7085static const struct txdds_ent txdds_extra_sdr[TXDDS_EXTRA_SZ] = {
7086 /* amp, pre, main, post */
7087 { 0, 0, 0, 1 }, /* QMH7342 backplane settings */
7088 { 0, 0, 0, 1 }, /* QMH7342 backplane settings */
7089 { 0, 0, 0, 2 }, /* QMH7342 backplane settings */
7090 { 0, 0, 0, 2 }, /* QMH7342 backplane settings */
7091 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7092 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7093 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7094 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7095 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7096 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7097 { 0, 0, 0, 11 }, /* QME7342 backplane settings */
7c7a416e
RC
7098 { 0, 0, 0, 3 }, /* QMH7342 backplane settings */
7099 { 0, 0, 0, 4 }, /* QMH7342 backplane settings */
a77fcf89
RC
7100};
7101
7102static const struct txdds_ent txdds_extra_ddr[TXDDS_EXTRA_SZ] = {
7103 /* amp, pre, main, post */
7104 { 0, 0, 0, 7 }, /* QMH7342 backplane settings */
7105 { 0, 0, 0, 7 }, /* QMH7342 backplane settings */
7106 { 0, 0, 0, 8 }, /* QMH7342 backplane settings */
7107 { 0, 0, 0, 8 }, /* QMH7342 backplane settings */
7108 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7109 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7110 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7111 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7112 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7113 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7114 { 0, 0, 0, 13 }, /* QME7342 backplane settings */
7c7a416e
RC
7115 { 0, 0, 0, 9 }, /* QMH7342 backplane settings */
7116 { 0, 0, 0, 10 }, /* QMH7342 backplane settings */
a77fcf89
RC
7117};
7118
7119static const struct txdds_ent txdds_extra_qdr[TXDDS_EXTRA_SZ] = {
7120 /* amp, pre, main, post */
7121 { 0, 1, 0, 4 }, /* QMH7342 backplane settings */
7122 { 0, 1, 0, 5 }, /* QMH7342 backplane settings */
7123 { 0, 1, 0, 6 }, /* QMH7342 backplane settings */
7124 { 0, 1, 0, 8 }, /* QMH7342 backplane settings */
7125 { 0, 1, 12, 10 }, /* QME7342 backplane setting */
7126 { 0, 1, 12, 11 }, /* QME7342 backplane setting */
7127 { 0, 1, 12, 12 }, /* QME7342 backplane setting */
7128 { 0, 1, 12, 14 }, /* QME7342 backplane setting */
7129 { 0, 1, 12, 6 }, /* QME7342 backplane setting */
7130 { 0, 1, 12, 7 }, /* QME7342 backplane setting */
7131 { 0, 1, 12, 8 }, /* QME7342 backplane setting */
7c7a416e
RC
7132 { 0, 1, 0, 10 }, /* QMH7342 backplane settings */
7133 { 0, 1, 0, 12 }, /* QMH7342 backplane settings */
a77fcf89
RC
7134};
7135
e706203c
MM
7136static const struct txdds_ent txdds_extra_mfg[TXDDS_MFG_SZ] = {
7137 /* amp, pre, main, post */
7138 { 0, 0, 0, 0 }, /* QME7342 mfg settings */
7139 { 0, 0, 0, 6 }, /* QME7342 P2 mfg settings */
7140};
7141
f931551b
RC
7142static const struct txdds_ent *get_atten_table(const struct txdds_ent *txdds,
7143 unsigned atten)
7144{
7145 /*
7146 * The attenuation table starts at 2dB for entry 1,
7147 * with entry 0 being the loopback entry.
7148 */
7149 if (atten <= 2)
7150 atten = 1;
7151 else if (atten > TXDDS_TABLE_SZ)
7152 atten = TXDDS_TABLE_SZ - 1;
7153 else
7154 atten--;
7155 return txdds + atten;
7156}
7157
7158/*
a77fcf89 7159 * if override is set, the module parameter txselect has a value
f931551b
RC
7160 * for this specific port, so use it, rather than our normal mechanism.
7161 */
7162static void find_best_ent(struct qib_pportdata *ppd,
7163 const struct txdds_ent **sdr_dds,
7164 const struct txdds_ent **ddr_dds,
7165 const struct txdds_ent **qdr_dds, int override)
7166{
7167 struct qib_qsfp_cache *qd = &ppd->cpspec->qsfp_data.cache;
7168 int idx;
7169
7170 /* Search table of known cables */
7171 for (idx = 0; !override && idx < ARRAY_SIZE(vendor_txdds); ++idx) {
7172 const struct vendor_txdds_ent *v = vendor_txdds + idx;
7173
7174 if (!memcmp(v->oui, qd->oui, QSFP_VOUI_LEN) &&
7175 (!v->partnum ||
7176 !memcmp(v->partnum, qd->partnum, QSFP_PN_LEN))) {
7177 *sdr_dds = &v->sdr;
7178 *ddr_dds = &v->ddr;
7179 *qdr_dds = &v->qdr;
7180 return;
7181 }
7182 }
7183
dde05cbd
MH
7184 /* Active cables don't have attenuation so we only set SERDES
7185 * settings to account for the attenuation of the board traces. */
f931551b
RC
7186 if (!override && QSFP_IS_ACTIVE(qd->tech)) {
7187 *sdr_dds = txdds_sdr + ppd->dd->board_atten;
7188 *ddr_dds = txdds_ddr + ppd->dd->board_atten;
7189 *qdr_dds = txdds_qdr + ppd->dd->board_atten;
7190 return;
7191 }
7192
7193 if (!override && QSFP_HAS_ATTEN(qd->tech) && (qd->atten[0] ||
7194 qd->atten[1])) {
7195 *sdr_dds = get_atten_table(txdds_sdr, qd->atten[0]);
7196 *ddr_dds = get_atten_table(txdds_ddr, qd->atten[0]);
7197 *qdr_dds = get_atten_table(txdds_qdr, qd->atten[1]);
7198 return;
a77fcf89 7199 } else if (ppd->cpspec->no_eep < TXDDS_TABLE_SZ) {
f931551b
RC
7200 /*
7201 * If we have no (or incomplete) data from the cable
a77fcf89
RC
7202 * EEPROM, or no QSFP, or override is set, use the
7203 * module parameter value to index into the attentuation
7204 * table.
f931551b 7205 */
a77fcf89
RC
7206 idx = ppd->cpspec->no_eep;
7207 *sdr_dds = &txdds_sdr[idx];
7208 *ddr_dds = &txdds_ddr[idx];
7209 *qdr_dds = &txdds_qdr[idx];
7210 } else if (ppd->cpspec->no_eep < (TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ)) {
7211 /* similar to above, but index into the "extra" table. */
7212 idx = ppd->cpspec->no_eep - TXDDS_TABLE_SZ;
7213 *sdr_dds = &txdds_extra_sdr[idx];
7214 *ddr_dds = &txdds_extra_ddr[idx];
7215 *qdr_dds = &txdds_extra_qdr[idx];
e706203c
MM
7216 } else if ((IS_QME(ppd->dd) || IS_QMH(ppd->dd)) &&
7217 ppd->cpspec->no_eep < (TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ +
7218 TXDDS_MFG_SZ)) {
7219 idx = ppd->cpspec->no_eep - (TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ);
7220 printk(KERN_INFO QIB_DRV_NAME
7221 " IB%u:%u use idx %u into txdds_mfg\n",
7222 ppd->dd->unit, ppd->port, idx);
7223 *sdr_dds = &txdds_extra_mfg[idx];
7224 *ddr_dds = &txdds_extra_mfg[idx];
7225 *qdr_dds = &txdds_extra_mfg[idx];
a77fcf89
RC
7226 } else {
7227 /* this shouldn't happen, it's range checked */
7228 *sdr_dds = txdds_sdr + qib_long_atten;
7229 *ddr_dds = txdds_ddr + qib_long_atten;
7230 *qdr_dds = txdds_qdr + qib_long_atten;
f931551b
RC
7231 }
7232}
7233
7234static void init_txdds_table(struct qib_pportdata *ppd, int override)
7235{
7236 const struct txdds_ent *sdr_dds, *ddr_dds, *qdr_dds;
7237 struct txdds_ent *dds;
7238 int idx;
7239 int single_ent = 0;
7240
a77fcf89
RC
7241 find_best_ent(ppd, &sdr_dds, &ddr_dds, &qdr_dds, override);
7242
7243 /* for mez cards or override, use the selected value for all entries */
7244 if (!(ppd->dd->flags & QIB_HAS_QSFP) || override)
f931551b 7245 single_ent = 1;
f931551b
RC
7246
7247 /* Fill in the first entry with the best entry found. */
7248 set_txdds(ppd, 0, sdr_dds);
7249 set_txdds(ppd, TXDDS_TABLE_SZ, ddr_dds);
7250 set_txdds(ppd, 2 * TXDDS_TABLE_SZ, qdr_dds);
a77fcf89
RC
7251 if (ppd->lflags & (QIBL_LINKINIT | QIBL_LINKARMED |
7252 QIBL_LINKACTIVE)) {
7253 dds = (struct txdds_ent *)(ppd->link_speed_active ==
7254 QIB_IB_QDR ? qdr_dds :
7255 (ppd->link_speed_active ==
7256 QIB_IB_DDR ? ddr_dds : sdr_dds));
7257 write_tx_serdes_param(ppd, dds);
7258 }
f931551b
RC
7259
7260 /* Fill in the remaining entries with the default table values. */
7261 for (idx = 1; idx < ARRAY_SIZE(txdds_sdr); ++idx) {
7262 set_txdds(ppd, idx, single_ent ? sdr_dds : txdds_sdr + idx);
7263 set_txdds(ppd, idx + TXDDS_TABLE_SZ,
7264 single_ent ? ddr_dds : txdds_ddr + idx);
7265 set_txdds(ppd, idx + 2 * TXDDS_TABLE_SZ,
7266 single_ent ? qdr_dds : txdds_qdr + idx);
7267 }
7268}
7269
7270#define KR_AHB_ACC KREG_IDX(ahb_access_ctrl)
7271#define KR_AHB_TRANS KREG_IDX(ahb_transaction_reg)
7272#define AHB_TRANS_RDY SYM_MASK(ahb_transaction_reg, ahb_rdy)
7273#define AHB_ADDR_LSB SYM_LSB(ahb_transaction_reg, ahb_address)
7274#define AHB_DATA_LSB SYM_LSB(ahb_transaction_reg, ahb_data)
7275#define AHB_WR SYM_MASK(ahb_transaction_reg, write_not_read)
7276#define AHB_TRANS_TRIES 10
7277
7278/*
7279 * The chan argument is 0=chan0, 1=chan1, 2=pll, 3=chan2, 4=chan4,
7280 * 5=subsystem which is why most calls have "chan + chan >> 1"
7281 * for the channel argument.
7282 */
7283static u32 ahb_mod(struct qib_devdata *dd, int quad, int chan, int addr,
7284 u32 data, u32 mask)
7285{
7286 u32 rd_data, wr_data, sz_mask;
7287 u64 trans, acc, prev_acc;
7288 u32 ret = 0xBAD0BAD;
7289 int tries;
7290
7291 prev_acc = qib_read_kreg64(dd, KR_AHB_ACC);
7292 /* From this point on, make sure we return access */
7293 acc = (quad << 1) | 1;
7294 qib_write_kreg(dd, KR_AHB_ACC, acc);
7295
7296 for (tries = 1; tries < AHB_TRANS_TRIES; ++tries) {
7297 trans = qib_read_kreg64(dd, KR_AHB_TRANS);
7298 if (trans & AHB_TRANS_RDY)
7299 break;
7300 }
7301 if (tries >= AHB_TRANS_TRIES) {
7302 qib_dev_err(dd, "No ahb_rdy in %d tries\n", AHB_TRANS_TRIES);
7303 goto bail;
7304 }
7305
7306 /* If mask is not all 1s, we need to read, but different SerDes
7307 * entities have different sizes
7308 */
7309 sz_mask = (1UL << ((quad == 1) ? 32 : 16)) - 1;
7310 wr_data = data & mask & sz_mask;
7311 if ((~mask & sz_mask) != 0) {
7312 trans = ((chan << 6) | addr) << (AHB_ADDR_LSB + 1);
7313 qib_write_kreg(dd, KR_AHB_TRANS, trans);
7314
7315 for (tries = 1; tries < AHB_TRANS_TRIES; ++tries) {
7316 trans = qib_read_kreg64(dd, KR_AHB_TRANS);
7317 if (trans & AHB_TRANS_RDY)
7318 break;
7319 }
7320 if (tries >= AHB_TRANS_TRIES) {
7321 qib_dev_err(dd, "No Rd ahb_rdy in %d tries\n",
7322 AHB_TRANS_TRIES);
7323 goto bail;
7324 }
7325 /* Re-read in case host split reads and read data first */
7326 trans = qib_read_kreg64(dd, KR_AHB_TRANS);
7327 rd_data = (uint32_t)(trans >> AHB_DATA_LSB);
7328 wr_data |= (rd_data & ~mask & sz_mask);
7329 }
7330
7331 /* If mask is not zero, we need to write. */
7332 if (mask & sz_mask) {
7333 trans = ((chan << 6) | addr) << (AHB_ADDR_LSB + 1);
7334 trans |= ((uint64_t)wr_data << AHB_DATA_LSB);
7335 trans |= AHB_WR;
7336 qib_write_kreg(dd, KR_AHB_TRANS, trans);
7337
7338 for (tries = 1; tries < AHB_TRANS_TRIES; ++tries) {
7339 trans = qib_read_kreg64(dd, KR_AHB_TRANS);
7340 if (trans & AHB_TRANS_RDY)
7341 break;
7342 }
7343 if (tries >= AHB_TRANS_TRIES) {
7344 qib_dev_err(dd, "No Wr ahb_rdy in %d tries\n",
7345 AHB_TRANS_TRIES);
7346 goto bail;
7347 }
7348 }
7349 ret = wr_data;
7350bail:
7351 qib_write_kreg(dd, KR_AHB_ACC, prev_acc);
7352 return ret;
7353}
7354
7355static void ibsd_wr_allchans(struct qib_pportdata *ppd, int addr, unsigned data,
7356 unsigned mask)
7357{
7358 struct qib_devdata *dd = ppd->dd;
7359 int chan;
7360 u32 rbc;
7361
7362 for (chan = 0; chan < SERDES_CHANS; ++chan) {
7363 ahb_mod(dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)), addr,
7364 data, mask);
7365 rbc = ahb_mod(dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7366 addr, 0, 0);
7367 }
7368}
7369
a0a234d4
MM
7370static void serdes_7322_los_enable(struct qib_pportdata *ppd, int enable)
7371{
7372 u64 data = qib_read_kreg_port(ppd, krp_serdesctrl);
31264484
MH
7373 u8 state = SYM_FIELD(data, IBSerdesCtrl_0, RXLOSEN);
7374
7375 if (enable && !state) {
7376 printk(KERN_INFO QIB_DRV_NAME " IB%u:%u Turning LOS on\n",
7377 ppd->dd->unit, ppd->port);
a0a234d4 7378 data |= SYM_MASK(IBSerdesCtrl_0, RXLOSEN);
31264484
MH
7379 } else if (!enable && state) {
7380 printk(KERN_INFO QIB_DRV_NAME " IB%u:%u Turning LOS off\n",
7381 ppd->dd->unit, ppd->port);
a0a234d4 7382 data &= ~SYM_MASK(IBSerdesCtrl_0, RXLOSEN);
31264484 7383 }
a0a234d4
MM
7384 qib_write_kreg_port(ppd, krp_serdesctrl, data);
7385}
7386
f931551b
RC
7387static int serdes_7322_init(struct qib_pportdata *ppd)
7388{
a0a234d4
MM
7389 int ret = 0;
7390 if (ppd->dd->cspec->r1)
7391 ret = serdes_7322_init_old(ppd);
7392 else
7393 ret = serdes_7322_init_new(ppd);
7394 return ret;
7395}
7396
7397static int serdes_7322_init_old(struct qib_pportdata *ppd)
7398{
f931551b
RC
7399 u32 le_val;
7400
7401 /*
7402 * Initialize the Tx DDS tables. Also done every QSFP event,
7403 * for adapters with QSFP
7404 */
7405 init_txdds_table(ppd, 0);
7406
a77fcf89
RC
7407 /* ensure no tx overrides from earlier driver loads */
7408 qib_write_kreg_port(ppd, krp_tx_deemph_override,
7409 SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7410 reset_tx_deemphasis_override));
7411
f931551b
RC
7412 /* Patch some SerDes defaults to "Better for IB" */
7413 /* Timing Loop Bandwidth: cdr_timing[11:9] = 0 */
7414 ibsd_wr_allchans(ppd, 2, 0, BMASK(11, 9));
7415
7416 /* Termination: rxtermctrl_r2d addr 11 bits [12:11] = 1 */
7417 ibsd_wr_allchans(ppd, 11, (1 << 11), BMASK(12, 11));
7418 /* Enable LE2: rxle2en_r2a addr 13 bit [6] = 1 */
7419 ibsd_wr_allchans(ppd, 13, (1 << 6), (1 << 6));
7420
7421 /* May be overridden in qsfp_7322_event */
7422 le_val = IS_QME(ppd->dd) ? LE2_QME : LE2_DEFAULT;
7423 ibsd_wr_allchans(ppd, 13, (le_val << 7), BMASK(9, 7));
7424
7425 /* enable LE1 adaptation for all but QME, which is disabled */
7426 le_val = IS_QME(ppd->dd) ? 0 : 1;
7427 ibsd_wr_allchans(ppd, 13, (le_val << 5), (1 << 5));
7428
7429 /* Clear cmode-override, may be set from older driver */
7430 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 10, 0 << 14, 1 << 14);
7431
7432 /* Timing Recovery: rxtapsel addr 5 bits [9:8] = 0 */
7433 ibsd_wr_allchans(ppd, 5, (0 << 8), BMASK(9, 8));
7434
7435 /* setup LoS params; these are subsystem, so chan == 5 */
7436 /* LoS filter threshold_count on, ch 0-3, set to 8 */
7437 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 5, 8 << 11, BMASK(14, 11));
7438 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 7, 8 << 4, BMASK(7, 4));
7439 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 8, 8 << 11, BMASK(14, 11));
7440 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 10, 8 << 4, BMASK(7, 4));
7441
7442 /* LoS filter threshold_count off, ch 0-3, set to 4 */
7443 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 6, 4 << 0, BMASK(3, 0));
7444 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 7, 4 << 8, BMASK(11, 8));
7445 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 9, 4 << 0, BMASK(3, 0));
7446 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 10, 4 << 8, BMASK(11, 8));
7447
7448 /* LoS filter select enabled */
7449 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 9, 1 << 15, 1 << 15);
7450
7451 /* LoS target data: SDR=4, DDR=2, QDR=1 */
7452 ibsd_wr_allchans(ppd, 14, (1 << 3), BMASK(5, 3)); /* QDR */
7453 ibsd_wr_allchans(ppd, 20, (2 << 10), BMASK(12, 10)); /* DDR */
7454 ibsd_wr_allchans(ppd, 20, (4 << 13), BMASK(15, 13)); /* SDR */
7455
a0a234d4 7456 serdes_7322_los_enable(ppd, 1);
f931551b
RC
7457
7458 /* rxbistena; set 0 to avoid effects of it switch later */
7459 ibsd_wr_allchans(ppd, 9, 0 << 15, 1 << 15);
7460
7461 /* Configure 4 DFE taps, and only they adapt */
7462 ibsd_wr_allchans(ppd, 16, 0 << 0, BMASK(1, 0));
7463
7464 /* gain hi stop 32 (22) (6:1) lo stop 7 (10:7) target 22 (13) (15:11) */
7465 le_val = (ppd->dd->cspec->r1 || IS_QME(ppd->dd)) ? 0xb6c0 : 0x6bac;
7466 ibsd_wr_allchans(ppd, 21, le_val, 0xfffe);
7467
7468 /*
7469 * Set receive adaptation mode. SDR and DDR adaptation are
7470 * always on, and QDR is initially enabled; later disabled.
7471 */
7472 qib_write_kreg_port(ppd, krp_static_adapt_dis(0), 0ULL);
7473 qib_write_kreg_port(ppd, krp_static_adapt_dis(1), 0ULL);
7474 qib_write_kreg_port(ppd, krp_static_adapt_dis(2),
7475 ppd->dd->cspec->r1 ?
7476 QDR_STATIC_ADAPT_DOWN_R1 : QDR_STATIC_ADAPT_DOWN);
7477 ppd->cpspec->qdr_dfe_on = 1;
7478
a77fcf89 7479 /* FLoop LOS gate: PPM filter enabled */
f931551b
RC
7480 ibsd_wr_allchans(ppd, 38, 0 << 10, 1 << 10);
7481
7482 /* rx offset center enabled */
7483 ibsd_wr_allchans(ppd, 12, 1 << 4, 1 << 4);
7484
7485 if (!ppd->dd->cspec->r1) {
7486 ibsd_wr_allchans(ppd, 12, 1 << 12, 1 << 12);
7487 ibsd_wr_allchans(ppd, 12, 2 << 8, 0x0f << 8);
7488 }
7489
7490 /* Set the frequency loop bandwidth to 15 */
7491 ibsd_wr_allchans(ppd, 2, 15 << 5, BMASK(8, 5));
7492
7493 return 0;
7494}
7495
a0a234d4
MM
7496static int serdes_7322_init_new(struct qib_pportdata *ppd)
7497{
7498 u64 tstart;
7499 u32 le_val, rxcaldone;
7500 int chan, chan_done = (1 << SERDES_CHANS) - 1;
7501
a0a234d4
MM
7502 /* Clear cmode-override, may be set from older driver */
7503 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 10, 0 << 14, 1 << 14);
7504
7505 /* ensure no tx overrides from earlier driver loads */
7506 qib_write_kreg_port(ppd, krp_tx_deemph_override,
7507 SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7508 reset_tx_deemphasis_override));
7509
7510 /* START OF LSI SUGGESTED SERDES BRINGUP */
7511 /* Reset - Calibration Setup */
7512 /* Stop DFE adaptaion */
7513 ibsd_wr_allchans(ppd, 1, 0, BMASK(9, 1));
7514 /* Disable LE1 */
7515 ibsd_wr_allchans(ppd, 13, 0, BMASK(5, 5));
7516 /* Disable autoadapt for LE1 */
7517 ibsd_wr_allchans(ppd, 1, 0, BMASK(15, 15));
7518 /* Disable LE2 */
7519 ibsd_wr_allchans(ppd, 13, 0, BMASK(6, 6));
7520 /* Disable VGA */
7521 ibsd_wr_allchans(ppd, 5, 0, BMASK(0, 0));
7522 /* Disable AFE Offset Cancel */
7523 ibsd_wr_allchans(ppd, 12, 0, BMASK(12, 12));
7524 /* Disable Timing Loop */
7525 ibsd_wr_allchans(ppd, 2, 0, BMASK(3, 3));
7526 /* Disable Frequency Loop */
7527 ibsd_wr_allchans(ppd, 2, 0, BMASK(4, 4));
7528 /* Disable Baseline Wander Correction */
7529 ibsd_wr_allchans(ppd, 13, 0, BMASK(13, 13));
7530 /* Disable RX Calibration */
7531 ibsd_wr_allchans(ppd, 4, 0, BMASK(10, 10));
7532 /* Disable RX Offset Calibration */
7533 ibsd_wr_allchans(ppd, 12, 0, BMASK(4, 4));
7534 /* Select BB CDR */
7535 ibsd_wr_allchans(ppd, 2, (1 << 15), BMASK(15, 15));
7536 /* CDR Step Size */
7537 ibsd_wr_allchans(ppd, 5, 0, BMASK(9, 8));
7538 /* Enable phase Calibration */
7539 ibsd_wr_allchans(ppd, 12, (1 << 5), BMASK(5, 5));
7540 /* DFE Bandwidth [2:14-12] */
7541 ibsd_wr_allchans(ppd, 2, (4 << 12), BMASK(14, 12));
7542 /* DFE Config (4 taps only) */
7543 ibsd_wr_allchans(ppd, 16, 0, BMASK(1, 0));
7544 /* Gain Loop Bandwidth */
7545 if (!ppd->dd->cspec->r1) {
7546 ibsd_wr_allchans(ppd, 12, 1 << 12, BMASK(12, 12));
7547 ibsd_wr_allchans(ppd, 12, 2 << 8, BMASK(11, 8));
7548 } else {
7549 ibsd_wr_allchans(ppd, 19, (3 << 11), BMASK(13, 11));
7550 }
7551 /* Baseline Wander Correction Gain [13:4-0] (leave as default) */
7552 /* Baseline Wander Correction Gain [3:7-5] (leave as default) */
7553 /* Data Rate Select [5:7-6] (leave as default) */
25985edc 7554 /* RX Parallel Word Width [3:10-8] (leave as default) */
a0a234d4
MM
7555
7556 /* RX REST */
7557 /* Single- or Multi-channel reset */
7558 /* RX Analog reset */
7559 /* RX Digital reset */
7560 ibsd_wr_allchans(ppd, 0, 0, BMASK(15, 13));
7561 msleep(20);
7562 /* RX Analog reset */
7563 ibsd_wr_allchans(ppd, 0, (1 << 14), BMASK(14, 14));
7564 msleep(20);
7565 /* RX Digital reset */
7566 ibsd_wr_allchans(ppd, 0, (1 << 13), BMASK(13, 13));
7567 msleep(20);
7568
7569 /* setup LoS params; these are subsystem, so chan == 5 */
7570 /* LoS filter threshold_count on, ch 0-3, set to 8 */
7571 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 5, 8 << 11, BMASK(14, 11));
7572 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 7, 8 << 4, BMASK(7, 4));
7573 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 8, 8 << 11, BMASK(14, 11));
7574 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 10, 8 << 4, BMASK(7, 4));
7575
7576 /* LoS filter threshold_count off, ch 0-3, set to 4 */
7577 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 6, 4 << 0, BMASK(3, 0));
7578 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 7, 4 << 8, BMASK(11, 8));
7579 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 9, 4 << 0, BMASK(3, 0));
7580 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 10, 4 << 8, BMASK(11, 8));
7581
7582 /* LoS filter select enabled */
7583 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), 5, 9, 1 << 15, 1 << 15);
7584
7585 /* LoS target data: SDR=4, DDR=2, QDR=1 */
7586 ibsd_wr_allchans(ppd, 14, (1 << 3), BMASK(5, 3)); /* QDR */
7587 ibsd_wr_allchans(ppd, 20, (2 << 10), BMASK(12, 10)); /* DDR */
7588 ibsd_wr_allchans(ppd, 20, (4 << 13), BMASK(15, 13)); /* SDR */
7589
7590 /* Turn on LOS on initial SERDES init */
7591 serdes_7322_los_enable(ppd, 1);
7592 /* FLoop LOS gate: PPM filter enabled */
7593 ibsd_wr_allchans(ppd, 38, 0 << 10, 1 << 10);
7594
7595 /* RX LATCH CALIBRATION */
7596 /* Enable Eyefinder Phase Calibration latch */
7597 ibsd_wr_allchans(ppd, 15, 1, BMASK(0, 0));
7598 /* Enable RX Offset Calibration latch */
7599 ibsd_wr_allchans(ppd, 12, (1 << 4), BMASK(4, 4));
7600 msleep(20);
7601 /* Start Calibration */
7602 ibsd_wr_allchans(ppd, 4, (1 << 10), BMASK(10, 10));
7603 tstart = get_jiffies_64();
7604 while (chan_done &&
9f5754e3
MH
7605 !time_after64(get_jiffies_64(),
7606 tstart + msecs_to_jiffies(500))) {
a0a234d4
MM
7607 msleep(20);
7608 for (chan = 0; chan < SERDES_CHANS; ++chan) {
7609 rxcaldone = ahb_mod(ppd->dd, IBSD(ppd->hw_pidx),
7610 (chan + (chan >> 1)),
7611 25, 0, 0);
7612 if ((~rxcaldone & (u32)BMASK(9, 9)) == 0 &&
7613 (~chan_done & (1 << chan)) == 0)
7614 chan_done &= ~(1 << chan);
7615 }
7616 }
7617 if (chan_done) {
7618 printk(KERN_INFO QIB_DRV_NAME
7619 " Serdes %d calibration not done after .5 sec: 0x%x\n",
7620 IBSD(ppd->hw_pidx), chan_done);
7621 } else {
7622 for (chan = 0; chan < SERDES_CHANS; ++chan) {
7623 rxcaldone = ahb_mod(ppd->dd, IBSD(ppd->hw_pidx),
7624 (chan + (chan >> 1)),
7625 25, 0, 0);
7626 if ((~rxcaldone & (u32)BMASK(10, 10)) == 0)
7627 printk(KERN_INFO QIB_DRV_NAME
7628 " Serdes %d chan %d calibration "
7629 "failed\n", IBSD(ppd->hw_pidx), chan);
7630 }
7631 }
7632
7633 /* Turn off Calibration */
7634 ibsd_wr_allchans(ppd, 4, 0, BMASK(10, 10));
7635 msleep(20);
7636
7637 /* BRING RX UP */
7638 /* Set LE2 value (May be overridden in qsfp_7322_event) */
7639 le_val = IS_QME(ppd->dd) ? LE2_QME : LE2_DEFAULT;
7640 ibsd_wr_allchans(ppd, 13, (le_val << 7), BMASK(9, 7));
7641 /* Set LE2 Loop bandwidth */
7642 ibsd_wr_allchans(ppd, 3, (7 << 5), BMASK(7, 5));
7643 /* Enable LE2 */
7644 ibsd_wr_allchans(ppd, 13, (1 << 6), BMASK(6, 6));
7645 msleep(20);
7646 /* Enable H0 only */
7647 ibsd_wr_allchans(ppd, 1, 1, BMASK(9, 1));
7648 /* gain hi stop 32 (22) (6:1) lo stop 7 (10:7) target 22 (13) (15:11) */
7649 le_val = (ppd->dd->cspec->r1 || IS_QME(ppd->dd)) ? 0xb6c0 : 0x6bac;
7650 ibsd_wr_allchans(ppd, 21, le_val, 0xfffe);
7651 /* Enable VGA */
7652 ibsd_wr_allchans(ppd, 5, 0, BMASK(0, 0));
7653 msleep(20);
7654 /* Set Frequency Loop Bandwidth */
7655 ibsd_wr_allchans(ppd, 2, (7 << 5), BMASK(8, 5));
7656 /* Enable Frequency Loop */
7657 ibsd_wr_allchans(ppd, 2, (1 << 4), BMASK(4, 4));
7658 /* Set Timing Loop Bandwidth */
7659 ibsd_wr_allchans(ppd, 2, 0, BMASK(11, 9));
7660 /* Enable Timing Loop */
7661 ibsd_wr_allchans(ppd, 2, (1 << 3), BMASK(3, 3));
7662 msleep(50);
7663 /* Enable DFE
7664 * Set receive adaptation mode. SDR and DDR adaptation are
7665 * always on, and QDR is initially enabled; later disabled.
7666 */
7667 qib_write_kreg_port(ppd, krp_static_adapt_dis(0), 0ULL);
7668 qib_write_kreg_port(ppd, krp_static_adapt_dis(1), 0ULL);
7669 qib_write_kreg_port(ppd, krp_static_adapt_dis(2),
7670 ppd->dd->cspec->r1 ?
7671 QDR_STATIC_ADAPT_DOWN_R1 : QDR_STATIC_ADAPT_DOWN);
7672 ppd->cpspec->qdr_dfe_on = 1;
7673 /* Disable LE1 */
7674 ibsd_wr_allchans(ppd, 13, (0 << 5), (1 << 5));
7675 /* Disable auto adapt for LE1 */
7676 ibsd_wr_allchans(ppd, 1, (0 << 15), BMASK(15, 15));
7677 msleep(20);
7678 /* Enable AFE Offset Cancel */
7679 ibsd_wr_allchans(ppd, 12, (1 << 12), BMASK(12, 12));
7680 /* Enable Baseline Wander Correction */
7681 ibsd_wr_allchans(ppd, 12, (1 << 13), BMASK(13, 13));
7682 /* Termination: rxtermctrl_r2d addr 11 bits [12:11] = 1 */
7683 ibsd_wr_allchans(ppd, 11, (1 << 11), BMASK(12, 11));
7684 /* VGA output common mode */
7685 ibsd_wr_allchans(ppd, 12, (3 << 2), BMASK(3, 2));
7686
dde05cbd
MH
7687 /*
7688 * Initialize the Tx DDS tables. Also done every QSFP event,
7689 * for adapters with QSFP
7690 */
7691 init_txdds_table(ppd, 0);
7692
a0a234d4
MM
7693 return 0;
7694}
7695
f931551b
RC
7696/* start adjust QMH serdes parameters */
7697
7698static void set_man_code(struct qib_pportdata *ppd, int chan, int code)
7699{
7700 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7701 9, code << 9, 0x3f << 9);
7702}
7703
7704static void set_man_mode_h1(struct qib_pportdata *ppd, int chan,
7705 int enable, u32 tapenable)
7706{
7707 if (enable)
7708 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7709 1, 3 << 10, 0x1f << 10);
7710 else
7711 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7712 1, 0, 0x1f << 10);
7713}
7714
7715/* Set clock to 1, 0, 1, 0 */
7716static void clock_man(struct qib_pportdata *ppd, int chan)
7717{
7718 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7719 4, 0x4000, 0x4000);
7720 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7721 4, 0, 0x4000);
7722 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7723 4, 0x4000, 0x4000);
7724 ahb_mod(ppd->dd, IBSD(ppd->hw_pidx), (chan + (chan >> 1)),
7725 4, 0, 0x4000);
7726}
7727
7728/*
7729 * write the current Tx serdes pre,post,main,amp settings into the serdes.
7730 * The caller must pass the settings appropriate for the current speed,
7731 * or not care if they are correct for the current speed.
7732 */
7733static void write_tx_serdes_param(struct qib_pportdata *ppd,
7734 struct txdds_ent *txdds)
7735{
7736 u64 deemph;
7737
7738 deemph = qib_read_kreg_port(ppd, krp_tx_deemph_override);
7739 /* field names for amp, main, post, pre, respectively */
7740 deemph &= ~(SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0, txampcntl_d2a) |
7741 SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0, txc0_ena) |
7742 SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0, txcp1_ena) |
7743 SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0, txcn1_ena));
a77fcf89
RC
7744
7745 deemph |= SYM_MASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7746 tx_override_deemphasis_select);
7747 deemph |= (txdds->amp & SYM_RMASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7748 txampcntl_d2a)) << SYM_LSB(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7749 txampcntl_d2a);
7750 deemph |= (txdds->main & SYM_RMASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7751 txc0_ena)) << SYM_LSB(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7752 txc0_ena);
7753 deemph |= (txdds->post & SYM_RMASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7754 txcp1_ena)) << SYM_LSB(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7755 txcp1_ena);
7756 deemph |= (txdds->pre & SYM_RMASK(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
7757 txcn1_ena)) << SYM_LSB(IBSD_TX_DEEMPHASIS_OVERRIDE_0,
f931551b
RC
7758 txcn1_ena);
7759 qib_write_kreg_port(ppd, krp_tx_deemph_override, deemph);
7760}
7761
7762/*
a77fcf89
RC
7763 * Set the parameters for mez cards on link bounce, so they are
7764 * always exactly what was requested. Similar logic to init_txdds
7765 * but does just the serdes.
f931551b
RC
7766 */
7767static void adj_tx_serdes(struct qib_pportdata *ppd)
7768{
a77fcf89
RC
7769 const struct txdds_ent *sdr_dds, *ddr_dds, *qdr_dds;
7770 struct txdds_ent *dds;
f931551b 7771
a77fcf89
RC
7772 find_best_ent(ppd, &sdr_dds, &ddr_dds, &qdr_dds, 1);
7773 dds = (struct txdds_ent *)(ppd->link_speed_active == QIB_IB_QDR ?
7774 qdr_dds : (ppd->link_speed_active == QIB_IB_DDR ?
7775 ddr_dds : sdr_dds));
7776 write_tx_serdes_param(ppd, dds);
f931551b
RC
7777}
7778
7779/* set QDR forced value for H1, if needed */
7780static void force_h1(struct qib_pportdata *ppd)
7781{
7782 int chan;
7783
7784 ppd->cpspec->qdr_reforce = 0;
7785 if (!ppd->dd->cspec->r1)
7786 return;
7787
7788 for (chan = 0; chan < SERDES_CHANS; chan++) {
7789 set_man_mode_h1(ppd, chan, 1, 0);
7790 set_man_code(ppd, chan, ppd->cpspec->h1_val);
7791 clock_man(ppd, chan);
7792 set_man_mode_h1(ppd, chan, 0, 0);
7793 }
7794}
7795
f931551b
RC
7796#define SJA_EN SYM_MASK(SPC_JTAG_ACCESS_REG, SPC_JTAG_ACCESS_EN)
7797#define BISTEN_LSB SYM_LSB(SPC_JTAG_ACCESS_REG, bist_en)
7798
7799#define R_OPCODE_LSB 3
7800#define R_OP_NOP 0
7801#define R_OP_SHIFT 2
7802#define R_OP_UPDATE 3
7803#define R_TDI_LSB 2
7804#define R_TDO_LSB 1
7805#define R_RDY 1
7806
7807static int qib_r_grab(struct qib_devdata *dd)
7808{
7809 u64 val;
7810 val = SJA_EN;
7811 qib_write_kreg(dd, kr_r_access, val);
7812 qib_read_kreg32(dd, kr_scratch);
7813 return 0;
7814}
7815
7816/* qib_r_wait_for_rdy() not only waits for the ready bit, it
7817 * returns the current state of R_TDO
7818 */
7819static int qib_r_wait_for_rdy(struct qib_devdata *dd)
7820{
7821 u64 val;
7822 int timeout;
7823 for (timeout = 0; timeout < 100 ; ++timeout) {
7824 val = qib_read_kreg32(dd, kr_r_access);
7825 if (val & R_RDY)
7826 return (val >> R_TDO_LSB) & 1;
7827 }
7828 return -1;
7829}
7830
7831static int qib_r_shift(struct qib_devdata *dd, int bisten,
7832 int len, u8 *inp, u8 *outp)
7833{
7834 u64 valbase, val;
7835 int ret, pos;
7836
7837 valbase = SJA_EN | (bisten << BISTEN_LSB) |
7838 (R_OP_SHIFT << R_OPCODE_LSB);
7839 ret = qib_r_wait_for_rdy(dd);
7840 if (ret < 0)
7841 goto bail;
7842 for (pos = 0; pos < len; ++pos) {
7843 val = valbase;
7844 if (outp) {
7845 outp[pos >> 3] &= ~(1 << (pos & 7));
7846 outp[pos >> 3] |= (ret << (pos & 7));
7847 }
7848 if (inp) {
7849 int tdi = inp[pos >> 3] >> (pos & 7);
7850 val |= ((tdi & 1) << R_TDI_LSB);
7851 }
7852 qib_write_kreg(dd, kr_r_access, val);
7853 qib_read_kreg32(dd, kr_scratch);
7854 ret = qib_r_wait_for_rdy(dd);
7855 if (ret < 0)
7856 break;
7857 }
7858 /* Restore to NOP between operations. */
7859 val = SJA_EN | (bisten << BISTEN_LSB);
7860 qib_write_kreg(dd, kr_r_access, val);
7861 qib_read_kreg32(dd, kr_scratch);
7862 ret = qib_r_wait_for_rdy(dd);
7863
7864 if (ret >= 0)
7865 ret = pos;
7866bail:
7867 return ret;
7868}
7869
7870static int qib_r_update(struct qib_devdata *dd, int bisten)
7871{
7872 u64 val;
7873 int ret;
7874
7875 val = SJA_EN | (bisten << BISTEN_LSB) | (R_OP_UPDATE << R_OPCODE_LSB);
7876 ret = qib_r_wait_for_rdy(dd);
7877 if (ret >= 0) {
7878 qib_write_kreg(dd, kr_r_access, val);
7879 qib_read_kreg32(dd, kr_scratch);
7880 }
7881 return ret;
7882}
7883
7884#define BISTEN_PORT_SEL 15
7885#define LEN_PORT_SEL 625
7886#define BISTEN_AT 17
7887#define LEN_AT 156
7888#define BISTEN_ETM 16
7889#define LEN_ETM 632
7890
7891#define BIT2BYTE(x) (((x) + BITS_PER_BYTE - 1) / BITS_PER_BYTE)
7892
7893/* these are common for all IB port use cases. */
7894static u8 reset_at[BIT2BYTE(LEN_AT)] = {
7895 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7896 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
7897};
7898static u8 reset_atetm[BIT2BYTE(LEN_ETM)] = {
7899 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7900 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7901 0x00, 0x00, 0x00, 0x80, 0xe3, 0x81, 0x73, 0x3c, 0x70, 0x8e,
7902 0x07, 0xce, 0xf1, 0xc0, 0x39, 0x1e, 0x38, 0xc7, 0x03, 0xe7,
7903 0x78, 0xe0, 0x1c, 0x0f, 0x9c, 0x7f, 0x80, 0x73, 0x0f, 0x70,
7904 0xde, 0x01, 0xce, 0x39, 0xc0, 0xf9, 0x06, 0x38, 0xd7, 0x00,
7905 0xe7, 0x19, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7906 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
7907};
7908static u8 at[BIT2BYTE(LEN_AT)] = {
7909 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
7910 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
7911};
7912
7913/* used for IB1 or IB2, only one in use */
7914static u8 atetm_1port[BIT2BYTE(LEN_ETM)] = {
7915 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7916 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7917 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7918 0x00, 0x10, 0xf2, 0x80, 0x83, 0x1e, 0x38, 0x00, 0x00, 0x00,
7919 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7920 0x00, 0x00, 0x50, 0xf4, 0x41, 0x00, 0x18, 0x78, 0xc8, 0x03,
7921 0x07, 0x7b, 0xa0, 0x3e, 0x00, 0x02, 0x00, 0x00, 0x18, 0x00,
7922 0x18, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00,
7923};
7924
7925/* used when both IB1 and IB2 are in use */
7926static u8 atetm_2port[BIT2BYTE(LEN_ETM)] = {
7927 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7928 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79,
7929 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7930 0x00, 0x00, 0xf8, 0x80, 0x83, 0x1e, 0x38, 0xe0, 0x03, 0x05,
7931 0x7b, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80,
7932 0xa2, 0x0f, 0x50, 0xf4, 0x41, 0x00, 0x18, 0x78, 0xd1, 0x07,
7933 0x02, 0x7c, 0x80, 0x3e, 0x00, 0x02, 0x00, 0x00, 0x3e, 0x00,
7934 0x02, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00,
7935};
7936
7937/* used when only IB1 is in use */
7938static u8 portsel_port1[BIT2BYTE(LEN_PORT_SEL)] = {
7939 0x32, 0x65, 0xa4, 0x7b, 0x10, 0x98, 0xdc, 0xfe, 0x13, 0x13,
7940 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x73, 0x0c, 0x0c, 0x0c,
7941 0x0c, 0x0c, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,
7942 0x13, 0x78, 0x78, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,
7943 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x74, 0x32,
7944 0x32, 0x32, 0x32, 0x32, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14,
7945 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14,
7946 0x14, 0x14, 0x9f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
7947};
7948
7949/* used when only IB2 is in use */
7950static u8 portsel_port2[BIT2BYTE(LEN_PORT_SEL)] = {
7951 0x32, 0x65, 0xa4, 0x7b, 0x10, 0x98, 0xdc, 0xfe, 0x39, 0x39,
7952 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x73, 0x32, 0x32, 0x32,
7953 0x32, 0x32, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39,
7954 0x39, 0x78, 0x78, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39, 0x39,
7955 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x74, 0x32,
7956 0x32, 0x32, 0x32, 0x32, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a,
7957 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a,
7958 0x3a, 0x3a, 0x9f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01,
7959};
7960
7961/* used when both IB1 and IB2 are in use */
7962static u8 portsel_2port[BIT2BYTE(LEN_PORT_SEL)] = {
7963 0x32, 0xba, 0x54, 0x76, 0x10, 0x98, 0xdc, 0xfe, 0x13, 0x13,
7964 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x73, 0x0c, 0x0c, 0x0c,
7965 0x0c, 0x0c, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,
7966 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13, 0x13,
7967 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x74, 0x32,
7968 0x32, 0x32, 0x32, 0x32, 0x14, 0x14, 0x14, 0x14, 0x14, 0x3a,
7969 0x3a, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14,
7970 0x14, 0x14, 0x9f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
7971};
7972
7973/*
7974 * Do setup to properly handle IB link recovery; if port is zero, we
7975 * are initializing to cover both ports; otherwise we are initializing
7976 * to cover a single port card, or the port has reached INIT and we may
7977 * need to switch coverage types.
7978 */
7979static void setup_7322_link_recovery(struct qib_pportdata *ppd, u32 both)
7980{
7981 u8 *portsel, *etm;
7982 struct qib_devdata *dd = ppd->dd;
7983
7984 if (!ppd->dd->cspec->r1)
7985 return;
7986 if (!both) {
7987 dd->cspec->recovery_ports_initted++;
7988 ppd->cpspec->recovery_init = 1;
7989 }
7990 if (!both && dd->cspec->recovery_ports_initted == 1) {
7991 portsel = ppd->port == 1 ? portsel_port1 : portsel_port2;
7992 etm = atetm_1port;
7993 } else {
7994 portsel = portsel_2port;
7995 etm = atetm_2port;
7996 }
7997
7998 if (qib_r_grab(dd) < 0 ||
7999 qib_r_shift(dd, BISTEN_ETM, LEN_ETM, reset_atetm, NULL) < 0 ||
8000 qib_r_update(dd, BISTEN_ETM) < 0 ||
8001 qib_r_shift(dd, BISTEN_AT, LEN_AT, reset_at, NULL) < 0 ||
8002 qib_r_update(dd, BISTEN_AT) < 0 ||
8003 qib_r_shift(dd, BISTEN_PORT_SEL, LEN_PORT_SEL,
8004 portsel, NULL) < 0 ||
8005 qib_r_update(dd, BISTEN_PORT_SEL) < 0 ||
8006 qib_r_shift(dd, BISTEN_AT, LEN_AT, at, NULL) < 0 ||
8007 qib_r_update(dd, BISTEN_AT) < 0 ||
8008 qib_r_shift(dd, BISTEN_ETM, LEN_ETM, etm, NULL) < 0 ||
8009 qib_r_update(dd, BISTEN_ETM) < 0)
8010 qib_dev_err(dd, "Failed IB link recovery setup\n");
8011}
8012
8013static void check_7322_rxe_status(struct qib_pportdata *ppd)
8014{
8015 struct qib_devdata *dd = ppd->dd;
8016 u64 fmask;
8017
8018 if (dd->cspec->recovery_ports_initted != 1)
8019 return; /* rest doesn't apply to dualport */
8020 qib_write_kreg(dd, kr_control, dd->control |
8021 SYM_MASK(Control, FreezeMode));
8022 (void)qib_read_kreg64(dd, kr_scratch);
8023 udelay(3); /* ibcreset asserted 400ns, be sure that's over */
8024 fmask = qib_read_kreg64(dd, kr_act_fmask);
8025 if (!fmask) {
8026 /*
8027 * require a powercycle before we'll work again, and make
8028 * sure we get no more interrupts, and don't turn off
8029 * freeze.
8030 */
8031 ppd->dd->cspec->stay_in_freeze = 1;
8032 qib_7322_set_intr_state(ppd->dd, 0);
8033 qib_write_kreg(dd, kr_fmask, 0ULL);
8034 qib_dev_err(dd, "HCA unusable until powercycled\n");
8035 return; /* eventually reset */
8036 }
8037
8038 qib_write_kreg(ppd->dd, kr_hwerrclear,
8039 SYM_MASK(HwErrClear, IBSerdesPClkNotDetectClear_1));
8040
8041 /* don't do the full clear_freeze(), not needed for this */
8042 qib_write_kreg(dd, kr_control, dd->control);
8043 qib_read_kreg32(dd, kr_scratch);
8044 /* take IBC out of reset */
8045 if (ppd->link_speed_supported) {
8046 ppd->cpspec->ibcctrl_a &=
8047 ~SYM_MASK(IBCCtrlA_0, IBStatIntReductionEn);
8048 qib_write_kreg_port(ppd, krp_ibcctrl_a,
8049 ppd->cpspec->ibcctrl_a);
8050 qib_read_kreg32(dd, kr_scratch);
8051 if (ppd->lflags & QIBL_IB_LINK_DISABLED)
8052 qib_set_ib_7322_lstate(ppd, 0,
8053 QLOGIC_IB_IBCC_LINKINITCMD_DISABLE);
8054 }
8055}
This page took 0.607488 seconds and 5 git commands to generate.