Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. |
Tom Duffy | cd4e8fb | 2005-06-27 14:36:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 4 | * Copyright (c) 2005 Cisco Systems, Inc. All rights reserved. |
Roland Dreier | 2a1d9b7 | 2005-08-10 23:03:10 -0700 | [diff] [blame] | 5 | * Copyright (c) 2005 Mellanox Technologies. All rights reserved. |
| 6 | * Copyright (c) 2004 Voltaire, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * This software is available to you under a choice of one of two |
| 9 | * licenses. You may choose to be licensed under the terms of the GNU |
| 10 | * General Public License (GPL) Version 2, available from the file |
| 11 | * COPYING in the main directory of this source tree, or the |
| 12 | * OpenIB.org BSD license below: |
| 13 | * |
| 14 | * Redistribution and use in source and binary forms, with or |
| 15 | * without modification, are permitted provided that the following |
| 16 | * conditions are met: |
| 17 | * |
| 18 | * - Redistributions of source code must retain the above |
| 19 | * copyright notice, this list of conditions and the following |
| 20 | * disclaimer. |
| 21 | * |
| 22 | * - Redistributions in binary form must reproduce the above |
| 23 | * copyright notice, this list of conditions and the following |
| 24 | * disclaimer in the documentation and/or other materials |
| 25 | * provided with the distribution. |
| 26 | * |
| 27 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 28 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 29 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 30 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 31 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 32 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 33 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 34 | * SOFTWARE. |
| 35 | * |
| 36 | * $Id: mthca_cq.c 1369 2004-12-20 16:17:07Z roland $ |
| 37 | */ |
| 38 | |
| 39 | #include <linux/init.h> |
| 40 | #include <linux/hardirq.h> |
| 41 | |
Roland Dreier | a4d61e8 | 2005-08-25 13:40:04 -0700 | [diff] [blame] | 42 | #include <rdma/ib_pack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | #include "mthca_dev.h" |
| 45 | #include "mthca_cmd.h" |
| 46 | #include "mthca_memfree.h" |
| 47 | |
| 48 | enum { |
| 49 | MTHCA_MAX_DIRECT_CQ_SIZE = 4 * PAGE_SIZE |
| 50 | }; |
| 51 | |
| 52 | enum { |
| 53 | MTHCA_CQ_ENTRY_SIZE = 0x20 |
| 54 | }; |
| 55 | |
| 56 | /* |
| 57 | * Must be packed because start is 64 bits but only aligned to 32 bits. |
| 58 | */ |
| 59 | struct mthca_cq_context { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 60 | __be32 flags; |
| 61 | __be64 start; |
| 62 | __be32 logsize_usrpage; |
| 63 | __be32 error_eqn; /* Tavor only */ |
| 64 | __be32 comp_eqn; |
| 65 | __be32 pd; |
| 66 | __be32 lkey; |
| 67 | __be32 last_notified_index; |
| 68 | __be32 solicit_producer_index; |
| 69 | __be32 consumer_index; |
| 70 | __be32 producer_index; |
| 71 | __be32 cqn; |
| 72 | __be32 ci_db; /* Arbel only */ |
| 73 | __be32 state_db; /* Arbel only */ |
| 74 | u32 reserved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } __attribute__((packed)); |
| 76 | |
| 77 | #define MTHCA_CQ_STATUS_OK ( 0 << 28) |
| 78 | #define MTHCA_CQ_STATUS_OVERFLOW ( 9 << 28) |
| 79 | #define MTHCA_CQ_STATUS_WRITE_FAIL (10 << 28) |
| 80 | #define MTHCA_CQ_FLAG_TR ( 1 << 18) |
| 81 | #define MTHCA_CQ_FLAG_OI ( 1 << 17) |
| 82 | #define MTHCA_CQ_STATE_DISARMED ( 0 << 8) |
| 83 | #define MTHCA_CQ_STATE_ARMED ( 1 << 8) |
| 84 | #define MTHCA_CQ_STATE_ARMED_SOL ( 4 << 8) |
| 85 | #define MTHCA_EQ_STATE_FIRED (10 << 8) |
| 86 | |
| 87 | enum { |
| 88 | MTHCA_ERROR_CQE_OPCODE_MASK = 0xfe |
| 89 | }; |
| 90 | |
| 91 | enum { |
| 92 | SYNDROME_LOCAL_LENGTH_ERR = 0x01, |
| 93 | SYNDROME_LOCAL_QP_OP_ERR = 0x02, |
| 94 | SYNDROME_LOCAL_EEC_OP_ERR = 0x03, |
| 95 | SYNDROME_LOCAL_PROT_ERR = 0x04, |
| 96 | SYNDROME_WR_FLUSH_ERR = 0x05, |
| 97 | SYNDROME_MW_BIND_ERR = 0x06, |
| 98 | SYNDROME_BAD_RESP_ERR = 0x10, |
| 99 | SYNDROME_LOCAL_ACCESS_ERR = 0x11, |
| 100 | SYNDROME_REMOTE_INVAL_REQ_ERR = 0x12, |
| 101 | SYNDROME_REMOTE_ACCESS_ERR = 0x13, |
| 102 | SYNDROME_REMOTE_OP_ERR = 0x14, |
| 103 | SYNDROME_RETRY_EXC_ERR = 0x15, |
| 104 | SYNDROME_RNR_RETRY_EXC_ERR = 0x16, |
| 105 | SYNDROME_LOCAL_RDD_VIOL_ERR = 0x20, |
| 106 | SYNDROME_REMOTE_INVAL_RD_REQ_ERR = 0x21, |
| 107 | SYNDROME_REMOTE_ABORTED_ERR = 0x22, |
| 108 | SYNDROME_INVAL_EECN_ERR = 0x23, |
| 109 | SYNDROME_INVAL_EEC_STATE_ERR = 0x24 |
| 110 | }; |
| 111 | |
| 112 | struct mthca_cqe { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 113 | __be32 my_qpn; |
| 114 | __be32 my_ee; |
| 115 | __be32 rqpn; |
| 116 | __be16 sl_g_mlpath; |
| 117 | __be16 rlid; |
| 118 | __be32 imm_etype_pkey_eec; |
| 119 | __be32 byte_cnt; |
| 120 | __be32 wqe; |
| 121 | u8 opcode; |
| 122 | u8 is_send; |
| 123 | u8 reserved; |
| 124 | u8 owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | struct mthca_err_cqe { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 128 | __be32 my_qpn; |
| 129 | u32 reserved1[3]; |
| 130 | u8 syndrome; |
Michael S. Tsirkin | 0f8e8f9 | 2006-01-06 13:13:32 -0800 | [diff] [blame] | 131 | u8 vendor_err; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 132 | __be16 db_cnt; |
Michael S. Tsirkin | 0f8e8f9 | 2006-01-06 13:13:32 -0800 | [diff] [blame] | 133 | u32 reserved2; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 134 | __be32 wqe; |
| 135 | u8 opcode; |
Michael S. Tsirkin | 0f8e8f9 | 2006-01-06 13:13:32 -0800 | [diff] [blame] | 136 | u8 reserved3[2]; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 137 | u8 owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | }; |
| 139 | |
| 140 | #define MTHCA_CQ_ENTRY_OWNER_SW (0 << 7) |
| 141 | #define MTHCA_CQ_ENTRY_OWNER_HW (1 << 7) |
| 142 | |
| 143 | #define MTHCA_TAVOR_CQ_DB_INC_CI (1 << 24) |
| 144 | #define MTHCA_TAVOR_CQ_DB_REQ_NOT (2 << 24) |
| 145 | #define MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL (3 << 24) |
| 146 | #define MTHCA_TAVOR_CQ_DB_SET_CI (4 << 24) |
| 147 | #define MTHCA_TAVOR_CQ_DB_REQ_NOT_MULT (5 << 24) |
| 148 | |
| 149 | #define MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL (1 << 24) |
| 150 | #define MTHCA_ARBEL_CQ_DB_REQ_NOT (2 << 24) |
| 151 | #define MTHCA_ARBEL_CQ_DB_REQ_NOT_MULT (3 << 24) |
| 152 | |
| 153 | static inline struct mthca_cqe *get_cqe(struct mthca_cq *cq, int entry) |
| 154 | { |
| 155 | if (cq->is_direct) |
| 156 | return cq->queue.direct.buf + (entry * MTHCA_CQ_ENTRY_SIZE); |
| 157 | else |
| 158 | return cq->queue.page_list[entry * MTHCA_CQ_ENTRY_SIZE / PAGE_SIZE].buf |
| 159 | + (entry * MTHCA_CQ_ENTRY_SIZE) % PAGE_SIZE; |
| 160 | } |
| 161 | |
| 162 | static inline struct mthca_cqe *cqe_sw(struct mthca_cq *cq, int i) |
| 163 | { |
| 164 | struct mthca_cqe *cqe = get_cqe(cq, i); |
| 165 | return MTHCA_CQ_ENTRY_OWNER_HW & cqe->owner ? NULL : cqe; |
| 166 | } |
| 167 | |
| 168 | static inline struct mthca_cqe *next_cqe_sw(struct mthca_cq *cq) |
| 169 | { |
| 170 | return cqe_sw(cq, cq->cons_index & cq->ibcq.cqe); |
| 171 | } |
| 172 | |
| 173 | static inline void set_cqe_hw(struct mthca_cqe *cqe) |
| 174 | { |
| 175 | cqe->owner = MTHCA_CQ_ENTRY_OWNER_HW; |
| 176 | } |
| 177 | |
Roland Dreier | bb2af78 | 2005-06-27 14:36:39 -0700 | [diff] [blame] | 178 | static void dump_cqe(struct mthca_dev *dev, void *cqe_ptr) |
| 179 | { |
| 180 | __be32 *cqe = cqe_ptr; |
| 181 | |
| 182 | (void) cqe; /* avoid warning if mthca_dbg compiled away... */ |
| 183 | mthca_dbg(dev, "CQE contents %08x %08x %08x %08x %08x %08x %08x %08x\n", |
| 184 | be32_to_cpu(cqe[0]), be32_to_cpu(cqe[1]), be32_to_cpu(cqe[2]), |
| 185 | be32_to_cpu(cqe[3]), be32_to_cpu(cqe[4]), be32_to_cpu(cqe[5]), |
| 186 | be32_to_cpu(cqe[6]), be32_to_cpu(cqe[7])); |
| 187 | } |
| 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | /* |
| 190 | * incr is ignored in native Arbel (mem-free) mode, so cq->cons_index |
| 191 | * should be correct before calling update_cons_index(). |
| 192 | */ |
| 193 | static inline void update_cons_index(struct mthca_dev *dev, struct mthca_cq *cq, |
| 194 | int incr) |
| 195 | { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 196 | __be32 doorbell[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 198 | if (mthca_is_memfree(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | *cq->set_ci_db = cpu_to_be32(cq->cons_index); |
| 200 | wmb(); |
| 201 | } else { |
| 202 | doorbell[0] = cpu_to_be32(MTHCA_TAVOR_CQ_DB_INC_CI | cq->cqn); |
| 203 | doorbell[1] = cpu_to_be32(incr - 1); |
| 204 | |
| 205 | mthca_write64(doorbell, |
| 206 | dev->kar + MTHCA_CQ_DOORBELL, |
| 207 | MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); |
| 208 | } |
| 209 | } |
| 210 | |
Michael S. Tsirkin | affcd50 | 2005-10-29 07:39:42 -0700 | [diff] [blame] | 211 | void mthca_cq_completion(struct mthca_dev *dev, u32 cqn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
| 213 | struct mthca_cq *cq; |
| 214 | |
| 215 | cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); |
| 216 | |
| 217 | if (!cq) { |
| 218 | mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn); |
| 219 | return; |
| 220 | } |
| 221 | |
| 222 | ++cq->arm_sn; |
| 223 | |
| 224 | cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context); |
| 225 | } |
| 226 | |
Michael S. Tsirkin | affcd50 | 2005-10-29 07:39:42 -0700 | [diff] [blame] | 227 | void mthca_cq_event(struct mthca_dev *dev, u32 cqn, |
| 228 | enum ib_event_type event_type) |
| 229 | { |
| 230 | struct mthca_cq *cq; |
| 231 | struct ib_event event; |
| 232 | |
| 233 | spin_lock(&dev->cq_table.lock); |
| 234 | |
| 235 | cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); |
| 236 | |
| 237 | if (cq) |
| 238 | atomic_inc(&cq->refcount); |
| 239 | spin_unlock(&dev->cq_table.lock); |
| 240 | |
| 241 | if (!cq) { |
| 242 | mthca_warn(dev, "Async event for bogus CQ %08x\n", cqn); |
| 243 | return; |
| 244 | } |
| 245 | |
| 246 | event.device = &dev->ib_dev; |
| 247 | event.event = event_type; |
| 248 | event.element.cq = &cq->ibcq; |
| 249 | if (cq->ibcq.event_handler) |
| 250 | cq->ibcq.event_handler(&event, cq->ibcq.cq_context); |
| 251 | |
| 252 | if (atomic_dec_and_test(&cq->refcount)) |
| 253 | wake_up(&cq->wait); |
| 254 | } |
| 255 | |
Jack Morgenstein | 576d2e4 | 2005-12-15 14:20:23 -0800 | [diff] [blame] | 256 | static inline int is_recv_cqe(struct mthca_cqe *cqe) |
| 257 | { |
| 258 | if ((cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) == |
| 259 | MTHCA_ERROR_CQE_OPCODE_MASK) |
| 260 | return !(cqe->opcode & 0x01); |
| 261 | else |
| 262 | return !(cqe->is_send & 0x80); |
| 263 | } |
| 264 | |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 265 | void mthca_cq_clean(struct mthca_dev *dev, u32 cqn, u32 qpn, |
| 266 | struct mthca_srq *srq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
| 268 | struct mthca_cq *cq; |
| 269 | struct mthca_cqe *cqe; |
Roland Dreier | 64044bc | 2005-11-09 12:23:17 -0800 | [diff] [blame] | 270 | u32 prod_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | int nfreed = 0; |
| 272 | |
| 273 | spin_lock_irq(&dev->cq_table.lock); |
| 274 | cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); |
| 275 | if (cq) |
| 276 | atomic_inc(&cq->refcount); |
| 277 | spin_unlock_irq(&dev->cq_table.lock); |
| 278 | |
| 279 | if (!cq) |
| 280 | return; |
| 281 | |
| 282 | spin_lock_irq(&cq->lock); |
| 283 | |
| 284 | /* |
| 285 | * First we need to find the current producer index, so we |
| 286 | * know where to start cleaning from. It doesn't matter if HW |
| 287 | * adds new entries after this loop -- the QP we're worried |
| 288 | * about is already in RESET, so the new entries won't come |
| 289 | * from our QP and therefore don't need to be checked. |
| 290 | */ |
| 291 | for (prod_index = cq->cons_index; |
| 292 | cqe_sw(cq, prod_index & cq->ibcq.cqe); |
| 293 | ++prod_index) |
| 294 | if (prod_index == cq->cons_index + cq->ibcq.cqe) |
| 295 | break; |
| 296 | |
| 297 | if (0) |
| 298 | mthca_dbg(dev, "Cleaning QPN %06x from CQN %06x; ci %d, pi %d\n", |
| 299 | qpn, cqn, cq->cons_index, prod_index); |
| 300 | |
| 301 | /* |
| 302 | * Now sweep backwards through the CQ, removing CQ entries |
| 303 | * that match our QP by copying older entries on top of them. |
| 304 | */ |
Roland Dreier | 64044bc | 2005-11-09 12:23:17 -0800 | [diff] [blame] | 305 | while ((int) --prod_index - (int) cq->cons_index >= 0) { |
| 306 | cqe = get_cqe(cq, prod_index & cq->ibcq.cqe); |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 307 | if (cqe->my_qpn == cpu_to_be32(qpn)) { |
Jack Morgenstein | 576d2e4 | 2005-12-15 14:20:23 -0800 | [diff] [blame] | 308 | if (srq && is_recv_cqe(cqe)) |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 309 | mthca_free_srq_wqe(srq, be32_to_cpu(cqe->wqe)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | ++nfreed; |
Roland Dreier | 64044bc | 2005-11-09 12:23:17 -0800 | [diff] [blame] | 311 | } else if (nfreed) |
| 312 | memcpy(get_cqe(cq, (prod_index + nfreed) & cq->ibcq.cqe), |
| 313 | cqe, MTHCA_CQ_ENTRY_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | if (nfreed) { |
| 317 | wmb(); |
| 318 | cq->cons_index += nfreed; |
| 319 | update_cons_index(dev, cq, nfreed); |
| 320 | } |
| 321 | |
| 322 | spin_unlock_irq(&cq->lock); |
| 323 | if (atomic_dec_and_test(&cq->refcount)) |
| 324 | wake_up(&cq->wait); |
| 325 | } |
| 326 | |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame^] | 327 | static void handle_error_cqe(struct mthca_dev *dev, struct mthca_cq *cq, |
| 328 | struct mthca_qp *qp, int wqe_index, int is_send, |
| 329 | struct mthca_err_cqe *cqe, |
| 330 | struct ib_wc *entry, int *free_cqe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | int dbd; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 333 | __be32 new_wqe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Roland Dreier | bb2af78 | 2005-06-27 14:36:39 -0700 | [diff] [blame] | 335 | if (cqe->syndrome == SYNDROME_LOCAL_QP_OP_ERR) { |
| 336 | mthca_dbg(dev, "local QP operation err " |
| 337 | "(QPN %06x, WQE @ %08x, CQN %06x, index %d)\n", |
| 338 | be32_to_cpu(cqe->my_qpn), be32_to_cpu(cqe->wqe), |
| 339 | cq->cqn, cq->cons_index); |
| 340 | dump_cqe(dev, cqe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
Michael S. Tsirkin | 0f8e8f9 | 2006-01-06 13:13:32 -0800 | [diff] [blame] | 344 | * For completions in error, only work request ID, status, vendor error |
| 345 | * (and freed resource count for RD) have to be set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | */ |
| 347 | switch (cqe->syndrome) { |
| 348 | case SYNDROME_LOCAL_LENGTH_ERR: |
| 349 | entry->status = IB_WC_LOC_LEN_ERR; |
| 350 | break; |
| 351 | case SYNDROME_LOCAL_QP_OP_ERR: |
| 352 | entry->status = IB_WC_LOC_QP_OP_ERR; |
| 353 | break; |
| 354 | case SYNDROME_LOCAL_EEC_OP_ERR: |
| 355 | entry->status = IB_WC_LOC_EEC_OP_ERR; |
| 356 | break; |
| 357 | case SYNDROME_LOCAL_PROT_ERR: |
| 358 | entry->status = IB_WC_LOC_PROT_ERR; |
| 359 | break; |
| 360 | case SYNDROME_WR_FLUSH_ERR: |
| 361 | entry->status = IB_WC_WR_FLUSH_ERR; |
| 362 | break; |
| 363 | case SYNDROME_MW_BIND_ERR: |
| 364 | entry->status = IB_WC_MW_BIND_ERR; |
| 365 | break; |
| 366 | case SYNDROME_BAD_RESP_ERR: |
| 367 | entry->status = IB_WC_BAD_RESP_ERR; |
| 368 | break; |
| 369 | case SYNDROME_LOCAL_ACCESS_ERR: |
| 370 | entry->status = IB_WC_LOC_ACCESS_ERR; |
| 371 | break; |
| 372 | case SYNDROME_REMOTE_INVAL_REQ_ERR: |
| 373 | entry->status = IB_WC_REM_INV_REQ_ERR; |
| 374 | break; |
| 375 | case SYNDROME_REMOTE_ACCESS_ERR: |
| 376 | entry->status = IB_WC_REM_ACCESS_ERR; |
| 377 | break; |
| 378 | case SYNDROME_REMOTE_OP_ERR: |
| 379 | entry->status = IB_WC_REM_OP_ERR; |
| 380 | break; |
| 381 | case SYNDROME_RETRY_EXC_ERR: |
| 382 | entry->status = IB_WC_RETRY_EXC_ERR; |
| 383 | break; |
| 384 | case SYNDROME_RNR_RETRY_EXC_ERR: |
| 385 | entry->status = IB_WC_RNR_RETRY_EXC_ERR; |
| 386 | break; |
| 387 | case SYNDROME_LOCAL_RDD_VIOL_ERR: |
| 388 | entry->status = IB_WC_LOC_RDD_VIOL_ERR; |
| 389 | break; |
| 390 | case SYNDROME_REMOTE_INVAL_RD_REQ_ERR: |
| 391 | entry->status = IB_WC_REM_INV_RD_REQ_ERR; |
| 392 | break; |
| 393 | case SYNDROME_REMOTE_ABORTED_ERR: |
| 394 | entry->status = IB_WC_REM_ABORT_ERR; |
| 395 | break; |
| 396 | case SYNDROME_INVAL_EECN_ERR: |
| 397 | entry->status = IB_WC_INV_EECN_ERR; |
| 398 | break; |
| 399 | case SYNDROME_INVAL_EEC_STATE_ERR: |
| 400 | entry->status = IB_WC_INV_EEC_STATE_ERR; |
| 401 | break; |
| 402 | default: |
| 403 | entry->status = IB_WC_GENERAL_ERR; |
| 404 | break; |
| 405 | } |
| 406 | |
Michael S. Tsirkin | 0f8e8f9 | 2006-01-06 13:13:32 -0800 | [diff] [blame] | 407 | entry->vendor_err = cqe->vendor_err; |
| 408 | |
Roland Dreier | 288bdeb | 2005-08-19 09:19:05 -0700 | [diff] [blame] | 409 | /* |
| 410 | * Mem-free HCAs always generate one CQE per WQE, even in the |
| 411 | * error case, so we don't have to check the doorbell count, etc. |
| 412 | */ |
| 413 | if (mthca_is_memfree(dev)) |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame^] | 414 | return; |
Roland Dreier | 288bdeb | 2005-08-19 09:19:05 -0700 | [diff] [blame] | 415 | |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame^] | 416 | mthca_free_err_wqe(dev, qp, is_send, wqe_index, &dbd, &new_wqe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | /* |
| 419 | * If we're at the end of the WQE chain, or we've used up our |
| 420 | * doorbell count, free the CQE. Otherwise just update it for |
| 421 | * the next poll operation. |
| 422 | */ |
Roland Dreier | 288bdeb | 2005-08-19 09:19:05 -0700 | [diff] [blame] | 423 | if (!(new_wqe & cpu_to_be32(0x3f)) || (!cqe->db_cnt && dbd)) |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame^] | 424 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
| 426 | cqe->db_cnt = cpu_to_be16(be16_to_cpu(cqe->db_cnt) - dbd); |
| 427 | cqe->wqe = new_wqe; |
| 428 | cqe->syndrome = SYNDROME_WR_FLUSH_ERR; |
| 429 | |
| 430 | *free_cqe = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | static inline int mthca_poll_one(struct mthca_dev *dev, |
| 434 | struct mthca_cq *cq, |
| 435 | struct mthca_qp **cur_qp, |
| 436 | int *freed, |
| 437 | struct ib_wc *entry) |
| 438 | { |
| 439 | struct mthca_wq *wq; |
| 440 | struct mthca_cqe *cqe; |
| 441 | int wqe_index; |
| 442 | int is_error; |
| 443 | int is_send; |
| 444 | int free_cqe = 1; |
| 445 | int err = 0; |
| 446 | |
| 447 | cqe = next_cqe_sw(cq); |
| 448 | if (!cqe) |
| 449 | return -EAGAIN; |
| 450 | |
| 451 | /* |
| 452 | * Make sure we read CQ entry contents after we've checked the |
| 453 | * ownership bit. |
| 454 | */ |
| 455 | rmb(); |
| 456 | |
| 457 | if (0) { |
| 458 | mthca_dbg(dev, "%x/%d: CQE -> QPN %06x, WQE @ %08x\n", |
| 459 | cq->cqn, cq->cons_index, be32_to_cpu(cqe->my_qpn), |
| 460 | be32_to_cpu(cqe->wqe)); |
Roland Dreier | bb2af78 | 2005-06-27 14:36:39 -0700 | [diff] [blame] | 461 | dump_cqe(dev, cqe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | is_error = (cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) == |
| 465 | MTHCA_ERROR_CQE_OPCODE_MASK; |
| 466 | is_send = is_error ? cqe->opcode & 0x01 : cqe->is_send & 0x80; |
| 467 | |
| 468 | if (!*cur_qp || be32_to_cpu(cqe->my_qpn) != (*cur_qp)->qpn) { |
| 469 | /* |
| 470 | * We do not have to take the QP table lock here, |
| 471 | * because CQs will be locked while QPs are removed |
| 472 | * from the table. |
| 473 | */ |
| 474 | *cur_qp = mthca_array_get(&dev->qp_table.qp, |
| 475 | be32_to_cpu(cqe->my_qpn) & |
| 476 | (dev->limits.num_qps - 1)); |
| 477 | if (!*cur_qp) { |
| 478 | mthca_warn(dev, "CQ entry for unknown QP %06x\n", |
| 479 | be32_to_cpu(cqe->my_qpn) & 0xffffff); |
| 480 | err = -EINVAL; |
| 481 | goto out; |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | entry->qp_num = (*cur_qp)->qpn; |
| 486 | |
| 487 | if (is_send) { |
| 488 | wq = &(*cur_qp)->sq; |
| 489 | wqe_index = ((be32_to_cpu(cqe->wqe) - (*cur_qp)->send_wqe_offset) |
| 490 | >> wq->wqe_shift); |
| 491 | entry->wr_id = (*cur_qp)->wrid[wqe_index + |
| 492 | (*cur_qp)->rq.max]; |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 493 | } else if ((*cur_qp)->ibqp.srq) { |
| 494 | struct mthca_srq *srq = to_msrq((*cur_qp)->ibqp.srq); |
| 495 | u32 wqe = be32_to_cpu(cqe->wqe); |
| 496 | wq = NULL; |
| 497 | wqe_index = wqe >> srq->wqe_shift; |
| 498 | entry->wr_id = srq->wrid[wqe_index]; |
| 499 | mthca_free_srq_wqe(srq, wqe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } else { |
| 501 | wq = &(*cur_qp)->rq; |
| 502 | wqe_index = be32_to_cpu(cqe->wqe) >> wq->wqe_shift; |
| 503 | entry->wr_id = (*cur_qp)->wrid[wqe_index]; |
| 504 | } |
| 505 | |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 506 | if (wq) { |
| 507 | if (wq->last_comp < wqe_index) |
| 508 | wq->tail += wqe_index - wq->last_comp; |
| 509 | else |
| 510 | wq->tail += wqe_index + wq->max - wq->last_comp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Roland Dreier | ec34a92 | 2005-08-19 10:59:31 -0700 | [diff] [blame] | 512 | wq->last_comp = wqe_index; |
| 513 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
| 515 | if (is_error) { |
Roland Dreier | d9b98b0 | 2006-01-31 20:45:51 -0800 | [diff] [blame^] | 516 | handle_error_cqe(dev, cq, *cur_qp, wqe_index, is_send, |
| 517 | (struct mthca_err_cqe *) cqe, |
| 518 | entry, &free_cqe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | goto out; |
| 520 | } |
| 521 | |
| 522 | if (is_send) { |
Michael S. Tsirkin | 2a4443a | 2005-04-16 15:26:25 -0700 | [diff] [blame] | 523 | entry->wc_flags = 0; |
| 524 | switch (cqe->opcode) { |
| 525 | case MTHCA_OPCODE_RDMA_WRITE: |
| 526 | entry->opcode = IB_WC_RDMA_WRITE; |
| 527 | break; |
| 528 | case MTHCA_OPCODE_RDMA_WRITE_IMM: |
| 529 | entry->opcode = IB_WC_RDMA_WRITE; |
| 530 | entry->wc_flags |= IB_WC_WITH_IMM; |
| 531 | break; |
| 532 | case MTHCA_OPCODE_SEND: |
| 533 | entry->opcode = IB_WC_SEND; |
| 534 | break; |
| 535 | case MTHCA_OPCODE_SEND_IMM: |
| 536 | entry->opcode = IB_WC_SEND; |
| 537 | entry->wc_flags |= IB_WC_WITH_IMM; |
| 538 | break; |
| 539 | case MTHCA_OPCODE_RDMA_READ: |
| 540 | entry->opcode = IB_WC_RDMA_READ; |
| 541 | entry->byte_len = be32_to_cpu(cqe->byte_cnt); |
| 542 | break; |
| 543 | case MTHCA_OPCODE_ATOMIC_CS: |
| 544 | entry->opcode = IB_WC_COMP_SWAP; |
| 545 | entry->byte_len = be32_to_cpu(cqe->byte_cnt); |
| 546 | break; |
| 547 | case MTHCA_OPCODE_ATOMIC_FA: |
| 548 | entry->opcode = IB_WC_FETCH_ADD; |
| 549 | entry->byte_len = be32_to_cpu(cqe->byte_cnt); |
| 550 | break; |
| 551 | case MTHCA_OPCODE_BIND_MW: |
| 552 | entry->opcode = IB_WC_BIND_MW; |
| 553 | break; |
| 554 | default: |
| 555 | entry->opcode = MTHCA_OPCODE_INVALID; |
| 556 | break; |
| 557 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } else { |
| 559 | entry->byte_len = be32_to_cpu(cqe->byte_cnt); |
| 560 | switch (cqe->opcode & 0x1f) { |
| 561 | case IB_OPCODE_SEND_LAST_WITH_IMMEDIATE: |
| 562 | case IB_OPCODE_SEND_ONLY_WITH_IMMEDIATE: |
| 563 | entry->wc_flags = IB_WC_WITH_IMM; |
| 564 | entry->imm_data = cqe->imm_etype_pkey_eec; |
| 565 | entry->opcode = IB_WC_RECV; |
| 566 | break; |
| 567 | case IB_OPCODE_RDMA_WRITE_LAST_WITH_IMMEDIATE: |
| 568 | case IB_OPCODE_RDMA_WRITE_ONLY_WITH_IMMEDIATE: |
| 569 | entry->wc_flags = IB_WC_WITH_IMM; |
| 570 | entry->imm_data = cqe->imm_etype_pkey_eec; |
| 571 | entry->opcode = IB_WC_RECV_RDMA_WITH_IMM; |
| 572 | break; |
| 573 | default: |
| 574 | entry->wc_flags = 0; |
| 575 | entry->opcode = IB_WC_RECV; |
| 576 | break; |
| 577 | } |
| 578 | entry->slid = be16_to_cpu(cqe->rlid); |
| 579 | entry->sl = be16_to_cpu(cqe->sl_g_mlpath) >> 12; |
| 580 | entry->src_qp = be32_to_cpu(cqe->rqpn) & 0xffffff; |
| 581 | entry->dlid_path_bits = be16_to_cpu(cqe->sl_g_mlpath) & 0x7f; |
| 582 | entry->pkey_index = be32_to_cpu(cqe->imm_etype_pkey_eec) >> 16; |
| 583 | entry->wc_flags |= be16_to_cpu(cqe->sl_g_mlpath) & 0x80 ? |
| 584 | IB_WC_GRH : 0; |
| 585 | } |
| 586 | |
| 587 | entry->status = IB_WC_SUCCESS; |
| 588 | |
| 589 | out: |
| 590 | if (likely(free_cqe)) { |
| 591 | set_cqe_hw(cqe); |
| 592 | ++(*freed); |
| 593 | ++cq->cons_index; |
| 594 | } |
| 595 | |
| 596 | return err; |
| 597 | } |
| 598 | |
| 599 | int mthca_poll_cq(struct ib_cq *ibcq, int num_entries, |
| 600 | struct ib_wc *entry) |
| 601 | { |
| 602 | struct mthca_dev *dev = to_mdev(ibcq->device); |
| 603 | struct mthca_cq *cq = to_mcq(ibcq); |
| 604 | struct mthca_qp *qp = NULL; |
| 605 | unsigned long flags; |
| 606 | int err = 0; |
| 607 | int freed = 0; |
| 608 | int npolled; |
| 609 | |
| 610 | spin_lock_irqsave(&cq->lock, flags); |
| 611 | |
| 612 | for (npolled = 0; npolled < num_entries; ++npolled) { |
| 613 | err = mthca_poll_one(dev, cq, &qp, |
| 614 | &freed, entry + npolled); |
| 615 | if (err) |
| 616 | break; |
| 617 | } |
| 618 | |
| 619 | if (freed) { |
| 620 | wmb(); |
| 621 | update_cons_index(dev, cq, freed); |
| 622 | } |
| 623 | |
| 624 | spin_unlock_irqrestore(&cq->lock, flags); |
| 625 | |
| 626 | return err == 0 || err == -EAGAIN ? npolled : err; |
| 627 | } |
| 628 | |
| 629 | int mthca_tavor_arm_cq(struct ib_cq *cq, enum ib_cq_notify notify) |
| 630 | { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 631 | __be32 doorbell[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
| 633 | doorbell[0] = cpu_to_be32((notify == IB_CQ_SOLICITED ? |
| 634 | MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL : |
| 635 | MTHCA_TAVOR_CQ_DB_REQ_NOT) | |
| 636 | to_mcq(cq)->cqn); |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 637 | doorbell[1] = (__force __be32) 0xffffffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
| 639 | mthca_write64(doorbell, |
| 640 | to_mdev(cq->device)->kar + MTHCA_CQ_DOORBELL, |
| 641 | MTHCA_GET_DOORBELL_LOCK(&to_mdev(cq->device)->doorbell_lock)); |
| 642 | |
| 643 | return 0; |
| 644 | } |
| 645 | |
| 646 | int mthca_arbel_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify notify) |
| 647 | { |
| 648 | struct mthca_cq *cq = to_mcq(ibcq); |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 649 | __be32 doorbell[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | u32 sn; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 651 | __be32 ci; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
| 653 | sn = cq->arm_sn & 3; |
| 654 | ci = cpu_to_be32(cq->cons_index); |
| 655 | |
| 656 | doorbell[0] = ci; |
| 657 | doorbell[1] = cpu_to_be32((cq->cqn << 8) | (2 << 5) | (sn << 3) | |
| 658 | (notify == IB_CQ_SOLICITED ? 1 : 2)); |
| 659 | |
| 660 | mthca_write_db_rec(doorbell, cq->arm_db); |
| 661 | |
| 662 | /* |
| 663 | * Make sure that the doorbell record in host memory is |
| 664 | * written before ringing the doorbell via PCI MMIO. |
| 665 | */ |
| 666 | wmb(); |
| 667 | |
| 668 | doorbell[0] = cpu_to_be32((sn << 28) | |
| 669 | (notify == IB_CQ_SOLICITED ? |
| 670 | MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL : |
| 671 | MTHCA_ARBEL_CQ_DB_REQ_NOT) | |
| 672 | cq->cqn); |
| 673 | doorbell[1] = ci; |
| 674 | |
| 675 | mthca_write64(doorbell, |
| 676 | to_mdev(ibcq->device)->kar + MTHCA_CQ_DOORBELL, |
| 677 | MTHCA_GET_DOORBELL_LOCK(&to_mdev(ibcq->device)->doorbell_lock)); |
| 678 | |
| 679 | return 0; |
| 680 | } |
| 681 | |
| 682 | static void mthca_free_cq_buf(struct mthca_dev *dev, struct mthca_cq *cq) |
| 683 | { |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 684 | mthca_buf_free(dev, (cq->ibcq.cqe + 1) * MTHCA_CQ_ENTRY_SIZE, |
| 685 | &cq->queue, cq->is_direct, &cq->mr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | int mthca_init_cq(struct mthca_dev *dev, int nent, |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 689 | struct mthca_ucontext *ctx, u32 pdn, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | struct mthca_cq *cq) |
| 691 | { |
| 692 | int size = nent * MTHCA_CQ_ENTRY_SIZE; |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 693 | struct mthca_mailbox *mailbox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | struct mthca_cq_context *cq_context; |
| 695 | int err = -ENOMEM; |
| 696 | u8 status; |
| 697 | int i; |
| 698 | |
| 699 | might_sleep(); |
| 700 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 701 | cq->ibcq.cqe = nent - 1; |
| 702 | cq->is_kernel = !ctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
| 704 | cq->cqn = mthca_alloc(&dev->cq_table.alloc); |
| 705 | if (cq->cqn == -1) |
| 706 | return -ENOMEM; |
| 707 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 708 | if (mthca_is_memfree(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | err = mthca_table_get(dev, dev->cq_table.table, cq->cqn); |
| 710 | if (err) |
| 711 | goto err_out; |
| 712 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 713 | if (cq->is_kernel) { |
| 714 | cq->arm_sn = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 716 | err = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 718 | cq->set_ci_db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, |
| 719 | cq->cqn, &cq->set_ci_db); |
| 720 | if (cq->set_ci_db_index < 0) |
| 721 | goto err_out_icm; |
| 722 | |
| 723 | cq->arm_db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_CQ_ARM, |
| 724 | cq->cqn, &cq->arm_db); |
| 725 | if (cq->arm_db_index < 0) |
| 726 | goto err_out_ci; |
| 727 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | } |
| 729 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 730 | mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); |
| 731 | if (IS_ERR(mailbox)) |
| 732 | goto err_out_arm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 734 | cq_context = mailbox->buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 736 | if (cq->is_kernel) { |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 737 | err = mthca_buf_alloc(dev, size, MTHCA_MAX_DIRECT_CQ_SIZE, |
| 738 | &cq->queue, &cq->is_direct, |
| 739 | &dev->driver_pd, 1, &cq->mr); |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 740 | if (err) |
| 741 | goto err_out_mailbox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 743 | for (i = 0; i < nent; ++i) |
| 744 | set_cqe_hw(get_cqe(cq, i)); |
| 745 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
| 747 | spin_lock_init(&cq->lock); |
| 748 | atomic_set(&cq->refcount, 1); |
| 749 | init_waitqueue_head(&cq->wait); |
| 750 | |
| 751 | memset(cq_context, 0, sizeof *cq_context); |
| 752 | cq_context->flags = cpu_to_be32(MTHCA_CQ_STATUS_OK | |
| 753 | MTHCA_CQ_STATE_DISARMED | |
| 754 | MTHCA_CQ_FLAG_TR); |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 755 | cq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24); |
| 756 | if (ctx) |
| 757 | cq_context->logsize_usrpage |= cpu_to_be32(ctx->uar.index); |
| 758 | else |
| 759 | cq_context->logsize_usrpage |= cpu_to_be32(dev->driver_uar.index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | cq_context->error_eqn = cpu_to_be32(dev->eq_table.eq[MTHCA_EQ_ASYNC].eqn); |
| 761 | cq_context->comp_eqn = cpu_to_be32(dev->eq_table.eq[MTHCA_EQ_COMP].eqn); |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 762 | cq_context->pd = cpu_to_be32(pdn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | cq_context->lkey = cpu_to_be32(cq->mr.ibmr.lkey); |
| 764 | cq_context->cqn = cpu_to_be32(cq->cqn); |
| 765 | |
Roland Dreier | d10ddbf | 2005-04-16 15:26:32 -0700 | [diff] [blame] | 766 | if (mthca_is_memfree(dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | cq_context->ci_db = cpu_to_be32(cq->set_ci_db_index); |
| 768 | cq_context->state_db = cpu_to_be32(cq->arm_db_index); |
| 769 | } |
| 770 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 771 | err = mthca_SW2HW_CQ(dev, mailbox, cq->cqn, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | if (err) { |
| 773 | mthca_warn(dev, "SW2HW_CQ failed (%d)\n", err); |
| 774 | goto err_out_free_mr; |
| 775 | } |
| 776 | |
| 777 | if (status) { |
| 778 | mthca_warn(dev, "SW2HW_CQ returned status 0x%02x\n", |
| 779 | status); |
| 780 | err = -EINVAL; |
| 781 | goto err_out_free_mr; |
| 782 | } |
| 783 | |
| 784 | spin_lock_irq(&dev->cq_table.lock); |
| 785 | if (mthca_array_set(&dev->cq_table.cq, |
| 786 | cq->cqn & (dev->limits.num_cqs - 1), |
| 787 | cq)) { |
| 788 | spin_unlock_irq(&dev->cq_table.lock); |
| 789 | goto err_out_free_mr; |
| 790 | } |
| 791 | spin_unlock_irq(&dev->cq_table.lock); |
| 792 | |
| 793 | cq->cons_index = 0; |
| 794 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 795 | mthca_free_mailbox(dev, mailbox); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | |
| 797 | return 0; |
| 798 | |
| 799 | err_out_free_mr: |
Roland Dreier | 87b8167 | 2005-08-18 13:39:31 -0700 | [diff] [blame] | 800 | if (cq->is_kernel) |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 801 | mthca_free_cq_buf(dev, cq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
| 803 | err_out_mailbox: |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 804 | mthca_free_mailbox(dev, mailbox); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 806 | err_out_arm: |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 807 | if (cq->is_kernel && mthca_is_memfree(dev)) |
Roland Dreier | b635fa2 | 2005-04-16 15:26:21 -0700 | [diff] [blame] | 808 | mthca_free_db(dev, MTHCA_DB_TYPE_CQ_ARM, cq->arm_db_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
| 810 | err_out_ci: |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 811 | if (cq->is_kernel && mthca_is_memfree(dev)) |
Roland Dreier | b635fa2 | 2005-04-16 15:26:21 -0700 | [diff] [blame] | 812 | mthca_free_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, cq->set_ci_db_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | |
| 814 | err_out_icm: |
| 815 | mthca_table_put(dev, dev->cq_table.table, cq->cqn); |
| 816 | |
| 817 | err_out: |
| 818 | mthca_free(&dev->cq_table.alloc, cq->cqn); |
| 819 | |
| 820 | return err; |
| 821 | } |
| 822 | |
| 823 | void mthca_free_cq(struct mthca_dev *dev, |
| 824 | struct mthca_cq *cq) |
| 825 | { |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 826 | struct mthca_mailbox *mailbox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | int err; |
| 828 | u8 status; |
| 829 | |
| 830 | might_sleep(); |
| 831 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 832 | mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL); |
| 833 | if (IS_ERR(mailbox)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | mthca_warn(dev, "No memory for mailbox to free CQ.\n"); |
| 835 | return; |
| 836 | } |
| 837 | |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 838 | err = mthca_HW2SW_CQ(dev, mailbox, cq->cqn, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | if (err) |
| 840 | mthca_warn(dev, "HW2SW_CQ failed (%d)\n", err); |
| 841 | else if (status) |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 842 | mthca_warn(dev, "HW2SW_CQ returned status 0x%02x\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
| 844 | if (0) { |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 845 | __be32 *ctx = mailbox->buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | int j; |
| 847 | |
| 848 | printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 849 | cq->cqn, cq->cons_index, |
| 850 | cq->is_kernel ? !!next_cqe_sw(cq) : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | for (j = 0; j < 16; ++j) |
| 852 | printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); |
| 853 | } |
| 854 | |
| 855 | spin_lock_irq(&dev->cq_table.lock); |
| 856 | mthca_array_clear(&dev->cq_table.cq, |
| 857 | cq->cqn & (dev->limits.num_cqs - 1)); |
| 858 | spin_unlock_irq(&dev->cq_table.lock); |
| 859 | |
| 860 | if (dev->mthca_flags & MTHCA_FLAG_MSI_X) |
| 861 | synchronize_irq(dev->eq_table.eq[MTHCA_EQ_COMP].msi_x_vector); |
| 862 | else |
| 863 | synchronize_irq(dev->pdev->irq); |
| 864 | |
| 865 | atomic_dec(&cq->refcount); |
| 866 | wait_event(cq->wait, !atomic_read(&cq->refcount)); |
| 867 | |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 868 | if (cq->is_kernel) { |
Roland Dreier | 74c2174 | 2005-07-07 17:57:19 -0700 | [diff] [blame] | 869 | mthca_free_cq_buf(dev, cq); |
| 870 | if (mthca_is_memfree(dev)) { |
| 871 | mthca_free_db(dev, MTHCA_DB_TYPE_CQ_ARM, cq->arm_db_index); |
| 872 | mthca_free_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, cq->set_ci_db_index); |
| 873 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Roland Dreier | a03a5a6 | 2005-06-27 14:36:43 -0700 | [diff] [blame] | 876 | mthca_table_put(dev, dev->cq_table.table, cq->cqn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | mthca_free(&dev->cq_table.alloc, cq->cqn); |
Roland Dreier | ed87845 | 2005-06-27 14:36:45 -0700 | [diff] [blame] | 878 | mthca_free_mailbox(dev, mailbox); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | int __devinit mthca_init_cq_table(struct mthca_dev *dev) |
| 882 | { |
| 883 | int err; |
| 884 | |
| 885 | spin_lock_init(&dev->cq_table.lock); |
| 886 | |
| 887 | err = mthca_alloc_init(&dev->cq_table.alloc, |
| 888 | dev->limits.num_cqs, |
| 889 | (1 << 24) - 1, |
| 890 | dev->limits.reserved_cqs); |
| 891 | if (err) |
| 892 | return err; |
| 893 | |
| 894 | err = mthca_array_init(&dev->cq_table.cq, |
| 895 | dev->limits.num_cqs); |
| 896 | if (err) |
| 897 | mthca_alloc_cleanup(&dev->cq_table.alloc); |
| 898 | |
| 899 | return err; |
| 900 | } |
| 901 | |
| 902 | void __devexit mthca_cleanup_cq_table(struct mthca_dev *dev) |
| 903 | { |
| 904 | mthca_array_cleanup(&dev->cq_table.cq, dev->limits.num_cqs); |
| 905 | mthca_alloc_cleanup(&dev->cq_table.alloc); |
| 906 | } |