blob: bc522a9b2bfa4b07285ce0d31b6dbd1db1c9f314 [file] [log] [blame]
Steve Wisecfdda9d2010-04-21 15:30:06 -07001/*
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
33#include "iw_cxgb4.h"
34
35static int destroy_cq(struct c4iw_rdev *rdev, struct t4_cq *cq,
Hariprasad Sdd6b0242016-06-10 01:05:17 +053036 struct c4iw_dev_ucontext *uctx, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -070037{
38 struct fw_ri_res_wr *res_wr;
39 struct fw_ri_res *res;
40 int wr_len;
41 struct c4iw_wr_wait wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -070042 int ret;
43
44 wr_len = sizeof *res_wr + sizeof *res;
Steve Wisecfdda9d2010-04-21 15:30:06 -070045 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
46
47 res_wr = (struct fw_ri_res_wr *)__skb_put(skb, wr_len);
48 memset(res_wr, 0, wr_len);
49 res_wr->op_nres = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +053050 FW_WR_OP_V(FW_RI_RES_WR) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +053051 FW_RI_RES_WR_NRES_V(1) |
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +053052 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -070053 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
Hariprasad S6198dd82015-04-22 01:44:59 +053054 res_wr->cookie = (uintptr_t)&wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -070055 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
60 c4iw_init_wr_wait(&wr_wait);
61 ret = c4iw_ofld_send(rdev, skb);
62 if (!ret) {
Steve Wiseaadc4df2010-09-10 11:15:25 -050063 ret = c4iw_wait_for_reply(rdev, &wr_wait, 0, 0, __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -070064 }
65
66 kfree(cq->sw_queue);
67 dma_free_coherent(&(rdev->lldi.pdev->dev),
68 cq->memsize, cq->queue,
FUJITA Tomonorif38926a2010-06-03 05:37:50 +000069 dma_unmap_addr(cq, mapping));
Steve Wisecfdda9d2010-04-21 15:30:06 -070070 c4iw_put_cqid(rdev, cq->cqid, uctx);
71 return ret;
72}
73
74static int create_cq(struct c4iw_rdev *rdev, struct t4_cq *cq,
75 struct c4iw_dev_ucontext *uctx)
76{
77 struct fw_ri_res_wr *res_wr;
78 struct fw_ri_res *res;
79 int wr_len;
80 int user = (uctx != &rdev->uctx);
81 struct c4iw_wr_wait wr_wait;
82 int ret;
83 struct sk_buff *skb;
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 }
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000104 dma_unmap_addr_set(cq, mapping, cq->dma_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700105 memset(cq->queue, 0, cq->memsize);
106
107 /* build fw_ri_res_wr */
108 wr_len = sizeof *res_wr + sizeof *res;
109
David Rientjesd3c814e2010-07-21 02:44:56 +0000110 skb = alloc_skb(wr_len, GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700111 if (!skb) {
112 ret = -ENOMEM;
113 goto err4;
114 }
115 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
116
117 res_wr = (struct fw_ri_res_wr *)__skb_put(skb, wr_len);
118 memset(res_wr, 0, wr_len);
119 res_wr->op_nres = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530120 FW_WR_OP_V(FW_RI_RES_WR) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530121 FW_RI_RES_WR_NRES_V(1) |
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530122 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700123 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
Hariprasad S6198dd82015-04-22 01:44:59 +0530124 res_wr->cookie = (uintptr_t)&wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700125 res = res_wr->res;
126 res->u.cq.restype = FW_RI_RES_TYPE_CQ;
127 res->u.cq.op = FW_RI_RES_OP_WRITE;
128 res->u.cq.iqid = cpu_to_be32(cq->cqid);
129 res->u.cq.iqandst_to_iqandstindex = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530130 FW_RI_RES_WR_IQANUS_V(0) |
131 FW_RI_RES_WR_IQANUD_V(1) |
132 FW_RI_RES_WR_IQANDST_F |
133 FW_RI_RES_WR_IQANDSTINDEX_V(
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530134 rdev->lldi.ciq_ids[cq->vector]));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700135 res->u.cq.iqdroprss_to_iqesize = cpu_to_be16(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530136 FW_RI_RES_WR_IQDROPRSS_F |
137 FW_RI_RES_WR_IQPCIECH_V(2) |
138 FW_RI_RES_WR_IQINTCNTTHRESH_V(0) |
139 FW_RI_RES_WR_IQO_F |
140 FW_RI_RES_WR_IQESIZE_V(1));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700141 res->u.cq.iqsize = cpu_to_be16(cq->size);
142 res->u.cq.iqaddr = cpu_to_be64(cq->dma_addr);
143
144 c4iw_init_wr_wait(&wr_wait);
145
146 ret = c4iw_ofld_send(rdev, skb);
147 if (ret)
148 goto err4;
149 PDBG("%s wait_event wr_wait %p\n", __func__, &wr_wait);
Steve Wiseaadc4df2010-09-10 11:15:25 -0500150 ret = c4iw_wait_for_reply(rdev, &wr_wait, 0, 0, __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700151 if (ret)
152 goto err4;
153
154 cq->gen = 1;
Hariprasad S74217d42015-06-09 18:23:12 +0530155 cq->gts = rdev->lldi.gts_reg;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700156 cq->rdev = rdev;
Hariprasad S09ece8b2015-04-22 01:45:00 +0530157
Hariprasad S74217d42015-06-09 18:23:12 +0530158 cq->bar2_va = c4iw_bar2_addrs(rdev, cq->cqid, T4_BAR2_QTYPE_INGRESS,
159 &cq->bar2_qid,
160 user ? &cq->bar2_pa : NULL);
Hariprasad S32cc92c2016-04-05 10:23:48 +0530161 if (user && !cq->bar2_pa) {
Hariprasad S74217d42015-06-09 18:23:12 +0530162 pr_warn(MOD "%s: cqid %u not in BAR2 range.\n",
163 pci_name(rdev->lldi.pdev), cq->cqid);
164 ret = -EINVAL;
165 goto err4;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700166 }
167 return 0;
168err4:
169 dma_free_coherent(&rdev->lldi.pdev->dev, cq->memsize, cq->queue,
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000170 dma_unmap_addr(cq, mapping));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700171err3:
172 kfree(cq->sw_queue);
173err2:
174 c4iw_put_cqid(rdev, cq->cqid, uctx);
175err1:
176 return ret;
177}
178
179static void insert_recv_cqe(struct t4_wq *wq, struct t4_cq *cq)
180{
181 struct t4_cqe cqe;
182
183 PDBG("%s wq %p cq %p sw_cidx %u sw_pidx %u\n", __func__,
184 wq, cq, cq->sw_cidx, cq->sw_pidx);
185 memset(&cqe, 0, sizeof(cqe));
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530186 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
187 CQE_OPCODE_V(FW_RI_SEND) |
188 CQE_TYPE_V(0) |
189 CQE_SWCQE_V(1) |
190 CQE_QPID_V(wq->sq.qid));
191 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700192 cq->sw_queue[cq->sw_pidx] = cqe;
193 t4_swcq_produce(cq);
194}
195
196int c4iw_flush_rq(struct t4_wq *wq, struct t4_cq *cq, int count)
197{
198 int flushed = 0;
199 int in_use = wq->rq.in_use - count;
200
201 BUG_ON(in_use < 0);
202 PDBG("%s wq %p cq %p rq.in_use %u skip count %u\n", __func__,
203 wq, cq, wq->rq.in_use, count);
204 while (in_use--) {
205 insert_recv_cqe(wq, cq);
206 flushed++;
207 }
208 return flushed;
209}
210
211static void insert_sq_cqe(struct t4_wq *wq, struct t4_cq *cq,
212 struct t4_swsqe *swcqe)
213{
214 struct t4_cqe cqe;
215
216 PDBG("%s wq %p cq %p sw_cidx %u sw_pidx %u\n", __func__,
217 wq, cq, cq->sw_cidx, cq->sw_pidx);
218 memset(&cqe, 0, sizeof(cqe));
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530219 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
220 CQE_OPCODE_V(swcqe->opcode) |
221 CQE_TYPE_V(1) |
222 CQE_SWCQE_V(1) |
223 CQE_QPID_V(wq->sq.qid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700224 CQE_WRID_SQ_IDX(&cqe) = swcqe->idx;
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530225 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700226 cq->sw_queue[cq->sw_pidx] = cqe;
227 t4_swcq_produce(cq);
228}
229
Steve Wise1cf24dc2013-08-06 21:04:35 +0530230static void advance_oldest_read(struct t4_wq *wq);
231
232int c4iw_flush_sq(struct c4iw_qp *qhp)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700233{
234 int flushed = 0;
Steve Wise1cf24dc2013-08-06 21:04:35 +0530235 struct t4_wq *wq = &qhp->wq;
236 struct c4iw_cq *chp = to_c4iw_cq(qhp->ibqp.send_cq);
237 struct t4_cq *cq = &chp->cq;
238 int idx;
239 struct t4_swsqe *swsqe;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700240
Steve Wise1cf24dc2013-08-06 21:04:35 +0530241 if (wq->sq.flush_cidx == -1)
242 wq->sq.flush_cidx = wq->sq.cidx;
243 idx = wq->sq.flush_cidx;
244 BUG_ON(idx >= wq->sq.size);
245 while (idx != wq->sq.pidx) {
Steve Wiseb4e29012014-04-09 09:38:26 -0500246 swsqe = &wq->sq.sw_sq[idx];
247 BUG_ON(swsqe->flushed);
248 swsqe->flushed = 1;
249 insert_sq_cqe(wq, cq, swsqe);
250 if (wq->sq.oldest_read == swsqe) {
251 BUG_ON(swsqe->opcode != FW_RI_READ_REQ);
252 advance_oldest_read(wq);
Steve Wise1cf24dc2013-08-06 21:04:35 +0530253 }
Steve Wiseb4e29012014-04-09 09:38:26 -0500254 flushed++;
Steve Wise1cf24dc2013-08-06 21:04:35 +0530255 if (++idx == wq->sq.size)
256 idx = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700257 }
Steve Wise1cf24dc2013-08-06 21:04:35 +0530258 wq->sq.flush_cidx += flushed;
259 if (wq->sq.flush_cidx >= wq->sq.size)
260 wq->sq.flush_cidx -= wq->sq.size;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700261 return flushed;
262}
263
Steve Wise1cf24dc2013-08-06 21:04:35 +0530264static void flush_completed_wrs(struct t4_wq *wq, struct t4_cq *cq)
265{
266 struct t4_swsqe *swsqe;
267 int cidx;
268
269 if (wq->sq.flush_cidx == -1)
270 wq->sq.flush_cidx = wq->sq.cidx;
271 cidx = wq->sq.flush_cidx;
272 BUG_ON(cidx > wq->sq.size);
273
274 while (cidx != wq->sq.pidx) {
275 swsqe = &wq->sq.sw_sq[cidx];
276 if (!swsqe->signaled) {
277 if (++cidx == wq->sq.size)
278 cidx = 0;
279 } else if (swsqe->complete) {
280
281 BUG_ON(swsqe->flushed);
282
283 /*
284 * Insert this completed cqe into the swcq.
285 */
286 PDBG("%s moving cqe into swcq sq idx %u cq idx %u\n",
287 __func__, cidx, cq->sw_pidx);
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530288 swsqe->cqe.header |= htonl(CQE_SWCQE_V(1));
Steve Wise1cf24dc2013-08-06 21:04:35 +0530289 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);
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530305 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));
Steve Wise1cf24dc2013-08-06 21:04:35 +0530309 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
Steve Wisecfdda9d2010-04-21 15:30:06 -0700330/*
331 * Move all CQEs from the HWCQ into the SWCQ.
Steve Wise1cf24dc2013-08-06 21:04:35 +0530332 * Deal with out-of-order and/or completions that complete
333 * prior unsignalled WRs.
Steve Wisecfdda9d2010-04-21 15:30:06 -0700334 */
Steve Wise1cf24dc2013-08-06 21:04:35 +0530335void c4iw_flush_hw_cq(struct c4iw_cq *chp)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700336{
Steve Wise1cf24dc2013-08-06 21:04:35 +0530337 struct t4_cqe *hw_cqe, *swcqe, read_cqe;
338 struct c4iw_qp *qhp;
339 struct t4_swsqe *swsqe;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700340 int ret;
341
Steve Wise1cf24dc2013-08-06 21:04:35 +0530342 PDBG("%s cqid 0x%x\n", __func__, chp->cq.cqid);
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 */
Steve Wisecfdda9d2010-04-21 15:30:06 -0700350 while (!ret) {
Steve Wise1cf24dc2013-08-06 21:04:35 +0530351 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
359 if (CQE_OPCODE(hw_cqe) == FW_RI_TERMINATE)
360 goto next_cqe;
361
362 if (CQE_OPCODE(hw_cqe) == FW_RI_READ_RESP) {
363
Steve Wise70b9c662014-03-21 20:40:32 +0530364 /* If we have reached here because of async
365 * event or other error, and have egress error
366 * then drop
367 */
368 if (CQE_TYPE(hw_cqe) == 1)
369 goto next_cqe;
370
371 /* drop peer2peer RTR reads.
Steve Wise1cf24dc2013-08-06 21:04:35 +0530372 */
373 if (CQE_WRID_STAG(hw_cqe) == 1)
374 goto next_cqe;
375
376 /*
377 * Eat completions for unsignaled read WRs.
378 */
379 if (!qhp->wq.sq.oldest_read->signaled) {
380 advance_oldest_read(&qhp->wq);
381 goto next_cqe;
382 }
383
384 /*
385 * Don't write to the HWCQ, create a new read req CQE
386 * in local memory and move it into the swcq.
387 */
388 create_read_req_cqe(&qhp->wq, hw_cqe, &read_cqe);
389 hw_cqe = &read_cqe;
390 advance_oldest_read(&qhp->wq);
391 }
392
393 /* if its a SQ completion, then do the magic to move all the
394 * unsignaled and now in-order completions into the swcq.
395 */
396 if (SQ_TYPE(hw_cqe)) {
397 swsqe = &qhp->wq.sq.sw_sq[CQE_WRID_SQ_IDX(hw_cqe)];
398 swsqe->cqe = *hw_cqe;
399 swsqe->complete = 1;
400 flush_completed_wrs(&qhp->wq, &chp->cq);
401 } else {
402 swcqe = &chp->cq.sw_queue[chp->cq.sw_pidx];
403 *swcqe = *hw_cqe;
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530404 swcqe->header |= cpu_to_be32(CQE_SWCQE_V(1));
Steve Wise1cf24dc2013-08-06 21:04:35 +0530405 t4_swcq_produce(&chp->cq);
406 }
407next_cqe:
408 t4_hwcq_consume(&chp->cq);
409 ret = t4_next_hw_cqe(&chp->cq, &hw_cqe);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700410 }
411}
412
413static int cqe_completes_wr(struct t4_cqe *cqe, struct t4_wq *wq)
414{
415 if (CQE_OPCODE(cqe) == FW_RI_TERMINATE)
416 return 0;
417
418 if ((CQE_OPCODE(cqe) == FW_RI_RDMA_WRITE) && RQ_TYPE(cqe))
419 return 0;
420
421 if ((CQE_OPCODE(cqe) == FW_RI_READ_RESP) && SQ_TYPE(cqe))
422 return 0;
423
424 if (CQE_SEND_OPCODE(cqe) && RQ_TYPE(cqe) && t4_rq_empty(wq))
425 return 0;
426 return 1;
427}
428
Steve Wisecfdda9d2010-04-21 15:30:06 -0700429void c4iw_count_rcqes(struct t4_cq *cq, struct t4_wq *wq, int *count)
430{
431 struct t4_cqe *cqe;
432 u32 ptr;
433
434 *count = 0;
435 PDBG("%s count zero %d\n", __func__, *count);
436 ptr = cq->sw_cidx;
437 while (ptr != cq->sw_pidx) {
438 cqe = &cq->sw_queue[ptr];
439 if (RQ_TYPE(cqe) && (CQE_OPCODE(cqe) != FW_RI_READ_RESP) &&
Jonathan Lallingerc34c97a2011-10-20 13:25:14 -0500440 (CQE_QPID(cqe) == wq->sq.qid) && cqe_completes_wr(cqe, wq))
Steve Wisecfdda9d2010-04-21 15:30:06 -0700441 (*count)++;
442 if (++ptr == cq->size)
443 ptr = 0;
444 }
445 PDBG("%s cq %p count %d\n", __func__, cq, *count);
446}
447
Steve Wisecfdda9d2010-04-21 15:30:06 -0700448/*
449 * poll_cq
450 *
451 * Caller must:
452 * check the validity of the first CQE,
453 * supply the wq assicated with the qpid.
454 *
455 * credit: cq credit to return to sge.
456 * cqe_flushed: 1 iff the CQE is flushed.
457 * cqe: copy of the polled CQE.
458 *
459 * return value:
460 * 0 CQE returned ok.
461 * -EAGAIN CQE skipped, try again.
462 * -EOVERFLOW CQ overflow detected.
463 */
464static int poll_cq(struct t4_wq *wq, struct t4_cq *cq, struct t4_cqe *cqe,
465 u8 *cqe_flushed, u64 *cookie, u32 *credit)
466{
467 int ret = 0;
468 struct t4_cqe *hw_cqe, read_cqe;
469
470 *cqe_flushed = 0;
471 *credit = 0;
472 ret = t4_next_cqe(cq, &hw_cqe);
473 if (ret)
474 return ret;
475
476 PDBG("%s CQE OVF %u qpid 0x%0x genbit %u type %u status 0x%0x"
477 " opcode 0x%0x len 0x%0x wrid_hi_stag 0x%x wrid_low_msn 0x%x\n",
478 __func__, CQE_OVFBIT(hw_cqe), CQE_QPID(hw_cqe),
479 CQE_GENBIT(hw_cqe), CQE_TYPE(hw_cqe), CQE_STATUS(hw_cqe),
480 CQE_OPCODE(hw_cqe), CQE_LEN(hw_cqe), CQE_WRID_HI(hw_cqe),
481 CQE_WRID_LOW(hw_cqe));
482
483 /*
484 * skip cqe's not affiliated with a QP.
485 */
486 if (wq == NULL) {
487 ret = -EAGAIN;
488 goto skip_cqe;
489 }
490
491 /*
Steve Wise1cf24dc2013-08-06 21:04:35 +0530492 * skip hw cqe's if the wq is flushed.
493 */
494 if (wq->flushed && !SW_CQE(hw_cqe)) {
495 ret = -EAGAIN;
496 goto skip_cqe;
497 }
498
499 /*
500 * skip TERMINATE cqes...
501 */
502 if (CQE_OPCODE(hw_cqe) == FW_RI_TERMINATE) {
503 ret = -EAGAIN;
504 goto skip_cqe;
505 }
506
507 /*
Steve Wisecfdda9d2010-04-21 15:30:06 -0700508 * Gotta tweak READ completions:
509 * 1) the cqe doesn't contain the sq_wptr from the wr.
510 * 2) opcode not reflected from the wr.
511 * 3) read_len not reflected from the wr.
512 * 4) cq_type is RQ_TYPE not SQ_TYPE.
513 */
514 if (RQ_TYPE(hw_cqe) && (CQE_OPCODE(hw_cqe) == FW_RI_READ_RESP)) {
515
Steve Wise70b9c662014-03-21 20:40:32 +0530516 /* If we have reached here because of async
517 * event or other error, and have egress error
518 * then drop
519 */
520 if (CQE_TYPE(hw_cqe) == 1) {
521 if (CQE_STATUS(hw_cqe))
522 t4_set_wq_in_error(wq);
523 ret = -EAGAIN;
524 goto skip_cqe;
525 }
526
527 /* If this is an unsolicited read response, then the read
Steve Wisecfdda9d2010-04-21 15:30:06 -0700528 * was generated by the kernel driver as part of peer-2-peer
529 * connection setup. So ignore the completion.
530 */
Steve Wise1cf24dc2013-08-06 21:04:35 +0530531 if (CQE_WRID_STAG(hw_cqe) == 1) {
Steve Wisecfdda9d2010-04-21 15:30:06 -0700532 if (CQE_STATUS(hw_cqe))
533 t4_set_wq_in_error(wq);
534 ret = -EAGAIN;
535 goto skip_cqe;
536 }
537
538 /*
Steve Wise1cf24dc2013-08-06 21:04:35 +0530539 * Eat completions for unsignaled read WRs.
540 */
541 if (!wq->sq.oldest_read->signaled) {
542 advance_oldest_read(wq);
543 ret = -EAGAIN;
544 goto skip_cqe;
545 }
546
547 /*
Steve Wisecfdda9d2010-04-21 15:30:06 -0700548 * Don't write to the HWCQ, so create a new read req CQE
549 * in local memory.
550 */
551 create_read_req_cqe(wq, hw_cqe, &read_cqe);
552 hw_cqe = &read_cqe;
553 advance_oldest_read(wq);
554 }
555
556 if (CQE_STATUS(hw_cqe) || t4_wq_in_error(wq)) {
Steve Wise1cf24dc2013-08-06 21:04:35 +0530557 *cqe_flushed = (CQE_STATUS(hw_cqe) == T4_ERR_SWFLUSH);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700558 t4_set_wq_in_error(wq);
Steve Wise6ff0e342010-09-10 11:15:04 -0500559 }
560
Steve Wisecfdda9d2010-04-21 15:30:06 -0700561 /*
562 * RECV completion.
563 */
564 if (RQ_TYPE(hw_cqe)) {
565
566 /*
567 * HW only validates 4 bits of MSN. So we must validate that
568 * the MSN in the SEND is the next expected MSN. If its not,
569 * then we complete this with T4_ERR_MSN and mark the wq in
570 * error.
571 */
572
573 if (t4_rq_empty(wq)) {
574 t4_set_wq_in_error(wq);
575 ret = -EAGAIN;
576 goto skip_cqe;
577 }
578 if (unlikely((CQE_WRID_MSN(hw_cqe) != (wq->rq.msn)))) {
579 t4_set_wq_in_error(wq);
Hariprasad Shenaia56c66e2015-01-16 09:24:47 +0530580 hw_cqe->header |= htonl(CQE_STATUS_V(T4_ERR_MSN));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700581 goto proc_cqe;
582 }
583 goto proc_cqe;
584 }
585
586 /*
587 * If we get here its a send completion.
588 *
589 * Handle out of order completion. These get stuffed
590 * in the SW SQ. Then the SW SQ is walked to move any
591 * now in-order completions into the SW CQ. This handles
592 * 2 cases:
593 * 1) reaping unsignaled WRs when the first subsequent
594 * signaled WR is completed.
595 * 2) out of order read completions.
596 */
597 if (!SW_CQE(hw_cqe) && (CQE_WRID_SQ_IDX(hw_cqe) != wq->sq.cidx)) {
598 struct t4_swsqe *swsqe;
599
600 PDBG("%s out of order completion going in sw_sq at idx %u\n",
601 __func__, CQE_WRID_SQ_IDX(hw_cqe));
602 swsqe = &wq->sq.sw_sq[CQE_WRID_SQ_IDX(hw_cqe)];
603 swsqe->cqe = *hw_cqe;
604 swsqe->complete = 1;
605 ret = -EAGAIN;
606 goto flush_wq;
607 }
608
609proc_cqe:
610 *cqe = *hw_cqe;
611
612 /*
613 * Reap the associated WR(s) that are freed up with this
614 * completion.
615 */
616 if (SQ_TYPE(hw_cqe)) {
Steve Wise1cf24dc2013-08-06 21:04:35 +0530617 int idx = CQE_WRID_SQ_IDX(hw_cqe);
Steve Wise8a9c3992014-03-19 17:44:42 +0530618 BUG_ON(idx >= wq->sq.size);
Steve Wise1cf24dc2013-08-06 21:04:35 +0530619
620 /*
621 * Account for any unsignaled completions completed by
622 * this signaled completion. In this case, cidx points
623 * to the first unsignaled one, and idx points to the
624 * signaled one. So adjust in_use based on this delta.
625 * if this is not completing any unsigned wrs, then the
Steve Wise27ca34f2013-08-06 21:04:36 +0530626 * delta will be 0. Handle wrapping also!
Steve Wise1cf24dc2013-08-06 21:04:35 +0530627 */
Steve Wise27ca34f2013-08-06 21:04:36 +0530628 if (idx < wq->sq.cidx)
629 wq->sq.in_use -= wq->sq.size + idx - wq->sq.cidx;
630 else
631 wq->sq.in_use -= idx - wq->sq.cidx;
Steve Wise8a9c3992014-03-19 17:44:42 +0530632 BUG_ON(wq->sq.in_use <= 0 && wq->sq.in_use >= wq->sq.size);
Steve Wise1cf24dc2013-08-06 21:04:35 +0530633
634 wq->sq.cidx = (uint16_t)idx;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700635 PDBG("%s completing sq idx %u\n", __func__, wq->sq.cidx);
636 *cookie = wq->sq.sw_sq[wq->sq.cidx].wr_id;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530637 if (c4iw_wr_log)
638 c4iw_log_wr_stats(wq, hw_cqe);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700639 t4_sq_consume(wq);
640 } else {
641 PDBG("%s completing rq idx %u\n", __func__, wq->rq.cidx);
642 *cookie = wq->rq.sw_rq[wq->rq.cidx].wr_id;
643 BUG_ON(t4_rq_empty(wq));
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530644 if (c4iw_wr_log)
645 c4iw_log_wr_stats(wq, hw_cqe);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700646 t4_rq_consume(wq);
Steve Wise1cf24dc2013-08-06 21:04:35 +0530647 goto skip_cqe;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700648 }
649
650flush_wq:
651 /*
652 * Flush any completed cqes that are now in-order.
653 */
654 flush_completed_wrs(wq, cq);
655
656skip_cqe:
657 if (SW_CQE(hw_cqe)) {
658 PDBG("%s cq %p cqid 0x%x skip sw cqe cidx %u\n",
659 __func__, cq, cq->cqid, cq->sw_cidx);
660 t4_swcq_consume(cq);
661 } else {
662 PDBG("%s cq %p cqid 0x%x skip hw cqe cidx %u\n",
663 __func__, cq, cq->cqid, cq->cidx);
664 t4_hwcq_consume(cq);
665 }
666 return ret;
667}
668
Steve Wise49b53a92016-09-16 07:54:52 -0700669static void invalidate_mr(struct c4iw_dev *rhp, u32 rkey)
670{
671 struct c4iw_mr *mhp;
672 unsigned long flags;
673
674 spin_lock_irqsave(&rhp->lock, flags);
675 mhp = get_mhp(rhp, rkey >> 8);
676 if (mhp)
677 mhp->attr.state = 0;
678 spin_unlock_irqrestore(&rhp->lock, flags);
679}
680
Steve Wisecfdda9d2010-04-21 15:30:06 -0700681/*
682 * Get one cq entry from c4iw and map it to openib.
683 *
684 * Returns:
685 * 0 cqe returned
686 * -ENODATA EMPTY;
687 * -EAGAIN caller must try again
688 * any other -errno fatal error
689 */
690static int c4iw_poll_cq_one(struct c4iw_cq *chp, struct ib_wc *wc)
691{
692 struct c4iw_qp *qhp = NULL;
Steve Wise97df1c62014-04-09 09:38:28 -0500693 struct t4_cqe uninitialized_var(cqe), *rd_cqe;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700694 struct t4_wq *wq;
695 u32 credit = 0;
696 u8 cqe_flushed;
697 u64 cookie = 0;
698 int ret;
699
700 ret = t4_next_cqe(&chp->cq, &rd_cqe);
701
702 if (ret)
703 return ret;
704
705 qhp = get_qhp(chp->rhp, CQE_QPID(rd_cqe));
706 if (!qhp)
707 wq = NULL;
708 else {
709 spin_lock(&qhp->lock);
710 wq = &(qhp->wq);
711 }
712 ret = poll_cq(wq, &(chp->cq), &cqe, &cqe_flushed, &cookie, &credit);
713 if (ret)
714 goto out;
715
716 wc->wr_id = cookie;
717 wc->qp = &qhp->ibqp;
718 wc->vendor_err = CQE_STATUS(&cqe);
719 wc->wc_flags = 0;
720
721 PDBG("%s qpid 0x%x type %d opcode %d status 0x%x len %u wrid hi 0x%x "
722 "lo 0x%x cookie 0x%llx\n", __func__, CQE_QPID(&cqe),
723 CQE_TYPE(&cqe), CQE_OPCODE(&cqe), CQE_STATUS(&cqe), CQE_LEN(&cqe),
724 CQE_WRID_HI(&cqe), CQE_WRID_LOW(&cqe), (unsigned long long)cookie);
725
726 if (CQE_TYPE(&cqe) == 0) {
727 if (!CQE_STATUS(&cqe))
728 wc->byte_len = CQE_LEN(&cqe);
729 else
730 wc->byte_len = 0;
731 wc->opcode = IB_WC_RECV;
732 if (CQE_OPCODE(&cqe) == FW_RI_SEND_WITH_INV ||
733 CQE_OPCODE(&cqe) == FW_RI_SEND_WITH_SE_INV) {
734 wc->ex.invalidate_rkey = CQE_WRID_STAG(&cqe);
735 wc->wc_flags |= IB_WC_WITH_INVALIDATE;
Steve Wise49b53a92016-09-16 07:54:52 -0700736 invalidate_mr(qhp->rhp, wc->ex.invalidate_rkey);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700737 }
738 } else {
739 switch (CQE_OPCODE(&cqe)) {
740 case FW_RI_RDMA_WRITE:
741 wc->opcode = IB_WC_RDMA_WRITE;
742 break;
743 case FW_RI_READ_REQ:
744 wc->opcode = IB_WC_RDMA_READ;
745 wc->byte_len = CQE_LEN(&cqe);
746 break;
747 case FW_RI_SEND_WITH_INV:
748 case FW_RI_SEND_WITH_SE_INV:
749 wc->opcode = IB_WC_SEND;
750 wc->wc_flags |= IB_WC_WITH_INVALIDATE;
751 break;
752 case FW_RI_SEND:
753 case FW_RI_SEND_WITH_SE:
754 wc->opcode = IB_WC_SEND;
755 break;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700756
757 case FW_RI_LOCAL_INV:
758 wc->opcode = IB_WC_LOCAL_INV;
759 break;
760 case FW_RI_FAST_REGISTER:
Sagi Grimbergd3cfd002015-10-13 19:11:46 +0300761 wc->opcode = IB_WC_REG_MR;
Steve Wise49b53a92016-09-16 07:54:52 -0700762
763 /* Invalidate the MR if the fastreg failed */
764 if (CQE_STATUS(&cqe) != T4_ERR_SUCCESS)
765 invalidate_mr(qhp->rhp, CQE_WRID_FR_STAG(&cqe));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700766 break;
767 default:
768 printk(KERN_ERR MOD "Unexpected opcode %d "
769 "in the CQE received for QPID=0x%0x\n",
770 CQE_OPCODE(&cqe), CQE_QPID(&cqe));
771 ret = -EINVAL;
772 goto out;
773 }
774 }
775
776 if (cqe_flushed)
777 wc->status = IB_WC_WR_FLUSH_ERR;
778 else {
779
780 switch (CQE_STATUS(&cqe)) {
781 case T4_ERR_SUCCESS:
782 wc->status = IB_WC_SUCCESS;
783 break;
784 case T4_ERR_STAG:
785 wc->status = IB_WC_LOC_ACCESS_ERR;
786 break;
787 case T4_ERR_PDID:
788 wc->status = IB_WC_LOC_PROT_ERR;
789 break;
790 case T4_ERR_QPID:
791 case T4_ERR_ACCESS:
792 wc->status = IB_WC_LOC_ACCESS_ERR;
793 break;
794 case T4_ERR_WRAP:
795 wc->status = IB_WC_GENERAL_ERR;
796 break;
797 case T4_ERR_BOUND:
798 wc->status = IB_WC_LOC_LEN_ERR;
799 break;
800 case T4_ERR_INVALIDATE_SHARED_MR:
801 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
802 wc->status = IB_WC_MW_BIND_ERR;
803 break;
804 case T4_ERR_CRC:
805 case T4_ERR_MARKER:
806 case T4_ERR_PDU_LEN_ERR:
807 case T4_ERR_OUT_OF_RQE:
808 case T4_ERR_DDP_VERSION:
809 case T4_ERR_RDMA_VERSION:
810 case T4_ERR_DDP_QUEUE_NUM:
811 case T4_ERR_MSN:
812 case T4_ERR_TBIT:
813 case T4_ERR_MO:
814 case T4_ERR_MSN_RANGE:
815 case T4_ERR_IRD_OVERFLOW:
816 case T4_ERR_OPCODE:
Steve Wise6ff0e342010-09-10 11:15:04 -0500817 case T4_ERR_INTERNAL_ERR:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700818 wc->status = IB_WC_FATAL_ERR;
819 break;
820 case T4_ERR_SWFLUSH:
821 wc->status = IB_WC_WR_FLUSH_ERR;
822 break;
823 default:
824 printk(KERN_ERR MOD
825 "Unexpected cqe_status 0x%x for QPID=0x%0x\n",
826 CQE_STATUS(&cqe), CQE_QPID(&cqe));
Hariprasad S3661df12015-07-27 14:08:14 +0530827 wc->status = IB_WC_FATAL_ERR;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700828 }
829 }
830out:
Steve Wise086dc6e2016-02-17 08:15:42 -0800831 if (wq) {
832 if (unlikely(qhp->attr.state != C4IW_QP_STATE_RTS)) {
833 if (t4_sq_empty(wq))
834 complete(&qhp->sq_drained);
835 if (t4_rq_empty(wq))
836 complete(&qhp->rq_drained);
837 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700838 spin_unlock(&qhp->lock);
Steve Wise086dc6e2016-02-17 08:15:42 -0800839 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700840 return ret;
841}
842
843int c4iw_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc)
844{
845 struct c4iw_cq *chp;
846 unsigned long flags;
847 int npolled;
848 int err = 0;
849
850 chp = to_c4iw_cq(ibcq);
851
852 spin_lock_irqsave(&chp->lock, flags);
853 for (npolled = 0; npolled < num_entries; ++npolled) {
854 do {
855 err = c4iw_poll_cq_one(chp, wc + npolled);
856 } while (err == -EAGAIN);
857 if (err)
858 break;
859 }
860 spin_unlock_irqrestore(&chp->lock, flags);
861 return !err || err == -ENODATA ? npolled : err;
862}
863
864int c4iw_destroy_cq(struct ib_cq *ib_cq)
865{
866 struct c4iw_cq *chp;
867 struct c4iw_ucontext *ucontext;
868
869 PDBG("%s ib_cq %p\n", __func__, ib_cq);
870 chp = to_c4iw_cq(ib_cq);
871
872 remove_handle(chp->rhp, &chp->rhp->cqidr, chp->cq.cqid);
873 atomic_dec(&chp->refcnt);
874 wait_event(chp->wait, !atomic_read(&chp->refcnt));
875
876 ucontext = ib_cq->uobject ? to_c4iw_ucontext(ib_cq->uobject->context)
877 : NULL;
878 destroy_cq(&chp->rhp->rdev, &chp->cq,
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530879 ucontext ? &ucontext->uctx : &chp->cq.rdev->uctx,
880 chp->destroy_skb);
881 chp->destroy_skb = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700882 kfree(chp);
883 return 0;
884}
885
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300886struct ib_cq *c4iw_create_cq(struct ib_device *ibdev,
887 const struct ib_cq_init_attr *attr,
888 struct ib_ucontext *ib_context,
Steve Wisecfdda9d2010-04-21 15:30:06 -0700889 struct ib_udata *udata)
890{
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300891 int entries = attr->cqe;
892 int vector = attr->comp_vector;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700893 struct c4iw_dev *rhp;
894 struct c4iw_cq *chp;
895 struct c4iw_create_cq_resp uresp;
896 struct c4iw_ucontext *ucontext = NULL;
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530897 int ret, wr_len;
Steve Wise1973e8b2010-06-10 19:03:06 +0000898 size_t memsize, hwentries;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700899 struct c4iw_mm_entry *mm, *mm2;
900
901 PDBG("%s ib_dev %p entries %d\n", __func__, ibdev, entries);
Matan Barakbcf4c1e2015-06-11 16:35:20 +0300902 if (attr->flags)
903 return ERR_PTR(-EINVAL);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700904
905 rhp = to_c4iw_dev(ibdev);
906
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530907 if (vector >= rhp->rdev.lldi.nciq)
908 return ERR_PTR(-EINVAL);
909
Steve Wisecfdda9d2010-04-21 15:30:06 -0700910 chp = kzalloc(sizeof(*chp), GFP_KERNEL);
911 if (!chp)
912 return ERR_PTR(-ENOMEM);
913
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530914 wr_len = sizeof(struct fw_ri_res_wr) + sizeof(struct fw_ri_res);
915 chp->destroy_skb = alloc_skb(wr_len, GFP_KERNEL);
916 if (!chp->destroy_skb) {
917 ret = -ENOMEM;
918 goto err1;
919 }
920
Steve Wisecfdda9d2010-04-21 15:30:06 -0700921 if (ib_context)
922 ucontext = to_c4iw_ucontext(ib_context);
923
924 /* account for the status page. */
925 entries++;
926
Steve Wise895cf5f2010-05-20 16:57:38 -0500927 /* IQ needs one extra entry to differentiate full vs empty. */
928 entries++;
929
Steve Wisecfdda9d2010-04-21 15:30:06 -0700930 /*
931 * entries must be multiple of 16 for HW.
932 */
933 entries = roundup(entries, 16);
Steve Wise1973e8b2010-06-10 19:03:06 +0000934
935 /*
936 * Make actual HW queue 2x to avoid cdix_inc overflows.
937 */
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530938 hwentries = min(entries * 2, rhp->rdev.hw_queue.t4_max_iq_size);
Steve Wise1973e8b2010-06-10 19:03:06 +0000939
940 /*
941 * Make HW queue at least 64 entries so GTS updates aren't too
942 * frequent.
943 */
944 if (hwentries < 64)
945 hwentries = 64;
946
947 memsize = hwentries * sizeof *chp->cq.queue;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700948
949 /*
950 * memsize must be a multiple of the page size if its a user cq.
951 */
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530952 if (ucontext)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700953 memsize = roundup(memsize, PAGE_SIZE);
Steve Wise1973e8b2010-06-10 19:03:06 +0000954 chp->cq.size = hwentries;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700955 chp->cq.memsize = memsize;
Hariprasad Shenaicf38be62014-06-06 21:40:42 +0530956 chp->cq.vector = vector;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700957
958 ret = create_cq(&rhp->rdev, &chp->cq,
959 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
960 if (ret)
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530961 goto err2;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700962
963 chp->rhp = rhp;
964 chp->cq.size--; /* status page */
Steve Wise1973e8b2010-06-10 19:03:06 +0000965 chp->ibcq.cqe = entries - 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700966 spin_lock_init(&chp->lock);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +0530967 spin_lock_init(&chp->comp_handler_lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700968 atomic_set(&chp->refcnt, 1);
969 init_waitqueue_head(&chp->wait);
970 ret = insert_handle(rhp, &rhp->cqidr, chp, chp->cq.cqid);
971 if (ret)
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530972 goto err3;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700973
974 if (ucontext) {
975 mm = kmalloc(sizeof *mm, GFP_KERNEL);
976 if (!mm)
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530977 goto err4;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700978 mm2 = kmalloc(sizeof *mm2, GFP_KERNEL);
979 if (!mm2)
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530980 goto err5;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700981
Steve Wisecfdda9d2010-04-21 15:30:06 -0700982 uresp.qid_mask = rhp->rdev.cqmask;
983 uresp.cqid = chp->cq.cqid;
984 uresp.size = chp->cq.size;
985 uresp.memsize = chp->cq.memsize;
986 spin_lock(&ucontext->mmap_lock);
987 uresp.key = ucontext->key;
988 ucontext->key += PAGE_SIZE;
989 uresp.gts_key = ucontext->key;
990 ucontext->key += PAGE_SIZE;
991 spin_unlock(&ucontext->mmap_lock);
Yann Droneaudb6f04d32014-05-05 19:33:23 +0200992 ret = ib_copy_to_udata(udata, &uresp,
993 sizeof(uresp) - sizeof(uresp.reserved));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700994 if (ret)
Hariprasad Sdd6b0242016-06-10 01:05:17 +0530995 goto err6;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700996
997 mm->key = uresp.key;
998 mm->addr = virt_to_phys(chp->cq.queue);
999 mm->len = chp->cq.memsize;
1000 insert_mmap(ucontext, mm);
1001
1002 mm2->key = uresp.gts_key;
Hariprasad S74217d42015-06-09 18:23:12 +05301003 mm2->addr = chp->cq.bar2_pa;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001004 mm2->len = PAGE_SIZE;
1005 insert_mmap(ucontext, mm2);
1006 }
1007 PDBG("%s cqid 0x%0x chp %p size %u memsize %zu, dma_addr 0x%0llx\n",
1008 __func__, chp->cq.cqid, chp, chp->cq.size,
Hariprasad S6198dd82015-04-22 01:44:59 +05301009 chp->cq.memsize, (unsigned long long) chp->cq.dma_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001010 return &chp->ibcq;
Hariprasad Sdd6b0242016-06-10 01:05:17 +05301011err6:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001012 kfree(mm2);
Hariprasad Sdd6b0242016-06-10 01:05:17 +05301013err5:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001014 kfree(mm);
Hariprasad Sdd6b0242016-06-10 01:05:17 +05301015err4:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001016 remove_handle(rhp, &rhp->cqidr, chp->cq.cqid);
Hariprasad Sdd6b0242016-06-10 01:05:17 +05301017err3:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001018 destroy_cq(&chp->rhp->rdev, &chp->cq,
Hariprasad Sdd6b0242016-06-10 01:05:17 +05301019 ucontext ? &ucontext->uctx : &rhp->rdev.uctx,
1020 chp->destroy_skb);
1021err2:
1022 kfree_skb(chp->destroy_skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001023err1:
1024 kfree(chp);
1025 return ERR_PTR(ret);
1026}
1027
1028int c4iw_resize_cq(struct ib_cq *cq, int cqe, struct ib_udata *udata)
1029{
1030 return -ENOSYS;
1031}
1032
1033int c4iw_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify_flags flags)
1034{
1035 struct c4iw_cq *chp;
1036 int ret;
1037 unsigned long flag;
1038
1039 chp = to_c4iw_cq(ibcq);
1040 spin_lock_irqsave(&chp->lock, flag);
1041 ret = t4_arm_cq(&chp->cq,
1042 (flags & IB_CQ_SOLICITED_MASK) == IB_CQ_SOLICITED);
1043 spin_unlock_irqrestore(&chp->lock, flag);
1044 if (ret && !(flags & IB_CQ_REPORT_MISSED_EVENTS))
1045 ret = 0;
1046 return ret;
1047}