blob: fefc5fed17782ed094f853b6d9b871d58afaaad1 [file] [log] [blame]
Steve Wisecfdda9d2010-04-21 15:30:06 -07001/*
2 * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
Paul Gortmakere4dd23d2011-05-27 15:35:46 -040032
33#include <linux/module.h>
34
Steve Wisecfdda9d2010-04-21 15:30:06 -070035#include "iw_cxgb4.h"
36
Vipul Pandya2c974782012-05-18 15:29:28 +053037static 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
Steve Wisea9c77192011-03-11 22:30:11 +000041static int ocqp_support = 1;
Steve Wisec6d7b262010-09-13 11:23:57 -050042module_param(ocqp_support, int, 0644);
Steve Wisea9c77192011-03-11 22:30:11 +000043MODULE_PARM_DESC(ocqp_support, "Support on-chip SQs (default=1)");
Steve Wisec6d7b262010-09-13 11:23:57 -050044
Vipul Pandya3cbdb922013-03-14 05:08:59 +000045int db_fc_threshold = 1000;
Vipul Pandya422eea02012-05-18 15:29:30 +053046module_param(db_fc_threshold, int, 0644);
Vipul Pandya3cbdb922013-03-14 05:08:59 +000047MODULE_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)");
Vipul Pandya422eea02012-05-18 15:29:30 +053056
Vipul Pandya42b6a942013-03-14 05:09:01 +000057static 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
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +053061static 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
Steve Wise2f5b48c2010-09-10 11:15:36 -050086static 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
Steve Wisec6d7b262010-09-13 11:23:57 -050094static 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{
Vipul Pandyaf079af72013-03-14 05:08:58 +0000115 if (!ocqp_support || !ocqp_supported(&rdev->lldi))
Steve Wisec6d7b262010-09-13 11:23:57 -0500116 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
Thadeu Lima de Souza Cascardo5b0c2752013-04-01 20:13:39 +0000139static 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
Steve Wisecfdda9d2010-04-21 15:30:06 -0700149static 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,
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000158 dma_unmap_addr(&wq->rq, mapping));
Steve Wisec6d7b262010-09-13 11:23:57 -0500159 dealloc_sq(rdev, &wq->sq);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700160 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
Hariprasad S74217d42015-06-09 18:23:12 +0530168/*
169 * Determine the BAR2 virtual address and qid. If pbar2_pa is not NULL,
170 * then this is a user mapping so compute the page-aligned physical address
171 * for mapping.
172 */
173void __iomem *c4iw_bar2_addrs(struct c4iw_rdev *rdev, unsigned int qid,
174 enum cxgb4_bar2_qtype qtype,
175 unsigned int *pbar2_qid, u64 *pbar2_pa)
176{
177 u64 bar2_qoffset;
178 int ret;
179
180 ret = cxgb4_bar2_sge_qregs(rdev->lldi.ports[0], qid, qtype,
181 pbar2_pa ? 1 : 0,
182 &bar2_qoffset, pbar2_qid);
183 if (ret)
184 return NULL;
185
186 if (pbar2_pa)
187 *pbar2_pa = (rdev->bar2_pa + bar2_qoffset) & PAGE_MASK;
Hariprasad S32cc92c2016-04-05 10:23:48 +0530188
189 if (is_t4(rdev->lldi.adapter_type))
190 return NULL;
191
Hariprasad S74217d42015-06-09 18:23:12 +0530192 return rdev->bar2_kva + bar2_qoffset;
193}
194
Steve Wisecfdda9d2010-04-21 15:30:06 -0700195static int create_qp(struct c4iw_rdev *rdev, struct t4_wq *wq,
196 struct t4_cq *rcq, struct t4_cq *scq,
Steve Wise7088a9b2017-09-26 13:11:36 -0700197 struct c4iw_dev_ucontext *uctx,
198 struct c4iw_wr_wait *wr_waitp)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700199{
200 int user = (uctx != &rdev->uctx);
201 struct fw_ri_res_wr *res_wr;
202 struct fw_ri_res *res;
203 int wr_len;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700204 struct sk_buff *skb;
Vipul Pandya9919d5b2013-03-14 05:09:04 +0000205 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700206 int eqsize;
207
208 wq->sq.qid = c4iw_get_qpid(rdev, uctx);
209 if (!wq->sq.qid)
210 return -ENOMEM;
211
212 wq->rq.qid = c4iw_get_qpid(rdev, uctx);
Emil Goodec079c282012-08-19 17:59:40 +0000213 if (!wq->rq.qid) {
214 ret = -ENOMEM;
215 goto free_sq_qid;
216 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700217
218 if (!user) {
219 wq->sq.sw_sq = kzalloc(wq->sq.size * sizeof *wq->sq.sw_sq,
220 GFP_KERNEL);
Emil Goodec079c282012-08-19 17:59:40 +0000221 if (!wq->sq.sw_sq) {
222 ret = -ENOMEM;
223 goto free_rq_qid;
224 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700225
226 wq->rq.sw_rq = kzalloc(wq->rq.size * sizeof *wq->rq.sw_rq,
227 GFP_KERNEL);
Emil Goodec079c282012-08-19 17:59:40 +0000228 if (!wq->rq.sw_rq) {
229 ret = -ENOMEM;
230 goto free_sw_sq;
231 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700232 }
233
234 /*
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530235 * RQT must be a power of 2 and at least 16 deep.
Steve Wisecfdda9d2010-04-21 15:30:06 -0700236 */
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530237 wq->rq.rqt_size = roundup_pow_of_two(max_t(u16, wq->rq.size, 16));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700238 wq->rq.rqt_hwaddr = c4iw_rqtpool_alloc(rdev, wq->rq.rqt_size);
Emil Goodec079c282012-08-19 17:59:40 +0000239 if (!wq->rq.rqt_hwaddr) {
240 ret = -ENOMEM;
241 goto free_sw_rq;
242 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700243
Thadeu Lima de Souza Cascardo5b0c2752013-04-01 20:13:39 +0000244 ret = alloc_sq(rdev, &wq->sq, user);
245 if (ret)
246 goto free_hwaddr;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700247 memset(wq->sq.queue, 0, wq->sq.memsize);
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000248 dma_unmap_addr_set(&wq->sq, mapping, wq->sq.dma_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700249
250 wq->rq.queue = dma_alloc_coherent(&(rdev->lldi.pdev->dev),
251 wq->rq.memsize, &(wq->rq.dma_addr),
252 GFP_KERNEL);
Wei Yongjun55e57a72013-03-15 09:42:12 +0000253 if (!wq->rq.queue) {
254 ret = -ENOMEM;
Emil Goodec079c282012-08-19 17:59:40 +0000255 goto free_sq;
Wei Yongjun55e57a72013-03-15 09:42:12 +0000256 }
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530257 pr_debug("sq base va 0x%p pa 0x%llx rq base va 0x%p pa 0x%llx\n",
258 wq->sq.queue,
Joe Perchesa9a42882017-02-09 14:23:51 -0800259 (unsigned long long)virt_to_phys(wq->sq.queue),
260 wq->rq.queue,
261 (unsigned long long)virt_to_phys(wq->rq.queue));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700262 memset(wq->rq.queue, 0, wq->rq.memsize);
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000263 dma_unmap_addr_set(&wq->rq, mapping, wq->rq.dma_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700264
265 wq->db = rdev->lldi.db_reg;
Steve Wisefa658a92014-04-09 09:38:25 -0500266
Hariprasad S74217d42015-06-09 18:23:12 +0530267 wq->sq.bar2_va = c4iw_bar2_addrs(rdev, wq->sq.qid, T4_BAR2_QTYPE_EGRESS,
268 &wq->sq.bar2_qid,
269 user ? &wq->sq.bar2_pa : NULL);
270 wq->rq.bar2_va = c4iw_bar2_addrs(rdev, wq->rq.qid, T4_BAR2_QTYPE_EGRESS,
271 &wq->rq.bar2_qid,
272 user ? &wq->rq.bar2_pa : NULL);
273
274 /*
275 * User mode must have bar2 access.
276 */
Hariprasad S32cc92c2016-04-05 10:23:48 +0530277 if (user && (!wq->sq.bar2_pa || !wq->rq.bar2_pa)) {
Joe Perches700456b2017-02-09 14:23:50 -0800278 pr_warn("%s: sqid %u or rqid %u not in BAR2 range\n",
Hariprasad S74217d42015-06-09 18:23:12 +0530279 pci_name(rdev->lldi.pdev), wq->sq.qid, wq->rq.qid);
280 goto free_dma;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700281 }
Hariprasad S74217d42015-06-09 18:23:12 +0530282
Steve Wisecfdda9d2010-04-21 15:30:06 -0700283 wq->rdev = rdev;
284 wq->rq.msn = 1;
285
286 /* build fw_ri_res_wr */
287 wr_len = sizeof *res_wr + 2 * sizeof *res;
288
David Rientjesd3c814e2010-07-21 02:44:56 +0000289 skb = alloc_skb(wr_len, GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700290 if (!skb) {
291 ret = -ENOMEM;
Emil Goodec079c282012-08-19 17:59:40 +0000292 goto free_dma;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700293 }
294 set_wr_txq(skb, CPL_PRIORITY_CONTROL, 0);
295
yuan linyude77b962017-06-18 22:48:17 +0800296 res_wr = __skb_put_zero(skb, wr_len);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700297 res_wr->op_nres = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530298 FW_WR_OP_V(FW_RI_RES_WR) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530299 FW_RI_RES_WR_NRES_V(2) |
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530300 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700301 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
Steve Wise7088a9b2017-09-26 13:11:36 -0700302 res_wr->cookie = (uintptr_t)wr_waitp;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700303 res = res_wr->res;
304 res->u.sqrq.restype = FW_RI_RES_TYPE_SQ;
305 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
306
307 /*
308 * eqsize is the number of 64B entries plus the status page size.
309 */
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530310 eqsize = wq->sq.size * T4_SQ_NUM_SLOTS +
311 rdev->hw_queue.t4_eq_status_entries;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700312
313 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530314 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
315 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
316 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
317 (t4_sq_onchip(&wq->sq) ? FW_RI_RES_WR_ONCHIP_F : 0) |
318 FW_RI_RES_WR_IQID_V(scq->cqid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700319 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530320 FW_RI_RES_WR_DCAEN_V(0) |
321 FW_RI_RES_WR_DCACPU_V(0) |
322 FW_RI_RES_WR_FBMIN_V(2) |
Steve Wiseb414fa02016-12-15 08:09:35 -0800323 (t4_sq_onchip(&wq->sq) ? FW_RI_RES_WR_FBMAX_V(2) :
324 FW_RI_RES_WR_FBMAX_V(3)) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530325 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
326 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
327 FW_RI_RES_WR_EQSIZE_V(eqsize));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700328 res->u.sqrq.eqid = cpu_to_be32(wq->sq.qid);
329 res->u.sqrq.eqaddr = cpu_to_be64(wq->sq.dma_addr);
330 res++;
331 res->u.sqrq.restype = FW_RI_RES_TYPE_RQ;
332 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
333
334 /*
335 * eqsize is the number of 64B entries plus the status page size.
336 */
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530337 eqsize = wq->rq.size * T4_RQ_NUM_SLOTS +
338 rdev->hw_queue.t4_eq_status_entries;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700339 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530340 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
341 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
342 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
343 FW_RI_RES_WR_IQID_V(rcq->cqid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700344 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530345 FW_RI_RES_WR_DCAEN_V(0) |
346 FW_RI_RES_WR_DCACPU_V(0) |
347 FW_RI_RES_WR_FBMIN_V(2) |
Steve Wiseb414fa02016-12-15 08:09:35 -0800348 FW_RI_RES_WR_FBMAX_V(3) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530349 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
350 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
351 FW_RI_RES_WR_EQSIZE_V(eqsize));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700352 res->u.sqrq.eqid = cpu_to_be32(wq->rq.qid);
353 res->u.sqrq.eqaddr = cpu_to_be64(wq->rq.dma_addr);
354
Steve Wise7088a9b2017-09-26 13:11:36 -0700355 c4iw_init_wr_wait(wr_waitp);
Steve Wise2015f262017-09-26 13:13:17 -0700356 ret = c4iw_ref_send_wait(rdev, skb, wr_waitp, 0, wq->sq.qid, __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700357 if (ret)
Emil Goodec079c282012-08-19 17:59:40 +0000358 goto free_dma;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700359
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530360 pr_debug("sqid 0x%x rqid 0x%x kdb 0x%p sq_bar2_addr %p rq_bar2_addr %p\n",
361 wq->sq.qid, wq->rq.qid, wq->db,
Joe Perchesa9a42882017-02-09 14:23:51 -0800362 wq->sq.bar2_va, wq->rq.bar2_va);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700363
364 return 0;
Emil Goodec079c282012-08-19 17:59:40 +0000365free_dma:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700366 dma_free_coherent(&(rdev->lldi.pdev->dev),
367 wq->rq.memsize, wq->rq.queue,
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000368 dma_unmap_addr(&wq->rq, mapping));
Emil Goodec079c282012-08-19 17:59:40 +0000369free_sq:
Steve Wisec6d7b262010-09-13 11:23:57 -0500370 dealloc_sq(rdev, &wq->sq);
Emil Goodec079c282012-08-19 17:59:40 +0000371free_hwaddr:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700372 c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
Emil Goodec079c282012-08-19 17:59:40 +0000373free_sw_rq:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700374 kfree(wq->rq.sw_rq);
Emil Goodec079c282012-08-19 17:59:40 +0000375free_sw_sq:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700376 kfree(wq->sq.sw_sq);
Emil Goodec079c282012-08-19 17:59:40 +0000377free_rq_qid:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700378 c4iw_put_qpid(rdev, wq->rq.qid, uctx);
Emil Goodec079c282012-08-19 17:59:40 +0000379free_sq_qid:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700380 c4iw_put_qpid(rdev, wq->sq.qid, uctx);
Emil Goodec079c282012-08-19 17:59:40 +0000381 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700382}
383
Steve Wised37ac312010-06-10 19:03:00 +0000384static int build_immd(struct t4_sq *sq, struct fw_ri_immd *immdp,
385 struct ib_send_wr *wr, int max, u32 *plenp)
386{
387 u8 *dstp, *srcp;
388 u32 plen = 0;
389 int i;
390 int rem, len;
391
392 dstp = (u8 *)immdp->data;
393 for (i = 0; i < wr->num_sge; i++) {
394 if ((plen + wr->sg_list[i].length) > max)
395 return -EMSGSIZE;
396 srcp = (u8 *)(unsigned long)wr->sg_list[i].addr;
397 plen += wr->sg_list[i].length;
398 rem = wr->sg_list[i].length;
399 while (rem) {
400 if (dstp == (u8 *)&sq->queue[sq->size])
401 dstp = (u8 *)sq->queue;
402 if (rem <= (u8 *)&sq->queue[sq->size] - dstp)
403 len = rem;
404 else
405 len = (u8 *)&sq->queue[sq->size] - dstp;
406 memcpy(dstp, srcp, len);
407 dstp += len;
408 srcp += len;
409 rem -= len;
410 }
411 }
Steve Wise13fecb82010-09-10 11:14:53 -0500412 len = roundup(plen + sizeof *immdp, 16) - (plen + sizeof *immdp);
413 if (len)
414 memset(dstp, 0, len);
Steve Wised37ac312010-06-10 19:03:00 +0000415 immdp->op = FW_RI_DATA_IMMD;
416 immdp->r1 = 0;
417 immdp->r2 = 0;
418 immdp->immdlen = cpu_to_be32(plen);
419 *plenp = plen;
420 return 0;
421}
422
423static 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)
426
Steve Wisecfdda9d2010-04-21 15:30:06 -0700427{
428 int i;
Steve Wised37ac312010-06-10 19:03:00 +0000429 u32 plen = 0;
430 __be64 *flitp = (__be64 *)isglp->sge;
431
432 for (i = 0; i < num_sge; i++) {
433 if ((plen + sg_list[i].length) < plen)
434 return -EMSGSIZE;
435 plen += sg_list[i].length;
436 *flitp = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
437 sg_list[i].length);
438 if (++flitp == queue_end)
439 flitp = queue_start;
440 *flitp = cpu_to_be64(sg_list[i].addr);
441 if (++flitp == queue_end)
442 flitp = queue_start;
443 }
Steve Wise13fecb82010-09-10 11:14:53 -0500444 *flitp = (__force __be64)0;
Steve Wised37ac312010-06-10 19:03:00 +0000445 isglp->op = FW_RI_DATA_ISGL;
446 isglp->r1 = 0;
447 isglp->nsge = cpu_to_be16(num_sge);
448 isglp->r2 = 0;
449 if (plenp)
450 *plenp = plen;
451 return 0;
452}
453
454static int build_rdma_send(struct t4_sq *sq, union t4_wr *wqe,
455 struct ib_send_wr *wr, u8 *len16)
456{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700457 u32 plen;
458 int size;
Steve Wised37ac312010-06-10 19:03:00 +0000459 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700460
461 if (wr->num_sge > T4_MAX_SEND_SGE)
462 return -EINVAL;
463 switch (wr->opcode) {
464 case IB_WR_SEND:
465 if (wr->send_flags & IB_SEND_SOLICITED)
466 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530467 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700468 else
469 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530470 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700471 wqe->send.stag_inv = 0;
472 break;
473 case IB_WR_SEND_WITH_INV:
474 if (wr->send_flags & IB_SEND_SOLICITED)
475 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530476 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE_INV));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700477 else
478 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530479 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_INV));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700480 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
481 break;
482
483 default:
484 return -EINVAL;
485 }
Steve Wisec3f98fa2014-04-09 09:38:27 -0500486 wqe->send.r3 = 0;
487 wqe->send.r4 = 0;
Steve Wised37ac312010-06-10 19:03:00 +0000488
Steve Wisecfdda9d2010-04-21 15:30:06 -0700489 plen = 0;
490 if (wr->num_sge) {
491 if (wr->send_flags & IB_SEND_INLINE) {
Steve Wised37ac312010-06-10 19:03:00 +0000492 ret = build_immd(sq, wqe->send.u.immd_src, wr,
493 T4_MAX_SEND_INLINE, &plen);
494 if (ret)
495 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700496 size = sizeof wqe->send + sizeof(struct fw_ri_immd) +
497 plen;
498 } else {
Steve Wised37ac312010-06-10 19:03:00 +0000499 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);
503 if (ret)
504 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700505 size = sizeof wqe->send + sizeof(struct fw_ri_isgl) +
506 wr->num_sge * sizeof(struct fw_ri_sge);
507 }
508 } else {
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);
Steve Wised37ac312010-06-10 19:03:00 +0000514 plen = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700515 }
516 *len16 = DIV_ROUND_UP(size, 16);
517 wqe->send.plen = cpu_to_be32(plen);
518 return 0;
519}
520
Steve Wised37ac312010-06-10 19:03:00 +0000521static int build_rdma_write(struct t4_sq *sq, union t4_wr *wqe,
522 struct ib_send_wr *wr, u8 *len16)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700523{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700524 u32 plen;
525 int size;
Steve Wised37ac312010-06-10 19:03:00 +0000526 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700527
Steve Wised37ac312010-06-10 19:03:00 +0000528 if (wr->num_sge > T4_MAX_SEND_SGE)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700529 return -EINVAL;
530 wqe->write.r2 = 0;
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100531 wqe->write.stag_sink = cpu_to_be32(rdma_wr(wr)->rkey);
532 wqe->write.to_sink = cpu_to_be64(rdma_wr(wr)->remote_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700533 if (wr->num_sge) {
534 if (wr->send_flags & IB_SEND_INLINE) {
Steve Wised37ac312010-06-10 19:03:00 +0000535 ret = build_immd(sq, wqe->write.u.immd_src, wr,
536 T4_MAX_WRITE_INLINE, &plen);
537 if (ret)
538 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700539 size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
540 plen;
541 } else {
Steve Wised37ac312010-06-10 19:03:00 +0000542 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);
546 if (ret)
547 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700548 size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
549 wr->num_sge * sizeof(struct fw_ri_sge);
550 }
551 } else {
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);
Steve Wised37ac312010-06-10 19:03:00 +0000557 plen = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700558 }
559 *len16 = DIV_ROUND_UP(size, 16);
560 wqe->write.plen = cpu_to_be32(plen);
561 return 0;
562}
563
564static int build_rdma_read(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
565{
566 if (wr->num_sge > 1)
567 return -EINVAL;
Ganesh Goudar720336c2017-06-21 19:55:43 +0530568 if (wr->num_sge && wr->sg_list[0].length) {
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100569 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
Steve Wisecfdda9d2010-04-21 15:30:06 -0700571 >> 32));
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100572 wqe->read.to_src_lo = cpu_to_be32((u32)rdma_wr(wr)->remote_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700573 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
576 >> 32));
577 wqe->read.to_sink_lo = cpu_to_be32((u32)(wr->sg_list[0].addr));
578 } else {
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);
583 wqe->read.plen = 0;
584 wqe->read.to_sink_hi = 0;
585 wqe->read.to_sink_lo = 0;
586 }
587 wqe->read.r2 = 0;
588 wqe->read.r5 = 0;
589 *len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
590 return 0;
591}
592
593static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe,
594 struct ib_recv_wr *wr, u8 *len16)
595{
Steve Wised37ac312010-06-10 19:03:00 +0000596 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700597
Steve Wised37ac312010-06-10 19:03:00 +0000598 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);
601 if (ret)
602 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700603 *len16 = DIV_ROUND_UP(sizeof wqe->recv +
604 wr->num_sge * sizeof(struct fw_ri_sge), 16);
605 return 0;
606}
607
Steve Wise49b53a92016-09-16 07:54:52 -0700608static void build_tpte_memreg(struct fw_ri_fr_nsmr_tpte_wr *fr,
609 struct ib_reg_wr *wr, struct c4iw_mr *mhp,
610 u8 *len16)
Sagi Grimberg8376b862015-10-13 19:11:30 +0300611{
Steve Wise49b53a92016-09-16 07:54:52 -0700612 __be64 *p = (__be64 *)fr->pbl;
613
614 fr->r2 = cpu_to_be32(0);
615 fr->stag = cpu_to_be32(mhp->ibmr.rkey);
616
617 fr->tpte.valid_to_pdid = cpu_to_be32(FW_RI_TPTE_VALID_F |
618 FW_RI_TPTE_STAGKEY_V((mhp->ibmr.rkey & FW_RI_TPTE_STAGKEY_M)) |
619 FW_RI_TPTE_STAGSTATE_V(1) |
620 FW_RI_TPTE_STAGTYPE_V(FW_RI_STAG_NSMR) |
621 FW_RI_TPTE_PDID_V(mhp->attr.pdid));
622 fr->tpte.locread_to_qpid = cpu_to_be32(
623 FW_RI_TPTE_PERM_V(c4iw_ib_to_tpt_access(wr->access)) |
624 FW_RI_TPTE_ADDRTYPE_V(FW_RI_VA_BASED_TO) |
625 FW_RI_TPTE_PS_V(ilog2(wr->mr->page_size) - 12));
626 fr->tpte.nosnoop_pbladdr = cpu_to_be32(FW_RI_TPTE_PBLADDR_V(
627 PBL_OFF(&mhp->rhp->rdev, mhp->attr.pbl_addr)>>3));
628 fr->tpte.dca_mwbcnt_pstag = cpu_to_be32(0);
629 fr->tpte.len_hi = cpu_to_be32(0);
630 fr->tpte.len_lo = cpu_to_be32(mhp->ibmr.length);
631 fr->tpte.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
632 fr->tpte.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova & 0xffffffff);
633
634 p[0] = cpu_to_be64((u64)mhp->mpl[0]);
635 p[1] = cpu_to_be64((u64)mhp->mpl[1]);
636
637 *len16 = DIV_ROUND_UP(sizeof(*fr), 16);
638}
639
640static int build_memreg(struct t4_sq *sq, union t4_wr *wqe,
641 struct ib_reg_wr *wr, struct c4iw_mr *mhp, u8 *len16,
642 bool dsgl_supported)
643{
Sagi Grimberg8376b862015-10-13 19:11:30 +0300644 struct fw_ri_immd *imdp;
645 __be64 *p;
646 int i;
647 int pbllen = roundup(mhp->mpl_len * sizeof(u64), 32);
648 int rem;
649
Hariprasad See30f7d2016-02-12 16:10:35 +0530650 if (mhp->mpl_len > t4_max_fr_depth(dsgl_supported && use_dsgl))
Sagi Grimberg8376b862015-10-13 19:11:30 +0300651 return -EINVAL;
652
653 wqe->fr.qpbinde_to_dcacpu = 0;
654 wqe->fr.pgsz_shift = ilog2(wr->mr->page_size) - 12;
655 wqe->fr.addr_type = FW_RI_VA_BASED_TO;
656 wqe->fr.mem_perms = c4iw_ib_to_tpt_access(wr->access);
657 wqe->fr.len_hi = 0;
658 wqe->fr.len_lo = cpu_to_be32(mhp->ibmr.length);
659 wqe->fr.stag = cpu_to_be32(wr->key);
660 wqe->fr.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
661 wqe->fr.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova &
662 0xffffffff);
663
Hariprasad See30f7d2016-02-12 16:10:35 +0530664 if (dsgl_supported && use_dsgl && (pbllen > max_fr_immd)) {
Sagi Grimberg8376b862015-10-13 19:11:30 +0300665 struct fw_ri_dsgl *sglp;
666
667 for (i = 0; i < mhp->mpl_len; i++)
668 mhp->mpl[i] = (__force u64)cpu_to_be64((u64)mhp->mpl[i]);
669
670 sglp = (struct fw_ri_dsgl *)(&wqe->fr + 1);
671 sglp->op = FW_RI_DATA_DSGL;
672 sglp->r1 = 0;
673 sglp->nsge = cpu_to_be16(1);
674 sglp->addr0 = cpu_to_be64(mhp->mpl_addr);
675 sglp->len0 = cpu_to_be32(pbllen);
676
677 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*sglp), 16);
678 } else {
679 imdp = (struct fw_ri_immd *)(&wqe->fr + 1);
680 imdp->op = FW_RI_DATA_IMMD;
681 imdp->r1 = 0;
682 imdp->r2 = 0;
683 imdp->immdlen = cpu_to_be32(pbllen);
684 p = (__be64 *)(imdp + 1);
685 rem = pbllen;
686 for (i = 0; i < mhp->mpl_len; i++) {
687 *p = cpu_to_be64((u64)mhp->mpl[i]);
688 rem -= sizeof(*p);
689 if (++p == (__be64 *)&sq->queue[sq->size])
690 p = (__be64 *)sq->queue;
691 }
Sagi Grimberg8376b862015-10-13 19:11:30 +0300692 while (rem) {
693 *p = 0;
694 rem -= sizeof(*p);
695 if (++p == (__be64 *)&sq->queue[sq->size])
696 p = (__be64 *)sq->queue;
697 }
698 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*imdp)
699 + pbllen, 16);
700 }
701 return 0;
702}
703
Steve Wise5c6b2aa2016-11-03 12:09:38 -0700704static int build_inv_stag(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700705{
706 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
707 wqe->inv.r2 = 0;
708 *len16 = DIV_ROUND_UP(sizeof wqe->inv, 16);
709 return 0;
710}
711
Steve Wisec12a67f2016-12-22 07:40:36 -0800712static void free_qp_work(struct work_struct *work)
713{
714 struct c4iw_ucontext *ucontext;
715 struct c4iw_qp *qhp;
716 struct c4iw_dev *rhp;
717
718 qhp = container_of(work, struct c4iw_qp, free_work);
719 ucontext = qhp->ucontext;
720 rhp = qhp->rhp;
721
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530722 pr_debug("qhp %p ucontext %p\n", qhp, ucontext);
Steve Wisec12a67f2016-12-22 07:40:36 -0800723 destroy_qp(&rhp->rdev, &qhp->wq,
724 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
725
726 if (ucontext)
727 c4iw_put_ucontext(ucontext);
Steve Wise2015f262017-09-26 13:13:17 -0700728 c4iw_put_wr_wait(qhp->wr_waitp);
Steve Wisec12a67f2016-12-22 07:40:36 -0800729 kfree(qhp);
730}
731
732static void queue_qp_free(struct kref *kref)
Steve Wisead61a4c2016-07-29 11:00:54 -0700733{
734 struct c4iw_qp *qhp;
735
736 qhp = container_of(kref, struct c4iw_qp, kref);
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530737 pr_debug("qhp %p\n", qhp);
Steve Wisec12a67f2016-12-22 07:40:36 -0800738 queue_work(qhp->rhp->rdev.free_workq, &qhp->free_work);
Steve Wisead61a4c2016-07-29 11:00:54 -0700739}
740
Steve Wisecfdda9d2010-04-21 15:30:06 -0700741void c4iw_qp_add_ref(struct ib_qp *qp)
742{
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530743 pr_debug("ib_qp %p\n", qp);
Steve Wisead61a4c2016-07-29 11:00:54 -0700744 kref_get(&to_c4iw_qp(qp)->kref);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700745}
746
747void c4iw_qp_rem_ref(struct ib_qp *qp)
748{
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530749 pr_debug("ib_qp %p\n", qp);
Steve Wisec12a67f2016-12-22 07:40:36 -0800750 kref_put(&to_c4iw_qp(qp)->kref, queue_qp_free);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700751}
752
Steve Wise05eb2382014-03-14 21:52:08 +0530753static void add_to_fc_list(struct list_head *head, struct list_head *entry)
754{
755 if (list_empty(entry))
756 list_add_tail(entry, head);
757}
758
759static int ring_kernel_sq_db(struct c4iw_qp *qhp, u16 inc)
760{
761 unsigned long flags;
762
763 spin_lock_irqsave(&qhp->rhp->lock, flags);
764 spin_lock(&qhp->lock);
Steve Wisefa658a92014-04-09 09:38:25 -0500765 if (qhp->rhp->db_state == NORMAL)
Hariprasad S963cab52015-09-23 17:19:27 +0530766 t4_ring_sq_db(&qhp->wq, inc, NULL);
Steve Wisefa658a92014-04-09 09:38:25 -0500767 else {
Steve Wise05eb2382014-03-14 21:52:08 +0530768 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
769 qhp->wq.sq.wq_pidx_inc += inc;
770 }
771 spin_unlock(&qhp->lock);
772 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
773 return 0;
774}
775
776static int ring_kernel_rq_db(struct c4iw_qp *qhp, u16 inc)
777{
778 unsigned long flags;
779
780 spin_lock_irqsave(&qhp->rhp->lock, flags);
781 spin_lock(&qhp->lock);
Steve Wisefa658a92014-04-09 09:38:25 -0500782 if (qhp->rhp->db_state == NORMAL)
Hariprasad S963cab52015-09-23 17:19:27 +0530783 t4_ring_rq_db(&qhp->wq, inc, NULL);
Steve Wisefa658a92014-04-09 09:38:25 -0500784 else {
Steve Wise05eb2382014-03-14 21:52:08 +0530785 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
786 qhp->wq.rq.wq_pidx_inc += inc;
787 }
788 spin_unlock(&qhp->lock);
789 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
790 return 0;
791}
792
Steve Wise4fe7c292016-12-22 07:04:59 -0800793static void complete_sq_drain_wr(struct c4iw_qp *qhp, struct ib_send_wr *wr)
794{
795 struct t4_cqe cqe = {};
796 struct c4iw_cq *schp;
797 unsigned long flag;
798 struct t4_cq *cq;
799
800 schp = to_c4iw_cq(qhp->ibqp.send_cq);
801 cq = &schp->cq;
802
803 cqe.u.drain_cookie = wr->wr_id;
804 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
805 CQE_OPCODE_V(C4IW_DRAIN_OPCODE) |
806 CQE_TYPE_V(1) |
807 CQE_SWCQE_V(1) |
808 CQE_QPID_V(qhp->wq.sq.qid));
809
810 spin_lock_irqsave(&schp->lock, flag);
811 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
812 cq->sw_queue[cq->sw_pidx] = cqe;
813 t4_swcq_produce(cq);
814 spin_unlock_irqrestore(&schp->lock, flag);
815
Steve Wisecbb40fa2017-11-09 07:14:43 -0800816 if (t4_clear_cq_armed(&schp->cq)) {
817 spin_lock_irqsave(&schp->comp_handler_lock, flag);
818 (*schp->ibcq.comp_handler)(&schp->ibcq,
819 schp->ibcq.cq_context);
820 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
821 }
Steve Wise4fe7c292016-12-22 07:04:59 -0800822}
823
824static void complete_rq_drain_wr(struct c4iw_qp *qhp, struct ib_recv_wr *wr)
825{
826 struct t4_cqe cqe = {};
827 struct c4iw_cq *rchp;
828 unsigned long flag;
829 struct t4_cq *cq;
830
831 rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
832 cq = &rchp->cq;
833
834 cqe.u.drain_cookie = wr->wr_id;
835 cqe.header = cpu_to_be32(CQE_STATUS_V(T4_ERR_SWFLUSH) |
836 CQE_OPCODE_V(C4IW_DRAIN_OPCODE) |
837 CQE_TYPE_V(0) |
838 CQE_SWCQE_V(1) |
839 CQE_QPID_V(qhp->wq.sq.qid));
840
841 spin_lock_irqsave(&rchp->lock, flag);
842 cqe.bits_type_ts = cpu_to_be64(CQE_GENBIT_V((u64)cq->gen));
843 cq->sw_queue[cq->sw_pidx] = cqe;
844 t4_swcq_produce(cq);
845 spin_unlock_irqrestore(&rchp->lock, flag);
846
Steve Wisecbb40fa2017-11-09 07:14:43 -0800847 if (t4_clear_cq_armed(&rchp->cq)) {
848 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
849 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
850 rchp->ibcq.cq_context);
851 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
852 }
Steve Wise4fe7c292016-12-22 07:04:59 -0800853}
854
Steve Wisecfdda9d2010-04-21 15:30:06 -0700855int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
856 struct ib_send_wr **bad_wr)
857{
858 int err = 0;
859 u8 len16 = 0;
860 enum fw_wr_opcodes fw_opcode = 0;
861 enum fw_ri_wr_flags fw_flags;
862 struct c4iw_qp *qhp;
Steve Wisefa658a92014-04-09 09:38:25 -0500863 union t4_wr *wqe = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700864 u32 num_wrs;
865 struct t4_swsqe *swsqe;
866 unsigned long flag;
867 u16 idx = 0;
868
869 qhp = to_c4iw_qp(ibqp);
870 spin_lock_irqsave(&qhp->lock, flag);
871 if (t4_wq_in_error(&qhp->wq)) {
872 spin_unlock_irqrestore(&qhp->lock, flag);
Steve Wise4fe7c292016-12-22 07:04:59 -0800873 complete_sq_drain_wr(qhp, wr);
874 return err;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700875 }
876 num_wrs = t4_sq_avail(&qhp->wq);
877 if (num_wrs == 0) {
878 spin_unlock_irqrestore(&qhp->lock, flag);
Steve Wise4ff522e2016-10-18 14:04:39 -0700879 *bad_wr = wr;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700880 return -ENOMEM;
881 }
882 while (wr) {
883 if (num_wrs == 0) {
884 err = -ENOMEM;
885 *bad_wr = wr;
886 break;
887 }
Steve Wised37ac312010-06-10 19:03:00 +0000888 wqe = (union t4_wr *)((u8 *)qhp->wq.sq.queue +
889 qhp->wq.sq.wq_pidx * T4_EQ_ENTRY_SIZE);
890
Steve Wisecfdda9d2010-04-21 15:30:06 -0700891 fw_flags = 0;
892 if (wr->send_flags & IB_SEND_SOLICITED)
893 fw_flags |= FW_RI_SOLICITED_EVENT_FLAG;
Steve Wiseba32de92014-03-19 17:44:43 +0530894 if (wr->send_flags & IB_SEND_SIGNALED || qhp->sq_sig_all)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700895 fw_flags |= FW_RI_COMPLETION_FLAG;
896 swsqe = &qhp->wq.sq.sw_sq[qhp->wq.sq.pidx];
897 switch (wr->opcode) {
898 case IB_WR_SEND_WITH_INV:
899 case IB_WR_SEND:
900 if (wr->send_flags & IB_SEND_FENCE)
901 fw_flags |= FW_RI_READ_FENCE_FLAG;
902 fw_opcode = FW_RI_SEND_WR;
903 if (wr->opcode == IB_WR_SEND)
904 swsqe->opcode = FW_RI_SEND;
905 else
906 swsqe->opcode = FW_RI_SEND_WITH_INV;
Steve Wised37ac312010-06-10 19:03:00 +0000907 err = build_rdma_send(&qhp->wq.sq, wqe, wr, &len16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700908 break;
909 case IB_WR_RDMA_WRITE:
910 fw_opcode = FW_RI_RDMA_WRITE_WR;
911 swsqe->opcode = FW_RI_RDMA_WRITE;
Steve Wised37ac312010-06-10 19:03:00 +0000912 err = build_rdma_write(&qhp->wq.sq, wqe, wr, &len16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700913 break;
914 case IB_WR_RDMA_READ:
Steve Wise2f1fb502010-05-20 16:58:16 -0500915 case IB_WR_RDMA_READ_WITH_INV:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700916 fw_opcode = FW_RI_RDMA_READ_WR;
917 swsqe->opcode = FW_RI_READ_REQ;
Steve Wise5c6b2aa2016-11-03 12:09:38 -0700918 if (wr->opcode == IB_WR_RDMA_READ_WITH_INV) {
919 c4iw_invalidate_mr(qhp->rhp,
920 wr->sg_list[0].lkey);
Steve Wise410ade42010-09-17 15:40:09 -0500921 fw_flags = FW_RI_RDMA_READ_INVALIDATE;
Steve Wise5c6b2aa2016-11-03 12:09:38 -0700922 } else {
Steve Wise2f1fb502010-05-20 16:58:16 -0500923 fw_flags = 0;
Steve Wise5c6b2aa2016-11-03 12:09:38 -0700924 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700925 err = build_rdma_read(wqe, wr, &len16);
926 if (err)
927 break;
928 swsqe->read_len = wr->sg_list[0].length;
929 if (!qhp->wq.sq.oldest_read)
930 qhp->wq.sq.oldest_read = swsqe;
931 break;
Steve Wise49b53a92016-09-16 07:54:52 -0700932 case IB_WR_REG_MR: {
933 struct c4iw_mr *mhp = to_c4iw_mr(reg_wr(wr)->mr);
934
Sagi Grimberg8376b862015-10-13 19:11:30 +0300935 swsqe->opcode = FW_RI_FAST_REGISTER;
Steve Wise49b53a92016-09-16 07:54:52 -0700936 if (qhp->rhp->rdev.lldi.fr_nsmr_tpte_wr_support &&
937 !mhp->attr.state && mhp->mpl_len <= 2) {
938 fw_opcode = FW_RI_FR_NSMR_TPTE_WR;
939 build_tpte_memreg(&wqe->fr_tpte, reg_wr(wr),
940 mhp, &len16);
941 } else {
942 fw_opcode = FW_RI_FR_NSMR_WR;
943 err = build_memreg(&qhp->wq.sq, wqe, reg_wr(wr),
944 mhp, &len16,
945 qhp->rhp->rdev.lldi.ulptx_memwrite_dsgl);
946 if (err)
947 break;
948 }
949 mhp->attr.state = 1;
Sagi Grimberg8376b862015-10-13 19:11:30 +0300950 break;
Steve Wise49b53a92016-09-16 07:54:52 -0700951 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700952 case IB_WR_LOCAL_INV:
Steve Wise4ab1eb92010-05-20 16:58:10 -0500953 if (wr->send_flags & IB_SEND_FENCE)
954 fw_flags |= FW_RI_LOCAL_FENCE_FLAG;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700955 fw_opcode = FW_RI_INV_LSTAG_WR;
956 swsqe->opcode = FW_RI_LOCAL_INV;
Steve Wise5c6b2aa2016-11-03 12:09:38 -0700957 err = build_inv_stag(wqe, wr, &len16);
958 c4iw_invalidate_mr(qhp->rhp, wr->ex.invalidate_rkey);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700959 break;
960 default:
Bharat Potnuri4d45b752017-09-27 13:05:50 +0530961 pr_warn("%s post of type=%d TBD!\n", __func__,
962 wr->opcode);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700963 err = -EINVAL;
964 }
965 if (err) {
966 *bad_wr = wr;
967 break;
968 }
969 swsqe->idx = qhp->wq.sq.pidx;
970 swsqe->complete = 0;
Steve Wiseba32de92014-03-19 17:44:43 +0530971 swsqe->signaled = (wr->send_flags & IB_SEND_SIGNALED) ||
972 qhp->sq_sig_all;
Steve Wise1cf24dc2013-08-06 21:04:35 +0530973 swsqe->flushed = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700974 swsqe->wr_id = wr->wr_id;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530975 if (c4iw_wr_log) {
976 swsqe->sge_ts = cxgb4_read_sge_timestamp(
977 qhp->rhp->rdev.lldi.ports[0]);
978 getnstimeofday(&swsqe->host_ts);
979 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700980
981 init_wr_hdr(wqe, qhp->wq.sq.pidx, fw_opcode, fw_flags, len16);
982
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530983 pr_debug("cookie 0x%llx pidx 0x%x opcode 0x%x read_len %u\n",
Joe Perchesa9a42882017-02-09 14:23:51 -0800984 (unsigned long long)wr->wr_id, qhp->wq.sq.pidx,
985 swsqe->opcode, swsqe->read_len);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700986 wr = wr->next;
987 num_wrs--;
Steve Wised37ac312010-06-10 19:03:00 +0000988 t4_sq_produce(&qhp->wq, len16);
989 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700990 }
Steve Wise05eb2382014-03-14 21:52:08 +0530991 if (!qhp->rhp->rdev.status_page->db_off) {
Hariprasad S963cab52015-09-23 17:19:27 +0530992 t4_ring_sq_db(&qhp->wq, idx, wqe);
Steve Wise05eb2382014-03-14 21:52:08 +0530993 spin_unlock_irqrestore(&qhp->lock, flag);
994 } else {
995 spin_unlock_irqrestore(&qhp->lock, flag);
996 ring_kernel_sq_db(qhp, idx);
997 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700998 return err;
999}
1000
1001int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
1002 struct ib_recv_wr **bad_wr)
1003{
1004 int err = 0;
1005 struct c4iw_qp *qhp;
Steve Wisefa658a92014-04-09 09:38:25 -05001006 union t4_recv_wr *wqe = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001007 u32 num_wrs;
1008 u8 len16 = 0;
1009 unsigned long flag;
1010 u16 idx = 0;
1011
1012 qhp = to_c4iw_qp(ibqp);
1013 spin_lock_irqsave(&qhp->lock, flag);
1014 if (t4_wq_in_error(&qhp->wq)) {
1015 spin_unlock_irqrestore(&qhp->lock, flag);
Steve Wise4fe7c292016-12-22 07:04:59 -08001016 complete_rq_drain_wr(qhp, wr);
1017 return err;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001018 }
1019 num_wrs = t4_rq_avail(&qhp->wq);
1020 if (num_wrs == 0) {
1021 spin_unlock_irqrestore(&qhp->lock, flag);
Steve Wise4ff522e2016-10-18 14:04:39 -07001022 *bad_wr = wr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001023 return -ENOMEM;
1024 }
1025 while (wr) {
1026 if (wr->num_sge > T4_MAX_RECV_SGE) {
1027 err = -EINVAL;
1028 *bad_wr = wr;
1029 break;
1030 }
Steve Wised37ac312010-06-10 19:03:00 +00001031 wqe = (union t4_recv_wr *)((u8 *)qhp->wq.rq.queue +
1032 qhp->wq.rq.wq_pidx *
1033 T4_EQ_ENTRY_SIZE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001034 if (num_wrs)
1035 err = build_rdma_recv(qhp, wqe, wr, &len16);
1036 else
1037 err = -ENOMEM;
1038 if (err) {
1039 *bad_wr = wr;
1040 break;
1041 }
1042
1043 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].wr_id = wr->wr_id;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +05301044 if (c4iw_wr_log) {
1045 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].sge_ts =
1046 cxgb4_read_sge_timestamp(
1047 qhp->rhp->rdev.lldi.ports[0]);
1048 getnstimeofday(
1049 &qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].host_ts);
1050 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001051
1052 wqe->recv.opcode = FW_RI_RECV_WR;
1053 wqe->recv.r1 = 0;
1054 wqe->recv.wrid = qhp->wq.rq.pidx;
1055 wqe->recv.r2[0] = 0;
1056 wqe->recv.r2[1] = 0;
1057 wqe->recv.r2[2] = 0;
1058 wqe->recv.len16 = len16;
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301059 pr_debug("cookie 0x%llx pidx %u\n",
Joe Perchesa9a42882017-02-09 14:23:51 -08001060 (unsigned long long)wr->wr_id, qhp->wq.rq.pidx);
Steve Wised37ac312010-06-10 19:03:00 +00001061 t4_rq_produce(&qhp->wq, len16);
1062 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001063 wr = wr->next;
1064 num_wrs--;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001065 }
Steve Wise05eb2382014-03-14 21:52:08 +05301066 if (!qhp->rhp->rdev.status_page->db_off) {
Hariprasad S963cab52015-09-23 17:19:27 +05301067 t4_ring_rq_db(&qhp->wq, idx, wqe);
Steve Wise05eb2382014-03-14 21:52:08 +05301068 spin_unlock_irqrestore(&qhp->lock, flag);
1069 } else {
1070 spin_unlock_irqrestore(&qhp->lock, flag);
1071 ring_kernel_rq_db(qhp, idx);
1072 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001073 return err;
1074}
1075
Steve Wisecfdda9d2010-04-21 15:30:06 -07001076static inline void build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type,
1077 u8 *ecode)
1078{
1079 int status;
1080 int tagged;
1081 int opcode;
1082 int rqtype;
1083 int send_inv;
1084
1085 if (!err_cqe) {
1086 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1087 *ecode = 0;
1088 return;
1089 }
1090
1091 status = CQE_STATUS(err_cqe);
1092 opcode = CQE_OPCODE(err_cqe);
1093 rqtype = RQ_TYPE(err_cqe);
1094 send_inv = (opcode == FW_RI_SEND_WITH_INV) ||
1095 (opcode == FW_RI_SEND_WITH_SE_INV);
1096 tagged = (opcode == FW_RI_RDMA_WRITE) ||
1097 (rqtype && (opcode == FW_RI_READ_RESP));
1098
1099 switch (status) {
1100 case T4_ERR_STAG:
1101 if (send_inv) {
1102 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1103 *ecode = RDMAP_CANT_INV_STAG;
1104 } else {
1105 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1106 *ecode = RDMAP_INV_STAG;
1107 }
1108 break;
1109 case T4_ERR_PDID:
1110 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1111 if ((opcode == FW_RI_SEND_WITH_INV) ||
1112 (opcode == FW_RI_SEND_WITH_SE_INV))
1113 *ecode = RDMAP_CANT_INV_STAG;
1114 else
1115 *ecode = RDMAP_STAG_NOT_ASSOC;
1116 break;
1117 case T4_ERR_QPID:
1118 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1119 *ecode = RDMAP_STAG_NOT_ASSOC;
1120 break;
1121 case T4_ERR_ACCESS:
1122 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1123 *ecode = RDMAP_ACC_VIOL;
1124 break;
1125 case T4_ERR_WRAP:
1126 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1127 *ecode = RDMAP_TO_WRAP;
1128 break;
1129 case T4_ERR_BOUND:
1130 if (tagged) {
1131 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1132 *ecode = DDPT_BASE_BOUNDS;
1133 } else {
1134 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1135 *ecode = RDMAP_BASE_BOUNDS;
1136 }
1137 break;
1138 case T4_ERR_INVALIDATE_SHARED_MR:
1139 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
1140 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1141 *ecode = RDMAP_CANT_INV_STAG;
1142 break;
1143 case T4_ERR_ECC:
1144 case T4_ERR_ECC_PSTAG:
1145 case T4_ERR_INTERNAL_ERR:
1146 *layer_type = LAYER_RDMAP|RDMAP_LOCAL_CATA;
1147 *ecode = 0;
1148 break;
1149 case T4_ERR_OUT_OF_RQE:
1150 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1151 *ecode = DDPU_INV_MSN_NOBUF;
1152 break;
1153 case T4_ERR_PBL_ADDR_BOUND:
1154 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1155 *ecode = DDPT_BASE_BOUNDS;
1156 break;
1157 case T4_ERR_CRC:
1158 *layer_type = LAYER_MPA|DDP_LLP;
1159 *ecode = MPA_CRC_ERR;
1160 break;
1161 case T4_ERR_MARKER:
1162 *layer_type = LAYER_MPA|DDP_LLP;
1163 *ecode = MPA_MARKER_ERR;
1164 break;
1165 case T4_ERR_PDU_LEN_ERR:
1166 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1167 *ecode = DDPU_MSG_TOOBIG;
1168 break;
1169 case T4_ERR_DDP_VERSION:
1170 if (tagged) {
1171 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1172 *ecode = DDPT_INV_VERS;
1173 } else {
1174 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1175 *ecode = DDPU_INV_VERS;
1176 }
1177 break;
1178 case T4_ERR_RDMA_VERSION:
1179 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1180 *ecode = RDMAP_INV_VERS;
1181 break;
1182 case T4_ERR_OPCODE:
1183 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1184 *ecode = RDMAP_INV_OPCODE;
1185 break;
1186 case T4_ERR_DDP_QUEUE_NUM:
1187 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1188 *ecode = DDPU_INV_QN;
1189 break;
1190 case T4_ERR_MSN:
1191 case T4_ERR_MSN_GAP:
1192 case T4_ERR_MSN_RANGE:
1193 case T4_ERR_IRD_OVERFLOW:
1194 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1195 *ecode = DDPU_INV_MSN_RANGE;
1196 break;
1197 case T4_ERR_TBIT:
1198 *layer_type = LAYER_DDP|DDP_LOCAL_CATA;
1199 *ecode = 0;
1200 break;
1201 case T4_ERR_MO:
1202 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1203 *ecode = DDPU_INV_MO;
1204 break;
1205 default:
1206 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1207 *ecode = 0;
1208 break;
1209 }
1210}
1211
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001212static void post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe,
1213 gfp_t gfp)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001214{
1215 struct fw_ri_wr *wqe;
1216 struct sk_buff *skb;
1217 struct terminate_message *term;
1218
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301219 pr_debug("qhp %p qid 0x%x tid %u\n", qhp, qhp->wq.sq.qid,
Joe Perchesa9a42882017-02-09 14:23:51 -08001220 qhp->ep->hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001221
Hariprasad S4a740832016-06-10 01:05:15 +05301222 skb = skb_dequeue(&qhp->ep->com.ep_skb_list);
1223 if (WARN_ON(!skb))
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001224 return;
Hariprasad S4a740832016-06-10 01:05:15 +05301225
Steve Wisecfdda9d2010-04-21 15:30:06 -07001226 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1227
Johannes Berg4df864c2017-06-16 14:29:21 +02001228 wqe = __skb_put(skb, sizeof(*wqe));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001229 memset(wqe, 0, sizeof *wqe);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301230 wqe->op_compl = cpu_to_be32(FW_WR_OP_V(FW_RI_INIT_WR));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001231 wqe->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301232 FW_WR_FLOWID_V(qhp->ep->hwtid) |
1233 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001234
1235 wqe->u.terminate.type = FW_RI_TYPE_TERMINATE;
1236 wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term);
1237 term = (struct terminate_message *)wqe->u.terminate.termmsg;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301238 if (qhp->attr.layer_etype == (LAYER_MPA|DDP_LLP)) {
1239 term->layer_etype = qhp->attr.layer_etype;
1240 term->ecode = qhp->attr.ecode;
1241 } else
1242 build_term_codes(err_cqe, &term->layer_etype, &term->ecode);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001243 c4iw_ofld_send(&qhp->rhp->rdev, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001244}
1245
1246/*
1247 * Assumes qhp lock is held.
1248 */
1249static void __flush_qp(struct c4iw_qp *qhp, struct c4iw_cq *rchp,
Steve Wise2f5b48c2010-09-10 11:15:36 -05001250 struct c4iw_cq *schp)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001251{
1252 int count;
Steve Wise678ea9b2014-07-31 14:35:43 -05001253 int rq_flushed, sq_flushed;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001254 unsigned long flag;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001255
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301256 pr_debug("qhp %p rchp %p schp %p\n", qhp, rchp, schp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001257
Uwe Kleine-König732bee72010-06-11 12:16:59 +02001258 /* locking hierarchy: cq lock first, then qp lock. */
Steve Wise2f5b48c2010-09-10 11:15:36 -05001259 spin_lock_irqsave(&rchp->lock, flag);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001260 spin_lock(&qhp->lock);
Steve Wise1cf24dc2013-08-06 21:04:35 +05301261
1262 if (qhp->wq.flushed) {
1263 spin_unlock(&qhp->lock);
1264 spin_unlock_irqrestore(&rchp->lock, flag);
1265 return;
1266 }
1267 qhp->wq.flushed = 1;
1268
1269 c4iw_flush_hw_cq(rchp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001270 c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
Steve Wise678ea9b2014-07-31 14:35:43 -05001271 rq_flushed = c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001272 spin_unlock(&qhp->lock);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001273 spin_unlock_irqrestore(&rchp->lock, flag);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001274
Uwe Kleine-König732bee72010-06-11 12:16:59 +02001275 /* locking hierarchy: cq lock first, then qp lock. */
Steve Wise2f5b48c2010-09-10 11:15:36 -05001276 spin_lock_irqsave(&schp->lock, flag);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001277 spin_lock(&qhp->lock);
Steve Wise1cf24dc2013-08-06 21:04:35 +05301278 if (schp != rchp)
1279 c4iw_flush_hw_cq(schp);
Steve Wise678ea9b2014-07-31 14:35:43 -05001280 sq_flushed = c4iw_flush_sq(qhp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001281 spin_unlock(&qhp->lock);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001282 spin_unlock_irqrestore(&schp->lock, flag);
Steve Wise678ea9b2014-07-31 14:35:43 -05001283
1284 if (schp == rchp) {
1285 if (t4_clear_cq_armed(&rchp->cq) &&
1286 (rq_flushed || sq_flushed)) {
1287 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
1288 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
1289 rchp->ibcq.cq_context);
1290 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1291 }
1292 } else {
1293 if (t4_clear_cq_armed(&rchp->cq) && rq_flushed) {
1294 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
1295 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
1296 rchp->ibcq.cq_context);
1297 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1298 }
1299 if (t4_clear_cq_armed(&schp->cq) && sq_flushed) {
1300 spin_lock_irqsave(&schp->comp_handler_lock, flag);
1301 (*schp->ibcq.comp_handler)(&schp->ibcq,
1302 schp->ibcq.cq_context);
1303 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
1304 }
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301305 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001306}
1307
Steve Wise2f5b48c2010-09-10 11:15:36 -05001308static void flush_qp(struct c4iw_qp *qhp)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001309{
1310 struct c4iw_cq *rchp, *schp;
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301311 unsigned long flag;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001312
Steve Wise1cf24dc2013-08-06 21:04:35 +05301313 rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
1314 schp = to_c4iw_cq(qhp->ibqp.send_cq);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001315
Steve Wise1cf24dc2013-08-06 21:04:35 +05301316 t4_set_wq_in_error(&qhp->wq);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001317 if (qhp->ibqp.uobject) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001318 t4_set_cq_in_error(&rchp->cq);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301319 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301320 (*rchp->ibcq.comp_handler)(&rchp->ibcq, rchp->ibcq.cq_context);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301321 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301322 if (schp != rchp) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001323 t4_set_cq_in_error(&schp->cq);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301324 spin_lock_irqsave(&schp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301325 (*schp->ibcq.comp_handler)(&schp->ibcq,
1326 schp->ibcq.cq_context);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301327 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301328 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001329 return;
1330 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001331 __flush_qp(qhp, rchp, schp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001332}
1333
Steve Wise73d6fca2010-07-23 19:12:27 +00001334static int rdma_fini(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1335 struct c4iw_ep *ep)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001336{
1337 struct fw_ri_wr *wqe;
1338 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001339 struct sk_buff *skb;
1340
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301341 pr_debug("qhp %p qid 0x%x tid %u\n", qhp, qhp->wq.sq.qid, ep->hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001342
Hariprasad S4a740832016-06-10 01:05:15 +05301343 skb = skb_dequeue(&ep->com.ep_skb_list);
1344 if (WARN_ON(!skb))
Steve Wisecfdda9d2010-04-21 15:30:06 -07001345 return -ENOMEM;
Hariprasad S4a740832016-06-10 01:05:15 +05301346
Steve Wise73d6fca2010-07-23 19:12:27 +00001347 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001348
Johannes Berg4df864c2017-06-16 14:29:21 +02001349 wqe = __skb_put(skb, sizeof(*wqe));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001350 memset(wqe, 0, sizeof *wqe);
1351 wqe->op_compl = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301352 FW_WR_OP_V(FW_RI_INIT_WR) |
1353 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001354 wqe->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301355 FW_WR_FLOWID_V(ep->hwtid) |
1356 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
Steve Wiseef885dc2017-09-26 13:12:16 -07001357 wqe->cookie = (uintptr_t)ep->com.wr_waitp;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001358
1359 wqe->u.fini.type = FW_RI_TYPE_FINI;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001360
Steve Wise2015f262017-09-26 13:13:17 -07001361 ret = c4iw_ref_send_wait(&rhp->rdev, skb, ep->com.wr_waitp,
1362 qhp->ep->hwtid, qhp->wq.sq.qid, __func__);
1363
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301364 pr_debug("ret %d\n", ret);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001365 return ret;
1366}
1367
1368static void build_rtr_msg(u8 p2p_type, struct fw_ri_init *init)
1369{
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301370 pr_debug("p2p_type = %d\n", p2p_type);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001371 memset(&init->u, 0, sizeof init->u);
1372 switch (p2p_type) {
1373 case FW_RI_INIT_P2PTYPE_RDMA_WRITE:
1374 init->u.write.opcode = FW_RI_RDMA_WRITE_WR;
1375 init->u.write.stag_sink = cpu_to_be32(1);
1376 init->u.write.to_sink = cpu_to_be64(1);
1377 init->u.write.u.immd_src[0].op = FW_RI_DATA_IMMD;
1378 init->u.write.len16 = DIV_ROUND_UP(sizeof init->u.write +
1379 sizeof(struct fw_ri_immd),
1380 16);
1381 break;
1382 case FW_RI_INIT_P2PTYPE_READ_REQ:
1383 init->u.write.opcode = FW_RI_RDMA_READ_WR;
1384 init->u.read.stag_src = cpu_to_be32(1);
1385 init->u.read.to_src_lo = cpu_to_be32(1);
1386 init->u.read.stag_sink = cpu_to_be32(1);
1387 init->u.read.to_sink_lo = cpu_to_be32(1);
1388 init->u.read.len16 = DIV_ROUND_UP(sizeof init->u.read, 16);
1389 break;
1390 }
1391}
1392
1393static int rdma_init(struct c4iw_dev *rhp, struct c4iw_qp *qhp)
1394{
1395 struct fw_ri_wr *wqe;
1396 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001397 struct sk_buff *skb;
1398
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301399 pr_debug("qhp %p qid 0x%x tid %u ird %u ord %u\n", qhp,
Joe Perchesa9a42882017-02-09 14:23:51 -08001400 qhp->wq.sq.qid, qhp->ep->hwtid, qhp->ep->ird, qhp->ep->ord);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001401
David Rientjesd3c814e2010-07-21 02:44:56 +00001402 skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301403 if (!skb) {
1404 ret = -ENOMEM;
1405 goto out;
1406 }
1407 ret = alloc_ird(rhp, qhp->attr.max_ird);
1408 if (ret) {
1409 qhp->attr.max_ird = 0;
1410 kfree_skb(skb);
1411 goto out;
1412 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001413 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1414
Johannes Berg4df864c2017-06-16 14:29:21 +02001415 wqe = __skb_put(skb, sizeof(*wqe));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001416 memset(wqe, 0, sizeof *wqe);
1417 wqe->op_compl = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301418 FW_WR_OP_V(FW_RI_INIT_WR) |
1419 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001420 wqe->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301421 FW_WR_FLOWID_V(qhp->ep->hwtid) |
1422 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001423
Steve Wiseef885dc2017-09-26 13:12:16 -07001424 wqe->cookie = (uintptr_t)qhp->ep->com.wr_waitp;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001425
1426 wqe->u.init.type = FW_RI_TYPE_INIT;
1427 wqe->u.init.mpareqbit_p2ptype =
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05301428 FW_RI_WR_MPAREQBIT_V(qhp->attr.mpa_attr.initiator) |
1429 FW_RI_WR_P2PTYPE_V(qhp->attr.mpa_attr.p2p_type);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001430 wqe->u.init.mpa_attrs = FW_RI_MPA_IETF_ENABLE;
1431 if (qhp->attr.mpa_attr.recv_marker_enabled)
1432 wqe->u.init.mpa_attrs |= FW_RI_MPA_RX_MARKER_ENABLE;
1433 if (qhp->attr.mpa_attr.xmit_marker_enabled)
1434 wqe->u.init.mpa_attrs |= FW_RI_MPA_TX_MARKER_ENABLE;
1435 if (qhp->attr.mpa_attr.crc_enabled)
1436 wqe->u.init.mpa_attrs |= FW_RI_MPA_CRC_ENABLE;
1437
1438 wqe->u.init.qp_caps = FW_RI_QP_RDMA_READ_ENABLE |
1439 FW_RI_QP_RDMA_WRITE_ENABLE |
1440 FW_RI_QP_BIND_ENABLE;
1441 if (!qhp->ibqp.uobject)
1442 wqe->u.init.qp_caps |= FW_RI_QP_FAST_REGISTER_ENABLE |
1443 FW_RI_QP_STAG0_ENABLE;
1444 wqe->u.init.nrqe = cpu_to_be16(t4_rqes_posted(&qhp->wq));
1445 wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd);
1446 wqe->u.init.qpid = cpu_to_be32(qhp->wq.sq.qid);
1447 wqe->u.init.sq_eqid = cpu_to_be32(qhp->wq.sq.qid);
1448 wqe->u.init.rq_eqid = cpu_to_be32(qhp->wq.rq.qid);
1449 wqe->u.init.scqid = cpu_to_be32(qhp->attr.scq);
1450 wqe->u.init.rcqid = cpu_to_be32(qhp->attr.rcq);
1451 wqe->u.init.ord_max = cpu_to_be32(qhp->attr.max_ord);
1452 wqe->u.init.ird_max = cpu_to_be32(qhp->attr.max_ird);
1453 wqe->u.init.iss = cpu_to_be32(qhp->ep->snd_seq);
1454 wqe->u.init.irs = cpu_to_be32(qhp->ep->rcv_seq);
1455 wqe->u.init.hwrqsize = cpu_to_be32(qhp->wq.rq.rqt_size);
1456 wqe->u.init.hwrqaddr = cpu_to_be32(qhp->wq.rq.rqt_hwaddr -
1457 rhp->rdev.lldi.vr->rq.start);
1458 if (qhp->attr.mpa_attr.initiator)
1459 build_rtr_msg(qhp->attr.mpa_attr.p2p_type, &wqe->u.init);
1460
Steve Wise2015f262017-09-26 13:13:17 -07001461 ret = c4iw_ref_send_wait(&rhp->rdev, skb, qhp->ep->com.wr_waitp,
1462 qhp->ep->hwtid, qhp->wq.sq.qid, __func__);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301463 if (!ret)
1464 goto out;
Steve Wise2015f262017-09-26 13:13:17 -07001465
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301466 free_ird(rhp, qhp->attr.max_ird);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001467out:
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301468 pr_debug("ret %d\n", ret);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001469 return ret;
1470}
1471
1472int c4iw_modify_qp(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1473 enum c4iw_qp_attr_mask mask,
1474 struct c4iw_qp_attributes *attrs,
1475 int internal)
1476{
1477 int ret = 0;
1478 struct c4iw_qp_attributes newattr = qhp->attr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001479 int disconnect = 0;
1480 int terminate = 0;
1481 int abort = 0;
1482 int free = 0;
1483 struct c4iw_ep *ep = NULL;
1484
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301485 pr_debug("qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n",
Joe Perchesa9a42882017-02-09 14:23:51 -08001486 qhp, qhp->wq.sq.qid, qhp->wq.rq.qid, qhp->ep, qhp->attr.state,
1487 (mask & C4IW_QP_ATTR_NEXT_STATE) ? attrs->next_state : -1);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001488
Steve Wise2f5b48c2010-09-10 11:15:36 -05001489 mutex_lock(&qhp->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001490
1491 /* Process attr changes if in IDLE */
1492 if (mask & C4IW_QP_ATTR_VALID_MODIFY) {
1493 if (qhp->attr.state != C4IW_QP_STATE_IDLE) {
1494 ret = -EIO;
1495 goto out;
1496 }
1497 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_READ)
1498 newattr.enable_rdma_read = attrs->enable_rdma_read;
1499 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_WRITE)
1500 newattr.enable_rdma_write = attrs->enable_rdma_write;
1501 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_BIND)
1502 newattr.enable_bind = attrs->enable_bind;
1503 if (mask & C4IW_QP_ATTR_MAX_ORD) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001504 if (attrs->max_ord > c4iw_max_read_depth) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001505 ret = -EINVAL;
1506 goto out;
1507 }
1508 newattr.max_ord = attrs->max_ord;
1509 }
1510 if (mask & C4IW_QP_ATTR_MAX_IRD) {
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301511 if (attrs->max_ird > cur_max_read_depth(rhp)) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001512 ret = -EINVAL;
1513 goto out;
1514 }
1515 newattr.max_ird = attrs->max_ird;
1516 }
1517 qhp->attr = newattr;
1518 }
1519
Vipul Pandya2c974782012-05-18 15:29:28 +05301520 if (mask & C4IW_QP_ATTR_SQ_DB) {
Steve Wise05eb2382014-03-14 21:52:08 +05301521 ret = ring_kernel_sq_db(qhp, attrs->sq_db_inc);
Vipul Pandya2c974782012-05-18 15:29:28 +05301522 goto out;
1523 }
1524 if (mask & C4IW_QP_ATTR_RQ_DB) {
Steve Wise05eb2382014-03-14 21:52:08 +05301525 ret = ring_kernel_rq_db(qhp, attrs->rq_db_inc);
Vipul Pandya2c974782012-05-18 15:29:28 +05301526 goto out;
1527 }
1528
Steve Wisecfdda9d2010-04-21 15:30:06 -07001529 if (!(mask & C4IW_QP_ATTR_NEXT_STATE))
1530 goto out;
1531 if (qhp->attr.state == attrs->next_state)
1532 goto out;
1533
1534 switch (qhp->attr.state) {
1535 case C4IW_QP_STATE_IDLE:
1536 switch (attrs->next_state) {
1537 case C4IW_QP_STATE_RTS:
1538 if (!(mask & C4IW_QP_ATTR_LLP_STREAM_HANDLE)) {
1539 ret = -EINVAL;
1540 goto out;
1541 }
1542 if (!(mask & C4IW_QP_ATTR_MPA_ATTR)) {
1543 ret = -EINVAL;
1544 goto out;
1545 }
1546 qhp->attr.mpa_attr = attrs->mpa_attr;
1547 qhp->attr.llp_stream_handle = attrs->llp_stream_handle;
1548 qhp->ep = qhp->attr.llp_stream_handle;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001549 set_state(qhp, C4IW_QP_STATE_RTS);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001550
1551 /*
1552 * Ref the endpoint here and deref when we
1553 * disassociate the endpoint from the QP. This
1554 * happens in CLOSING->IDLE transition or *->ERROR
1555 * transition.
1556 */
1557 c4iw_get_ep(&qhp->ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001558 ret = rdma_init(rhp, qhp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001559 if (ret)
1560 goto err;
1561 break;
1562 case C4IW_QP_STATE_ERROR:
Steve Wise2f5b48c2010-09-10 11:15:36 -05001563 set_state(qhp, C4IW_QP_STATE_ERROR);
1564 flush_qp(qhp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001565 break;
1566 default:
1567 ret = -EINVAL;
1568 goto out;
1569 }
1570 break;
1571 case C4IW_QP_STATE_RTS:
1572 switch (attrs->next_state) {
1573 case C4IW_QP_STATE_CLOSING:
Steve Wiseb4e29012014-04-09 09:38:26 -05001574 t4_set_wq_in_error(&qhp->wq);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001575 set_state(qhp, C4IW_QP_STATE_CLOSING);
Steve Wise73d6fca2010-07-23 19:12:27 +00001576 ep = qhp->ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001577 if (!internal) {
1578 abort = 0;
1579 disconnect = 1;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001580 c4iw_get_ep(&qhp->ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001581 }
Steve Wise73d6fca2010-07-23 19:12:27 +00001582 ret = rdma_fini(rhp, qhp, ep);
Steve Wise8da7e7a2011-06-14 20:59:27 +00001583 if (ret)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001584 goto err;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001585 break;
1586 case C4IW_QP_STATE_TERMINATE:
Steve Wiseb4e29012014-04-09 09:38:26 -05001587 t4_set_wq_in_error(&qhp->wq);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001588 set_state(qhp, C4IW_QP_STATE_TERMINATE);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301589 qhp->attr.layer_etype = attrs->layer_etype;
1590 qhp->attr.ecode = attrs->ecode;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001591 ep = qhp->ep;
Steve Wisecc18b932014-04-24 14:31:53 -05001592 if (!internal) {
1593 c4iw_get_ep(&qhp->ep->com);
Steve Wise0e42c1f2010-09-10 11:15:09 -05001594 terminate = 1;
Steve Wisecc18b932014-04-24 14:31:53 -05001595 disconnect = 1;
1596 } else {
1597 terminate = qhp->attr.send_term;
Steve Wise09992572013-08-06 21:04:40 +05301598 ret = rdma_fini(rhp, qhp, ep);
1599 if (ret)
1600 goto err;
1601 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001602 break;
1603 case C4IW_QP_STATE_ERROR:
Steve Wise1cf24dc2013-08-06 21:04:35 +05301604 t4_set_wq_in_error(&qhp->wq);
Steve Wiseb4e29012014-04-09 09:38:26 -05001605 set_state(qhp, C4IW_QP_STATE_ERROR);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001606 if (!internal) {
1607 abort = 1;
1608 disconnect = 1;
1609 ep = qhp->ep;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001610 c4iw_get_ep(&qhp->ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001611 }
1612 goto err;
1613 break;
1614 default:
1615 ret = -EINVAL;
1616 goto out;
1617 }
1618 break;
1619 case C4IW_QP_STATE_CLOSING:
Steve Wise4fe7c292016-12-22 07:04:59 -08001620
1621 /*
1622 * Allow kernel users to move to ERROR for qp draining.
1623 */
1624 if (!internal && (qhp->ibqp.uobject || attrs->next_state !=
1625 C4IW_QP_STATE_ERROR)) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001626 ret = -EINVAL;
1627 goto out;
1628 }
1629 switch (attrs->next_state) {
1630 case C4IW_QP_STATE_IDLE:
Steve Wise2f5b48c2010-09-10 11:15:36 -05001631 flush_qp(qhp);
1632 set_state(qhp, C4IW_QP_STATE_IDLE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001633 qhp->attr.llp_stream_handle = NULL;
1634 c4iw_put_ep(&qhp->ep->com);
1635 qhp->ep = NULL;
1636 wake_up(&qhp->wait);
1637 break;
1638 case C4IW_QP_STATE_ERROR:
1639 goto err;
1640 default:
1641 ret = -EINVAL;
1642 goto err;
1643 }
1644 break;
1645 case C4IW_QP_STATE_ERROR:
1646 if (attrs->next_state != C4IW_QP_STATE_IDLE) {
1647 ret = -EINVAL;
1648 goto out;
1649 }
1650 if (!t4_sq_empty(&qhp->wq) || !t4_rq_empty(&qhp->wq)) {
1651 ret = -EINVAL;
1652 goto out;
1653 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001654 set_state(qhp, C4IW_QP_STATE_IDLE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001655 break;
1656 case C4IW_QP_STATE_TERMINATE:
1657 if (!internal) {
1658 ret = -EINVAL;
1659 goto out;
1660 }
1661 goto err;
1662 break;
1663 default:
Joe Perches700456b2017-02-09 14:23:50 -08001664 pr_err("%s in a bad state %d\n", __func__, qhp->attr.state);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001665 ret = -EINVAL;
1666 goto err;
1667 break;
1668 }
1669 goto out;
1670err:
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301671 pr_debug("disassociating ep %p qpid 0x%x\n", qhp->ep,
Joe Perchesa9a42882017-02-09 14:23:51 -08001672 qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001673
1674 /* disassociate the LLP connection */
1675 qhp->attr.llp_stream_handle = NULL;
Steve Wiseaf93fb52010-09-10 11:14:48 -05001676 if (!ep)
1677 ep = qhp->ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001678 qhp->ep = NULL;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001679 set_state(qhp, C4IW_QP_STATE_ERROR);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001680 free = 1;
Vipul Pandya91e9c0712013-01-07 13:11:51 +00001681 abort = 1;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001682 flush_qp(qhp);
Steve Wise5b3418082014-11-21 09:36:36 -06001683 wake_up(&qhp->wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001684out:
Steve Wise2f5b48c2010-09-10 11:15:36 -05001685 mutex_unlock(&qhp->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001686
1687 if (terminate)
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001688 post_terminate(qhp, NULL, internal ? GFP_ATOMIC : GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001689
1690 /*
1691 * If disconnect is 1, then we need to initiate a disconnect
1692 * on the EP. This can be a normal close (RTS->CLOSING) or
1693 * an abnormal close (RTS/CLOSING->ERROR).
1694 */
1695 if (disconnect) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001696 c4iw_ep_disconnect(ep, abort, internal ? GFP_ATOMIC :
1697 GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001698 c4iw_put_ep(&ep->com);
1699 }
1700
1701 /*
1702 * If free is 1, then we've disassociated the EP from the QP
1703 * and we need to dereference the EP.
1704 */
1705 if (free)
1706 c4iw_put_ep(&ep->com);
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301707 pr_debug("exit state %d\n", qhp->attr.state);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001708 return ret;
1709}
1710
1711int c4iw_destroy_qp(struct ib_qp *ib_qp)
1712{
1713 struct c4iw_dev *rhp;
1714 struct c4iw_qp *qhp;
1715 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001716
1717 qhp = to_c4iw_qp(ib_qp);
1718 rhp = qhp->rhp;
1719
1720 attrs.next_state = C4IW_QP_STATE_ERROR;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301721 if (qhp->attr.state == C4IW_QP_STATE_TERMINATE)
1722 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1723 else
1724 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001725 wait_event(qhp->wait, !qhp->ep);
1726
Steve Wise05eb2382014-03-14 21:52:08 +05301727 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001728
Steve Wise05eb2382014-03-14 21:52:08 +05301729 spin_lock_irq(&rhp->lock);
1730 if (!list_empty(&qhp->db_fc_entry))
1731 list_del_init(&qhp->db_fc_entry);
1732 spin_unlock_irq(&rhp->lock);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301733 free_ird(rhp, qhp->attr.max_ird);
Steve Wise05eb2382014-03-14 21:52:08 +05301734
Steve Wisead61a4c2016-07-29 11:00:54 -07001735 c4iw_qp_rem_ref(ib_qp);
1736
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301737 pr_debug("ib_qp %p qpid 0x%0x\n", ib_qp, qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001738 return 0;
1739}
1740
1741struct ib_qp *c4iw_create_qp(struct ib_pd *pd, struct ib_qp_init_attr *attrs,
1742 struct ib_udata *udata)
1743{
1744 struct c4iw_dev *rhp;
1745 struct c4iw_qp *qhp;
1746 struct c4iw_pd *php;
1747 struct c4iw_cq *schp;
1748 struct c4iw_cq *rchp;
1749 struct c4iw_create_qp_resp uresp;
Dan Carpenterff1706f2013-10-19 12:14:12 +03001750 unsigned int sqsize, rqsize;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001751 struct c4iw_ucontext *ucontext;
1752 int ret;
Hariprasad Sa6054df2016-02-05 11:43:28 +05301753 struct c4iw_mm_entry *sq_key_mm, *rq_key_mm = NULL, *sq_db_key_mm;
1754 struct c4iw_mm_entry *rq_db_key_mm = NULL, *ma_sync_key_mm = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001755
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301756 pr_debug("ib_pd %p\n", pd);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001757
1758 if (attrs->qp_type != IB_QPT_RC)
1759 return ERR_PTR(-EINVAL);
1760
1761 php = to_c4iw_pd(pd);
1762 rhp = php->rhp;
1763 schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
1764 rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
1765 if (!schp || !rchp)
1766 return ERR_PTR(-EINVAL);
1767
1768 if (attrs->cap.max_inline_data > T4_MAX_SEND_INLINE)
1769 return ERR_PTR(-EINVAL);
1770
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301771 if (attrs->cap.max_recv_wr > rhp->rdev.hw_queue.t4_max_rq_size)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001772 return ERR_PTR(-E2BIG);
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301773 rqsize = attrs->cap.max_recv_wr + 1;
1774 if (rqsize < 8)
1775 rqsize = 8;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001776
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301777 if (attrs->cap.max_send_wr > rhp->rdev.hw_queue.t4_max_sq_size)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001778 return ERR_PTR(-E2BIG);
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301779 sqsize = attrs->cap.max_send_wr + 1;
1780 if (sqsize < 8)
1781 sqsize = 8;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001782
1783 ucontext = pd->uobject ? to_c4iw_ucontext(pd->uobject->context) : NULL;
1784
Steve Wisecfdda9d2010-04-21 15:30:06 -07001785 qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
1786 if (!qhp)
1787 return ERR_PTR(-ENOMEM);
Steve Wise7088a9b2017-09-26 13:11:36 -07001788
Steve Wise2015f262017-09-26 13:13:17 -07001789 qhp->wr_waitp = c4iw_alloc_wr_wait(GFP_KERNEL);
Steve Wise7088a9b2017-09-26 13:11:36 -07001790 if (!qhp->wr_waitp) {
1791 ret = -ENOMEM;
1792 goto err_free_qhp;
1793 }
1794
Steve Wisecfdda9d2010-04-21 15:30:06 -07001795 qhp->wq.sq.size = sqsize;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301796 qhp->wq.sq.memsize =
1797 (sqsize + rhp->rdev.hw_queue.t4_eq_status_entries) *
1798 sizeof(*qhp->wq.sq.queue) + 16 * sizeof(__be64);
Steve Wise1cf24dc2013-08-06 21:04:35 +05301799 qhp->wq.sq.flush_cidx = -1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001800 qhp->wq.rq.size = rqsize;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301801 qhp->wq.rq.memsize =
1802 (rqsize + rhp->rdev.hw_queue.t4_eq_status_entries) *
1803 sizeof(*qhp->wq.rq.queue);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001804
1805 if (ucontext) {
1806 qhp->wq.sq.memsize = roundup(qhp->wq.sq.memsize, PAGE_SIZE);
1807 qhp->wq.rq.memsize = roundup(qhp->wq.rq.memsize, PAGE_SIZE);
1808 }
1809
Steve Wisecfdda9d2010-04-21 15:30:06 -07001810 ret = create_qp(&rhp->rdev, &qhp->wq, &schp->cq, &rchp->cq,
Steve Wise7088a9b2017-09-26 13:11:36 -07001811 ucontext ? &ucontext->uctx : &rhp->rdev.uctx,
1812 qhp->wr_waitp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001813 if (ret)
Steve Wise7088a9b2017-09-26 13:11:36 -07001814 goto err_free_wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001815
1816 attrs->cap.max_recv_wr = rqsize - 1;
1817 attrs->cap.max_send_wr = sqsize - 1;
1818 attrs->cap.max_inline_data = T4_MAX_SEND_INLINE;
1819
1820 qhp->rhp = rhp;
1821 qhp->attr.pd = php->pdid;
1822 qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
1823 qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
1824 qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
1825 qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
1826 qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
1827 qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
1828 qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
1829 qhp->attr.state = C4IW_QP_STATE_IDLE;
1830 qhp->attr.next_state = C4IW_QP_STATE_IDLE;
1831 qhp->attr.enable_rdma_read = 1;
1832 qhp->attr.enable_rdma_write = 1;
1833 qhp->attr.enable_bind = 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301834 qhp->attr.max_ord = 0;
1835 qhp->attr.max_ird = 0;
Steve Wiseba32de92014-03-19 17:44:43 +05301836 qhp->sq_sig_all = attrs->sq_sig_type == IB_SIGNAL_ALL_WR;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001837 spin_lock_init(&qhp->lock);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001838 mutex_init(&qhp->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001839 init_waitqueue_head(&qhp->wait);
Steve Wisead61a4c2016-07-29 11:00:54 -07001840 kref_init(&qhp->kref);
Steve Wisec12a67f2016-12-22 07:40:36 -08001841 INIT_WORK(&qhp->free_work, free_qp_work);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001842
Steve Wise05eb2382014-03-14 21:52:08 +05301843 ret = insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001844 if (ret)
Steve Wise7088a9b2017-09-26 13:11:36 -07001845 goto err_destroy_qp;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001846
Leon Romanovsky9950acf2017-10-29 21:34:35 +02001847 if (udata && ucontext) {
Hariprasad Sa6054df2016-02-05 11:43:28 +05301848 sq_key_mm = kmalloc(sizeof(*sq_key_mm), GFP_KERNEL);
1849 if (!sq_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001850 ret = -ENOMEM;
Steve Wise7088a9b2017-09-26 13:11:36 -07001851 goto err_remove_handle;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001852 }
Hariprasad Sa6054df2016-02-05 11:43:28 +05301853 rq_key_mm = kmalloc(sizeof(*rq_key_mm), GFP_KERNEL);
1854 if (!rq_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001855 ret = -ENOMEM;
Steve Wise7088a9b2017-09-26 13:11:36 -07001856 goto err_free_sq_key;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001857 }
Hariprasad Sa6054df2016-02-05 11:43:28 +05301858 sq_db_key_mm = kmalloc(sizeof(*sq_db_key_mm), GFP_KERNEL);
1859 if (!sq_db_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001860 ret = -ENOMEM;
Steve Wise7088a9b2017-09-26 13:11:36 -07001861 goto err_free_rq_key;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001862 }
Hariprasad Sa6054df2016-02-05 11:43:28 +05301863 rq_db_key_mm = kmalloc(sizeof(*rq_db_key_mm), GFP_KERNEL);
1864 if (!rq_db_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001865 ret = -ENOMEM;
Steve Wise7088a9b2017-09-26 13:11:36 -07001866 goto err_free_sq_db_key;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001867 }
Steve Wisec6d7b262010-09-13 11:23:57 -05001868 if (t4_sq_onchip(&qhp->wq.sq)) {
Hariprasad Sa6054df2016-02-05 11:43:28 +05301869 ma_sync_key_mm = kmalloc(sizeof(*ma_sync_key_mm),
1870 GFP_KERNEL);
1871 if (!ma_sync_key_mm) {
Steve Wisec6d7b262010-09-13 11:23:57 -05001872 ret = -ENOMEM;
Steve Wise7088a9b2017-09-26 13:11:36 -07001873 goto err_free_rq_db_key;
Steve Wisec6d7b262010-09-13 11:23:57 -05001874 }
1875 uresp.flags = C4IW_QPF_ONCHIP;
1876 } else
1877 uresp.flags = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001878 uresp.qid_mask = rhp->rdev.qpmask;
1879 uresp.sqid = qhp->wq.sq.qid;
1880 uresp.sq_size = qhp->wq.sq.size;
1881 uresp.sq_memsize = qhp->wq.sq.memsize;
1882 uresp.rqid = qhp->wq.rq.qid;
1883 uresp.rq_size = qhp->wq.rq.size;
1884 uresp.rq_memsize = qhp->wq.rq.memsize;
1885 spin_lock(&ucontext->mmap_lock);
Hariprasad Sa6054df2016-02-05 11:43:28 +05301886 if (ma_sync_key_mm) {
Steve Wisec6d7b262010-09-13 11:23:57 -05001887 uresp.ma_sync_key = ucontext->key;
1888 ucontext->key += PAGE_SIZE;
Dan Carpenterae1fe072013-07-25 19:48:32 +03001889 } else {
1890 uresp.ma_sync_key = 0;
Steve Wisec6d7b262010-09-13 11:23:57 -05001891 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001892 uresp.sq_key = ucontext->key;
1893 ucontext->key += PAGE_SIZE;
1894 uresp.rq_key = ucontext->key;
1895 ucontext->key += PAGE_SIZE;
1896 uresp.sq_db_gts_key = ucontext->key;
1897 ucontext->key += PAGE_SIZE;
1898 uresp.rq_db_gts_key = ucontext->key;
1899 ucontext->key += PAGE_SIZE;
1900 spin_unlock(&ucontext->mmap_lock);
1901 ret = ib_copy_to_udata(udata, &uresp, sizeof uresp);
1902 if (ret)
Steve Wise7088a9b2017-09-26 13:11:36 -07001903 goto err_free_ma_sync_key;
Hariprasad Sa6054df2016-02-05 11:43:28 +05301904 sq_key_mm->key = uresp.sq_key;
1905 sq_key_mm->addr = qhp->wq.sq.phys_addr;
1906 sq_key_mm->len = PAGE_ALIGN(qhp->wq.sq.memsize);
1907 insert_mmap(ucontext, sq_key_mm);
1908 rq_key_mm->key = uresp.rq_key;
1909 rq_key_mm->addr = virt_to_phys(qhp->wq.rq.queue);
1910 rq_key_mm->len = PAGE_ALIGN(qhp->wq.rq.memsize);
1911 insert_mmap(ucontext, rq_key_mm);
1912 sq_db_key_mm->key = uresp.sq_db_gts_key;
1913 sq_db_key_mm->addr = (u64)(unsigned long)qhp->wq.sq.bar2_pa;
1914 sq_db_key_mm->len = PAGE_SIZE;
1915 insert_mmap(ucontext, sq_db_key_mm);
1916 rq_db_key_mm->key = uresp.rq_db_gts_key;
1917 rq_db_key_mm->addr = (u64)(unsigned long)qhp->wq.rq.bar2_pa;
1918 rq_db_key_mm->len = PAGE_SIZE;
1919 insert_mmap(ucontext, rq_db_key_mm);
1920 if (ma_sync_key_mm) {
1921 ma_sync_key_mm->key = uresp.ma_sync_key;
1922 ma_sync_key_mm->addr =
1923 (pci_resource_start(rhp->rdev.lldi.pdev, 0) +
1924 PCIE_MA_SYNC_A) & PAGE_MASK;
1925 ma_sync_key_mm->len = PAGE_SIZE;
1926 insert_mmap(ucontext, ma_sync_key_mm);
Steve Wisec6d7b262010-09-13 11:23:57 -05001927 }
Steve Wisec12a67f2016-12-22 07:40:36 -08001928
1929 c4iw_get_ucontext(ucontext);
1930 qhp->ucontext = ucontext;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001931 }
1932 qhp->ibqp.qp_num = qhp->wq.sq.qid;
Steve Wise05eb2382014-03-14 21:52:08 +05301933 INIT_LIST_HEAD(&qhp->db_fc_entry);
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301934 pr_debug("sq id %u size %u memsize %zu num_entries %u rq id %u size %u memsize %zu num_entries %u\n",
Joe Perchesa9a42882017-02-09 14:23:51 -08001935 qhp->wq.sq.qid, qhp->wq.sq.size, qhp->wq.sq.memsize,
1936 attrs->cap.max_send_wr, qhp->wq.rq.qid, qhp->wq.rq.size,
1937 qhp->wq.rq.memsize, attrs->cap.max_recv_wr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001938 return &qhp->ibqp;
Steve Wise7088a9b2017-09-26 13:11:36 -07001939err_free_ma_sync_key:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301940 kfree(ma_sync_key_mm);
Steve Wise7088a9b2017-09-26 13:11:36 -07001941err_free_rq_db_key:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301942 kfree(rq_db_key_mm);
Steve Wise7088a9b2017-09-26 13:11:36 -07001943err_free_sq_db_key:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301944 kfree(sq_db_key_mm);
Steve Wise7088a9b2017-09-26 13:11:36 -07001945err_free_rq_key:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301946 kfree(rq_key_mm);
Steve Wise7088a9b2017-09-26 13:11:36 -07001947err_free_sq_key:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301948 kfree(sq_key_mm);
Steve Wise7088a9b2017-09-26 13:11:36 -07001949err_remove_handle:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001950 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
Steve Wise7088a9b2017-09-26 13:11:36 -07001951err_destroy_qp:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001952 destroy_qp(&rhp->rdev, &qhp->wq,
1953 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
Steve Wise7088a9b2017-09-26 13:11:36 -07001954err_free_wr_wait:
Steve Wise2015f262017-09-26 13:13:17 -07001955 c4iw_put_wr_wait(qhp->wr_waitp);
Steve Wise7088a9b2017-09-26 13:11:36 -07001956err_free_qhp:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001957 kfree(qhp);
1958 return ERR_PTR(ret);
1959}
1960
1961int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1962 int attr_mask, struct ib_udata *udata)
1963{
1964 struct c4iw_dev *rhp;
1965 struct c4iw_qp *qhp;
1966 enum c4iw_qp_attr_mask mask = 0;
1967 struct c4iw_qp_attributes attrs;
1968
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301969 pr_debug("ib_qp %p\n", ibqp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001970
1971 /* iwarp does not support the RTR state */
1972 if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
1973 attr_mask &= ~IB_QP_STATE;
1974
1975 /* Make sure we still have something left to do */
1976 if (!attr_mask)
1977 return 0;
1978
1979 memset(&attrs, 0, sizeof attrs);
1980 qhp = to_c4iw_qp(ibqp);
1981 rhp = qhp->rhp;
1982
1983 attrs.next_state = c4iw_convert_state(attr->qp_state);
1984 attrs.enable_rdma_read = (attr->qp_access_flags &
1985 IB_ACCESS_REMOTE_READ) ? 1 : 0;
1986 attrs.enable_rdma_write = (attr->qp_access_flags &
1987 IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
1988 attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
1989
1990
1991 mask |= (attr_mask & IB_QP_STATE) ? C4IW_QP_ATTR_NEXT_STATE : 0;
1992 mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
1993 (C4IW_QP_ATTR_ENABLE_RDMA_READ |
1994 C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
1995 C4IW_QP_ATTR_ENABLE_RDMA_BIND) : 0;
1996
Vipul Pandya2c974782012-05-18 15:29:28 +05301997 /*
1998 * Use SQ_PSN and RQ_PSN to pass in IDX_INC values for
1999 * ringing the queue db when we're in DB_FULL mode.
Steve Wisec2f9da92014-04-24 14:32:04 -05002000 * Only allow this on T4 devices.
Vipul Pandya2c974782012-05-18 15:29:28 +05302001 */
2002 attrs.sq_db_inc = attr->sq_psn;
2003 attrs.rq_db_inc = attr->rq_psn;
2004 mask |= (attr_mask & IB_QP_SQ_PSN) ? C4IW_QP_ATTR_SQ_DB : 0;
2005 mask |= (attr_mask & IB_QP_RQ_PSN) ? C4IW_QP_ATTR_RQ_DB : 0;
Hariprasad S963cab52015-09-23 17:19:27 +05302006 if (!is_t4(to_c4iw_qp(ibqp)->rhp->rdev.lldi.adapter_type) &&
Steve Wisec2f9da92014-04-24 14:32:04 -05002007 (mask & (C4IW_QP_ATTR_SQ_DB|C4IW_QP_ATTR_RQ_DB)))
2008 return -EINVAL;
Vipul Pandya2c974782012-05-18 15:29:28 +05302009
Steve Wisecfdda9d2010-04-21 15:30:06 -07002010 return c4iw_modify_qp(rhp, qhp, mask, &attrs, 0);
2011}
2012
2013struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn)
2014{
Bharat Potnuri548ddb12017-09-27 13:05:49 +05302015 pr_debug("ib_dev %p qpn 0x%x\n", dev, qpn);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002016 return (struct ib_qp *)get_qhp(to_c4iw_dev(dev), qpn);
2017}
Vipul Pandya67bbc052012-05-18 15:29:33 +05302018
2019int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
2020 int attr_mask, struct ib_qp_init_attr *init_attr)
2021{
2022 struct c4iw_qp *qhp = to_c4iw_qp(ibqp);
2023
2024 memset(attr, 0, sizeof *attr);
2025 memset(init_attr, 0, sizeof *init_attr);
2026 attr->qp_state = to_ib_qp_state(qhp->attr.state);
Hariprasad Shenai3e5c02c2014-07-21 20:55:14 +05302027 init_attr->cap.max_send_wr = qhp->attr.sq_num_entries;
2028 init_attr->cap.max_recv_wr = qhp->attr.rq_num_entries;
2029 init_attr->cap.max_send_sge = qhp->attr.sq_max_sges;
2030 init_attr->cap.max_recv_sge = qhp->attr.sq_max_sges;
2031 init_attr->cap.max_inline_data = T4_MAX_SEND_INLINE;
2032 init_attr->sq_sig_type = qhp->sq_sig_all ? IB_SIGNAL_ALL_WR : 0;
Vipul Pandya67bbc052012-05-18 15:29:33 +05302033 return 0;
2034}