Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1 | /* |
John Gregor | 87427da | 2007-06-11 10:21:14 -0700 | [diff] [blame] | 2 | * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved. |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 3 | * 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> |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 35 | #include <linux/delay.h> |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 36 | |
| 37 | #include "ipath_kernel.h" |
Bryan O'Sullivan | b1c1b6a | 2006-08-25 11:24:31 -0700 | [diff] [blame] | 38 | #include "ipath_verbs.h" |
Bryan O'Sullivan | 27b678d | 2006-07-01 04:36:17 -0700 | [diff] [blame] | 39 | #include "ipath_common.h" |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 40 | |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 41 | /* |
Bryan O'Sullivan | 9783ab4 | 2007-03-15 14:45:07 -0700 | [diff] [blame] | 42 | * clear (write) a pio buffer, to clear a parity error. This routine |
| 43 | * should only be called when in freeze mode, and the buffer should be |
| 44 | * canceled afterwards. |
| 45 | */ |
| 46 | static void ipath_clrpiobuf(struct ipath_devdata *dd, u32 pnum) |
| 47 | { |
| 48 | u32 __iomem *pbuf; |
| 49 | u32 dwcnt; /* dword count to write */ |
| 50 | if (pnum < dd->ipath_piobcnt2k) { |
| 51 | pbuf = (u32 __iomem *) (dd->ipath_pio2kbase + pnum * |
| 52 | dd->ipath_palign); |
| 53 | dwcnt = dd->ipath_piosize2k >> 2; |
| 54 | } |
| 55 | else { |
| 56 | pbuf = (u32 __iomem *) (dd->ipath_pio4kbase + |
| 57 | (pnum - dd->ipath_piobcnt2k) * dd->ipath_4kalign); |
| 58 | dwcnt = dd->ipath_piosize4k >> 2; |
| 59 | } |
| 60 | dev_info(&dd->pcidev->dev, |
| 61 | "Rewrite PIO buffer %u, to recover from parity error\n", |
| 62 | pnum); |
Arthur Jones | 3dd59e2 | 2008-04-16 21:01:11 -0700 | [diff] [blame] | 63 | |
| 64 | /* no flush required, since already in freeze */ |
| 65 | writel(dwcnt + 1, pbuf); |
| 66 | while (--dwcnt) |
| 67 | writel(0, pbuf++); |
Bryan O'Sullivan | 9783ab4 | 2007-03-15 14:45:07 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | /* |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 71 | * Called when we might have an error that is specific to a particular |
| 72 | * PIO buffer, and may need to cancel that buffer, so it can be re-used. |
Bryan O'Sullivan | 9783ab4 | 2007-03-15 14:45:07 -0700 | [diff] [blame] | 73 | * If rewrite is true, and bits are set in the sendbufferror registers, |
| 74 | * we'll write to the buffer, for error recovery on parity errors. |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 75 | */ |
Roland Dreier | da9aec7 | 2007-07-17 18:37:43 -0700 | [diff] [blame] | 76 | static void ipath_disarm_senderrbufs(struct ipath_devdata *dd, int rewrite) |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 77 | { |
| 78 | u32 piobcnt; |
| 79 | unsigned long sbuf[4]; |
| 80 | /* |
| 81 | * it's possible that sendbuffererror could have bits set; might |
| 82 | * have already done this as a result of hardware error handling |
| 83 | */ |
| 84 | piobcnt = dd->ipath_piobcnt2k + dd->ipath_piobcnt4k; |
| 85 | /* read these before writing errorclear */ |
| 86 | sbuf[0] = ipath_read_kreg64( |
| 87 | dd, dd->ipath_kregs->kr_sendbuffererror); |
| 88 | sbuf[1] = ipath_read_kreg64( |
| 89 | dd, dd->ipath_kregs->kr_sendbuffererror + 1); |
| 90 | if (piobcnt > 128) { |
| 91 | sbuf[2] = ipath_read_kreg64( |
| 92 | dd, dd->ipath_kregs->kr_sendbuffererror + 2); |
| 93 | sbuf[3] = ipath_read_kreg64( |
| 94 | dd, dd->ipath_kregs->kr_sendbuffererror + 3); |
| 95 | } |
| 96 | |
| 97 | if (sbuf[0] || sbuf[1] || (piobcnt > 128 && (sbuf[2] || sbuf[3]))) { |
| 98 | int i; |
Dave Olson | 9380068 | 2007-06-18 14:24:41 -0700 | [diff] [blame] | 99 | if (ipath_debug & (__IPATH_PKTDBG|__IPATH_DBG) && |
| 100 | dd->ipath_lastcancel > jiffies) { |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 101 | __IPATH_DBG_WHICH(__IPATH_PKTDBG|__IPATH_DBG, |
| 102 | "SendbufErrs %lx %lx", sbuf[0], |
| 103 | sbuf[1]); |
| 104 | if (ipath_debug & __IPATH_PKTDBG && piobcnt > 128) |
| 105 | printk(" %lx %lx ", sbuf[2], sbuf[3]); |
| 106 | printk("\n"); |
| 107 | } |
| 108 | |
| 109 | for (i = 0; i < piobcnt; i++) |
Bryan O'Sullivan | 9783ab4 | 2007-03-15 14:45:07 -0700 | [diff] [blame] | 110 | if (test_bit(i, sbuf)) { |
| 111 | if (rewrite) |
| 112 | ipath_clrpiobuf(dd, i); |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 113 | ipath_disarm_piobufs(dd, i, 1); |
Bryan O'Sullivan | 9783ab4 | 2007-03-15 14:45:07 -0700 | [diff] [blame] | 114 | } |
Dave Olson | 9380068 | 2007-06-18 14:24:41 -0700 | [diff] [blame] | 115 | /* ignore armlaunch errs for a bit */ |
| 116 | dd->ipath_lastcancel = jiffies+3; |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 117 | } |
| 118 | } |
| 119 | |
| 120 | |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 121 | /* These are all rcv-related errors which we want to count for stats */ |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 122 | #define E_SUM_PKTERRS \ |
| 123 | (INFINIPATH_E_RHDRLEN | INFINIPATH_E_RBADTID | \ |
| 124 | INFINIPATH_E_RBADVERSION | INFINIPATH_E_RHDR | \ |
| 125 | INFINIPATH_E_RLONGPKTLEN | INFINIPATH_E_RSHORTPKTLEN | \ |
| 126 | INFINIPATH_E_RMAXPKTLEN | INFINIPATH_E_RMINPKTLEN | \ |
| 127 | INFINIPATH_E_RFORMATERR | INFINIPATH_E_RUNSUPVL | \ |
| 128 | INFINIPATH_E_RUNEXPCHAR | INFINIPATH_E_REBP) |
| 129 | |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 130 | /* These are all send-related errors which we want to count for stats */ |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 131 | #define E_SUM_ERRS \ |
| 132 | (INFINIPATH_E_SPIOARMLAUNCH | INFINIPATH_E_SUNEXPERRPKTNUM | \ |
| 133 | INFINIPATH_E_SDROPPEDDATAPKT | INFINIPATH_E_SDROPPEDSMPPKT | \ |
| 134 | INFINIPATH_E_SMAXPKTLEN | INFINIPATH_E_SUNSUPVL | \ |
| 135 | INFINIPATH_E_SMINPKTLEN | INFINIPATH_E_SPKTLEN | \ |
| 136 | INFINIPATH_E_INVALIDADDR) |
| 137 | |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 138 | /* |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 139 | * this is similar to E_SUM_ERRS, but can't ignore armlaunch, don't ignore |
| 140 | * errors not related to freeze and cancelling buffers. Can't ignore |
| 141 | * armlaunch because could get more while still cleaning up, and need |
| 142 | * to cancel those as they happen. |
| 143 | */ |
| 144 | #define E_SPKT_ERRS_IGNORE \ |
| 145 | (INFINIPATH_E_SDROPPEDDATAPKT | INFINIPATH_E_SDROPPEDSMPPKT | \ |
| 146 | INFINIPATH_E_SMAXPKTLEN | INFINIPATH_E_SMINPKTLEN | \ |
| 147 | INFINIPATH_E_SPKTLEN) |
| 148 | |
| 149 | /* |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 150 | * these are errors that can occur when the link changes state while |
| 151 | * a packet is being sent or received. This doesn't cover things |
| 152 | * like EBP or VCRC that can be the result of a sending having the |
| 153 | * link change state, so we receive a "known bad" packet. |
| 154 | */ |
| 155 | #define E_SUM_LINK_PKTERRS \ |
| 156 | (INFINIPATH_E_SDROPPEDDATAPKT | INFINIPATH_E_SDROPPEDSMPPKT | \ |
| 157 | INFINIPATH_E_SMINPKTLEN | INFINIPATH_E_SPKTLEN | \ |
| 158 | INFINIPATH_E_RSHORTPKTLEN | INFINIPATH_E_RMINPKTLEN | \ |
| 159 | INFINIPATH_E_RUNEXPCHAR) |
| 160 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 161 | static u64 handle_e_sum_errs(struct ipath_devdata *dd, ipath_err_t errs) |
| 162 | { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 163 | u64 ignore_this_time = 0; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 164 | |
Bryan O'Sullivan | 9783ab4 | 2007-03-15 14:45:07 -0700 | [diff] [blame] | 165 | ipath_disarm_senderrbufs(dd, 0); |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 166 | if ((errs & E_SUM_LINK_PKTERRS) && |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 167 | !(dd->ipath_flags & IPATH_LINKACTIVE)) { |
| 168 | /* |
| 169 | * This can happen when SMA is trying to bring the link |
| 170 | * up, but the IB link changes state at the "wrong" time. |
| 171 | * The IB logic then complains that the packet isn't |
| 172 | * valid. We don't want to confuse people, so we just |
| 173 | * don't print them, except at debug |
| 174 | */ |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 175 | ipath_dbg("Ignoring packet errors %llx, because link not " |
| 176 | "ACTIVE\n", (unsigned long long) errs); |
| 177 | ignore_this_time = errs & E_SUM_LINK_PKTERRS; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | return ignore_this_time; |
| 181 | } |
| 182 | |
Bryan O'Sullivan | 8d588f8 | 2006-09-28 09:00:08 -0700 | [diff] [blame] | 183 | /* generic hw error messages... */ |
| 184 | #define INFINIPATH_HWE_TXEMEMPARITYERR_MSG(a) \ |
| 185 | { \ |
| 186 | .mask = ( INFINIPATH_HWE_TXEMEMPARITYERR_##a << \ |
| 187 | INFINIPATH_HWE_TXEMEMPARITYERR_SHIFT ), \ |
| 188 | .msg = "TXE " #a " Memory Parity" \ |
| 189 | } |
| 190 | #define INFINIPATH_HWE_RXEMEMPARITYERR_MSG(a) \ |
| 191 | { \ |
| 192 | .mask = ( INFINIPATH_HWE_RXEMEMPARITYERR_##a << \ |
| 193 | INFINIPATH_HWE_RXEMEMPARITYERR_SHIFT ), \ |
| 194 | .msg = "RXE " #a " Memory Parity" \ |
| 195 | } |
| 196 | |
| 197 | static const struct ipath_hwerror_msgs ipath_generic_hwerror_msgs[] = { |
| 198 | INFINIPATH_HWE_MSG(IBCBUSFRSPCPARITYERR, "IPATH2IB Parity"), |
| 199 | INFINIPATH_HWE_MSG(IBCBUSTOSPCPARITYERR, "IB2IPATH Parity"), |
| 200 | |
| 201 | INFINIPATH_HWE_TXEMEMPARITYERR_MSG(PIOBUF), |
| 202 | INFINIPATH_HWE_TXEMEMPARITYERR_MSG(PIOPBC), |
| 203 | INFINIPATH_HWE_TXEMEMPARITYERR_MSG(PIOLAUNCHFIFO), |
| 204 | |
| 205 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(RCVBUF), |
| 206 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(LOOKUPQ), |
| 207 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(EAGERTID), |
| 208 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(EXPTID), |
| 209 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(FLAGBUF), |
| 210 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(DATAINFO), |
| 211 | INFINIPATH_HWE_RXEMEMPARITYERR_MSG(HDRINFO), |
| 212 | }; |
| 213 | |
| 214 | /** |
| 215 | * ipath_format_hwmsg - format a single hwerror message |
| 216 | * @msg message buffer |
| 217 | * @msgl length of message buffer |
| 218 | * @hwmsg message to add to message buffer |
| 219 | */ |
| 220 | static void ipath_format_hwmsg(char *msg, size_t msgl, const char *hwmsg) |
| 221 | { |
| 222 | strlcat(msg, "[", msgl); |
| 223 | strlcat(msg, hwmsg, msgl); |
| 224 | strlcat(msg, "]", msgl); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * ipath_format_hwerrors - format hardware error messages for display |
| 229 | * @hwerrs hardware errors bit vector |
| 230 | * @hwerrmsgs hardware error descriptions |
| 231 | * @nhwerrmsgs number of hwerrmsgs |
| 232 | * @msg message buffer |
| 233 | * @msgl message buffer length |
| 234 | */ |
| 235 | void ipath_format_hwerrors(u64 hwerrs, |
| 236 | const struct ipath_hwerror_msgs *hwerrmsgs, |
| 237 | size_t nhwerrmsgs, |
| 238 | char *msg, size_t msgl) |
| 239 | { |
| 240 | int i; |
| 241 | const int glen = |
| 242 | sizeof(ipath_generic_hwerror_msgs) / |
| 243 | sizeof(ipath_generic_hwerror_msgs[0]); |
| 244 | |
| 245 | for (i=0; i<glen; i++) { |
| 246 | if (hwerrs & ipath_generic_hwerror_msgs[i].mask) { |
| 247 | ipath_format_hwmsg(msg, msgl, |
| 248 | ipath_generic_hwerror_msgs[i].msg); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | for (i=0; i<nhwerrmsgs; i++) { |
| 253 | if (hwerrs & hwerrmsgs[i].mask) { |
| 254 | ipath_format_hwmsg(msg, msgl, hwerrmsgs[i].msg); |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 259 | /* return the strings for the most common link states */ |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 260 | static char *ib_linkstate(struct ipath_devdata *dd, u64 ibcs) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 261 | { |
| 262 | char *ret; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 263 | u32 state; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 264 | |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 265 | state = ipath_ib_state(dd, ibcs); |
| 266 | if (state == dd->ib_init) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 267 | ret = "Init"; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 268 | else if (state == dd->ib_arm) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 269 | ret = "Arm"; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 270 | else if (state == dd->ib_active) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 271 | ret = "Active"; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 272 | else |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 273 | ret = "Down"; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 274 | return ret; |
| 275 | } |
| 276 | |
Ralph Campbell | 49739b3 | 2007-09-19 16:47:31 -0700 | [diff] [blame] | 277 | void signal_ib_event(struct ipath_devdata *dd, enum ib_event_type ev) |
| 278 | { |
| 279 | struct ib_event event; |
| 280 | |
| 281 | event.device = &dd->verbs_dev->ibdev; |
| 282 | event.element.port_num = 1; |
| 283 | event.event = ev; |
| 284 | ib_dispatch_event(&event); |
| 285 | } |
| 286 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 287 | static void handle_e_ibstatuschanged(struct ipath_devdata *dd, |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 288 | ipath_err_t errs) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 289 | { |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 290 | u32 ltstate, lstate, ibstate, lastlstate; |
| 291 | u32 init = dd->ib_init; |
| 292 | u32 arm = dd->ib_arm; |
| 293 | u32 active = dd->ib_active; |
| 294 | const u64 ibcs = ipath_read_kreg64(dd, dd->ipath_kregs->kr_ibcstatus); |
| 295 | |
| 296 | lstate = ipath_ib_linkstate(dd, ibcs); /* linkstate */ |
| 297 | ibstate = ipath_ib_state(dd, ibcs); |
| 298 | /* linkstate at last interrupt */ |
| 299 | lastlstate = ipath_ib_linkstate(dd, dd->ipath_lastibcstat); |
| 300 | ltstate = ipath_ib_linktrstate(dd, ibcs); /* linktrainingtate */ |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 301 | |
| 302 | /* |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 303 | * if linkstate transitions into INIT from any of the various down |
| 304 | * states, or if it transitions from any of the up (INIT or better) |
| 305 | * states into any of the down states (except link recovery), then |
| 306 | * call the chip-specific code to take appropriate actions. |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 307 | */ |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 308 | if (lstate >= INFINIPATH_IBCS_L_STATE_INIT && |
| 309 | lastlstate == INFINIPATH_IBCS_L_STATE_DOWN) { |
| 310 | /* transitioned to UP */ |
| 311 | if (dd->ipath_f_ib_updown(dd, 1, ibcs)) { |
Michael Albaugh | 4330e4d | 2008-04-16 21:09:26 -0700 | [diff] [blame] | 312 | /* link came up, so we must no longer be disabled */ |
| 313 | dd->ipath_flags &= ~IPATH_IB_LINK_DISABLED; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 314 | ipath_cdbg(LINKVERB, "LinkUp handled, skipped\n"); |
| 315 | goto skip_ibchange; /* chip-code handled */ |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 316 | } |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 317 | } else if ((lastlstate >= INFINIPATH_IBCS_L_STATE_INIT || |
| 318 | (dd->ipath_flags & IPATH_IB_FORCE_NOTIFY)) && |
| 319 | ltstate <= INFINIPATH_IBCS_LT_STATE_CFGDEBOUNCE && |
| 320 | ltstate != INFINIPATH_IBCS_LT_STATE_LINKUP) { |
| 321 | int handled; |
| 322 | handled = dd->ipath_f_ib_updown(dd, 0, ibcs); |
| 323 | dd->ipath_flags &= ~IPATH_IB_FORCE_NOTIFY; |
| 324 | if (handled) { |
| 325 | ipath_cdbg(LINKVERB, "LinkDown handled, skipped\n"); |
| 326 | goto skip_ibchange; /* chip-code handled */ |
| 327 | } |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 328 | } |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 329 | |
| 330 | /* |
| 331 | * Significant enough to always print and get into logs, if it was |
| 332 | * unexpected. If it was a requested state change, we'll have |
| 333 | * already cleared the flags, so we won't print this warning |
| 334 | */ |
| 335 | if ((ibstate != arm && ibstate != active) && |
| 336 | (dd->ipath_flags & (IPATH_LINKARMED | IPATH_LINKACTIVE))) { |
| 337 | dev_info(&dd->pcidev->dev, "Link state changed from %s " |
| 338 | "to %s\n", (dd->ipath_flags & IPATH_LINKARMED) ? |
| 339 | "ARM" : "ACTIVE", ib_linkstate(dd, ibcs)); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 340 | } |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 341 | |
| 342 | if (ltstate == INFINIPATH_IBCS_LT_STATE_POLLACTIVE || |
| 343 | ltstate == INFINIPATH_IBCS_LT_STATE_POLLQUIET) { |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 344 | u32 lastlts; |
| 345 | lastlts = ipath_ib_linktrstate(dd, dd->ipath_lastibcstat); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 346 | /* |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 347 | * Ignore cycling back and forth from Polling.Active to |
| 348 | * Polling.Quiet while waiting for the other end of the link |
| 349 | * to come up, except to try and decide if we are connected |
| 350 | * to a live IB device or not. We will cycle back and |
| 351 | * forth between them if no cable is plugged in, the other |
| 352 | * device is powered off or disabled, etc. |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 353 | */ |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 354 | if (lastlts == INFINIPATH_IBCS_LT_STATE_POLLACTIVE || |
| 355 | lastlts == INFINIPATH_IBCS_LT_STATE_POLLQUIET) { |
| 356 | if (++dd->ipath_ibpollcnt == 40) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 357 | dd->ipath_flags |= IPATH_NOCABLE; |
| 358 | *dd->ipath_statusp |= |
| 359 | IPATH_STATUS_IB_NOCABLE; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 360 | ipath_cdbg(LINKVERB, "Set NOCABLE\n"); |
| 361 | } |
| 362 | ipath_cdbg(LINKVERB, "POLL change to %s (%x)\n", |
| 363 | ipath_ibcstatus_str[ltstate], ibstate); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 364 | goto skip_ibchange; |
| 365 | } |
| 366 | } |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 367 | |
| 368 | dd->ipath_ibpollcnt = 0; /* not poll*, now */ |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 369 | ipath_stats.sps_iblink++; |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 370 | |
Dave Olson | 72708a0 | 2008-04-16 21:09:25 -0700 | [diff] [blame] | 371 | if (ibstate != init && dd->ipath_lastlinkrecov && ipath_linkrecovery) { |
| 372 | u64 linkrecov; |
| 373 | linkrecov = ipath_snap_cntr(dd, |
| 374 | dd->ipath_cregs->cr_iblinkerrrecovcnt); |
| 375 | if (linkrecov != dd->ipath_lastlinkrecov) { |
| 376 | ipath_dbg("IB linkrecov up %Lx (%s %s) recov %Lu\n", |
| 377 | ibcs, ib_linkstate(dd, ibcs), |
| 378 | ipath_ibcstatus_str[ltstate], |
| 379 | linkrecov); |
| 380 | /* and no more until active again */ |
| 381 | dd->ipath_lastlinkrecov = 0; |
| 382 | ipath_set_linkstate(dd, IPATH_IB_LINKDOWN); |
| 383 | goto skip_ibchange; |
| 384 | } |
| 385 | } |
| 386 | |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 387 | if (ibstate == init || ibstate == arm || ibstate == active) { |
| 388 | *dd->ipath_statusp &= ~IPATH_STATUS_IB_NOCABLE; |
| 389 | if (ibstate == init || ibstate == arm) { |
| 390 | *dd->ipath_statusp &= ~IPATH_STATUS_IB_READY; |
| 391 | if (dd->ipath_flags & IPATH_LINKACTIVE) |
| 392 | signal_ib_event(dd, IB_EVENT_PORT_ERR); |
| 393 | } |
| 394 | if (ibstate == arm) { |
| 395 | dd->ipath_flags |= IPATH_LINKARMED; |
| 396 | dd->ipath_flags &= ~(IPATH_LINKUNK | |
| 397 | IPATH_LINKINIT | IPATH_LINKDOWN | |
| 398 | IPATH_LINKACTIVE | IPATH_NOCABLE); |
| 399 | ipath_hol_down(dd); |
| 400 | } else if (ibstate == init) { |
| 401 | /* |
| 402 | * set INIT and DOWN. Down is checked by |
| 403 | * most of the other code, but INIT is |
| 404 | * useful to know in a few places. |
| 405 | */ |
| 406 | dd->ipath_flags |= IPATH_LINKINIT | |
| 407 | IPATH_LINKDOWN; |
| 408 | dd->ipath_flags &= ~(IPATH_LINKUNK | |
| 409 | IPATH_LINKARMED | IPATH_LINKACTIVE | |
| 410 | IPATH_NOCABLE); |
| 411 | ipath_hol_down(dd); |
| 412 | } else { /* active */ |
Dave Olson | 72708a0 | 2008-04-16 21:09:25 -0700 | [diff] [blame] | 413 | dd->ipath_lastlinkrecov = ipath_snap_cntr(dd, |
| 414 | dd->ipath_cregs->cr_iblinkerrrecovcnt); |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 415 | *dd->ipath_statusp |= |
| 416 | IPATH_STATUS_IB_READY | IPATH_STATUS_IB_CONF; |
| 417 | dd->ipath_flags |= IPATH_LINKACTIVE; |
| 418 | dd->ipath_flags &= ~(IPATH_LINKUNK | IPATH_LINKINIT |
| 419 | | IPATH_LINKDOWN | IPATH_LINKARMED | |
| 420 | IPATH_NOCABLE); |
| 421 | signal_ib_event(dd, IB_EVENT_PORT_ACTIVE); |
| 422 | /* LED active not handled in chip _f_updown */ |
| 423 | dd->ipath_f_setextled(dd, lstate, ltstate); |
| 424 | ipath_hol_up(dd); |
| 425 | } |
| 426 | |
| 427 | /* |
| 428 | * print after we've already done the work, so as not to |
| 429 | * delay the state changes and notifications, for debugging |
| 430 | */ |
| 431 | if (lstate == lastlstate) |
| 432 | ipath_cdbg(LINKVERB, "Unchanged from last: %s " |
| 433 | "(%x)\n", ib_linkstate(dd, ibcs), ibstate); |
| 434 | else |
| 435 | ipath_cdbg(VERBOSE, "Unit %u: link up to %s %s (%x)\n", |
| 436 | dd->ipath_unit, ib_linkstate(dd, ibcs), |
| 437 | ipath_ibcstatus_str[ltstate], ibstate); |
| 438 | } else { /* down */ |
Ralph Campbell | 49739b3 | 2007-09-19 16:47:31 -0700 | [diff] [blame] | 439 | if (dd->ipath_flags & IPATH_LINKACTIVE) |
| 440 | signal_ib_event(dd, IB_EVENT_PORT_ERR); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 441 | dd->ipath_flags |= IPATH_LINKDOWN; |
| 442 | dd->ipath_flags &= ~(IPATH_LINKUNK | IPATH_LINKINIT |
| 443 | | IPATH_LINKACTIVE | |
| 444 | IPATH_LINKARMED); |
| 445 | *dd->ipath_statusp &= ~IPATH_STATUS_IB_READY; |
Bryan O'Sullivan | fba7520 | 2006-07-01 04:36:09 -0700 | [diff] [blame] | 446 | dd->ipath_lli_counter = 0; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 447 | |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 448 | if (lastlstate != INFINIPATH_IBCS_L_STATE_DOWN) |
| 449 | ipath_cdbg(VERBOSE, "Unit %u link state down " |
| 450 | "(state 0x%x), from %s\n", |
| 451 | dd->ipath_unit, lstate, |
| 452 | ib_linkstate(dd, dd->ipath_lastibcstat)); |
| 453 | else |
| 454 | ipath_cdbg(LINKVERB, "Unit %u link state changed " |
| 455 | "to %s (0x%x) from down (%x)\n", |
| 456 | dd->ipath_unit, |
| 457 | ipath_ibcstatus_str[ltstate], |
| 458 | ibstate, lastlstate); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 459 | } |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 460 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 461 | skip_ibchange: |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 462 | dd->ipath_lastibcstat = ibcs; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | static void handle_supp_msgs(struct ipath_devdata *dd, |
Dave Olson | 164ef7a | 2007-10-09 22:24:36 -0700 | [diff] [blame] | 466 | unsigned supp_msgs, char *msg, int msgsz) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 467 | { |
| 468 | /* |
| 469 | * Print the message unless it's ibc status change only, which |
| 470 | * happens so often we never want to count it. |
| 471 | */ |
| 472 | if (dd->ipath_lasterror & ~INFINIPATH_E_IBSTATUSCHANGED) { |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 473 | int iserr; |
Dave Olson | 164ef7a | 2007-10-09 22:24:36 -0700 | [diff] [blame] | 474 | iserr = ipath_decode_err(msg, msgsz, |
| 475 | dd->ipath_lasterror & |
| 476 | ~INFINIPATH_E_IBSTATUSCHANGED); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 477 | if (dd->ipath_lasterror & |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 478 | ~(INFINIPATH_E_RRCVEGRFULL | |
| 479 | INFINIPATH_E_RRCVHDRFULL | INFINIPATH_E_PKTERRS)) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 480 | ipath_dev_err(dd, "Suppressed %u messages for " |
| 481 | "fast-repeating errors (%s) (%llx)\n", |
| 482 | supp_msgs, msg, |
| 483 | (unsigned long long) |
| 484 | dd->ipath_lasterror); |
| 485 | else { |
| 486 | /* |
| 487 | * rcvegrfull and rcvhdrqfull are "normal", for some |
| 488 | * types of processes (mostly benchmarks) that send |
| 489 | * huge numbers of messages, while not processing |
| 490 | * them. So only complain about these at debug |
| 491 | * level. |
| 492 | */ |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 493 | if (iserr) |
| 494 | ipath_dbg("Suppressed %u messages for %s\n", |
| 495 | supp_msgs, msg); |
| 496 | else |
| 497 | ipath_cdbg(ERRPKT, |
| 498 | "Suppressed %u messages for %s\n", |
| 499 | supp_msgs, msg); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 500 | } |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | static unsigned handle_frequent_errors(struct ipath_devdata *dd, |
Dave Olson | 164ef7a | 2007-10-09 22:24:36 -0700 | [diff] [blame] | 505 | ipath_err_t errs, char *msg, |
| 506 | int msgsz, int *noprint) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 507 | { |
| 508 | unsigned long nc; |
| 509 | static unsigned long nextmsg_time; |
| 510 | static unsigned nmsgs, supp_msgs; |
| 511 | |
| 512 | /* |
| 513 | * Throttle back "fast" messages to no more than 10 per 5 seconds. |
| 514 | * This isn't perfect, but it's a reasonable heuristic. If we get |
| 515 | * more than 10, give a 6x longer delay. |
| 516 | */ |
| 517 | nc = jiffies; |
| 518 | if (nmsgs > 10) { |
| 519 | if (time_before(nc, nextmsg_time)) { |
| 520 | *noprint = 1; |
| 521 | if (!supp_msgs++) |
| 522 | nextmsg_time = nc + HZ * 3; |
| 523 | } |
| 524 | else if (supp_msgs) { |
Dave Olson | 164ef7a | 2007-10-09 22:24:36 -0700 | [diff] [blame] | 525 | handle_supp_msgs(dd, supp_msgs, msg, msgsz); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 526 | supp_msgs = 0; |
| 527 | nmsgs = 0; |
| 528 | } |
| 529 | } |
| 530 | else if (!nmsgs++ || time_after(nc, nextmsg_time)) |
| 531 | nextmsg_time = nc + HZ / 2; |
| 532 | |
| 533 | return supp_msgs; |
| 534 | } |
| 535 | |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 536 | static int handle_errors(struct ipath_devdata *dd, ipath_err_t errs) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 537 | { |
Dave Olson | 164ef7a | 2007-10-09 22:24:36 -0700 | [diff] [blame] | 538 | char msg[128]; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 539 | u64 ignore_this_time = 0; |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 540 | int i, iserr = 0; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 541 | int chkerrpkts = 0, noprint = 0; |
| 542 | unsigned supp_msgs; |
Michael Albaugh | aecd3b5 | 2007-05-17 07:26:28 -0700 | [diff] [blame] | 543 | int log_idx; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 544 | |
Dave Olson | 164ef7a | 2007-10-09 22:24:36 -0700 | [diff] [blame] | 545 | supp_msgs = handle_frequent_errors(dd, errs, msg, sizeof msg, &noprint); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 546 | |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 547 | /* don't report errors that are masked */ |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 548 | errs &= ~dd->ipath_maskederrs; |
| 549 | |
| 550 | /* do these first, they are most important */ |
| 551 | if (errs & INFINIPATH_E_HARDWARE) { |
| 552 | /* reuse same msg buf */ |
| 553 | dd->ipath_f_handle_hwerrors(dd, msg, sizeof msg); |
Michael Albaugh | aecd3b5 | 2007-05-17 07:26:28 -0700 | [diff] [blame] | 554 | } else { |
| 555 | u64 mask; |
| 556 | for (log_idx = 0; log_idx < IPATH_EEP_LOG_CNT; ++log_idx) { |
| 557 | mask = dd->ipath_eep_st_masks[log_idx].errs_to_log; |
| 558 | if (errs & mask) |
| 559 | ipath_inc_eeprom_err(dd, log_idx, 1); |
| 560 | } |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 561 | } |
| 562 | |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 563 | if (!noprint && (errs & ~dd->ipath_e_bitsextant)) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 564 | ipath_dev_err(dd, "error interrupt with unknown errors " |
| 565 | "%llx set\n", (unsigned long long) |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 566 | (errs & ~dd->ipath_e_bitsextant)); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 567 | |
| 568 | if (errs & E_SUM_ERRS) |
| 569 | ignore_this_time = handle_e_sum_errs(dd, errs); |
Bryan O'Sullivan | f37bda9 | 2006-07-01 04:36:03 -0700 | [diff] [blame] | 570 | else if ((errs & E_SUM_LINK_PKTERRS) && |
| 571 | !(dd->ipath_flags & IPATH_LINKACTIVE)) { |
| 572 | /* |
| 573 | * This can happen when SMA is trying to bring the link |
| 574 | * up, but the IB link changes state at the "wrong" time. |
| 575 | * The IB logic then complains that the packet isn't |
| 576 | * valid. We don't want to confuse people, so we just |
| 577 | * don't print them, except at debug |
| 578 | */ |
| 579 | ipath_dbg("Ignoring packet errors %llx, because link not " |
| 580 | "ACTIVE\n", (unsigned long long) errs); |
| 581 | ignore_this_time = errs & E_SUM_LINK_PKTERRS; |
| 582 | } |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 583 | |
| 584 | if (supp_msgs == 250000) { |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 585 | int s_iserr; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 586 | /* |
| 587 | * It's not entirely reasonable assuming that the errors set |
| 588 | * in the last clear period are all responsible for the |
| 589 | * problem, but the alternative is to assume it's the only |
| 590 | * ones on this particular interrupt, which also isn't great |
| 591 | */ |
| 592 | dd->ipath_maskederrs |= dd->ipath_lasterror | errs; |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 593 | dd->ipath_errormask &= ~dd->ipath_maskederrs; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 594 | ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask, |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 595 | dd->ipath_errormask); |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 596 | s_iserr = ipath_decode_err(msg, sizeof msg, |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 597 | dd->ipath_maskederrs); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 598 | |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 599 | if (dd->ipath_maskederrs & |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 600 | ~(INFINIPATH_E_RRCVEGRFULL | |
| 601 | INFINIPATH_E_RRCVHDRFULL | INFINIPATH_E_PKTERRS)) |
| 602 | ipath_dev_err(dd, "Temporarily disabling " |
| 603 | "error(s) %llx reporting; too frequent (%s)\n", |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 604 | (unsigned long long)dd->ipath_maskederrs, |
| 605 | msg); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 606 | else { |
| 607 | /* |
| 608 | * rcvegrfull and rcvhdrqfull are "normal", |
| 609 | * for some types of processes (mostly benchmarks) |
| 610 | * that send huge numbers of messages, while not |
| 611 | * processing them. So only complain about |
| 612 | * these at debug level. |
| 613 | */ |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 614 | if (s_iserr) |
| 615 | ipath_dbg("Temporarily disabling reporting " |
| 616 | "too frequent queue full errors (%s)\n", |
| 617 | msg); |
| 618 | else |
| 619 | ipath_cdbg(ERRPKT, |
| 620 | "Temporarily disabling reporting too" |
| 621 | " frequent packet errors (%s)\n", |
| 622 | msg); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | /* |
| 626 | * Re-enable the masked errors after around 3 minutes. in |
| 627 | * ipath_get_faststats(). If we have a series of fast |
| 628 | * repeating but different errors, the interval will keep |
| 629 | * stretching out, but that's OK, as that's pretty |
| 630 | * catastrophic. |
| 631 | */ |
| 632 | dd->ipath_unmasktime = jiffies + HZ * 180; |
| 633 | } |
| 634 | |
| 635 | ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, errs); |
| 636 | if (ignore_this_time) |
| 637 | errs &= ~ignore_this_time; |
| 638 | if (errs & ~dd->ipath_lasterror) { |
| 639 | errs &= ~dd->ipath_lasterror; |
| 640 | /* never suppress duplicate hwerrors or ibstatuschange */ |
| 641 | dd->ipath_lasterror |= errs & |
| 642 | ~(INFINIPATH_E_HARDWARE | |
| 643 | INFINIPATH_E_IBSTATUSCHANGED); |
| 644 | } |
Bryan O'Sullivan | 89d1e09 | 2006-09-28 09:00:18 -0700 | [diff] [blame] | 645 | |
| 646 | /* likely due to cancel, so suppress */ |
| 647 | if ((errs & (INFINIPATH_E_SPKTLEN | INFINIPATH_E_SPIOARMLAUNCH)) && |
| 648 | dd->ipath_lastcancel > jiffies) { |
| 649 | ipath_dbg("Suppressed armlaunch/spktlen after error send cancel\n"); |
| 650 | errs &= ~(INFINIPATH_E_SPIOARMLAUNCH | INFINIPATH_E_SPKTLEN); |
| 651 | } |
| 652 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 653 | if (!errs) |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 654 | return 0; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 655 | |
| 656 | if (!noprint) |
| 657 | /* |
| 658 | * the ones we mask off are handled specially below or above |
| 659 | */ |
| 660 | ipath_decode_err(msg, sizeof msg, |
| 661 | errs & ~(INFINIPATH_E_IBSTATUSCHANGED | |
| 662 | INFINIPATH_E_RRCVEGRFULL | |
| 663 | INFINIPATH_E_RRCVHDRFULL | |
| 664 | INFINIPATH_E_HARDWARE)); |
| 665 | else |
| 666 | /* so we don't need if (!noprint) at strlcat's below */ |
| 667 | *msg = 0; |
| 668 | |
| 669 | if (errs & E_SUM_PKTERRS) { |
| 670 | ipath_stats.sps_pkterrs++; |
| 671 | chkerrpkts = 1; |
| 672 | } |
| 673 | if (errs & E_SUM_ERRS) |
| 674 | ipath_stats.sps_errs++; |
| 675 | |
| 676 | if (errs & (INFINIPATH_E_RICRC | INFINIPATH_E_RVCRC)) { |
| 677 | ipath_stats.sps_crcerrs++; |
| 678 | chkerrpkts = 1; |
| 679 | } |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 680 | iserr = errs & ~(E_SUM_PKTERRS | INFINIPATH_E_PKTERRS); |
| 681 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 682 | |
| 683 | /* |
| 684 | * We don't want to print these two as they happen, or we can make |
| 685 | * the situation even worse, because it takes so long to print |
| 686 | * messages to serial consoles. Kernel ports get printed from |
| 687 | * fast_stats, no more than every 5 seconds, user ports get printed |
| 688 | * on close |
| 689 | */ |
| 690 | if (errs & INFINIPATH_E_RRCVHDRFULL) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 691 | u32 hd, tl; |
| 692 | ipath_stats.sps_hdrqfull++; |
Roland Dreier | 44f8e3f | 2006-12-12 11:50:20 -0800 | [diff] [blame] | 693 | for (i = 0; i < dd->ipath_cfgports; i++) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 694 | struct ipath_portdata *pd = dd->ipath_pd[i]; |
| 695 | if (i == 0) { |
Ralph Campbell | c59a80a | 2007-12-20 02:43:23 -0800 | [diff] [blame] | 696 | hd = pd->port_head; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 697 | tl = (u32) le64_to_cpu( |
| 698 | *dd->ipath_hdrqtailptr); |
| 699 | } else if (pd && pd->port_cnt && |
| 700 | pd->port_rcvhdrtail_kvaddr) { |
| 701 | /* |
| 702 | * don't report same point multiple times, |
| 703 | * except kernel |
| 704 | */ |
Bryan O'Sullivan | 1fd3b40 | 2006-09-28 09:00:13 -0700 | [diff] [blame] | 705 | tl = *(u64 *) pd->port_rcvhdrtail_kvaddr; |
Dave Olson | 755807a | 2007-12-06 00:28:02 -0800 | [diff] [blame] | 706 | if (tl == pd->port_lastrcvhdrqtail) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 707 | continue; |
| 708 | hd = ipath_read_ureg32(dd, ur_rcvhdrhead, |
| 709 | i); |
| 710 | } else |
| 711 | continue; |
| 712 | if (hd == (tl + 1) || |
| 713 | (!hd && tl == dd->ipath_hdrqlast)) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 714 | if (i == 0) |
| 715 | chkerrpkts = 1; |
Dave Olson | 755807a | 2007-12-06 00:28:02 -0800 | [diff] [blame] | 716 | pd->port_lastrcvhdrqtail = tl; |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 717 | pd->port_hdrqfull++; |
Arthur Jones | 70c51da | 2007-09-14 12:22:49 -0700 | [diff] [blame] | 718 | /* flush hdrqfull so that poll() sees it */ |
| 719 | wmb(); |
| 720 | wake_up_interruptible(&pd->port_wait); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 721 | } |
| 722 | } |
| 723 | } |
| 724 | if (errs & INFINIPATH_E_RRCVEGRFULL) { |
Ralph Campbell | c59a80a | 2007-12-20 02:43:23 -0800 | [diff] [blame] | 725 | struct ipath_portdata *pd = dd->ipath_pd[0]; |
| 726 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 727 | /* |
| 728 | * since this is of less importance and not likely to |
| 729 | * happen without also getting hdrfull, only count |
| 730 | * occurrences; don't check each port (or even the kernel |
| 731 | * vs user) |
| 732 | */ |
| 733 | ipath_stats.sps_etidfull++; |
Ralph Campbell | c59a80a | 2007-12-20 02:43:23 -0800 | [diff] [blame] | 734 | if (pd->port_head != |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 735 | (u32) le64_to_cpu(*dd->ipath_hdrqtailptr)) |
| 736 | chkerrpkts = 1; |
| 737 | } |
| 738 | |
| 739 | /* |
| 740 | * do this before IBSTATUSCHANGED, in case both bits set in a single |
| 741 | * interrupt; we want the STATUSCHANGE to "win", so we do our |
| 742 | * internal copy of state machine correctly |
| 743 | */ |
| 744 | if (errs & INFINIPATH_E_RIBLOSTLINK) { |
| 745 | /* |
| 746 | * force through block below |
| 747 | */ |
| 748 | errs |= INFINIPATH_E_IBSTATUSCHANGED; |
| 749 | ipath_stats.sps_iblink++; |
| 750 | dd->ipath_flags |= IPATH_LINKDOWN; |
| 751 | dd->ipath_flags &= ~(IPATH_LINKUNK | IPATH_LINKINIT |
| 752 | | IPATH_LINKARMED | IPATH_LINKACTIVE); |
| 753 | *dd->ipath_statusp &= ~IPATH_STATUS_IB_READY; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 754 | |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 755 | ipath_dbg("Lost link, link now down (%s)\n", |
| 756 | ipath_ibcstatus_str[ipath_read_kreg64(dd, |
| 757 | dd->ipath_kregs->kr_ibcstatus) & 0xf]); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 758 | } |
| 759 | if (errs & INFINIPATH_E_IBSTATUSCHANGED) |
John Gregor | 58411d1 | 2008-04-16 21:09:24 -0700 | [diff] [blame] | 760 | handle_e_ibstatuschanged(dd, errs); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 761 | |
| 762 | if (errs & INFINIPATH_E_RESET) { |
| 763 | if (!noprint) |
| 764 | ipath_dev_err(dd, "Got reset, requires re-init " |
| 765 | "(unload and reload driver)\n"); |
| 766 | dd->ipath_flags &= ~IPATH_INITTED; /* needs re-init */ |
| 767 | /* mark as having had error */ |
| 768 | *dd->ipath_statusp |= IPATH_STATUS_HWERROR; |
| 769 | *dd->ipath_statusp &= ~IPATH_STATUS_IB_CONF; |
| 770 | } |
| 771 | |
Bryan O'Sullivan | 8ec1077 | 2007-03-15 14:44:55 -0700 | [diff] [blame] | 772 | if (!noprint && *msg) { |
| 773 | if (iserr) |
| 774 | ipath_dev_err(dd, "%s error\n", msg); |
| 775 | else |
| 776 | dev_info(&dd->pcidev->dev, "%s packet problems\n", |
| 777 | msg); |
| 778 | } |
Bryan O'Sullivan | 0fd4136 | 2006-08-25 11:24:34 -0700 | [diff] [blame] | 779 | if (dd->ipath_state_wanted & dd->ipath_flags) { |
| 780 | ipath_cdbg(VERBOSE, "driver wanted state %x, iflags now %x, " |
| 781 | "waking\n", dd->ipath_state_wanted, |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 782 | dd->ipath_flags); |
Bryan O'Sullivan | 0fd4136 | 2006-08-25 11:24:34 -0700 | [diff] [blame] | 783 | wake_up_interruptible(&ipath_state_wait); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 784 | } |
| 785 | |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 786 | return chkerrpkts; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 787 | } |
| 788 | |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 789 | |
| 790 | /* |
| 791 | * try to cleanup as much as possible for anything that might have gone |
| 792 | * wrong while in freeze mode, such as pio buffers being written by user |
| 793 | * processes (causing armlaunch), send errors due to going into freeze mode, |
| 794 | * etc., and try to avoid causing extra interrupts while doing so. |
| 795 | * Forcibly update the in-memory pioavail register copies after cleanup |
| 796 | * because the chip won't do it for anything changing while in freeze mode |
| 797 | * (we don't want to wait for the next pio buffer state change). |
| 798 | * Make sure that we don't lose any important interrupts by using the chip |
| 799 | * feature that says that writing 0 to a bit in *clear that is set in |
| 800 | * *status will cause an interrupt to be generated again (if allowed by |
| 801 | * the *mask value). |
| 802 | */ |
| 803 | void ipath_clear_freeze(struct ipath_devdata *dd) |
| 804 | { |
| 805 | int i, im; |
Ralph Campbell | 0349d16 | 2008-04-16 21:01:13 -0700 | [diff] [blame] | 806 | u64 val; |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 807 | |
| 808 | /* disable error interrupts, to avoid confusion */ |
| 809 | ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask, 0ULL); |
| 810 | |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 811 | /* also disable interrupts; errormask is sometimes overwriten */ |
| 812 | ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL); |
| 813 | |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 814 | /* |
| 815 | * clear all sends, because they have may been |
| 816 | * completed by usercode while in freeze mode, and |
| 817 | * therefore would not be sent, and eventually |
| 818 | * might cause the process to run out of bufs |
| 819 | */ |
Dave Olson | 3810f2a | 2007-07-20 14:23:37 -0700 | [diff] [blame] | 820 | ipath_cancel_sends(dd, 0); |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 821 | ipath_write_kreg(dd, dd->ipath_kregs->kr_control, |
| 822 | dd->ipath_control); |
| 823 | |
| 824 | /* ensure pio avail updates continue */ |
Ralph Campbell | c4b4d16 | 2008-04-16 21:09:26 -0700 | [diff] [blame^] | 825 | ipath_force_pio_avail_update(dd); |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 826 | |
| 827 | /* |
| 828 | * We just enabled pioavailupdate, so dma copy is almost certainly |
| 829 | * not yet right, so read the registers directly. Similar to init |
| 830 | */ |
| 831 | for (i = 0; i < dd->ipath_pioavregs; i++) { |
| 832 | /* deal with 6110 chip bug */ |
Ralph Campbell | 8bae0ff | 2008-04-16 21:01:13 -0700 | [diff] [blame] | 833 | im = (i > 3 && (dd->ipath_flags & IPATH_SWAP_PIOBUFS)) ? |
| 834 | i ^ 1 : i; |
Ralph Campbell | 4ea61b5 | 2008-01-06 21:12:38 -0800 | [diff] [blame] | 835 | val = ipath_read_kreg64(dd, (0x1000 / sizeof(u64)) + im); |
Ralph Campbell | 0349d16 | 2008-04-16 21:01:13 -0700 | [diff] [blame] | 836 | dd->ipath_pioavailregs_dma[i] = cpu_to_le64(val); |
Ralph Campbell | c4b4d16 | 2008-04-16 21:09:26 -0700 | [diff] [blame^] | 837 | dd->ipath_pioavailshadow[i] = val | |
| 838 | (~dd->ipath_pioavailkernel[i] << |
| 839 | INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT); |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | /* |
| 843 | * force new interrupt if any hwerr, error or interrupt bits are |
| 844 | * still set, and clear "safe" send packet errors related to freeze |
| 845 | * and cancelling sends. Re-enable error interrupts before possible |
| 846 | * force of re-interrupt on pending interrupts. |
| 847 | */ |
| 848 | ipath_write_kreg(dd, dd->ipath_kregs->kr_hwerrclear, 0ULL); |
| 849 | ipath_write_kreg(dd, dd->ipath_kregs->kr_errorclear, |
| 850 | E_SPKT_ERRS_IGNORE); |
| 851 | ipath_write_kreg(dd, dd->ipath_kregs->kr_errormask, |
Dave Olson | 78d1e02 | 2007-07-20 14:41:26 -0700 | [diff] [blame] | 852 | dd->ipath_errormask); |
| 853 | ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, -1LL); |
Dave Olson | 0f4fc5e | 2007-07-06 12:48:33 -0700 | [diff] [blame] | 854 | ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, 0ULL); |
| 855 | } |
| 856 | |
| 857 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 858 | /* this is separate to allow for better optimization of ipath_intr() */ |
| 859 | |
Dave Olson | e193e33 | 2007-10-10 05:10:35 -0700 | [diff] [blame] | 860 | static noinline void ipath_bad_intr(struct ipath_devdata *dd, u32 *unexpectp) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 861 | { |
| 862 | /* |
| 863 | * sometimes happen during driver init and unload, don't want |
| 864 | * to process any interrupts at that point |
| 865 | */ |
| 866 | |
| 867 | /* this is just a bandaid, not a fix, if something goes badly |
| 868 | * wrong */ |
| 869 | if (++*unexpectp > 100) { |
| 870 | if (++*unexpectp > 105) { |
| 871 | /* |
| 872 | * ok, we must be taking somebody else's interrupts, |
| 873 | * due to a messed up mptable and/or PIRQ table, so |
| 874 | * unregister the interrupt. We've seen this during |
| 875 | * linuxbios development work, and it may happen in |
| 876 | * the future again. |
| 877 | */ |
Bryan O'Sullivan | 51f65eb | 2006-11-08 17:44:58 -0800 | [diff] [blame] | 878 | if (dd->pcidev && dd->ipath_irq) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 879 | ipath_dev_err(dd, "Now %u unexpected " |
| 880 | "interrupts, unregistering " |
| 881 | "interrupt handler\n", |
| 882 | *unexpectp); |
Bryan O'Sullivan | 51f65eb | 2006-11-08 17:44:58 -0800 | [diff] [blame] | 883 | ipath_dbg("free_irq of irq %d\n", |
| 884 | dd->ipath_irq); |
| 885 | dd->ipath_f_free_irq(dd); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 886 | } |
| 887 | } |
Arthur Jones | 7da0498 | 2008-01-06 21:12:38 -0800 | [diff] [blame] | 888 | if (ipath_read_ireg(dd, dd->ipath_kregs->kr_intmask)) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 889 | ipath_dev_err(dd, "%u unexpected interrupts, " |
| 890 | "disabling interrupts completely\n", |
| 891 | *unexpectp); |
| 892 | /* |
| 893 | * disable all interrupts, something is very wrong |
| 894 | */ |
| 895 | ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, |
| 896 | 0ULL); |
| 897 | } |
| 898 | } else if (*unexpectp > 1) |
| 899 | ipath_dbg("Interrupt when not ready, should not happen, " |
| 900 | "ignoring\n"); |
| 901 | } |
| 902 | |
Dave Olson | e193e33 | 2007-10-10 05:10:35 -0700 | [diff] [blame] | 903 | static noinline void ipath_bad_regread(struct ipath_devdata *dd) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 904 | { |
| 905 | static int allbits; |
| 906 | |
| 907 | /* separate routine, for better optimization of ipath_intr() */ |
| 908 | |
| 909 | /* |
| 910 | * We print the message and disable interrupts, in hope of |
| 911 | * having a better chance of debugging the problem. |
| 912 | */ |
| 913 | ipath_dev_err(dd, |
| 914 | "Read of interrupt status failed (all bits set)\n"); |
| 915 | if (allbits++) { |
| 916 | /* disable all interrupts, something is very wrong */ |
| 917 | ipath_write_kreg(dd, dd->ipath_kregs->kr_intmask, 0ULL); |
| 918 | if (allbits == 2) { |
| 919 | ipath_dev_err(dd, "Still bad interrupt status, " |
| 920 | "unregistering interrupt\n"); |
Bryan O'Sullivan | 51f65eb | 2006-11-08 17:44:58 -0800 | [diff] [blame] | 921 | dd->ipath_f_free_irq(dd); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 922 | } else if (allbits > 2) { |
| 923 | if ((allbits % 10000) == 0) |
| 924 | printk("."); |
| 925 | } else |
| 926 | ipath_dev_err(dd, "Disabling interrupts, " |
| 927 | "multiple errors\n"); |
| 928 | } |
| 929 | } |
| 930 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 931 | static void handle_layer_pioavail(struct ipath_devdata *dd) |
| 932 | { |
John Gregor | e342c11 | 2007-09-05 01:57:14 -0700 | [diff] [blame] | 933 | unsigned long flags; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 934 | int ret; |
| 935 | |
Bryan O'Sullivan | b1c1b6a | 2006-08-25 11:24:31 -0700 | [diff] [blame] | 936 | ret = ipath_ib_piobufavail(dd->verbs_dev); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 937 | if (ret > 0) |
Bryan O'Sullivan | d562a5a | 2006-04-24 14:23:08 -0700 | [diff] [blame] | 938 | goto set; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 939 | |
| 940 | return; |
Bryan O'Sullivan | d562a5a | 2006-04-24 14:23:08 -0700 | [diff] [blame] | 941 | set: |
John Gregor | e342c11 | 2007-09-05 01:57:14 -0700 | [diff] [blame] | 942 | spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags); |
| 943 | dd->ipath_sendctrl |= INFINIPATH_S_PIOINTBUFAVAIL; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 944 | ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, |
| 945 | dd->ipath_sendctrl); |
John Gregor | e342c11 | 2007-09-05 01:57:14 -0700 | [diff] [blame] | 946 | ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch); |
| 947 | spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 948 | } |
| 949 | |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 950 | /* |
| 951 | * Handle receive interrupts for user ports; this means a user |
| 952 | * process was waiting for a packet to arrive, and didn't want |
| 953 | * to poll |
| 954 | */ |
| 955 | static void handle_urcv(struct ipath_devdata *dd, u32 istat) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 956 | { |
| 957 | u64 portr; |
| 958 | int i; |
| 959 | int rcvdint = 0; |
| 960 | |
Arthur Jones | 2f01a70 | 2007-10-17 18:18:29 -0700 | [diff] [blame] | 961 | /* |
| 962 | * test_and_clear_bit(IPATH_PORT_WAITING_RCV) and |
| 963 | * test_and_clear_bit(IPATH_PORT_WAITING_URG) below |
| 964 | * would both like timely updates of the bits so that |
| 965 | * we don't pass them by unnecessarily. the rmb() |
| 966 | * here ensures that we see them promptly -- the |
| 967 | * corresponding wmb()'s are in ipath_poll_urgent() |
| 968 | * and ipath_poll_next()... |
| 969 | */ |
Arthur Jones | 70c51da | 2007-09-14 12:22:49 -0700 | [diff] [blame] | 970 | rmb(); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 971 | portr = ((istat >> INFINIPATH_I_RCVAVAIL_SHIFT) & |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 972 | dd->ipath_i_rcvavail_mask) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 973 | | ((istat >> INFINIPATH_I_RCVURG_SHIFT) & |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 974 | dd->ipath_i_rcvurg_mask); |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 975 | for (i = 1; i < dd->ipath_cfgports; i++) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 976 | struct ipath_portdata *pd = dd->ipath_pd[i]; |
Robert Walsh | f2d0423 | 2007-06-18 14:24:49 -0700 | [diff] [blame] | 977 | if (portr & (1 << i) && pd && pd->port_cnt) { |
Arthur Jones | 70c51da | 2007-09-14 12:22:49 -0700 | [diff] [blame] | 978 | if (test_and_clear_bit(IPATH_PORT_WAITING_RCV, |
| 979 | &pd->port_flag)) { |
Dave Olson | d827486 | 2007-12-21 01:50:59 -0800 | [diff] [blame] | 980 | clear_bit(i + dd->ipath_r_intravail_shift, |
Robert Walsh | f2d0423 | 2007-06-18 14:24:49 -0700 | [diff] [blame] | 981 | &dd->ipath_rcvctrl); |
| 982 | wake_up_interruptible(&pd->port_wait); |
| 983 | rcvdint = 1; |
Arthur Jones | 70c51da | 2007-09-14 12:22:49 -0700 | [diff] [blame] | 984 | } else if (test_and_clear_bit(IPATH_PORT_WAITING_URG, |
| 985 | &pd->port_flag)) { |
| 986 | pd->port_urgent++; |
Robert Walsh | f2d0423 | 2007-06-18 14:24:49 -0700 | [diff] [blame] | 987 | wake_up_interruptible(&pd->port_wait); |
| 988 | } |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 989 | } |
| 990 | } |
| 991 | if (rcvdint) { |
| 992 | /* only want to take one interrupt, so turn off the rcv |
| 993 | * interrupt for all the ports that we did the wakeup on |
| 994 | * (but never for kernel port) |
| 995 | */ |
| 996 | ipath_write_kreg(dd, dd->ipath_kregs->kr_rcvctrl, |
| 997 | dd->ipath_rcvctrl); |
| 998 | } |
| 999 | } |
| 1000 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1001 | irqreturn_t ipath_intr(int irq, void *data) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1002 | { |
| 1003 | struct ipath_devdata *dd = data; |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1004 | u32 istat, chk0rcv = 0; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1005 | ipath_err_t estat = 0; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1006 | irqreturn_t ret; |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1007 | static unsigned unexpected = 0; |
| 1008 | static const u32 port0rbits = (1U<<INFINIPATH_I_RCVAVAIL_SHIFT) | |
| 1009 | (1U<<INFINIPATH_I_RCVURG_SHIFT); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1010 | |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1011 | ipath_stats.sps_ints++; |
| 1012 | |
Arthur Jones | 3588423 | 2007-07-06 12:48:53 -0700 | [diff] [blame] | 1013 | if (dd->ipath_int_counter != (u32) -1) |
| 1014 | dd->ipath_int_counter++; |
| 1015 | |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1016 | if (!(dd->ipath_flags & IPATH_PRESENT)) { |
Bryan O'Sullivan | c71c30d | 2006-04-24 14:23:03 -0700 | [diff] [blame] | 1017 | /* |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1018 | * This return value is not great, but we do not want the |
Bryan O'Sullivan | c71c30d | 2006-04-24 14:23:03 -0700 | [diff] [blame] | 1019 | * interrupt core code to remove our interrupt handler |
| 1020 | * because we don't appear to be handling an interrupt |
| 1021 | * during a chip reset. |
| 1022 | */ |
| 1023 | return IRQ_HANDLED; |
| 1024 | } |
| 1025 | |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1026 | /* |
| 1027 | * this needs to be flags&initted, not statusp, so we keep |
| 1028 | * taking interrupts even after link goes down, etc. |
| 1029 | * Also, we *must* clear the interrupt at some point, or we won't |
| 1030 | * take it again, which can be real bad for errors, etc... |
| 1031 | */ |
| 1032 | |
| 1033 | if (!(dd->ipath_flags & IPATH_INITTED)) { |
| 1034 | ipath_bad_intr(dd, &unexpected); |
| 1035 | ret = IRQ_NONE; |
| 1036 | goto bail; |
| 1037 | } |
| 1038 | |
Arthur Jones | 7da0498 | 2008-01-06 21:12:38 -0800 | [diff] [blame] | 1039 | istat = ipath_read_ireg(dd, dd->ipath_kregs->kr_intstatus); |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1040 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1041 | if (unlikely(!istat)) { |
| 1042 | ipath_stats.sps_nullintr++; |
| 1043 | ret = IRQ_NONE; /* not our interrupt, or already handled */ |
| 1044 | goto bail; |
| 1045 | } |
| 1046 | if (unlikely(istat == -1)) { |
| 1047 | ipath_bad_regread(dd); |
| 1048 | /* don't know if it was our interrupt or not */ |
| 1049 | ret = IRQ_NONE; |
| 1050 | goto bail; |
| 1051 | } |
| 1052 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1053 | if (unexpected) |
| 1054 | unexpected = 0; |
| 1055 | |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 1056 | if (unlikely(istat & ~dd->ipath_i_bitsextant)) |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1057 | ipath_dev_err(dd, |
| 1058 | "interrupt with unknown interrupts %x set\n", |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 1059 | istat & (u32) ~ dd->ipath_i_bitsextant); |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1060 | else |
| 1061 | ipath_cdbg(VERBOSE, "intr stat=0x%x\n", istat); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1062 | |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1063 | if (unlikely(istat & INFINIPATH_I_ERROR)) { |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1064 | ipath_stats.sps_errints++; |
| 1065 | estat = ipath_read_kreg64(dd, |
| 1066 | dd->ipath_kregs->kr_errorstatus); |
| 1067 | if (!estat) |
| 1068 | dev_info(&dd->pcidev->dev, "error interrupt (%x), " |
| 1069 | "but no error bits set!\n", istat); |
| 1070 | else if (estat == -1LL) |
| 1071 | /* |
| 1072 | * should we try clearing all, or hope next read |
| 1073 | * works? |
| 1074 | */ |
| 1075 | ipath_dev_err(dd, "Read of error status failed " |
| 1076 | "(all bits set); ignoring\n"); |
| 1077 | else |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1078 | if (handle_errors(dd, estat)) |
| 1079 | /* force calling ipath_kreceive() */ |
| 1080 | chk0rcv = 1; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | if (istat & INFINIPATH_I_GPIO) { |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1084 | /* |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1085 | * GPIO interrupts fall in two broad classes: |
| 1086 | * GPIO_2 indicates (on some HT4xx boards) that a packet |
| 1087 | * has arrived for Port 0. Checking for this |
| 1088 | * is controlled by flag IPATH_GPIO_INTR. |
Arthur Jones | 327a338 | 2007-08-02 14:46:29 -0700 | [diff] [blame] | 1089 | * GPIO_3..5 on IBA6120 Rev2 and IBA6110 Rev4 chips indicate |
| 1090 | * errors that we need to count. Checking for this |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1091 | * is controlled by flag IPATH_GPIO_ERRINTRS. |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1092 | */ |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1093 | u32 gpiostatus; |
| 1094 | u32 to_clear = 0; |
| 1095 | |
| 1096 | gpiostatus = ipath_read_kreg32( |
| 1097 | dd, dd->ipath_kregs->kr_gpio_status); |
| 1098 | /* First the error-counter case. |
| 1099 | */ |
| 1100 | if ((gpiostatus & IPATH_GPIO_ERRINTR_MASK) && |
| 1101 | (dd->ipath_flags & IPATH_GPIO_ERRINTRS)) { |
| 1102 | /* want to clear the bits we see asserted. */ |
| 1103 | to_clear |= (gpiostatus & IPATH_GPIO_ERRINTR_MASK); |
| 1104 | |
| 1105 | /* |
| 1106 | * Count appropriately, clear bits out of our copy, |
| 1107 | * as they have been "handled". |
| 1108 | */ |
| 1109 | if (gpiostatus & (1 << IPATH_GPIO_RXUVL_BIT)) { |
| 1110 | ipath_dbg("FlowCtl on UnsupVL\n"); |
| 1111 | dd->ipath_rxfc_unsupvl_errs++; |
| 1112 | } |
| 1113 | if (gpiostatus & (1 << IPATH_GPIO_OVRUN_BIT)) { |
| 1114 | ipath_dbg("Overrun Threshold exceeded\n"); |
| 1115 | dd->ipath_overrun_thresh_errs++; |
| 1116 | } |
| 1117 | if (gpiostatus & (1 << IPATH_GPIO_LLI_BIT)) { |
| 1118 | ipath_dbg("Local Link Integrity error\n"); |
| 1119 | dd->ipath_lli_errs++; |
| 1120 | } |
| 1121 | gpiostatus &= ~IPATH_GPIO_ERRINTR_MASK; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1122 | } |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1123 | /* Now the Port0 Receive case */ |
| 1124 | if ((gpiostatus & (1 << IPATH_GPIO_PORT0_BIT)) && |
| 1125 | (dd->ipath_flags & IPATH_GPIO_INTR)) { |
| 1126 | /* |
| 1127 | * GPIO status bit 2 is set, and we expected it. |
| 1128 | * clear it and indicate in p0bits. |
| 1129 | * This probably only happens if a Port0 pkt |
| 1130 | * arrives at _just_ the wrong time, and we |
| 1131 | * handle that by seting chk0rcv; |
| 1132 | */ |
| 1133 | to_clear |= (1 << IPATH_GPIO_PORT0_BIT); |
| 1134 | gpiostatus &= ~(1 << IPATH_GPIO_PORT0_BIT); |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1135 | chk0rcv = 1; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1136 | } |
Arthur Jones | 8f140b4 | 2007-05-10 12:10:49 -0700 | [diff] [blame] | 1137 | if (gpiostatus) { |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1138 | /* |
| 1139 | * Some unexpected bits remain. If they could have |
| 1140 | * caused the interrupt, complain and clear. |
Michael Albaugh | 6a733cd | 2007-10-03 10:47:38 -0700 | [diff] [blame] | 1141 | * To avoid repetition of this condition, also clear |
| 1142 | * the mask. It is almost certainly due to error. |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1143 | */ |
Arthur Jones | 8f140b4 | 2007-05-10 12:10:49 -0700 | [diff] [blame] | 1144 | const u32 mask = (u32) dd->ipath_gpio_mask; |
| 1145 | |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1146 | if (mask & gpiostatus) { |
| 1147 | ipath_dbg("Unexpected GPIO IRQ bits %x\n", |
| 1148 | gpiostatus & mask); |
| 1149 | to_clear |= (gpiostatus & mask); |
Michael Albaugh | 6a733cd | 2007-10-03 10:47:38 -0700 | [diff] [blame] | 1150 | dd->ipath_gpio_mask &= ~(gpiostatus & mask); |
| 1151 | ipath_write_kreg(dd, |
| 1152 | dd->ipath_kregs->kr_gpio_mask, |
| 1153 | dd->ipath_gpio_mask); |
Bryan O'Sullivan | 2c9446a | 2006-09-28 09:00:00 -0700 | [diff] [blame] | 1154 | } |
| 1155 | } |
| 1156 | if (to_clear) { |
| 1157 | ipath_write_kreg(dd, dd->ipath_kregs->kr_gpio_clear, |
| 1158 | (u64) to_clear); |
| 1159 | } |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1160 | } |
Bryan O'Sullivan | 57abad2 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1161 | chk0rcv |= istat & port0rbits; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1162 | |
| 1163 | /* |
Bryan O'Sullivan | 57abad2 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1164 | * Clear the interrupt bits we found set, unless they are receive |
| 1165 | * related, in which case we already cleared them above, and don't |
| 1166 | * want to clear them again, because we might lose an interrupt. |
| 1167 | * Clear it early, so we "know" know the chip will have seen this by |
| 1168 | * the time we process the queue, and will re-interrupt if necessary. |
| 1169 | * The processor itself won't take the interrupt again until we return. |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1170 | */ |
| 1171 | ipath_write_kreg(dd, dd->ipath_kregs->kr_intclear, istat); |
| 1172 | |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1173 | /* |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1174 | * handle port0 receive before checking for pio buffers available, |
| 1175 | * since receives can overflow; piobuf waiters can afford a few |
| 1176 | * extra cycles, since they were waiting anyway, and user's waiting |
| 1177 | * for receive are at the bottom. |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1178 | */ |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1179 | if (chk0rcv) { |
Ralph Campbell | c59a80a | 2007-12-20 02:43:23 -0800 | [diff] [blame] | 1180 | ipath_kreceive(dd->ipath_pd[0]); |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1181 | istat &= ~port0rbits; |
| 1182 | } |
Bryan O'Sullivan | f5f9992 | 2006-07-01 04:36:05 -0700 | [diff] [blame] | 1183 | |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 1184 | if (istat & ((dd->ipath_i_rcvavail_mask << |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1185 | INFINIPATH_I_RCVAVAIL_SHIFT) |
Bryan O'Sullivan | f62fe77 | 2006-09-28 09:00:11 -0700 | [diff] [blame] | 1186 | | (dd->ipath_i_rcvurg_mask << |
Bryan O'Sullivan | 13aef49 | 2006-07-01 04:36:04 -0700 | [diff] [blame] | 1187 | INFINIPATH_I_RCVURG_SHIFT))) |
| 1188 | handle_urcv(dd, istat); |
| 1189 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1190 | if (istat & INFINIPATH_I_SPIOBUFAVAIL) { |
John Gregor | e342c11 | 2007-09-05 01:57:14 -0700 | [diff] [blame] | 1191 | unsigned long flags; |
| 1192 | |
| 1193 | spin_lock_irqsave(&dd->ipath_sendctrl_lock, flags); |
| 1194 | dd->ipath_sendctrl &= ~INFINIPATH_S_PIOINTBUFAVAIL; |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1195 | ipath_write_kreg(dd, dd->ipath_kregs->kr_sendctrl, |
| 1196 | dd->ipath_sendctrl); |
John Gregor | e342c11 | 2007-09-05 01:57:14 -0700 | [diff] [blame] | 1197 | ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch); |
| 1198 | spin_unlock_irqrestore(&dd->ipath_sendctrl_lock, flags); |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1199 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1200 | handle_layer_pioavail(dd); |
| 1201 | } |
| 1202 | |
Bryan O'Sullivan | 108ecf0 | 2006-03-29 15:23:29 -0800 | [diff] [blame] | 1203 | ret = IRQ_HANDLED; |
| 1204 | |
| 1205 | bail: |
| 1206 | return ret; |
| 1207 | } |