Linux 6.10-rc2
[linux-2.6-block.git] / drivers / infiniband / hw / cxgb4 / cq.c
CommitLineData
cfdda9d7
SW
1/*
2 * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
bdeacabd
SR
33#include <rdma/uverbs_ioctl.h>
34
cfdda9d7
SW
35#include "iw_cxgb4.h"
36
a52c8e24
LR
37static void destroy_cq(struct c4iw_rdev *rdev, struct t4_cq *cq,
38 struct c4iw_dev_ucontext *uctx, struct sk_buff *skb,
39 struct c4iw_wr_wait *wr_waitp)
cfdda9d7
SW
40{
41 struct fw_ri_res_wr *res_wr;
42 struct fw_ri_res *res;
43 int wr_len;
cfdda9d7 44
34d56893 45 wr_len = sizeof(*res_wr) + sizeof(*res);
cfdda9d7
SW
46 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
47
de77b966 48 res_wr = __skb_put_zero(skb, wr_len);
cfdda9d7 49 res_wr->op_nres = cpu_to_be32(
e2ac9628 50 FW_WR_OP_V(FW_RI_RES_WR) |
cf7fe64a 51 FW_RI_RES_WR_NRES_V(1) |
e2ac9628 52 FW_WR_COMPL_F);
cfdda9d7 53 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
13ce8317 54 res_wr->cookie = (uintptr_t)wr_waitp;
cfdda9d7
SW
55 res = res_wr->res;
56 res->u.cq.restype = FW_RI_RES_TYPE_CQ;
57 res->u.cq.op = FW_RI_RES_OP_RESET;
58 res->u.cq.iqid = cpu_to_be32(cq->cqid);
59
13ce8317 60 c4iw_init_wr_wait(wr_waitp);
a52c8e24 61 c4iw_ref_send_wait(rdev, skb, wr_waitp, 0, 0, __func__);
cfdda9d7
SW
62
63 kfree(cq->sw_queue);
64 dma_free_coherent(&(rdev->lldi.pdev->dev),
65 cq->memsize, cq->queue,
f38926aa 66 dma_unmap_addr(cq, mapping));
cfdda9d7 67 c4iw_put_cqid(rdev, cq->cqid, uctx);
cfdda9d7
SW
68}
69
70static int create_cq(struct c4iw_rdev *rdev, struct t4_cq *cq,
13ce8317
SW
71 struct c4iw_dev_ucontext *uctx,
72 struct c4iw_wr_wait *wr_waitp)
cfdda9d7
SW
73{
74 struct fw_ri_res_wr *res_wr;
75 struct fw_ri_res *res;
76 int wr_len;
77 int user = (uctx != &rdev->uctx);
cfdda9d7
SW
78 int ret;
79 struct sk_buff *skb;
65ca8d96
RR
80 struct c4iw_ucontext *ucontext = NULL;
81
82 if (user)
83 ucontext = container_of(uctx, struct c4iw_ucontext, uctx);
cfdda9d7
SW
84
85 cq->cqid = c4iw_get_cqid(rdev, uctx);
86 if (!cq->cqid) {
87 ret = -ENOMEM;
88 goto err1;
89 }
90
91 if (!user) {
92 cq->sw_queue = kzalloc(cq->memsize, GFP_KERNEL);
93 if (!cq->sw_queue) {
94 ret = -ENOMEM;
95 goto err2;
96 }
97 }
98 cq->queue = dma_alloc_coherent(&rdev->lldi.pdev->dev, cq->memsize,
99 &cq->dma_addr, GFP_KERNEL);
100 if (!cq->queue) {
101 ret = -ENOMEM;
102 goto err3;
103 }
f38926aa 104 dma_unmap_addr_set(cq, mapping, cq->dma_addr);
cfdda9d7 105
65ca8d96
RR
106 if (user && ucontext->is_32b_cqe) {
107 cq->qp_errp = &((struct t4_status_page *)
108 ((u8 *)cq->queue + (cq->size - 1) *
109 (sizeof(*cq->queue) / 2)))->qp_err;
110 } else {
111 cq->qp_errp = &((struct t4_status_page *)
112 ((u8 *)cq->queue + (cq->size - 1) *
113 sizeof(*cq->queue)))->qp_err;
114 }
115
cfdda9d7 116 /* build fw_ri_res_wr */
34d56893 117 wr_len = sizeof(*res_wr) + sizeof(*res);
cfdda9d7 118
d3c814e8 119 skb = alloc_skb(wr_len, GFP_KERNEL);
cfdda9d7
SW
120 if (!skb) {
121 ret = -ENOMEM;
122 goto err4;
123 }
124 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
125
de77b966 126 res_wr = __skb_put_zero(skb, wr_len);
cfdda9d7 127 res_wr->op_nres = cpu_to_be32(
e2ac9628 128 FW_WR_OP_V(FW_RI_RES_WR) |
cf7fe64a 129 FW_RI_RES_WR_NRES_V(1) |
e2ac9628 130 FW_WR_COMPL_F);
cfdda9d7 131 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
13ce8317 132 res_wr->cookie = (uintptr_t)wr_waitp;
cfdda9d7
SW
133 res = res_wr->res;
134 res->u.cq.restype = FW_RI_RES_TYPE_CQ;
135 res->u.cq.op = FW_RI_RES_OP_WRITE;
136 res->u.cq.iqid = cpu_to_be32(cq->cqid);
137 res->u.cq.iqandst_to_iqandstindex = cpu_to_be32(
cf7fe64a
HS
138 FW_RI_RES_WR_IQANUS_V(0) |
139 FW_RI_RES_WR_IQANUD_V(1) |
140 FW_RI_RES_WR_IQANDST_F |
141 FW_RI_RES_WR_IQANDSTINDEX_V(
cf38be6d 142 rdev->lldi.ciq_ids[cq->vector]));
cfdda9d7 143 res->u.cq.iqdroprss_to_iqesize = cpu_to_be16(
cf7fe64a
HS
144 FW_RI_RES_WR_IQDROPRSS_F |
145 FW_RI_RES_WR_IQPCIECH_V(2) |
146 FW_RI_RES_WR_IQINTCNTTHRESH_V(0) |
147 FW_RI_RES_WR_IQO_F |
65ca8d96
RR
148 ((user && ucontext->is_32b_cqe) ?
149 FW_RI_RES_WR_IQESIZE_V(1) :
150 FW_RI_RES_WR_IQESIZE_V(2)));
cfdda9d7
SW
151 res->u.cq.iqsize = cpu_to_be16(cq->size);
152 res->u.cq.iqaddr = cpu_to_be64(cq->dma_addr);
153
13ce8317 154 c4iw_init_wr_wait(wr_waitp);
2015f26c 155 ret = c4iw_ref_send_wait(rdev, skb, wr_waitp, 0, 0, __func__);
cfdda9d7
SW
156 if (ret)
157 goto err4;
158
159 cq->gen = 1;
74217d4c 160 cq->gts = rdev->lldi.gts_reg;
cfdda9d7 161 cq->rdev = rdev;
09ece8b9 162
1b571086 163 cq->bar2_va = c4iw_bar2_addrs(rdev, cq->cqid, CXGB4_BAR2_QTYPE_INGRESS,
74217d4c
H
164 &cq->bar2_qid,
165 user ? &cq->bar2_pa : NULL);
32cc92c7 166 if (user && !cq->bar2_pa) {
700456bd 167 pr_warn("%s: cqid %u not in BAR2 range\n",
74217d4c
H
168 pci_name(rdev->lldi.pdev), cq->cqid);
169 ret = -EINVAL;
170 goto err4;
cfdda9d7
SW
171 }
172 return 0;
173err4:
174 dma_free_coherent(&rdev->lldi.pdev->dev, cq->memsize, cq->queue,
f38926aa 175 dma_unmap_addr(cq, mapping));
cfdda9d7
SW
176err3:
177 kfree(cq->sw_queue);
178err2:
179 c4iw_put_cqid(rdev, cq->cqid, uctx);
180err1:
181 return ret;
182}
183
6a0b6174 184static void insert_recv_cqe(struct t4_wq *wq, struct t4_cq *cq, u32 srqidx)
cfdda9d7
SW
185{
186 struct t4_cqe cqe;
187
548ddb19 188 pr_debug("wq %p cq %p sw_cidx %u sw_pidx %u\n",
a9a42886 189 wq, cq, cq->sw_cidx, cq->sw_pidx);
cfdda9d7 190 memset(&cqe, 0, sizeof(cqe));
a56c66e8
HS
191 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
192 CQE_OPCODE_V(FW_RI_SEND) |
193 CQE_TYPE_V(0) |
194 CQE_SWCQE_V(1) |
195 CQE_QPID_V(wq->sq.qid));
196 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
6a0b6174
RR
197 if (srqidx)
198 cqe.u.srcqe.abs_rqe_idx = cpu_to_be32(srqidx);
cfdda9d7
SW
199 cq->sw_queue[cq->sw_pidx] = cqe;
200 t4_swcq_produce(cq);
201}
202
203int c4iw_flush_rq(struct t4_wq *wq, struct t4_cq *cq, int count)
204{
205 int flushed = 0;
206 int in_use = wq->rq.in_use - count;
207
548ddb19 208 pr_debug("wq %p cq %p rq.in_use %u skip count %u\n",
a9a42886 209 wq, cq, wq->rq.in_use, count);
cfdda9d7 210 while (in_use--) {
6a0b6174 211 insert_recv_cqe(wq, cq, 0);
cfdda9d7
SW
212 flushed++;
213 }
214 return flushed;
215}
216
217static void insert_sq_cqe(struct t4_wq *wq, struct t4_cq *cq,
218 struct t4_swsqe *swcqe)
219{
220 struct t4_cqe cqe;
221
548ddb19 222 pr_debug("wq %p cq %p sw_cidx %u sw_pidx %u\n",
a9a42886 223 wq, cq, cq->sw_cidx, cq->sw_pidx);
cfdda9d7 224 memset(&cqe, 0, sizeof(cqe));
a56c66e8
HS
225 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
226 CQE_OPCODE_V(swcqe->opcode) |
227 CQE_TYPE_V(1) |
228 CQE_SWCQE_V(1) |
229 CQE_QPID_V(wq->sq.qid));
cfdda9d7 230 CQE_WRID_SQ_IDX(&cqe) = swcqe->idx;
a56c66e8 231 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
cfdda9d7
SW
232 cq->sw_queue[cq->sw_pidx] = cqe;
233 t4_swcq_produce(cq);
234}
235
1cf24dce
SW
236static void advance_oldest_read(struct t4_wq *wq);
237
238int c4iw_flush_sq(struct c4iw_qp *qhp)
cfdda9d7
SW
239{
240 int flushed = 0;
1cf24dce
SW
241 struct t4_wq *wq = &qhp->wq;
242 struct c4iw_cq *chp = to_c4iw_cq(qhp->ibqp.send_cq);
243 struct t4_cq *cq = &chp->cq;
244 int idx;
245 struct t4_swsqe *swsqe;
1cf24dce
SW
246
247 if (wq->sq.flush_cidx == -1)
248 wq->sq.flush_cidx = wq->sq.cidx;
249 idx = wq->sq.flush_cidx;
1cf24dce 250 while (idx != wq->sq.pidx) {
b4e2901c 251 swsqe = &wq->sq.sw_sq[idx];
b4e2901c
SW
252 swsqe->flushed = 1;
253 insert_sq_cqe(wq, cq, swsqe);
254 if (wq->sq.oldest_read == swsqe) {
b4e2901c 255 advance_oldest_read(wq);
1cf24dce 256 }
b4e2901c 257 flushed++;
1cf24dce
SW
258 if (++idx == wq->sq.size)
259 idx = 0;
cfdda9d7 260 }
1cf24dce
SW
261 wq->sq.flush_cidx += flushed;
262 if (wq->sq.flush_cidx >= wq->sq.size)
263 wq->sq.flush_cidx -= wq->sq.size;
cfdda9d7
SW
264 return flushed;
265}
266
1cf24dce
SW
267static void flush_completed_wrs(struct t4_wq *wq, struct t4_cq *cq)
268{
269 struct t4_swsqe *swsqe;
270 int cidx;
271
272 if (wq->sq.flush_cidx == -1)
273 wq->sq.flush_cidx = wq->sq.cidx;
274 cidx = wq->sq.flush_cidx;
1cf24dce
SW
275
276 while (cidx != wq->sq.pidx) {
277 swsqe = &wq->sq.sw_sq[cidx];
278 if (!swsqe->signaled) {
279 if (++cidx == wq->sq.size)
280 cidx = 0;
281 } else if (swsqe->complete) {
282
1cf24dce
SW
283 /*
284 * Insert this completed cqe into the swcq.
285 */
548ddb19
BP
286 pr_debug("moving cqe into swcq sq idx %u cq idx %u\n",
287 cidx, cq->sw_pidx);
a56c66e8 288 swsqe->cqe.header |= htonl(CQE_SWCQE_V(1));
1cf24dce
SW
289 cq->sw_queue[cq->sw_pidx] = swsqe->cqe;
290 t4_swcq_produce(cq);
291 swsqe->flushed = 1;
292 if (++cidx == wq->sq.size)
293 cidx = 0;
294 wq->sq.flush_cidx = cidx;
295 } else
296 break;
297 }
298}
299
300static void create_read_req_cqe(struct t4_wq *wq, struct t4_cqe *hw_cqe,
301 struct t4_cqe *read_cqe)
302{
303 read_cqe->u.scqe.cidx = wq->sq.oldest_read->idx;
304 read_cqe->len = htonl(wq->sq.oldest_read->read_len);
a56c66e8
HS
305 read_cqe->header = htonl(CQE_QPID_V(CQE_QPID(hw_cqe)) |
306 CQE_SWCQE_V(SW_CQE(hw_cqe)) |
307 CQE_OPCODE_V(FW_RI_READ_REQ) |
308 CQE_TYPE_V(1));
1cf24dce
SW
309 read_cqe->bits_type_ts = hw_cqe->bits_type_ts;
310}
311
312static void advance_oldest_read(struct t4_wq *wq)
313{
314
315 u32 rptr = wq->sq.oldest_read - wq->sq.sw_sq + 1;
316
317 if (rptr == wq->sq.size)
318 rptr = 0;
319 while (rptr != wq->sq.pidx) {
320 wq->sq.oldest_read = &wq->sq.sw_sq[rptr];
321
322 if (wq->sq.oldest_read->opcode == FW_RI_READ_REQ)
323 return;
324 if (++rptr == wq->sq.size)
325 rptr = 0;
326 }
327 wq->sq.oldest_read = NULL;
328}
329
cfdda9d7
SW
330/*
331 * Move all CQEs from the HWCQ into the SWCQ.
1cf24dce
SW
332 * Deal with out-of-order and/or completions that complete
333 * prior unsignalled WRs.
cfdda9d7 334 */
2df19e19 335void c4iw_flush_hw_cq(struct c4iw_cq *chp, struct c4iw_qp *flush_qhp)
cfdda9d7 336{
1cf24dce
SW
337 struct t4_cqe *hw_cqe, *swcqe, read_cqe;
338 struct c4iw_qp *qhp;
339 struct t4_swsqe *swsqe;
cfdda9d7
SW
340 int ret;
341
548ddb19 342 pr_debug("cqid 0x%x\n", chp->cq.cqid);
1cf24dce
SW
343 ret = t4_next_hw_cqe(&chp->cq, &hw_cqe);
344
345 /*
346 * This logic is similar to poll_cq(), but not quite the same
347 * unfortunately. Need to move pertinent HW CQEs to the SW CQ but
348 * also do any translation magic that poll_cq() normally does.
349 */
cfdda9d7 350 while (!ret) {
1cf24dce
SW
351 qhp = get_qhp(chp->rhp, CQE_QPID(hw_cqe));
352
353 /*
354 * drop CQEs with no associated QP
355 */
356 if (qhp == NULL)
357 goto next_cqe;
358
2df19e19
BP
359 if (flush_qhp != qhp) {
360 spin_lock(&qhp->lock);
361
362 if (qhp->wq.flushed == 1)
363 goto next_cqe;
364 }
365
1cf24dce
SW
366 if (CQE_OPCODE(hw_cqe) == FW_RI_TERMINATE)
367 goto next_cqe;
368
369 if (CQE_OPCODE(hw_cqe) == FW_RI_READ_RESP) {
370
70b9c660
SW
371 /* If we have reached here because of async
372 * event or other error, and have egress error
373 * then drop
374 */
375 if (CQE_TYPE(hw_cqe) == 1)
376 goto next_cqe;
377
378 /* drop peer2peer RTR reads.
1cf24dce
SW
379 */
380 if (CQE_WRID_STAG(hw_cqe) == 1)
381 goto next_cqe;
382
383 /*
384 * Eat completions for unsignaled read WRs.
385 */
386 if (!qhp->wq.sq.oldest_read->signaled) {
387 advance_oldest_read(&qhp->wq);
388 goto next_cqe;
389 }
390
391 /*
392 * Don't write to the HWCQ, create a new read req CQE
393 * in local memory and move it into the swcq.
394 */
395 create_read_req_cqe(&qhp->wq, hw_cqe, &read_cqe);
396 hw_cqe = &read_cqe;
397 advance_oldest_read(&qhp->wq);
398 }
399
400 /* if its a SQ completion, then do the magic to move all the
401 * unsignaled and now in-order completions into the swcq.
402 */
403 if (SQ_TYPE(hw_cqe)) {
404 swsqe = &qhp->wq.sq.sw_sq[CQE_WRID_SQ_IDX(hw_cqe)];
405 swsqe->cqe = *hw_cqe;
406 swsqe->complete = 1;
407 flush_completed_wrs(&qhp->wq, &chp->cq);
408 } else {
409 swcqe = &chp->cq.sw_queue[chp->cq.sw_pidx];
410 *swcqe = *hw_cqe;
a56c66e8 411 swcqe->header |= cpu_to_be32(CQE_SWCQE_V(1));
1cf24dce
SW
412 t4_swcq_produce(&chp->cq);
413 }
414next_cqe:
415 t4_hwcq_consume(&chp->cq);
416 ret = t4_next_hw_cqe(&chp->cq, &hw_cqe);
2df19e19
BP
417 if (qhp && flush_qhp != qhp)
418 spin_unlock(&qhp->lock);
cfdda9d7
SW
419 }
420}
421
422static int cqe_completes_wr(struct t4_cqe *cqe, struct t4_wq *wq)
423{
96a236ed 424 if (DRAIN_CQE(cqe)) {
c058ecf6
SW
425 WARN_ONCE(1, "Unexpected DRAIN CQE qp id %u!\n", wq->sq.qid);
426 return 0;
427 }
428
cfdda9d7
SW
429 if (CQE_OPCODE(cqe) == FW_RI_TERMINATE)
430 return 0;
431
432 if ((CQE_OPCODE(cqe) == FW_RI_RDMA_WRITE) && RQ_TYPE(cqe))
433 return 0;
434
435 if ((CQE_OPCODE(cqe) == FW_RI_READ_RESP) && SQ_TYPE(cqe))
436 return 0;
437
438 if (CQE_SEND_OPCODE(cqe) && RQ_TYPE(cqe) && t4_rq_empty(wq))
439 return 0;
440 return 1;
441}
442
cfdda9d7
SW
443void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count)
444{
445 struct t4_cqe *cqe;
446 u32 ptr;
447
448 *count = 0;
548ddb19 449 pr_debug("count zero %d\n", *count);
cfdda9d7
SW
450 ptr = cq->sw_cidx;
451 while (ptr != cq->sw_pidx) {
452 cqe = &cq->sw_queue[ptr];
453 if (RQ_TYPE(cqe) && (CQE_OPCODE(cqe) != FW_RI_READ_RESP) &&
c34c97ad 454 (CQE_QPID(cqe) == wq->sq.qid) && cqe_completes_wr(cqe, wq))
cfdda9d7
SW
455 (*count)++;
456 if (++ptr == cq->size)
457 ptr = 0;
458 }
548ddb19 459 pr_debug("cq %p count %d\n", cq, *count);
cfdda9d7
SW
460}
461
6a0b6174
RR
462static void post_pending_srq_wrs(struct t4_srq *srq)
463{
464 struct t4_srq_pending_wr *pwr;
465 u16 idx = 0;
466
467 while (srq->pending_in_use) {
468 pwr = &srq->pending_wrs[srq->pending_cidx];
469 srq->sw_rq[srq->pidx].wr_id = pwr->wr_id;
470 srq->sw_rq[srq->pidx].valid = 1;
471
472 pr_debug("%s posting pending cidx %u pidx %u wq_pidx %u in_use %u rq_size %u wr_id %llx\n",
473 __func__,
474 srq->cidx, srq->pidx, srq->wq_pidx,
475 srq->in_use, srq->size,
476 (unsigned long long)pwr->wr_id);
477
478 c4iw_copy_wr_to_srq(srq, &pwr->wqe, pwr->len16);
479 t4_srq_consume_pending_wr(srq);
480 t4_srq_produce(srq, pwr->len16);
481 idx += DIV_ROUND_UP(pwr->len16 * 16, T4_EQ_ENTRY_SIZE);
482 }
483
484 if (idx) {
485 t4_ring_srq_db(srq, idx, pwr->len16, &pwr->wqe);
486 srq->queue[srq->size].status.host_wq_pidx =
487 srq->wq_pidx;
488 }
489}
490
491static u64 reap_srq_cqe(struct t4_cqe *hw_cqe, struct t4_srq *srq)
492{
493 int rel_idx = CQE_ABS_RQE_IDX(hw_cqe) - srq->rqt_abs_idx;
494 u64 wr_id;
495
496 srq->sw_rq[rel_idx].valid = 0;
497 wr_id = srq->sw_rq[rel_idx].wr_id;
498
499 if (rel_idx == srq->cidx) {
500 pr_debug("%s in order cqe rel_idx %u cidx %u pidx %u wq_pidx %u in_use %u rq_size %u wr_id %llx\n",
501 __func__, rel_idx, srq->cidx, srq->pidx,
502 srq->wq_pidx, srq->in_use, srq->size,
503 (unsigned long long)srq->sw_rq[rel_idx].wr_id);
504 t4_srq_consume(srq);
505 while (srq->ooo_count && !srq->sw_rq[srq->cidx].valid) {
506 pr_debug("%s eat ooo cidx %u pidx %u wq_pidx %u in_use %u rq_size %u ooo_count %u wr_id %llx\n",
507 __func__, srq->cidx, srq->pidx,
508 srq->wq_pidx, srq->in_use,
509 srq->size, srq->ooo_count,
510 (unsigned long long)
511 srq->sw_rq[srq->cidx].wr_id);
512 t4_srq_consume_ooo(srq);
513 }
514 if (srq->ooo_count == 0 && srq->pending_in_use)
515 post_pending_srq_wrs(srq);
516 } else {
517 pr_debug("%s ooo cqe rel_idx %u cidx %u pidx %u wq_pidx %u in_use %u rq_size %u ooo_count %u wr_id %llx\n",
518 __func__, rel_idx, srq->cidx,
519 srq->pidx, srq->wq_pidx,
520 srq->in_use, srq->size,
521 srq->ooo_count,
522 (unsigned long long)srq->sw_rq[rel_idx].wr_id);
523 t4_srq_produce_ooo(srq);
524 }
525 return wr_id;
526}
527
cfdda9d7
SW
528/*
529 * poll_cq
530 *
531 * Caller must:
532 * check the validity of the first CQE,
533 * supply the wq assicated with the qpid.
534 *
535 * credit: cq credit to return to sge.
536 * cqe_flushed: 1 iff the CQE is flushed.
537 * cqe: copy of the polled CQE.
538 *
539 * return value:
540 * 0 CQE returned ok.
541 * -EAGAIN CQE skipped, try again.
542 * -EOVERFLOW CQ overflow detected.
543 */
544static int poll_cq(struct t4_wq *wq, struct t4_cq *cq, struct t4_cqe *cqe,
6a0b6174
RR
545 u8 *cqe_flushed, u64 *cookie, u32 *credit,
546 struct t4_srq *srq)
cfdda9d7
SW
547{
548 int ret = 0;
549 struct t4_cqe *hw_cqe, read_cqe;
550
551 *cqe_flushed = 0;
552 *credit = 0;
553 ret = t4_next_cqe(cq, &hw_cqe);
554 if (ret)
555 return ret;
556
548ddb19
BP
557 pr_debug("CQE OVF %u qpid 0x%0x genbit %u type %u status 0x%0x opcode 0x%0x len 0x%0x wrid_hi_stag 0x%x wrid_low_msn 0x%x\n",
558 CQE_OVFBIT(hw_cqe), CQE_QPID(hw_cqe),
a9a42886
JP
559 CQE_GENBIT(hw_cqe), CQE_TYPE(hw_cqe), CQE_STATUS(hw_cqe),
560 CQE_OPCODE(hw_cqe), CQE_LEN(hw_cqe), CQE_WRID_HI(hw_cqe),
561 CQE_WRID_LOW(hw_cqe));
cfdda9d7
SW
562
563 /*
564 * skip cqe's not affiliated with a QP.
565 */
566 if (wq == NULL) {
567 ret = -EAGAIN;
568 goto skip_cqe;
569 }
570
1cf24dce
SW
571 /*
572 * skip hw cqe's if the wq is flushed.
573 */
574 if (wq->flushed && !SW_CQE(hw_cqe)) {
575 ret = -EAGAIN;
576 goto skip_cqe;
577 }
578
579 /*
580 * skip TERMINATE cqes...
581 */
582 if (CQE_OPCODE(hw_cqe) == FW_RI_TERMINATE) {
583 ret = -EAGAIN;
584 goto skip_cqe;
585 }
586
4fe7c296
SW
587 /*
588 * Special cqe for drain WR completions...
589 */
96a236ed 590 if (DRAIN_CQE(hw_cqe)) {
4fe7c296
SW
591 *cookie = CQE_DRAIN_COOKIE(hw_cqe);
592 *cqe = *hw_cqe;
593 goto skip_cqe;
594 }
595
cfdda9d7
SW
596 /*
597 * Gotta tweak READ completions:
598 * 1) the cqe doesn't contain the sq_wptr from the wr.
599 * 2) opcode not reflected from the wr.
600 * 3) read_len not reflected from the wr.
601 * 4) cq_type is RQ_TYPE not SQ_TYPE.
602 */
603 if (RQ_TYPE(hw_cqe) && (CQE_OPCODE(hw_cqe) == FW_RI_READ_RESP)) {
604
70b9c660
SW
605 /* If we have reached here because of async
606 * event or other error, and have egress error
607 * then drop
608 */
609 if (CQE_TYPE(hw_cqe) == 1) {
610 if (CQE_STATUS(hw_cqe))
6a0b6174 611 t4_set_wq_in_error(wq, 0);
70b9c660
SW
612 ret = -EAGAIN;
613 goto skip_cqe;
614 }
615
616 /* If this is an unsolicited read response, then the read
cfdda9d7
SW
617 * was generated by the kernel driver as part of peer-2-peer
618 * connection setup. So ignore the completion.
619 */
1cf24dce 620 if (CQE_WRID_STAG(hw_cqe) == 1) {
cfdda9d7 621 if (CQE_STATUS(hw_cqe))
6a0b6174 622 t4_set_wq_in_error(wq, 0);
cfdda9d7
SW
623 ret = -EAGAIN;
624 goto skip_cqe;
625 }
626
1cf24dce
SW
627 /*
628 * Eat completions for unsignaled read WRs.
629 */
630 if (!wq->sq.oldest_read->signaled) {
631 advance_oldest_read(wq);
632 ret = -EAGAIN;
633 goto skip_cqe;
634 }
635
cfdda9d7
SW
636 /*
637 * Don't write to the HWCQ, so create a new read req CQE
638 * in local memory.
639 */
640 create_read_req_cqe(wq, hw_cqe, &read_cqe);
641 hw_cqe = &read_cqe;
642 advance_oldest_read(wq);
643 }
644
645 if (CQE_STATUS(hw_cqe) || t4_wq_in_error(wq)) {
1cf24dce 646 *cqe_flushed = (CQE_STATUS(hw_cqe) == T4_ERR_SWFLUSH);
6a0b6174 647 t4_set_wq_in_error(wq, 0);
6ff0e343
SW
648 }
649
cfdda9d7
SW
650 /*
651 * RECV completion.
652 */
653 if (RQ_TYPE(hw_cqe)) {
654
655 /*
656 * HW only validates 4 bits of MSN. So we must validate that
657 * the MSN in the SEND is the next expected MSN. If its not,
658 * then we complete this with T4_ERR_MSN and mark the wq in
659 * error.
660 */
f55688c4
SW
661 if (unlikely(!CQE_STATUS(hw_cqe) &&
662 CQE_WRID_MSN(hw_cqe) != wq->rq.msn)) {
6a0b6174 663 t4_set_wq_in_error(wq, 0);
f55688c4 664 hw_cqe->header |= cpu_to_be32(CQE_STATUS_V(T4_ERR_MSN));
cfdda9d7
SW
665 }
666 goto proc_cqe;
667 }
668
669 /*
670 * If we get here its a send completion.
671 *
672 * Handle out of order completion. These get stuffed
673 * in the SW SQ. Then the SW SQ is walked to move any
674 * now in-order completions into the SW CQ. This handles
675 * 2 cases:
676 * 1) reaping unsignaled WRs when the first subsequent
677 * signaled WR is completed.
678 * 2) out of order read completions.
679 */
680 if (!SW_CQE(hw_cqe) && (CQE_WRID_SQ_IDX(hw_cqe) != wq->sq.cidx)) {
681 struct t4_swsqe *swsqe;
682
548ddb19
BP
683 pr_debug("out of order completion going in sw_sq at idx %u\n",
684 CQE_WRID_SQ_IDX(hw_cqe));
cfdda9d7
SW
685 swsqe = &wq->sq.sw_sq[CQE_WRID_SQ_IDX(hw_cqe)];
686 swsqe->cqe = *hw_cqe;
687 swsqe->complete = 1;
688 ret = -EAGAIN;
689 goto flush_wq;
690 }
691
692proc_cqe:
693 *cqe = *hw_cqe;
694
695 /*
696 * Reap the associated WR(s) that are freed up with this
697 * completion.
698 */
699 if (SQ_TYPE(hw_cqe)) {
1cf24dce 700 int idx = CQE_WRID_SQ_IDX(hw_cqe);
1cf24dce
SW
701
702 /*
703 * Account for any unsignaled completions completed by
704 * this signaled completion. In this case, cidx points
705 * to the first unsignaled one, and idx points to the
706 * signaled one. So adjust in_use based on this delta.
707 * if this is not completing any unsigned wrs, then the
27ca34f5 708 * delta will be 0. Handle wrapping also!
1cf24dce 709 */
27ca34f5
SW
710 if (idx < wq->sq.cidx)
711 wq->sq.in_use -= wq->sq.size + idx - wq->sq.cidx;
712 else
713 wq->sq.in_use -= idx - wq->sq.cidx;
1cf24dce
SW
714
715 wq->sq.cidx = (uint16_t)idx;
548ddb19 716 pr_debug("completing sq idx %u\n", wq->sq.cidx);
cfdda9d7 717 *cookie = wq->sq.sw_sq[wq->sq.cidx].wr_id;
7730b4c7
HS
718 if (c4iw_wr_log)
719 c4iw_log_wr_stats(wq, hw_cqe);
cfdda9d7
SW
720 t4_sq_consume(wq);
721 } else {
6a0b6174
RR
722 if (!srq) {
723 pr_debug("completing rq idx %u\n", wq->rq.cidx);
724 *cookie = wq->rq.sw_rq[wq->rq.cidx].wr_id;
725 if (c4iw_wr_log)
726 c4iw_log_wr_stats(wq, hw_cqe);
727 t4_rq_consume(wq);
728 } else {
729 *cookie = reap_srq_cqe(hw_cqe, srq);
730 }
731 wq->rq.msn++;
1cf24dce 732 goto skip_cqe;
cfdda9d7
SW
733 }
734
735flush_wq:
736 /*
737 * Flush any completed cqes that are now in-order.
738 */
739 flush_completed_wrs(wq, cq);
740
741skip_cqe:
742 if (SW_CQE(hw_cqe)) {
548ddb19
BP
743 pr_debug("cq %p cqid 0x%x skip sw cqe cidx %u\n",
744 cq, cq->cqid, cq->sw_cidx);
cfdda9d7
SW
745 t4_swcq_consume(cq);
746 } else {
548ddb19
BP
747 pr_debug("cq %p cqid 0x%x skip hw cqe cidx %u\n",
748 cq, cq->cqid, cq->cidx);
cfdda9d7
SW
749 t4_hwcq_consume(cq);
750 }
751 return ret;
752}
753
4ab39e2f 754static int __c4iw_poll_cq_one(struct c4iw_cq *chp, struct c4iw_qp *qhp,
6a0b6174 755 struct ib_wc *wc, struct c4iw_srq *srq)
cfdda9d7 756{
3f649ab7 757 struct t4_cqe cqe;
4ab39e2f 758 struct t4_wq *wq = qhp ? &qhp->wq : NULL;
cfdda9d7
SW
759 u32 credit = 0;
760 u8 cqe_flushed;
761 u64 cookie = 0;
762 int ret;
763
6a0b6174
RR
764 ret = poll_cq(wq, &(chp->cq), &cqe, &cqe_flushed, &cookie, &credit,
765 srq ? &srq->wq : NULL);
cfdda9d7
SW
766 if (ret)
767 goto out;
768
769 wc->wr_id = cookie;
cab30a98 770 wc->qp = &qhp->ibqp;
cfdda9d7
SW
771 wc->vendor_err = CQE_STATUS(&cqe);
772 wc->wc_flags = 0;
773
6a0b6174
RR
774 /*
775 * Simulate a SRQ_LIMIT_REACHED HW notification if required.
776 */
777 if (srq && !(srq->flags & T4_SRQ_LIMIT_SUPPORT) && srq->armed &&
778 srq->wq.in_use < srq->srq_limit)
779 c4iw_dispatch_srq_limit_reached_event(srq);
780
548ddb19
BP
781 pr_debug("qpid 0x%x type %d opcode %d status 0x%x len %u wrid hi 0x%x lo 0x%x cookie 0x%llx\n",
782 CQE_QPID(&cqe),
a9a42886
JP
783 CQE_TYPE(&cqe), CQE_OPCODE(&cqe),
784 CQE_STATUS(&cqe), CQE_LEN(&cqe),
785 CQE_WRID_HI(&cqe), CQE_WRID_LOW(&cqe),
786 (unsigned long long)cookie);
cfdda9d7
SW
787
788 if (CQE_TYPE(&cqe) == 0) {
789 if (!CQE_STATUS(&cqe))
790 wc->byte_len = CQE_LEN(&cqe);
791 else
792 wc->byte_len = 0;
b9855f4c
PBT
793
794 switch (CQE_OPCODE(&cqe)) {
795 case FW_RI_SEND:
796 wc->opcode = IB_WC_RECV;
797 break;
798 case FW_RI_SEND_WITH_INV:
799 case FW_RI_SEND_WITH_SE_INV:
800 wc->opcode = IB_WC_RECV;
cfdda9d7
SW
801 wc->ex.invalidate_rkey = CQE_WRID_STAG(&cqe);
802 wc->wc_flags |= IB_WC_WITH_INVALIDATE;
5c6b2aaf 803 c4iw_invalidate_mr(qhp->rhp, wc->ex.invalidate_rkey);
b9855f4c
PBT
804 break;
805 case FW_RI_WRITE_IMMEDIATE:
806 wc->opcode = IB_WC_RECV_RDMA_WITH_IMM;
807 wc->ex.imm_data = CQE_IMM_DATA(&cqe);
808 wc->wc_flags |= IB_WC_WITH_IMM;
809 break;
810 default:
811 pr_err("Unexpected opcode %d in the CQE received for QPID=0x%0x\n",
812 CQE_OPCODE(&cqe), CQE_QPID(&cqe));
813 ret = -EINVAL;
814 goto out;
cfdda9d7
SW
815 }
816 } else {
817 switch (CQE_OPCODE(&cqe)) {
b9855f4c 818 case FW_RI_WRITE_IMMEDIATE:
cfdda9d7
SW
819 case FW_RI_RDMA_WRITE:
820 wc->opcode = IB_WC_RDMA_WRITE;
821 break;
822 case FW_RI_READ_REQ:
823 wc->opcode = IB_WC_RDMA_READ;
824 wc->byte_len = CQE_LEN(&cqe);
825 break;
826 case FW_RI_SEND_WITH_INV:
827 case FW_RI_SEND_WITH_SE_INV:
828 wc->opcode = IB_WC_SEND;
829 wc->wc_flags |= IB_WC_WITH_INVALIDATE;
830 break;
831 case FW_RI_SEND:
832 case FW_RI_SEND_WITH_SE:
833 wc->opcode = IB_WC_SEND;
834 break;
cfdda9d7
SW
835
836 case FW_RI_LOCAL_INV:
837 wc->opcode = IB_WC_LOCAL_INV;
838 break;
839 case FW_RI_FAST_REGISTER:
d3cfd002 840 wc->opcode = IB_WC_REG_MR;
49b53a93
SW
841
842 /* Invalidate the MR if the fastreg failed */
843 if (CQE_STATUS(&cqe) != T4_ERR_SUCCESS)
5c6b2aaf
SW
844 c4iw_invalidate_mr(qhp->rhp,
845 CQE_WRID_FR_STAG(&cqe));
cfdda9d7
SW
846 break;
847 default:
700456bd 848 pr_err("Unexpected opcode %d in the CQE received for QPID=0x%0x\n",
cfdda9d7
SW
849 CQE_OPCODE(&cqe), CQE_QPID(&cqe));
850 ret = -EINVAL;
851 goto out;
852 }
853 }
854
855 if (cqe_flushed)
856 wc->status = IB_WC_WR_FLUSH_ERR;
857 else {
858
859 switch (CQE_STATUS(&cqe)) {
860 case T4_ERR_SUCCESS:
861 wc->status = IB_WC_SUCCESS;
862 break;
863 case T4_ERR_STAG:
864 wc->status = IB_WC_LOC_ACCESS_ERR;
865 break;
866 case T4_ERR_PDID:
867 wc->status = IB_WC_LOC_PROT_ERR;
868 break;
869 case T4_ERR_QPID:
870 case T4_ERR_ACCESS:
871 wc->status = IB_WC_LOC_ACCESS_ERR;
872 break;
873 case T4_ERR_WRAP:
874 wc->status = IB_WC_GENERAL_ERR;
875 break;
876 case T4_ERR_BOUND:
877 wc->status = IB_WC_LOC_LEN_ERR;
878 break;
879 case T4_ERR_INVALIDATE_SHARED_MR:
880 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
881 wc->status = IB_WC_MW_BIND_ERR;
882 break;
883 case T4_ERR_CRC:
884 case T4_ERR_MARKER:
885 case T4_ERR_PDU_LEN_ERR:
886 case T4_ERR_OUT_OF_RQE:
887 case T4_ERR_DDP_VERSION:
888 case T4_ERR_RDMA_VERSION:
889 case T4_ERR_DDP_QUEUE_NUM:
890 case T4_ERR_MSN:
891 case T4_ERR_TBIT:
892 case T4_ERR_MO:
893 case T4_ERR_MSN_RANGE:
894 case T4_ERR_IRD_OVERFLOW:
895 case T4_ERR_OPCODE:
6ff0e343 896 case T4_ERR_INTERNAL_ERR:
cfdda9d7
SW
897 wc->status = IB_WC_FATAL_ERR;
898 break;
899 case T4_ERR_SWFLUSH:
900 wc->status = IB_WC_WR_FLUSH_ERR;
901 break;
902 default:
700456bd 903 pr_err("Unexpected cqe_status 0x%x for QPID=0x%0x\n",
cfdda9d7 904 CQE_STATUS(&cqe), CQE_QPID(&cqe));
3661df17 905 wc->status = IB_WC_FATAL_ERR;
cfdda9d7
SW
906 }
907 }
908out:
4ab39e2f
BVA
909 return ret;
910}
911
912/*
913 * Get one cq entry from c4iw and map it to openib.
914 *
915 * Returns:
916 * 0 cqe returned
917 * -ENODATA EMPTY;
918 * -EAGAIN caller must try again
919 * any other -errno fatal error
920 */
921static int c4iw_poll_cq_one(struct c4iw_cq *chp, struct ib_wc *wc)
922{
6a0b6174 923 struct c4iw_srq *srq = NULL;
4ab39e2f
BVA
924 struct c4iw_qp *qhp = NULL;
925 struct t4_cqe *rd_cqe;
926 int ret;
927
928 ret = t4_next_cqe(&chp->cq, &rd_cqe);
929
930 if (ret)
931 return ret;
932
933 qhp = get_qhp(chp->rhp, CQE_QPID(rd_cqe));
934 if (qhp) {
935 spin_lock(&qhp->lock);
6a0b6174
RR
936 srq = qhp->srq;
937 if (srq)
938 spin_lock(&srq->lock);
939 ret = __c4iw_poll_cq_one(chp, qhp, wc, srq);
cfdda9d7 940 spin_unlock(&qhp->lock);
6a0b6174
RR
941 if (srq)
942 spin_unlock(&srq->lock);
4ab39e2f 943 } else {
6a0b6174 944 ret = __c4iw_poll_cq_one(chp, NULL, wc, NULL);
4ab39e2f 945 }
cfdda9d7
SW
946 return ret;
947}
948
949int c4iw_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc)
950{
951 struct c4iw_cq *chp;
952 unsigned long flags;
953 int npolled;
954 int err = 0;
955
956 chp = to_c4iw_cq(ibcq);
957
958 spin_lock_irqsave(&chp->lock, flags);
959 for (npolled = 0; npolled < num_entries; ++npolled) {
960 do {
961 err = c4iw_poll_cq_one(chp, wc + npolled);
962 } while (err == -EAGAIN);
963 if (err)
964 break;
965 }
966 spin_unlock_irqrestore(&chp->lock, flags);
967 return !err || err == -ENODATA ? npolled : err;
968}
969
2638a323
DU
970void c4iw_cq_rem_ref(struct c4iw_cq *chp)
971{
972 if (refcount_dec_and_test(&chp->refcnt))
973 complete(&chp->cq_rel_comp);
974}
975
43d781b9 976int c4iw_destroy_cq(struct ib_cq *ib_cq, struct ib_udata *udata)
cfdda9d7
SW
977{
978 struct c4iw_cq *chp;
979 struct c4iw_ucontext *ucontext;
980
548ddb19 981 pr_debug("ib_cq %p\n", ib_cq);
cfdda9d7
SW
982 chp = to_c4iw_cq(ib_cq);
983
52e124c2 984 xa_erase_irq(&chp->rhp->cqs, chp->cq.cqid);
2638a323
DU
985 c4iw_cq_rem_ref(chp);
986 wait_for_completion(&chp->cq_rel_comp);
cfdda9d7 987
bdeacabd
SR
988 ucontext = rdma_udata_to_drv_context(udata, struct c4iw_ucontext,
989 ibucontext);
cfdda9d7 990 destroy_cq(&chp->rhp->rdev, &chp->cq,
dd6b0241 991 ucontext ? &ucontext->uctx : &chp->cq.rdev->uctx,
13ce8317 992 chp->destroy_skb, chp->wr_waitp);
2015f26c 993 c4iw_put_wr_wait(chp->wr_waitp);
43d781b9 994 return 0;
cfdda9d7
SW
995}
996
e39afe3d
LR
997int c4iw_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr,
998 struct ib_udata *udata)
cfdda9d7 999{
e39afe3d 1000 struct ib_device *ibdev = ibcq->device;
bcf4c1ea
MB
1001 int entries = attr->cqe;
1002 int vector = attr->comp_vector;
e39afe3d
LR
1003 struct c4iw_dev *rhp = to_c4iw_dev(ibcq->device);
1004 struct c4iw_cq *chp = to_c4iw_cq(ibcq);
65ca8d96 1005 struct c4iw_create_cq ucmd;
cfdda9d7 1006 struct c4iw_create_cq_resp uresp;
dd6b0241 1007 int ret, wr_len;
1973e8b8 1008 size_t memsize, hwentries;
cfdda9d7 1009 struct c4iw_mm_entry *mm, *mm2;
ff23dfa1
SR
1010 struct c4iw_ucontext *ucontext = rdma_udata_to_drv_context(
1011 udata, struct c4iw_ucontext, ibucontext);
cfdda9d7 1012
548ddb19 1013 pr_debug("ib_dev %p entries %d\n", ibdev, entries);
bcf4c1ea 1014 if (attr->flags)
1c407cb5 1015 return -EOPNOTSUPP;
cfdda9d7 1016
6d8285e6
KH
1017 if (entries < 1 || entries > ibdev->attrs.max_cqe)
1018 return -EINVAL;
1019
cf38be6d 1020 if (vector >= rhp->rdev.lldi.nciq)
e39afe3d 1021 return -EINVAL;
cf38be6d 1022
ff23dfa1 1023 if (udata) {
65ca8d96
RR
1024 if (udata->inlen < sizeof(ucmd))
1025 ucontext->is_32b_cqe = 1;
1026 }
1027
2015f26c 1028 chp->wr_waitp = c4iw_alloc_wr_wait(GFP_KERNEL);
13ce8317
SW
1029 if (!chp->wr_waitp) {
1030 ret = -ENOMEM;
1031 goto err_free_chp;
1032 }
1033 c4iw_init_wr_wait(chp->wr_waitp);
cfdda9d7 1034
dd6b0241
H
1035 wr_len = sizeof(struct fw_ri_res_wr) + sizeof(struct fw_ri_res);
1036 chp->destroy_skb = alloc_skb(wr_len, GFP_KERNEL);
1037 if (!chp->destroy_skb) {
1038 ret = -ENOMEM;
13ce8317 1039 goto err_free_wr_wait;
dd6b0241
H
1040 }
1041
cfdda9d7
SW
1042 /* account for the status page. */
1043 entries++;
1044
895cf5f3
SW
1045 /* IQ needs one extra entry to differentiate full vs empty. */
1046 entries++;
1047
cfdda9d7
SW
1048 /*
1049 * entries must be multiple of 16 for HW.
1050 */
1051 entries = roundup(entries, 16);
1973e8b8
SW
1052
1053 /*
1054 * Make actual HW queue 2x to avoid cdix_inc overflows.
1055 */
04e10e21 1056 hwentries = min(entries * 2, rhp->rdev.hw_queue.t4_max_iq_size);
1973e8b8
SW
1057
1058 /*
1059 * Make HW queue at least 64 entries so GTS updates aren't too
1060 * frequent.
1061 */
1062 if (hwentries < 64)
1063 hwentries = 64;
1064
65ca8d96
RR
1065 memsize = hwentries * ((ucontext && ucontext->is_32b_cqe) ?
1066 (sizeof(*chp->cq.queue) / 2) : sizeof(*chp->cq.queue));
cfdda9d7
SW
1067
1068 /*
1069 * memsize must be a multiple of the page size if its a user cq.
1070 */
ff23dfa1 1071 if (udata)
cfdda9d7 1072 memsize = roundup(memsize, PAGE_SIZE);
65ca8d96 1073
1973e8b8 1074 chp->cq.size = hwentries;
cfdda9d7 1075 chp->cq.memsize = memsize;
cf38be6d 1076 chp->cq.vector = vector;
cfdda9d7
SW
1077
1078 ret = create_cq(&rhp->rdev, &chp->cq,
13ce8317
SW
1079 ucontext ? &ucontext->uctx : &rhp->rdev.uctx,
1080 chp->wr_waitp);
cfdda9d7 1081 if (ret)
13ce8317 1082 goto err_free_skb;
cfdda9d7
SW
1083
1084 chp->rhp = rhp;
1085 chp->cq.size--; /* status page */
1973e8b8 1086 chp->ibcq.cqe = entries - 2;
cfdda9d7 1087 spin_lock_init(&chp->lock);
581bbe2c 1088 spin_lock_init(&chp->comp_handler_lock);
7183451f 1089 refcount_set(&chp->refcnt, 1);
2638a323 1090 init_completion(&chp->cq_rel_comp);
52e124c2 1091 ret = xa_insert_irq(&rhp->cqs, chp->cq.cqid, chp, GFP_KERNEL);
cfdda9d7 1092 if (ret)
13ce8317 1093 goto err_destroy_cq;
cfdda9d7
SW
1094
1095 if (ucontext) {
6ebedacb 1096 ret = -ENOMEM;
34d56893 1097 mm = kmalloc(sizeof(*mm), GFP_KERNEL);
cfdda9d7 1098 if (!mm)
13ce8317 1099 goto err_remove_handle;
34d56893 1100 mm2 = kmalloc(sizeof(*mm2), GFP_KERNEL);
cfdda9d7 1101 if (!mm2)
13ce8317 1102 goto err_free_mm;
cfdda9d7 1103
65ca8d96 1104 memset(&uresp, 0, sizeof(uresp));
cfdda9d7
SW
1105 uresp.qid_mask = rhp->rdev.cqmask;
1106 uresp.cqid = chp->cq.cqid;
1107 uresp.size = chp->cq.size;
1108 uresp.memsize = chp->cq.memsize;
1109 spin_lock(&ucontext->mmap_lock);
1110 uresp.key = ucontext->key;
1111 ucontext->key += PAGE_SIZE;
1112 uresp.gts_key = ucontext->key;
1113 ucontext->key += PAGE_SIZE;
65ca8d96
RR
1114 /* communicate to the userspace that
1115 * kernel driver supports 64B CQE
1116 */
1117 uresp.flags |= C4IW_64B_CQE;
1118
cfdda9d7 1119 spin_unlock(&ucontext->mmap_lock);
b6f04d3d 1120 ret = ib_copy_to_udata(udata, &uresp,
65ca8d96
RR
1121 ucontext->is_32b_cqe ?
1122 sizeof(uresp) - sizeof(uresp.flags) :
1123 sizeof(uresp));
cfdda9d7 1124 if (ret)
13ce8317 1125 goto err_free_mm2;
cfdda9d7
SW
1126
1127 mm->key = uresp.key;
1128 mm->addr = virt_to_phys(chp->cq.queue);
1129 mm->len = chp->cq.memsize;
1130 insert_mmap(ucontext, mm);
1131
1132 mm2->key = uresp.gts_key;
74217d4c 1133 mm2->addr = chp->cq.bar2_pa;
cfdda9d7
SW
1134 mm2->len = PAGE_SIZE;
1135 insert_mmap(ucontext, mm2);
1136 }
e39afe3d 1137
cae626b9
LR
1138 pr_debug("cqid 0x%0x chp %p size %u memsize %zu, dma_addr %pad\n",
1139 chp->cq.cqid, chp, chp->cq.size, chp->cq.memsize,
1140 &chp->cq.dma_addr);
e39afe3d 1141 return 0;
13ce8317 1142err_free_mm2:
cfdda9d7 1143 kfree(mm2);
13ce8317 1144err_free_mm:
cfdda9d7 1145 kfree(mm);
13ce8317 1146err_remove_handle:
52e124c2 1147 xa_erase_irq(&rhp->cqs, chp->cq.cqid);
13ce8317 1148err_destroy_cq:
cfdda9d7 1149 destroy_cq(&chp->rhp->rdev, &chp->cq,
dd6b0241 1150 ucontext ? &ucontext->uctx : &rhp->rdev.uctx,
13ce8317
SW
1151 chp->destroy_skb, chp->wr_waitp);
1152err_free_skb:
dd6b0241 1153 kfree_skb(chp->destroy_skb);
13ce8317 1154err_free_wr_wait:
2015f26c 1155 c4iw_put_wr_wait(chp->wr_waitp);
13ce8317 1156err_free_chp:
e39afe3d 1157 return ret;
cfdda9d7
SW
1158}
1159
cfdda9d7
SW
1160int c4iw_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags)
1161{
1162 struct c4iw_cq *chp;
cff069b7 1163 int ret = 0;
cfdda9d7
SW
1164 unsigned long flag;
1165
1166 chp = to_c4iw_cq(ibcq);
1167 spin_lock_irqsave(&chp->lock, flag);
cff069b7
BP
1168 t4_arm_cq(&chp->cq,
1169 (flags & IB_CQ_SOLICITED_MASK) == IB_CQ_SOLICITED);
1170 if (flags & IB_CQ_REPORT_MISSED_EVENTS)
1171 ret = t4_cq_notempty(&chp->cq);
cfdda9d7 1172 spin_unlock_irqrestore(&chp->lock, flag);
cfdda9d7
SW
1173 return ret;
1174}
6a0b6174
RR
1175
1176void c4iw_flush_srqidx(struct c4iw_qp *qhp, u32 srqidx)
1177{
1178 struct c4iw_cq *rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
1179 unsigned long flag;
1180
1181 /* locking heirarchy: cq lock first, then qp lock. */
1182 spin_lock_irqsave(&rchp->lock, flag);
1183 spin_lock(&qhp->lock);
1184
1185 /* create a SRQ RECV CQE for srqidx */
1186 insert_recv_cqe(&qhp->wq, &rchp->cq, srqidx);
1187
1188 spin_unlock(&qhp->lock);
1189 spin_unlock_irqrestore(&rchp->lock, flag);
1190}