cxgb4/iw_cxgb4: display TPTE on errors
[linux-2.6-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
168static int create_qp(struct c4iw_rdev *rdev, struct t4_wq *wq,
169 struct t4_cq *rcq, struct t4_cq *scq,
170 struct c4iw_dev_ucontext *uctx)
171{
172 int user = (uctx != &rdev->uctx);
173 struct fw_ri_res_wr *res_wr;
174 struct fw_ri_res *res;
175 int wr_len;
176 struct c4iw_wr_wait wr_wait;
177 struct sk_buff *skb;
9919d5bd 178 int ret = 0;
cfdda9d7
SW
179 int eqsize;
180
181 wq->sq.qid = c4iw_get_qpid(rdev, uctx);
182 if (!wq->sq.qid)
183 return -ENOMEM;
184
185 wq->rq.qid = c4iw_get_qpid(rdev, uctx);
c079c287
EG
186 if (!wq->rq.qid) {
187 ret = -ENOMEM;
188 goto free_sq_qid;
189 }
cfdda9d7
SW
190
191 if (!user) {
192 wq->sq.sw_sq = kzalloc(wq->sq.size * sizeof *wq->sq.sw_sq,
193 GFP_KERNEL);
c079c287
EG
194 if (!wq->sq.sw_sq) {
195 ret = -ENOMEM;
196 goto free_rq_qid;
197 }
cfdda9d7
SW
198
199 wq->rq.sw_rq = kzalloc(wq->rq.size * sizeof *wq->rq.sw_rq,
200 GFP_KERNEL);
c079c287
EG
201 if (!wq->rq.sw_rq) {
202 ret = -ENOMEM;
203 goto free_sw_sq;
204 }
cfdda9d7
SW
205 }
206
207 /*
208 * RQT must be a power of 2.
209 */
210 wq->rq.rqt_size = roundup_pow_of_two(wq->rq.size);
211 wq->rq.rqt_hwaddr = c4iw_rqtpool_alloc(rdev, wq->rq.rqt_size);
c079c287
EG
212 if (!wq->rq.rqt_hwaddr) {
213 ret = -ENOMEM;
214 goto free_sw_rq;
215 }
cfdda9d7 216
5b0c2759
TLSC
217 ret = alloc_sq(rdev, &wq->sq, user);
218 if (ret)
219 goto free_hwaddr;
cfdda9d7 220 memset(wq->sq.queue, 0, wq->sq.memsize);
f38926aa 221 dma_unmap_addr_set(&wq->sq, mapping, wq->sq.dma_addr);
cfdda9d7
SW
222
223 wq->rq.queue = dma_alloc_coherent(&(rdev->lldi.pdev->dev),
224 wq->rq.memsize, &(wq->rq.dma_addr),
225 GFP_KERNEL);
55e57a78
WY
226 if (!wq->rq.queue) {
227 ret = -ENOMEM;
c079c287 228 goto free_sq;
55e57a78 229 }
cfdda9d7
SW
230 PDBG("%s sq base va 0x%p pa 0x%llx rq base va 0x%p pa 0x%llx\n",
231 __func__, wq->sq.queue,
232 (unsigned long long)virt_to_phys(wq->sq.queue),
233 wq->rq.queue,
234 (unsigned long long)virt_to_phys(wq->rq.queue));
235 memset(wq->rq.queue, 0, wq->rq.memsize);
f38926aa 236 dma_unmap_addr_set(&wq->rq, mapping, wq->rq.dma_addr);
cfdda9d7
SW
237
238 wq->db = rdev->lldi.db_reg;
239 wq->gts = rdev->lldi.gts_reg;
fa658a98
SW
240 if (user || is_t5(rdev->lldi.adapter_type)) {
241 u32 off;
242
243 off = (wq->sq.qid << rdev->qpshift) & PAGE_MASK;
244 if (user) {
245 wq->sq.udb = (u64 __iomem *)(rdev->bar2_pa + off);
246 } else {
247 off += 128 * (wq->sq.qid & rdev->qpmask) + 8;
248 wq->sq.udb = (u64 __iomem *)(rdev->bar2_kva + off);
249 }
250 off = (wq->rq.qid << rdev->qpshift) & PAGE_MASK;
251 if (user) {
252 wq->rq.udb = (u64 __iomem *)(rdev->bar2_pa + off);
253 } else {
254 off += 128 * (wq->rq.qid & rdev->qpmask) + 8;
255 wq->rq.udb = (u64 __iomem *)(rdev->bar2_kva + off);
256 }
cfdda9d7
SW
257 }
258 wq->rdev = rdev;
259 wq->rq.msn = 1;
260
261 /* build fw_ri_res_wr */
262 wr_len = sizeof *res_wr + 2 * sizeof *res;
263
d3c814e8 264 skb = alloc_skb(wr_len, GFP_KERNEL);
cfdda9d7
SW
265 if (!skb) {
266 ret = -ENOMEM;
c079c287 267 goto free_dma;
cfdda9d7
SW
268 }
269 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
270
271 res_wr = (struct fw_ri_res_wr *)__skb_put(skb, wr_len);
272 memset(res_wr, 0, wr_len);
273 res_wr->op_nres = cpu_to_be32(
274 FW_WR_OP(FW_RI_RES_WR) |
275 V_FW_RI_RES_WR_NRES(2) |
276 FW_WR_COMPL(1));
277 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
c8e081a1 278 res_wr->cookie = (unsigned long) &wr_wait;
cfdda9d7
SW
279 res = res_wr->res;
280 res->u.sqrq.restype = FW_RI_RES_TYPE_SQ;
281 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
282
283 /*
284 * eqsize is the number of 64B entries plus the status page size.
285 */
04e10e21
HS
286 eqsize = wq->sq.size * T4_SQ_NUM_SLOTS +
287 rdev->hw_queue.t4_eq_status_entries;
cfdda9d7
SW
288
289 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
290 V_FW_RI_RES_WR_HOSTFCMODE(0) | /* no host cidx updates */
291 V_FW_RI_RES_WR_CPRIO(0) | /* don't keep in chip cache */
292 V_FW_RI_RES_WR_PCIECHN(0) | /* set by uP at ri_init time */
85d215b0 293 (t4_sq_onchip(&wq->sq) ? F_FW_RI_RES_WR_ONCHIP : 0) |
cfdda9d7
SW
294 V_FW_RI_RES_WR_IQID(scq->cqid));
295 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
296 V_FW_RI_RES_WR_DCAEN(0) |
297 V_FW_RI_RES_WR_DCACPU(0) |
d37ac31d 298 V_FW_RI_RES_WR_FBMIN(2) |
6a09a9d6 299 V_FW_RI_RES_WR_FBMAX(2) |
cfdda9d7
SW
300 V_FW_RI_RES_WR_CIDXFTHRESHO(0) |
301 V_FW_RI_RES_WR_CIDXFTHRESH(0) |
302 V_FW_RI_RES_WR_EQSIZE(eqsize));
303 res->u.sqrq.eqid = cpu_to_be32(wq->sq.qid);
304 res->u.sqrq.eqaddr = cpu_to_be64(wq->sq.dma_addr);
305 res++;
306 res->u.sqrq.restype = FW_RI_RES_TYPE_RQ;
307 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
308
309 /*
310 * eqsize is the number of 64B entries plus the status page size.
311 */
04e10e21
HS
312 eqsize = wq->rq.size * T4_RQ_NUM_SLOTS +
313 rdev->hw_queue.t4_eq_status_entries;
cfdda9d7
SW
314 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
315 V_FW_RI_RES_WR_HOSTFCMODE(0) | /* no host cidx updates */
316 V_FW_RI_RES_WR_CPRIO(0) | /* don't keep in chip cache */
317 V_FW_RI_RES_WR_PCIECHN(0) | /* set by uP at ri_init time */
318 V_FW_RI_RES_WR_IQID(rcq->cqid));
319 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
320 V_FW_RI_RES_WR_DCAEN(0) |
321 V_FW_RI_RES_WR_DCACPU(0) |
d37ac31d 322 V_FW_RI_RES_WR_FBMIN(2) |
6a09a9d6 323 V_FW_RI_RES_WR_FBMAX(2) |
cfdda9d7
SW
324 V_FW_RI_RES_WR_CIDXFTHRESHO(0) |
325 V_FW_RI_RES_WR_CIDXFTHRESH(0) |
326 V_FW_RI_RES_WR_EQSIZE(eqsize));
327 res->u.sqrq.eqid = cpu_to_be32(wq->rq.qid);
328 res->u.sqrq.eqaddr = cpu_to_be64(wq->rq.dma_addr);
329
330 c4iw_init_wr_wait(&wr_wait);
331
332 ret = c4iw_ofld_send(rdev, skb);
333 if (ret)
c079c287 334 goto free_dma;
aadc4df3 335 ret = c4iw_wait_for_reply(rdev, &wr_wait, 0, wq->sq.qid, __func__);
cfdda9d7 336 if (ret)
c079c287 337 goto free_dma;
cfdda9d7 338
fa658a98 339 PDBG("%s sqid 0x%x rqid 0x%x kdb 0x%p squdb 0x%lx rqudb 0x%lx\n",
cfdda9d7 340 __func__, wq->sq.qid, wq->rq.qid, wq->db,
fa658a98
SW
341 (__force unsigned long) wq->sq.udb,
342 (__force unsigned long) wq->rq.udb);
cfdda9d7
SW
343
344 return 0;
c079c287 345free_dma:
cfdda9d7
SW
346 dma_free_coherent(&(rdev->lldi.pdev->dev),
347 wq->rq.memsize, wq->rq.queue,
f38926aa 348 dma_unmap_addr(&wq->rq, mapping));
c079c287 349free_sq:
c6d7b267 350 dealloc_sq(rdev, &wq->sq);
c079c287 351free_hwaddr:
cfdda9d7 352 c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
c079c287 353free_sw_rq:
cfdda9d7 354 kfree(wq->rq.sw_rq);
c079c287 355free_sw_sq:
cfdda9d7 356 kfree(wq->sq.sw_sq);
c079c287 357free_rq_qid:
cfdda9d7 358 c4iw_put_qpid(rdev, wq->rq.qid, uctx);
c079c287 359free_sq_qid:
cfdda9d7 360 c4iw_put_qpid(rdev, wq->sq.qid, uctx);
c079c287 361 return ret;
cfdda9d7
SW
362}
363
d37ac31d
SW
364static int build_immd(struct t4_sq *sq, struct fw_ri_immd *immdp,
365 struct ib_send_wr *wr, int max, u32 *plenp)
cfdda9d7 366{
d37ac31d
SW
367 u8 *dstp, *srcp;
368 u32 plen = 0;
cfdda9d7 369 int i;
d37ac31d
SW
370 int rem, len;
371
372 dstp = (u8 *)immdp->data;
373 for (i = 0; i < wr->num_sge; i++) {
374 if ((plen + wr->sg_list[i].length) > max)
375 return -EMSGSIZE;
376 srcp = (u8 *)(unsigned long)wr->sg_list[i].addr;
377 plen += wr->sg_list[i].length;
378 rem = wr->sg_list[i].length;
379 while (rem) {
380 if (dstp == (u8 *)&sq->queue[sq->size])
381 dstp = (u8 *)sq->queue;
382 if (rem <= (u8 *)&sq->queue[sq->size] - dstp)
383 len = rem;
384 else
385 len = (u8 *)&sq->queue[sq->size] - dstp;
386 memcpy(dstp, srcp, len);
387 dstp += len;
388 srcp += len;
389 rem -= len;
390 }
391 }
13fecb83
SW
392 len = roundup(plen + sizeof *immdp, 16) - (plen + sizeof *immdp);
393 if (len)
394 memset(dstp, 0, len);
d37ac31d
SW
395 immdp->op = FW_RI_DATA_IMMD;
396 immdp->r1 = 0;
397 immdp->r2 = 0;
398 immdp->immdlen = cpu_to_be32(plen);
399 *plenp = plen;
400 return 0;
401}
402
403static int build_isgl(__be64 *queue_start, __be64 *queue_end,
404 struct fw_ri_isgl *isglp, struct ib_sge *sg_list,
405 int num_sge, u32 *plenp)
406
407{
408 int i;
409 u32 plen = 0;
410 __be64 *flitp = (__be64 *)isglp->sge;
411
412 for (i = 0; i < num_sge; i++) {
413 if ((plen + sg_list[i].length) < plen)
414 return -EMSGSIZE;
415 plen += sg_list[i].length;
416 *flitp = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
417 sg_list[i].length);
418 if (++flitp == queue_end)
419 flitp = queue_start;
420 *flitp = cpu_to_be64(sg_list[i].addr);
421 if (++flitp == queue_end)
422 flitp = queue_start;
423 }
13fecb83 424 *flitp = (__force __be64)0;
d37ac31d
SW
425 isglp->op = FW_RI_DATA_ISGL;
426 isglp->r1 = 0;
427 isglp->nsge = cpu_to_be16(num_sge);
428 isglp->r2 = 0;
429 if (plenp)
430 *plenp = plen;
431 return 0;
432}
433
434static int build_rdma_send(struct t4_sq *sq, union t4_wr *wqe,
435 struct ib_send_wr *wr, u8 *len16)
436{
cfdda9d7
SW
437 u32 plen;
438 int size;
d37ac31d 439 int ret;
cfdda9d7
SW
440
441 if (wr->num_sge > T4_MAX_SEND_SGE)
442 return -EINVAL;
443 switch (wr->opcode) {
444 case IB_WR_SEND:
445 if (wr->send_flags & IB_SEND_SOLICITED)
446 wqe->send.sendop_pkd = cpu_to_be32(
447 V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_SE));
448 else
449 wqe->send.sendop_pkd = cpu_to_be32(
450 V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND));
451 wqe->send.stag_inv = 0;
452 break;
453 case IB_WR_SEND_WITH_INV:
454 if (wr->send_flags & IB_SEND_SOLICITED)
455 wqe->send.sendop_pkd = cpu_to_be32(
456 V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_SE_INV));
457 else
458 wqe->send.sendop_pkd = cpu_to_be32(
459 V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_INV));
460 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
461 break;
462
463 default:
464 return -EINVAL;
465 }
c3f98fa2
SW
466 wqe->send.r3 = 0;
467 wqe->send.r4 = 0;
d37ac31d 468
cfdda9d7
SW
469 plen = 0;
470 if (wr->num_sge) {
471 if (wr->send_flags & IB_SEND_INLINE) {
d37ac31d
SW
472 ret = build_immd(sq, wqe->send.u.immd_src, wr,
473 T4_MAX_SEND_INLINE, &plen);
474 if (ret)
475 return ret;
cfdda9d7
SW
476 size = sizeof wqe->send + sizeof(struct fw_ri_immd) +
477 plen;
478 } else {
d37ac31d
SW
479 ret = build_isgl((__be64 *)sq->queue,
480 (__be64 *)&sq->queue[sq->size],
481 wqe->send.u.isgl_src,
482 wr->sg_list, wr->num_sge, &plen);
483 if (ret)
484 return ret;
cfdda9d7
SW
485 size = sizeof wqe->send + sizeof(struct fw_ri_isgl) +
486 wr->num_sge * sizeof(struct fw_ri_sge);
487 }
488 } else {
489 wqe->send.u.immd_src[0].op = FW_RI_DATA_IMMD;
490 wqe->send.u.immd_src[0].r1 = 0;
491 wqe->send.u.immd_src[0].r2 = 0;
492 wqe->send.u.immd_src[0].immdlen = 0;
493 size = sizeof wqe->send + sizeof(struct fw_ri_immd);
d37ac31d 494 plen = 0;
cfdda9d7
SW
495 }
496 *len16 = DIV_ROUND_UP(size, 16);
497 wqe->send.plen = cpu_to_be32(plen);
498 return 0;
499}
500
d37ac31d
SW
501static int build_rdma_write(struct t4_sq *sq, union t4_wr *wqe,
502 struct ib_send_wr *wr, u8 *len16)
cfdda9d7 503{
cfdda9d7
SW
504 u32 plen;
505 int size;
d37ac31d 506 int ret;
cfdda9d7 507
d37ac31d 508 if (wr->num_sge > T4_MAX_SEND_SGE)
cfdda9d7
SW
509 return -EINVAL;
510 wqe->write.r2 = 0;
511 wqe->write.stag_sink = cpu_to_be32(wr->wr.rdma.rkey);
512 wqe->write.to_sink = cpu_to_be64(wr->wr.rdma.remote_addr);
cfdda9d7
SW
513 if (wr->num_sge) {
514 if (wr->send_flags & IB_SEND_INLINE) {
d37ac31d
SW
515 ret = build_immd(sq, wqe->write.u.immd_src, wr,
516 T4_MAX_WRITE_INLINE, &plen);
517 if (ret)
518 return ret;
cfdda9d7
SW
519 size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
520 plen;
521 } else {
d37ac31d
SW
522 ret = build_isgl((__be64 *)sq->queue,
523 (__be64 *)&sq->queue[sq->size],
524 wqe->write.u.isgl_src,
525 wr->sg_list, wr->num_sge, &plen);
526 if (ret)
527 return ret;
cfdda9d7
SW
528 size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
529 wr->num_sge * sizeof(struct fw_ri_sge);
530 }
531 } else {
532 wqe->write.u.immd_src[0].op = FW_RI_DATA_IMMD;
533 wqe->write.u.immd_src[0].r1 = 0;
534 wqe->write.u.immd_src[0].r2 = 0;
535 wqe->write.u.immd_src[0].immdlen = 0;
536 size = sizeof wqe->write + sizeof(struct fw_ri_immd);
d37ac31d 537 plen = 0;
cfdda9d7
SW
538 }
539 *len16 = DIV_ROUND_UP(size, 16);
540 wqe->write.plen = cpu_to_be32(plen);
541 return 0;
542}
543
544static int build_rdma_read(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
545{
546 if (wr->num_sge > 1)
547 return -EINVAL;
548 if (wr->num_sge) {
549 wqe->read.stag_src = cpu_to_be32(wr->wr.rdma.rkey);
550 wqe->read.to_src_hi = cpu_to_be32((u32)(wr->wr.rdma.remote_addr
551 >> 32));
552 wqe->read.to_src_lo = cpu_to_be32((u32)wr->wr.rdma.remote_addr);
553 wqe->read.stag_sink = cpu_to_be32(wr->sg_list[0].lkey);
554 wqe->read.plen = cpu_to_be32(wr->sg_list[0].length);
555 wqe->read.to_sink_hi = cpu_to_be32((u32)(wr->sg_list[0].addr
556 >> 32));
557 wqe->read.to_sink_lo = cpu_to_be32((u32)(wr->sg_list[0].addr));
558 } else {
559 wqe->read.stag_src = cpu_to_be32(2);
560 wqe->read.to_src_hi = 0;
561 wqe->read.to_src_lo = 0;
562 wqe->read.stag_sink = cpu_to_be32(2);
563 wqe->read.plen = 0;
564 wqe->read.to_sink_hi = 0;
565 wqe->read.to_sink_lo = 0;
566 }
567 wqe->read.r2 = 0;
568 wqe->read.r5 = 0;
569 *len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
570 return 0;
571}
572
573static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe,
574 struct ib_recv_wr *wr, u8 *len16)
575{
d37ac31d 576 int ret;
cfdda9d7 577
d37ac31d
SW
578 ret = build_isgl((__be64 *)qhp->wq.rq.queue,
579 (__be64 *)&qhp->wq.rq.queue[qhp->wq.rq.size],
580 &wqe->recv.isgl, wr->sg_list, wr->num_sge, NULL);
581 if (ret)
582 return ret;
cfdda9d7
SW
583 *len16 = DIV_ROUND_UP(sizeof wqe->recv +
584 wr->num_sge * sizeof(struct fw_ri_sge), 16);
585 return 0;
586}
587
40dbf6ee 588static int build_fastreg(struct t4_sq *sq, union t4_wr *wqe,
42b6a949 589 struct ib_send_wr *wr, u8 *len16, u8 t5dev)
cfdda9d7
SW
590{
591
592 struct fw_ri_immd *imdp;
593 __be64 *p;
594 int i;
595 int pbllen = roundup(wr->wr.fast_reg.page_list_len * sizeof(u64), 32);
40dbf6ee 596 int rem;
cfdda9d7 597
a03d9f94
SW
598 if (wr->wr.fast_reg.page_list_len >
599 t4_max_fr_depth(use_dsgl))
cfdda9d7
SW
600 return -EINVAL;
601
602 wqe->fr.qpbinde_to_dcacpu = 0;
603 wqe->fr.pgsz_shift = wr->wr.fast_reg.page_shift - 12;
604 wqe->fr.addr_type = FW_RI_VA_BASED_TO;
605 wqe->fr.mem_perms = c4iw_ib_to_tpt_access(wr->wr.fast_reg.access_flags);
606 wqe->fr.len_hi = 0;
607 wqe->fr.len_lo = cpu_to_be32(wr->wr.fast_reg.length);
608 wqe->fr.stag = cpu_to_be32(wr->wr.fast_reg.rkey);
609 wqe->fr.va_hi = cpu_to_be32(wr->wr.fast_reg.iova_start >> 32);
610 wqe->fr.va_lo_fbo = cpu_to_be32(wr->wr.fast_reg.iova_start &
611 0xffffffff);
42b6a949
VP
612
613 if (t5dev && use_dsgl && (pbllen > max_fr_immd)) {
614 struct c4iw_fr_page_list *c4pl =
615 to_c4iw_fr_page_list(wr->wr.fast_reg.page_list);
616 struct fw_ri_dsgl *sglp;
617
618 for (i = 0; i < wr->wr.fast_reg.page_list_len; i++) {
619 wr->wr.fast_reg.page_list->page_list[i] = (__force u64)
620 cpu_to_be64((u64)
621 wr->wr.fast_reg.page_list->page_list[i]);
622 }
623
624 sglp = (struct fw_ri_dsgl *)(&wqe->fr + 1);
625 sglp->op = FW_RI_DATA_DSGL;
626 sglp->r1 = 0;
627 sglp->nsge = cpu_to_be16(1);
628 sglp->addr0 = cpu_to_be64(c4pl->dma_addr);
629 sglp->len0 = cpu_to_be32(pbllen);
630
631 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*sglp), 16);
632 } else {
633 imdp = (struct fw_ri_immd *)(&wqe->fr + 1);
634 imdp->op = FW_RI_DATA_IMMD;
635 imdp->r1 = 0;
636 imdp->r2 = 0;
637 imdp->immdlen = cpu_to_be32(pbllen);
638 p = (__be64 *)(imdp + 1);
639 rem = pbllen;
640 for (i = 0; i < wr->wr.fast_reg.page_list_len; i++) {
641 *p = cpu_to_be64(
642 (u64)wr->wr.fast_reg.page_list->page_list[i]);
643 rem -= sizeof(*p);
644 if (++p == (__be64 *)&sq->queue[sq->size])
645 p = (__be64 *)sq->queue;
646 }
647 BUG_ON(rem < 0);
648 while (rem) {
649 *p = 0;
650 rem -= sizeof(*p);
651 if (++p == (__be64 *)&sq->queue[sq->size])
652 p = (__be64 *)sq->queue;
653 }
654 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*imdp)
655 + pbllen, 16);
cfdda9d7
SW
656 }
657 return 0;
658}
659
660static int build_inv_stag(union t4_wr *wqe, struct ib_send_wr *wr,
661 u8 *len16)
662{
663 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
664 wqe->inv.r2 = 0;
665 *len16 = DIV_ROUND_UP(sizeof wqe->inv, 16);
666 return 0;
667}
668
669void c4iw_qp_add_ref(struct ib_qp *qp)
670{
671 PDBG("%s ib_qp %p\n", __func__, qp);
672 atomic_inc(&(to_c4iw_qp(qp)->refcnt));
673}
674
675void c4iw_qp_rem_ref(struct ib_qp *qp)
676{
677 PDBG("%s ib_qp %p\n", __func__, qp);
678 if (atomic_dec_and_test(&(to_c4iw_qp(qp)->refcnt)))
679 wake_up(&(to_c4iw_qp(qp)->wait));
680}
681
05eb2389
SW
682static void add_to_fc_list(struct list_head *head, struct list_head *entry)
683{
684 if (list_empty(entry))
685 list_add_tail(entry, head);
686}
687
688static int ring_kernel_sq_db(struct c4iw_qp *qhp, u16 inc)
689{
690 unsigned long flags;
691
692 spin_lock_irqsave(&qhp->rhp->lock, flags);
693 spin_lock(&qhp->lock);
fa658a98
SW
694 if (qhp->rhp->db_state == NORMAL)
695 t4_ring_sq_db(&qhp->wq, inc,
696 is_t5(qhp->rhp->rdev.lldi.adapter_type), NULL);
697 else {
05eb2389
SW
698 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
699 qhp->wq.sq.wq_pidx_inc += inc;
700 }
701 spin_unlock(&qhp->lock);
702 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
703 return 0;
704}
705
706static int ring_kernel_rq_db(struct c4iw_qp *qhp, u16 inc)
707{
708 unsigned long flags;
709
710 spin_lock_irqsave(&qhp->rhp->lock, flags);
711 spin_lock(&qhp->lock);
fa658a98
SW
712 if (qhp->rhp->db_state == NORMAL)
713 t4_ring_rq_db(&qhp->wq, inc,
714 is_t5(qhp->rhp->rdev.lldi.adapter_type), NULL);
715 else {
05eb2389
SW
716 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
717 qhp->wq.rq.wq_pidx_inc += inc;
718 }
719 spin_unlock(&qhp->lock);
720 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
721 return 0;
722}
723
cfdda9d7
SW
724int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
725 struct ib_send_wr **bad_wr)
726{
727 int err = 0;
728 u8 len16 = 0;
729 enum fw_wr_opcodes fw_opcode = 0;
730 enum fw_ri_wr_flags fw_flags;
731 struct c4iw_qp *qhp;
fa658a98 732 union t4_wr *wqe = NULL;
cfdda9d7
SW
733 u32 num_wrs;
734 struct t4_swsqe *swsqe;
735 unsigned long flag;
736 u16 idx = 0;
737
738 qhp = to_c4iw_qp(ibqp);
739 spin_lock_irqsave(&qhp->lock, flag);
740 if (t4_wq_in_error(&qhp->wq)) {
741 spin_unlock_irqrestore(&qhp->lock, flag);
742 return -EINVAL;
743 }
744 num_wrs = t4_sq_avail(&qhp->wq);
745 if (num_wrs == 0) {
746 spin_unlock_irqrestore(&qhp->lock, flag);
747 return -ENOMEM;
748 }
749 while (wr) {
750 if (num_wrs == 0) {
751 err = -ENOMEM;
752 *bad_wr = wr;
753 break;
754 }
d37ac31d
SW
755 wqe = (union t4_wr *)((u8 *)qhp->wq.sq.queue +
756 qhp->wq.sq.wq_pidx * T4_EQ_ENTRY_SIZE);
757
cfdda9d7
SW
758 fw_flags = 0;
759 if (wr->send_flags & IB_SEND_SOLICITED)
760 fw_flags |= FW_RI_SOLICITED_EVENT_FLAG;
ba32de9d 761 if (wr->send_flags & IB_SEND_SIGNALED || qhp->sq_sig_all)
cfdda9d7
SW
762 fw_flags |= FW_RI_COMPLETION_FLAG;
763 swsqe = &qhp->wq.sq.sw_sq[qhp->wq.sq.pidx];
764 switch (wr->opcode) {
765 case IB_WR_SEND_WITH_INV:
766 case IB_WR_SEND:
767 if (wr->send_flags & IB_SEND_FENCE)
768 fw_flags |= FW_RI_READ_FENCE_FLAG;
769 fw_opcode = FW_RI_SEND_WR;
770 if (wr->opcode == IB_WR_SEND)
771 swsqe->opcode = FW_RI_SEND;
772 else
773 swsqe->opcode = FW_RI_SEND_WITH_INV;
d37ac31d 774 err = build_rdma_send(&qhp->wq.sq, wqe, wr, &len16);
cfdda9d7
SW
775 break;
776 case IB_WR_RDMA_WRITE:
777 fw_opcode = FW_RI_RDMA_WRITE_WR;
778 swsqe->opcode = FW_RI_RDMA_WRITE;
d37ac31d 779 err = build_rdma_write(&qhp->wq.sq, wqe, wr, &len16);
cfdda9d7
SW
780 break;
781 case IB_WR_RDMA_READ:
2f1fb507 782 case IB_WR_RDMA_READ_WITH_INV:
cfdda9d7
SW
783 fw_opcode = FW_RI_RDMA_READ_WR;
784 swsqe->opcode = FW_RI_READ_REQ;
2f1fb507 785 if (wr->opcode == IB_WR_RDMA_READ_WITH_INV)
410ade4c 786 fw_flags = FW_RI_RDMA_READ_INVALIDATE;
2f1fb507
SW
787 else
788 fw_flags = 0;
cfdda9d7
SW
789 err = build_rdma_read(wqe, wr, &len16);
790 if (err)
791 break;
792 swsqe->read_len = wr->sg_list[0].length;
793 if (!qhp->wq.sq.oldest_read)
794 qhp->wq.sq.oldest_read = swsqe;
795 break;
796 case IB_WR_FAST_REG_MR:
797 fw_opcode = FW_RI_FR_NSMR_WR;
798 swsqe->opcode = FW_RI_FAST_REGISTER;
42b6a949
VP
799 err = build_fastreg(&qhp->wq.sq, wqe, wr, &len16,
800 is_t5(
801 qhp->rhp->rdev.lldi.adapter_type) ?
802 1 : 0);
cfdda9d7
SW
803 break;
804 case IB_WR_LOCAL_INV:
4ab1eb9c
SW
805 if (wr->send_flags & IB_SEND_FENCE)
806 fw_flags |= FW_RI_LOCAL_FENCE_FLAG;
cfdda9d7
SW
807 fw_opcode = FW_RI_INV_LSTAG_WR;
808 swsqe->opcode = FW_RI_LOCAL_INV;
809 err = build_inv_stag(wqe, wr, &len16);
810 break;
811 default:
812 PDBG("%s post of type=%d TBD!\n", __func__,
813 wr->opcode);
814 err = -EINVAL;
815 }
816 if (err) {
817 *bad_wr = wr;
818 break;
819 }
820 swsqe->idx = qhp->wq.sq.pidx;
821 swsqe->complete = 0;
ba32de9d
SW
822 swsqe->signaled = (wr->send_flags & IB_SEND_SIGNALED) ||
823 qhp->sq_sig_all;
1cf24dce 824 swsqe->flushed = 0;
cfdda9d7
SW
825 swsqe->wr_id = wr->wr_id;
826
827 init_wr_hdr(wqe, qhp->wq.sq.pidx, fw_opcode, fw_flags, len16);
828
829 PDBG("%s cookie 0x%llx pidx 0x%x opcode 0x%x read_len %u\n",
830 __func__, (unsigned long long)wr->wr_id, qhp->wq.sq.pidx,
831 swsqe->opcode, swsqe->read_len);
832 wr = wr->next;
833 num_wrs--;
d37ac31d
SW
834 t4_sq_produce(&qhp->wq, len16);
835 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
cfdda9d7 836 }
05eb2389 837 if (!qhp->rhp->rdev.status_page->db_off) {
fa658a98
SW
838 t4_ring_sq_db(&qhp->wq, idx,
839 is_t5(qhp->rhp->rdev.lldi.adapter_type), wqe);
05eb2389
SW
840 spin_unlock_irqrestore(&qhp->lock, flag);
841 } else {
842 spin_unlock_irqrestore(&qhp->lock, flag);
843 ring_kernel_sq_db(qhp, idx);
844 }
cfdda9d7
SW
845 return err;
846}
847
848int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
849 struct ib_recv_wr **bad_wr)
850{
851 int err = 0;
852 struct c4iw_qp *qhp;
fa658a98 853 union t4_recv_wr *wqe = NULL;
cfdda9d7
SW
854 u32 num_wrs;
855 u8 len16 = 0;
856 unsigned long flag;
857 u16 idx = 0;
858
859 qhp = to_c4iw_qp(ibqp);
860 spin_lock_irqsave(&qhp->lock, flag);
861 if (t4_wq_in_error(&qhp->wq)) {
862 spin_unlock_irqrestore(&qhp->lock, flag);
863 return -EINVAL;
864 }
865 num_wrs = t4_rq_avail(&qhp->wq);
866 if (num_wrs == 0) {
867 spin_unlock_irqrestore(&qhp->lock, flag);
868 return -ENOMEM;
869 }
870 while (wr) {
871 if (wr->num_sge > T4_MAX_RECV_SGE) {
872 err = -EINVAL;
873 *bad_wr = wr;
874 break;
875 }
d37ac31d
SW
876 wqe = (union t4_recv_wr *)((u8 *)qhp->wq.rq.queue +
877 qhp->wq.rq.wq_pidx *
878 T4_EQ_ENTRY_SIZE);
cfdda9d7
SW
879 if (num_wrs)
880 err = build_rdma_recv(qhp, wqe, wr, &len16);
881 else
882 err = -ENOMEM;
883 if (err) {
884 *bad_wr = wr;
885 break;
886 }
887
888 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].wr_id = wr->wr_id;
889
890 wqe->recv.opcode = FW_RI_RECV_WR;
891 wqe->recv.r1 = 0;
892 wqe->recv.wrid = qhp->wq.rq.pidx;
893 wqe->recv.r2[0] = 0;
894 wqe->recv.r2[1] = 0;
895 wqe->recv.r2[2] = 0;
896 wqe->recv.len16 = len16;
cfdda9d7
SW
897 PDBG("%s cookie 0x%llx pidx %u\n", __func__,
898 (unsigned long long) wr->wr_id, qhp->wq.rq.pidx);
d37ac31d
SW
899 t4_rq_produce(&qhp->wq, len16);
900 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
cfdda9d7
SW
901 wr = wr->next;
902 num_wrs--;
cfdda9d7 903 }
05eb2389 904 if (!qhp->rhp->rdev.status_page->db_off) {
fa658a98
SW
905 t4_ring_rq_db(&qhp->wq, idx,
906 is_t5(qhp->rhp->rdev.lldi.adapter_type), wqe);
05eb2389
SW
907 spin_unlock_irqrestore(&qhp->lock, flag);
908 } else {
909 spin_unlock_irqrestore(&qhp->lock, flag);
910 ring_kernel_rq_db(qhp, idx);
911 }
cfdda9d7
SW
912 return err;
913}
914
915int c4iw_bind_mw(struct ib_qp *qp, struct ib_mw *mw, struct ib_mw_bind *mw_bind)
916{
917 return -ENOSYS;
918}
919
920static inline void build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type,
921 u8 *ecode)
922{
923 int status;
924 int tagged;
925 int opcode;
926 int rqtype;
927 int send_inv;
928
929 if (!err_cqe) {
930 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
931 *ecode = 0;
932 return;
933 }
934
935 status = CQE_STATUS(err_cqe);
936 opcode = CQE_OPCODE(err_cqe);
937 rqtype = RQ_TYPE(err_cqe);
938 send_inv = (opcode == FW_RI_SEND_WITH_INV) ||
939 (opcode == FW_RI_SEND_WITH_SE_INV);
940 tagged = (opcode == FW_RI_RDMA_WRITE) ||
941 (rqtype && (opcode == FW_RI_READ_RESP));
942
943 switch (status) {
944 case T4_ERR_STAG:
945 if (send_inv) {
946 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
947 *ecode = RDMAP_CANT_INV_STAG;
948 } else {
949 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
950 *ecode = RDMAP_INV_STAG;
951 }
952 break;
953 case T4_ERR_PDID:
954 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
955 if ((opcode == FW_RI_SEND_WITH_INV) ||
956 (opcode == FW_RI_SEND_WITH_SE_INV))
957 *ecode = RDMAP_CANT_INV_STAG;
958 else
959 *ecode = RDMAP_STAG_NOT_ASSOC;
960 break;
961 case T4_ERR_QPID:
962 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
963 *ecode = RDMAP_STAG_NOT_ASSOC;
964 break;
965 case T4_ERR_ACCESS:
966 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
967 *ecode = RDMAP_ACC_VIOL;
968 break;
969 case T4_ERR_WRAP:
970 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
971 *ecode = RDMAP_TO_WRAP;
972 break;
973 case T4_ERR_BOUND:
974 if (tagged) {
975 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
976 *ecode = DDPT_BASE_BOUNDS;
977 } else {
978 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
979 *ecode = RDMAP_BASE_BOUNDS;
980 }
981 break;
982 case T4_ERR_INVALIDATE_SHARED_MR:
983 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
984 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
985 *ecode = RDMAP_CANT_INV_STAG;
986 break;
987 case T4_ERR_ECC:
988 case T4_ERR_ECC_PSTAG:
989 case T4_ERR_INTERNAL_ERR:
990 *layer_type = LAYER_RDMAP|RDMAP_LOCAL_CATA;
991 *ecode = 0;
992 break;
993 case T4_ERR_OUT_OF_RQE:
994 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
995 *ecode = DDPU_INV_MSN_NOBUF;
996 break;
997 case T4_ERR_PBL_ADDR_BOUND:
998 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
999 *ecode = DDPT_BASE_BOUNDS;
1000 break;
1001 case T4_ERR_CRC:
1002 *layer_type = LAYER_MPA|DDP_LLP;
1003 *ecode = MPA_CRC_ERR;
1004 break;
1005 case T4_ERR_MARKER:
1006 *layer_type = LAYER_MPA|DDP_LLP;
1007 *ecode = MPA_MARKER_ERR;
1008 break;
1009 case T4_ERR_PDU_LEN_ERR:
1010 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1011 *ecode = DDPU_MSG_TOOBIG;
1012 break;
1013 case T4_ERR_DDP_VERSION:
1014 if (tagged) {
1015 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1016 *ecode = DDPT_INV_VERS;
1017 } else {
1018 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1019 *ecode = DDPU_INV_VERS;
1020 }
1021 break;
1022 case T4_ERR_RDMA_VERSION:
1023 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1024 *ecode = RDMAP_INV_VERS;
1025 break;
1026 case T4_ERR_OPCODE:
1027 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1028 *ecode = RDMAP_INV_OPCODE;
1029 break;
1030 case T4_ERR_DDP_QUEUE_NUM:
1031 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1032 *ecode = DDPU_INV_QN;
1033 break;
1034 case T4_ERR_MSN:
1035 case T4_ERR_MSN_GAP:
1036 case T4_ERR_MSN_RANGE:
1037 case T4_ERR_IRD_OVERFLOW:
1038 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1039 *ecode = DDPU_INV_MSN_RANGE;
1040 break;
1041 case T4_ERR_TBIT:
1042 *layer_type = LAYER_DDP|DDP_LOCAL_CATA;
1043 *ecode = 0;
1044 break;
1045 case T4_ERR_MO:
1046 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1047 *ecode = DDPU_INV_MO;
1048 break;
1049 default:
1050 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1051 *ecode = 0;
1052 break;
1053 }
1054}
1055
be4c9bad
RD
1056static void post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe,
1057 gfp_t gfp)
cfdda9d7
SW
1058{
1059 struct fw_ri_wr *wqe;
1060 struct sk_buff *skb;
1061 struct terminate_message *term;
1062
1063 PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
1064 qhp->ep->hwtid);
1065
be4c9bad 1066 skb = alloc_skb(sizeof *wqe, gfp);
cfdda9d7 1067 if (!skb)
be4c9bad 1068 return;
cfdda9d7
SW
1069 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1070
1071 wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
1072 memset(wqe, 0, sizeof *wqe);
1073 wqe->op_compl = cpu_to_be32(FW_WR_OP(FW_RI_INIT_WR));
1074 wqe->flowid_len16 = cpu_to_be32(
1075 FW_WR_FLOWID(qhp->ep->hwtid) |
1076 FW_WR_LEN16(DIV_ROUND_UP(sizeof *wqe, 16)));
1077
1078 wqe->u.terminate.type = FW_RI_TYPE_TERMINATE;
1079 wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term);
1080 term = (struct terminate_message *)wqe->u.terminate.termmsg;
d2fe99e8
KS
1081 if (qhp->attr.layer_etype == (LAYER_MPA|DDP_LLP)) {
1082 term->layer_etype = qhp->attr.layer_etype;
1083 term->ecode = qhp->attr.ecode;
1084 } else
1085 build_term_codes(err_cqe, &term->layer_etype, &term->ecode);
be4c9bad 1086 c4iw_ofld_send(&qhp->rhp->rdev, skb);
cfdda9d7
SW
1087}
1088
1089/*
1090 * Assumes qhp lock is held.
1091 */
1092static void __flush_qp(struct c4iw_qp *qhp, struct c4iw_cq *rchp,
2f5b48c3 1093 struct c4iw_cq *schp)
cfdda9d7
SW
1094{
1095 int count;
1096 int flushed;
2f5b48c3 1097 unsigned long flag;
cfdda9d7
SW
1098
1099 PDBG("%s qhp %p rchp %p schp %p\n", __func__, qhp, rchp, schp);
cfdda9d7 1100
732bee7a 1101 /* locking hierarchy: cq lock first, then qp lock. */
2f5b48c3 1102 spin_lock_irqsave(&rchp->lock, flag);
cfdda9d7 1103 spin_lock(&qhp->lock);
1cf24dce
SW
1104
1105 if (qhp->wq.flushed) {
1106 spin_unlock(&qhp->lock);
1107 spin_unlock_irqrestore(&rchp->lock, flag);
1108 return;
1109 }
1110 qhp->wq.flushed = 1;
1111
1112 c4iw_flush_hw_cq(rchp);
cfdda9d7
SW
1113 c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
1114 flushed = c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
1115 spin_unlock(&qhp->lock);
2f5b48c3 1116 spin_unlock_irqrestore(&rchp->lock, flag);
581bbe2c
KS
1117 if (flushed) {
1118 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
cfdda9d7 1119 (*rchp->ibcq.comp_handler)(&rchp->ibcq, rchp->ibcq.cq_context);
581bbe2c
KS
1120 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1121 }
cfdda9d7 1122
732bee7a 1123 /* locking hierarchy: cq lock first, then qp lock. */
2f5b48c3 1124 spin_lock_irqsave(&schp->lock, flag);
cfdda9d7 1125 spin_lock(&qhp->lock);
1cf24dce
SW
1126 if (schp != rchp)
1127 c4iw_flush_hw_cq(schp);
1128 flushed = c4iw_flush_sq(qhp);
cfdda9d7 1129 spin_unlock(&qhp->lock);
2f5b48c3 1130 spin_unlock_irqrestore(&schp->lock, flag);
581bbe2c
KS
1131 if (flushed) {
1132 spin_lock_irqsave(&schp->comp_handler_lock, flag);
cfdda9d7 1133 (*schp->ibcq.comp_handler)(&schp->ibcq, schp->ibcq.cq_context);
581bbe2c
KS
1134 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
1135 }
cfdda9d7
SW
1136}
1137
2f5b48c3 1138static void flush_qp(struct c4iw_qp *qhp)
cfdda9d7
SW
1139{
1140 struct c4iw_cq *rchp, *schp;
581bbe2c 1141 unsigned long flag;
cfdda9d7 1142
1cf24dce
SW
1143 rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
1144 schp = to_c4iw_cq(qhp->ibqp.send_cq);
cfdda9d7 1145
1cf24dce 1146 t4_set_wq_in_error(&qhp->wq);
cfdda9d7 1147 if (qhp->ibqp.uobject) {
cfdda9d7 1148 t4_set_cq_in_error(&rchp->cq);
581bbe2c 1149 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
01e7da6b 1150 (*rchp->ibcq.comp_handler)(&rchp->ibcq, rchp->ibcq.cq_context);
581bbe2c 1151 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
01e7da6b 1152 if (schp != rchp) {
cfdda9d7 1153 t4_set_cq_in_error(&schp->cq);
581bbe2c 1154 spin_lock_irqsave(&schp->comp_handler_lock, flag);
01e7da6b
KS
1155 (*schp->ibcq.comp_handler)(&schp->ibcq,
1156 schp->ibcq.cq_context);
581bbe2c 1157 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
01e7da6b 1158 }
cfdda9d7
SW
1159 return;
1160 }
2f5b48c3 1161 __flush_qp(qhp, rchp, schp);
cfdda9d7
SW
1162}
1163
73d6fcad
SW
1164static int rdma_fini(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1165 struct c4iw_ep *ep)
cfdda9d7
SW
1166{
1167 struct fw_ri_wr *wqe;
1168 int ret;
cfdda9d7
SW
1169 struct sk_buff *skb;
1170
1171 PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
73d6fcad 1172 ep->hwtid);
cfdda9d7 1173
d3c814e8 1174 skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
cfdda9d7
SW
1175 if (!skb)
1176 return -ENOMEM;
73d6fcad 1177 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
cfdda9d7
SW
1178
1179 wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
1180 memset(wqe, 0, sizeof *wqe);
1181 wqe->op_compl = cpu_to_be32(
1182 FW_WR_OP(FW_RI_INIT_WR) |
1183 FW_WR_COMPL(1));
1184 wqe->flowid_len16 = cpu_to_be32(
73d6fcad 1185 FW_WR_FLOWID(ep->hwtid) |
cfdda9d7 1186 FW_WR_LEN16(DIV_ROUND_UP(sizeof *wqe, 16)));
2f5b48c3 1187 wqe->cookie = (unsigned long) &ep->com.wr_wait;
cfdda9d7
SW
1188
1189 wqe->u.fini.type = FW_RI_TYPE_FINI;
cfdda9d7
SW
1190 ret = c4iw_ofld_send(&rhp->rdev, skb);
1191 if (ret)
1192 goto out;
1193
2f5b48c3 1194 ret = c4iw_wait_for_reply(&rhp->rdev, &ep->com.wr_wait, qhp->ep->hwtid,
aadc4df3 1195 qhp->wq.sq.qid, __func__);
cfdda9d7
SW
1196out:
1197 PDBG("%s ret %d\n", __func__, ret);
1198 return ret;
1199}
1200
1201static void build_rtr_msg(u8 p2p_type, struct fw_ri_init *init)
1202{
d2fe99e8 1203 PDBG("%s p2p_type = %d\n", __func__, p2p_type);
cfdda9d7
SW
1204 memset(&init->u, 0, sizeof init->u);
1205 switch (p2p_type) {
1206 case FW_RI_INIT_P2PTYPE_RDMA_WRITE:
1207 init->u.write.opcode = FW_RI_RDMA_WRITE_WR;
1208 init->u.write.stag_sink = cpu_to_be32(1);
1209 init->u.write.to_sink = cpu_to_be64(1);
1210 init->u.write.u.immd_src[0].op = FW_RI_DATA_IMMD;
1211 init->u.write.len16 = DIV_ROUND_UP(sizeof init->u.write +
1212 sizeof(struct fw_ri_immd),
1213 16);
1214 break;
1215 case FW_RI_INIT_P2PTYPE_READ_REQ:
1216 init->u.write.opcode = FW_RI_RDMA_READ_WR;
1217 init->u.read.stag_src = cpu_to_be32(1);
1218 init->u.read.to_src_lo = cpu_to_be32(1);
1219 init->u.read.stag_sink = cpu_to_be32(1);
1220 init->u.read.to_sink_lo = cpu_to_be32(1);
1221 init->u.read.len16 = DIV_ROUND_UP(sizeof init->u.read, 16);
1222 break;
1223 }
1224}
1225
1226static int rdma_init(struct c4iw_dev *rhp, struct c4iw_qp *qhp)
1227{
1228 struct fw_ri_wr *wqe;
1229 int ret;
cfdda9d7
SW
1230 struct sk_buff *skb;
1231
4c2c5763
HS
1232 PDBG("%s qhp %p qid 0x%x tid %u ird %u ord %u\n", __func__, qhp,
1233 qhp->wq.sq.qid, qhp->ep->hwtid, qhp->ep->ird, qhp->ep->ord);
cfdda9d7 1234
d3c814e8 1235 skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
4c2c5763
HS
1236 if (!skb) {
1237 ret = -ENOMEM;
1238 goto out;
1239 }
1240 ret = alloc_ird(rhp, qhp->attr.max_ird);
1241 if (ret) {
1242 qhp->attr.max_ird = 0;
1243 kfree_skb(skb);
1244 goto out;
1245 }
cfdda9d7
SW
1246 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1247
1248 wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
1249 memset(wqe, 0, sizeof *wqe);
1250 wqe->op_compl = cpu_to_be32(
1251 FW_WR_OP(FW_RI_INIT_WR) |
1252 FW_WR_COMPL(1));
1253 wqe->flowid_len16 = cpu_to_be32(
1254 FW_WR_FLOWID(qhp->ep->hwtid) |
1255 FW_WR_LEN16(DIV_ROUND_UP(sizeof *wqe, 16)));
1256
2f5b48c3 1257 wqe->cookie = (unsigned long) &qhp->ep->com.wr_wait;
cfdda9d7
SW
1258
1259 wqe->u.init.type = FW_RI_TYPE_INIT;
1260 wqe->u.init.mpareqbit_p2ptype =
1261 V_FW_RI_WR_MPAREQBIT(qhp->attr.mpa_attr.initiator) |
1262 V_FW_RI_WR_P2PTYPE(qhp->attr.mpa_attr.p2p_type);
1263 wqe->u.init.mpa_attrs = FW_RI_MPA_IETF_ENABLE;
1264 if (qhp->attr.mpa_attr.recv_marker_enabled)
1265 wqe->u.init.mpa_attrs |= FW_RI_MPA_RX_MARKER_ENABLE;
1266 if (qhp->attr.mpa_attr.xmit_marker_enabled)
1267 wqe->u.init.mpa_attrs |= FW_RI_MPA_TX_MARKER_ENABLE;
1268 if (qhp->attr.mpa_attr.crc_enabled)
1269 wqe->u.init.mpa_attrs |= FW_RI_MPA_CRC_ENABLE;
1270
1271 wqe->u.init.qp_caps = FW_RI_QP_RDMA_READ_ENABLE |
1272 FW_RI_QP_RDMA_WRITE_ENABLE |
1273 FW_RI_QP_BIND_ENABLE;
1274 if (!qhp->ibqp.uobject)
1275 wqe->u.init.qp_caps |= FW_RI_QP_FAST_REGISTER_ENABLE |
1276 FW_RI_QP_STAG0_ENABLE;
1277 wqe->u.init.nrqe = cpu_to_be16(t4_rqes_posted(&qhp->wq));
1278 wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd);
1279 wqe->u.init.qpid = cpu_to_be32(qhp->wq.sq.qid);
1280 wqe->u.init.sq_eqid = cpu_to_be32(qhp->wq.sq.qid);
1281 wqe->u.init.rq_eqid = cpu_to_be32(qhp->wq.rq.qid);
1282 wqe->u.init.scqid = cpu_to_be32(qhp->attr.scq);
1283 wqe->u.init.rcqid = cpu_to_be32(qhp->attr.rcq);
1284 wqe->u.init.ord_max = cpu_to_be32(qhp->attr.max_ord);
1285 wqe->u.init.ird_max = cpu_to_be32(qhp->attr.max_ird);
1286 wqe->u.init.iss = cpu_to_be32(qhp->ep->snd_seq);
1287 wqe->u.init.irs = cpu_to_be32(qhp->ep->rcv_seq);
1288 wqe->u.init.hwrqsize = cpu_to_be32(qhp->wq.rq.rqt_size);
1289 wqe->u.init.hwrqaddr = cpu_to_be32(qhp->wq.rq.rqt_hwaddr -
1290 rhp->rdev.lldi.vr->rq.start);
1291 if (qhp->attr.mpa_attr.initiator)
1292 build_rtr_msg(qhp->attr.mpa_attr.p2p_type, &wqe->u.init);
1293
cfdda9d7
SW
1294 ret = c4iw_ofld_send(&rhp->rdev, skb);
1295 if (ret)
4c2c5763 1296 goto err1;
cfdda9d7 1297
2f5b48c3
SW
1298 ret = c4iw_wait_for_reply(&rhp->rdev, &qhp->ep->com.wr_wait,
1299 qhp->ep->hwtid, qhp->wq.sq.qid, __func__);
4c2c5763
HS
1300 if (!ret)
1301 goto out;
1302err1:
1303 free_ird(rhp, qhp->attr.max_ird);
cfdda9d7
SW
1304out:
1305 PDBG("%s ret %d\n", __func__, ret);
1306 return ret;
1307}
1308
1309int c4iw_modify_qp(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1310 enum c4iw_qp_attr_mask mask,
1311 struct c4iw_qp_attributes *attrs,
1312 int internal)
1313{
1314 int ret = 0;
1315 struct c4iw_qp_attributes newattr = qhp->attr;
cfdda9d7
SW
1316 int disconnect = 0;
1317 int terminate = 0;
1318 int abort = 0;
1319 int free = 0;
1320 struct c4iw_ep *ep = NULL;
1321
1322 PDBG("%s qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n", __func__,
1323 qhp, qhp->wq.sq.qid, qhp->wq.rq.qid, qhp->ep, qhp->attr.state,
1324 (mask & C4IW_QP_ATTR_NEXT_STATE) ? attrs->next_state : -1);
1325
2f5b48c3 1326 mutex_lock(&qhp->mutex);
cfdda9d7
SW
1327
1328 /* Process attr changes if in IDLE */
1329 if (mask & C4IW_QP_ATTR_VALID_MODIFY) {
1330 if (qhp->attr.state != C4IW_QP_STATE_IDLE) {
1331 ret = -EIO;
1332 goto out;
1333 }
1334 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_READ)
1335 newattr.enable_rdma_read = attrs->enable_rdma_read;
1336 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_WRITE)
1337 newattr.enable_rdma_write = attrs->enable_rdma_write;
1338 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_BIND)
1339 newattr.enable_bind = attrs->enable_bind;
1340 if (mask & C4IW_QP_ATTR_MAX_ORD) {
be4c9bad 1341 if (attrs->max_ord > c4iw_max_read_depth) {
cfdda9d7
SW
1342 ret = -EINVAL;
1343 goto out;
1344 }
1345 newattr.max_ord = attrs->max_ord;
1346 }
1347 if (mask & C4IW_QP_ATTR_MAX_IRD) {
4c2c5763 1348 if (attrs->max_ird > cur_max_read_depth(rhp)) {
cfdda9d7
SW
1349 ret = -EINVAL;
1350 goto out;
1351 }
1352 newattr.max_ird = attrs->max_ird;
1353 }
1354 qhp->attr = newattr;
1355 }
1356
2c974781 1357 if (mask & C4IW_QP_ATTR_SQ_DB) {
05eb2389 1358 ret = ring_kernel_sq_db(qhp, attrs->sq_db_inc);
2c974781
VP
1359 goto out;
1360 }
1361 if (mask & C4IW_QP_ATTR_RQ_DB) {
05eb2389 1362 ret = ring_kernel_rq_db(qhp, attrs->rq_db_inc);
2c974781
VP
1363 goto out;
1364 }
1365
cfdda9d7
SW
1366 if (!(mask & C4IW_QP_ATTR_NEXT_STATE))
1367 goto out;
1368 if (qhp->attr.state == attrs->next_state)
1369 goto out;
1370
1371 switch (qhp->attr.state) {
1372 case C4IW_QP_STATE_IDLE:
1373 switch (attrs->next_state) {
1374 case C4IW_QP_STATE_RTS:
1375 if (!(mask & C4IW_QP_ATTR_LLP_STREAM_HANDLE)) {
1376 ret = -EINVAL;
1377 goto out;
1378 }
1379 if (!(mask & C4IW_QP_ATTR_MPA_ATTR)) {
1380 ret = -EINVAL;
1381 goto out;
1382 }
1383 qhp->attr.mpa_attr = attrs->mpa_attr;
1384 qhp->attr.llp_stream_handle = attrs->llp_stream_handle;
1385 qhp->ep = qhp->attr.llp_stream_handle;
2f5b48c3 1386 set_state(qhp, C4IW_QP_STATE_RTS);
cfdda9d7
SW
1387
1388 /*
1389 * Ref the endpoint here and deref when we
1390 * disassociate the endpoint from the QP. This
1391 * happens in CLOSING->IDLE transition or *->ERROR
1392 * transition.
1393 */
1394 c4iw_get_ep(&qhp->ep->com);
cfdda9d7 1395 ret = rdma_init(rhp, qhp);
cfdda9d7
SW
1396 if (ret)
1397 goto err;
1398 break;
1399 case C4IW_QP_STATE_ERROR:
2f5b48c3
SW
1400 set_state(qhp, C4IW_QP_STATE_ERROR);
1401 flush_qp(qhp);
cfdda9d7
SW
1402 break;
1403 default:
1404 ret = -EINVAL;
1405 goto out;
1406 }
1407 break;
1408 case C4IW_QP_STATE_RTS:
1409 switch (attrs->next_state) {
1410 case C4IW_QP_STATE_CLOSING:
1411 BUG_ON(atomic_read(&qhp->ep->com.kref.refcount) < 2);
b4e2901c 1412 t4_set_wq_in_error(&qhp->wq);
2f5b48c3 1413 set_state(qhp, C4IW_QP_STATE_CLOSING);
73d6fcad 1414 ep = qhp->ep;
cfdda9d7
SW
1415 if (!internal) {
1416 abort = 0;
1417 disconnect = 1;
2f5b48c3 1418 c4iw_get_ep(&qhp->ep->com);
cfdda9d7 1419 }
73d6fcad 1420 ret = rdma_fini(rhp, qhp, ep);
8da7e7a5 1421 if (ret)
cfdda9d7 1422 goto err;
cfdda9d7
SW
1423 break;
1424 case C4IW_QP_STATE_TERMINATE:
b4e2901c 1425 t4_set_wq_in_error(&qhp->wq);
2f5b48c3 1426 set_state(qhp, C4IW_QP_STATE_TERMINATE);
d2fe99e8
KS
1427 qhp->attr.layer_etype = attrs->layer_etype;
1428 qhp->attr.ecode = attrs->ecode;
be4c9bad 1429 ep = qhp->ep;
cc18b939
SW
1430 if (!internal) {
1431 c4iw_get_ep(&qhp->ep->com);
0e42c1f4 1432 terminate = 1;
cc18b939
SW
1433 disconnect = 1;
1434 } else {
1435 terminate = qhp->attr.send_term;
09992579
SW
1436 ret = rdma_fini(rhp, qhp, ep);
1437 if (ret)
1438 goto err;
1439 }
cfdda9d7
SW
1440 break;
1441 case C4IW_QP_STATE_ERROR:
1cf24dce 1442 t4_set_wq_in_error(&qhp->wq);
b4e2901c 1443 set_state(qhp, C4IW_QP_STATE_ERROR);
cfdda9d7
SW
1444 if (!internal) {
1445 abort = 1;
1446 disconnect = 1;
1447 ep = qhp->ep;
2f5b48c3 1448 c4iw_get_ep(&qhp->ep->com);
cfdda9d7
SW
1449 }
1450 goto err;
1451 break;
1452 default:
1453 ret = -EINVAL;
1454 goto out;
1455 }
1456 break;
1457 case C4IW_QP_STATE_CLOSING:
1458 if (!internal) {
1459 ret = -EINVAL;
1460 goto out;
1461 }
1462 switch (attrs->next_state) {
1463 case C4IW_QP_STATE_IDLE:
2f5b48c3
SW
1464 flush_qp(qhp);
1465 set_state(qhp, C4IW_QP_STATE_IDLE);
cfdda9d7
SW
1466 qhp->attr.llp_stream_handle = NULL;
1467 c4iw_put_ep(&qhp->ep->com);
1468 qhp->ep = NULL;
1469 wake_up(&qhp->wait);
1470 break;
1471 case C4IW_QP_STATE_ERROR:
1472 goto err;
1473 default:
1474 ret = -EINVAL;
1475 goto err;
1476 }
1477 break;
1478 case C4IW_QP_STATE_ERROR:
1479 if (attrs->next_state != C4IW_QP_STATE_IDLE) {
1480 ret = -EINVAL;
1481 goto out;
1482 }
1483 if (!t4_sq_empty(&qhp->wq) || !t4_rq_empty(&qhp->wq)) {
1484 ret = -EINVAL;
1485 goto out;
1486 }
2f5b48c3 1487 set_state(qhp, C4IW_QP_STATE_IDLE);
cfdda9d7
SW
1488 break;
1489 case C4IW_QP_STATE_TERMINATE:
1490 if (!internal) {
1491 ret = -EINVAL;
1492 goto out;
1493 }
1494 goto err;
1495 break;
1496 default:
1497 printk(KERN_ERR "%s in a bad state %d\n",
1498 __func__, qhp->attr.state);
1499 ret = -EINVAL;
1500 goto err;
1501 break;
1502 }
1503 goto out;
1504err:
1505 PDBG("%s disassociating ep %p qpid 0x%x\n", __func__, qhp->ep,
1506 qhp->wq.sq.qid);
1507
1508 /* disassociate the LLP connection */
1509 qhp->attr.llp_stream_handle = NULL;
af93fb5d
SW
1510 if (!ep)
1511 ep = qhp->ep;
cfdda9d7 1512 qhp->ep = NULL;
2f5b48c3 1513 set_state(qhp, C4IW_QP_STATE_ERROR);
cfdda9d7 1514 free = 1;
91e9c071 1515 abort = 1;
cfdda9d7
SW
1516 wake_up(&qhp->wait);
1517 BUG_ON(!ep);
2f5b48c3 1518 flush_qp(qhp);
cfdda9d7 1519out:
2f5b48c3 1520 mutex_unlock(&qhp->mutex);
cfdda9d7
SW
1521
1522 if (terminate)
be4c9bad 1523 post_terminate(qhp, NULL, internal ? GFP_ATOMIC : GFP_KERNEL);
cfdda9d7
SW
1524
1525 /*
1526 * If disconnect is 1, then we need to initiate a disconnect
1527 * on the EP. This can be a normal close (RTS->CLOSING) or
1528 * an abnormal close (RTS/CLOSING->ERROR).
1529 */
1530 if (disconnect) {
be4c9bad
RD
1531 c4iw_ep_disconnect(ep, abort, internal ? GFP_ATOMIC :
1532 GFP_KERNEL);
cfdda9d7
SW
1533 c4iw_put_ep(&ep->com);
1534 }
1535
1536 /*
1537 * If free is 1, then we've disassociated the EP from the QP
1538 * and we need to dereference the EP.
1539 */
1540 if (free)
1541 c4iw_put_ep(&ep->com);
cfdda9d7
SW
1542 PDBG("%s exit state %d\n", __func__, qhp->attr.state);
1543 return ret;
1544}
1545
1546int c4iw_destroy_qp(struct ib_qp *ib_qp)
1547{
1548 struct c4iw_dev *rhp;
1549 struct c4iw_qp *qhp;
1550 struct c4iw_qp_attributes attrs;
1551 struct c4iw_ucontext *ucontext;
1552
1553 qhp = to_c4iw_qp(ib_qp);
1554 rhp = qhp->rhp;
1555
1556 attrs.next_state = C4IW_QP_STATE_ERROR;
d2fe99e8
KS
1557 if (qhp->attr.state == C4IW_QP_STATE_TERMINATE)
1558 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1559 else
1560 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
cfdda9d7
SW
1561 wait_event(qhp->wait, !qhp->ep);
1562
05eb2389 1563 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
cfdda9d7
SW
1564 atomic_dec(&qhp->refcnt);
1565 wait_event(qhp->wait, !atomic_read(&qhp->refcnt));
1566
05eb2389
SW
1567 spin_lock_irq(&rhp->lock);
1568 if (!list_empty(&qhp->db_fc_entry))
1569 list_del_init(&qhp->db_fc_entry);
1570 spin_unlock_irq(&rhp->lock);
4c2c5763 1571 free_ird(rhp, qhp->attr.max_ird);
05eb2389 1572
cfdda9d7
SW
1573 ucontext = ib_qp->uobject ?
1574 to_c4iw_ucontext(ib_qp->uobject->context) : NULL;
1575 destroy_qp(&rhp->rdev, &qhp->wq,
1576 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1577
1578 PDBG("%s ib_qp %p qpid 0x%0x\n", __func__, ib_qp, qhp->wq.sq.qid);
1579 kfree(qhp);
1580 return 0;
1581}
1582
1583struct ib_qp *c4iw_create_qp(struct ib_pd *pd, struct ib_qp_init_attr *attrs,
1584 struct ib_udata *udata)
1585{
1586 struct c4iw_dev *rhp;
1587 struct c4iw_qp *qhp;
1588 struct c4iw_pd *php;
1589 struct c4iw_cq *schp;
1590 struct c4iw_cq *rchp;
1591 struct c4iw_create_qp_resp uresp;
ff1706f4 1592 unsigned int sqsize, rqsize;
cfdda9d7
SW
1593 struct c4iw_ucontext *ucontext;
1594 int ret;
c6d7b267 1595 struct c4iw_mm_entry *mm1, *mm2, *mm3, *mm4, *mm5 = NULL;
cfdda9d7
SW
1596
1597 PDBG("%s ib_pd %p\n", __func__, pd);
1598
1599 if (attrs->qp_type != IB_QPT_RC)
1600 return ERR_PTR(-EINVAL);
1601
1602 php = to_c4iw_pd(pd);
1603 rhp = php->rhp;
1604 schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
1605 rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
1606 if (!schp || !rchp)
1607 return ERR_PTR(-EINVAL);
1608
1609 if (attrs->cap.max_inline_data > T4_MAX_SEND_INLINE)
1610 return ERR_PTR(-EINVAL);
1611
1612 rqsize = roundup(attrs->cap.max_recv_wr + 1, 16);
04e10e21 1613 if (rqsize > rhp->rdev.hw_queue.t4_max_rq_size)
cfdda9d7
SW
1614 return ERR_PTR(-E2BIG);
1615
1616 sqsize = roundup(attrs->cap.max_send_wr + 1, 16);
04e10e21 1617 if (sqsize > rhp->rdev.hw_queue.t4_max_sq_size)
cfdda9d7
SW
1618 return ERR_PTR(-E2BIG);
1619
1620 ucontext = pd->uobject ? to_c4iw_ucontext(pd->uobject->context) : NULL;
1621
cfdda9d7
SW
1622 qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
1623 if (!qhp)
1624 return ERR_PTR(-ENOMEM);
1625 qhp->wq.sq.size = sqsize;
1626 qhp->wq.sq.memsize = (sqsize + 1) * sizeof *qhp->wq.sq.queue;
1cf24dce 1627 qhp->wq.sq.flush_cidx = -1;
cfdda9d7
SW
1628 qhp->wq.rq.size = rqsize;
1629 qhp->wq.rq.memsize = (rqsize + 1) * sizeof *qhp->wq.rq.queue;
1630
1631 if (ucontext) {
1632 qhp->wq.sq.memsize = roundup(qhp->wq.sq.memsize, PAGE_SIZE);
1633 qhp->wq.rq.memsize = roundup(qhp->wq.rq.memsize, PAGE_SIZE);
1634 }
1635
1636 PDBG("%s sqsize %u sqmemsize %zu rqsize %u rqmemsize %zu\n",
1637 __func__, sqsize, qhp->wq.sq.memsize, rqsize, qhp->wq.rq.memsize);
1638
1639 ret = create_qp(&rhp->rdev, &qhp->wq, &schp->cq, &rchp->cq,
1640 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1641 if (ret)
1642 goto err1;
1643
1644 attrs->cap.max_recv_wr = rqsize - 1;
1645 attrs->cap.max_send_wr = sqsize - 1;
1646 attrs->cap.max_inline_data = T4_MAX_SEND_INLINE;
1647
1648 qhp->rhp = rhp;
1649 qhp->attr.pd = php->pdid;
1650 qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
1651 qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
1652 qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
1653 qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
1654 qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
1655 qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
1656 qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
1657 qhp->attr.state = C4IW_QP_STATE_IDLE;
1658 qhp->attr.next_state = C4IW_QP_STATE_IDLE;
1659 qhp->attr.enable_rdma_read = 1;
1660 qhp->attr.enable_rdma_write = 1;
1661 qhp->attr.enable_bind = 1;
4c2c5763
HS
1662 qhp->attr.max_ord = 0;
1663 qhp->attr.max_ird = 0;
ba32de9d 1664 qhp->sq_sig_all = attrs->sq_sig_type == IB_SIGNAL_ALL_WR;
cfdda9d7 1665 spin_lock_init(&qhp->lock);
2f5b48c3 1666 mutex_init(&qhp->mutex);
cfdda9d7
SW
1667 init_waitqueue_head(&qhp->wait);
1668 atomic_set(&qhp->refcnt, 1);
1669
05eb2389 1670 ret = insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.sq.qid);
cfdda9d7
SW
1671 if (ret)
1672 goto err2;
1673
cfdda9d7
SW
1674 if (udata) {
1675 mm1 = kmalloc(sizeof *mm1, GFP_KERNEL);
1676 if (!mm1) {
1677 ret = -ENOMEM;
30a6a62f 1678 goto err3;
cfdda9d7
SW
1679 }
1680 mm2 = kmalloc(sizeof *mm2, GFP_KERNEL);
1681 if (!mm2) {
1682 ret = -ENOMEM;
30a6a62f 1683 goto err4;
cfdda9d7
SW
1684 }
1685 mm3 = kmalloc(sizeof *mm3, GFP_KERNEL);
1686 if (!mm3) {
1687 ret = -ENOMEM;
30a6a62f 1688 goto err5;
cfdda9d7
SW
1689 }
1690 mm4 = kmalloc(sizeof *mm4, GFP_KERNEL);
1691 if (!mm4) {
1692 ret = -ENOMEM;
30a6a62f 1693 goto err6;
cfdda9d7 1694 }
c6d7b267
SW
1695 if (t4_sq_onchip(&qhp->wq.sq)) {
1696 mm5 = kmalloc(sizeof *mm5, GFP_KERNEL);
1697 if (!mm5) {
1698 ret = -ENOMEM;
1699 goto err7;
1700 }
1701 uresp.flags = C4IW_QPF_ONCHIP;
1702 } else
1703 uresp.flags = 0;
cfdda9d7
SW
1704 uresp.qid_mask = rhp->rdev.qpmask;
1705 uresp.sqid = qhp->wq.sq.qid;
1706 uresp.sq_size = qhp->wq.sq.size;
1707 uresp.sq_memsize = qhp->wq.sq.memsize;
1708 uresp.rqid = qhp->wq.rq.qid;
1709 uresp.rq_size = qhp->wq.rq.size;
1710 uresp.rq_memsize = qhp->wq.rq.memsize;
1711 spin_lock(&ucontext->mmap_lock);
c6d7b267
SW
1712 if (mm5) {
1713 uresp.ma_sync_key = ucontext->key;
1714 ucontext->key += PAGE_SIZE;
ae1fe07f
DC
1715 } else {
1716 uresp.ma_sync_key = 0;
c6d7b267 1717 }
cfdda9d7
SW
1718 uresp.sq_key = ucontext->key;
1719 ucontext->key += PAGE_SIZE;
1720 uresp.rq_key = ucontext->key;
1721 ucontext->key += PAGE_SIZE;
1722 uresp.sq_db_gts_key = ucontext->key;
1723 ucontext->key += PAGE_SIZE;
1724 uresp.rq_db_gts_key = ucontext->key;
1725 ucontext->key += PAGE_SIZE;
1726 spin_unlock(&ucontext->mmap_lock);
1727 ret = ib_copy_to_udata(udata, &uresp, sizeof uresp);
1728 if (ret)
c6d7b267 1729 goto err8;
cfdda9d7 1730 mm1->key = uresp.sq_key;
c6d7b267 1731 mm1->addr = qhp->wq.sq.phys_addr;
cfdda9d7
SW
1732 mm1->len = PAGE_ALIGN(qhp->wq.sq.memsize);
1733 insert_mmap(ucontext, mm1);
1734 mm2->key = uresp.rq_key;
1735 mm2->addr = virt_to_phys(qhp->wq.rq.queue);
1736 mm2->len = PAGE_ALIGN(qhp->wq.rq.memsize);
1737 insert_mmap(ucontext, mm2);
1738 mm3->key = uresp.sq_db_gts_key;
fa658a98 1739 mm3->addr = (__force unsigned long) qhp->wq.sq.udb;
cfdda9d7
SW
1740 mm3->len = PAGE_SIZE;
1741 insert_mmap(ucontext, mm3);
1742 mm4->key = uresp.rq_db_gts_key;
fa658a98 1743 mm4->addr = (__force unsigned long) qhp->wq.rq.udb;
cfdda9d7
SW
1744 mm4->len = PAGE_SIZE;
1745 insert_mmap(ucontext, mm4);
c6d7b267
SW
1746 if (mm5) {
1747 mm5->key = uresp.ma_sync_key;
1748 mm5->addr = (pci_resource_start(rhp->rdev.lldi.pdev, 0)
1749 + A_PCIE_MA_SYNC) & PAGE_MASK;
1750 mm5->len = PAGE_SIZE;
1751 insert_mmap(ucontext, mm5);
1752 }
cfdda9d7
SW
1753 }
1754 qhp->ibqp.qp_num = qhp->wq.sq.qid;
1755 init_timer(&(qhp->timer));
05eb2389 1756 INIT_LIST_HEAD(&qhp->db_fc_entry);
cfdda9d7
SW
1757 PDBG("%s qhp %p sq_num_entries %d, rq_num_entries %d qpid 0x%0x\n",
1758 __func__, qhp, qhp->attr.sq_num_entries, qhp->attr.rq_num_entries,
1759 qhp->wq.sq.qid);
1760 return &qhp->ibqp;
c6d7b267
SW
1761err8:
1762 kfree(mm5);
cfdda9d7 1763err7:
30a6a62f 1764 kfree(mm4);
cfdda9d7 1765err6:
30a6a62f 1766 kfree(mm3);
cfdda9d7 1767err5:
30a6a62f 1768 kfree(mm2);
cfdda9d7 1769err4:
30a6a62f 1770 kfree(mm1);
cfdda9d7
SW
1771err3:
1772 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
1773err2:
1774 destroy_qp(&rhp->rdev, &qhp->wq,
1775 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1776err1:
1777 kfree(qhp);
1778 return ERR_PTR(ret);
1779}
1780
1781int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1782 int attr_mask, struct ib_udata *udata)
1783{
1784 struct c4iw_dev *rhp;
1785 struct c4iw_qp *qhp;
1786 enum c4iw_qp_attr_mask mask = 0;
1787 struct c4iw_qp_attributes attrs;
1788
1789 PDBG("%s ib_qp %p\n", __func__, ibqp);
1790
1791 /* iwarp does not support the RTR state */
1792 if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
1793 attr_mask &= ~IB_QP_STATE;
1794
1795 /* Make sure we still have something left to do */
1796 if (!attr_mask)
1797 return 0;
1798
1799 memset(&attrs, 0, sizeof attrs);
1800 qhp = to_c4iw_qp(ibqp);
1801 rhp = qhp->rhp;
1802
1803 attrs.next_state = c4iw_convert_state(attr->qp_state);
1804 attrs.enable_rdma_read = (attr->qp_access_flags &
1805 IB_ACCESS_REMOTE_READ) ? 1 : 0;
1806 attrs.enable_rdma_write = (attr->qp_access_flags &
1807 IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
1808 attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
1809
1810
1811 mask |= (attr_mask & IB_QP_STATE) ? C4IW_QP_ATTR_NEXT_STATE : 0;
1812 mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
1813 (C4IW_QP_ATTR_ENABLE_RDMA_READ |
1814 C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
1815 C4IW_QP_ATTR_ENABLE_RDMA_BIND) : 0;
1816
2c974781
VP
1817 /*
1818 * Use SQ_PSN and RQ_PSN to pass in IDX_INC values for
1819 * ringing the queue db when we're in DB_FULL mode.
c2f9da92 1820 * Only allow this on T4 devices.
2c974781
VP
1821 */
1822 attrs.sq_db_inc = attr->sq_psn;
1823 attrs.rq_db_inc = attr->rq_psn;
1824 mask |= (attr_mask & IB_QP_SQ_PSN) ? C4IW_QP_ATTR_SQ_DB : 0;
1825 mask |= (attr_mask & IB_QP_RQ_PSN) ? C4IW_QP_ATTR_RQ_DB : 0;
c2f9da92
SW
1826 if (is_t5(to_c4iw_qp(ibqp)->rhp->rdev.lldi.adapter_type) &&
1827 (mask & (C4IW_QP_ATTR_SQ_DB|C4IW_QP_ATTR_RQ_DB)))
1828 return -EINVAL;
2c974781 1829
cfdda9d7
SW
1830 return c4iw_modify_qp(rhp, qhp, mask, &attrs, 0);
1831}
1832
1833struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn)
1834{
1835 PDBG("%s ib_dev %p qpn 0x%x\n", __func__, dev, qpn);
1836 return (struct ib_qp *)get_qhp(to_c4iw_dev(dev), qpn);
1837}
67bbc055
VP
1838
1839int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1840 int attr_mask, struct ib_qp_init_attr *init_attr)
1841{
1842 struct c4iw_qp *qhp = to_c4iw_qp(ibqp);
1843
1844 memset(attr, 0, sizeof *attr);
1845 memset(init_attr, 0, sizeof *init_attr);
1846 attr->qp_state = to_ib_qp_state(qhp->attr.state);
1847 return 0;
1848}