2 * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/module.h>
37 static int db_delay_usecs
= 1;
38 module_param(db_delay_usecs
, int, 0644);
39 MODULE_PARM_DESC(db_delay_usecs
, "Usecs to delay awaiting db fifo to drain");
41 static int ocqp_support
= 1;
42 module_param(ocqp_support
, int, 0644);
43 MODULE_PARM_DESC(ocqp_support
, "Support on-chip SQs (default=1)");
45 int db_fc_threshold
= 1000;
46 module_param(db_fc_threshold
, int, 0644);
47 MODULE_PARM_DESC(db_fc_threshold
,
48 "QP count/threshold that triggers"
49 " automatic db flow control mode (default = 1000)");
51 int db_coalescing_threshold
;
52 module_param(db_coalescing_threshold
, int, 0644);
53 MODULE_PARM_DESC(db_coalescing_threshold
,
54 "QP count/threshold that triggers"
55 " disabling db coalescing (default = 0)");
57 static int max_fr_immd
= T4_MAX_FR_IMMD
;
58 module_param(max_fr_immd
, int, 0644);
59 MODULE_PARM_DESC(max_fr_immd
, "fastreg threshold for using DSGL instead of immedate");
61 static int alloc_ird(struct c4iw_dev
*dev
, u32 ird
)
65 spin_lock_irq(&dev
->lock
);
66 if (ird
<= dev
->avail_ird
)
67 dev
->avail_ird
-= ird
;
70 spin_unlock_irq(&dev
->lock
);
73 dev_warn(&dev
->rdev
.lldi
.pdev
->dev
,
74 "device IRD resources exhausted\n");
79 static void free_ird(struct c4iw_dev
*dev
, int ird
)
81 spin_lock_irq(&dev
->lock
);
82 dev
->avail_ird
+= ird
;
83 spin_unlock_irq(&dev
->lock
);
86 static void set_state(struct c4iw_qp
*qhp
, enum c4iw_qp_state state
)
89 spin_lock_irqsave(&qhp
->lock
, flag
);
90 qhp
->attr
.state
= state
;
91 spin_unlock_irqrestore(&qhp
->lock
, flag
);
94 static void dealloc_oc_sq(struct c4iw_rdev
*rdev
, struct t4_sq
*sq
)
96 c4iw_ocqp_pool_free(rdev
, sq
->dma_addr
, sq
->memsize
);
99 static void dealloc_host_sq(struct c4iw_rdev
*rdev
, struct t4_sq
*sq
)
101 dma_free_coherent(&(rdev
->lldi
.pdev
->dev
), sq
->memsize
, sq
->queue
,
102 pci_unmap_addr(sq
, mapping
));
105 static void dealloc_sq(struct c4iw_rdev
*rdev
, struct t4_sq
*sq
)
107 if (t4_sq_onchip(sq
))
108 dealloc_oc_sq(rdev
, sq
);
110 dealloc_host_sq(rdev
, sq
);
113 static int alloc_oc_sq(struct c4iw_rdev
*rdev
, struct t4_sq
*sq
)
115 if (!ocqp_support
|| !ocqp_supported(&rdev
->lldi
))
117 sq
->dma_addr
= c4iw_ocqp_pool_alloc(rdev
, sq
->memsize
);
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
;
128 static int alloc_host_sq(struct c4iw_rdev
*rdev
, struct t4_sq
*sq
)
130 sq
->queue
= dma_alloc_coherent(&(rdev
->lldi
.pdev
->dev
), sq
->memsize
,
131 &(sq
->dma_addr
), GFP_KERNEL
);
134 sq
->phys_addr
= virt_to_phys(sq
->queue
);
135 pci_unmap_addr_set(sq
, mapping
, sq
->dma_addr
);
139 static int alloc_sq(struct c4iw_rdev
*rdev
, struct t4_sq
*sq
, int user
)
143 ret
= alloc_oc_sq(rdev
, sq
);
145 ret
= alloc_host_sq(rdev
, sq
);
149 static int destroy_qp(struct c4iw_rdev
*rdev
, struct t4_wq
*wq
,
150 struct c4iw_dev_ucontext
*uctx
)
153 * uP clears EQ contexts when the connection exits rdma mode,
154 * so no need to post a RESET WR for these EQs.
156 dma_free_coherent(&(rdev
->lldi
.pdev
->dev
),
157 wq
->rq
.memsize
, wq
->rq
.queue
,
158 dma_unmap_addr(&wq
->rq
, mapping
));
159 dealloc_sq(rdev
, &wq
->sq
);
160 c4iw_rqtpool_free(rdev
, wq
->rq
.rqt_hwaddr
, wq
->rq
.rqt_size
);
163 c4iw_put_qpid(rdev
, wq
->rq
.qid
, uctx
);
164 c4iw_put_qpid(rdev
, wq
->sq
.qid
, uctx
);
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
173 void __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
)
180 ret
= cxgb4_bar2_sge_qregs(rdev
->lldi
.ports
[0], qid
, qtype
,
182 &bar2_qoffset
, pbar2_qid
);
187 *pbar2_pa
= (rdev
->bar2_pa
+ bar2_qoffset
) & PAGE_MASK
;
188 return rdev
->bar2_kva
+ bar2_qoffset
;
191 static int create_qp(struct c4iw_rdev
*rdev
, struct t4_wq
*wq
,
192 struct t4_cq
*rcq
, struct t4_cq
*scq
,
193 struct c4iw_dev_ucontext
*uctx
)
195 int user
= (uctx
!= &rdev
->uctx
);
196 struct fw_ri_res_wr
*res_wr
;
197 struct fw_ri_res
*res
;
199 struct c4iw_wr_wait wr_wait
;
204 wq
->sq
.qid
= c4iw_get_qpid(rdev
, uctx
);
208 wq
->rq
.qid
= c4iw_get_qpid(rdev
, uctx
);
215 wq
->sq
.sw_sq
= kzalloc(wq
->sq
.size
* sizeof *wq
->sq
.sw_sq
,
222 wq
->rq
.sw_rq
= kzalloc(wq
->rq
.size
* sizeof *wq
->rq
.sw_rq
,
231 * RQT must be a power of 2 and at least 16 deep.
233 wq
->rq
.rqt_size
= roundup_pow_of_two(max_t(u16
, wq
->rq
.size
, 16));
234 wq
->rq
.rqt_hwaddr
= c4iw_rqtpool_alloc(rdev
, wq
->rq
.rqt_size
);
235 if (!wq
->rq
.rqt_hwaddr
) {
240 ret
= alloc_sq(rdev
, &wq
->sq
, user
);
243 memset(wq
->sq
.queue
, 0, wq
->sq
.memsize
);
244 dma_unmap_addr_set(&wq
->sq
, mapping
, wq
->sq
.dma_addr
);
246 wq
->rq
.queue
= dma_alloc_coherent(&(rdev
->lldi
.pdev
->dev
),
247 wq
->rq
.memsize
, &(wq
->rq
.dma_addr
),
253 PDBG("%s sq base va 0x%p pa 0x%llx rq base va 0x%p pa 0x%llx\n",
254 __func__
, wq
->sq
.queue
,
255 (unsigned long long)virt_to_phys(wq
->sq
.queue
),
257 (unsigned long long)virt_to_phys(wq
->rq
.queue
));
258 memset(wq
->rq
.queue
, 0, wq
->rq
.memsize
);
259 dma_unmap_addr_set(&wq
->rq
, mapping
, wq
->rq
.dma_addr
);
261 wq
->db
= rdev
->lldi
.db_reg
;
263 wq
->sq
.bar2_va
= c4iw_bar2_addrs(rdev
, wq
->sq
.qid
, T4_BAR2_QTYPE_EGRESS
,
265 user
? &wq
->sq
.bar2_pa
: NULL
);
266 wq
->rq
.bar2_va
= c4iw_bar2_addrs(rdev
, wq
->rq
.qid
, T4_BAR2_QTYPE_EGRESS
,
268 user
? &wq
->rq
.bar2_pa
: NULL
);
271 * User mode must have bar2 access.
273 if (user
&& (!wq
->sq
.bar2_va
|| !wq
->rq
.bar2_va
)) {
274 pr_warn(MOD
"%s: sqid %u or rqid %u not in BAR2 range.\n",
275 pci_name(rdev
->lldi
.pdev
), wq
->sq
.qid
, wq
->rq
.qid
);
282 /* build fw_ri_res_wr */
283 wr_len
= sizeof *res_wr
+ 2 * sizeof *res
;
285 skb
= alloc_skb(wr_len
, GFP_KERNEL
);
290 set_wr_txq(skb
, CPL_PRIORITY_CONTROL
, 0);
292 res_wr
= (struct fw_ri_res_wr
*)__skb_put(skb
, wr_len
);
293 memset(res_wr
, 0, wr_len
);
294 res_wr
->op_nres
= cpu_to_be32(
295 FW_WR_OP_V(FW_RI_RES_WR
) |
296 FW_RI_RES_WR_NRES_V(2) |
298 res_wr
->len16_pkd
= cpu_to_be32(DIV_ROUND_UP(wr_len
, 16));
299 res_wr
->cookie
= (uintptr_t)&wr_wait
;
301 res
->u
.sqrq
.restype
= FW_RI_RES_TYPE_SQ
;
302 res
->u
.sqrq
.op
= FW_RI_RES_OP_WRITE
;
305 * eqsize is the number of 64B entries plus the status page size.
307 eqsize
= wq
->sq
.size
* T4_SQ_NUM_SLOTS
+
308 rdev
->hw_queue
.t4_eq_status_entries
;
310 res
->u
.sqrq
.fetchszm_to_iqid
= cpu_to_be32(
311 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
312 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
313 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
314 (t4_sq_onchip(&wq
->sq
) ? FW_RI_RES_WR_ONCHIP_F
: 0) |
315 FW_RI_RES_WR_IQID_V(scq
->cqid
));
316 res
->u
.sqrq
.dcaen_to_eqsize
= cpu_to_be32(
317 FW_RI_RES_WR_DCAEN_V(0) |
318 FW_RI_RES_WR_DCACPU_V(0) |
319 FW_RI_RES_WR_FBMIN_V(2) |
320 FW_RI_RES_WR_FBMAX_V(2) |
321 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
322 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
323 FW_RI_RES_WR_EQSIZE_V(eqsize
));
324 res
->u
.sqrq
.eqid
= cpu_to_be32(wq
->sq
.qid
);
325 res
->u
.sqrq
.eqaddr
= cpu_to_be64(wq
->sq
.dma_addr
);
327 res
->u
.sqrq
.restype
= FW_RI_RES_TYPE_RQ
;
328 res
->u
.sqrq
.op
= FW_RI_RES_OP_WRITE
;
331 * eqsize is the number of 64B entries plus the status page size.
333 eqsize
= wq
->rq
.size
* T4_RQ_NUM_SLOTS
+
334 rdev
->hw_queue
.t4_eq_status_entries
;
335 res
->u
.sqrq
.fetchszm_to_iqid
= cpu_to_be32(
336 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
337 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
338 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
339 FW_RI_RES_WR_IQID_V(rcq
->cqid
));
340 res
->u
.sqrq
.dcaen_to_eqsize
= cpu_to_be32(
341 FW_RI_RES_WR_DCAEN_V(0) |
342 FW_RI_RES_WR_DCACPU_V(0) |
343 FW_RI_RES_WR_FBMIN_V(2) |
344 FW_RI_RES_WR_FBMAX_V(2) |
345 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
346 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
347 FW_RI_RES_WR_EQSIZE_V(eqsize
));
348 res
->u
.sqrq
.eqid
= cpu_to_be32(wq
->rq
.qid
);
349 res
->u
.sqrq
.eqaddr
= cpu_to_be64(wq
->rq
.dma_addr
);
351 c4iw_init_wr_wait(&wr_wait
);
353 ret
= c4iw_ofld_send(rdev
, skb
);
356 ret
= c4iw_wait_for_reply(rdev
, &wr_wait
, 0, wq
->sq
.qid
, __func__
);
360 PDBG("%s sqid 0x%x rqid 0x%x kdb 0x%p sq_bar2_addr %p rq_bar2_addr %p\n",
361 __func__
, wq
->sq
.qid
, wq
->rq
.qid
, wq
->db
,
362 wq
->sq
.bar2_va
, wq
->rq
.bar2_va
);
366 dma_free_coherent(&(rdev
->lldi
.pdev
->dev
),
367 wq
->rq
.memsize
, wq
->rq
.queue
,
368 dma_unmap_addr(&wq
->rq
, mapping
));
370 dealloc_sq(rdev
, &wq
->sq
);
372 c4iw_rqtpool_free(rdev
, wq
->rq
.rqt_hwaddr
, wq
->rq
.rqt_size
);
378 c4iw_put_qpid(rdev
, wq
->rq
.qid
, uctx
);
380 c4iw_put_qpid(rdev
, wq
->sq
.qid
, uctx
);
384 static int build_immd(struct t4_sq
*sq
, struct fw_ri_immd
*immdp
,
385 struct ib_send_wr
*wr
, int max
, u32
*plenp
)
392 dstp
= (u8
*)immdp
->data
;
393 for (i
= 0; i
< wr
->num_sge
; i
++) {
394 if ((plen
+ wr
->sg_list
[i
].length
) > max
)
396 srcp
= (u8
*)(unsigned long)wr
->sg_list
[i
].addr
;
397 plen
+= wr
->sg_list
[i
].length
;
398 rem
= wr
->sg_list
[i
].length
;
400 if (dstp
== (u8
*)&sq
->queue
[sq
->size
])
401 dstp
= (u8
*)sq
->queue
;
402 if (rem
<= (u8
*)&sq
->queue
[sq
->size
] - dstp
)
405 len
= (u8
*)&sq
->queue
[sq
->size
] - dstp
;
406 memcpy(dstp
, srcp
, len
);
412 len
= roundup(plen
+ sizeof *immdp
, 16) - (plen
+ sizeof *immdp
);
414 memset(dstp
, 0, len
);
415 immdp
->op
= FW_RI_DATA_IMMD
;
418 immdp
->immdlen
= cpu_to_be32(plen
);
423 static int build_isgl(__be64
*queue_start
, __be64
*queue_end
,
424 struct fw_ri_isgl
*isglp
, struct ib_sge
*sg_list
,
425 int num_sge
, u32
*plenp
)
430 __be64
*flitp
= (__be64
*)isglp
->sge
;
432 for (i
= 0; i
< num_sge
; i
++) {
433 if ((plen
+ sg_list
[i
].length
) < plen
)
435 plen
+= sg_list
[i
].length
;
436 *flitp
= cpu_to_be64(((u64
)sg_list
[i
].lkey
<< 32) |
438 if (++flitp
== queue_end
)
440 *flitp
= cpu_to_be64(sg_list
[i
].addr
);
441 if (++flitp
== queue_end
)
444 *flitp
= (__force __be64
)0;
445 isglp
->op
= FW_RI_DATA_ISGL
;
447 isglp
->nsge
= cpu_to_be16(num_sge
);
454 static int build_rdma_send(struct t4_sq
*sq
, union t4_wr
*wqe
,
455 struct ib_send_wr
*wr
, u8
*len16
)
461 if (wr
->num_sge
> T4_MAX_SEND_SGE
)
463 switch (wr
->opcode
) {
465 if (wr
->send_flags
& IB_SEND_SOLICITED
)
466 wqe
->send
.sendop_pkd
= cpu_to_be32(
467 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE
));
469 wqe
->send
.sendop_pkd
= cpu_to_be32(
470 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND
));
471 wqe
->send
.stag_inv
= 0;
473 case IB_WR_SEND_WITH_INV
:
474 if (wr
->send_flags
& IB_SEND_SOLICITED
)
475 wqe
->send
.sendop_pkd
= cpu_to_be32(
476 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE_INV
));
478 wqe
->send
.sendop_pkd
= cpu_to_be32(
479 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_INV
));
480 wqe
->send
.stag_inv
= cpu_to_be32(wr
->ex
.invalidate_rkey
);
491 if (wr
->send_flags
& IB_SEND_INLINE
) {
492 ret
= build_immd(sq
, wqe
->send
.u
.immd_src
, wr
,
493 T4_MAX_SEND_INLINE
, &plen
);
496 size
= sizeof wqe
->send
+ sizeof(struct fw_ri_immd
) +
499 ret
= build_isgl((__be64
*)sq
->queue
,
500 (__be64
*)&sq
->queue
[sq
->size
],
501 wqe
->send
.u
.isgl_src
,
502 wr
->sg_list
, wr
->num_sge
, &plen
);
505 size
= sizeof wqe
->send
+ sizeof(struct fw_ri_isgl
) +
506 wr
->num_sge
* sizeof(struct fw_ri_sge
);
509 wqe
->send
.u
.immd_src
[0].op
= FW_RI_DATA_IMMD
;
510 wqe
->send
.u
.immd_src
[0].r1
= 0;
511 wqe
->send
.u
.immd_src
[0].r2
= 0;
512 wqe
->send
.u
.immd_src
[0].immdlen
= 0;
513 size
= sizeof wqe
->send
+ sizeof(struct fw_ri_immd
);
516 *len16
= DIV_ROUND_UP(size
, 16);
517 wqe
->send
.plen
= cpu_to_be32(plen
);
521 static int build_rdma_write(struct t4_sq
*sq
, union t4_wr
*wqe
,
522 struct ib_send_wr
*wr
, u8
*len16
)
528 if (wr
->num_sge
> T4_MAX_SEND_SGE
)
531 wqe
->write
.stag_sink
= cpu_to_be32(rdma_wr(wr
)->rkey
);
532 wqe
->write
.to_sink
= cpu_to_be64(rdma_wr(wr
)->remote_addr
);
534 if (wr
->send_flags
& IB_SEND_INLINE
) {
535 ret
= build_immd(sq
, wqe
->write
.u
.immd_src
, wr
,
536 T4_MAX_WRITE_INLINE
, &plen
);
539 size
= sizeof wqe
->write
+ sizeof(struct fw_ri_immd
) +
542 ret
= build_isgl((__be64
*)sq
->queue
,
543 (__be64
*)&sq
->queue
[sq
->size
],
544 wqe
->write
.u
.isgl_src
,
545 wr
->sg_list
, wr
->num_sge
, &plen
);
548 size
= sizeof wqe
->write
+ sizeof(struct fw_ri_isgl
) +
549 wr
->num_sge
* sizeof(struct fw_ri_sge
);
552 wqe
->write
.u
.immd_src
[0].op
= FW_RI_DATA_IMMD
;
553 wqe
->write
.u
.immd_src
[0].r1
= 0;
554 wqe
->write
.u
.immd_src
[0].r2
= 0;
555 wqe
->write
.u
.immd_src
[0].immdlen
= 0;
556 size
= sizeof wqe
->write
+ sizeof(struct fw_ri_immd
);
559 *len16
= DIV_ROUND_UP(size
, 16);
560 wqe
->write
.plen
= cpu_to_be32(plen
);
564 static int build_rdma_read(union t4_wr
*wqe
, struct ib_send_wr
*wr
, u8
*len16
)
569 wqe
->read
.stag_src
= cpu_to_be32(rdma_wr(wr
)->rkey
);
570 wqe
->read
.to_src_hi
= cpu_to_be32((u32
)(rdma_wr(wr
)->remote_addr
572 wqe
->read
.to_src_lo
= cpu_to_be32((u32
)rdma_wr(wr
)->remote_addr
);
573 wqe
->read
.stag_sink
= cpu_to_be32(wr
->sg_list
[0].lkey
);
574 wqe
->read
.plen
= cpu_to_be32(wr
->sg_list
[0].length
);
575 wqe
->read
.to_sink_hi
= cpu_to_be32((u32
)(wr
->sg_list
[0].addr
577 wqe
->read
.to_sink_lo
= cpu_to_be32((u32
)(wr
->sg_list
[0].addr
));
579 wqe
->read
.stag_src
= cpu_to_be32(2);
580 wqe
->read
.to_src_hi
= 0;
581 wqe
->read
.to_src_lo
= 0;
582 wqe
->read
.stag_sink
= cpu_to_be32(2);
584 wqe
->read
.to_sink_hi
= 0;
585 wqe
->read
.to_sink_lo
= 0;
589 *len16
= DIV_ROUND_UP(sizeof wqe
->read
, 16);
593 static int build_rdma_recv(struct c4iw_qp
*qhp
, union t4_recv_wr
*wqe
,
594 struct ib_recv_wr
*wr
, u8
*len16
)
598 ret
= build_isgl((__be64
*)qhp
->wq
.rq
.queue
,
599 (__be64
*)&qhp
->wq
.rq
.queue
[qhp
->wq
.rq
.size
],
600 &wqe
->recv
.isgl
, wr
->sg_list
, wr
->num_sge
, NULL
);
603 *len16
= DIV_ROUND_UP(sizeof wqe
->recv
+
604 wr
->num_sge
* sizeof(struct fw_ri_sge
), 16);
608 static int build_memreg(struct t4_sq
*sq
, union t4_wr
*wqe
,
609 struct ib_reg_wr
*wr
, u8
*len16
, u8 t5dev
)
611 struct c4iw_mr
*mhp
= to_c4iw_mr(wr
->mr
);
612 struct fw_ri_immd
*imdp
;
615 int pbllen
= roundup(mhp
->mpl_len
* sizeof(u64
), 32);
618 if (mhp
->mpl_len
> t4_max_fr_depth(use_dsgl
))
621 wqe
->fr
.qpbinde_to_dcacpu
= 0;
622 wqe
->fr
.pgsz_shift
= ilog2(wr
->mr
->page_size
) - 12;
623 wqe
->fr
.addr_type
= FW_RI_VA_BASED_TO
;
624 wqe
->fr
.mem_perms
= c4iw_ib_to_tpt_access(wr
->access
);
626 wqe
->fr
.len_lo
= cpu_to_be32(mhp
->ibmr
.length
);
627 wqe
->fr
.stag
= cpu_to_be32(wr
->key
);
628 wqe
->fr
.va_hi
= cpu_to_be32(mhp
->ibmr
.iova
>> 32);
629 wqe
->fr
.va_lo_fbo
= cpu_to_be32(mhp
->ibmr
.iova
&
632 if (t5dev
&& use_dsgl
&& (pbllen
> max_fr_immd
)) {
633 struct fw_ri_dsgl
*sglp
;
635 for (i
= 0; i
< mhp
->mpl_len
; i
++)
636 mhp
->mpl
[i
] = (__force u64
)cpu_to_be64((u64
)mhp
->mpl
[i
]);
638 sglp
= (struct fw_ri_dsgl
*)(&wqe
->fr
+ 1);
639 sglp
->op
= FW_RI_DATA_DSGL
;
641 sglp
->nsge
= cpu_to_be16(1);
642 sglp
->addr0
= cpu_to_be64(mhp
->mpl_addr
);
643 sglp
->len0
= cpu_to_be32(pbllen
);
645 *len16
= DIV_ROUND_UP(sizeof(wqe
->fr
) + sizeof(*sglp
), 16);
647 imdp
= (struct fw_ri_immd
*)(&wqe
->fr
+ 1);
648 imdp
->op
= FW_RI_DATA_IMMD
;
651 imdp
->immdlen
= cpu_to_be32(pbllen
);
652 p
= (__be64
*)(imdp
+ 1);
654 for (i
= 0; i
< mhp
->mpl_len
; i
++) {
655 *p
= cpu_to_be64((u64
)mhp
->mpl
[i
]);
657 if (++p
== (__be64
*)&sq
->queue
[sq
->size
])
658 p
= (__be64
*)sq
->queue
;
664 if (++p
== (__be64
*)&sq
->queue
[sq
->size
])
665 p
= (__be64
*)sq
->queue
;
667 *len16
= DIV_ROUND_UP(sizeof(wqe
->fr
) + sizeof(*imdp
)
673 static int build_inv_stag(union t4_wr
*wqe
, struct ib_send_wr
*wr
,
676 wqe
->inv
.stag_inv
= cpu_to_be32(wr
->ex
.invalidate_rkey
);
678 *len16
= DIV_ROUND_UP(sizeof wqe
->inv
, 16);
682 void c4iw_qp_add_ref(struct ib_qp
*qp
)
684 PDBG("%s ib_qp %p\n", __func__
, qp
);
685 atomic_inc(&(to_c4iw_qp(qp
)->refcnt
));
688 void c4iw_qp_rem_ref(struct ib_qp
*qp
)
690 PDBG("%s ib_qp %p\n", __func__
, qp
);
691 if (atomic_dec_and_test(&(to_c4iw_qp(qp
)->refcnt
)))
692 wake_up(&(to_c4iw_qp(qp
)->wait
));
695 static void add_to_fc_list(struct list_head
*head
, struct list_head
*entry
)
697 if (list_empty(entry
))
698 list_add_tail(entry
, head
);
701 static int ring_kernel_sq_db(struct c4iw_qp
*qhp
, u16 inc
)
705 spin_lock_irqsave(&qhp
->rhp
->lock
, flags
);
706 spin_lock(&qhp
->lock
);
707 if (qhp
->rhp
->db_state
== NORMAL
)
708 t4_ring_sq_db(&qhp
->wq
, inc
, NULL
);
710 add_to_fc_list(&qhp
->rhp
->db_fc_list
, &qhp
->db_fc_entry
);
711 qhp
->wq
.sq
.wq_pidx_inc
+= inc
;
713 spin_unlock(&qhp
->lock
);
714 spin_unlock_irqrestore(&qhp
->rhp
->lock
, flags
);
718 static int ring_kernel_rq_db(struct c4iw_qp
*qhp
, u16 inc
)
722 spin_lock_irqsave(&qhp
->rhp
->lock
, flags
);
723 spin_lock(&qhp
->lock
);
724 if (qhp
->rhp
->db_state
== NORMAL
)
725 t4_ring_rq_db(&qhp
->wq
, inc
, NULL
);
727 add_to_fc_list(&qhp
->rhp
->db_fc_list
, &qhp
->db_fc_entry
);
728 qhp
->wq
.rq
.wq_pidx_inc
+= inc
;
730 spin_unlock(&qhp
->lock
);
731 spin_unlock_irqrestore(&qhp
->rhp
->lock
, flags
);
735 int c4iw_post_send(struct ib_qp
*ibqp
, struct ib_send_wr
*wr
,
736 struct ib_send_wr
**bad_wr
)
740 enum fw_wr_opcodes fw_opcode
= 0;
741 enum fw_ri_wr_flags fw_flags
;
743 union t4_wr
*wqe
= NULL
;
745 struct t4_swsqe
*swsqe
;
749 qhp
= to_c4iw_qp(ibqp
);
750 spin_lock_irqsave(&qhp
->lock
, flag
);
751 if (t4_wq_in_error(&qhp
->wq
)) {
752 spin_unlock_irqrestore(&qhp
->lock
, flag
);
755 num_wrs
= t4_sq_avail(&qhp
->wq
);
757 spin_unlock_irqrestore(&qhp
->lock
, flag
);
766 wqe
= (union t4_wr
*)((u8
*)qhp
->wq
.sq
.queue
+
767 qhp
->wq
.sq
.wq_pidx
* T4_EQ_ENTRY_SIZE
);
770 if (wr
->send_flags
& IB_SEND_SOLICITED
)
771 fw_flags
|= FW_RI_SOLICITED_EVENT_FLAG
;
772 if (wr
->send_flags
& IB_SEND_SIGNALED
|| qhp
->sq_sig_all
)
773 fw_flags
|= FW_RI_COMPLETION_FLAG
;
774 swsqe
= &qhp
->wq
.sq
.sw_sq
[qhp
->wq
.sq
.pidx
];
775 switch (wr
->opcode
) {
776 case IB_WR_SEND_WITH_INV
:
778 if (wr
->send_flags
& IB_SEND_FENCE
)
779 fw_flags
|= FW_RI_READ_FENCE_FLAG
;
780 fw_opcode
= FW_RI_SEND_WR
;
781 if (wr
->opcode
== IB_WR_SEND
)
782 swsqe
->opcode
= FW_RI_SEND
;
784 swsqe
->opcode
= FW_RI_SEND_WITH_INV
;
785 err
= build_rdma_send(&qhp
->wq
.sq
, wqe
, wr
, &len16
);
787 case IB_WR_RDMA_WRITE
:
788 fw_opcode
= FW_RI_RDMA_WRITE_WR
;
789 swsqe
->opcode
= FW_RI_RDMA_WRITE
;
790 err
= build_rdma_write(&qhp
->wq
.sq
, wqe
, wr
, &len16
);
792 case IB_WR_RDMA_READ
:
793 case IB_WR_RDMA_READ_WITH_INV
:
794 fw_opcode
= FW_RI_RDMA_READ_WR
;
795 swsqe
->opcode
= FW_RI_READ_REQ
;
796 if (wr
->opcode
== IB_WR_RDMA_READ_WITH_INV
)
797 fw_flags
= FW_RI_RDMA_READ_INVALIDATE
;
800 err
= build_rdma_read(wqe
, wr
, &len16
);
803 swsqe
->read_len
= wr
->sg_list
[0].length
;
804 if (!qhp
->wq
.sq
.oldest_read
)
805 qhp
->wq
.sq
.oldest_read
= swsqe
;
808 fw_opcode
= FW_RI_FR_NSMR_WR
;
809 swsqe
->opcode
= FW_RI_FAST_REGISTER
;
810 err
= build_memreg(&qhp
->wq
.sq
, wqe
, reg_wr(wr
), &len16
,
812 qhp
->rhp
->rdev
.lldi
.adapter_type
) ?
815 case IB_WR_LOCAL_INV
:
816 if (wr
->send_flags
& IB_SEND_FENCE
)
817 fw_flags
|= FW_RI_LOCAL_FENCE_FLAG
;
818 fw_opcode
= FW_RI_INV_LSTAG_WR
;
819 swsqe
->opcode
= FW_RI_LOCAL_INV
;
820 err
= build_inv_stag(wqe
, wr
, &len16
);
823 PDBG("%s post of type=%d TBD!\n", __func__
,
831 swsqe
->idx
= qhp
->wq
.sq
.pidx
;
833 swsqe
->signaled
= (wr
->send_flags
& IB_SEND_SIGNALED
) ||
836 swsqe
->wr_id
= wr
->wr_id
;
838 swsqe
->sge_ts
= cxgb4_read_sge_timestamp(
839 qhp
->rhp
->rdev
.lldi
.ports
[0]);
840 getnstimeofday(&swsqe
->host_ts
);
843 init_wr_hdr(wqe
, qhp
->wq
.sq
.pidx
, fw_opcode
, fw_flags
, len16
);
845 PDBG("%s cookie 0x%llx pidx 0x%x opcode 0x%x read_len %u\n",
846 __func__
, (unsigned long long)wr
->wr_id
, qhp
->wq
.sq
.pidx
,
847 swsqe
->opcode
, swsqe
->read_len
);
850 t4_sq_produce(&qhp
->wq
, len16
);
851 idx
+= DIV_ROUND_UP(len16
*16, T4_EQ_ENTRY_SIZE
);
853 if (!qhp
->rhp
->rdev
.status_page
->db_off
) {
854 t4_ring_sq_db(&qhp
->wq
, idx
, wqe
);
855 spin_unlock_irqrestore(&qhp
->lock
, flag
);
857 spin_unlock_irqrestore(&qhp
->lock
, flag
);
858 ring_kernel_sq_db(qhp
, idx
);
863 int c4iw_post_receive(struct ib_qp
*ibqp
, struct ib_recv_wr
*wr
,
864 struct ib_recv_wr
**bad_wr
)
868 union t4_recv_wr
*wqe
= NULL
;
874 qhp
= to_c4iw_qp(ibqp
);
875 spin_lock_irqsave(&qhp
->lock
, flag
);
876 if (t4_wq_in_error(&qhp
->wq
)) {
877 spin_unlock_irqrestore(&qhp
->lock
, flag
);
880 num_wrs
= t4_rq_avail(&qhp
->wq
);
882 spin_unlock_irqrestore(&qhp
->lock
, flag
);
886 if (wr
->num_sge
> T4_MAX_RECV_SGE
) {
891 wqe
= (union t4_recv_wr
*)((u8
*)qhp
->wq
.rq
.queue
+
895 err
= build_rdma_recv(qhp
, wqe
, wr
, &len16
);
903 qhp
->wq
.rq
.sw_rq
[qhp
->wq
.rq
.pidx
].wr_id
= wr
->wr_id
;
905 qhp
->wq
.rq
.sw_rq
[qhp
->wq
.rq
.pidx
].sge_ts
=
906 cxgb4_read_sge_timestamp(
907 qhp
->rhp
->rdev
.lldi
.ports
[0]);
909 &qhp
->wq
.rq
.sw_rq
[qhp
->wq
.rq
.pidx
].host_ts
);
912 wqe
->recv
.opcode
= FW_RI_RECV_WR
;
914 wqe
->recv
.wrid
= qhp
->wq
.rq
.pidx
;
918 wqe
->recv
.len16
= len16
;
919 PDBG("%s cookie 0x%llx pidx %u\n", __func__
,
920 (unsigned long long) wr
->wr_id
, qhp
->wq
.rq
.pidx
);
921 t4_rq_produce(&qhp
->wq
, len16
);
922 idx
+= DIV_ROUND_UP(len16
*16, T4_EQ_ENTRY_SIZE
);
926 if (!qhp
->rhp
->rdev
.status_page
->db_off
) {
927 t4_ring_rq_db(&qhp
->wq
, idx
, wqe
);
928 spin_unlock_irqrestore(&qhp
->lock
, flag
);
930 spin_unlock_irqrestore(&qhp
->lock
, flag
);
931 ring_kernel_rq_db(qhp
, idx
);
936 int c4iw_bind_mw(struct ib_qp
*qp
, struct ib_mw
*mw
, struct ib_mw_bind
*mw_bind
)
941 static inline void build_term_codes(struct t4_cqe
*err_cqe
, u8
*layer_type
,
951 *layer_type
= LAYER_RDMAP
|DDP_LOCAL_CATA
;
956 status
= CQE_STATUS(err_cqe
);
957 opcode
= CQE_OPCODE(err_cqe
);
958 rqtype
= RQ_TYPE(err_cqe
);
959 send_inv
= (opcode
== FW_RI_SEND_WITH_INV
) ||
960 (opcode
== FW_RI_SEND_WITH_SE_INV
);
961 tagged
= (opcode
== FW_RI_RDMA_WRITE
) ||
962 (rqtype
&& (opcode
== FW_RI_READ_RESP
));
967 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_OP
;
968 *ecode
= RDMAP_CANT_INV_STAG
;
970 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_PROT
;
971 *ecode
= RDMAP_INV_STAG
;
975 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_PROT
;
976 if ((opcode
== FW_RI_SEND_WITH_INV
) ||
977 (opcode
== FW_RI_SEND_WITH_SE_INV
))
978 *ecode
= RDMAP_CANT_INV_STAG
;
980 *ecode
= RDMAP_STAG_NOT_ASSOC
;
983 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_PROT
;
984 *ecode
= RDMAP_STAG_NOT_ASSOC
;
987 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_PROT
;
988 *ecode
= RDMAP_ACC_VIOL
;
991 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_PROT
;
992 *ecode
= RDMAP_TO_WRAP
;
996 *layer_type
= LAYER_DDP
|DDP_TAGGED_ERR
;
997 *ecode
= DDPT_BASE_BOUNDS
;
999 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_PROT
;
1000 *ecode
= RDMAP_BASE_BOUNDS
;
1003 case T4_ERR_INVALIDATE_SHARED_MR
:
1004 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND
:
1005 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_OP
;
1006 *ecode
= RDMAP_CANT_INV_STAG
;
1009 case T4_ERR_ECC_PSTAG
:
1010 case T4_ERR_INTERNAL_ERR
:
1011 *layer_type
= LAYER_RDMAP
|RDMAP_LOCAL_CATA
;
1014 case T4_ERR_OUT_OF_RQE
:
1015 *layer_type
= LAYER_DDP
|DDP_UNTAGGED_ERR
;
1016 *ecode
= DDPU_INV_MSN_NOBUF
;
1018 case T4_ERR_PBL_ADDR_BOUND
:
1019 *layer_type
= LAYER_DDP
|DDP_TAGGED_ERR
;
1020 *ecode
= DDPT_BASE_BOUNDS
;
1023 *layer_type
= LAYER_MPA
|DDP_LLP
;
1024 *ecode
= MPA_CRC_ERR
;
1027 *layer_type
= LAYER_MPA
|DDP_LLP
;
1028 *ecode
= MPA_MARKER_ERR
;
1030 case T4_ERR_PDU_LEN_ERR
:
1031 *layer_type
= LAYER_DDP
|DDP_UNTAGGED_ERR
;
1032 *ecode
= DDPU_MSG_TOOBIG
;
1034 case T4_ERR_DDP_VERSION
:
1036 *layer_type
= LAYER_DDP
|DDP_TAGGED_ERR
;
1037 *ecode
= DDPT_INV_VERS
;
1039 *layer_type
= LAYER_DDP
|DDP_UNTAGGED_ERR
;
1040 *ecode
= DDPU_INV_VERS
;
1043 case T4_ERR_RDMA_VERSION
:
1044 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_OP
;
1045 *ecode
= RDMAP_INV_VERS
;
1048 *layer_type
= LAYER_RDMAP
|RDMAP_REMOTE_OP
;
1049 *ecode
= RDMAP_INV_OPCODE
;
1051 case T4_ERR_DDP_QUEUE_NUM
:
1052 *layer_type
= LAYER_DDP
|DDP_UNTAGGED_ERR
;
1053 *ecode
= DDPU_INV_QN
;
1056 case T4_ERR_MSN_GAP
:
1057 case T4_ERR_MSN_RANGE
:
1058 case T4_ERR_IRD_OVERFLOW
:
1059 *layer_type
= LAYER_DDP
|DDP_UNTAGGED_ERR
;
1060 *ecode
= DDPU_INV_MSN_RANGE
;
1063 *layer_type
= LAYER_DDP
|DDP_LOCAL_CATA
;
1067 *layer_type
= LAYER_DDP
|DDP_UNTAGGED_ERR
;
1068 *ecode
= DDPU_INV_MO
;
1071 *layer_type
= LAYER_RDMAP
|DDP_LOCAL_CATA
;
1077 static void post_terminate(struct c4iw_qp
*qhp
, struct t4_cqe
*err_cqe
,
1080 struct fw_ri_wr
*wqe
;
1081 struct sk_buff
*skb
;
1082 struct terminate_message
*term
;
1084 PDBG("%s qhp %p qid 0x%x tid %u\n", __func__
, qhp
, qhp
->wq
.sq
.qid
,
1087 skb
= alloc_skb(sizeof *wqe
, gfp
);
1090 set_wr_txq(skb
, CPL_PRIORITY_DATA
, qhp
->ep
->txq_idx
);
1092 wqe
= (struct fw_ri_wr
*)__skb_put(skb
, sizeof(*wqe
));
1093 memset(wqe
, 0, sizeof *wqe
);
1094 wqe
->op_compl
= cpu_to_be32(FW_WR_OP_V(FW_RI_INIT_WR
));
1095 wqe
->flowid_len16
= cpu_to_be32(
1096 FW_WR_FLOWID_V(qhp
->ep
->hwtid
) |
1097 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe
), 16)));
1099 wqe
->u
.terminate
.type
= FW_RI_TYPE_TERMINATE
;
1100 wqe
->u
.terminate
.immdlen
= cpu_to_be32(sizeof *term
);
1101 term
= (struct terminate_message
*)wqe
->u
.terminate
.termmsg
;
1102 if (qhp
->attr
.layer_etype
== (LAYER_MPA
|DDP_LLP
)) {
1103 term
->layer_etype
= qhp
->attr
.layer_etype
;
1104 term
->ecode
= qhp
->attr
.ecode
;
1106 build_term_codes(err_cqe
, &term
->layer_etype
, &term
->ecode
);
1107 c4iw_ofld_send(&qhp
->rhp
->rdev
, skb
);
1111 * Assumes qhp lock is held.
1113 static void __flush_qp(struct c4iw_qp
*qhp
, struct c4iw_cq
*rchp
,
1114 struct c4iw_cq
*schp
)
1117 int rq_flushed
, sq_flushed
;
1120 PDBG("%s qhp %p rchp %p schp %p\n", __func__
, qhp
, rchp
, schp
);
1122 /* locking hierarchy: cq lock first, then qp lock. */
1123 spin_lock_irqsave(&rchp
->lock
, flag
);
1124 spin_lock(&qhp
->lock
);
1126 if (qhp
->wq
.flushed
) {
1127 spin_unlock(&qhp
->lock
);
1128 spin_unlock_irqrestore(&rchp
->lock
, flag
);
1131 qhp
->wq
.flushed
= 1;
1133 c4iw_flush_hw_cq(rchp
);
1134 c4iw_count_rcqes(&rchp
->cq
, &qhp
->wq
, &count
);
1135 rq_flushed
= c4iw_flush_rq(&qhp
->wq
, &rchp
->cq
, count
);
1136 spin_unlock(&qhp
->lock
);
1137 spin_unlock_irqrestore(&rchp
->lock
, flag
);
1139 /* locking hierarchy: cq lock first, then qp lock. */
1140 spin_lock_irqsave(&schp
->lock
, flag
);
1141 spin_lock(&qhp
->lock
);
1143 c4iw_flush_hw_cq(schp
);
1144 sq_flushed
= c4iw_flush_sq(qhp
);
1145 spin_unlock(&qhp
->lock
);
1146 spin_unlock_irqrestore(&schp
->lock
, flag
);
1149 if (t4_clear_cq_armed(&rchp
->cq
) &&
1150 (rq_flushed
|| sq_flushed
)) {
1151 spin_lock_irqsave(&rchp
->comp_handler_lock
, flag
);
1152 (*rchp
->ibcq
.comp_handler
)(&rchp
->ibcq
,
1153 rchp
->ibcq
.cq_context
);
1154 spin_unlock_irqrestore(&rchp
->comp_handler_lock
, flag
);
1157 if (t4_clear_cq_armed(&rchp
->cq
) && rq_flushed
) {
1158 spin_lock_irqsave(&rchp
->comp_handler_lock
, flag
);
1159 (*rchp
->ibcq
.comp_handler
)(&rchp
->ibcq
,
1160 rchp
->ibcq
.cq_context
);
1161 spin_unlock_irqrestore(&rchp
->comp_handler_lock
, flag
);
1163 if (t4_clear_cq_armed(&schp
->cq
) && sq_flushed
) {
1164 spin_lock_irqsave(&schp
->comp_handler_lock
, flag
);
1165 (*schp
->ibcq
.comp_handler
)(&schp
->ibcq
,
1166 schp
->ibcq
.cq_context
);
1167 spin_unlock_irqrestore(&schp
->comp_handler_lock
, flag
);
1172 static void flush_qp(struct c4iw_qp
*qhp
)
1174 struct c4iw_cq
*rchp
, *schp
;
1177 rchp
= to_c4iw_cq(qhp
->ibqp
.recv_cq
);
1178 schp
= to_c4iw_cq(qhp
->ibqp
.send_cq
);
1180 t4_set_wq_in_error(&qhp
->wq
);
1181 if (qhp
->ibqp
.uobject
) {
1182 t4_set_cq_in_error(&rchp
->cq
);
1183 spin_lock_irqsave(&rchp
->comp_handler_lock
, flag
);
1184 (*rchp
->ibcq
.comp_handler
)(&rchp
->ibcq
, rchp
->ibcq
.cq_context
);
1185 spin_unlock_irqrestore(&rchp
->comp_handler_lock
, flag
);
1187 t4_set_cq_in_error(&schp
->cq
);
1188 spin_lock_irqsave(&schp
->comp_handler_lock
, flag
);
1189 (*schp
->ibcq
.comp_handler
)(&schp
->ibcq
,
1190 schp
->ibcq
.cq_context
);
1191 spin_unlock_irqrestore(&schp
->comp_handler_lock
, flag
);
1195 __flush_qp(qhp
, rchp
, schp
);
1198 static int rdma_fini(struct c4iw_dev
*rhp
, struct c4iw_qp
*qhp
,
1201 struct fw_ri_wr
*wqe
;
1203 struct sk_buff
*skb
;
1205 PDBG("%s qhp %p qid 0x%x tid %u\n", __func__
, qhp
, qhp
->wq
.sq
.qid
,
1208 skb
= alloc_skb(sizeof *wqe
, GFP_KERNEL
);
1211 set_wr_txq(skb
, CPL_PRIORITY_DATA
, ep
->txq_idx
);
1213 wqe
= (struct fw_ri_wr
*)__skb_put(skb
, sizeof(*wqe
));
1214 memset(wqe
, 0, sizeof *wqe
);
1215 wqe
->op_compl
= cpu_to_be32(
1216 FW_WR_OP_V(FW_RI_INIT_WR
) |
1218 wqe
->flowid_len16
= cpu_to_be32(
1219 FW_WR_FLOWID_V(ep
->hwtid
) |
1220 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe
), 16)));
1221 wqe
->cookie
= (uintptr_t)&ep
->com
.wr_wait
;
1223 wqe
->u
.fini
.type
= FW_RI_TYPE_FINI
;
1224 ret
= c4iw_ofld_send(&rhp
->rdev
, skb
);
1228 ret
= c4iw_wait_for_reply(&rhp
->rdev
, &ep
->com
.wr_wait
, qhp
->ep
->hwtid
,
1229 qhp
->wq
.sq
.qid
, __func__
);
1231 PDBG("%s ret %d\n", __func__
, ret
);
1235 static void build_rtr_msg(u8 p2p_type
, struct fw_ri_init
*init
)
1237 PDBG("%s p2p_type = %d\n", __func__
, p2p_type
);
1238 memset(&init
->u
, 0, sizeof init
->u
);
1240 case FW_RI_INIT_P2PTYPE_RDMA_WRITE
:
1241 init
->u
.write
.opcode
= FW_RI_RDMA_WRITE_WR
;
1242 init
->u
.write
.stag_sink
= cpu_to_be32(1);
1243 init
->u
.write
.to_sink
= cpu_to_be64(1);
1244 init
->u
.write
.u
.immd_src
[0].op
= FW_RI_DATA_IMMD
;
1245 init
->u
.write
.len16
= DIV_ROUND_UP(sizeof init
->u
.write
+
1246 sizeof(struct fw_ri_immd
),
1249 case FW_RI_INIT_P2PTYPE_READ_REQ
:
1250 init
->u
.write
.opcode
= FW_RI_RDMA_READ_WR
;
1251 init
->u
.read
.stag_src
= cpu_to_be32(1);
1252 init
->u
.read
.to_src_lo
= cpu_to_be32(1);
1253 init
->u
.read
.stag_sink
= cpu_to_be32(1);
1254 init
->u
.read
.to_sink_lo
= cpu_to_be32(1);
1255 init
->u
.read
.len16
= DIV_ROUND_UP(sizeof init
->u
.read
, 16);
1260 static int rdma_init(struct c4iw_dev
*rhp
, struct c4iw_qp
*qhp
)
1262 struct fw_ri_wr
*wqe
;
1264 struct sk_buff
*skb
;
1266 PDBG("%s qhp %p qid 0x%x tid %u ird %u ord %u\n", __func__
, qhp
,
1267 qhp
->wq
.sq
.qid
, qhp
->ep
->hwtid
, qhp
->ep
->ird
, qhp
->ep
->ord
);
1269 skb
= alloc_skb(sizeof *wqe
, GFP_KERNEL
);
1274 ret
= alloc_ird(rhp
, qhp
->attr
.max_ird
);
1276 qhp
->attr
.max_ird
= 0;
1280 set_wr_txq(skb
, CPL_PRIORITY_DATA
, qhp
->ep
->txq_idx
);
1282 wqe
= (struct fw_ri_wr
*)__skb_put(skb
, sizeof(*wqe
));
1283 memset(wqe
, 0, sizeof *wqe
);
1284 wqe
->op_compl
= cpu_to_be32(
1285 FW_WR_OP_V(FW_RI_INIT_WR
) |
1287 wqe
->flowid_len16
= cpu_to_be32(
1288 FW_WR_FLOWID_V(qhp
->ep
->hwtid
) |
1289 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe
), 16)));
1291 wqe
->cookie
= (uintptr_t)&qhp
->ep
->com
.wr_wait
;
1293 wqe
->u
.init
.type
= FW_RI_TYPE_INIT
;
1294 wqe
->u
.init
.mpareqbit_p2ptype
=
1295 FW_RI_WR_MPAREQBIT_V(qhp
->attr
.mpa_attr
.initiator
) |
1296 FW_RI_WR_P2PTYPE_V(qhp
->attr
.mpa_attr
.p2p_type
);
1297 wqe
->u
.init
.mpa_attrs
= FW_RI_MPA_IETF_ENABLE
;
1298 if (qhp
->attr
.mpa_attr
.recv_marker_enabled
)
1299 wqe
->u
.init
.mpa_attrs
|= FW_RI_MPA_RX_MARKER_ENABLE
;
1300 if (qhp
->attr
.mpa_attr
.xmit_marker_enabled
)
1301 wqe
->u
.init
.mpa_attrs
|= FW_RI_MPA_TX_MARKER_ENABLE
;
1302 if (qhp
->attr
.mpa_attr
.crc_enabled
)
1303 wqe
->u
.init
.mpa_attrs
|= FW_RI_MPA_CRC_ENABLE
;
1305 wqe
->u
.init
.qp_caps
= FW_RI_QP_RDMA_READ_ENABLE
|
1306 FW_RI_QP_RDMA_WRITE_ENABLE
|
1307 FW_RI_QP_BIND_ENABLE
;
1308 if (!qhp
->ibqp
.uobject
)
1309 wqe
->u
.init
.qp_caps
|= FW_RI_QP_FAST_REGISTER_ENABLE
|
1310 FW_RI_QP_STAG0_ENABLE
;
1311 wqe
->u
.init
.nrqe
= cpu_to_be16(t4_rqes_posted(&qhp
->wq
));
1312 wqe
->u
.init
.pdid
= cpu_to_be32(qhp
->attr
.pd
);
1313 wqe
->u
.init
.qpid
= cpu_to_be32(qhp
->wq
.sq
.qid
);
1314 wqe
->u
.init
.sq_eqid
= cpu_to_be32(qhp
->wq
.sq
.qid
);
1315 wqe
->u
.init
.rq_eqid
= cpu_to_be32(qhp
->wq
.rq
.qid
);
1316 wqe
->u
.init
.scqid
= cpu_to_be32(qhp
->attr
.scq
);
1317 wqe
->u
.init
.rcqid
= cpu_to_be32(qhp
->attr
.rcq
);
1318 wqe
->u
.init
.ord_max
= cpu_to_be32(qhp
->attr
.max_ord
);
1319 wqe
->u
.init
.ird_max
= cpu_to_be32(qhp
->attr
.max_ird
);
1320 wqe
->u
.init
.iss
= cpu_to_be32(qhp
->ep
->snd_seq
);
1321 wqe
->u
.init
.irs
= cpu_to_be32(qhp
->ep
->rcv_seq
);
1322 wqe
->u
.init
.hwrqsize
= cpu_to_be32(qhp
->wq
.rq
.rqt_size
);
1323 wqe
->u
.init
.hwrqaddr
= cpu_to_be32(qhp
->wq
.rq
.rqt_hwaddr
-
1324 rhp
->rdev
.lldi
.vr
->rq
.start
);
1325 if (qhp
->attr
.mpa_attr
.initiator
)
1326 build_rtr_msg(qhp
->attr
.mpa_attr
.p2p_type
, &wqe
->u
.init
);
1328 ret
= c4iw_ofld_send(&rhp
->rdev
, skb
);
1332 ret
= c4iw_wait_for_reply(&rhp
->rdev
, &qhp
->ep
->com
.wr_wait
,
1333 qhp
->ep
->hwtid
, qhp
->wq
.sq
.qid
, __func__
);
1337 free_ird(rhp
, qhp
->attr
.max_ird
);
1339 PDBG("%s ret %d\n", __func__
, ret
);
1343 int c4iw_modify_qp(struct c4iw_dev
*rhp
, struct c4iw_qp
*qhp
,
1344 enum c4iw_qp_attr_mask mask
,
1345 struct c4iw_qp_attributes
*attrs
,
1349 struct c4iw_qp_attributes newattr
= qhp
->attr
;
1354 struct c4iw_ep
*ep
= NULL
;
1356 PDBG("%s qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n", __func__
,
1357 qhp
, qhp
->wq
.sq
.qid
, qhp
->wq
.rq
.qid
, qhp
->ep
, qhp
->attr
.state
,
1358 (mask
& C4IW_QP_ATTR_NEXT_STATE
) ? attrs
->next_state
: -1);
1360 mutex_lock(&qhp
->mutex
);
1362 /* Process attr changes if in IDLE */
1363 if (mask
& C4IW_QP_ATTR_VALID_MODIFY
) {
1364 if (qhp
->attr
.state
!= C4IW_QP_STATE_IDLE
) {
1368 if (mask
& C4IW_QP_ATTR_ENABLE_RDMA_READ
)
1369 newattr
.enable_rdma_read
= attrs
->enable_rdma_read
;
1370 if (mask
& C4IW_QP_ATTR_ENABLE_RDMA_WRITE
)
1371 newattr
.enable_rdma_write
= attrs
->enable_rdma_write
;
1372 if (mask
& C4IW_QP_ATTR_ENABLE_RDMA_BIND
)
1373 newattr
.enable_bind
= attrs
->enable_bind
;
1374 if (mask
& C4IW_QP_ATTR_MAX_ORD
) {
1375 if (attrs
->max_ord
> c4iw_max_read_depth
) {
1379 newattr
.max_ord
= attrs
->max_ord
;
1381 if (mask
& C4IW_QP_ATTR_MAX_IRD
) {
1382 if (attrs
->max_ird
> cur_max_read_depth(rhp
)) {
1386 newattr
.max_ird
= attrs
->max_ird
;
1388 qhp
->attr
= newattr
;
1391 if (mask
& C4IW_QP_ATTR_SQ_DB
) {
1392 ret
= ring_kernel_sq_db(qhp
, attrs
->sq_db_inc
);
1395 if (mask
& C4IW_QP_ATTR_RQ_DB
) {
1396 ret
= ring_kernel_rq_db(qhp
, attrs
->rq_db_inc
);
1400 if (!(mask
& C4IW_QP_ATTR_NEXT_STATE
))
1402 if (qhp
->attr
.state
== attrs
->next_state
)
1405 switch (qhp
->attr
.state
) {
1406 case C4IW_QP_STATE_IDLE
:
1407 switch (attrs
->next_state
) {
1408 case C4IW_QP_STATE_RTS
:
1409 if (!(mask
& C4IW_QP_ATTR_LLP_STREAM_HANDLE
)) {
1413 if (!(mask
& C4IW_QP_ATTR_MPA_ATTR
)) {
1417 qhp
->attr
.mpa_attr
= attrs
->mpa_attr
;
1418 qhp
->attr
.llp_stream_handle
= attrs
->llp_stream_handle
;
1419 qhp
->ep
= qhp
->attr
.llp_stream_handle
;
1420 set_state(qhp
, C4IW_QP_STATE_RTS
);
1423 * Ref the endpoint here and deref when we
1424 * disassociate the endpoint from the QP. This
1425 * happens in CLOSING->IDLE transition or *->ERROR
1428 c4iw_get_ep(&qhp
->ep
->com
);
1429 ret
= rdma_init(rhp
, qhp
);
1433 case C4IW_QP_STATE_ERROR
:
1434 set_state(qhp
, C4IW_QP_STATE_ERROR
);
1442 case C4IW_QP_STATE_RTS
:
1443 switch (attrs
->next_state
) {
1444 case C4IW_QP_STATE_CLOSING
:
1445 BUG_ON(atomic_read(&qhp
->ep
->com
.kref
.refcount
) < 2);
1446 t4_set_wq_in_error(&qhp
->wq
);
1447 set_state(qhp
, C4IW_QP_STATE_CLOSING
);
1452 c4iw_get_ep(&qhp
->ep
->com
);
1454 ret
= rdma_fini(rhp
, qhp
, ep
);
1458 case C4IW_QP_STATE_TERMINATE
:
1459 t4_set_wq_in_error(&qhp
->wq
);
1460 set_state(qhp
, C4IW_QP_STATE_TERMINATE
);
1461 qhp
->attr
.layer_etype
= attrs
->layer_etype
;
1462 qhp
->attr
.ecode
= attrs
->ecode
;
1465 c4iw_get_ep(&qhp
->ep
->com
);
1469 terminate
= qhp
->attr
.send_term
;
1470 ret
= rdma_fini(rhp
, qhp
, ep
);
1475 case C4IW_QP_STATE_ERROR
:
1476 t4_set_wq_in_error(&qhp
->wq
);
1477 set_state(qhp
, C4IW_QP_STATE_ERROR
);
1482 c4iw_get_ep(&qhp
->ep
->com
);
1491 case C4IW_QP_STATE_CLOSING
:
1496 switch (attrs
->next_state
) {
1497 case C4IW_QP_STATE_IDLE
:
1499 set_state(qhp
, C4IW_QP_STATE_IDLE
);
1500 qhp
->attr
.llp_stream_handle
= NULL
;
1501 c4iw_put_ep(&qhp
->ep
->com
);
1503 wake_up(&qhp
->wait
);
1505 case C4IW_QP_STATE_ERROR
:
1512 case C4IW_QP_STATE_ERROR
:
1513 if (attrs
->next_state
!= C4IW_QP_STATE_IDLE
) {
1517 if (!t4_sq_empty(&qhp
->wq
) || !t4_rq_empty(&qhp
->wq
)) {
1521 set_state(qhp
, C4IW_QP_STATE_IDLE
);
1523 case C4IW_QP_STATE_TERMINATE
:
1531 printk(KERN_ERR
"%s in a bad state %d\n",
1532 __func__
, qhp
->attr
.state
);
1539 PDBG("%s disassociating ep %p qpid 0x%x\n", __func__
, qhp
->ep
,
1542 /* disassociate the LLP connection */
1543 qhp
->attr
.llp_stream_handle
= NULL
;
1547 set_state(qhp
, C4IW_QP_STATE_ERROR
);
1552 wake_up(&qhp
->wait
);
1554 mutex_unlock(&qhp
->mutex
);
1557 post_terminate(qhp
, NULL
, internal
? GFP_ATOMIC
: GFP_KERNEL
);
1560 * If disconnect is 1, then we need to initiate a disconnect
1561 * on the EP. This can be a normal close (RTS->CLOSING) or
1562 * an abnormal close (RTS/CLOSING->ERROR).
1565 c4iw_ep_disconnect(ep
, abort
, internal
? GFP_ATOMIC
:
1567 c4iw_put_ep(&ep
->com
);
1571 * If free is 1, then we've disassociated the EP from the QP
1572 * and we need to dereference the EP.
1575 c4iw_put_ep(&ep
->com
);
1576 PDBG("%s exit state %d\n", __func__
, qhp
->attr
.state
);
1580 int c4iw_destroy_qp(struct ib_qp
*ib_qp
)
1582 struct c4iw_dev
*rhp
;
1583 struct c4iw_qp
*qhp
;
1584 struct c4iw_qp_attributes attrs
;
1585 struct c4iw_ucontext
*ucontext
;
1587 qhp
= to_c4iw_qp(ib_qp
);
1590 attrs
.next_state
= C4IW_QP_STATE_ERROR
;
1591 if (qhp
->attr
.state
== C4IW_QP_STATE_TERMINATE
)
1592 c4iw_modify_qp(rhp
, qhp
, C4IW_QP_ATTR_NEXT_STATE
, &attrs
, 1);
1594 c4iw_modify_qp(rhp
, qhp
, C4IW_QP_ATTR_NEXT_STATE
, &attrs
, 0);
1595 wait_event(qhp
->wait
, !qhp
->ep
);
1597 remove_handle(rhp
, &rhp
->qpidr
, qhp
->wq
.sq
.qid
);
1598 atomic_dec(&qhp
->refcnt
);
1599 wait_event(qhp
->wait
, !atomic_read(&qhp
->refcnt
));
1601 spin_lock_irq(&rhp
->lock
);
1602 if (!list_empty(&qhp
->db_fc_entry
))
1603 list_del_init(&qhp
->db_fc_entry
);
1604 spin_unlock_irq(&rhp
->lock
);
1605 free_ird(rhp
, qhp
->attr
.max_ird
);
1607 ucontext
= ib_qp
->uobject
?
1608 to_c4iw_ucontext(ib_qp
->uobject
->context
) : NULL
;
1609 destroy_qp(&rhp
->rdev
, &qhp
->wq
,
1610 ucontext
? &ucontext
->uctx
: &rhp
->rdev
.uctx
);
1612 PDBG("%s ib_qp %p qpid 0x%0x\n", __func__
, ib_qp
, qhp
->wq
.sq
.qid
);
1617 struct ib_qp
*c4iw_create_qp(struct ib_pd
*pd
, struct ib_qp_init_attr
*attrs
,
1618 struct ib_udata
*udata
)
1620 struct c4iw_dev
*rhp
;
1621 struct c4iw_qp
*qhp
;
1622 struct c4iw_pd
*php
;
1623 struct c4iw_cq
*schp
;
1624 struct c4iw_cq
*rchp
;
1625 struct c4iw_create_qp_resp uresp
;
1626 unsigned int sqsize
, rqsize
;
1627 struct c4iw_ucontext
*ucontext
;
1629 struct c4iw_mm_entry
*mm1
, *mm2
, *mm3
, *mm4
, *mm5
= NULL
;
1631 PDBG("%s ib_pd %p\n", __func__
, pd
);
1633 if (attrs
->qp_type
!= IB_QPT_RC
)
1634 return ERR_PTR(-EINVAL
);
1636 php
= to_c4iw_pd(pd
);
1638 schp
= get_chp(rhp
, ((struct c4iw_cq
*)attrs
->send_cq
)->cq
.cqid
);
1639 rchp
= get_chp(rhp
, ((struct c4iw_cq
*)attrs
->recv_cq
)->cq
.cqid
);
1641 return ERR_PTR(-EINVAL
);
1643 if (attrs
->cap
.max_inline_data
> T4_MAX_SEND_INLINE
)
1644 return ERR_PTR(-EINVAL
);
1646 if (attrs
->cap
.max_recv_wr
> rhp
->rdev
.hw_queue
.t4_max_rq_size
)
1647 return ERR_PTR(-E2BIG
);
1648 rqsize
= attrs
->cap
.max_recv_wr
+ 1;
1652 if (attrs
->cap
.max_send_wr
> rhp
->rdev
.hw_queue
.t4_max_sq_size
)
1653 return ERR_PTR(-E2BIG
);
1654 sqsize
= attrs
->cap
.max_send_wr
+ 1;
1658 ucontext
= pd
->uobject
? to_c4iw_ucontext(pd
->uobject
->context
) : NULL
;
1660 qhp
= kzalloc(sizeof(*qhp
), GFP_KERNEL
);
1662 return ERR_PTR(-ENOMEM
);
1663 qhp
->wq
.sq
.size
= sqsize
;
1664 qhp
->wq
.sq
.memsize
=
1665 (sqsize
+ rhp
->rdev
.hw_queue
.t4_eq_status_entries
) *
1666 sizeof(*qhp
->wq
.sq
.queue
) + 16 * sizeof(__be64
);
1667 qhp
->wq
.sq
.flush_cidx
= -1;
1668 qhp
->wq
.rq
.size
= rqsize
;
1669 qhp
->wq
.rq
.memsize
=
1670 (rqsize
+ rhp
->rdev
.hw_queue
.t4_eq_status_entries
) *
1671 sizeof(*qhp
->wq
.rq
.queue
);
1674 qhp
->wq
.sq
.memsize
= roundup(qhp
->wq
.sq
.memsize
, PAGE_SIZE
);
1675 qhp
->wq
.rq
.memsize
= roundup(qhp
->wq
.rq
.memsize
, PAGE_SIZE
);
1678 ret
= create_qp(&rhp
->rdev
, &qhp
->wq
, &schp
->cq
, &rchp
->cq
,
1679 ucontext
? &ucontext
->uctx
: &rhp
->rdev
.uctx
);
1683 attrs
->cap
.max_recv_wr
= rqsize
- 1;
1684 attrs
->cap
.max_send_wr
= sqsize
- 1;
1685 attrs
->cap
.max_inline_data
= T4_MAX_SEND_INLINE
;
1688 qhp
->attr
.pd
= php
->pdid
;
1689 qhp
->attr
.scq
= ((struct c4iw_cq
*) attrs
->send_cq
)->cq
.cqid
;
1690 qhp
->attr
.rcq
= ((struct c4iw_cq
*) attrs
->recv_cq
)->cq
.cqid
;
1691 qhp
->attr
.sq_num_entries
= attrs
->cap
.max_send_wr
;
1692 qhp
->attr
.rq_num_entries
= attrs
->cap
.max_recv_wr
;
1693 qhp
->attr
.sq_max_sges
= attrs
->cap
.max_send_sge
;
1694 qhp
->attr
.sq_max_sges_rdma_write
= attrs
->cap
.max_send_sge
;
1695 qhp
->attr
.rq_max_sges
= attrs
->cap
.max_recv_sge
;
1696 qhp
->attr
.state
= C4IW_QP_STATE_IDLE
;
1697 qhp
->attr
.next_state
= C4IW_QP_STATE_IDLE
;
1698 qhp
->attr
.enable_rdma_read
= 1;
1699 qhp
->attr
.enable_rdma_write
= 1;
1700 qhp
->attr
.enable_bind
= 1;
1701 qhp
->attr
.max_ord
= 0;
1702 qhp
->attr
.max_ird
= 0;
1703 qhp
->sq_sig_all
= attrs
->sq_sig_type
== IB_SIGNAL_ALL_WR
;
1704 spin_lock_init(&qhp
->lock
);
1705 mutex_init(&qhp
->mutex
);
1706 init_waitqueue_head(&qhp
->wait
);
1707 atomic_set(&qhp
->refcnt
, 1);
1709 ret
= insert_handle(rhp
, &rhp
->qpidr
, qhp
, qhp
->wq
.sq
.qid
);
1714 mm1
= kmalloc(sizeof *mm1
, GFP_KERNEL
);
1719 mm2
= kmalloc(sizeof *mm2
, GFP_KERNEL
);
1724 mm3
= kmalloc(sizeof *mm3
, GFP_KERNEL
);
1729 mm4
= kmalloc(sizeof *mm4
, GFP_KERNEL
);
1734 if (t4_sq_onchip(&qhp
->wq
.sq
)) {
1735 mm5
= kmalloc(sizeof *mm5
, GFP_KERNEL
);
1740 uresp
.flags
= C4IW_QPF_ONCHIP
;
1743 uresp
.qid_mask
= rhp
->rdev
.qpmask
;
1744 uresp
.sqid
= qhp
->wq
.sq
.qid
;
1745 uresp
.sq_size
= qhp
->wq
.sq
.size
;
1746 uresp
.sq_memsize
= qhp
->wq
.sq
.memsize
;
1747 uresp
.rqid
= qhp
->wq
.rq
.qid
;
1748 uresp
.rq_size
= qhp
->wq
.rq
.size
;
1749 uresp
.rq_memsize
= qhp
->wq
.rq
.memsize
;
1750 spin_lock(&ucontext
->mmap_lock
);
1752 uresp
.ma_sync_key
= ucontext
->key
;
1753 ucontext
->key
+= PAGE_SIZE
;
1755 uresp
.ma_sync_key
= 0;
1757 uresp
.sq_key
= ucontext
->key
;
1758 ucontext
->key
+= PAGE_SIZE
;
1759 uresp
.rq_key
= ucontext
->key
;
1760 ucontext
->key
+= PAGE_SIZE
;
1761 uresp
.sq_db_gts_key
= ucontext
->key
;
1762 ucontext
->key
+= PAGE_SIZE
;
1763 uresp
.rq_db_gts_key
= ucontext
->key
;
1764 ucontext
->key
+= PAGE_SIZE
;
1765 spin_unlock(&ucontext
->mmap_lock
);
1766 ret
= ib_copy_to_udata(udata
, &uresp
, sizeof uresp
);
1769 mm1
->key
= uresp
.sq_key
;
1770 mm1
->addr
= qhp
->wq
.sq
.phys_addr
;
1771 mm1
->len
= PAGE_ALIGN(qhp
->wq
.sq
.memsize
);
1772 insert_mmap(ucontext
, mm1
);
1773 mm2
->key
= uresp
.rq_key
;
1774 mm2
->addr
= virt_to_phys(qhp
->wq
.rq
.queue
);
1775 mm2
->len
= PAGE_ALIGN(qhp
->wq
.rq
.memsize
);
1776 insert_mmap(ucontext
, mm2
);
1777 mm3
->key
= uresp
.sq_db_gts_key
;
1778 mm3
->addr
= (__force
unsigned long)qhp
->wq
.sq
.bar2_pa
;
1779 mm3
->len
= PAGE_SIZE
;
1780 insert_mmap(ucontext
, mm3
);
1781 mm4
->key
= uresp
.rq_db_gts_key
;
1782 mm4
->addr
= (__force
unsigned long)qhp
->wq
.rq
.bar2_pa
;
1783 mm4
->len
= PAGE_SIZE
;
1784 insert_mmap(ucontext
, mm4
);
1786 mm5
->key
= uresp
.ma_sync_key
;
1787 mm5
->addr
= (pci_resource_start(rhp
->rdev
.lldi
.pdev
, 0)
1788 + PCIE_MA_SYNC_A
) & PAGE_MASK
;
1789 mm5
->len
= PAGE_SIZE
;
1790 insert_mmap(ucontext
, mm5
);
1793 qhp
->ibqp
.qp_num
= qhp
->wq
.sq
.qid
;
1794 init_timer(&(qhp
->timer
));
1795 INIT_LIST_HEAD(&qhp
->db_fc_entry
);
1796 PDBG("%s sq id %u size %u memsize %zu num_entries %u "
1797 "rq id %u size %u memsize %zu num_entries %u\n", __func__
,
1798 qhp
->wq
.sq
.qid
, qhp
->wq
.sq
.size
, qhp
->wq
.sq
.memsize
,
1799 attrs
->cap
.max_send_wr
, qhp
->wq
.rq
.qid
, qhp
->wq
.rq
.size
,
1800 qhp
->wq
.rq
.memsize
, attrs
->cap
.max_recv_wr
);
1813 remove_handle(rhp
, &rhp
->qpidr
, qhp
->wq
.sq
.qid
);
1815 destroy_qp(&rhp
->rdev
, &qhp
->wq
,
1816 ucontext
? &ucontext
->uctx
: &rhp
->rdev
.uctx
);
1819 return ERR_PTR(ret
);
1822 int c4iw_ib_modify_qp(struct ib_qp
*ibqp
, struct ib_qp_attr
*attr
,
1823 int attr_mask
, struct ib_udata
*udata
)
1825 struct c4iw_dev
*rhp
;
1826 struct c4iw_qp
*qhp
;
1827 enum c4iw_qp_attr_mask mask
= 0;
1828 struct c4iw_qp_attributes attrs
;
1830 PDBG("%s ib_qp %p\n", __func__
, ibqp
);
1832 /* iwarp does not support the RTR state */
1833 if ((attr_mask
& IB_QP_STATE
) && (attr
->qp_state
== IB_QPS_RTR
))
1834 attr_mask
&= ~IB_QP_STATE
;
1836 /* Make sure we still have something left to do */
1840 memset(&attrs
, 0, sizeof attrs
);
1841 qhp
= to_c4iw_qp(ibqp
);
1844 attrs
.next_state
= c4iw_convert_state(attr
->qp_state
);
1845 attrs
.enable_rdma_read
= (attr
->qp_access_flags
&
1846 IB_ACCESS_REMOTE_READ
) ? 1 : 0;
1847 attrs
.enable_rdma_write
= (attr
->qp_access_flags
&
1848 IB_ACCESS_REMOTE_WRITE
) ? 1 : 0;
1849 attrs
.enable_bind
= (attr
->qp_access_flags
& IB_ACCESS_MW_BIND
) ? 1 : 0;
1852 mask
|= (attr_mask
& IB_QP_STATE
) ? C4IW_QP_ATTR_NEXT_STATE
: 0;
1853 mask
|= (attr_mask
& IB_QP_ACCESS_FLAGS
) ?
1854 (C4IW_QP_ATTR_ENABLE_RDMA_READ
|
1855 C4IW_QP_ATTR_ENABLE_RDMA_WRITE
|
1856 C4IW_QP_ATTR_ENABLE_RDMA_BIND
) : 0;
1859 * Use SQ_PSN and RQ_PSN to pass in IDX_INC values for
1860 * ringing the queue db when we're in DB_FULL mode.
1861 * Only allow this on T4 devices.
1863 attrs
.sq_db_inc
= attr
->sq_psn
;
1864 attrs
.rq_db_inc
= attr
->rq_psn
;
1865 mask
|= (attr_mask
& IB_QP_SQ_PSN
) ? C4IW_QP_ATTR_SQ_DB
: 0;
1866 mask
|= (attr_mask
& IB_QP_RQ_PSN
) ? C4IW_QP_ATTR_RQ_DB
: 0;
1867 if (!is_t4(to_c4iw_qp(ibqp
)->rhp
->rdev
.lldi
.adapter_type
) &&
1868 (mask
& (C4IW_QP_ATTR_SQ_DB
|C4IW_QP_ATTR_RQ_DB
)))
1871 return c4iw_modify_qp(rhp
, qhp
, mask
, &attrs
, 0);
1874 struct ib_qp
*c4iw_get_qp(struct ib_device
*dev
, int qpn
)
1876 PDBG("%s ib_dev %p qpn 0x%x\n", __func__
, dev
, qpn
);
1877 return (struct ib_qp
*)get_qhp(to_c4iw_dev(dev
), qpn
);
1880 int c4iw_ib_query_qp(struct ib_qp
*ibqp
, struct ib_qp_attr
*attr
,
1881 int attr_mask
, struct ib_qp_init_attr
*init_attr
)
1883 struct c4iw_qp
*qhp
= to_c4iw_qp(ibqp
);
1885 memset(attr
, 0, sizeof *attr
);
1886 memset(init_attr
, 0, sizeof *init_attr
);
1887 attr
->qp_state
= to_ib_qp_state(qhp
->attr
.state
);
1888 init_attr
->cap
.max_send_wr
= qhp
->attr
.sq_num_entries
;
1889 init_attr
->cap
.max_recv_wr
= qhp
->attr
.rq_num_entries
;
1890 init_attr
->cap
.max_send_sge
= qhp
->attr
.sq_max_sges
;
1891 init_attr
->cap
.max_recv_sge
= qhp
->attr
.sq_max_sges
;
1892 init_attr
->cap
.max_inline_data
= T4_MAX_SEND_INLINE
;
1893 init_attr
->sq_sig_type
= qhp
->sq_sig_all
? IB_SIGNAL_ALL_WR
: 0;