blob: ed2a227cecedd8caf12f1262d586c70600d1345d [file] [log] [blame]
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001/*
John Gregor87427da2007-06-11 10:21:14 -07002 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08003 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#include <linux/pci.h>
35
36#include "ipath_kernel.h"
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -070037#include "ipath_verbs.h"
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -070038#include "ipath_common.h"
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -080039
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -070040/*
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -070041 * clear (write) a pio buffer, to clear a parity error. This routine
42 * should only be called when in freeze mode, and the buffer should be
43 * canceled afterwards.
44 */
45static void ipath_clrpiobuf(struct ipath_devdata *dd, u32 pnum)
46{
47 u32 __iomem *pbuf;
48 u32 dwcnt; /* dword count to write */
49 if (pnum < dd->ipath_piobcnt2k) {
50 pbuf = (u32 __iomem *) (dd->ipath_pio2kbase + pnum *
51 dd->ipath_palign);
52 dwcnt = dd->ipath_piosize2k >> 2;
53 }
54 else {
55 pbuf = (u32 __iomem *) (dd->ipath_pio4kbase +
56 (pnum - dd->ipath_piobcnt2k) * dd->ipath_4kalign);
57 dwcnt = dd->ipath_piosize4k >> 2;
58 }
59 dev_info(&dd->pcidev->dev,
60 "Rewrite PIO buffer %u, to recover from parity error\n",
61 pnum);
Arthur Jones3dd59e22008-04-16 21:01:11 -070062
63 /* no flush required, since already in freeze */
64 writel(dwcnt + 1, pbuf);
65 while (--dwcnt)
66 writel(0, pbuf++);
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -070067}
68
69/*
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -070070 * Called when we might have an error that is specific to a particular
71 * PIO buffer, and may need to cancel that buffer, so it can be re-used.
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -070072 * If rewrite is true, and bits are set in the sendbufferror registers,
73 * we'll write to the buffer, for error recovery on parity errors.
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -070074 */
Roland Dreierda9aec72007-07-17 18:37:43 -070075static void ipath_disarm_senderrbufs(struct ipath_devdata *dd, int rewrite)
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -070076{
77 u32 piobcnt;
78 unsigned long sbuf[4];
79 /*
80 * it's possible that sendbuffererror could have bits set; might
81 * have already done this as a result of hardware error handling
82 */
83 piobcnt = dd->ipath_piobcnt2k + dd->ipath_piobcnt4k;
84 /* read these before writing errorclear */
85 sbuf[0] = ipath_read_kreg64(
86 dd, dd->ipath_kregs->kr_sendbuffererror);
87 sbuf[1] = ipath_read_kreg64(
88 dd, dd->ipath_kregs->kr_sendbuffererror + 1);
89 if (piobcnt > 128) {
90 sbuf[2] = ipath_read_kreg64(
91 dd, dd->ipath_kregs->kr_sendbuffererror + 2);
92 sbuf[3] = ipath_read_kreg64(
93 dd, dd->ipath_kregs->kr_sendbuffererror + 3);
94 }
95
96 if (sbuf[0] || sbuf[1] || (piobcnt > 128 && (sbuf[2] || sbuf[3]))) {
97 int i;
Dave Olson93800682007-06-18 14:24:41 -070098 if (ipath_debug & (__IPATH_PKTDBG|__IPATH_DBG) &&
99 dd->ipath_lastcancel > jiffies) {
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -0700100 __IPATH_DBG_WHICH(__IPATH_PKTDBG|__IPATH_DBG,
101 "SendbufErrs %lx %lx", sbuf[0],
102 sbuf[1]);
103 if (ipath_debug & __IPATH_PKTDBG && piobcnt > 128)
104 printk(" %lx %lx ", sbuf[2], sbuf[3]);
105 printk("\n");
106 }
107
108 for (i = 0; i < piobcnt; i++)
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700109 if (test_bit(i, sbuf)) {
110 if (rewrite)
111 ipath_clrpiobuf(dd, i);
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -0700112 ipath_disarm_piobufs(dd, i, 1);
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700113 }
Dave Olson93800682007-06-18 14:24:41 -0700114 /* ignore armlaunch errs for a bit */
115 dd->ipath_lastcancel = jiffies+3;
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -0700116 }
117}
118
119
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700120/* These are all rcv-related errors which we want to count for stats */
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800121#define E_SUM_PKTERRS \
122 (INFINIPATH_E_RHDRLEN | INFINIPATH_E_RBADTID | \
123 INFINIPATH_E_RBADVERSION | INFINIPATH_E_RHDR | \
124 INFINIPATH_E_RLONGPKTLEN | INFINIPATH_E_RSHORTPKTLEN | \
125 INFINIPATH_E_RMAXPKTLEN | INFINIPATH_E_RMINPKTLEN | \
126 INFINIPATH_E_RFORMATERR | INFINIPATH_E_RUNSUPVL | \
127 INFINIPATH_E_RUNEXPCHAR | INFINIPATH_E_REBP)
128
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700129/* These are all send-related errors which we want to count for stats */
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800130#define E_SUM_ERRS \
131 (INFINIPATH_E_SPIOARMLAUNCH | INFINIPATH_E_SUNEXPERRPKTNUM | \
132 INFINIPATH_E_SDROPPEDDATAPKT | INFINIPATH_E_SDROPPEDSMPPKT | \
133 INFINIPATH_E_SMAXPKTLEN | INFINIPATH_E_SUNSUPVL | \
134 INFINIPATH_E_SMINPKTLEN | INFINIPATH_E_SPKTLEN | \
135 INFINIPATH_E_INVALIDADDR)
136
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700137/*
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700138 * this is similar to E_SUM_ERRS, but can't ignore armlaunch, don't ignore
139 * errors not related to freeze and cancelling buffers. Can't ignore
140 * armlaunch because could get more while still cleaning up, and need
141 * to cancel those as they happen.
142 */
143#define E_SPKT_ERRS_IGNORE \
144 (INFINIPATH_E_SDROPPEDDATAPKT | INFINIPATH_E_SDROPPEDSMPPKT | \
145 INFINIPATH_E_SMAXPKTLEN | INFINIPATH_E_SMINPKTLEN | \
146 INFINIPATH_E_SPKTLEN)
147
148/*
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700149 * these are errors that can occur when the link changes state while
150 * a packet is being sent or received. This doesn't cover things
151 * like EBP or VCRC that can be the result of a sending having the
152 * link change state, so we receive a "known bad" packet.
153 */
154#define E_SUM_LINK_PKTERRS \
155 (INFINIPATH_E_SDROPPEDDATAPKT | INFINIPATH_E_SDROPPEDSMPPKT | \
156 INFINIPATH_E_SMINPKTLEN | INFINIPATH_E_SPKTLEN | \
157 INFINIPATH_E_RSHORTPKTLEN | INFINIPATH_E_RMINPKTLEN | \
158 INFINIPATH_E_RUNEXPCHAR)
159
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800160static u64 handle_e_sum_errs(struct ipath_devdata *dd, ipath_err_t errs)
161{
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800162 u64 ignore_this_time = 0;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800163
Bryan O'Sullivan9783ab42007-03-15 14:45:07 -0700164 ipath_disarm_senderrbufs(dd, 0);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700165 if ((errs & E_SUM_LINK_PKTERRS) &&
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800166 !(dd->ipath_flags & IPATH_LINKACTIVE)) {
167 /*
168 * This can happen when SMA is trying to bring the link
169 * up, but the IB link changes state at the "wrong" time.
170 * The IB logic then complains that the packet isn't
171 * valid. We don't want to confuse people, so we just
172 * don't print them, except at debug
173 */
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700174 ipath_dbg("Ignoring packet errors %llx, because link not "
175 "ACTIVE\n", (unsigned long long) errs);
176 ignore_this_time = errs & E_SUM_LINK_PKTERRS;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800177 }
178
179 return ignore_this_time;
180}
181
Bryan O'Sullivan8d588f82006-09-28 09:00:08 -0700182/* generic hw error messages... */
183#define INFINIPATH_HWE_TXEMEMPARITYERR_MSG(a) \
184 { \
185 .mask = ( INFINIPATH_HWE_TXEMEMPARITYERR_##a << \
186 INFINIPATH_HWE_TXEMEMPARITYERR_SHIFT ), \
187 .msg = "TXE " #a " Memory Parity" \
188 }
189#define INFINIPATH_HWE_RXEMEMPARITYERR_MSG(a) \
190 { \
191 .mask = ( INFINIPATH_HWE_RXEMEMPARITYERR_##a << \
192 INFINIPATH_HWE_RXEMEMPARITYERR_SHIFT ), \
193 .msg = "RXE " #a " Memory Parity" \
194 }
195
196static const struct ipath_hwerror_msgs ipath_generic_hwerror_msgs[] = {
197 INFINIPATH_HWE_MSG(IBCBUSFRSPCPARITYERR, "IPATH2IB Parity"),
198 INFINIPATH_HWE_MSG(IBCBUSTOSPCPARITYERR, "IB2IPATH Parity"),
199
200 INFINIPATH_HWE_TXEMEMPARITYERR_MSG(PIOBUF),
201 INFINIPATH_HWE_TXEMEMPARITYERR_MSG(PIOPBC),
202 INFINIPATH_HWE_TXEMEMPARITYERR_MSG(PIOLAUNCHFIFO),
203
204 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(RCVBUF),
205 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(LOOKUPQ),
206 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(EAGERTID),
207 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(EXPTID),
208 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(FLAGBUF),
209 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(DATAINFO),
210 INFINIPATH_HWE_RXEMEMPARITYERR_MSG(HDRINFO),
211};
212
213/**
214 * ipath_format_hwmsg - format a single hwerror message
215 * @msg message buffer
216 * @msgl length of message buffer
217 * @hwmsg message to add to message buffer
218 */
219static void ipath_format_hwmsg(char *msg, size_t msgl, const char *hwmsg)
220{
221 strlcat(msg, "[", msgl);
222 strlcat(msg, hwmsg, msgl);
223 strlcat(msg, "]", msgl);
224}
225
226/**
227 * ipath_format_hwerrors - format hardware error messages for display
228 * @hwerrs hardware errors bit vector
229 * @hwerrmsgs hardware error descriptions
230 * @nhwerrmsgs number of hwerrmsgs
231 * @msg message buffer
232 * @msgl message buffer length
233 */
234void ipath_format_hwerrors(u64 hwerrs,
235 const struct ipath_hwerror_msgs *hwerrmsgs,
236 size_t nhwerrmsgs,
237 char *msg, size_t msgl)
238{
239 int i;
240 const int glen =
241 sizeof(ipath_generic_hwerror_msgs) /
242 sizeof(ipath_generic_hwerror_msgs[0]);
243
244 for (i=0; i<glen; i++) {
245 if (hwerrs & ipath_generic_hwerror_msgs[i].mask) {
246 ipath_format_hwmsg(msg, msgl,
247 ipath_generic_hwerror_msgs[i].msg);
248 }
249 }
250
251 for (i=0; i<nhwerrmsgs; i++) {
252 if (hwerrs & hwerrmsgs[i].mask) {
253 ipath_format_hwmsg(msg, msgl, hwerrmsgs[i].msg);
254 }
255 }
256}
257
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800258/* return the strings for the most common link states */
259static char *ib_linkstate(u32 linkstate)
260{
261 char *ret;
262
263 switch (linkstate) {
264 case IPATH_IBSTATE_INIT:
265 ret = "Init";
266 break;
267 case IPATH_IBSTATE_ARM:
268 ret = "Arm";
269 break;
270 case IPATH_IBSTATE_ACTIVE:
271 ret = "Active";
272 break;
273 default:
274 ret = "Down";
275 }
276
277 return ret;
278}
279
Ralph Campbell49739b32007-09-19 16:47:31 -0700280void signal_ib_event(struct ipath_devdata *dd, enum ib_event_type ev)
281{
282 struct ib_event event;
283
284 event.device = &dd->verbs_dev->ibdev;
285 event.element.port_num = 1;
286 event.event = ev;
287 ib_dispatch_event(&event);
288}
289
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800290static void handle_e_ibstatuschanged(struct ipath_devdata *dd,
291 ipath_err_t errs, int noprint)
292{
293 u64 val;
294 u32 ltstate, lstate;
295
296 /*
297 * even if diags are enabled, we want to notice LINKINIT, etc.
298 * We just don't want to change the LED state, or
299 * dd->ipath_kregs->kr_ibcctrl
300 */
301 val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus);
302 lstate = val & IPATH_IBSTATE_MASK;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700303
304 /*
305 * this is confusing enough when it happens that I want to always put it
306 * on the console and in the logs. If it was a requested state change,
307 * we'll have already cleared the flags, so we won't print this warning
308 */
309 if ((lstate != IPATH_IBSTATE_ARM && lstate != IPATH_IBSTATE_ACTIVE)
310 && (dd->ipath_flags & (IPATH_LINKARMED | IPATH_LINKACTIVE))) {
311 dev_info(&dd->pcidev->dev, "Link state changed from %s to %s\n",
312 (dd->ipath_flags & IPATH_LINKARMED) ? "ARM" : "ACTIVE",
313 ib_linkstate(lstate));
314 /*
315 * Flush all queued sends when link went to DOWN or INIT,
316 * to be sure that they don't block SMA and other MAD packets
317 */
Dave Olson3810f2a2007-07-20 14:23:37 -0700318 ipath_cancel_sends(dd, 1);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700319 }
320 else if (lstate == IPATH_IBSTATE_INIT || lstate == IPATH_IBSTATE_ARM ||
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800321 lstate == IPATH_IBSTATE_ACTIVE) {
322 /*
323 * only print at SMA if there is a change, debug if not
324 * (sometimes we want to know that, usually not).
325 */
326 if (lstate == ((unsigned) dd->ipath_lastibcstat
327 & IPATH_IBSTATE_MASK)) {
328 ipath_dbg("Status change intr but no change (%s)\n",
329 ib_linkstate(lstate));
330 }
331 else
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700332 ipath_cdbg(VERBOSE, "Unit %u link state %s, last "
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800333 "was %s\n", dd->ipath_unit,
334 ib_linkstate(lstate),
335 ib_linkstate((unsigned)
Roland Dreier5494c222006-04-19 11:40:12 -0700336 dd->ipath_lastibcstat
337 & IPATH_IBSTATE_MASK));
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800338 }
339 else {
340 lstate = dd->ipath_lastibcstat & IPATH_IBSTATE_MASK;
341 if (lstate == IPATH_IBSTATE_INIT ||
342 lstate == IPATH_IBSTATE_ARM ||
343 lstate == IPATH_IBSTATE_ACTIVE)
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700344 ipath_cdbg(VERBOSE, "Unit %u link state down"
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800345 " (state 0x%x), from %s\n",
346 dd->ipath_unit,
347 (u32)val & IPATH_IBSTATE_MASK,
348 ib_linkstate(lstate));
349 else
350 ipath_cdbg(VERBOSE, "Unit %u link state changed "
351 "to 0x%x from down (%x)\n",
352 dd->ipath_unit, (u32) val, lstate);
353 }
354 ltstate = (val >> INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT) &
355 INFINIPATH_IBCS_LINKTRAININGSTATE_MASK;
356 lstate = (val >> INFINIPATH_IBCS_LINKSTATE_SHIFT) &
357 INFINIPATH_IBCS_LINKSTATE_MASK;
358
359 if (ltstate == INFINIPATH_IBCS_LT_STATE_POLLACTIVE ||
360 ltstate == INFINIPATH_IBCS_LT_STATE_POLLQUIET) {
361 u32 last_ltstate;
362
363 /*
364 * Ignore cycling back and forth from Polling.Active
365 * to Polling.Quiet while waiting for the other end of
366 * the link to come up. We will cycle back and forth
367 * between them if no cable is plugged in,
368 * the other device is powered off or disabled, etc.
369 */
370 last_ltstate = (dd->ipath_lastibcstat >>
371 INFINIPATH_IBCS_LINKTRAININGSTATE_SHIFT)
372 & INFINIPATH_IBCS_LINKTRAININGSTATE_MASK;
373 if (last_ltstate == INFINIPATH_IBCS_LT_STATE_POLLACTIVE
374 || last_ltstate ==
375 INFINIPATH_IBCS_LT_STATE_POLLQUIET) {
376 if (dd->ipath_ibpollcnt > 40) {
377 dd->ipath_flags |= IPATH_NOCABLE;
378 *dd->ipath_statusp |=
379 IPATH_STATUS_IB_NOCABLE;
380 } else
381 dd->ipath_ibpollcnt++;
382 goto skip_ibchange;
383 }
384 }
385 dd->ipath_ibpollcnt = 0; /* some state other than 2 or 3 */
386 ipath_stats.sps_iblink++;
387 if (ltstate != INFINIPATH_IBCS_LT_STATE_LINKUP) {
Ralph Campbell49739b32007-09-19 16:47:31 -0700388 if (dd->ipath_flags & IPATH_LINKACTIVE)
389 signal_ib_event(dd, IB_EVENT_PORT_ERR);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800390 dd->ipath_flags |= IPATH_LINKDOWN;
391 dd->ipath_flags &= ~(IPATH_LINKUNK | IPATH_LINKINIT
392 | IPATH_LINKACTIVE |
393 IPATH_LINKARMED);
394 *dd->ipath_statusp &= ~IPATH_STATUS_IB_READY;
Bryan O'Sullivanfba75202006-07-01 04:36:09 -0700395 dd->ipath_lli_counter = 0;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800396 if (!noprint) {
397 if (((dd->ipath_lastibcstat >>
398 INFINIPATH_IBCS_LINKSTATE_SHIFT) &
399 INFINIPATH_IBCS_LINKSTATE_MASK)
400 == INFINIPATH_IBCS_L_STATE_ACTIVE)
401 /* if from up to down be more vocal */
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700402 ipath_cdbg(VERBOSE,
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800403 "Unit %u link now down (%s)\n",
404 dd->ipath_unit,
405 ipath_ibcstatus_str[ltstate]);
406 else
407 ipath_cdbg(VERBOSE, "Unit %u link is "
408 "down (%s)\n", dd->ipath_unit,
409 ipath_ibcstatus_str[ltstate]);
410 }
411
412 dd->ipath_f_setextled(dd, lstate, ltstate);
413 } else if ((val & IPATH_IBSTATE_MASK) == IPATH_IBSTATE_ACTIVE) {
414 dd->ipath_flags |= IPATH_LINKACTIVE;
415 dd->ipath_flags &=
416 ~(IPATH_LINKUNK | IPATH_LINKINIT | IPATH_LINKDOWN |
417 IPATH_LINKARMED | IPATH_NOCABLE);
418 *dd->ipath_statusp &= ~IPATH_STATUS_IB_NOCABLE;
419 *dd->ipath_statusp |=
420 IPATH_STATUS_IB_READY | IPATH_STATUS_IB_CONF;
421 dd->ipath_f_setextled(dd, lstate, ltstate);
Ralph Campbell49739b32007-09-19 16:47:31 -0700422 signal_ib_event(dd, IB_EVENT_PORT_ACTIVE);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800423 } else if ((val & IPATH_IBSTATE_MASK) == IPATH_IBSTATE_INIT) {
Ralph Campbell49739b32007-09-19 16:47:31 -0700424 if (dd->ipath_flags & IPATH_LINKACTIVE)
425 signal_ib_event(dd, IB_EVENT_PORT_ERR);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800426 /*
427 * set INIT and DOWN. Down is checked by most of the other
428 * code, but INIT is useful to know in a few places.
429 */
430 dd->ipath_flags |= IPATH_LINKINIT | IPATH_LINKDOWN;
431 dd->ipath_flags &=
432 ~(IPATH_LINKUNK | IPATH_LINKACTIVE | IPATH_LINKARMED
433 | IPATH_NOCABLE);
434 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_NOCABLE
435 | IPATH_STATUS_IB_READY);
436 dd->ipath_f_setextled(dd, lstate, ltstate);
437 } else if ((val & IPATH_IBSTATE_MASK) == IPATH_IBSTATE_ARM) {
Ralph Campbell49739b32007-09-19 16:47:31 -0700438 if (dd->ipath_flags & IPATH_LINKACTIVE)
439 signal_ib_event(dd, IB_EVENT_PORT_ERR);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800440 dd->ipath_flags |= IPATH_LINKARMED;
441 dd->ipath_flags &=
442 ~(IPATH_LINKUNK | IPATH_LINKDOWN | IPATH_LINKINIT |
443 IPATH_LINKACTIVE | IPATH_NOCABLE);
444 *dd->ipath_statusp &= ~(IPATH_STATUS_IB_NOCABLE
445 | IPATH_STATUS_IB_READY);
446 dd->ipath_f_setextled(dd, lstate, ltstate);
447 } else {
448 if (!noprint)
449 ipath_dbg("IBstatuschange unit %u: %s (%x)\n",
450 dd->ipath_unit,
451 ipath_ibcstatus_str[ltstate], ltstate);
452 }
453skip_ibchange:
454 dd->ipath_lastibcstat = val;
455}
456
457static void handle_supp_msgs(struct ipath_devdata *dd,
Dave Olson164ef7a2007-10-09 22:24:36 -0700458 unsigned supp_msgs, char *msg, int msgsz)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800459{
460 /*
461 * Print the message unless it's ibc status change only, which
462 * happens so often we never want to count it.
463 */
464 if (dd->ipath_lasterror & ~INFINIPATH_E_IBSTATUSCHANGED) {
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700465 int iserr;
Dave Olson164ef7a2007-10-09 22:24:36 -0700466 iserr = ipath_decode_err(msg, msgsz,
467 dd->ipath_lasterror &
468 ~INFINIPATH_E_IBSTATUSCHANGED);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800469 if (dd->ipath_lasterror &
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700470 ~(INFINIPATH_E_RRCVEGRFULL |
471 INFINIPATH_E_RRCVHDRFULL | INFINIPATH_E_PKTERRS))
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800472 ipath_dev_err(dd, "Suppressed %u messages for "
473 "fast-repeating errors (%s) (%llx)\n",
474 supp_msgs, msg,
475 (unsigned long long)
476 dd->ipath_lasterror);
477 else {
478 /*
479 * rcvegrfull and rcvhdrqfull are "normal", for some
480 * types of processes (mostly benchmarks) that send
481 * huge numbers of messages, while not processing
482 * them. So only complain about these at debug
483 * level.
484 */
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700485 if (iserr)
486 ipath_dbg("Suppressed %u messages for %s\n",
487 supp_msgs, msg);
488 else
489 ipath_cdbg(ERRPKT,
490 "Suppressed %u messages for %s\n",
491 supp_msgs, msg);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800492 }
493 }
494}
495
496static unsigned handle_frequent_errors(struct ipath_devdata *dd,
Dave Olson164ef7a2007-10-09 22:24:36 -0700497 ipath_err_t errs, char *msg,
498 int msgsz, int *noprint)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800499{
500 unsigned long nc;
501 static unsigned long nextmsg_time;
502 static unsigned nmsgs, supp_msgs;
503
504 /*
505 * Throttle back "fast" messages to no more than 10 per 5 seconds.
506 * This isn't perfect, but it's a reasonable heuristic. If we get
507 * more than 10, give a 6x longer delay.
508 */
509 nc = jiffies;
510 if (nmsgs > 10) {
511 if (time_before(nc, nextmsg_time)) {
512 *noprint = 1;
513 if (!supp_msgs++)
514 nextmsg_time = nc + HZ * 3;
515 }
516 else if (supp_msgs) {
Dave Olson164ef7a2007-10-09 22:24:36 -0700517 handle_supp_msgs(dd, supp_msgs, msg, msgsz);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800518 supp_msgs = 0;
519 nmsgs = 0;
520 }
521 }
522 else if (!nmsgs++ || time_after(nc, nextmsg_time))
523 nextmsg_time = nc + HZ / 2;
524
525 return supp_msgs;
526}
527
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700528static int handle_errors(struct ipath_devdata *dd, ipath_err_t errs)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800529{
Dave Olson164ef7a2007-10-09 22:24:36 -0700530 char msg[128];
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800531 u64 ignore_this_time = 0;
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700532 int i, iserr = 0;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800533 int chkerrpkts = 0, noprint = 0;
534 unsigned supp_msgs;
Michael Albaughaecd3b52007-05-17 07:26:28 -0700535 int log_idx;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800536
Dave Olson164ef7a2007-10-09 22:24:36 -0700537 supp_msgs = handle_frequent_errors(dd, errs, msg, sizeof msg, &noprint);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800538
Dave Olson78d1e022007-07-20 14:41:26 -0700539 /* don't report errors that are masked */
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800540 errs &= ~dd->ipath_maskederrs;
541
542 /* do these first, they are most important */
543 if (errs & INFINIPATH_E_HARDWARE) {
544 /* reuse same msg buf */
545 dd->ipath_f_handle_hwerrors(dd, msg, sizeof msg);
Michael Albaughaecd3b52007-05-17 07:26:28 -0700546 } else {
547 u64 mask;
548 for (log_idx = 0; log_idx < IPATH_EEP_LOG_CNT; ++log_idx) {
549 mask = dd->ipath_eep_st_masks[log_idx].errs_to_log;
550 if (errs & mask)
551 ipath_inc_eeprom_err(dd, log_idx, 1);
552 }
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800553 }
554
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -0700555 if (!noprint && (errs & ~dd->ipath_e_bitsextant))
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800556 ipath_dev_err(dd, "error interrupt with unknown errors "
557 "%llx set\n", (unsigned long long)
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -0700558 (errs & ~dd->ipath_e_bitsextant));
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800559
560 if (errs & E_SUM_ERRS)
561 ignore_this_time = handle_e_sum_errs(dd, errs);
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700562 else if ((errs & E_SUM_LINK_PKTERRS) &&
563 !(dd->ipath_flags & IPATH_LINKACTIVE)) {
564 /*
565 * This can happen when SMA is trying to bring the link
566 * up, but the IB link changes state at the "wrong" time.
567 * The IB logic then complains that the packet isn't
568 * valid. We don't want to confuse people, so we just
569 * don't print them, except at debug
570 */
571 ipath_dbg("Ignoring packet errors %llx, because link not "
572 "ACTIVE\n", (unsigned long long) errs);
573 ignore_this_time = errs & E_SUM_LINK_PKTERRS;
574 }
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800575
576 if (supp_msgs == 250000) {
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700577 int s_iserr;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800578 /*
579 * It's not entirely reasonable assuming that the errors set
580 * in the last clear period are all responsible for the
581 * problem, but the alternative is to assume it's the only
582 * ones on this particular interrupt, which also isn't great
583 */
584 dd->ipath_maskederrs |= dd->ipath_lasterror | errs;
Dave Olson78d1e022007-07-20 14:41:26 -0700585 dd->ipath_errormask &= ~dd->ipath_maskederrs;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800586 ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
Dave Olson78d1e022007-07-20 14:41:26 -0700587 dd->ipath_errormask);
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700588 s_iserr = ipath_decode_err(msg, sizeof msg,
Dave Olson78d1e022007-07-20 14:41:26 -0700589 dd->ipath_maskederrs);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800590
Dave Olson78d1e022007-07-20 14:41:26 -0700591 if (dd->ipath_maskederrs &
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700592 ~(INFINIPATH_E_RRCVEGRFULL |
593 INFINIPATH_E_RRCVHDRFULL | INFINIPATH_E_PKTERRS))
594 ipath_dev_err(dd, "Temporarily disabling "
595 "error(s) %llx reporting; too frequent (%s)\n",
Dave Olson78d1e022007-07-20 14:41:26 -0700596 (unsigned long long)dd->ipath_maskederrs,
597 msg);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800598 else {
599 /*
600 * rcvegrfull and rcvhdrqfull are "normal",
601 * for some types of processes (mostly benchmarks)
602 * that send huge numbers of messages, while not
603 * processing them. So only complain about
604 * these at debug level.
605 */
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700606 if (s_iserr)
607 ipath_dbg("Temporarily disabling reporting "
608 "too frequent queue full errors (%s)\n",
609 msg);
610 else
611 ipath_cdbg(ERRPKT,
612 "Temporarily disabling reporting too"
613 " frequent packet errors (%s)\n",
614 msg);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800615 }
616
617 /*
618 * Re-enable the masked errors after around 3 minutes. in
619 * ipath_get_faststats(). If we have a series of fast
620 * repeating but different errors, the interval will keep
621 * stretching out, but that's OK, as that's pretty
622 * catastrophic.
623 */
624 dd->ipath_unmasktime = jiffies + HZ * 180;
625 }
626
627 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, errs);
628 if (ignore_this_time)
629 errs &= ~ignore_this_time;
630 if (errs & ~dd->ipath_lasterror) {
631 errs &= ~dd->ipath_lasterror;
632 /* never suppress duplicate hwerrors or ibstatuschange */
633 dd->ipath_lasterror |= errs &
634 ~(INFINIPATH_E_HARDWARE |
635 INFINIPATH_E_IBSTATUSCHANGED);
636 }
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -0700637
638 /* likely due to cancel, so suppress */
639 if ((errs & (INFINIPATH_E_SPKTLEN | INFINIPATH_E_SPIOARMLAUNCH)) &&
640 dd->ipath_lastcancel > jiffies) {
641 ipath_dbg("Suppressed armlaunch/spktlen after error send cancel\n");
642 errs &= ~(INFINIPATH_E_SPIOARMLAUNCH | INFINIPATH_E_SPKTLEN);
643 }
644
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800645 if (!errs)
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700646 return 0;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800647
648 if (!noprint)
649 /*
650 * the ones we mask off are handled specially below or above
651 */
652 ipath_decode_err(msg, sizeof msg,
653 errs & ~(INFINIPATH_E_IBSTATUSCHANGED |
654 INFINIPATH_E_RRCVEGRFULL |
655 INFINIPATH_E_RRCVHDRFULL |
656 INFINIPATH_E_HARDWARE));
657 else
658 /* so we don't need if (!noprint) at strlcat's below */
659 *msg = 0;
660
661 if (errs & E_SUM_PKTERRS) {
662 ipath_stats.sps_pkterrs++;
663 chkerrpkts = 1;
664 }
665 if (errs & E_SUM_ERRS)
666 ipath_stats.sps_errs++;
667
668 if (errs & (INFINIPATH_E_RICRC | INFINIPATH_E_RVCRC)) {
669 ipath_stats.sps_crcerrs++;
670 chkerrpkts = 1;
671 }
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700672 iserr = errs & ~(E_SUM_PKTERRS | INFINIPATH_E_PKTERRS);
673
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800674
675 /*
676 * We don't want to print these two as they happen, or we can make
677 * the situation even worse, because it takes so long to print
678 * messages to serial consoles. Kernel ports get printed from
679 * fast_stats, no more than every 5 seconds, user ports get printed
680 * on close
681 */
682 if (errs & INFINIPATH_E_RRCVHDRFULL) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800683 u32 hd, tl;
684 ipath_stats.sps_hdrqfull++;
Roland Dreier44f8e3f2006-12-12 11:50:20 -0800685 for (i = 0; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800686 struct ipath_portdata *pd = dd->ipath_pd[i];
687 if (i == 0) {
Ralph Campbellc59a80a2007-12-20 02:43:23 -0800688 hd = pd->port_head;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800689 tl = (u32) le64_to_cpu(
690 *dd->ipath_hdrqtailptr);
691 } else if (pd && pd->port_cnt &&
692 pd->port_rcvhdrtail_kvaddr) {
693 /*
694 * don't report same point multiple times,
695 * except kernel
696 */
Bryan O'Sullivan1fd3b402006-09-28 09:00:13 -0700697 tl = *(u64 *) pd->port_rcvhdrtail_kvaddr;
Dave Olson755807a2007-12-06 00:28:02 -0800698 if (tl == pd->port_lastrcvhdrqtail)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800699 continue;
700 hd = ipath_read_ureg32(dd, ur_rcvhdrhead,
701 i);
702 } else
703 continue;
704 if (hd == (tl + 1) ||
705 (!hd && tl == dd->ipath_hdrqlast)) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800706 if (i == 0)
707 chkerrpkts = 1;
Dave Olson755807a2007-12-06 00:28:02 -0800708 pd->port_lastrcvhdrqtail = tl;
Bryan O'Sullivan13aef492006-07-01 04:36:04 -0700709 pd->port_hdrqfull++;
Arthur Jones70c51da2007-09-14 12:22:49 -0700710 /* flush hdrqfull so that poll() sees it */
711 wmb();
712 wake_up_interruptible(&pd->port_wait);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800713 }
714 }
715 }
716 if (errs & INFINIPATH_E_RRCVEGRFULL) {
Ralph Campbellc59a80a2007-12-20 02:43:23 -0800717 struct ipath_portdata *pd = dd->ipath_pd[0];
718
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800719 /*
720 * since this is of less importance and not likely to
721 * happen without also getting hdrfull, only count
722 * occurrences; don't check each port (or even the kernel
723 * vs user)
724 */
725 ipath_stats.sps_etidfull++;
Ralph Campbellc59a80a2007-12-20 02:43:23 -0800726 if (pd->port_head !=
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800727 (u32) le64_to_cpu(*dd->ipath_hdrqtailptr))
728 chkerrpkts = 1;
729 }
730
731 /*
732 * do this before IBSTATUSCHANGED, in case both bits set in a single
733 * interrupt; we want the STATUSCHANGE to "win", so we do our
734 * internal copy of state machine correctly
735 */
736 if (errs & INFINIPATH_E_RIBLOSTLINK) {
737 /*
738 * force through block below
739 */
740 errs |= INFINIPATH_E_IBSTATUSCHANGED;
741 ipath_stats.sps_iblink++;
742 dd->ipath_flags |= IPATH_LINKDOWN;
743 dd->ipath_flags &= ~(IPATH_LINKUNK | IPATH_LINKINIT
744 | IPATH_LINKARMED | IPATH_LINKACTIVE);
745 *dd->ipath_statusp &= ~IPATH_STATUS_IB_READY;
746 if (!noprint) {
747 u64 st = ipath_read_kreg64(
748 dd, dd->ipath_kregs->kr_ibcstatus);
749
750 ipath_dbg("Lost link, link now down (%s)\n",
751 ipath_ibcstatus_str[st & 0xf]);
752 }
753 }
754 if (errs & INFINIPATH_E_IBSTATUSCHANGED)
755 handle_e_ibstatuschanged(dd, errs, noprint);
756
757 if (errs & INFINIPATH_E_RESET) {
758 if (!noprint)
759 ipath_dev_err(dd, "Got reset, requires re-init "
760 "(unload and reload driver)\n");
761 dd->ipath_flags &= ~IPATH_INITTED; /* needs re-init */
762 /* mark as having had error */
763 *dd->ipath_statusp |= IPATH_STATUS_HWERROR;
764 *dd->ipath_statusp &= ~IPATH_STATUS_IB_CONF;
765 }
766
Bryan O'Sullivan8ec10772007-03-15 14:44:55 -0700767 if (!noprint && *msg) {
768 if (iserr)
769 ipath_dev_err(dd, "%s error\n", msg);
770 else
771 dev_info(&dd->pcidev->dev, "%s packet problems\n",
772 msg);
773 }
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700774 if (dd->ipath_state_wanted & dd->ipath_flags) {
775 ipath_cdbg(VERBOSE, "driver wanted state %x, iflags now %x, "
776 "waking\n", dd->ipath_state_wanted,
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800777 dd->ipath_flags);
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700778 wake_up_interruptible(&ipath_state_wait);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800779 }
780
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -0700781 return chkerrpkts;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800782}
783
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700784
785/*
786 * try to cleanup as much as possible for anything that might have gone
787 * wrong while in freeze mode, such as pio buffers being written by user
788 * processes (causing armlaunch), send errors due to going into freeze mode,
789 * etc., and try to avoid causing extra interrupts while doing so.
790 * Forcibly update the in-memory pioavail register copies after cleanup
791 * because the chip won't do it for anything changing while in freeze mode
792 * (we don't want to wait for the next pio buffer state change).
793 * Make sure that we don't lose any important interrupts by using the chip
794 * feature that says that writing 0 to a bit in *clear that is set in
795 * *status will cause an interrupt to be generated again (if allowed by
796 * the *mask value).
797 */
798void ipath_clear_freeze(struct ipath_devdata *dd)
799{
800 int i, im;
Ralph Campbell0349d162008-04-16 21:01:13 -0700801 u64 val;
John Gregore342c112007-09-05 01:57:14 -0700802 unsigned long flags;
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700803
804 /* disable error interrupts, to avoid confusion */
805 ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask, 0ULL);
806
Dave Olson78d1e022007-07-20 14:41:26 -0700807 /* also disable interrupts; errormask is sometimes overwriten */
808 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
809
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700810 /*
811 * clear all sends, because they have may been
812 * completed by usercode while in freeze mode, and
813 * therefore would not be sent, and eventually
814 * might cause the process to run out of bufs
815 */
Dave Olson3810f2a2007-07-20 14:23:37 -0700816 ipath_cancel_sends(dd, 0);
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700817 ipath_write_kreg(dd, dd->ipath_kregs->kr_control,
818 dd->ipath_control);
819
820 /* ensure pio avail updates continue */
John Gregore342c112007-09-05 01:57:14 -0700821 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700822 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
Dave Olson3810f2a2007-07-20 14:23:37 -0700823 dd->ipath_sendctrl & ~INFINIPATH_S_PIOBUFAVAILUPD);
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700824 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
825 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
John Gregore342c112007-09-05 01:57:14 -0700826 dd->ipath_sendctrl);
827 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
828 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700829
830 /*
831 * We just enabled pioavailupdate, so dma copy is almost certainly
832 * not yet right, so read the registers directly. Similar to init
833 */
834 for (i = 0; i < dd->ipath_pioavregs; i++) {
835 /* deal with 6110 chip bug */
Ralph Campbell8bae0ff2008-04-16 21:01:13 -0700836 im = (i > 3 && (dd->ipath_flags & IPATH_SWAP_PIOBUFS)) ?
837 i ^ 1 : i;
Ralph Campbell4ea61b52008-01-06 21:12:38 -0800838 val = ipath_read_kreg64(dd, (0x1000 / sizeof(u64)) + im);
Ralph Campbell0349d162008-04-16 21:01:13 -0700839 dd->ipath_pioavailregs_dma[i] = cpu_to_le64(val);
840 dd->ipath_pioavailshadow[i] = val;
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700841 }
842
843 /*
844 * force new interrupt if any hwerr, error or interrupt bits are
845 * still set, and clear "safe" send packet errors related to freeze
846 * and cancelling sends. Re-enable error interrupts before possible
847 * force of re-interrupt on pending interrupts.
848 */
849 ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear, 0ULL);
850 ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear,
851 E_SPKT_ERRS_IGNORE);
852 ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask,
Dave Olson78d1e022007-07-20 14:41:26 -0700853 dd->ipath_errormask);
854 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, -1LL);
Dave Olson0f4fc5e2007-07-06 12:48:33 -0700855 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, 0ULL);
856}
857
858
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800859/* this is separate to allow for better optimization of ipath_intr() */
860
Dave Olsone193e332007-10-10 05:10:35 -0700861static noinline void ipath_bad_intr(struct ipath_devdata *dd, u32 *unexpectp)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800862{
863 /*
864 * sometimes happen during driver init and unload, don't want
865 * to process any interrupts at that point
866 */
867
868 /* this is just a bandaid, not a fix, if something goes badly
869 * wrong */
870 if (++*unexpectp > 100) {
871 if (++*unexpectp > 105) {
872 /*
873 * ok, we must be taking somebody else's interrupts,
874 * due to a messed up mptable and/or PIRQ table, so
875 * unregister the interrupt. We've seen this during
876 * linuxbios development work, and it may happen in
877 * the future again.
878 */
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800879 if (dd->pcidev && dd->ipath_irq) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800880 ipath_dev_err(dd, "Now %u unexpected "
881 "interrupts, unregistering "
882 "interrupt handler\n",
883 *unexpectp);
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800884 ipath_dbg("free_irq of irq %d\n",
885 dd->ipath_irq);
886 dd->ipath_f_free_irq(dd);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800887 }
888 }
Arthur Jones7da04982008-01-06 21:12:38 -0800889 if (ipath_read_ireg(dd, dd->ipath_kregs->kr_intmask)) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800890 ipath_dev_err(dd, "%u unexpected interrupts, "
891 "disabling interrupts completely\n",
892 *unexpectp);
893 /*
894 * disable all interrupts, something is very wrong
895 */
896 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask,
897 0ULL);
898 }
899 } else if (*unexpectp > 1)
900 ipath_dbg("Interrupt when not ready, should not happen, "
901 "ignoring\n");
902}
903
Dave Olsone193e332007-10-10 05:10:35 -0700904static noinline void ipath_bad_regread(struct ipath_devdata *dd)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800905{
906 static int allbits;
907
908 /* separate routine, for better optimization of ipath_intr() */
909
910 /*
911 * We print the message and disable interrupts, in hope of
912 * having a better chance of debugging the problem.
913 */
914 ipath_dev_err(dd,
915 "Read of interrupt status failed (all bits set)\n");
916 if (allbits++) {
917 /* disable all interrupts, something is very wrong */
918 ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL);
919 if (allbits == 2) {
920 ipath_dev_err(dd, "Still bad interrupt status, "
921 "unregistering interrupt\n");
Bryan O'Sullivan51f65eb2006-11-08 17:44:58 -0800922 dd->ipath_f_free_irq(dd);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800923 } else if (allbits > 2) {
924 if ((allbits % 10000) == 0)
925 printk(".");
926 } else
927 ipath_dev_err(dd, "Disabling interrupts, "
928 "multiple errors\n");
929 }
930}
931
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800932static void handle_layer_pioavail(struct ipath_devdata *dd)
933{
John Gregore342c112007-09-05 01:57:14 -0700934 unsigned long flags;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800935 int ret;
936
Bryan O'Sullivanb1c1b6a2006-08-25 11:24:31 -0700937 ret = ipath_ib_piobufavail(dd->verbs_dev);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800938 if (ret > 0)
Bryan O'Sullivand562a5a2006-04-24 14:23:08 -0700939 goto set;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800940
941 return;
Bryan O'Sullivand562a5a2006-04-24 14:23:08 -0700942set:
John Gregore342c112007-09-05 01:57:14 -0700943 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
944 dd->ipath_sendctrl |= INFINIPATH_S_PIOINTBUFAVAIL;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800945 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
946 dd->ipath_sendctrl);
John Gregore342c112007-09-05 01:57:14 -0700947 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
948 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800949}
950
Bryan O'Sullivan13aef492006-07-01 04:36:04 -0700951/*
952 * Handle receive interrupts for user ports; this means a user
953 * process was waiting for a packet to arrive, and didn't want
954 * to poll
955 */
956static void handle_urcv(struct ipath_devdata *dd, u32 istat)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800957{
958 u64 portr;
959 int i;
960 int rcvdint = 0;
961
Arthur Jones2f01a702007-10-17 18:18:29 -0700962 /*
963 * test_and_clear_bit(IPATH_PORT_WAITING_RCV) and
964 * test_and_clear_bit(IPATH_PORT_WAITING_URG) below
965 * would both like timely updates of the bits so that
966 * we don't pass them by unnecessarily. the rmb()
967 * here ensures that we see them promptly -- the
968 * corresponding wmb()'s are in ipath_poll_urgent()
969 * and ipath_poll_next()...
970 */
Arthur Jones70c51da2007-09-14 12:22:49 -0700971 rmb();
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800972 portr = ((istat >> INFINIPATH_I_RCVAVAIL_SHIFT) &
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -0700973 dd->ipath_i_rcvavail_mask)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800974 | ((istat >> INFINIPATH_I_RCVURG_SHIFT) &
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -0700975 dd->ipath_i_rcvurg_mask);
Bryan O'Sullivan13aef492006-07-01 04:36:04 -0700976 for (i = 1; i < dd->ipath_cfgports; i++) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800977 struct ipath_portdata *pd = dd->ipath_pd[i];
Robert Walshf2d04232007-06-18 14:24:49 -0700978 if (portr & (1 << i) && pd && pd->port_cnt) {
Arthur Jones70c51da2007-09-14 12:22:49 -0700979 if (test_and_clear_bit(IPATH_PORT_WAITING_RCV,
980 &pd->port_flag)) {
Dave Olsond8274862007-12-21 01:50:59 -0800981 clear_bit(i + dd->ipath_r_intravail_shift,
Robert Walshf2d04232007-06-18 14:24:49 -0700982 &dd->ipath_rcvctrl);
983 wake_up_interruptible(&pd->port_wait);
984 rcvdint = 1;
Arthur Jones70c51da2007-09-14 12:22:49 -0700985 } else if (test_and_clear_bit(IPATH_PORT_WAITING_URG,
986 &pd->port_flag)) {
987 pd->port_urgent++;
Robert Walshf2d04232007-06-18 14:24:49 -0700988 wake_up_interruptible(&pd->port_wait);
989 }
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -0800990 }
991 }
992 if (rcvdint) {
993 /* only want to take one interrupt, so turn off the rcv
994 * interrupt for all the ports that we did the wakeup on
995 * (but never for kernel port)
996 */
997 ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl,
998 dd->ipath_rcvctrl);
999 }
1000}
1001
David Howells7d12e782006-10-05 14:55:46 +01001002irqreturn_t ipath_intr(int irq, void *data)
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001003{
1004 struct ipath_devdata *dd = data;
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001005 u32 istat, chk0rcv = 0;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001006 ipath_err_t estat = 0;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001007 irqreturn_t ret;
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001008 static unsigned unexpected = 0;
1009 static const u32 port0rbits = (1U<<INFINIPATH_I_RCVAVAIL_SHIFT) |
1010 (1U<<INFINIPATH_I_RCVURG_SHIFT);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001011
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001012 ipath_stats.sps_ints++;
1013
Arthur Jones35884232007-07-06 12:48:53 -07001014 if (dd->ipath_int_counter != (u32) -1)
1015 dd->ipath_int_counter++;
1016
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001017 if (!(dd->ipath_flags & IPATH_PRESENT)) {
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -07001018 /*
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001019 * This return value is not great, but we do not want the
Bryan O'Sullivanc71c30d2006-04-24 14:23:03 -07001020 * interrupt core code to remove our interrupt handler
1021 * because we don't appear to be handling an interrupt
1022 * during a chip reset.
1023 */
1024 return IRQ_HANDLED;
1025 }
1026
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001027 /*
1028 * this needs to be flags&initted, not statusp, so we keep
1029 * taking interrupts even after link goes down, etc.
1030 * Also, we *must* clear the interrupt at some point, or we won't
1031 * take it again, which can be real bad for errors, etc...
1032 */
1033
1034 if (!(dd->ipath_flags & IPATH_INITTED)) {
1035 ipath_bad_intr(dd, &unexpected);
1036 ret = IRQ_NONE;
1037 goto bail;
1038 }
1039
Arthur Jones7da04982008-01-06 21:12:38 -08001040 istat = ipath_read_ireg(dd, dd->ipath_kregs->kr_intstatus);
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001041
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001042 if (unlikely(!istat)) {
1043 ipath_stats.sps_nullintr++;
1044 ret = IRQ_NONE; /* not our interrupt, or already handled */
1045 goto bail;
1046 }
1047 if (unlikely(istat == -1)) {
1048 ipath_bad_regread(dd);
1049 /* don't know if it was our interrupt or not */
1050 ret = IRQ_NONE;
1051 goto bail;
1052 }
1053
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001054 if (unexpected)
1055 unexpected = 0;
1056
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -07001057 if (unlikely(istat & ~dd->ipath_i_bitsextant))
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001058 ipath_dev_err(dd,
1059 "interrupt with unknown interrupts %x set\n",
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -07001060 istat & (u32) ~ dd->ipath_i_bitsextant);
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001061 else
1062 ipath_cdbg(VERBOSE, "intr stat=0x%x\n", istat);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001063
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001064 if (unlikely(istat & INFINIPATH_I_ERROR)) {
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001065 ipath_stats.sps_errints++;
1066 estat = ipath_read_kreg64(dd,
1067 dd->ipath_kregs->kr_errorstatus);
1068 if (!estat)
1069 dev_info(&dd->pcidev->dev, "error interrupt (%x), "
1070 "but no error bits set!\n", istat);
1071 else if (estat == -1LL)
1072 /*
1073 * should we try clearing all, or hope next read
1074 * works?
1075 */
1076 ipath_dev_err(dd, "Read of error status failed "
1077 "(all bits set); ignoring\n");
1078 else
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001079 if (handle_errors(dd, estat))
1080 /* force calling ipath_kreceive() */
1081 chk0rcv = 1;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001082 }
1083
1084 if (istat & INFINIPATH_I_GPIO) {
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001085 /*
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001086 * GPIO interrupts fall in two broad classes:
1087 * GPIO_2 indicates (on some HT4xx boards) that a packet
1088 * has arrived for Port 0. Checking for this
1089 * is controlled by flag IPATH_GPIO_INTR.
Arthur Jones327a3382007-08-02 14:46:29 -07001090 * GPIO_3..5 on IBA6120 Rev2 and IBA6110 Rev4 chips indicate
1091 * errors that we need to count. Checking for this
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001092 * is controlled by flag IPATH_GPIO_ERRINTRS.
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001093 */
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001094 u32 gpiostatus;
1095 u32 to_clear = 0;
1096
1097 gpiostatus = ipath_read_kreg32(
1098 dd, dd->ipath_kregs->kr_gpio_status);
1099 /* First the error-counter case.
1100 */
1101 if ((gpiostatus & IPATH_GPIO_ERRINTR_MASK) &&
1102 (dd->ipath_flags & IPATH_GPIO_ERRINTRS)) {
1103 /* want to clear the bits we see asserted. */
1104 to_clear |= (gpiostatus & IPATH_GPIO_ERRINTR_MASK);
1105
1106 /*
1107 * Count appropriately, clear bits out of our copy,
1108 * as they have been "handled".
1109 */
1110 if (gpiostatus & (1 << IPATH_GPIO_RXUVL_BIT)) {
1111 ipath_dbg("FlowCtl on UnsupVL\n");
1112 dd->ipath_rxfc_unsupvl_errs++;
1113 }
1114 if (gpiostatus & (1 << IPATH_GPIO_OVRUN_BIT)) {
1115 ipath_dbg("Overrun Threshold exceeded\n");
1116 dd->ipath_overrun_thresh_errs++;
1117 }
1118 if (gpiostatus & (1 << IPATH_GPIO_LLI_BIT)) {
1119 ipath_dbg("Local Link Integrity error\n");
1120 dd->ipath_lli_errs++;
1121 }
1122 gpiostatus &= ~IPATH_GPIO_ERRINTR_MASK;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001123 }
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001124 /* Now the Port0 Receive case */
1125 if ((gpiostatus & (1 << IPATH_GPIO_PORT0_BIT)) &&
1126 (dd->ipath_flags & IPATH_GPIO_INTR)) {
1127 /*
1128 * GPIO status bit 2 is set, and we expected it.
1129 * clear it and indicate in p0bits.
1130 * This probably only happens if a Port0 pkt
1131 * arrives at _just_ the wrong time, and we
1132 * handle that by seting chk0rcv;
1133 */
1134 to_clear |= (1 << IPATH_GPIO_PORT0_BIT);
1135 gpiostatus &= ~(1 << IPATH_GPIO_PORT0_BIT);
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001136 chk0rcv = 1;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001137 }
Arthur Jones8f140b42007-05-10 12:10:49 -07001138 if (gpiostatus) {
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001139 /*
1140 * Some unexpected bits remain. If they could have
1141 * caused the interrupt, complain and clear.
Michael Albaugh6a733cd2007-10-03 10:47:38 -07001142 * To avoid repetition of this condition, also clear
1143 * the mask. It is almost certainly due to error.
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001144 */
Arthur Jones8f140b42007-05-10 12:10:49 -07001145 const u32 mask = (u32) dd->ipath_gpio_mask;
1146
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001147 if (mask & gpiostatus) {
1148 ipath_dbg("Unexpected GPIO IRQ bits %x\n",
1149 gpiostatus & mask);
1150 to_clear |= (gpiostatus & mask);
Michael Albaugh6a733cd2007-10-03 10:47:38 -07001151 dd->ipath_gpio_mask &= ~(gpiostatus & mask);
1152 ipath_write_kreg(dd,
1153 dd->ipath_kregs->kr_gpio_mask,
1154 dd->ipath_gpio_mask);
Bryan O'Sullivan2c9446a2006-09-28 09:00:00 -07001155 }
1156 }
1157 if (to_clear) {
1158 ipath_write_kreg(dd, dd->ipath_kregs->kr_gpio_clear,
1159 (u64) to_clear);
1160 }
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001161 }
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001162 chk0rcv |= istat & port0rbits;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001163
1164 /*
Bryan O'Sullivan57abad22006-07-01 04:36:05 -07001165 * Clear the interrupt bits we found set, unless they are receive
1166 * related, in which case we already cleared them above, and don't
1167 * want to clear them again, because we might lose an interrupt.
1168 * Clear it early, so we "know" know the chip will have seen this by
1169 * the time we process the queue, and will re-interrupt if necessary.
1170 * The processor itself won't take the interrupt again until we return.
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001171 */
1172 ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, istat);
1173
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001174 /*
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001175 * handle port0 receive before checking for pio buffers available,
1176 * since receives can overflow; piobuf waiters can afford a few
1177 * extra cycles, since they were waiting anyway, and user's waiting
1178 * for receive are at the bottom.
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001179 */
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001180 if (chk0rcv) {
Ralph Campbellc59a80a2007-12-20 02:43:23 -08001181 ipath_kreceive(dd->ipath_pd[0]);
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001182 istat &= ~port0rbits;
1183 }
Bryan O'Sullivanf5f99922006-07-01 04:36:05 -07001184
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -07001185 if (istat & ((dd->ipath_i_rcvavail_mask <<
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001186 INFINIPATH_I_RCVAVAIL_SHIFT)
Bryan O'Sullivanf62fe772006-09-28 09:00:11 -07001187 | (dd->ipath_i_rcvurg_mask <<
Bryan O'Sullivan13aef492006-07-01 04:36:04 -07001188 INFINIPATH_I_RCVURG_SHIFT)))
1189 handle_urcv(dd, istat);
1190
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001191 if (istat & INFINIPATH_I_SPIOBUFAVAIL) {
John Gregore342c112007-09-05 01:57:14 -07001192 unsigned long flags;
1193
1194 spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags);
1195 dd->ipath_sendctrl &= ~INFINIPATH_S_PIOINTBUFAVAIL;
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001196 ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl,
1197 dd->ipath_sendctrl);
John Gregore342c112007-09-05 01:57:14 -07001198 ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
1199 spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags);
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001200
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001201 handle_layer_pioavail(dd);
1202 }
1203
Bryan O'Sullivan108ecf02006-03-29 15:23:29 -08001204 ret = IRQ_HANDLED;
1205
1206bail:
1207 return ret;
1208}