iw_cxgb4: allocate wait object for each cq object
[linux-block.git] / drivers / infiniband / hw / cxgb4 / qp.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 */
e4dd23d7
PG
32
33#include <linux/module.h>
34
cfdda9d7
SW
35#include "iw_cxgb4.h"
36
2c974781
VP
37static int db_delay_usecs = 1;
38module_param(db_delay_usecs, int, 0644);
39MODULE_PARM_DESC(db_delay_usecs, "Usecs to delay awaiting db fifo to drain");
40
a9c77198 41static int ocqp_support = 1;
c6d7b267 42module_param(ocqp_support, int, 0644);
a9c77198 43MODULE_PARM_DESC(ocqp_support, "Support on-chip SQs (default=1)");
c6d7b267 44
3cbdb928 45int db_fc_threshold = 1000;
422eea0a 46module_param(db_fc_threshold, int, 0644);
3cbdb928
VP
47MODULE_PARM_DESC(db_fc_threshold,
48 "QP count/threshold that triggers"
49 " automatic db flow control mode (default = 1000)");
50
51int db_coalescing_threshold;
52module_param(db_coalescing_threshold, int, 0644);
53MODULE_PARM_DESC(db_coalescing_threshold,
54 "QP count/threshold that triggers"
55 " disabling db coalescing (default = 0)");
422eea0a 56
42b6a949
VP
57static int max_fr_immd = T4_MAX_FR_IMMD;
58module_param(max_fr_immd, int, 0644);
59MODULE_PARM_DESC(max_fr_immd, "fastreg threshold for using DSGL instead of immedate");
60
4c2c5763
HS
61static int alloc_ird(struct c4iw_dev *dev, u32 ird)
62{
63 int ret = 0;
64
65 spin_lock_irq(&dev->lock);
66 if (ird <= dev->avail_ird)
67 dev->avail_ird -= ird;
68 else
69 ret = -ENOMEM;
70 spin_unlock_irq(&dev->lock);
71
72 if (ret)
73 dev_warn(&dev->rdev.lldi.pdev->dev,
74 "device IRD resources exhausted\n");
75
76 return ret;
77}
78
79static void free_ird(struct c4iw_dev *dev, int ird)
80{
81 spin_lock_irq(&dev->lock);
82 dev->avail_ird += ird;
83 spin_unlock_irq(&dev->lock);
84}
85
2f5b48c3
SW
86static void set_state(struct c4iw_qp *qhp, enum c4iw_qp_state state)
87{
88 unsigned long flag;
89 spin_lock_irqsave(&qhp->lock, flag);
90 qhp->attr.state = state;
91 spin_unlock_irqrestore(&qhp->lock, flag);
92}
93
c6d7b267
SW
94static void dealloc_oc_sq(struct c4iw_rdev *rdev, struct t4_sq *sq)
95{
96 c4iw_ocqp_pool_free(rdev, sq->dma_addr, sq->memsize);
97}
98
99static void dealloc_host_sq(struct c4iw_rdev *rdev, struct t4_sq *sq)
100{
101 dma_free_coherent(&(rdev->lldi.pdev->dev), sq->memsize, sq->queue,
102 pci_unmap_addr(sq, mapping));
103}
104
105static void dealloc_sq(struct c4iw_rdev *rdev, struct t4_sq *sq)
106{
107 if (t4_sq_onchip(sq))
108 dealloc_oc_sq(rdev, sq);
109 else
110 dealloc_host_sq(rdev, sq);
111}
112
113static int alloc_oc_sq(struct c4iw_rdev *rdev, struct t4_sq *sq)
114{
f079af7a 115 if (!ocqp_support || !ocqp_supported(&rdev->lldi))
c6d7b267
SW
116 return -ENOSYS;
117 sq->dma_addr = c4iw_ocqp_pool_alloc(rdev, sq->memsize);
118 if (!sq->dma_addr)
119 return -ENOMEM;
120 sq->phys_addr = rdev->oc_mw_pa + sq->dma_addr -
121 rdev->lldi.vr->ocq.start;
122 sq->queue = (__force union t4_wr *)(rdev->oc_mw_kva + sq->dma_addr -
123 rdev->lldi.vr->ocq.start);
124 sq->flags |= T4_SQ_ONCHIP;
125 return 0;
126}
127
128static int alloc_host_sq(struct c4iw_rdev *rdev, struct t4_sq *sq)
129{
130 sq->queue = dma_alloc_coherent(&(rdev->lldi.pdev->dev), sq->memsize,
131 &(sq->dma_addr), GFP_KERNEL);
132 if (!sq->queue)
133 return -ENOMEM;
134 sq->phys_addr = virt_to_phys(sq->queue);
135 pci_unmap_addr_set(sq, mapping, sq->dma_addr);
136 return 0;
137}
138
5b0c2759
TLSC
139static int alloc_sq(struct c4iw_rdev *rdev, struct t4_sq *sq, int user)
140{
141 int ret = -ENOSYS;
142 if (user)
143 ret = alloc_oc_sq(rdev, sq);
144 if (ret)
145 ret = alloc_host_sq(rdev, sq);
146 return ret;
147}
148
cfdda9d7
SW
149static int destroy_qp(struct c4iw_rdev *rdev, struct t4_wq *wq,
150 struct c4iw_dev_ucontext *uctx)
151{
152 /*
153 * uP clears EQ contexts when the connection exits rdma mode,
154 * so no need to post a RESET WR for these EQs.
155 */
156 dma_free_coherent(&(rdev->lldi.pdev->dev),
157 wq->rq.memsize, wq->rq.queue,
f38926aa 158 dma_unmap_addr(&wq->rq, mapping));
c6d7b267 159 dealloc_sq(rdev, &wq->sq);
cfdda9d7
SW
160 c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
161 kfree(wq->rq.sw_rq);
162 kfree(wq->sq.sw_sq);
163 c4iw_put_qpid(rdev, wq->rq.qid, uctx);
164 c4iw_put_qpid(rdev, wq->sq.qid, uctx);
165 return 0;
166}
167
74217d4c
H
168/*
169 * Determine the BAR2 virtual address and qid. If pbar2_pa is not NULL,
170 * then this is a user mapping so compute the page-aligned physical address
171 * for mapping.
172 */
173void __iomem *c4iw_bar2_addrs(struct c4iw_rdev *rdev, unsigned int qid,
174 enum cxgb4_bar2_qtype qtype,
175 unsigned int *pbar2_qid, u64 *pbar2_pa)
176{
177 u64 bar2_qoffset;
178 int ret;
179
180 ret = cxgb4_bar2_sge_qregs(rdev->lldi.ports[0], qid, qtype,
181 pbar2_pa ? 1 : 0,
182 &bar2_qoffset, pbar2_qid);
183 if (ret)
184 return NULL;
185
186 if (pbar2_pa)
187 *pbar2_pa = (rdev->bar2_pa + bar2_qoffset) & PAGE_MASK;
32cc92c7
H
188
189 if (is_t4(rdev->lldi.adapter_type))
190 return NULL;
191
74217d4c
H
192 return rdev->bar2_kva + bar2_qoffset;
193}
194
cfdda9d7
SW
195static int create_qp(struct c4iw_rdev *rdev, struct t4_wq *wq,
196 struct t4_cq *rcq, struct t4_cq *scq,
197 struct c4iw_dev_ucontext *uctx)
198{
199 int user = (uctx != &rdev->uctx);
200 struct fw_ri_res_wr *res_wr;
201 struct fw_ri_res *res;
202 int wr_len;
203 struct c4iw_wr_wait wr_wait;
204 struct sk_buff *skb;
9919d5bd 205 int ret = 0;
cfdda9d7
SW
206 int eqsize;
207
208 wq->sq.qid = c4iw_get_qpid(rdev, uctx);
209 if (!wq->sq.qid)
210 return -ENOMEM;
211
212 wq->rq.qid = c4iw_get_qpid(rdev, uctx);
c079c287
EG
213 if (!wq->rq.qid) {
214 ret = -ENOMEM;
215 goto free_sq_qid;
216 }
cfdda9d7
SW
217
218 if (!user) {
219 wq->sq.sw_sq = kzalloc(wq->sq.size * sizeof *wq->sq.sw_sq,
220 GFP_KERNEL);
c079c287
EG
221 if (!wq->sq.sw_sq) {
222 ret = -ENOMEM;
223 goto free_rq_qid;
224 }
cfdda9d7
SW
225
226 wq->rq.sw_rq = kzalloc(wq->rq.size * sizeof *wq->rq.sw_rq,
227 GFP_KERNEL);
c079c287
EG
228 if (!wq->rq.sw_rq) {
229 ret = -ENOMEM;
230 goto free_sw_sq;
231 }
cfdda9d7
SW
232 }
233
234 /*
66eb19af 235 * RQT must be a power of 2 and at least 16 deep.
cfdda9d7 236 */
66eb19af 237 wq->rq.rqt_size = roundup_pow_of_two(max_t(u16, wq->rq.size, 16));
cfdda9d7 238 wq->rq.rqt_hwaddr = c4iw_rqtpool_alloc(rdev, wq->rq.rqt_size);
c079c287
EG
239 if (!wq->rq.rqt_hwaddr) {
240 ret = -ENOMEM;
241 goto free_sw_rq;
242 }
cfdda9d7 243
5b0c2759
TLSC
244 ret = alloc_sq(rdev, &wq->sq, user);
245 if (ret)
246 goto free_hwaddr;
cfdda9d7 247 memset(wq->sq.queue, 0, wq->sq.memsize);
f38926aa 248 dma_unmap_addr_set(&wq->sq, mapping, wq->sq.dma_addr);
cfdda9d7
SW
249
250 wq->rq.queue = dma_alloc_coherent(&(rdev->lldi.pdev->dev),
251 wq->rq.memsize, &(wq->rq.dma_addr),
252 GFP_KERNEL);
55e57a78
WY
253 if (!wq->rq.queue) {
254 ret = -ENOMEM;
c079c287 255 goto free_sq;
55e57a78 256 }
548ddb19
BP
257 pr_debug("sq base va 0x%p pa 0x%llx rq base va 0x%p pa 0x%llx\n",
258 wq->sq.queue,
a9a42886
JP
259 (unsigned long long)virt_to_phys(wq->sq.queue),
260 wq->rq.queue,
261 (unsigned long long)virt_to_phys(wq->rq.queue));
cfdda9d7 262 memset(wq->rq.queue, 0, wq->rq.memsize);
f38926aa 263 dma_unmap_addr_set(&wq->rq, mapping, wq->rq.dma_addr);
cfdda9d7
SW
264
265 wq->db = rdev->lldi.db_reg;
fa658a98 266
74217d4c
H
267 wq->sq.bar2_va = c4iw_bar2_addrs(rdev, wq->sq.qid, T4_BAR2_QTYPE_EGRESS,
268 &wq->sq.bar2_qid,
269 user ? &wq->sq.bar2_pa : NULL);
270 wq->rq.bar2_va = c4iw_bar2_addrs(rdev, wq->rq.qid, T4_BAR2_QTYPE_EGRESS,
271 &wq->rq.bar2_qid,
272 user ? &wq->rq.bar2_pa : NULL);
273
274 /*
275 * User mode must have bar2 access.
276 */
32cc92c7 277 if (user && (!wq->sq.bar2_pa || !wq->rq.bar2_pa)) {
700456bd 278 pr_warn("%s: sqid %u or rqid %u not in BAR2 range\n",
74217d4c
H
279 pci_name(rdev->lldi.pdev), wq->sq.qid, wq->rq.qid);
280 goto free_dma;
cfdda9d7 281 }
74217d4c 282
cfdda9d7
SW
283 wq->rdev = rdev;
284 wq->rq.msn = 1;
285
286 /* build fw_ri_res_wr */
287 wr_len = sizeof *res_wr + 2 * sizeof *res;
288
d3c814e8 289 skb = alloc_skb(wr_len, GFP_KERNEL);
cfdda9d7
SW
290 if (!skb) {
291 ret = -ENOMEM;
c079c287 292 goto free_dma;
cfdda9d7
SW
293 }
294 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
295
de77b966 296 res_wr = __skb_put_zero(skb, wr_len);
cfdda9d7 297 res_wr->op_nres = cpu_to_be32(
e2ac9628 298 FW_WR_OP_V(FW_RI_RES_WR) |
cf7fe64a 299 FW_RI_RES_WR_NRES_V(2) |
e2ac9628 300 FW_WR_COMPL_F);
cfdda9d7 301 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
6198dd8d 302 res_wr->cookie = (uintptr_t)&wr_wait;
cfdda9d7
SW
303 res = res_wr->res;
304 res->u.sqrq.restype = FW_RI_RES_TYPE_SQ;
305 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
306
307 /*
308 * eqsize is the number of 64B entries plus the status page size.
309 */
04e10e21
HS
310 eqsize = wq->sq.size * T4_SQ_NUM_SLOTS +
311 rdev->hw_queue.t4_eq_status_entries;
cfdda9d7
SW
312
313 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
cf7fe64a
HS
314 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
315 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
316 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
317 (t4_sq_onchip(&wq->sq) ? FW_RI_RES_WR_ONCHIP_F : 0) |
318 FW_RI_RES_WR_IQID_V(scq->cqid));
cfdda9d7 319 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
cf7fe64a
HS
320 FW_RI_RES_WR_DCAEN_V(0) |
321 FW_RI_RES_WR_DCACPU_V(0) |
322 FW_RI_RES_WR_FBMIN_V(2) |
b414fa01
SW
323 (t4_sq_onchip(&wq->sq) ? FW_RI_RES_WR_FBMAX_V(2) :
324 FW_RI_RES_WR_FBMAX_V(3)) |
cf7fe64a
HS
325 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
326 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
327 FW_RI_RES_WR_EQSIZE_V(eqsize));
cfdda9d7
SW
328 res->u.sqrq.eqid = cpu_to_be32(wq->sq.qid);
329 res->u.sqrq.eqaddr = cpu_to_be64(wq->sq.dma_addr);
330 res++;
331 res->u.sqrq.restype = FW_RI_RES_TYPE_RQ;
332 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
333
334 /*
335 * eqsize is the number of 64B entries plus the status page size.
336 */
04e10e21
HS
337 eqsize = wq->rq.size * T4_RQ_NUM_SLOTS +
338 rdev->hw_queue.t4_eq_status_entries;
cfdda9d7 339 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
cf7fe64a
HS
340 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
341 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
342 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
343 FW_RI_RES_WR_IQID_V(rcq->cqid));
cfdda9d7 344 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
cf7fe64a
HS
345 FW_RI_RES_WR_DCAEN_V(0) |
346 FW_RI_RES_WR_DCACPU_V(0) |
347 FW_RI_RES_WR_FBMIN_V(2) |
b414fa01 348 FW_RI_RES_WR_FBMAX_V(3) |
cf7fe64a
HS
349 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
350 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
351 FW_RI_RES_WR_EQSIZE_V(eqsize));
cfdda9d7
SW
352 res->u.sqrq.eqid = cpu_to_be32(wq->rq.qid);
353 res->u.sqrq.eqaddr = cpu_to_be64(wq->rq.dma_addr);
354
355 c4iw_init_wr_wait(&wr_wait);
356
357 ret = c4iw_ofld_send(rdev, skb);
358 if (ret)
c079c287 359 goto free_dma;
aadc4df3 360 ret = c4iw_wait_for_reply(rdev, &wr_wait, 0, wq->sq.qid, __func__);
cfdda9d7 361 if (ret)
c079c287 362 goto free_dma;
cfdda9d7 363
548ddb19
BP
364 pr_debug("sqid 0x%x rqid 0x%x kdb 0x%p sq_bar2_addr %p rq_bar2_addr %p\n",
365 wq->sq.qid, wq->rq.qid, wq->db,
a9a42886 366 wq->sq.bar2_va, wq->rq.bar2_va);
cfdda9d7
SW
367
368 return 0;
c079c287 369free_dma:
cfdda9d7
SW
370 dma_free_coherent(&(rdev->lldi.pdev->dev),
371 wq->rq.memsize, wq->rq.queue,
f38926aa 372 dma_unmap_addr(&wq->rq, mapping));
c079c287 373free_sq:
c6d7b267 374 dealloc_sq(rdev, &wq->sq);
c079c287 375free_hwaddr:
cfdda9d7 376 c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
c079c287 377free_sw_rq:
cfdda9d7 378 kfree(wq->rq.sw_rq);
c079c287 379free_sw_sq:
cfdda9d7 380 kfree(wq->sq.sw_sq);
c079c287 381free_rq_qid:
cfdda9d7 382 c4iw_put_qpid(rdev, wq->rq.qid, uctx);
c079c287 383free_sq_qid:
cfdda9d7 384 c4iw_put_qpid(rdev, wq->sq.qid, uctx);
c079c287 385 return ret;
cfdda9d7
SW
386}
387
d37ac31d
SW
388static int build_immd(struct t4_sq *sq, struct fw_ri_immd *immdp,
389 struct ib_send_wr *wr, int max, u32 *plenp)
cfdda9d7 390{
d37ac31d
SW
391 u8 *dstp, *srcp;
392 u32 plen = 0;
cfdda9d7 393 int i;
d37ac31d
SW
394 int rem, len;
395
396 dstp = (u8 *)immdp->data;
397 for (i = 0; i < wr->num_sge; i++) {
398 if ((plen + wr->sg_list[i].length) > max)
399 return -EMSGSIZE;
400 srcp = (u8 *)(unsigned long)wr->sg_list[i].addr;
401 plen += wr->sg_list[i].length;
402 rem = wr->sg_list[i].length;
403 while (rem) {
404 if (dstp == (u8 *)&sq->queue[sq->size])
405 dstp = (u8 *)sq->queue;
406 if (rem <= (u8 *)&sq->queue[sq->size] - dstp)
407 len = rem;
408 else
409 len = (u8 *)&sq->queue[sq->size] - dstp;
410 memcpy(dstp, srcp, len);
411 dstp += len;
412 srcp += len;
413 rem -= len;
414 }
415 }
13fecb83
SW
416 len = roundup(plen + sizeof *immdp, 16) - (plen + sizeof *immdp);
417 if (len)
418 memset(dstp, 0, len);
d37ac31d
SW
419 immdp->op = FW_RI_DATA_IMMD;
420 immdp->r1 = 0;
421 immdp->r2 = 0;
422 immdp->immdlen = cpu_to_be32(plen);
423 *plenp = plen;
424 return 0;
425}
426
427static int build_isgl(__be64 *queue_start, __be64 *queue_end,
428 struct fw_ri_isgl *isglp, struct ib_sge *sg_list,
429 int num_sge, u32 *plenp)
430
431{
432 int i;
433 u32 plen = 0;
434 __be64 *flitp = (__be64 *)isglp->sge;
435
436 for (i = 0; i < num_sge; i++) {
437 if ((plen + sg_list[i].length) < plen)
438 return -EMSGSIZE;
439 plen += sg_list[i].length;
440 *flitp = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
441 sg_list[i].length);
442 if (++flitp == queue_end)
443 flitp = queue_start;
444 *flitp = cpu_to_be64(sg_list[i].addr);
445 if (++flitp == queue_end)
446 flitp = queue_start;
447 }
13fecb83 448 *flitp = (__force __be64)0;
d37ac31d
SW
449 isglp->op = FW_RI_DATA_ISGL;
450 isglp->r1 = 0;
451 isglp->nsge = cpu_to_be16(num_sge);
452 isglp->r2 = 0;
453 if (plenp)
454 *plenp = plen;
455 return 0;
456}
457
458static int build_rdma_send(struct t4_sq *sq, union t4_wr *wqe,
459 struct ib_send_wr *wr, u8 *len16)
460{
cfdda9d7
SW
461 u32 plen;
462 int size;
d37ac31d 463 int ret;
cfdda9d7
SW
464
465 if (wr->num_sge > T4_MAX_SEND_SGE)
466 return -EINVAL;
467 switch (wr->opcode) {
468 case IB_WR_SEND:
469 if (wr->send_flags & IB_SEND_SOLICITED)
470 wqe->send.sendop_pkd = cpu_to_be32(
cf7fe64a 471 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE));
cfdda9d7
SW
472 else
473 wqe->send.sendop_pkd = cpu_to_be32(
cf7fe64a 474 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND));
cfdda9d7
SW
475 wqe->send.stag_inv = 0;
476 break;
477 case IB_WR_SEND_WITH_INV:
478 if (wr->send_flags & IB_SEND_SOLICITED)
479 wqe->send.sendop_pkd = cpu_to_be32(
cf7fe64a 480 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE_INV));
cfdda9d7
SW
481 else
482 wqe->send.sendop_pkd = cpu_to_be32(
cf7fe64a 483 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_INV));
cfdda9d7
SW
484 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
485 break;
486
487 default:
488 return -EINVAL;
489 }
c3f98fa2
SW
490 wqe->send.r3 = 0;
491 wqe->send.r4 = 0;
d37ac31d 492
cfdda9d7
SW
493 plen = 0;
494 if (wr->num_sge) {
495 if (wr->send_flags & IB_SEND_INLINE) {
d37ac31d
SW
496 ret = build_immd(sq, wqe->send.u.immd_src, wr,
497 T4_MAX_SEND_INLINE, &plen);
498 if (ret)
499 return ret;
cfdda9d7
SW
500 size = sizeof wqe->send + sizeof(struct fw_ri_immd) +
501 plen;
502 } else {
d37ac31d
SW
503 ret = build_isgl((__be64 *)sq->queue,
504 (__be64 *)&sq->queue[sq->size],
505 wqe->send.u.isgl_src,
506 wr->sg_list, wr->num_sge, &plen);
507 if (ret)
508 return ret;
cfdda9d7
SW
509 size = sizeof wqe->send + sizeof(struct fw_ri_isgl) +
510 wr->num_sge * sizeof(struct fw_ri_sge);
511 }
512 } else {
513 wqe->send.u.immd_src[0].op = FW_RI_DATA_IMMD;
514 wqe->send.u.immd_src[0].r1 = 0;
515 wqe->send.u.immd_src[0].r2 = 0;
516 wqe->send.u.immd_src[0].immdlen = 0;
517 size = sizeof wqe->send + sizeof(struct fw_ri_immd);
d37ac31d 518 plen = 0;
cfdda9d7
SW
519 }
520 *len16 = DIV_ROUND_UP(size, 16);
521 wqe->send.plen = cpu_to_be32(plen);
522 return 0;
523}
524
d37ac31d
SW
525static int build_rdma_write(struct t4_sq *sq, union t4_wr *wqe,
526 struct ib_send_wr *wr, u8 *len16)
cfdda9d7 527{
cfdda9d7
SW
528 u32 plen;
529 int size;
d37ac31d 530 int ret;
cfdda9d7 531
d37ac31d 532 if (wr->num_sge > T4_MAX_SEND_SGE)
cfdda9d7
SW
533 return -EINVAL;
534 wqe->write.r2 = 0;
e622f2f4
CH
535 wqe->write.stag_sink = cpu_to_be32(rdma_wr(wr)->rkey);
536 wqe->write.to_sink = cpu_to_be64(rdma_wr(wr)->remote_addr);
cfdda9d7
SW
537 if (wr->num_sge) {
538 if (wr->send_flags & IB_SEND_INLINE) {
d37ac31d
SW
539 ret = build_immd(sq, wqe->write.u.immd_src, wr,
540 T4_MAX_WRITE_INLINE, &plen);
541 if (ret)
542 return ret;
cfdda9d7
SW
543 size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
544 plen;
545 } else {
d37ac31d
SW
546 ret = build_isgl((__be64 *)sq->queue,
547 (__be64 *)&sq->queue[sq->size],
548 wqe->write.u.isgl_src,
549 wr->sg_list, wr->num_sge, &plen);
550 if (ret)
551 return ret;
cfdda9d7
SW
552 size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
553 wr->num_sge * sizeof(struct fw_ri_sge);
554 }
555 } else {
556 wqe->write.u.immd_src[0].op = FW_RI_DATA_IMMD;
557 wqe->write.u.immd_src[0].r1 = 0;
558 wqe->write.u.immd_src[0].r2 = 0;
559 wqe->write.u.immd_src[0].immdlen = 0;
560 size = sizeof wqe->write + sizeof(struct fw_ri_immd);
d37ac31d 561 plen = 0;
cfdda9d7
SW
562 }
563 *len16 = DIV_ROUND_UP(size, 16);
564 wqe->write.plen = cpu_to_be32(plen);
565 return 0;
566}
567
568static int build_rdma_read(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
569{
570 if (wr->num_sge > 1)
571 return -EINVAL;
720336c4 572 if (wr->num_sge && wr->sg_list[0].length) {
e622f2f4
CH
573 wqe->read.stag_src = cpu_to_be32(rdma_wr(wr)->rkey);
574 wqe->read.to_src_hi = cpu_to_be32((u32)(rdma_wr(wr)->remote_addr
cfdda9d7 575 >> 32));
e622f2f4 576 wqe->read.to_src_lo = cpu_to_be32((u32)rdma_wr(wr)->remote_addr);
cfdda9d7
SW
577 wqe->read.stag_sink = cpu_to_be32(wr->sg_list[0].lkey);
578 wqe->read.plen = cpu_to_be32(wr->sg_list[0].length);
579 wqe->read.to_sink_hi = cpu_to_be32((u32)(wr->sg_list[0].addr
580 >> 32));
581 wqe->read.to_sink_lo = cpu_to_be32((u32)(wr->sg_list[0].addr));
582 } else {
583 wqe->read.stag_src = cpu_to_be32(2);
584 wqe->read.to_src_hi = 0;
585 wqe->read.to_src_lo = 0;
586 wqe->read.stag_sink = cpu_to_be32(2);
587 wqe->read.plen = 0;
588 wqe->read.to_sink_hi = 0;
589 wqe->read.to_sink_lo = 0;
590 }
591 wqe->read.r2 = 0;
592 wqe->read.r5 = 0;
593 *len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
594 return 0;
595}
596
597static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe,
598 struct ib_recv_wr *wr, u8 *len16)
599{
d37ac31d 600 int ret;
cfdda9d7 601
d37ac31d
SW
602 ret = build_isgl((__be64 *)qhp->wq.rq.queue,
603 (__be64 *)&qhp->wq.rq.queue[qhp->wq.rq.size],
604 &wqe->recv.isgl, wr->sg_list, wr->num_sge, NULL);
605 if (ret)
606 return ret;
cfdda9d7
SW
607 *len16 = DIV_ROUND_UP(sizeof wqe->recv +
608 wr->num_sge * sizeof(struct fw_ri_sge), 16);
609 return 0;
610}
611
49b53a93
SW
612static void build_tpte_memreg(struct fw_ri_fr_nsmr_tpte_wr *fr,
613 struct ib_reg_wr *wr, struct c4iw_mr *mhp,
614 u8 *len16)
615{
616 __be64 *p = (__be64 *)fr->pbl;
617
618 fr->r2 = cpu_to_be32(0);
619 fr->stag = cpu_to_be32(mhp->ibmr.rkey);
620
621 fr->tpte.valid_to_pdid = cpu_to_be32(FW_RI_TPTE_VALID_F |
622 FW_RI_TPTE_STAGKEY_V((mhp->ibmr.rkey & FW_RI_TPTE_STAGKEY_M)) |
623 FW_RI_TPTE_STAGSTATE_V(1) |
624 FW_RI_TPTE_STAGTYPE_V(FW_RI_STAG_NSMR) |
625 FW_RI_TPTE_PDID_V(mhp->attr.pdid));
626 fr->tpte.locread_to_qpid = cpu_to_be32(
627 FW_RI_TPTE_PERM_V(c4iw_ib_to_tpt_access(wr->access)) |
628 FW_RI_TPTE_ADDRTYPE_V(FW_RI_VA_BASED_TO) |
629 FW_RI_TPTE_PS_V(ilog2(wr->mr->page_size) - 12));
630 fr->tpte.nosnoop_pbladdr = cpu_to_be32(FW_RI_TPTE_PBLADDR_V(
631 PBL_OFF(&mhp->rhp->rdev, mhp->attr.pbl_addr)>>3));
632 fr->tpte.dca_mwbcnt_pstag = cpu_to_be32(0);
633 fr->tpte.len_hi = cpu_to_be32(0);
634 fr->tpte.len_lo = cpu_to_be32(mhp->ibmr.length);
635 fr->tpte.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
636 fr->tpte.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova & 0xffffffff);
637
638 p[0] = cpu_to_be64((u64)mhp->mpl[0]);
639 p[1] = cpu_to_be64((u64)mhp->mpl[1]);
640
641 *len16 = DIV_ROUND_UP(sizeof(*fr), 16);
642}
643
8376b86d 644static int build_memreg(struct t4_sq *sq, union t4_wr *wqe,
49b53a93
SW
645 struct ib_reg_wr *wr, struct c4iw_mr *mhp, u8 *len16,
646 bool dsgl_supported)
8376b86d 647{
8376b86d
SG
648 struct fw_ri_immd *imdp;
649 __be64 *p;
650 int i;
651 int pbllen = roundup(mhp->mpl_len * sizeof(u64), 32);
652 int rem;
653
ee30f7d5 654 if (mhp->mpl_len > t4_max_fr_depth(dsgl_supported && use_dsgl))
8376b86d
SG
655 return -EINVAL;
656
657 wqe->fr.qpbinde_to_dcacpu = 0;
658 wqe->fr.pgsz_shift = ilog2(wr->mr->page_size) - 12;
659 wqe->fr.addr_type = FW_RI_VA_BASED_TO;
660 wqe->fr.mem_perms = c4iw_ib_to_tpt_access(wr->access);
661 wqe->fr.len_hi = 0;
662 wqe->fr.len_lo = cpu_to_be32(mhp->ibmr.length);
663 wqe->fr.stag = cpu_to_be32(wr->key);
664 wqe->fr.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
665 wqe->fr.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova &
666 0xffffffff);
667
ee30f7d5 668 if (dsgl_supported && use_dsgl && (pbllen > max_fr_immd)) {
8376b86d
SG
669 struct fw_ri_dsgl *sglp;
670
671 for (i = 0; i < mhp->mpl_len; i++)
672 mhp->mpl[i] = (__force u64)cpu_to_be64((u64)mhp->mpl[i]);
673
674 sglp = (struct fw_ri_dsgl *)(&wqe->fr + 1);
675 sglp->op = FW_RI_DATA_DSGL;
676 sglp->r1 = 0;
677 sglp->nsge = cpu_to_be16(1);
678 sglp->addr0 = cpu_to_be64(mhp->mpl_addr);
679 sglp->len0 = cpu_to_be32(pbllen);
680
681 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*sglp), 16);
682 } else {
683 imdp = (struct fw_ri_immd *)(&wqe->fr + 1);
684 imdp->op = FW_RI_DATA_IMMD;
685 imdp->r1 = 0;
686 imdp->r2 = 0;
687 imdp->immdlen = cpu_to_be32(pbllen);
688 p = (__be64 *)(imdp + 1);
689 rem = pbllen;
690 for (i = 0; i < mhp->mpl_len; i++) {
691 *p = cpu_to_be64((u64)mhp->mpl[i]);
692 rem -= sizeof(*p);
693 if (++p == (__be64 *)&sq->queue[sq->size])
694 p = (__be64 *)sq->queue;
695 }
696 BUG_ON(rem < 0);
697 while (rem) {
698 *p = 0;
699 rem -= sizeof(*p);
700 if (++p == (__be64 *)&sq->queue[sq->size])
701 p = (__be64 *)sq->queue;
702 }
703 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*imdp)
704 + pbllen, 16);
705 }
706 return 0;
707}
708
5c6b2aaf 709static int build_inv_stag(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
cfdda9d7
SW
710{
711 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
712 wqe->inv.r2 = 0;
713 *len16 = DIV_ROUND_UP(sizeof wqe->inv, 16);
714 return 0;
715}
716
c12a67fe
SW
717static void free_qp_work(struct work_struct *work)
718{
719 struct c4iw_ucontext *ucontext;
720 struct c4iw_qp *qhp;
721 struct c4iw_dev *rhp;
722
723 qhp = container_of(work, struct c4iw_qp, free_work);
724 ucontext = qhp->ucontext;
725 rhp = qhp->rhp;
726
548ddb19 727 pr_debug("qhp %p ucontext %p\n", qhp, ucontext);
c12a67fe
SW
728 destroy_qp(&rhp->rdev, &qhp->wq,
729 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
730
731 if (ucontext)
732 c4iw_put_ucontext(ucontext);
733 kfree(qhp);
734}
735
736static void queue_qp_free(struct kref *kref)
ad61a4c7
SW
737{
738 struct c4iw_qp *qhp;
739
740 qhp = container_of(kref, struct c4iw_qp, kref);
548ddb19 741 pr_debug("qhp %p\n", qhp);
c12a67fe 742 queue_work(qhp->rhp->rdev.free_workq, &qhp->free_work);
ad61a4c7
SW
743}
744
cfdda9d7
SW
745void c4iw_qp_add_ref(struct ib_qp *qp)
746{
548ddb19 747 pr_debug("ib_qp %p\n", qp);
ad61a4c7 748 kref_get(&to_c4iw_qp(qp)->kref);
cfdda9d7
SW
749}
750
751void c4iw_qp_rem_ref(struct ib_qp *qp)
752{
548ddb19 753 pr_debug("ib_qp %p\n", qp);
c12a67fe 754 kref_put(&to_c4iw_qp(qp)->kref, queue_qp_free);
cfdda9d7
SW
755}
756
05eb2389
SW
757static void add_to_fc_list(struct list_head *head, struct list_head *entry)
758{
759 if (list_empty(entry))
760 list_add_tail(entry, head);
761}
762
763static int ring_kernel_sq_db(struct c4iw_qp *qhp, u16 inc)
764{
765 unsigned long flags;
766
767 spin_lock_irqsave(&qhp->rhp->lock, flags);
768 spin_lock(&qhp->lock);
fa658a98 769 if (qhp->rhp->db_state == NORMAL)
963cab50 770 t4_ring_sq_db(&qhp->wq, inc, NULL);
fa658a98 771 else {
05eb2389
SW
772 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
773 qhp->wq.sq.wq_pidx_inc += inc;
774 }
775 spin_unlock(&qhp->lock);
776 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
777 return 0;
778}
779
780static int ring_kernel_rq_db(struct c4iw_qp *qhp, u16 inc)
781{
782 unsigned long flags;
783
784 spin_lock_irqsave(&qhp->rhp->lock, flags);
785 spin_lock(&qhp->lock);
fa658a98 786 if (qhp->rhp->db_state == NORMAL)
963cab50 787 t4_ring_rq_db(&qhp->wq, inc, NULL);
fa658a98 788 else {
05eb2389
SW
789 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
790 qhp->wq.rq.wq_pidx_inc += inc;
791 }
792 spin_unlock(&qhp->lock);
793 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
794 return 0;
795}
796
4fe7c296
SW
797static void complete_sq_drain_wr(struct c4iw_qp *qhp, struct ib_send_wr *wr)
798{
799 struct t4_cqe cqe = {};
800 struct c4iw_cq *schp;
801 unsigned long flag;
802 struct t4_cq *cq;
803
804 schp = to_c4iw_cq(qhp->ibqp.send_cq);
805 cq = &schp->cq;
806
807 cqe.u.drain_cookie = wr->wr_id;
808 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
809 CQE_OPCODE_V(C4IW_DRAIN_OPCODE) |
810 CQE_TYPE_V(1) |
811 CQE_SWCQE_V(1) |
812 CQE_QPID_V(qhp->wq.sq.qid));
813
814 spin_lock_irqsave(&schp->lock, flag);
815 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
816 cq->sw_queue[cq->sw_pidx] = cqe;
817 t4_swcq_produce(cq);
818 spin_unlock_irqrestore(&schp->lock, flag);
819
820 spin_lock_irqsave(&schp->comp_handler_lock, flag);
821 (*schp->ibcq.comp_handler)(&schp->ibcq,
822 schp->ibcq.cq_context);
823 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
824}
825
826static void complete_rq_drain_wr(struct c4iw_qp *qhp, struct ib_recv_wr *wr)
827{
828 struct t4_cqe cqe = {};
829 struct c4iw_cq *rchp;
830 unsigned long flag;
831 struct t4_cq *cq;
832
833 rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
834 cq = &rchp->cq;
835
836 cqe.u.drain_cookie = wr->wr_id;
837 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
838 CQE_OPCODE_V(C4IW_DRAIN_OPCODE) |
839 CQE_TYPE_V(0) |
840 CQE_SWCQE_V(1) |
841 CQE_QPID_V(qhp->wq.sq.qid));
842
843 spin_lock_irqsave(&rchp->lock, flag);
844 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
845 cq->sw_queue[cq->sw_pidx] = cqe;
846 t4_swcq_produce(cq);
847 spin_unlock_irqrestore(&rchp->lock, flag);
848
849 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
850 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
851 rchp->ibcq.cq_context);
852 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
853}
854
cfdda9d7
SW
855int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
856 struct ib_send_wr **bad_wr)
857{
858 int err = 0;
859 u8 len16 = 0;
860 enum fw_wr_opcodes fw_opcode = 0;
861 enum fw_ri_wr_flags fw_flags;
862 struct c4iw_qp *qhp;
fa658a98 863 union t4_wr *wqe = NULL;
cfdda9d7
SW
864 u32 num_wrs;
865 struct t4_swsqe *swsqe;
866 unsigned long flag;
867 u16 idx = 0;
868
869 qhp = to_c4iw_qp(ibqp);
870 spin_lock_irqsave(&qhp->lock, flag);
871 if (t4_wq_in_error(&qhp->wq)) {
872 spin_unlock_irqrestore(&qhp->lock, flag);
4fe7c296
SW
873 complete_sq_drain_wr(qhp, wr);
874 return err;
cfdda9d7
SW
875 }
876 num_wrs = t4_sq_avail(&qhp->wq);
877 if (num_wrs == 0) {
878 spin_unlock_irqrestore(&qhp->lock, flag);
4ff522ea 879 *bad_wr = wr;
cfdda9d7
SW
880 return -ENOMEM;
881 }
882 while (wr) {
883 if (num_wrs == 0) {
884 err = -ENOMEM;
885 *bad_wr = wr;
886 break;
887 }
d37ac31d
SW
888 wqe = (union t4_wr *)((u8 *)qhp->wq.sq.queue +
889 qhp->wq.sq.wq_pidx * T4_EQ_ENTRY_SIZE);
890
cfdda9d7
SW
891 fw_flags = 0;
892 if (wr->send_flags & IB_SEND_SOLICITED)
893 fw_flags |= FW_RI_SOLICITED_EVENT_FLAG;
ba32de9d 894 if (wr->send_flags & IB_SEND_SIGNALED || qhp->sq_sig_all)
cfdda9d7
SW
895 fw_flags |= FW_RI_COMPLETION_FLAG;
896 swsqe = &qhp->wq.sq.sw_sq[qhp->wq.sq.pidx];
897 switch (wr->opcode) {
898 case IB_WR_SEND_WITH_INV:
899 case IB_WR_SEND:
900 if (wr->send_flags & IB_SEND_FENCE)
901 fw_flags |= FW_RI_READ_FENCE_FLAG;
902 fw_opcode = FW_RI_SEND_WR;
903 if (wr->opcode == IB_WR_SEND)
904 swsqe->opcode = FW_RI_SEND;
905 else
906 swsqe->opcode = FW_RI_SEND_WITH_INV;
d37ac31d 907 err = build_rdma_send(&qhp->wq.sq, wqe, wr, &len16);
cfdda9d7
SW
908 break;
909 case IB_WR_RDMA_WRITE:
910 fw_opcode = FW_RI_RDMA_WRITE_WR;
911 swsqe->opcode = FW_RI_RDMA_WRITE;
d37ac31d 912 err = build_rdma_write(&qhp->wq.sq, wqe, wr, &len16);
cfdda9d7
SW
913 break;
914 case IB_WR_RDMA_READ:
2f1fb507 915 case IB_WR_RDMA_READ_WITH_INV:
cfdda9d7
SW
916 fw_opcode = FW_RI_RDMA_READ_WR;
917 swsqe->opcode = FW_RI_READ_REQ;
5c6b2aaf
SW
918 if (wr->opcode == IB_WR_RDMA_READ_WITH_INV) {
919 c4iw_invalidate_mr(qhp->rhp,
920 wr->sg_list[0].lkey);
410ade4c 921 fw_flags = FW_RI_RDMA_READ_INVALIDATE;
5c6b2aaf 922 } else {
2f1fb507 923 fw_flags = 0;
5c6b2aaf 924 }
cfdda9d7
SW
925 err = build_rdma_read(wqe, wr, &len16);
926 if (err)
927 break;
928 swsqe->read_len = wr->sg_list[0].length;
929 if (!qhp->wq.sq.oldest_read)
930 qhp->wq.sq.oldest_read = swsqe;
931 break;
49b53a93
SW
932 case IB_WR_REG_MR: {
933 struct c4iw_mr *mhp = to_c4iw_mr(reg_wr(wr)->mr);
934
8376b86d 935 swsqe->opcode = FW_RI_FAST_REGISTER;
49b53a93
SW
936 if (qhp->rhp->rdev.lldi.fr_nsmr_tpte_wr_support &&
937 !mhp->attr.state && mhp->mpl_len <= 2) {
938 fw_opcode = FW_RI_FR_NSMR_TPTE_WR;
939 build_tpte_memreg(&wqe->fr_tpte, reg_wr(wr),
940 mhp, &len16);
941 } else {
942 fw_opcode = FW_RI_FR_NSMR_WR;
943 err = build_memreg(&qhp->wq.sq, wqe, reg_wr(wr),
944 mhp, &len16,
945 qhp->rhp->rdev.lldi.ulptx_memwrite_dsgl);
946 if (err)
947 break;
948 }
949 mhp->attr.state = 1;
8376b86d 950 break;
49b53a93 951 }
cfdda9d7 952 case IB_WR_LOCAL_INV:
4ab1eb9c
SW
953 if (wr->send_flags & IB_SEND_FENCE)
954 fw_flags |= FW_RI_LOCAL_FENCE_FLAG;
cfdda9d7
SW
955 fw_opcode = FW_RI_INV_LSTAG_WR;
956 swsqe->opcode = FW_RI_LOCAL_INV;
5c6b2aaf
SW
957 err = build_inv_stag(wqe, wr, &len16);
958 c4iw_invalidate_mr(qhp->rhp, wr->ex.invalidate_rkey);
cfdda9d7
SW
959 break;
960 default:
4d45b757
BP
961 pr_warn("%s post of type=%d TBD!\n", __func__,
962 wr->opcode);
cfdda9d7
SW
963 err = -EINVAL;
964 }
965 if (err) {
966 *bad_wr = wr;
967 break;
968 }
969 swsqe->idx = qhp->wq.sq.pidx;
970 swsqe->complete = 0;
ba32de9d
SW
971 swsqe->signaled = (wr->send_flags & IB_SEND_SIGNALED) ||
972 qhp->sq_sig_all;
1cf24dce 973 swsqe->flushed = 0;
cfdda9d7 974 swsqe->wr_id = wr->wr_id;
7730b4c7
HS
975 if (c4iw_wr_log) {
976 swsqe->sge_ts = cxgb4_read_sge_timestamp(
977 qhp->rhp->rdev.lldi.ports[0]);
978 getnstimeofday(&swsqe->host_ts);
979 }
cfdda9d7
SW
980
981 init_wr_hdr(wqe, qhp->wq.sq.pidx, fw_opcode, fw_flags, len16);
982
548ddb19 983 pr_debug("cookie 0x%llx pidx 0x%x opcode 0x%x read_len %u\n",
a9a42886
JP
984 (unsigned long long)wr->wr_id, qhp->wq.sq.pidx,
985 swsqe->opcode, swsqe->read_len);
cfdda9d7
SW
986 wr = wr->next;
987 num_wrs--;
d37ac31d
SW
988 t4_sq_produce(&qhp->wq, len16);
989 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
cfdda9d7 990 }
05eb2389 991 if (!qhp->rhp->rdev.status_page->db_off) {
963cab50 992 t4_ring_sq_db(&qhp->wq, idx, wqe);
05eb2389
SW
993 spin_unlock_irqrestore(&qhp->lock, flag);
994 } else {
995 spin_unlock_irqrestore(&qhp->lock, flag);
996 ring_kernel_sq_db(qhp, idx);
997 }
cfdda9d7
SW
998 return err;
999}
1000
1001int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1002 struct ib_recv_wr **bad_wr)
1003{
1004 int err = 0;
1005 struct c4iw_qp *qhp;
fa658a98 1006 union t4_recv_wr *wqe = NULL;
cfdda9d7
SW
1007 u32 num_wrs;
1008 u8 len16 = 0;
1009 unsigned long flag;
1010 u16 idx = 0;
1011
1012 qhp = to_c4iw_qp(ibqp);
1013 spin_lock_irqsave(&qhp->lock, flag);
1014 if (t4_wq_in_error(&qhp->wq)) {
1015 spin_unlock_irqrestore(&qhp->lock, flag);
4fe7c296
SW
1016 complete_rq_drain_wr(qhp, wr);
1017 return err;
cfdda9d7
SW
1018 }
1019 num_wrs = t4_rq_avail(&qhp->wq);
1020 if (num_wrs == 0) {
1021 spin_unlock_irqrestore(&qhp->lock, flag);
4ff522ea 1022 *bad_wr = wr;
cfdda9d7
SW
1023 return -ENOMEM;
1024 }
1025 while (wr) {
1026 if (wr->num_sge > T4_MAX_RECV_SGE) {
1027 err = -EINVAL;
1028 *bad_wr = wr;
1029 break;
1030 }
d37ac31d
SW
1031 wqe = (union t4_recv_wr *)((u8 *)qhp->wq.rq.queue +
1032 qhp->wq.rq.wq_pidx *
1033 T4_EQ_ENTRY_SIZE);
cfdda9d7
SW
1034 if (num_wrs)
1035 err = build_rdma_recv(qhp, wqe, wr, &len16);
1036 else
1037 err = -ENOMEM;
1038 if (err) {
1039 *bad_wr = wr;
1040 break;
1041 }
1042
1043 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].wr_id = wr->wr_id;
7730b4c7
HS
1044 if (c4iw_wr_log) {
1045 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].sge_ts =
1046 cxgb4_read_sge_timestamp(
1047 qhp->rhp->rdev.lldi.ports[0]);
1048 getnstimeofday(
1049 &qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].host_ts);
1050 }
cfdda9d7
SW
1051
1052 wqe->recv.opcode = FW_RI_RECV_WR;
1053 wqe->recv.r1 = 0;
1054 wqe->recv.wrid = qhp->wq.rq.pidx;
1055 wqe->recv.r2[0] = 0;
1056 wqe->recv.r2[1] = 0;
1057 wqe->recv.r2[2] = 0;
1058 wqe->recv.len16 = len16;
548ddb19 1059 pr_debug("cookie 0x%llx pidx %u\n",
a9a42886 1060 (unsigned long long)wr->wr_id, qhp->wq.rq.pidx);
d37ac31d
SW
1061 t4_rq_produce(&qhp->wq, len16);
1062 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
cfdda9d7
SW
1063 wr = wr->next;
1064 num_wrs--;
cfdda9d7 1065 }
05eb2389 1066 if (!qhp->rhp->rdev.status_page->db_off) {
963cab50 1067 t4_ring_rq_db(&qhp->wq, idx, wqe);
05eb2389
SW
1068 spin_unlock_irqrestore(&qhp->lock, flag);
1069 } else {
1070 spin_unlock_irqrestore(&qhp->lock, flag);
1071 ring_kernel_rq_db(qhp, idx);
1072 }
cfdda9d7
SW
1073 return err;
1074}
1075
cfdda9d7
SW
1076static inline void build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type,
1077 u8 *ecode)
1078{
1079 int status;
1080 int tagged;
1081 int opcode;
1082 int rqtype;
1083 int send_inv;
1084
1085 if (!err_cqe) {
1086 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1087 *ecode = 0;
1088 return;
1089 }
1090
1091 status = CQE_STATUS(err_cqe);
1092 opcode = CQE_OPCODE(err_cqe);
1093 rqtype = RQ_TYPE(err_cqe);
1094 send_inv = (opcode == FW_RI_SEND_WITH_INV) ||
1095 (opcode == FW_RI_SEND_WITH_SE_INV);
1096 tagged = (opcode == FW_RI_RDMA_WRITE) ||
1097 (rqtype && (opcode == FW_RI_READ_RESP));
1098
1099 switch (status) {
1100 case T4_ERR_STAG:
1101 if (send_inv) {
1102 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1103 *ecode = RDMAP_CANT_INV_STAG;
1104 } else {
1105 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1106 *ecode = RDMAP_INV_STAG;
1107 }
1108 break;
1109 case T4_ERR_PDID:
1110 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1111 if ((opcode == FW_RI_SEND_WITH_INV) ||
1112 (opcode == FW_RI_SEND_WITH_SE_INV))
1113 *ecode = RDMAP_CANT_INV_STAG;
1114 else
1115 *ecode = RDMAP_STAG_NOT_ASSOC;
1116 break;
1117 case T4_ERR_QPID:
1118 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1119 *ecode = RDMAP_STAG_NOT_ASSOC;
1120 break;
1121 case T4_ERR_ACCESS:
1122 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1123 *ecode = RDMAP_ACC_VIOL;
1124 break;
1125 case T4_ERR_WRAP:
1126 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1127 *ecode = RDMAP_TO_WRAP;
1128 break;
1129 case T4_ERR_BOUND:
1130 if (tagged) {
1131 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1132 *ecode = DDPT_BASE_BOUNDS;
1133 } else {
1134 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1135 *ecode = RDMAP_BASE_BOUNDS;
1136 }
1137 break;
1138 case T4_ERR_INVALIDATE_SHARED_MR:
1139 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
1140 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1141 *ecode = RDMAP_CANT_INV_STAG;
1142 break;
1143 case T4_ERR_ECC:
1144 case T4_ERR_ECC_PSTAG:
1145 case T4_ERR_INTERNAL_ERR:
1146 *layer_type = LAYER_RDMAP|RDMAP_LOCAL_CATA;
1147 *ecode = 0;
1148 break;
1149 case T4_ERR_OUT_OF_RQE:
1150 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1151 *ecode = DDPU_INV_MSN_NOBUF;
1152 break;
1153 case T4_ERR_PBL_ADDR_BOUND:
1154 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1155 *ecode = DDPT_BASE_BOUNDS;
1156 break;
1157 case T4_ERR_CRC:
1158 *layer_type = LAYER_MPA|DDP_LLP;
1159 *ecode = MPA_CRC_ERR;
1160 break;
1161 case T4_ERR_MARKER:
1162 *layer_type = LAYER_MPA|DDP_LLP;
1163 *ecode = MPA_MARKER_ERR;
1164 break;
1165 case T4_ERR_PDU_LEN_ERR:
1166 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1167 *ecode = DDPU_MSG_TOOBIG;
1168 break;
1169 case T4_ERR_DDP_VERSION:
1170 if (tagged) {
1171 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1172 *ecode = DDPT_INV_VERS;
1173 } else {
1174 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1175 *ecode = DDPU_INV_VERS;
1176 }
1177 break;
1178 case T4_ERR_RDMA_VERSION:
1179 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1180 *ecode = RDMAP_INV_VERS;
1181 break;
1182 case T4_ERR_OPCODE:
1183 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1184 *ecode = RDMAP_INV_OPCODE;
1185 break;
1186 case T4_ERR_DDP_QUEUE_NUM:
1187 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1188 *ecode = DDPU_INV_QN;
1189 break;
1190 case T4_ERR_MSN:
1191 case T4_ERR_MSN_GAP:
1192 case T4_ERR_MSN_RANGE:
1193 case T4_ERR_IRD_OVERFLOW:
1194 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1195 *ecode = DDPU_INV_MSN_RANGE;
1196 break;
1197 case T4_ERR_TBIT:
1198 *layer_type = LAYER_DDP|DDP_LOCAL_CATA;
1199 *ecode = 0;
1200 break;
1201 case T4_ERR_MO:
1202 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1203 *ecode = DDPU_INV_MO;
1204 break;
1205 default:
1206 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1207 *ecode = 0;
1208 break;
1209 }
1210}
1211
be4c9bad
RD
1212static void post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe,
1213 gfp_t gfp)
cfdda9d7
SW
1214{
1215 struct fw_ri_wr *wqe;
1216 struct sk_buff *skb;
1217 struct terminate_message *term;
1218
548ddb19 1219 pr_debug("qhp %p qid 0x%x tid %u\n", qhp, qhp->wq.sq.qid,
a9a42886 1220 qhp->ep->hwtid);
cfdda9d7 1221
4a740838
H
1222 skb = skb_dequeue(&qhp->ep->com.ep_skb_list);
1223 if (WARN_ON(!skb))
be4c9bad 1224 return;
4a740838 1225
cfdda9d7
SW
1226 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1227
4df864c1 1228 wqe = __skb_put(skb, sizeof(*wqe));
cfdda9d7 1229 memset(wqe, 0, sizeof *wqe);
e2ac9628 1230 wqe->op_compl = cpu_to_be32(FW_WR_OP_V(FW_RI_INIT_WR));
cfdda9d7 1231 wqe->flowid_len16 = cpu_to_be32(
e2ac9628
HS
1232 FW_WR_FLOWID_V(qhp->ep->hwtid) |
1233 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
cfdda9d7
SW
1234
1235 wqe->u.terminate.type = FW_RI_TYPE_TERMINATE;
1236 wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term);
1237 term = (struct terminate_message *)wqe->u.terminate.termmsg;
d2fe99e8
KS
1238 if (qhp->attr.layer_etype == (LAYER_MPA|DDP_LLP)) {
1239 term->layer_etype = qhp->attr.layer_etype;
1240 term->ecode = qhp->attr.ecode;
1241 } else
1242 build_term_codes(err_cqe, &term->layer_etype, &term->ecode);
be4c9bad 1243 c4iw_ofld_send(&qhp->rhp->rdev, skb);
cfdda9d7
SW
1244}
1245
1246/*
1247 * Assumes qhp lock is held.
1248 */
1249static void __flush_qp(struct c4iw_qp *qhp, struct c4iw_cq *rchp,
2f5b48c3 1250 struct c4iw_cq *schp)
cfdda9d7
SW
1251{
1252 int count;
678ea9b5 1253 int rq_flushed, sq_flushed;
2f5b48c3 1254 unsigned long flag;
cfdda9d7 1255
548ddb19 1256 pr_debug("qhp %p rchp %p schp %p\n", qhp, rchp, schp);
cfdda9d7 1257
732bee7a 1258 /* locking hierarchy: cq lock first, then qp lock. */
2f5b48c3 1259 spin_lock_irqsave(&rchp->lock, flag);
cfdda9d7 1260 spin_lock(&qhp->lock);
1cf24dce
SW
1261
1262 if (qhp->wq.flushed) {
1263 spin_unlock(&qhp->lock);
1264 spin_unlock_irqrestore(&rchp->lock, flag);
1265 return;
1266 }
1267 qhp->wq.flushed = 1;
1268
1269 c4iw_flush_hw_cq(rchp);
cfdda9d7 1270 c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
678ea9b5 1271 rq_flushed = c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
cfdda9d7 1272 spin_unlock(&qhp->lock);
2f5b48c3 1273 spin_unlock_irqrestore(&rchp->lock, flag);
cfdda9d7 1274
732bee7a 1275 /* locking hierarchy: cq lock first, then qp lock. */
2f5b48c3 1276 spin_lock_irqsave(&schp->lock, flag);
cfdda9d7 1277 spin_lock(&qhp->lock);
1cf24dce
SW
1278 if (schp != rchp)
1279 c4iw_flush_hw_cq(schp);
678ea9b5 1280 sq_flushed = c4iw_flush_sq(qhp);
cfdda9d7 1281 spin_unlock(&qhp->lock);
2f5b48c3 1282 spin_unlock_irqrestore(&schp->lock, flag);
678ea9b5
SW
1283
1284 if (schp == rchp) {
1285 if (t4_clear_cq_armed(&rchp->cq) &&
1286 (rq_flushed || sq_flushed)) {
1287 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
1288 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
1289 rchp->ibcq.cq_context);
1290 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1291 }
1292 } else {
1293 if (t4_clear_cq_armed(&rchp->cq) && rq_flushed) {
1294 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
1295 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
1296 rchp->ibcq.cq_context);
1297 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1298 }
1299 if (t4_clear_cq_armed(&schp->cq) && sq_flushed) {
1300 spin_lock_irqsave(&schp->comp_handler_lock, flag);
1301 (*schp->ibcq.comp_handler)(&schp->ibcq,
1302 schp->ibcq.cq_context);
1303 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
1304 }
581bbe2c 1305 }
cfdda9d7
SW
1306}
1307
2f5b48c3 1308static void flush_qp(struct c4iw_qp *qhp)
cfdda9d7
SW
1309{
1310 struct c4iw_cq *rchp, *schp;
581bbe2c 1311 unsigned long flag;
cfdda9d7 1312
1cf24dce
SW
1313 rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
1314 schp = to_c4iw_cq(qhp->ibqp.send_cq);
cfdda9d7 1315
1cf24dce 1316 t4_set_wq_in_error(&qhp->wq);
cfdda9d7 1317 if (qhp->ibqp.uobject) {
cfdda9d7 1318 t4_set_cq_in_error(&rchp->cq);
581bbe2c 1319 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
01e7da6b 1320 (*rchp->ibcq.comp_handler)(&rchp->ibcq, rchp->ibcq.cq_context);
581bbe2c 1321 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
01e7da6b 1322 if (schp != rchp) {
cfdda9d7 1323 t4_set_cq_in_error(&schp->cq);
581bbe2c 1324 spin_lock_irqsave(&schp->comp_handler_lock, flag);
01e7da6b
KS
1325 (*schp->ibcq.comp_handler)(&schp->ibcq,
1326 schp->ibcq.cq_context);
581bbe2c 1327 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
01e7da6b 1328 }
cfdda9d7
SW
1329 return;
1330 }
2f5b48c3 1331 __flush_qp(qhp, rchp, schp);
cfdda9d7
SW
1332}
1333
73d6fcad
SW
1334static int rdma_fini(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1335 struct c4iw_ep *ep)
cfdda9d7
SW
1336{
1337 struct fw_ri_wr *wqe;
1338 int ret;
cfdda9d7
SW
1339 struct sk_buff *skb;
1340
548ddb19 1341 pr_debug("qhp %p qid 0x%x tid %u\n", qhp, qhp->wq.sq.qid, ep->hwtid);
cfdda9d7 1342
4a740838
H
1343 skb = skb_dequeue(&ep->com.ep_skb_list);
1344 if (WARN_ON(!skb))
cfdda9d7 1345 return -ENOMEM;
4a740838 1346
73d6fcad 1347 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
cfdda9d7 1348
4df864c1 1349 wqe = __skb_put(skb, sizeof(*wqe));
cfdda9d7
SW
1350 memset(wqe, 0, sizeof *wqe);
1351 wqe->op_compl = cpu_to_be32(
e2ac9628
HS
1352 FW_WR_OP_V(FW_RI_INIT_WR) |
1353 FW_WR_COMPL_F);
cfdda9d7 1354 wqe->flowid_len16 = cpu_to_be32(
e2ac9628
HS
1355 FW_WR_FLOWID_V(ep->hwtid) |
1356 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
6198dd8d 1357 wqe->cookie = (uintptr_t)&ep->com.wr_wait;
cfdda9d7
SW
1358
1359 wqe->u.fini.type = FW_RI_TYPE_FINI;
cfdda9d7
SW
1360 ret = c4iw_ofld_send(&rhp->rdev, skb);
1361 if (ret)
1362 goto out;
1363
2f5b48c3 1364 ret = c4iw_wait_for_reply(&rhp->rdev, &ep->com.wr_wait, qhp->ep->hwtid,
aadc4df3 1365 qhp->wq.sq.qid, __func__);
cfdda9d7 1366out:
548ddb19 1367 pr_debug("ret %d\n", ret);
cfdda9d7
SW
1368 return ret;
1369}
1370
1371static void build_rtr_msg(u8 p2p_type, struct fw_ri_init *init)
1372{
548ddb19 1373 pr_debug("p2p_type = %d\n", p2p_type);
cfdda9d7
SW
1374 memset(&init->u, 0, sizeof init->u);
1375 switch (p2p_type) {
1376 case FW_RI_INIT_P2PTYPE_RDMA_WRITE:
1377 init->u.write.opcode = FW_RI_RDMA_WRITE_WR;
1378 init->u.write.stag_sink = cpu_to_be32(1);
1379 init->u.write.to_sink = cpu_to_be64(1);
1380 init->u.write.u.immd_src[0].op = FW_RI_DATA_IMMD;
1381 init->u.write.len16 = DIV_ROUND_UP(sizeof init->u.write +
1382 sizeof(struct fw_ri_immd),
1383 16);
1384 break;
1385 case FW_RI_INIT_P2PTYPE_READ_REQ:
1386 init->u.write.opcode = FW_RI_RDMA_READ_WR;
1387 init->u.read.stag_src = cpu_to_be32(1);
1388 init->u.read.to_src_lo = cpu_to_be32(1);
1389 init->u.read.stag_sink = cpu_to_be32(1);
1390 init->u.read.to_sink_lo = cpu_to_be32(1);
1391 init->u.read.len16 = DIV_ROUND_UP(sizeof init->u.read, 16);
1392 break;
1393 }
1394}
1395
1396static int rdma_init(struct c4iw_dev *rhp, struct c4iw_qp *qhp)
1397{
1398 struct fw_ri_wr *wqe;
1399 int ret;
cfdda9d7
SW
1400 struct sk_buff *skb;
1401
548ddb19 1402 pr_debug("qhp %p qid 0x%x tid %u ird %u ord %u\n", qhp,
a9a42886 1403 qhp->wq.sq.qid, qhp->ep->hwtid, qhp->ep->ird, qhp->ep->ord);
cfdda9d7 1404
d3c814e8 1405 skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
4c2c5763
HS
1406 if (!skb) {
1407 ret = -ENOMEM;
1408 goto out;
1409 }
1410 ret = alloc_ird(rhp, qhp->attr.max_ird);
1411 if (ret) {
1412 qhp->attr.max_ird = 0;
1413 kfree_skb(skb);
1414 goto out;
1415 }
cfdda9d7
SW
1416 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1417
4df864c1 1418 wqe = __skb_put(skb, sizeof(*wqe));
cfdda9d7
SW
1419 memset(wqe, 0, sizeof *wqe);
1420 wqe->op_compl = cpu_to_be32(
e2ac9628
HS
1421 FW_WR_OP_V(FW_RI_INIT_WR) |
1422 FW_WR_COMPL_F);
cfdda9d7 1423 wqe->flowid_len16 = cpu_to_be32(
e2ac9628
HS
1424 FW_WR_FLOWID_V(qhp->ep->hwtid) |
1425 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
cfdda9d7 1426
6198dd8d 1427 wqe->cookie = (uintptr_t)&qhp->ep->com.wr_wait;
cfdda9d7
SW
1428
1429 wqe->u.init.type = FW_RI_TYPE_INIT;
1430 wqe->u.init.mpareqbit_p2ptype =
cf7fe64a
HS
1431 FW_RI_WR_MPAREQBIT_V(qhp->attr.mpa_attr.initiator) |
1432 FW_RI_WR_P2PTYPE_V(qhp->attr.mpa_attr.p2p_type);
cfdda9d7
SW
1433 wqe->u.init.mpa_attrs = FW_RI_MPA_IETF_ENABLE;
1434 if (qhp->attr.mpa_attr.recv_marker_enabled)
1435 wqe->u.init.mpa_attrs |= FW_RI_MPA_RX_MARKER_ENABLE;
1436 if (qhp->attr.mpa_attr.xmit_marker_enabled)
1437 wqe->u.init.mpa_attrs |= FW_RI_MPA_TX_MARKER_ENABLE;
1438 if (qhp->attr.mpa_attr.crc_enabled)
1439 wqe->u.init.mpa_attrs |= FW_RI_MPA_CRC_ENABLE;
1440
1441 wqe->u.init.qp_caps = FW_RI_QP_RDMA_READ_ENABLE |
1442 FW_RI_QP_RDMA_WRITE_ENABLE |
1443 FW_RI_QP_BIND_ENABLE;
1444 if (!qhp->ibqp.uobject)
1445 wqe->u.init.qp_caps |= FW_RI_QP_FAST_REGISTER_ENABLE |
1446 FW_RI_QP_STAG0_ENABLE;
1447 wqe->u.init.nrqe = cpu_to_be16(t4_rqes_posted(&qhp->wq));
1448 wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd);
1449 wqe->u.init.qpid = cpu_to_be32(qhp->wq.sq.qid);
1450 wqe->u.init.sq_eqid = cpu_to_be32(qhp->wq.sq.qid);
1451 wqe->u.init.rq_eqid = cpu_to_be32(qhp->wq.rq.qid);
1452 wqe->u.init.scqid = cpu_to_be32(qhp->attr.scq);
1453 wqe->u.init.rcqid = cpu_to_be32(qhp->attr.rcq);
1454 wqe->u.init.ord_max = cpu_to_be32(qhp->attr.max_ord);
1455 wqe->u.init.ird_max = cpu_to_be32(qhp->attr.max_ird);
1456 wqe->u.init.iss = cpu_to_be32(qhp->ep->snd_seq);
1457 wqe->u.init.irs = cpu_to_be32(qhp->ep->rcv_seq);
1458 wqe->u.init.hwrqsize = cpu_to_be32(qhp->wq.rq.rqt_size);
1459 wqe->u.init.hwrqaddr = cpu_to_be32(qhp->wq.rq.rqt_hwaddr -
1460 rhp->rdev.lldi.vr->rq.start);
1461 if (qhp->attr.mpa_attr.initiator)
1462 build_rtr_msg(qhp->attr.mpa_attr.p2p_type, &wqe->u.init);
1463
cfdda9d7
SW
1464 ret = c4iw_ofld_send(&rhp->rdev, skb);
1465 if (ret)
4c2c5763 1466 goto err1;
cfdda9d7 1467
2f5b48c3
SW
1468 ret = c4iw_wait_for_reply(&rhp->rdev, &qhp->ep->com.wr_wait,
1469 qhp->ep->hwtid, qhp->wq.sq.qid, __func__);
4c2c5763
HS
1470 if (!ret)
1471 goto out;
1472err1:
1473 free_ird(rhp, qhp->attr.max_ird);
cfdda9d7 1474out:
548ddb19 1475 pr_debug("ret %d\n", ret);
cfdda9d7
SW
1476 return ret;
1477}
1478
1479int c4iw_modify_qp(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1480 enum c4iw_qp_attr_mask mask,
1481 struct c4iw_qp_attributes *attrs,
1482 int internal)
1483{
1484 int ret = 0;
1485 struct c4iw_qp_attributes newattr = qhp->attr;
cfdda9d7
SW
1486 int disconnect = 0;
1487 int terminate = 0;
1488 int abort = 0;
1489 int free = 0;
1490 struct c4iw_ep *ep = NULL;
1491
548ddb19 1492 pr_debug("qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n",
a9a42886
JP
1493 qhp, qhp->wq.sq.qid, qhp->wq.rq.qid, qhp->ep, qhp->attr.state,
1494 (mask & C4IW_QP_ATTR_NEXT_STATE) ? attrs->next_state : -1);
cfdda9d7 1495
2f5b48c3 1496 mutex_lock(&qhp->mutex);
cfdda9d7
SW
1497
1498 /* Process attr changes if in IDLE */
1499 if (mask & C4IW_QP_ATTR_VALID_MODIFY) {
1500 if (qhp->attr.state != C4IW_QP_STATE_IDLE) {
1501 ret = -EIO;
1502 goto out;
1503 }
1504 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_READ)
1505 newattr.enable_rdma_read = attrs->enable_rdma_read;
1506 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_WRITE)
1507 newattr.enable_rdma_write = attrs->enable_rdma_write;
1508 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_BIND)
1509 newattr.enable_bind = attrs->enable_bind;
1510 if (mask & C4IW_QP_ATTR_MAX_ORD) {
be4c9bad 1511 if (attrs->max_ord > c4iw_max_read_depth) {
cfdda9d7
SW
1512 ret = -EINVAL;
1513 goto out;
1514 }
1515 newattr.max_ord = attrs->max_ord;
1516 }
1517 if (mask & C4IW_QP_ATTR_MAX_IRD) {
4c2c5763 1518 if (attrs->max_ird > cur_max_read_depth(rhp)) {
cfdda9d7
SW
1519 ret = -EINVAL;
1520 goto out;
1521 }
1522 newattr.max_ird = attrs->max_ird;
1523 }
1524 qhp->attr = newattr;
1525 }
1526
2c974781 1527 if (mask & C4IW_QP_ATTR_SQ_DB) {
05eb2389 1528 ret = ring_kernel_sq_db(qhp, attrs->sq_db_inc);
2c974781
VP
1529 goto out;
1530 }
1531 if (mask & C4IW_QP_ATTR_RQ_DB) {
05eb2389 1532 ret = ring_kernel_rq_db(qhp, attrs->rq_db_inc);
2c974781
VP
1533 goto out;
1534 }
1535
cfdda9d7
SW
1536 if (!(mask & C4IW_QP_ATTR_NEXT_STATE))
1537 goto out;
1538 if (qhp->attr.state == attrs->next_state)
1539 goto out;
1540
1541 switch (qhp->attr.state) {
1542 case C4IW_QP_STATE_IDLE:
1543 switch (attrs->next_state) {
1544 case C4IW_QP_STATE_RTS:
1545 if (!(mask & C4IW_QP_ATTR_LLP_STREAM_HANDLE)) {
1546 ret = -EINVAL;
1547 goto out;
1548 }
1549 if (!(mask & C4IW_QP_ATTR_MPA_ATTR)) {
1550 ret = -EINVAL;
1551 goto out;
1552 }
1553 qhp->attr.mpa_attr = attrs->mpa_attr;
1554 qhp->attr.llp_stream_handle = attrs->llp_stream_handle;
1555 qhp->ep = qhp->attr.llp_stream_handle;
2f5b48c3 1556 set_state(qhp, C4IW_QP_STATE_RTS);
cfdda9d7
SW
1557
1558 /*
1559 * Ref the endpoint here and deref when we
1560 * disassociate the endpoint from the QP. This
1561 * happens in CLOSING->IDLE transition or *->ERROR
1562 * transition.
1563 */
1564 c4iw_get_ep(&qhp->ep->com);
cfdda9d7 1565 ret = rdma_init(rhp, qhp);
cfdda9d7
SW
1566 if (ret)
1567 goto err;
1568 break;
1569 case C4IW_QP_STATE_ERROR:
2f5b48c3
SW
1570 set_state(qhp, C4IW_QP_STATE_ERROR);
1571 flush_qp(qhp);
cfdda9d7
SW
1572 break;
1573 default:
1574 ret = -EINVAL;
1575 goto out;
1576 }
1577 break;
1578 case C4IW_QP_STATE_RTS:
1579 switch (attrs->next_state) {
1580 case C4IW_QP_STATE_CLOSING:
2c935bc5 1581 BUG_ON(kref_read(&qhp->ep->com.kref) < 2);
b4e2901c 1582 t4_set_wq_in_error(&qhp->wq);
2f5b48c3 1583 set_state(qhp, C4IW_QP_STATE_CLOSING);
73d6fcad 1584 ep = qhp->ep;
cfdda9d7
SW
1585 if (!internal) {
1586 abort = 0;
1587 disconnect = 1;
2f5b48c3 1588 c4iw_get_ep(&qhp->ep->com);
cfdda9d7 1589 }
73d6fcad 1590 ret = rdma_fini(rhp, qhp, ep);
8da7e7a5 1591 if (ret)
cfdda9d7 1592 goto err;
cfdda9d7
SW
1593 break;
1594 case C4IW_QP_STATE_TERMINATE:
b4e2901c 1595 t4_set_wq_in_error(&qhp->wq);
2f5b48c3 1596 set_state(qhp, C4IW_QP_STATE_TERMINATE);
d2fe99e8
KS
1597 qhp->attr.layer_etype = attrs->layer_etype;
1598 qhp->attr.ecode = attrs->ecode;
be4c9bad 1599 ep = qhp->ep;
cc18b939
SW
1600 if (!internal) {
1601 c4iw_get_ep(&qhp->ep->com);
0e42c1f4 1602 terminate = 1;
cc18b939
SW
1603 disconnect = 1;
1604 } else {
1605 terminate = qhp->attr.send_term;
09992579
SW
1606 ret = rdma_fini(rhp, qhp, ep);
1607 if (ret)
1608 goto err;
1609 }
cfdda9d7
SW
1610 break;
1611 case C4IW_QP_STATE_ERROR:
1cf24dce 1612 t4_set_wq_in_error(&qhp->wq);
b4e2901c 1613 set_state(qhp, C4IW_QP_STATE_ERROR);
cfdda9d7
SW
1614 if (!internal) {
1615 abort = 1;
1616 disconnect = 1;
1617 ep = qhp->ep;
2f5b48c3 1618 c4iw_get_ep(&qhp->ep->com);
cfdda9d7
SW
1619 }
1620 goto err;
1621 break;
1622 default:
1623 ret = -EINVAL;
1624 goto out;
1625 }
1626 break;
1627 case C4IW_QP_STATE_CLOSING:
4fe7c296
SW
1628
1629 /*
1630 * Allow kernel users to move to ERROR for qp draining.
1631 */
1632 if (!internal && (qhp->ibqp.uobject || attrs->next_state !=
1633 C4IW_QP_STATE_ERROR)) {
cfdda9d7
SW
1634 ret = -EINVAL;
1635 goto out;
1636 }
1637 switch (attrs->next_state) {
1638 case C4IW_QP_STATE_IDLE:
2f5b48c3
SW
1639 flush_qp(qhp);
1640 set_state(qhp, C4IW_QP_STATE_IDLE);
cfdda9d7
SW
1641 qhp->attr.llp_stream_handle = NULL;
1642 c4iw_put_ep(&qhp->ep->com);
1643 qhp->ep = NULL;
1644 wake_up(&qhp->wait);
1645 break;
1646 case C4IW_QP_STATE_ERROR:
1647 goto err;
1648 default:
1649 ret = -EINVAL;
1650 goto err;
1651 }
1652 break;
1653 case C4IW_QP_STATE_ERROR:
1654 if (attrs->next_state != C4IW_QP_STATE_IDLE) {
1655 ret = -EINVAL;
1656 goto out;
1657 }
1658 if (!t4_sq_empty(&qhp->wq) || !t4_rq_empty(&qhp->wq)) {
1659 ret = -EINVAL;
1660 goto out;
1661 }
2f5b48c3 1662 set_state(qhp, C4IW_QP_STATE_IDLE);
cfdda9d7
SW
1663 break;
1664 case C4IW_QP_STATE_TERMINATE:
1665 if (!internal) {
1666 ret = -EINVAL;
1667 goto out;
1668 }
1669 goto err;
1670 break;
1671 default:
700456bd 1672 pr_err("%s in a bad state %d\n", __func__, qhp->attr.state);
cfdda9d7
SW
1673 ret = -EINVAL;
1674 goto err;
1675 break;
1676 }
1677 goto out;
1678err:
548ddb19 1679 pr_debug("disassociating ep %p qpid 0x%x\n", qhp->ep,
a9a42886 1680 qhp->wq.sq.qid);
cfdda9d7
SW
1681
1682 /* disassociate the LLP connection */
1683 qhp->attr.llp_stream_handle = NULL;
af93fb5d
SW
1684 if (!ep)
1685 ep = qhp->ep;
cfdda9d7 1686 qhp->ep = NULL;
2f5b48c3 1687 set_state(qhp, C4IW_QP_STATE_ERROR);
cfdda9d7 1688 free = 1;
91e9c071 1689 abort = 1;
cfdda9d7 1690 BUG_ON(!ep);
2f5b48c3 1691 flush_qp(qhp);
5b341808 1692 wake_up(&qhp->wait);
cfdda9d7 1693out:
2f5b48c3 1694 mutex_unlock(&qhp->mutex);
cfdda9d7
SW
1695
1696 if (terminate)
be4c9bad 1697 post_terminate(qhp, NULL, internal ? GFP_ATOMIC : GFP_KERNEL);
cfdda9d7
SW
1698
1699 /*
1700 * If disconnect is 1, then we need to initiate a disconnect
1701 * on the EP. This can be a normal close (RTS->CLOSING) or
1702 * an abnormal close (RTS/CLOSING->ERROR).
1703 */
1704 if (disconnect) {
be4c9bad
RD
1705 c4iw_ep_disconnect(ep, abort, internal ? GFP_ATOMIC :
1706 GFP_KERNEL);
cfdda9d7
SW
1707 c4iw_put_ep(&ep->com);
1708 }
1709
1710 /*
1711 * If free is 1, then we've disassociated the EP from the QP
1712 * and we need to dereference the EP.
1713 */
1714 if (free)
1715 c4iw_put_ep(&ep->com);
548ddb19 1716 pr_debug("exit state %d\n", qhp->attr.state);
cfdda9d7
SW
1717 return ret;
1718}
1719
1720int c4iw_destroy_qp(struct ib_qp *ib_qp)
1721{
1722 struct c4iw_dev *rhp;
1723 struct c4iw_qp *qhp;
1724 struct c4iw_qp_attributes attrs;
cfdda9d7
SW
1725
1726 qhp = to_c4iw_qp(ib_qp);
1727 rhp = qhp->rhp;
1728
1729 attrs.next_state = C4IW_QP_STATE_ERROR;
d2fe99e8
KS
1730 if (qhp->attr.state == C4IW_QP_STATE_TERMINATE)
1731 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1732 else
1733 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
cfdda9d7
SW
1734 wait_event(qhp->wait, !qhp->ep);
1735
05eb2389 1736 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
cfdda9d7 1737
05eb2389
SW
1738 spin_lock_irq(&rhp->lock);
1739 if (!list_empty(&qhp->db_fc_entry))
1740 list_del_init(&qhp->db_fc_entry);
1741 spin_unlock_irq(&rhp->lock);
4c2c5763 1742 free_ird(rhp, qhp->attr.max_ird);
05eb2389 1743
ad61a4c7
SW
1744 c4iw_qp_rem_ref(ib_qp);
1745
548ddb19 1746 pr_debug("ib_qp %p qpid 0x%0x\n", ib_qp, qhp->wq.sq.qid);
cfdda9d7
SW
1747 return 0;
1748}
1749
1750struct ib_qp *c4iw_create_qp(struct ib_pd *pd, struct ib_qp_init_attr *attrs,
1751 struct ib_udata *udata)
1752{
1753 struct c4iw_dev *rhp;
1754 struct c4iw_qp *qhp;
1755 struct c4iw_pd *php;
1756 struct c4iw_cq *schp;
1757 struct c4iw_cq *rchp;
1758 struct c4iw_create_qp_resp uresp;
ff1706f4 1759 unsigned int sqsize, rqsize;
cfdda9d7
SW
1760 struct c4iw_ucontext *ucontext;
1761 int ret;
a6054df3
H
1762 struct c4iw_mm_entry *sq_key_mm, *rq_key_mm = NULL, *sq_db_key_mm;
1763 struct c4iw_mm_entry *rq_db_key_mm = NULL, *ma_sync_key_mm = NULL;
cfdda9d7 1764
548ddb19 1765 pr_debug("ib_pd %p\n", pd);
cfdda9d7
SW
1766
1767 if (attrs->qp_type != IB_QPT_RC)
1768 return ERR_PTR(-EINVAL);
1769
1770 php = to_c4iw_pd(pd);
1771 rhp = php->rhp;
1772 schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
1773 rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
1774 if (!schp || !rchp)
1775 return ERR_PTR(-EINVAL);
1776
1777 if (attrs->cap.max_inline_data > T4_MAX_SEND_INLINE)
1778 return ERR_PTR(-EINVAL);
1779
66eb19af 1780 if (attrs->cap.max_recv_wr > rhp->rdev.hw_queue.t4_max_rq_size)
cfdda9d7 1781 return ERR_PTR(-E2BIG);
66eb19af
HS
1782 rqsize = attrs->cap.max_recv_wr + 1;
1783 if (rqsize < 8)
1784 rqsize = 8;
cfdda9d7 1785
66eb19af 1786 if (attrs->cap.max_send_wr > rhp->rdev.hw_queue.t4_max_sq_size)
cfdda9d7 1787 return ERR_PTR(-E2BIG);
66eb19af
HS
1788 sqsize = attrs->cap.max_send_wr + 1;
1789 if (sqsize < 8)
1790 sqsize = 8;
cfdda9d7
SW
1791
1792 ucontext = pd->uobject ? to_c4iw_ucontext(pd->uobject->context) : NULL;
1793
cfdda9d7
SW
1794 qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
1795 if (!qhp)
1796 return ERR_PTR(-ENOMEM);
1797 qhp->wq.sq.size = sqsize;
66eb19af
HS
1798 qhp->wq.sq.memsize =
1799 (sqsize + rhp->rdev.hw_queue.t4_eq_status_entries) *
1800 sizeof(*qhp->wq.sq.queue) + 16 * sizeof(__be64);
1cf24dce 1801 qhp->wq.sq.flush_cidx = -1;
cfdda9d7 1802 qhp->wq.rq.size = rqsize;
66eb19af
HS
1803 qhp->wq.rq.memsize =
1804 (rqsize + rhp->rdev.hw_queue.t4_eq_status_entries) *
1805 sizeof(*qhp->wq.rq.queue);
cfdda9d7
SW
1806
1807 if (ucontext) {
1808 qhp->wq.sq.memsize = roundup(qhp->wq.sq.memsize, PAGE_SIZE);
1809 qhp->wq.rq.memsize = roundup(qhp->wq.rq.memsize, PAGE_SIZE);
1810 }
1811
cfdda9d7
SW
1812 ret = create_qp(&rhp->rdev, &qhp->wq, &schp->cq, &rchp->cq,
1813 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1814 if (ret)
1815 goto err1;
1816
1817 attrs->cap.max_recv_wr = rqsize - 1;
1818 attrs->cap.max_send_wr = sqsize - 1;
1819 attrs->cap.max_inline_data = T4_MAX_SEND_INLINE;
1820
1821 qhp->rhp = rhp;
1822 qhp->attr.pd = php->pdid;
1823 qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
1824 qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
1825 qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
1826 qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
1827 qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
1828 qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
1829 qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
1830 qhp->attr.state = C4IW_QP_STATE_IDLE;
1831 qhp->attr.next_state = C4IW_QP_STATE_IDLE;
1832 qhp->attr.enable_rdma_read = 1;
1833 qhp->attr.enable_rdma_write = 1;
1834 qhp->attr.enable_bind = 1;
4c2c5763
HS
1835 qhp->attr.max_ord = 0;
1836 qhp->attr.max_ird = 0;
ba32de9d 1837 qhp->sq_sig_all = attrs->sq_sig_type == IB_SIGNAL_ALL_WR;
cfdda9d7 1838 spin_lock_init(&qhp->lock);
2f5b48c3 1839 mutex_init(&qhp->mutex);
cfdda9d7 1840 init_waitqueue_head(&qhp->wait);
ad61a4c7 1841 kref_init(&qhp->kref);
c12a67fe 1842 INIT_WORK(&qhp->free_work, free_qp_work);
cfdda9d7 1843
05eb2389 1844 ret = insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.sq.qid);
cfdda9d7
SW
1845 if (ret)
1846 goto err2;
1847
cfdda9d7 1848 if (udata) {
a6054df3
H
1849 sq_key_mm = kmalloc(sizeof(*sq_key_mm), GFP_KERNEL);
1850 if (!sq_key_mm) {
cfdda9d7 1851 ret = -ENOMEM;
30a6a62f 1852 goto err3;
cfdda9d7 1853 }
a6054df3
H
1854 rq_key_mm = kmalloc(sizeof(*rq_key_mm), GFP_KERNEL);
1855 if (!rq_key_mm) {
cfdda9d7 1856 ret = -ENOMEM;
30a6a62f 1857 goto err4;
cfdda9d7 1858 }
a6054df3
H
1859 sq_db_key_mm = kmalloc(sizeof(*sq_db_key_mm), GFP_KERNEL);
1860 if (!sq_db_key_mm) {
cfdda9d7 1861 ret = -ENOMEM;
30a6a62f 1862 goto err5;
cfdda9d7 1863 }
a6054df3
H
1864 rq_db_key_mm = kmalloc(sizeof(*rq_db_key_mm), GFP_KERNEL);
1865 if (!rq_db_key_mm) {
cfdda9d7 1866 ret = -ENOMEM;
30a6a62f 1867 goto err6;
cfdda9d7 1868 }
c6d7b267 1869 if (t4_sq_onchip(&qhp->wq.sq)) {
a6054df3
H
1870 ma_sync_key_mm = kmalloc(sizeof(*ma_sync_key_mm),
1871 GFP_KERNEL);
1872 if (!ma_sync_key_mm) {
c6d7b267
SW
1873 ret = -ENOMEM;
1874 goto err7;
1875 }
1876 uresp.flags = C4IW_QPF_ONCHIP;
1877 } else
1878 uresp.flags = 0;
cfdda9d7
SW
1879 uresp.qid_mask = rhp->rdev.qpmask;
1880 uresp.sqid = qhp->wq.sq.qid;
1881 uresp.sq_size = qhp->wq.sq.size;
1882 uresp.sq_memsize = qhp->wq.sq.memsize;
1883 uresp.rqid = qhp->wq.rq.qid;
1884 uresp.rq_size = qhp->wq.rq.size;
1885 uresp.rq_memsize = qhp->wq.rq.memsize;
1886 spin_lock(&ucontext->mmap_lock);
a6054df3 1887 if (ma_sync_key_mm) {
c6d7b267
SW
1888 uresp.ma_sync_key = ucontext->key;
1889 ucontext->key += PAGE_SIZE;
ae1fe07f
DC
1890 } else {
1891 uresp.ma_sync_key = 0;
c6d7b267 1892 }
cfdda9d7
SW
1893 uresp.sq_key = ucontext->key;
1894 ucontext->key += PAGE_SIZE;
1895 uresp.rq_key = ucontext->key;
1896 ucontext->key += PAGE_SIZE;
1897 uresp.sq_db_gts_key = ucontext->key;
1898 ucontext->key += PAGE_SIZE;
1899 uresp.rq_db_gts_key = ucontext->key;
1900 ucontext->key += PAGE_SIZE;
1901 spin_unlock(&ucontext->mmap_lock);
1902 ret = ib_copy_to_udata(udata, &uresp, sizeof uresp);
1903 if (ret)
c6d7b267 1904 goto err8;
a6054df3
H
1905 sq_key_mm->key = uresp.sq_key;
1906 sq_key_mm->addr = qhp->wq.sq.phys_addr;
1907 sq_key_mm->len = PAGE_ALIGN(qhp->wq.sq.memsize);
1908 insert_mmap(ucontext, sq_key_mm);
1909 rq_key_mm->key = uresp.rq_key;
1910 rq_key_mm->addr = virt_to_phys(qhp->wq.rq.queue);
1911 rq_key_mm->len = PAGE_ALIGN(qhp->wq.rq.memsize);
1912 insert_mmap(ucontext, rq_key_mm);
1913 sq_db_key_mm->key = uresp.sq_db_gts_key;
1914 sq_db_key_mm->addr = (u64)(unsigned long)qhp->wq.sq.bar2_pa;
1915 sq_db_key_mm->len = PAGE_SIZE;
1916 insert_mmap(ucontext, sq_db_key_mm);
1917 rq_db_key_mm->key = uresp.rq_db_gts_key;
1918 rq_db_key_mm->addr = (u64)(unsigned long)qhp->wq.rq.bar2_pa;
1919 rq_db_key_mm->len = PAGE_SIZE;
1920 insert_mmap(ucontext, rq_db_key_mm);
1921 if (ma_sync_key_mm) {
1922 ma_sync_key_mm->key = uresp.ma_sync_key;
1923 ma_sync_key_mm->addr =
1924 (pci_resource_start(rhp->rdev.lldi.pdev, 0) +
1925 PCIE_MA_SYNC_A) & PAGE_MASK;
1926 ma_sync_key_mm->len = PAGE_SIZE;
1927 insert_mmap(ucontext, ma_sync_key_mm);
c6d7b267 1928 }
c12a67fe
SW
1929
1930 c4iw_get_ucontext(ucontext);
1931 qhp->ucontext = ucontext;
cfdda9d7
SW
1932 }
1933 qhp->ibqp.qp_num = qhp->wq.sq.qid;
1934 init_timer(&(qhp->timer));
05eb2389 1935 INIT_LIST_HEAD(&qhp->db_fc_entry);
548ddb19 1936 pr_debug("sq id %u size %u memsize %zu num_entries %u rq id %u size %u memsize %zu num_entries %u\n",
a9a42886
JP
1937 qhp->wq.sq.qid, qhp->wq.sq.size, qhp->wq.sq.memsize,
1938 attrs->cap.max_send_wr, qhp->wq.rq.qid, qhp->wq.rq.size,
1939 qhp->wq.rq.memsize, attrs->cap.max_recv_wr);
cfdda9d7 1940 return &qhp->ibqp;
c6d7b267 1941err8:
a6054df3 1942 kfree(ma_sync_key_mm);
cfdda9d7 1943err7:
a6054df3 1944 kfree(rq_db_key_mm);
cfdda9d7 1945err6:
a6054df3 1946 kfree(sq_db_key_mm);
cfdda9d7 1947err5:
a6054df3 1948 kfree(rq_key_mm);
cfdda9d7 1949err4:
a6054df3 1950 kfree(sq_key_mm);
cfdda9d7
SW
1951err3:
1952 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
1953err2:
1954 destroy_qp(&rhp->rdev, &qhp->wq,
1955 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1956err1:
1957 kfree(qhp);
1958 return ERR_PTR(ret);
1959}
1960
1961int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1962 int attr_mask, struct ib_udata *udata)
1963{
1964 struct c4iw_dev *rhp;
1965 struct c4iw_qp *qhp;
1966 enum c4iw_qp_attr_mask mask = 0;
1967 struct c4iw_qp_attributes attrs;
1968
548ddb19 1969 pr_debug("ib_qp %p\n", ibqp);
cfdda9d7
SW
1970
1971 /* iwarp does not support the RTR state */
1972 if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
1973 attr_mask &= ~IB_QP_STATE;
1974
1975 /* Make sure we still have something left to do */
1976 if (!attr_mask)
1977 return 0;
1978
1979 memset(&attrs, 0, sizeof attrs);
1980 qhp = to_c4iw_qp(ibqp);
1981 rhp = qhp->rhp;
1982
1983 attrs.next_state = c4iw_convert_state(attr->qp_state);
1984 attrs.enable_rdma_read = (attr->qp_access_flags &
1985 IB_ACCESS_REMOTE_READ) ? 1 : 0;
1986 attrs.enable_rdma_write = (attr->qp_access_flags &
1987 IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
1988 attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
1989
1990
1991 mask |= (attr_mask & IB_QP_STATE) ? C4IW_QP_ATTR_NEXT_STATE : 0;
1992 mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
1993 (C4IW_QP_ATTR_ENABLE_RDMA_READ |
1994 C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
1995 C4IW_QP_ATTR_ENABLE_RDMA_BIND) : 0;
1996
2c974781
VP
1997 /*
1998 * Use SQ_PSN and RQ_PSN to pass in IDX_INC values for
1999 * ringing the queue db when we're in DB_FULL mode.
c2f9da92 2000 * Only allow this on T4 devices.
2c974781
VP
2001 */
2002 attrs.sq_db_inc = attr->sq_psn;
2003 attrs.rq_db_inc = attr->rq_psn;
2004 mask |= (attr_mask & IB_QP_SQ_PSN) ? C4IW_QP_ATTR_SQ_DB : 0;
2005 mask |= (attr_mask & IB_QP_RQ_PSN) ? C4IW_QP_ATTR_RQ_DB : 0;
963cab50 2006 if (!is_t4(to_c4iw_qp(ibqp)->rhp->rdev.lldi.adapter_type) &&
c2f9da92
SW
2007 (mask & (C4IW_QP_ATTR_SQ_DB|C4IW_QP_ATTR_RQ_DB)))
2008 return -EINVAL;
2c974781 2009
cfdda9d7
SW
2010 return c4iw_modify_qp(rhp, qhp, mask, &attrs, 0);
2011}
2012
2013struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn)
2014{
548ddb19 2015 pr_debug("ib_dev %p qpn 0x%x\n", dev, qpn);
cfdda9d7
SW
2016 return (struct ib_qp *)get_qhp(to_c4iw_dev(dev), qpn);
2017}
67bbc055
VP
2018
2019int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
2020 int attr_mask, struct ib_qp_init_attr *init_attr)
2021{
2022 struct c4iw_qp *qhp = to_c4iw_qp(ibqp);
2023
2024 memset(attr, 0, sizeof *attr);
2025 memset(init_attr, 0, sizeof *init_attr);
2026 attr->qp_state = to_ib_qp_state(qhp->attr.state);
3e5c02c9
HS
2027 init_attr->cap.max_send_wr = qhp->attr.sq_num_entries;
2028 init_attr->cap.max_recv_wr = qhp->attr.rq_num_entries;
2029 init_attr->cap.max_send_sge = qhp->attr.sq_max_sges;
2030 init_attr->cap.max_recv_sge = qhp->attr.sq_max_sges;
2031 init_attr->cap.max_inline_data = T4_MAX_SEND_INLINE;
2032 init_attr->sq_sig_type = qhp->sq_sig_all ? IB_SIGNAL_ALL_WR : 0;
67bbc055
VP
2033 return 0;
2034}