2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005, 2006 Cisco Systems, Inc. All rights reserved.
5 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
6 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
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:
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
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.
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
37 #include <linux/gfp.h>
38 #include <linux/hardirq.h>
39 #include <linux/sched.h>
43 #include <rdma/ib_pack.h>
45 #include "mthca_dev.h"
46 #include "mthca_cmd.h"
47 #include "mthca_memfree.h"
50 MTHCA_MAX_DIRECT_CQ_SIZE
= 4 * PAGE_SIZE
54 MTHCA_CQ_ENTRY_SIZE
= 0x20
58 MTHCA_ATOMIC_BYTE_LEN
= 8
62 * Must be packed because start is 64 bits but only aligned to 32 bits.
64 struct mthca_cq_context
{
67 __be32 logsize_usrpage
;
68 __be32 error_eqn
; /* Tavor only */
72 __be32 last_notified_index
;
73 __be32 solicit_producer_index
;
74 __be32 consumer_index
;
75 __be32 producer_index
;
77 __be32 ci_db
; /* Arbel only */
78 __be32 state_db
; /* Arbel only */
80 } __attribute__((packed
));
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)
93 MTHCA_ERROR_CQE_OPCODE_MASK
= 0xfe
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
124 __be32 imm_etype_pkey_eec
;
133 struct mthca_err_cqe
{
146 #define MTHCA_CQ_ENTRY_OWNER_SW (0 << 7)
147 #define MTHCA_CQ_ENTRY_OWNER_HW (1 << 7)
149 #define MTHCA_TAVOR_CQ_DB_INC_CI (1 << 24)
150 #define MTHCA_TAVOR_CQ_DB_REQ_NOT (2 << 24)
151 #define MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL (3 << 24)
152 #define MTHCA_TAVOR_CQ_DB_SET_CI (4 << 24)
153 #define MTHCA_TAVOR_CQ_DB_REQ_NOT_MULT (5 << 24)
155 #define MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL (1 << 24)
156 #define MTHCA_ARBEL_CQ_DB_REQ_NOT (2 << 24)
157 #define MTHCA_ARBEL_CQ_DB_REQ_NOT_MULT (3 << 24)
159 static inline struct mthca_cqe
*get_cqe_from_buf(struct mthca_cq_buf
*buf
,
163 return buf
->queue
.direct
.buf
+ (entry
* MTHCA_CQ_ENTRY_SIZE
);
165 return buf
->queue
.page_list
[entry
* MTHCA_CQ_ENTRY_SIZE
/ PAGE_SIZE
].buf
166 + (entry
* MTHCA_CQ_ENTRY_SIZE
) % PAGE_SIZE
;
169 static inline struct mthca_cqe
*get_cqe(struct mthca_cq
*cq
, int entry
)
171 return get_cqe_from_buf(&cq
->buf
, entry
);
174 static inline struct mthca_cqe
*cqe_sw(struct mthca_cqe
*cqe
)
176 return MTHCA_CQ_ENTRY_OWNER_HW
& cqe
->owner
? NULL
: cqe
;
179 static inline struct mthca_cqe
*next_cqe_sw(struct mthca_cq
*cq
)
181 return cqe_sw(get_cqe(cq
, cq
->cons_index
& cq
->ibcq
.cqe
));
184 static inline void set_cqe_hw(struct mthca_cqe
*cqe
)
186 cqe
->owner
= MTHCA_CQ_ENTRY_OWNER_HW
;
189 static void dump_cqe(struct mthca_dev
*dev
, void *cqe_ptr
)
191 __be32
*cqe
= cqe_ptr
;
193 (void) cqe
; /* avoid warning if mthca_dbg compiled away... */
194 mthca_dbg(dev
, "CQE contents %08x %08x %08x %08x %08x %08x %08x %08x\n",
195 be32_to_cpu(cqe
[0]), be32_to_cpu(cqe
[1]), be32_to_cpu(cqe
[2]),
196 be32_to_cpu(cqe
[3]), be32_to_cpu(cqe
[4]), be32_to_cpu(cqe
[5]),
197 be32_to_cpu(cqe
[6]), be32_to_cpu(cqe
[7]));
201 * incr is ignored in native Arbel (mem-free) mode, so cq->cons_index
202 * should be correct before calling update_cons_index().
204 static inline void update_cons_index(struct mthca_dev
*dev
, struct mthca_cq
*cq
,
207 if (mthca_is_memfree(dev
)) {
208 *cq
->set_ci_db
= cpu_to_be32(cq
->cons_index
);
211 mthca_write64(MTHCA_TAVOR_CQ_DB_INC_CI
| cq
->cqn
, incr
- 1,
212 dev
->kar
+ MTHCA_CQ_DOORBELL
,
213 MTHCA_GET_DOORBELL_LOCK(&dev
->doorbell_lock
));
215 * Make sure doorbells don't leak out of CQ spinlock
216 * and reach the HCA out of order:
222 void mthca_cq_completion(struct mthca_dev
*dev
, u32 cqn
)
226 cq
= mthca_array_get(&dev
->cq_table
.cq
, cqn
& (dev
->limits
.num_cqs
- 1));
229 mthca_warn(dev
, "Completion event for bogus CQ %08x\n", cqn
);
235 cq
->ibcq
.comp_handler(&cq
->ibcq
, cq
->ibcq
.cq_context
);
238 void mthca_cq_event(struct mthca_dev
*dev
, u32 cqn
,
239 enum ib_event_type event_type
)
242 struct ib_event event
;
244 spin_lock(&dev
->cq_table
.lock
);
246 cq
= mthca_array_get(&dev
->cq_table
.cq
, cqn
& (dev
->limits
.num_cqs
- 1));
250 spin_unlock(&dev
->cq_table
.lock
);
253 mthca_warn(dev
, "Async event for bogus CQ %08x\n", cqn
);
257 event
.device
= &dev
->ib_dev
;
258 event
.event
= event_type
;
259 event
.element
.cq
= &cq
->ibcq
;
260 if (cq
->ibcq
.event_handler
)
261 cq
->ibcq
.event_handler(&event
, cq
->ibcq
.cq_context
);
263 spin_lock(&dev
->cq_table
.lock
);
266 spin_unlock(&dev
->cq_table
.lock
);
269 static inline int is_recv_cqe(struct mthca_cqe
*cqe
)
271 if ((cqe
->opcode
& MTHCA_ERROR_CQE_OPCODE_MASK
) ==
272 MTHCA_ERROR_CQE_OPCODE_MASK
)
273 return !(cqe
->opcode
& 0x01);
275 return !(cqe
->is_send
& 0x80);
278 void mthca_cq_clean(struct mthca_dev
*dev
, struct mthca_cq
*cq
, u32 qpn
,
279 struct mthca_srq
*srq
)
281 struct mthca_cqe
*cqe
;
285 spin_lock_irq(&cq
->lock
);
288 * First we need to find the current producer index, so we
289 * know where to start cleaning from. It doesn't matter if HW
290 * adds new entries after this loop -- the QP we're worried
291 * about is already in RESET, so the new entries won't come
292 * from our QP and therefore don't need to be checked.
294 for (prod_index
= cq
->cons_index
;
295 cqe_sw(get_cqe(cq
, prod_index
& cq
->ibcq
.cqe
));
297 if (prod_index
== cq
->cons_index
+ cq
->ibcq
.cqe
)
301 mthca_dbg(dev
, "Cleaning QPN %06x from CQN %06x; ci %d, pi %d\n",
302 qpn
, cq
->cqn
, cq
->cons_index
, prod_index
);
305 * Now sweep backwards through the CQ, removing CQ entries
306 * that match our QP by copying older entries on top of them.
308 while ((int) --prod_index
- (int) cq
->cons_index
>= 0) {
309 cqe
= get_cqe(cq
, prod_index
& cq
->ibcq
.cqe
);
310 if (cqe
->my_qpn
== cpu_to_be32(qpn
)) {
311 if (srq
&& is_recv_cqe(cqe
))
312 mthca_free_srq_wqe(srq
, be32_to_cpu(cqe
->wqe
));
315 memcpy(get_cqe(cq
, (prod_index
+ nfreed
) & cq
->ibcq
.cqe
),
316 cqe
, MTHCA_CQ_ENTRY_SIZE
);
320 for (i
= 0; i
< nfreed
; ++i
)
321 set_cqe_hw(get_cqe(cq
, (cq
->cons_index
+ i
) & cq
->ibcq
.cqe
));
323 cq
->cons_index
+= nfreed
;
324 update_cons_index(dev
, cq
, nfreed
);
327 spin_unlock_irq(&cq
->lock
);
330 void mthca_cq_resize_copy_cqes(struct mthca_cq
*cq
)
335 * In Tavor mode, the hardware keeps the consumer and producer
336 * indices mod the CQ size. Since we might be making the CQ
337 * bigger, we need to deal with the case where the producer
338 * index wrapped around before the CQ was resized.
340 if (!mthca_is_memfree(to_mdev(cq
->ibcq
.device
)) &&
341 cq
->ibcq
.cqe
< cq
->resize_buf
->cqe
) {
342 cq
->cons_index
&= cq
->ibcq
.cqe
;
343 if (cqe_sw(get_cqe(cq
, cq
->ibcq
.cqe
)))
344 cq
->cons_index
-= cq
->ibcq
.cqe
+ 1;
347 for (i
= cq
->cons_index
; cqe_sw(get_cqe(cq
, i
& cq
->ibcq
.cqe
)); ++i
)
348 memcpy(get_cqe_from_buf(&cq
->resize_buf
->buf
,
349 i
& cq
->resize_buf
->cqe
),
350 get_cqe(cq
, i
& cq
->ibcq
.cqe
), MTHCA_CQ_ENTRY_SIZE
);
353 int mthca_alloc_cq_buf(struct mthca_dev
*dev
, struct mthca_cq_buf
*buf
, int nent
)
358 ret
= mthca_buf_alloc(dev
, nent
* MTHCA_CQ_ENTRY_SIZE
,
359 MTHCA_MAX_DIRECT_CQ_SIZE
,
360 &buf
->queue
, &buf
->is_direct
,
361 &dev
->driver_pd
, 1, &buf
->mr
);
365 for (i
= 0; i
< nent
; ++i
)
366 set_cqe_hw(get_cqe_from_buf(buf
, i
));
371 void mthca_free_cq_buf(struct mthca_dev
*dev
, struct mthca_cq_buf
*buf
, int cqe
)
373 mthca_buf_free(dev
, (cqe
+ 1) * MTHCA_CQ_ENTRY_SIZE
, &buf
->queue
,
374 buf
->is_direct
, &buf
->mr
);
377 static void handle_error_cqe(struct mthca_dev
*dev
, struct mthca_cq
*cq
,
378 struct mthca_qp
*qp
, int wqe_index
, int is_send
,
379 struct mthca_err_cqe
*cqe
,
380 struct ib_wc
*entry
, int *free_cqe
)
385 if (cqe
->syndrome
== SYNDROME_LOCAL_QP_OP_ERR
) {
386 mthca_dbg(dev
, "local QP operation err "
387 "(QPN %06x, WQE @ %08x, CQN %06x, index %d)\n",
388 be32_to_cpu(cqe
->my_qpn
), be32_to_cpu(cqe
->wqe
),
389 cq
->cqn
, cq
->cons_index
);
394 * For completions in error, only work request ID, status, vendor error
395 * (and freed resource count for RD) have to be set.
397 switch (cqe
->syndrome
) {
398 case SYNDROME_LOCAL_LENGTH_ERR
:
399 entry
->status
= IB_WC_LOC_LEN_ERR
;
401 case SYNDROME_LOCAL_QP_OP_ERR
:
402 entry
->status
= IB_WC_LOC_QP_OP_ERR
;
404 case SYNDROME_LOCAL_EEC_OP_ERR
:
405 entry
->status
= IB_WC_LOC_EEC_OP_ERR
;
407 case SYNDROME_LOCAL_PROT_ERR
:
408 entry
->status
= IB_WC_LOC_PROT_ERR
;
410 case SYNDROME_WR_FLUSH_ERR
:
411 entry
->status
= IB_WC_WR_FLUSH_ERR
;
413 case SYNDROME_MW_BIND_ERR
:
414 entry
->status
= IB_WC_MW_BIND_ERR
;
416 case SYNDROME_BAD_RESP_ERR
:
417 entry
->status
= IB_WC_BAD_RESP_ERR
;
419 case SYNDROME_LOCAL_ACCESS_ERR
:
420 entry
->status
= IB_WC_LOC_ACCESS_ERR
;
422 case SYNDROME_REMOTE_INVAL_REQ_ERR
:
423 entry
->status
= IB_WC_REM_INV_REQ_ERR
;
425 case SYNDROME_REMOTE_ACCESS_ERR
:
426 entry
->status
= IB_WC_REM_ACCESS_ERR
;
428 case SYNDROME_REMOTE_OP_ERR
:
429 entry
->status
= IB_WC_REM_OP_ERR
;
431 case SYNDROME_RETRY_EXC_ERR
:
432 entry
->status
= IB_WC_RETRY_EXC_ERR
;
434 case SYNDROME_RNR_RETRY_EXC_ERR
:
435 entry
->status
= IB_WC_RNR_RETRY_EXC_ERR
;
437 case SYNDROME_LOCAL_RDD_VIOL_ERR
:
438 entry
->status
= IB_WC_LOC_RDD_VIOL_ERR
;
440 case SYNDROME_REMOTE_INVAL_RD_REQ_ERR
:
441 entry
->status
= IB_WC_REM_INV_RD_REQ_ERR
;
443 case SYNDROME_REMOTE_ABORTED_ERR
:
444 entry
->status
= IB_WC_REM_ABORT_ERR
;
446 case SYNDROME_INVAL_EECN_ERR
:
447 entry
->status
= IB_WC_INV_EECN_ERR
;
449 case SYNDROME_INVAL_EEC_STATE_ERR
:
450 entry
->status
= IB_WC_INV_EEC_STATE_ERR
;
453 entry
->status
= IB_WC_GENERAL_ERR
;
457 entry
->vendor_err
= cqe
->vendor_err
;
460 * Mem-free HCAs always generate one CQE per WQE, even in the
461 * error case, so we don't have to check the doorbell count, etc.
463 if (mthca_is_memfree(dev
))
466 mthca_free_err_wqe(dev
, qp
, is_send
, wqe_index
, &dbd
, &new_wqe
);
469 * If we're at the end of the WQE chain, or we've used up our
470 * doorbell count, free the CQE. Otherwise just update it for
471 * the next poll operation.
473 if (!(new_wqe
& cpu_to_be32(0x3f)) || (!cqe
->db_cnt
&& dbd
))
476 be16_add_cpu(&cqe
->db_cnt
, -dbd
);
478 cqe
->syndrome
= SYNDROME_WR_FLUSH_ERR
;
483 static inline int mthca_poll_one(struct mthca_dev
*dev
,
485 struct mthca_qp
**cur_qp
,
490 struct mthca_cqe
*cqe
;
498 cqe
= next_cqe_sw(cq
);
503 * Make sure we read CQ entry contents after we've checked the
509 mthca_dbg(dev
, "%x/%d: CQE -> QPN %06x, WQE @ %08x\n",
510 cq
->cqn
, cq
->cons_index
, be32_to_cpu(cqe
->my_qpn
),
511 be32_to_cpu(cqe
->wqe
));
515 is_error
= (cqe
->opcode
& MTHCA_ERROR_CQE_OPCODE_MASK
) ==
516 MTHCA_ERROR_CQE_OPCODE_MASK
;
517 is_send
= is_error
? cqe
->opcode
& 0x01 : cqe
->is_send
& 0x80;
519 if (!*cur_qp
|| be32_to_cpu(cqe
->my_qpn
) != (*cur_qp
)->qpn
) {
521 * We do not have to take the QP table lock here,
522 * because CQs will be locked while QPs are removed
525 *cur_qp
= mthca_array_get(&dev
->qp_table
.qp
,
526 be32_to_cpu(cqe
->my_qpn
) &
527 (dev
->limits
.num_qps
- 1));
529 mthca_warn(dev
, "CQ entry for unknown QP %06x\n",
530 be32_to_cpu(cqe
->my_qpn
) & 0xffffff);
536 entry
->qp
= &(*cur_qp
)->ibqp
;
540 wqe_index
= ((be32_to_cpu(cqe
->wqe
) - (*cur_qp
)->send_wqe_offset
)
542 entry
->wr_id
= (*cur_qp
)->wrid
[wqe_index
+
544 } else if ((*cur_qp
)->ibqp
.srq
) {
545 struct mthca_srq
*srq
= to_msrq((*cur_qp
)->ibqp
.srq
);
546 u32 wqe
= be32_to_cpu(cqe
->wqe
);
548 wqe_index
= wqe
>> srq
->wqe_shift
;
549 entry
->wr_id
= srq
->wrid
[wqe_index
];
550 mthca_free_srq_wqe(srq
, wqe
);
554 wqe
= be32_to_cpu(cqe
->wqe
);
555 wqe_index
= wqe
>> wq
->wqe_shift
;
557 * WQE addr == base - 1 might be reported in receive completion
558 * with error instead of (rq size - 1) by Sinai FW 1.0.800 and
559 * Arbel FW 5.1.400. This bug should be fixed in later FW revs.
561 if (unlikely(wqe_index
< 0))
562 wqe_index
= wq
->max
- 1;
563 entry
->wr_id
= (*cur_qp
)->wrid
[wqe_index
];
567 if (wq
->last_comp
< wqe_index
)
568 wq
->tail
+= wqe_index
- wq
->last_comp
;
570 wq
->tail
+= wqe_index
+ wq
->max
- wq
->last_comp
;
572 wq
->last_comp
= wqe_index
;
576 handle_error_cqe(dev
, cq
, *cur_qp
, wqe_index
, is_send
,
577 (struct mthca_err_cqe
*) cqe
,
584 switch (cqe
->opcode
) {
585 case MTHCA_OPCODE_RDMA_WRITE
:
586 entry
->opcode
= IB_WC_RDMA_WRITE
;
588 case MTHCA_OPCODE_RDMA_WRITE_IMM
:
589 entry
->opcode
= IB_WC_RDMA_WRITE
;
590 entry
->wc_flags
|= IB_WC_WITH_IMM
;
592 case MTHCA_OPCODE_SEND
:
593 entry
->opcode
= IB_WC_SEND
;
595 case MTHCA_OPCODE_SEND_IMM
:
596 entry
->opcode
= IB_WC_SEND
;
597 entry
->wc_flags
|= IB_WC_WITH_IMM
;
599 case MTHCA_OPCODE_RDMA_READ
:
600 entry
->opcode
= IB_WC_RDMA_READ
;
601 entry
->byte_len
= be32_to_cpu(cqe
->byte_cnt
);
603 case MTHCA_OPCODE_ATOMIC_CS
:
604 entry
->opcode
= IB_WC_COMP_SWAP
;
605 entry
->byte_len
= MTHCA_ATOMIC_BYTE_LEN
;
607 case MTHCA_OPCODE_ATOMIC_FA
:
608 entry
->opcode
= IB_WC_FETCH_ADD
;
609 entry
->byte_len
= MTHCA_ATOMIC_BYTE_LEN
;
611 case MTHCA_OPCODE_BIND_MW
:
612 entry
->opcode
= IB_WC_BIND_MW
;
615 entry
->opcode
= MTHCA_OPCODE_INVALID
;
619 entry
->byte_len
= be32_to_cpu(cqe
->byte_cnt
);
620 switch (cqe
->opcode
& 0x1f) {
621 case IB_OPCODE_SEND_LAST_WITH_IMMEDIATE
:
622 case IB_OPCODE_SEND_ONLY_WITH_IMMEDIATE
:
623 entry
->wc_flags
= IB_WC_WITH_IMM
;
624 entry
->ex
.imm_data
= cqe
->imm_etype_pkey_eec
;
625 entry
->opcode
= IB_WC_RECV
;
627 case IB_OPCODE_RDMA_WRITE_LAST_WITH_IMMEDIATE
:
628 case IB_OPCODE_RDMA_WRITE_ONLY_WITH_IMMEDIATE
:
629 entry
->wc_flags
= IB_WC_WITH_IMM
;
630 entry
->ex
.imm_data
= cqe
->imm_etype_pkey_eec
;
631 entry
->opcode
= IB_WC_RECV_RDMA_WITH_IMM
;
635 entry
->opcode
= IB_WC_RECV
;
638 entry
->slid
= be16_to_cpu(cqe
->rlid
);
639 entry
->sl
= cqe
->sl_ipok
>> 4;
640 entry
->src_qp
= be32_to_cpu(cqe
->rqpn
) & 0xffffff;
641 entry
->dlid_path_bits
= cqe
->g_mlpath
& 0x7f;
642 entry
->pkey_index
= be32_to_cpu(cqe
->imm_etype_pkey_eec
) >> 16;
643 entry
->wc_flags
|= cqe
->g_mlpath
& 0x80 ? IB_WC_GRH
: 0;
644 checksum
= (be32_to_cpu(cqe
->rqpn
) >> 24) |
645 ((be32_to_cpu(cqe
->my_ee
) >> 16) & 0xff00);
646 entry
->csum_ok
= (cqe
->sl_ipok
& 1 && checksum
== 0xffff);
649 entry
->status
= IB_WC_SUCCESS
;
652 if (likely(free_cqe
)) {
661 int mthca_poll_cq(struct ib_cq
*ibcq
, int num_entries
,
664 struct mthca_dev
*dev
= to_mdev(ibcq
->device
);
665 struct mthca_cq
*cq
= to_mcq(ibcq
);
666 struct mthca_qp
*qp
= NULL
;
672 spin_lock_irqsave(&cq
->lock
, flags
);
676 while (npolled
< num_entries
) {
677 err
= mthca_poll_one(dev
, cq
, &qp
,
678 &freed
, entry
+ npolled
);
686 update_cons_index(dev
, cq
, freed
);
690 * If a CQ resize is in progress and we discovered that the
691 * old buffer is empty, then peek in the new buffer, and if
692 * it's not empty, switch to the new buffer and continue
695 if (unlikely(err
== -EAGAIN
&& cq
->resize_buf
&&
696 cq
->resize_buf
->state
== CQ_RESIZE_READY
)) {
698 * In Tavor mode, the hardware keeps the producer
699 * index modulo the CQ size. Since we might be making
700 * the CQ bigger, we need to mask our consumer index
701 * using the size of the old CQ buffer before looking
702 * in the new CQ buffer.
704 if (!mthca_is_memfree(dev
))
705 cq
->cons_index
&= cq
->ibcq
.cqe
;
707 if (cqe_sw(get_cqe_from_buf(&cq
->resize_buf
->buf
,
708 cq
->cons_index
& cq
->resize_buf
->cqe
))) {
709 struct mthca_cq_buf tbuf
;
714 cq
->buf
= cq
->resize_buf
->buf
;
715 cq
->ibcq
.cqe
= cq
->resize_buf
->cqe
;
717 cq
->resize_buf
->buf
= tbuf
;
718 cq
->resize_buf
->cqe
= tcqe
;
719 cq
->resize_buf
->state
= CQ_RESIZE_SWAPPED
;
725 spin_unlock_irqrestore(&cq
->lock
, flags
);
727 return err
== 0 || err
== -EAGAIN
? npolled
: err
;
730 int mthca_tavor_arm_cq(struct ib_cq
*cq
, enum ib_cq_notify_flags flags
)
732 u32 dbhi
= ((flags
& IB_CQ_SOLICITED_MASK
) == IB_CQ_SOLICITED
?
733 MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL
:
734 MTHCA_TAVOR_CQ_DB_REQ_NOT
) |
737 mthca_write64(dbhi
, 0xffffffff, to_mdev(cq
->device
)->kar
+ MTHCA_CQ_DOORBELL
,
738 MTHCA_GET_DOORBELL_LOCK(&to_mdev(cq
->device
)->doorbell_lock
));
743 int mthca_arbel_arm_cq(struct ib_cq
*ibcq
, enum ib_cq_notify_flags flags
)
745 struct mthca_cq
*cq
= to_mcq(ibcq
);
748 u32 sn
= cq
->arm_sn
& 3;
750 db_rec
[0] = cpu_to_be32(cq
->cons_index
);
751 db_rec
[1] = cpu_to_be32((cq
->cqn
<< 8) | (2 << 5) | (sn
<< 3) |
752 ((flags
& IB_CQ_SOLICITED_MASK
) ==
753 IB_CQ_SOLICITED
? 1 : 2));
755 mthca_write_db_rec(db_rec
, cq
->arm_db
);
758 * Make sure that the doorbell record in host memory is
759 * written before ringing the doorbell via PCI MMIO.
764 ((flags
& IB_CQ_SOLICITED_MASK
) == IB_CQ_SOLICITED
?
765 MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL
:
766 MTHCA_ARBEL_CQ_DB_REQ_NOT
) | cq
->cqn
;
768 mthca_write64(dbhi
, cq
->cons_index
,
769 to_mdev(ibcq
->device
)->kar
+ MTHCA_CQ_DOORBELL
,
770 MTHCA_GET_DOORBELL_LOCK(&to_mdev(ibcq
->device
)->doorbell_lock
));
775 int mthca_init_cq(struct mthca_dev
*dev
, int nent
,
776 struct mthca_ucontext
*ctx
, u32 pdn
,
779 struct mthca_mailbox
*mailbox
;
780 struct mthca_cq_context
*cq_context
;
784 cq
->ibcq
.cqe
= nent
- 1;
785 cq
->is_kernel
= !ctx
;
787 cq
->cqn
= mthca_alloc(&dev
->cq_table
.alloc
);
791 if (mthca_is_memfree(dev
)) {
792 err
= mthca_table_get(dev
, dev
->cq_table
.table
, cq
->cqn
);
801 cq
->set_ci_db_index
= mthca_alloc_db(dev
, MTHCA_DB_TYPE_CQ_SET_CI
,
802 cq
->cqn
, &cq
->set_ci_db
);
803 if (cq
->set_ci_db_index
< 0)
806 cq
->arm_db_index
= mthca_alloc_db(dev
, MTHCA_DB_TYPE_CQ_ARM
,
807 cq
->cqn
, &cq
->arm_db
);
808 if (cq
->arm_db_index
< 0)
813 mailbox
= mthca_alloc_mailbox(dev
, GFP_KERNEL
);
817 cq_context
= mailbox
->buf
;
820 err
= mthca_alloc_cq_buf(dev
, &cq
->buf
, nent
);
822 goto err_out_mailbox
;
825 spin_lock_init(&cq
->lock
);
827 init_waitqueue_head(&cq
->wait
);
828 mutex_init(&cq
->mutex
);
830 memset(cq_context
, 0, sizeof *cq_context
);
831 cq_context
->flags
= cpu_to_be32(MTHCA_CQ_STATUS_OK
|
832 MTHCA_CQ_STATE_DISARMED
|
834 cq_context
->logsize_usrpage
= cpu_to_be32((ffs(nent
) - 1) << 24);
836 cq_context
->logsize_usrpage
|= cpu_to_be32(ctx
->uar
.index
);
838 cq_context
->logsize_usrpage
|= cpu_to_be32(dev
->driver_uar
.index
);
839 cq_context
->error_eqn
= cpu_to_be32(dev
->eq_table
.eq
[MTHCA_EQ_ASYNC
].eqn
);
840 cq_context
->comp_eqn
= cpu_to_be32(dev
->eq_table
.eq
[MTHCA_EQ_COMP
].eqn
);
841 cq_context
->pd
= cpu_to_be32(pdn
);
842 cq_context
->lkey
= cpu_to_be32(cq
->buf
.mr
.ibmr
.lkey
);
843 cq_context
->cqn
= cpu_to_be32(cq
->cqn
);
845 if (mthca_is_memfree(dev
)) {
846 cq_context
->ci_db
= cpu_to_be32(cq
->set_ci_db_index
);
847 cq_context
->state_db
= cpu_to_be32(cq
->arm_db_index
);
850 err
= mthca_SW2HW_CQ(dev
, mailbox
, cq
->cqn
, &status
);
852 mthca_warn(dev
, "SW2HW_CQ failed (%d)\n", err
);
853 goto err_out_free_mr
;
857 mthca_warn(dev
, "SW2HW_CQ returned status 0x%02x\n",
860 goto err_out_free_mr
;
863 spin_lock_irq(&dev
->cq_table
.lock
);
864 if (mthca_array_set(&dev
->cq_table
.cq
,
865 cq
->cqn
& (dev
->limits
.num_cqs
- 1),
867 spin_unlock_irq(&dev
->cq_table
.lock
);
868 goto err_out_free_mr
;
870 spin_unlock_irq(&dev
->cq_table
.lock
);
874 mthca_free_mailbox(dev
, mailbox
);
880 mthca_free_cq_buf(dev
, &cq
->buf
, cq
->ibcq
.cqe
);
883 mthca_free_mailbox(dev
, mailbox
);
886 if (cq
->is_kernel
&& mthca_is_memfree(dev
))
887 mthca_free_db(dev
, MTHCA_DB_TYPE_CQ_ARM
, cq
->arm_db_index
);
890 if (cq
->is_kernel
&& mthca_is_memfree(dev
))
891 mthca_free_db(dev
, MTHCA_DB_TYPE_CQ_SET_CI
, cq
->set_ci_db_index
);
894 mthca_table_put(dev
, dev
->cq_table
.table
, cq
->cqn
);
897 mthca_free(&dev
->cq_table
.alloc
, cq
->cqn
);
902 static inline int get_cq_refcount(struct mthca_dev
*dev
, struct mthca_cq
*cq
)
906 spin_lock_irq(&dev
->cq_table
.lock
);
908 spin_unlock_irq(&dev
->cq_table
.lock
);
913 void mthca_free_cq(struct mthca_dev
*dev
,
916 struct mthca_mailbox
*mailbox
;
920 mailbox
= mthca_alloc_mailbox(dev
, GFP_KERNEL
);
921 if (IS_ERR(mailbox
)) {
922 mthca_warn(dev
, "No memory for mailbox to free CQ.\n");
926 err
= mthca_HW2SW_CQ(dev
, mailbox
, cq
->cqn
, &status
);
928 mthca_warn(dev
, "HW2SW_CQ failed (%d)\n", err
);
930 mthca_warn(dev
, "HW2SW_CQ returned status 0x%02x\n", status
);
933 __be32
*ctx
= mailbox
->buf
;
936 printk(KERN_ERR
"context for CQN %x (cons index %x, next sw %d)\n",
937 cq
->cqn
, cq
->cons_index
,
938 cq
->is_kernel
? !!next_cqe_sw(cq
) : 0);
939 for (j
= 0; j
< 16; ++j
)
940 printk(KERN_ERR
"[%2x] %08x\n", j
* 4, be32_to_cpu(ctx
[j
]));
943 spin_lock_irq(&dev
->cq_table
.lock
);
944 mthca_array_clear(&dev
->cq_table
.cq
,
945 cq
->cqn
& (dev
->limits
.num_cqs
- 1));
947 spin_unlock_irq(&dev
->cq_table
.lock
);
949 if (dev
->mthca_flags
& MTHCA_FLAG_MSI_X
)
950 synchronize_irq(dev
->eq_table
.eq
[MTHCA_EQ_COMP
].msi_x_vector
);
952 synchronize_irq(dev
->pdev
->irq
);
954 wait_event(cq
->wait
, !get_cq_refcount(dev
, cq
));
957 mthca_free_cq_buf(dev
, &cq
->buf
, cq
->ibcq
.cqe
);
958 if (mthca_is_memfree(dev
)) {
959 mthca_free_db(dev
, MTHCA_DB_TYPE_CQ_ARM
, cq
->arm_db_index
);
960 mthca_free_db(dev
, MTHCA_DB_TYPE_CQ_SET_CI
, cq
->set_ci_db_index
);
964 mthca_table_put(dev
, dev
->cq_table
.table
, cq
->cqn
);
965 mthca_free(&dev
->cq_table
.alloc
, cq
->cqn
);
966 mthca_free_mailbox(dev
, mailbox
);
969 int mthca_init_cq_table(struct mthca_dev
*dev
)
973 spin_lock_init(&dev
->cq_table
.lock
);
975 err
= mthca_alloc_init(&dev
->cq_table
.alloc
,
978 dev
->limits
.reserved_cqs
);
982 err
= mthca_array_init(&dev
->cq_table
.cq
,
983 dev
->limits
.num_cqs
);
985 mthca_alloc_cleanup(&dev
->cq_table
.alloc
);
990 void mthca_cleanup_cq_table(struct mthca_dev
*dev
)
992 mthca_array_cleanup(&dev
->cq_table
.cq
, dev
->limits
.num_cqs
);
993 mthca_alloc_cleanup(&dev
->cq_table
.alloc
);