Fix "fs: convert core functions to zero_user_page"
[linux-2.6-block.git] / drivers / infiniband / hw / mthca / mthca_cq.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
cd4e8fb4 3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4885bf64 4 * Copyright (c) 2005, 2006 Cisco Systems, Inc. All rights reserved.
2a1d9b7f
RD
5 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
6 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
1da177e4
LT
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
1da177e4
LT
39#include <linux/hardirq.h>
40
1f5c23e2
AK
41#include <asm/io.h>
42
a4d61e84 43#include <rdma/ib_pack.h>
1da177e4
LT
44
45#include "mthca_dev.h"
46#include "mthca_cmd.h"
47#include "mthca_memfree.h"
48
49enum {
50 MTHCA_MAX_DIRECT_CQ_SIZE = 4 * PAGE_SIZE
51};
52
53enum {
54 MTHCA_CQ_ENTRY_SIZE = 0x20
55};
56
98714cb1
JM
57enum {
58 MTHCA_ATOMIC_BYTE_LEN = 8
59};
60
1da177e4
LT
61/*
62 * Must be packed because start is 64 bits but only aligned to 32 bits.
63 */
64struct mthca_cq_context {
97f52eb4
SH
65 __be32 flags;
66 __be64 start;
67 __be32 logsize_usrpage;
68 __be32 error_eqn; /* Tavor only */
69 __be32 comp_eqn;
70 __be32 pd;
71 __be32 lkey;
72 __be32 last_notified_index;
73 __be32 solicit_producer_index;
74 __be32 consumer_index;
75 __be32 producer_index;
76 __be32 cqn;
77 __be32 ci_db; /* Arbel only */
78 __be32 state_db; /* Arbel only */
79 u32 reserved;
1da177e4
LT
80} __attribute__((packed));
81
82#define MTHCA_CQ_STATUS_OK ( 0 << 28)
83#define MTHCA_CQ_STATUS_OVERFLOW ( 9 << 28)
84#define MTHCA_CQ_STATUS_WRITE_FAIL (10 << 28)
85#define MTHCA_CQ_FLAG_TR ( 1 << 18)
86#define MTHCA_CQ_FLAG_OI ( 1 << 17)
87#define MTHCA_CQ_STATE_DISARMED ( 0 << 8)
88#define MTHCA_CQ_STATE_ARMED ( 1 << 8)
89#define MTHCA_CQ_STATE_ARMED_SOL ( 4 << 8)
90#define MTHCA_EQ_STATE_FIRED (10 << 8)
91
92enum {
93 MTHCA_ERROR_CQE_OPCODE_MASK = 0xfe
94};
95
96enum {
97 SYNDROME_LOCAL_LENGTH_ERR = 0x01,
98 SYNDROME_LOCAL_QP_OP_ERR = 0x02,
99 SYNDROME_LOCAL_EEC_OP_ERR = 0x03,
100 SYNDROME_LOCAL_PROT_ERR = 0x04,
101 SYNDROME_WR_FLUSH_ERR = 0x05,
102 SYNDROME_MW_BIND_ERR = 0x06,
103 SYNDROME_BAD_RESP_ERR = 0x10,
104 SYNDROME_LOCAL_ACCESS_ERR = 0x11,
105 SYNDROME_REMOTE_INVAL_REQ_ERR = 0x12,
106 SYNDROME_REMOTE_ACCESS_ERR = 0x13,
107 SYNDROME_REMOTE_OP_ERR = 0x14,
108 SYNDROME_RETRY_EXC_ERR = 0x15,
109 SYNDROME_RNR_RETRY_EXC_ERR = 0x16,
110 SYNDROME_LOCAL_RDD_VIOL_ERR = 0x20,
111 SYNDROME_REMOTE_INVAL_RD_REQ_ERR = 0x21,
112 SYNDROME_REMOTE_ABORTED_ERR = 0x22,
113 SYNDROME_INVAL_EECN_ERR = 0x23,
114 SYNDROME_INVAL_EEC_STATE_ERR = 0x24
115};
116
117struct mthca_cqe {
97f52eb4
SH
118 __be32 my_qpn;
119 __be32 my_ee;
120 __be32 rqpn;
121 __be16 sl_g_mlpath;
122 __be16 rlid;
123 __be32 imm_etype_pkey_eec;
124 __be32 byte_cnt;
125 __be32 wqe;
126 u8 opcode;
127 u8 is_send;
128 u8 reserved;
129 u8 owner;
1da177e4
LT
130};
131
132struct mthca_err_cqe {
97f52eb4
SH
133 __be32 my_qpn;
134 u32 reserved1[3];
135 u8 syndrome;
0f8e8f96 136 u8 vendor_err;
97f52eb4 137 __be16 db_cnt;
0f8e8f96 138 u32 reserved2;
97f52eb4
SH
139 __be32 wqe;
140 u8 opcode;
0f8e8f96 141 u8 reserved3[2];
97f52eb4 142 u8 owner;
1da177e4
LT
143};
144
145#define MTHCA_CQ_ENTRY_OWNER_SW (0 << 7)
146#define MTHCA_CQ_ENTRY_OWNER_HW (1 << 7)
147
148#define MTHCA_TAVOR_CQ_DB_INC_CI (1 << 24)
149#define MTHCA_TAVOR_CQ_DB_REQ_NOT (2 << 24)
150#define MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL (3 << 24)
151#define MTHCA_TAVOR_CQ_DB_SET_CI (4 << 24)
152#define MTHCA_TAVOR_CQ_DB_REQ_NOT_MULT (5 << 24)
153
154#define MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL (1 << 24)
155#define MTHCA_ARBEL_CQ_DB_REQ_NOT (2 << 24)
156#define MTHCA_ARBEL_CQ_DB_REQ_NOT_MULT (3 << 24)
157
4885bf64
RD
158static inline struct mthca_cqe *get_cqe_from_buf(struct mthca_cq_buf *buf,
159 int entry)
1da177e4 160{
4885bf64
RD
161 if (buf->is_direct)
162 return buf->queue.direct.buf + (entry * MTHCA_CQ_ENTRY_SIZE);
1da177e4 163 else
4885bf64 164 return buf->queue.page_list[entry * MTHCA_CQ_ENTRY_SIZE / PAGE_SIZE].buf
1da177e4
LT
165 + (entry * MTHCA_CQ_ENTRY_SIZE) % PAGE_SIZE;
166}
167
4885bf64
RD
168static inline struct mthca_cqe *get_cqe(struct mthca_cq *cq, int entry)
169{
170 return get_cqe_from_buf(&cq->buf, entry);
171}
172
173static inline struct mthca_cqe *cqe_sw(struct mthca_cqe *cqe)
1da177e4 174{
1da177e4
LT
175 return MTHCA_CQ_ENTRY_OWNER_HW & cqe->owner ? NULL : cqe;
176}
177
178static inline struct mthca_cqe *next_cqe_sw(struct mthca_cq *cq)
179{
4885bf64 180 return cqe_sw(get_cqe(cq, cq->cons_index & cq->ibcq.cqe));
1da177e4
LT
181}
182
183static inline void set_cqe_hw(struct mthca_cqe *cqe)
184{
185 cqe->owner = MTHCA_CQ_ENTRY_OWNER_HW;
186}
187
bb2af78b
RD
188static void dump_cqe(struct mthca_dev *dev, void *cqe_ptr)
189{
190 __be32 *cqe = cqe_ptr;
191
192 (void) cqe; /* avoid warning if mthca_dbg compiled away... */
193 mthca_dbg(dev, "CQE contents %08x %08x %08x %08x %08x %08x %08x %08x\n",
194 be32_to_cpu(cqe[0]), be32_to_cpu(cqe[1]), be32_to_cpu(cqe[2]),
195 be32_to_cpu(cqe[3]), be32_to_cpu(cqe[4]), be32_to_cpu(cqe[5]),
196 be32_to_cpu(cqe[6]), be32_to_cpu(cqe[7]));
197}
198
1da177e4
LT
199/*
200 * incr is ignored in native Arbel (mem-free) mode, so cq->cons_index
201 * should be correct before calling update_cons_index().
202 */
203static inline void update_cons_index(struct mthca_dev *dev, struct mthca_cq *cq,
204 int incr)
205{
97f52eb4 206 __be32 doorbell[2];
1da177e4 207
d10ddbf6 208 if (mthca_is_memfree(dev)) {
1da177e4
LT
209 *cq->set_ci_db = cpu_to_be32(cq->cons_index);
210 wmb();
211 } else {
212 doorbell[0] = cpu_to_be32(MTHCA_TAVOR_CQ_DB_INC_CI | cq->cqn);
213 doorbell[1] = cpu_to_be32(incr - 1);
214
215 mthca_write64(doorbell,
216 dev->kar + MTHCA_CQ_DOORBELL,
217 MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock));
1f5c23e2
AK
218 /*
219 * Make sure doorbells don't leak out of CQ spinlock
220 * and reach the HCA out of order:
221 */
222 mmiowb();
1da177e4
LT
223 }
224}
225
affcd505 226void mthca_cq_completion(struct mthca_dev *dev, u32 cqn)
1da177e4
LT
227{
228 struct mthca_cq *cq;
229
230 cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1));
231
232 if (!cq) {
233 mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn);
234 return;
235 }
236
237 ++cq->arm_sn;
238
239 cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context);
240}
241
affcd505
MT
242void mthca_cq_event(struct mthca_dev *dev, u32 cqn,
243 enum ib_event_type event_type)
244{
245 struct mthca_cq *cq;
246 struct ib_event event;
247
248 spin_lock(&dev->cq_table.lock);
249
250 cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1));
affcd505 251 if (cq)
a3285aa4
RD
252 ++cq->refcount;
253
affcd505
MT
254 spin_unlock(&dev->cq_table.lock);
255
256 if (!cq) {
257 mthca_warn(dev, "Async event for bogus CQ %08x\n", cqn);
258 return;
259 }
260
261 event.device = &dev->ib_dev;
262 event.event = event_type;
263 event.element.cq = &cq->ibcq;
264 if (cq->ibcq.event_handler)
265 cq->ibcq.event_handler(&event, cq->ibcq.cq_context);
266
a3285aa4
RD
267 spin_lock(&dev->cq_table.lock);
268 if (!--cq->refcount)
affcd505 269 wake_up(&cq->wait);
a3285aa4 270 spin_unlock(&dev->cq_table.lock);
affcd505
MT
271}
272
576d2e4e
JM
273static inline int is_recv_cqe(struct mthca_cqe *cqe)
274{
275 if ((cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) ==
276 MTHCA_ERROR_CQE_OPCODE_MASK)
277 return !(cqe->opcode & 0x01);
278 else
279 return !(cqe->is_send & 0x80);
280}
281
a3285aa4 282void mthca_cq_clean(struct mthca_dev *dev, struct mthca_cq *cq, u32 qpn,
ec34a922 283 struct mthca_srq *srq)
1da177e4 284{
1da177e4 285 struct mthca_cqe *cqe;
64044bcf 286 u32 prod_index;
bd18c112 287 int i, nfreed = 0;
1da177e4 288
1da177e4
LT
289 spin_lock_irq(&cq->lock);
290
291 /*
292 * First we need to find the current producer index, so we
293 * know where to start cleaning from. It doesn't matter if HW
294 * adds new entries after this loop -- the QP we're worried
295 * about is already in RESET, so the new entries won't come
296 * from our QP and therefore don't need to be checked.
297 */
298 for (prod_index = cq->cons_index;
4885bf64 299 cqe_sw(get_cqe(cq, prod_index & cq->ibcq.cqe));
1da177e4
LT
300 ++prod_index)
301 if (prod_index == cq->cons_index + cq->ibcq.cqe)
302 break;
303
304 if (0)
305 mthca_dbg(dev, "Cleaning QPN %06x from CQN %06x; ci %d, pi %d\n",
a3285aa4 306 qpn, cq->cqn, cq->cons_index, prod_index);
1da177e4
LT
307
308 /*
309 * Now sweep backwards through the CQ, removing CQ entries
310 * that match our QP by copying older entries on top of them.
311 */
64044bcf
RD
312 while ((int) --prod_index - (int) cq->cons_index >= 0) {
313 cqe = get_cqe(cq, prod_index & cq->ibcq.cqe);
ec34a922 314 if (cqe->my_qpn == cpu_to_be32(qpn)) {
576d2e4e 315 if (srq && is_recv_cqe(cqe))
ec34a922 316 mthca_free_srq_wqe(srq, be32_to_cpu(cqe->wqe));
1da177e4 317 ++nfreed;
64044bcf
RD
318 } else if (nfreed)
319 memcpy(get_cqe(cq, (prod_index + nfreed) & cq->ibcq.cqe),
320 cqe, MTHCA_CQ_ENTRY_SIZE);
1da177e4
LT
321 }
322
323 if (nfreed) {
bd18c112
MT
324 for (i = 0; i < nfreed; ++i)
325 set_cqe_hw(get_cqe(cq, (cq->cons_index + i) & cq->ibcq.cqe));
1da177e4
LT
326 wmb();
327 cq->cons_index += nfreed;
328 update_cons_index(dev, cq, nfreed);
329 }
330
331 spin_unlock_irq(&cq->lock);
1da177e4
LT
332}
333
4885bf64
RD
334void mthca_cq_resize_copy_cqes(struct mthca_cq *cq)
335{
336 int i;
337
338 /*
339 * In Tavor mode, the hardware keeps the consumer and producer
340 * indices mod the CQ size. Since we might be making the CQ
341 * bigger, we need to deal with the case where the producer
342 * index wrapped around before the CQ was resized.
343 */
344 if (!mthca_is_memfree(to_mdev(cq->ibcq.device)) &&
345 cq->ibcq.cqe < cq->resize_buf->cqe) {
346 cq->cons_index &= cq->ibcq.cqe;
347 if (cqe_sw(get_cqe(cq, cq->ibcq.cqe)))
348 cq->cons_index -= cq->ibcq.cqe + 1;
349 }
350
351 for (i = cq->cons_index; cqe_sw(get_cqe(cq, i & cq->ibcq.cqe)); ++i)
352 memcpy(get_cqe_from_buf(&cq->resize_buf->buf,
353 i & cq->resize_buf->cqe),
354 get_cqe(cq, i & cq->ibcq.cqe), MTHCA_CQ_ENTRY_SIZE);
355}
356
357int mthca_alloc_cq_buf(struct mthca_dev *dev, struct mthca_cq_buf *buf, int nent)
358{
359 int ret;
360 int i;
361
362 ret = mthca_buf_alloc(dev, nent * MTHCA_CQ_ENTRY_SIZE,
363 MTHCA_MAX_DIRECT_CQ_SIZE,
364 &buf->queue, &buf->is_direct,
365 &dev->driver_pd, 1, &buf->mr);
366 if (ret)
367 return ret;
368
369 for (i = 0; i < nent; ++i)
370 set_cqe_hw(get_cqe_from_buf(buf, i));
371
372 return 0;
373}
374
375void mthca_free_cq_buf(struct mthca_dev *dev, struct mthca_cq_buf *buf, int cqe)
376{
377 mthca_buf_free(dev, (cqe + 1) * MTHCA_CQ_ENTRY_SIZE, &buf->queue,
378 buf->is_direct, &buf->mr);
379}
380
d9b98b0f
RD
381static void handle_error_cqe(struct mthca_dev *dev, struct mthca_cq *cq,
382 struct mthca_qp *qp, int wqe_index, int is_send,
383 struct mthca_err_cqe *cqe,
384 struct ib_wc *entry, int *free_cqe)
1da177e4 385{
1da177e4 386 int dbd;
97f52eb4 387 __be32 new_wqe;
1da177e4 388
bb2af78b
RD
389 if (cqe->syndrome == SYNDROME_LOCAL_QP_OP_ERR) {
390 mthca_dbg(dev, "local QP operation err "
391 "(QPN %06x, WQE @ %08x, CQN %06x, index %d)\n",
392 be32_to_cpu(cqe->my_qpn), be32_to_cpu(cqe->wqe),
393 cq->cqn, cq->cons_index);
394 dump_cqe(dev, cqe);
1da177e4
LT
395 }
396
397 /*
0f8e8f96
MT
398 * For completions in error, only work request ID, status, vendor error
399 * (and freed resource count for RD) have to be set.
1da177e4
LT
400 */
401 switch (cqe->syndrome) {
402 case SYNDROME_LOCAL_LENGTH_ERR:
403 entry->status = IB_WC_LOC_LEN_ERR;
404 break;
405 case SYNDROME_LOCAL_QP_OP_ERR:
406 entry->status = IB_WC_LOC_QP_OP_ERR;
407 break;
408 case SYNDROME_LOCAL_EEC_OP_ERR:
409 entry->status = IB_WC_LOC_EEC_OP_ERR;
410 break;
411 case SYNDROME_LOCAL_PROT_ERR:
412 entry->status = IB_WC_LOC_PROT_ERR;
413 break;
414 case SYNDROME_WR_FLUSH_ERR:
415 entry->status = IB_WC_WR_FLUSH_ERR;
416 break;
417 case SYNDROME_MW_BIND_ERR:
418 entry->status = IB_WC_MW_BIND_ERR;
419 break;
420 case SYNDROME_BAD_RESP_ERR:
421 entry->status = IB_WC_BAD_RESP_ERR;
422 break;
423 case SYNDROME_LOCAL_ACCESS_ERR:
424 entry->status = IB_WC_LOC_ACCESS_ERR;
425 break;
426 case SYNDROME_REMOTE_INVAL_REQ_ERR:
427 entry->status = IB_WC_REM_INV_REQ_ERR;
428 break;
429 case SYNDROME_REMOTE_ACCESS_ERR:
430 entry->status = IB_WC_REM_ACCESS_ERR;
431 break;
432 case SYNDROME_REMOTE_OP_ERR:
433 entry->status = IB_WC_REM_OP_ERR;
434 break;
435 case SYNDROME_RETRY_EXC_ERR:
436 entry->status = IB_WC_RETRY_EXC_ERR;
437 break;
438 case SYNDROME_RNR_RETRY_EXC_ERR:
439 entry->status = IB_WC_RNR_RETRY_EXC_ERR;
440 break;
441 case SYNDROME_LOCAL_RDD_VIOL_ERR:
442 entry->status = IB_WC_LOC_RDD_VIOL_ERR;
443 break;
444 case SYNDROME_REMOTE_INVAL_RD_REQ_ERR:
445 entry->status = IB_WC_REM_INV_RD_REQ_ERR;
446 break;
447 case SYNDROME_REMOTE_ABORTED_ERR:
448 entry->status = IB_WC_REM_ABORT_ERR;
449 break;
450 case SYNDROME_INVAL_EECN_ERR:
451 entry->status = IB_WC_INV_EECN_ERR;
452 break;
453 case SYNDROME_INVAL_EEC_STATE_ERR:
454 entry->status = IB_WC_INV_EEC_STATE_ERR;
455 break;
456 default:
457 entry->status = IB_WC_GENERAL_ERR;
458 break;
459 }
460
0f8e8f96
MT
461 entry->vendor_err = cqe->vendor_err;
462
288bdeb4
RD
463 /*
464 * Mem-free HCAs always generate one CQE per WQE, even in the
465 * error case, so we don't have to check the doorbell count, etc.
466 */
467 if (mthca_is_memfree(dev))
d9b98b0f 468 return;
288bdeb4 469
d9b98b0f 470 mthca_free_err_wqe(dev, qp, is_send, wqe_index, &dbd, &new_wqe);
1da177e4
LT
471
472 /*
473 * If we're at the end of the WQE chain, or we've used up our
474 * doorbell count, free the CQE. Otherwise just update it for
475 * the next poll operation.
476 */
288bdeb4 477 if (!(new_wqe & cpu_to_be32(0x3f)) || (!cqe->db_cnt && dbd))
d9b98b0f 478 return;
1da177e4
LT
479
480 cqe->db_cnt = cpu_to_be16(be16_to_cpu(cqe->db_cnt) - dbd);
481 cqe->wqe = new_wqe;
482 cqe->syndrome = SYNDROME_WR_FLUSH_ERR;
483
484 *free_cqe = 0;
1da177e4
LT
485}
486
1da177e4
LT
487static inline int mthca_poll_one(struct mthca_dev *dev,
488 struct mthca_cq *cq,
489 struct mthca_qp **cur_qp,
490 int *freed,
491 struct ib_wc *entry)
492{
493 struct mthca_wq *wq;
494 struct mthca_cqe *cqe;
495 int wqe_index;
496 int is_error;
497 int is_send;
498 int free_cqe = 1;
499 int err = 0;
500
501 cqe = next_cqe_sw(cq);
502 if (!cqe)
503 return -EAGAIN;
504
505 /*
506 * Make sure we read CQ entry contents after we've checked the
507 * ownership bit.
508 */
509 rmb();
510
511 if (0) {
512 mthca_dbg(dev, "%x/%d: CQE -> QPN %06x, WQE @ %08x\n",
513 cq->cqn, cq->cons_index, be32_to_cpu(cqe->my_qpn),
514 be32_to_cpu(cqe->wqe));
bb2af78b 515 dump_cqe(dev, cqe);
1da177e4
LT
516 }
517
518 is_error = (cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) ==
519 MTHCA_ERROR_CQE_OPCODE_MASK;
520 is_send = is_error ? cqe->opcode & 0x01 : cqe->is_send & 0x80;
521
522 if (!*cur_qp || be32_to_cpu(cqe->my_qpn) != (*cur_qp)->qpn) {
523 /*
524 * We do not have to take the QP table lock here,
525 * because CQs will be locked while QPs are removed
526 * from the table.
527 */
528 *cur_qp = mthca_array_get(&dev->qp_table.qp,
529 be32_to_cpu(cqe->my_qpn) &
530 (dev->limits.num_qps - 1));
531 if (!*cur_qp) {
532 mthca_warn(dev, "CQ entry for unknown QP %06x\n",
533 be32_to_cpu(cqe->my_qpn) & 0xffffff);
534 err = -EINVAL;
535 goto out;
536 }
537 }
538
062dbb69 539 entry->qp = &(*cur_qp)->ibqp;
1da177e4
LT
540
541 if (is_send) {
542 wq = &(*cur_qp)->sq;
543 wqe_index = ((be32_to_cpu(cqe->wqe) - (*cur_qp)->send_wqe_offset)
544 >> wq->wqe_shift);
545 entry->wr_id = (*cur_qp)->wrid[wqe_index +
546 (*cur_qp)->rq.max];
ec34a922
RD
547 } else if ((*cur_qp)->ibqp.srq) {
548 struct mthca_srq *srq = to_msrq((*cur_qp)->ibqp.srq);
549 u32 wqe = be32_to_cpu(cqe->wqe);
550 wq = NULL;
551 wqe_index = wqe >> srq->wqe_shift;
552 entry->wr_id = srq->wrid[wqe_index];
553 mthca_free_srq_wqe(srq, wqe);
1da177e4 554 } else {
4e56ea79 555 s32 wqe;
1da177e4 556 wq = &(*cur_qp)->rq;
4e56ea79
MT
557 wqe = be32_to_cpu(cqe->wqe);
558 wqe_index = wqe >> wq->wqe_shift;
3cd96564
RD
559 /*
560 * WQE addr == base - 1 might be reported in receive completion
561 * with error instead of (rq size - 1) by Sinai FW 1.0.800 and
562 * Arbel FW 5.1.400. This bug should be fixed in later FW revs.
563 */
4e56ea79
MT
564 if (unlikely(wqe_index < 0))
565 wqe_index = wq->max - 1;
1da177e4
LT
566 entry->wr_id = (*cur_qp)->wrid[wqe_index];
567 }
568
ec34a922
RD
569 if (wq) {
570 if (wq->last_comp < wqe_index)
571 wq->tail += wqe_index - wq->last_comp;
572 else
573 wq->tail += wqe_index + wq->max - wq->last_comp;
1da177e4 574
ec34a922
RD
575 wq->last_comp = wqe_index;
576 }
1da177e4
LT
577
578 if (is_error) {
d9b98b0f
RD
579 handle_error_cqe(dev, cq, *cur_qp, wqe_index, is_send,
580 (struct mthca_err_cqe *) cqe,
581 entry, &free_cqe);
1da177e4
LT
582 goto out;
583 }
584
585 if (is_send) {
2a4443a6
MT
586 entry->wc_flags = 0;
587 switch (cqe->opcode) {
588 case MTHCA_OPCODE_RDMA_WRITE:
589 entry->opcode = IB_WC_RDMA_WRITE;
590 break;
591 case MTHCA_OPCODE_RDMA_WRITE_IMM:
592 entry->opcode = IB_WC_RDMA_WRITE;
593 entry->wc_flags |= IB_WC_WITH_IMM;
594 break;
595 case MTHCA_OPCODE_SEND:
596 entry->opcode = IB_WC_SEND;
597 break;
598 case MTHCA_OPCODE_SEND_IMM:
599 entry->opcode = IB_WC_SEND;
600 entry->wc_flags |= IB_WC_WITH_IMM;
601 break;
602 case MTHCA_OPCODE_RDMA_READ:
603 entry->opcode = IB_WC_RDMA_READ;
604 entry->byte_len = be32_to_cpu(cqe->byte_cnt);
605 break;
606 case MTHCA_OPCODE_ATOMIC_CS:
607 entry->opcode = IB_WC_COMP_SWAP;
98714cb1 608 entry->byte_len = MTHCA_ATOMIC_BYTE_LEN;
2a4443a6
MT
609 break;
610 case MTHCA_OPCODE_ATOMIC_FA:
611 entry->opcode = IB_WC_FETCH_ADD;
98714cb1 612 entry->byte_len = MTHCA_ATOMIC_BYTE_LEN;
2a4443a6
MT
613 break;
614 case MTHCA_OPCODE_BIND_MW:
615 entry->opcode = IB_WC_BIND_MW;
616 break;
617 default:
618 entry->opcode = MTHCA_OPCODE_INVALID;
619 break;
620 }
1da177e4
LT
621 } else {
622 entry->byte_len = be32_to_cpu(cqe->byte_cnt);
623 switch (cqe->opcode & 0x1f) {
624 case IB_OPCODE_SEND_LAST_WITH_IMMEDIATE:
625 case IB_OPCODE_SEND_ONLY_WITH_IMMEDIATE:
626 entry->wc_flags = IB_WC_WITH_IMM;
627 entry->imm_data = cqe->imm_etype_pkey_eec;
628 entry->opcode = IB_WC_RECV;
629 break;
630 case IB_OPCODE_RDMA_WRITE_LAST_WITH_IMMEDIATE:
631 case IB_OPCODE_RDMA_WRITE_ONLY_WITH_IMMEDIATE:
632 entry->wc_flags = IB_WC_WITH_IMM;
633 entry->imm_data = cqe->imm_etype_pkey_eec;
634 entry->opcode = IB_WC_RECV_RDMA_WITH_IMM;
635 break;
636 default:
637 entry->wc_flags = 0;
638 entry->opcode = IB_WC_RECV;
639 break;
640 }
641 entry->slid = be16_to_cpu(cqe->rlid);
642 entry->sl = be16_to_cpu(cqe->sl_g_mlpath) >> 12;
643 entry->src_qp = be32_to_cpu(cqe->rqpn) & 0xffffff;
644 entry->dlid_path_bits = be16_to_cpu(cqe->sl_g_mlpath) & 0x7f;
645 entry->pkey_index = be32_to_cpu(cqe->imm_etype_pkey_eec) >> 16;
646 entry->wc_flags |= be16_to_cpu(cqe->sl_g_mlpath) & 0x80 ?
647 IB_WC_GRH : 0;
648 }
649
650 entry->status = IB_WC_SUCCESS;
651
652 out:
653 if (likely(free_cqe)) {
654 set_cqe_hw(cqe);
655 ++(*freed);
656 ++cq->cons_index;
657 }
658
659 return err;
660}
661
662int mthca_poll_cq(struct ib_cq *ibcq, int num_entries,
663 struct ib_wc *entry)
664{
665 struct mthca_dev *dev = to_mdev(ibcq->device);
666 struct mthca_cq *cq = to_mcq(ibcq);
667 struct mthca_qp *qp = NULL;
668 unsigned long flags;
669 int err = 0;
670 int freed = 0;
671 int npolled;
672
673 spin_lock_irqsave(&cq->lock, flags);
674
4885bf64
RD
675 npolled = 0;
676repoll:
677 while (npolled < num_entries) {
1da177e4
LT
678 err = mthca_poll_one(dev, cq, &qp,
679 &freed, entry + npolled);
680 if (err)
681 break;
4885bf64 682 ++npolled;
1da177e4
LT
683 }
684
685 if (freed) {
686 wmb();
687 update_cons_index(dev, cq, freed);
688 }
689
4885bf64
RD
690 /*
691 * If a CQ resize is in progress and we discovered that the
692 * old buffer is empty, then peek in the new buffer, and if
693 * it's not empty, switch to the new buffer and continue
694 * polling there.
695 */
696 if (unlikely(err == -EAGAIN && cq->resize_buf &&
697 cq->resize_buf->state == CQ_RESIZE_READY)) {
698 /*
699 * In Tavor mode, the hardware keeps the producer
700 * index modulo the CQ size. Since we might be making
701 * the CQ bigger, we need to mask our consumer index
702 * using the size of the old CQ buffer before looking
703 * in the new CQ buffer.
704 */
705 if (!mthca_is_memfree(dev))
706 cq->cons_index &= cq->ibcq.cqe;
707
708 if (cqe_sw(get_cqe_from_buf(&cq->resize_buf->buf,
709 cq->cons_index & cq->resize_buf->cqe))) {
710 struct mthca_cq_buf tbuf;
711 int tcqe;
712
713 tbuf = cq->buf;
714 tcqe = cq->ibcq.cqe;
715 cq->buf = cq->resize_buf->buf;
716 cq->ibcq.cqe = cq->resize_buf->cqe;
717
718 cq->resize_buf->buf = tbuf;
719 cq->resize_buf->cqe = tcqe;
720 cq->resize_buf->state = CQ_RESIZE_SWAPPED;
721
722 goto repoll;
723 }
724 }
725
1da177e4
LT
726 spin_unlock_irqrestore(&cq->lock, flags);
727
728 return err == 0 || err == -EAGAIN ? npolled : err;
729}
730
ed23a727 731int mthca_tavor_arm_cq(struct ib_cq *cq, enum ib_cq_notify_flags flags)
1da177e4 732{
97f52eb4 733 __be32 doorbell[2];
1da177e4 734
ed23a727
RD
735 doorbell[0] = cpu_to_be32(((flags & IB_CQ_SOLICITED_MASK) ==
736 IB_CQ_SOLICITED ?
1da177e4
LT
737 MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL :
738 MTHCA_TAVOR_CQ_DB_REQ_NOT) |
739 to_mcq(cq)->cqn);
97f52eb4 740 doorbell[1] = (__force __be32) 0xffffffff;
1da177e4
LT
741
742 mthca_write64(doorbell,
743 to_mdev(cq->device)->kar + MTHCA_CQ_DOORBELL,
744 MTHCA_GET_DOORBELL_LOCK(&to_mdev(cq->device)->doorbell_lock));
745
746 return 0;
747}
748
ed23a727 749int mthca_arbel_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags)
1da177e4
LT
750{
751 struct mthca_cq *cq = to_mcq(ibcq);
97f52eb4 752 __be32 doorbell[2];
1da177e4 753 u32 sn;
97f52eb4 754 __be32 ci;
1da177e4
LT
755
756 sn = cq->arm_sn & 3;
757 ci = cpu_to_be32(cq->cons_index);
758
759 doorbell[0] = ci;
760 doorbell[1] = cpu_to_be32((cq->cqn << 8) | (2 << 5) | (sn << 3) |
ed23a727
RD
761 ((flags & IB_CQ_SOLICITED_MASK) ==
762 IB_CQ_SOLICITED ? 1 : 2));
1da177e4
LT
763
764 mthca_write_db_rec(doorbell, cq->arm_db);
765
766 /*
767 * Make sure that the doorbell record in host memory is
768 * written before ringing the doorbell via PCI MMIO.
769 */
770 wmb();
771
772 doorbell[0] = cpu_to_be32((sn << 28) |
ed23a727 773 ((flags & IB_CQ_SOLICITED_MASK) == IB_CQ_SOLICITED ?
1da177e4
LT
774 MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL :
775 MTHCA_ARBEL_CQ_DB_REQ_NOT) |
776 cq->cqn);
777 doorbell[1] = ci;
778
779 mthca_write64(doorbell,
780 to_mdev(ibcq->device)->kar + MTHCA_CQ_DOORBELL,
781 MTHCA_GET_DOORBELL_LOCK(&to_mdev(ibcq->device)->doorbell_lock));
782
783 return 0;
784}
785
1da177e4 786int mthca_init_cq(struct mthca_dev *dev, int nent,
74c2174e 787 struct mthca_ucontext *ctx, u32 pdn,
1da177e4
LT
788 struct mthca_cq *cq)
789{
ed878458 790 struct mthca_mailbox *mailbox;
1da177e4
LT
791 struct mthca_cq_context *cq_context;
792 int err = -ENOMEM;
793 u8 status;
1da177e4 794
74c2174e
RD
795 cq->ibcq.cqe = nent - 1;
796 cq->is_kernel = !ctx;
1da177e4
LT
797
798 cq->cqn = mthca_alloc(&dev->cq_table.alloc);
799 if (cq->cqn == -1)
800 return -ENOMEM;
801
d10ddbf6 802 if (mthca_is_memfree(dev)) {
1da177e4
LT
803 err = mthca_table_get(dev, dev->cq_table.table, cq->cqn);
804 if (err)
805 goto err_out;
806
74c2174e
RD
807 if (cq->is_kernel) {
808 cq->arm_sn = 1;
809
810 err = -ENOMEM;
1da177e4 811
74c2174e
RD
812 cq->set_ci_db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_CQ_SET_CI,
813 cq->cqn, &cq->set_ci_db);
814 if (cq->set_ci_db_index < 0)
815 goto err_out_icm;
1da177e4 816
74c2174e
RD
817 cq->arm_db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_CQ_ARM,
818 cq->cqn, &cq->arm_db);
819 if (cq->arm_db_index < 0)
820 goto err_out_ci;
821 }
1da177e4
LT
822 }
823
ed878458
RD
824 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
825 if (IS_ERR(mailbox))
826 goto err_out_arm;
1da177e4 827
ed878458 828 cq_context = mailbox->buf;
1da177e4 829
74c2174e 830 if (cq->is_kernel) {
4885bf64 831 err = mthca_alloc_cq_buf(dev, &cq->buf, nent);
74c2174e
RD
832 if (err)
833 goto err_out_mailbox;
74c2174e 834 }
1da177e4
LT
835
836 spin_lock_init(&cq->lock);
a3285aa4 837 cq->refcount = 1;
1da177e4 838 init_waitqueue_head(&cq->wait);
c93b6fba 839 mutex_init(&cq->mutex);
1da177e4
LT
840
841 memset(cq_context, 0, sizeof *cq_context);
842 cq_context->flags = cpu_to_be32(MTHCA_CQ_STATUS_OK |
843 MTHCA_CQ_STATE_DISARMED |
844 MTHCA_CQ_FLAG_TR);
74c2174e
RD
845 cq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24);
846 if (ctx)
847 cq_context->logsize_usrpage |= cpu_to_be32(ctx->uar.index);
848 else
849 cq_context->logsize_usrpage |= cpu_to_be32(dev->driver_uar.index);
1da177e4
LT
850 cq_context->error_eqn = cpu_to_be32(dev->eq_table.eq[MTHCA_EQ_ASYNC].eqn);
851 cq_context->comp_eqn = cpu_to_be32(dev->eq_table.eq[MTHCA_EQ_COMP].eqn);
74c2174e 852 cq_context->pd = cpu_to_be32(pdn);
4885bf64 853 cq_context->lkey = cpu_to_be32(cq->buf.mr.ibmr.lkey);
1da177e4
LT
854 cq_context->cqn = cpu_to_be32(cq->cqn);
855
d10ddbf6 856 if (mthca_is_memfree(dev)) {
1da177e4
LT
857 cq_context->ci_db = cpu_to_be32(cq->set_ci_db_index);
858 cq_context->state_db = cpu_to_be32(cq->arm_db_index);
859 }
860
ed878458 861 err = mthca_SW2HW_CQ(dev, mailbox, cq->cqn, &status);
1da177e4
LT
862 if (err) {
863 mthca_warn(dev, "SW2HW_CQ failed (%d)\n", err);
864 goto err_out_free_mr;
865 }
866
867 if (status) {
868 mthca_warn(dev, "SW2HW_CQ returned status 0x%02x\n",
869 status);
870 err = -EINVAL;
871 goto err_out_free_mr;
872 }
873
874 spin_lock_irq(&dev->cq_table.lock);
875 if (mthca_array_set(&dev->cq_table.cq,
876 cq->cqn & (dev->limits.num_cqs - 1),
877 cq)) {
878 spin_unlock_irq(&dev->cq_table.lock);
879 goto err_out_free_mr;
880 }
881 spin_unlock_irq(&dev->cq_table.lock);
882
883 cq->cons_index = 0;
884
ed878458 885 mthca_free_mailbox(dev, mailbox);
1da177e4
LT
886
887 return 0;
888
889err_out_free_mr:
87b81670 890 if (cq->is_kernel)
4885bf64 891 mthca_free_cq_buf(dev, &cq->buf, cq->ibcq.cqe);
1da177e4
LT
892
893err_out_mailbox:
ed878458 894 mthca_free_mailbox(dev, mailbox);
1da177e4 895
ed878458 896err_out_arm:
74c2174e 897 if (cq->is_kernel && mthca_is_memfree(dev))
b635fa21 898 mthca_free_db(dev, MTHCA_DB_TYPE_CQ_ARM, cq->arm_db_index);
1da177e4
LT
899
900err_out_ci:
74c2174e 901 if (cq->is_kernel && mthca_is_memfree(dev))
b635fa21 902 mthca_free_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, cq->set_ci_db_index);
1da177e4
LT
903
904err_out_icm:
905 mthca_table_put(dev, dev->cq_table.table, cq->cqn);
906
907err_out:
908 mthca_free(&dev->cq_table.alloc, cq->cqn);
909
910 return err;
911}
912
a3285aa4
RD
913static inline int get_cq_refcount(struct mthca_dev *dev, struct mthca_cq *cq)
914{
915 int c;
916
917 spin_lock_irq(&dev->cq_table.lock);
918 c = cq->refcount;
919 spin_unlock_irq(&dev->cq_table.lock);
920
921 return c;
922}
923
1da177e4
LT
924void mthca_free_cq(struct mthca_dev *dev,
925 struct mthca_cq *cq)
926{
ed878458 927 struct mthca_mailbox *mailbox;
1da177e4
LT
928 int err;
929 u8 status;
930
ed878458
RD
931 mailbox = mthca_alloc_mailbox(dev, GFP_KERNEL);
932 if (IS_ERR(mailbox)) {
1da177e4
LT
933 mthca_warn(dev, "No memory for mailbox to free CQ.\n");
934 return;
935 }
936
ed878458 937 err = mthca_HW2SW_CQ(dev, mailbox, cq->cqn, &status);
1da177e4
LT
938 if (err)
939 mthca_warn(dev, "HW2SW_CQ failed (%d)\n", err);
940 else if (status)
ed878458 941 mthca_warn(dev, "HW2SW_CQ returned status 0x%02x\n", status);
1da177e4
LT
942
943 if (0) {
97f52eb4 944 __be32 *ctx = mailbox->buf;
1da177e4
LT
945 int j;
946
947 printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n",
74c2174e
RD
948 cq->cqn, cq->cons_index,
949 cq->is_kernel ? !!next_cqe_sw(cq) : 0);
1da177e4
LT
950 for (j = 0; j < 16; ++j)
951 printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j]));
952 }
953
954 spin_lock_irq(&dev->cq_table.lock);
955 mthca_array_clear(&dev->cq_table.cq,
956 cq->cqn & (dev->limits.num_cqs - 1));
a3285aa4 957 --cq->refcount;
1da177e4
LT
958 spin_unlock_irq(&dev->cq_table.lock);
959
960 if (dev->mthca_flags & MTHCA_FLAG_MSI_X)
961 synchronize_irq(dev->eq_table.eq[MTHCA_EQ_COMP].msi_x_vector);
962 else
963 synchronize_irq(dev->pdev->irq);
964
a3285aa4 965 wait_event(cq->wait, !get_cq_refcount(dev, cq));
1da177e4 966
74c2174e 967 if (cq->is_kernel) {
4885bf64 968 mthca_free_cq_buf(dev, &cq->buf, cq->ibcq.cqe);
74c2174e
RD
969 if (mthca_is_memfree(dev)) {
970 mthca_free_db(dev, MTHCA_DB_TYPE_CQ_ARM, cq->arm_db_index);
971 mthca_free_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, cq->set_ci_db_index);
972 }
1da177e4
LT
973 }
974
a03a5a67 975 mthca_table_put(dev, dev->cq_table.table, cq->cqn);
1da177e4 976 mthca_free(&dev->cq_table.alloc, cq->cqn);
ed878458 977 mthca_free_mailbox(dev, mailbox);
1da177e4
LT
978}
979
f4f3d0f0 980int mthca_init_cq_table(struct mthca_dev *dev)
1da177e4
LT
981{
982 int err;
983
984 spin_lock_init(&dev->cq_table.lock);
985
986 err = mthca_alloc_init(&dev->cq_table.alloc,
987 dev->limits.num_cqs,
988 (1 << 24) - 1,
989 dev->limits.reserved_cqs);
990 if (err)
991 return err;
992
993 err = mthca_array_init(&dev->cq_table.cq,
994 dev->limits.num_cqs);
995 if (err)
996 mthca_alloc_cleanup(&dev->cq_table.alloc);
997
998 return err;
999}
1000
e1f7868c 1001void mthca_cleanup_cq_table(struct mthca_dev *dev)
1da177e4
LT
1002{
1003 mthca_array_cleanup(&dev->cq_table.cq, dev->limits.num_cqs);
1004 mthca_alloc_cleanup(&dev->cq_table.alloc);
1005}