blob: 108c8837ba58ac7ad5508efba8bc21b6b5729132 [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,
197 struct c4iw_dev_ucontext *uctx)
198{
199 int user = (uctx != &rdev->uctx);
200 struct fw_ri_res_wr *res_wr;
201 struct fw_ri_res *res;
202 int wr_len;
203 struct c4iw_wr_wait wr_wait;
204 struct sk_buff *skb;
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 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700257 PDBG("%s sq base va 0x%p pa 0x%llx rq base va 0x%p pa 0x%llx\n",
258 __func__, wq->sq.queue,
259 (unsigned long long)virt_to_phys(wq->sq.queue),
260 wq->rq.queue,
261 (unsigned long long)virt_to_phys(wq->rq.queue));
262 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)) {
Hariprasad S74217d42015-06-09 18:23:12 +0530278 pr_warn(MOD "%s: sqid %u or rqid %u not in BAR2 range.\n",
279 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
296 res_wr = (struct fw_ri_res_wr *)__skb_put(skb, wr_len);
297 memset(res_wr, 0, wr_len);
298 res_wr->op_nres = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530299 FW_WR_OP_V(FW_RI_RES_WR) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530300 FW_RI_RES_WR_NRES_V(2) |
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530301 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700302 res_wr->len16_pkd = cpu_to_be32(DIV_ROUND_UP(wr_len, 16));
Hariprasad S6198dd82015-04-22 01:44:59 +0530303 res_wr->cookie = (uintptr_t)&wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700304 res = res_wr->res;
305 res->u.sqrq.restype = FW_RI_RES_TYPE_SQ;
306 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
307
308 /*
309 * eqsize is the number of 64B entries plus the status page size.
310 */
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530311 eqsize = wq->sq.size * T4_SQ_NUM_SLOTS +
312 rdev->hw_queue.t4_eq_status_entries;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700313
314 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530315 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
316 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
317 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
318 (t4_sq_onchip(&wq->sq) ? FW_RI_RES_WR_ONCHIP_F : 0) |
319 FW_RI_RES_WR_IQID_V(scq->cqid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700320 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530321 FW_RI_RES_WR_DCAEN_V(0) |
322 FW_RI_RES_WR_DCACPU_V(0) |
323 FW_RI_RES_WR_FBMIN_V(2) |
Steve Wiseb414fa02016-12-15 08:09:35 -0800324 (t4_sq_onchip(&wq->sq) ? FW_RI_RES_WR_FBMAX_V(2) :
325 FW_RI_RES_WR_FBMAX_V(3)) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530326 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
327 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
328 FW_RI_RES_WR_EQSIZE_V(eqsize));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700329 res->u.sqrq.eqid = cpu_to_be32(wq->sq.qid);
330 res->u.sqrq.eqaddr = cpu_to_be64(wq->sq.dma_addr);
331 res++;
332 res->u.sqrq.restype = FW_RI_RES_TYPE_RQ;
333 res->u.sqrq.op = FW_RI_RES_OP_WRITE;
334
335 /*
336 * eqsize is the number of 64B entries plus the status page size.
337 */
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530338 eqsize = wq->rq.size * T4_RQ_NUM_SLOTS +
339 rdev->hw_queue.t4_eq_status_entries;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700340 res->u.sqrq.fetchszm_to_iqid = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530341 FW_RI_RES_WR_HOSTFCMODE_V(0) | /* no host cidx updates */
342 FW_RI_RES_WR_CPRIO_V(0) | /* don't keep in chip cache */
343 FW_RI_RES_WR_PCIECHN_V(0) | /* set by uP at ri_init time */
344 FW_RI_RES_WR_IQID_V(rcq->cqid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700345 res->u.sqrq.dcaen_to_eqsize = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530346 FW_RI_RES_WR_DCAEN_V(0) |
347 FW_RI_RES_WR_DCACPU_V(0) |
348 FW_RI_RES_WR_FBMIN_V(2) |
Steve Wiseb414fa02016-12-15 08:09:35 -0800349 FW_RI_RES_WR_FBMAX_V(3) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530350 FW_RI_RES_WR_CIDXFTHRESHO_V(0) |
351 FW_RI_RES_WR_CIDXFTHRESH_V(0) |
352 FW_RI_RES_WR_EQSIZE_V(eqsize));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700353 res->u.sqrq.eqid = cpu_to_be32(wq->rq.qid);
354 res->u.sqrq.eqaddr = cpu_to_be64(wq->rq.dma_addr);
355
356 c4iw_init_wr_wait(&wr_wait);
357
358 ret = c4iw_ofld_send(rdev, skb);
359 if (ret)
Emil Goodec079c282012-08-19 17:59:40 +0000360 goto free_dma;
Steve Wiseaadc4df2010-09-10 11:15:25 -0500361 ret = c4iw_wait_for_reply(rdev, &wr_wait, 0, wq->sq.qid, __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700362 if (ret)
Emil Goodec079c282012-08-19 17:59:40 +0000363 goto free_dma;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700364
Hariprasad S74217d42015-06-09 18:23:12 +0530365 PDBG("%s sqid 0x%x rqid 0x%x kdb 0x%p sq_bar2_addr %p rq_bar2_addr %p\n",
Steve Wisecfdda9d2010-04-21 15:30:06 -0700366 __func__, wq->sq.qid, wq->rq.qid, wq->db,
Hariprasad S74217d42015-06-09 18:23:12 +0530367 wq->sq.bar2_va, wq->rq.bar2_va);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700368
369 return 0;
Emil Goodec079c282012-08-19 17:59:40 +0000370free_dma:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700371 dma_free_coherent(&(rdev->lldi.pdev->dev),
372 wq->rq.memsize, wq->rq.queue,
FUJITA Tomonorif38926a2010-06-03 05:37:50 +0000373 dma_unmap_addr(&wq->rq, mapping));
Emil Goodec079c282012-08-19 17:59:40 +0000374free_sq:
Steve Wisec6d7b262010-09-13 11:23:57 -0500375 dealloc_sq(rdev, &wq->sq);
Emil Goodec079c282012-08-19 17:59:40 +0000376free_hwaddr:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700377 c4iw_rqtpool_free(rdev, wq->rq.rqt_hwaddr, wq->rq.rqt_size);
Emil Goodec079c282012-08-19 17:59:40 +0000378free_sw_rq:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700379 kfree(wq->rq.sw_rq);
Emil Goodec079c282012-08-19 17:59:40 +0000380free_sw_sq:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700381 kfree(wq->sq.sw_sq);
Emil Goodec079c282012-08-19 17:59:40 +0000382free_rq_qid:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700383 c4iw_put_qpid(rdev, wq->rq.qid, uctx);
Emil Goodec079c282012-08-19 17:59:40 +0000384free_sq_qid:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700385 c4iw_put_qpid(rdev, wq->sq.qid, uctx);
Emil Goodec079c282012-08-19 17:59:40 +0000386 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700387}
388
Steve Wised37ac312010-06-10 19:03:00 +0000389static int build_immd(struct t4_sq *sq, struct fw_ri_immd *immdp,
390 struct ib_send_wr *wr, int max, u32 *plenp)
391{
392 u8 *dstp, *srcp;
393 u32 plen = 0;
394 int i;
395 int rem, len;
396
397 dstp = (u8 *)immdp->data;
398 for (i = 0; i < wr->num_sge; i++) {
399 if ((plen + wr->sg_list[i].length) > max)
400 return -EMSGSIZE;
401 srcp = (u8 *)(unsigned long)wr->sg_list[i].addr;
402 plen += wr->sg_list[i].length;
403 rem = wr->sg_list[i].length;
404 while (rem) {
405 if (dstp == (u8 *)&sq->queue[sq->size])
406 dstp = (u8 *)sq->queue;
407 if (rem <= (u8 *)&sq->queue[sq->size] - dstp)
408 len = rem;
409 else
410 len = (u8 *)&sq->queue[sq->size] - dstp;
411 memcpy(dstp, srcp, len);
412 dstp += len;
413 srcp += len;
414 rem -= len;
415 }
416 }
Steve Wise13fecb82010-09-10 11:14:53 -0500417 len = roundup(plen + sizeof *immdp, 16) - (plen + sizeof *immdp);
418 if (len)
419 memset(dstp, 0, len);
Steve Wised37ac312010-06-10 19:03:00 +0000420 immdp->op = FW_RI_DATA_IMMD;
421 immdp->r1 = 0;
422 immdp->r2 = 0;
423 immdp->immdlen = cpu_to_be32(plen);
424 *plenp = plen;
425 return 0;
426}
427
428static int build_isgl(__be64 *queue_start, __be64 *queue_end,
429 struct fw_ri_isgl *isglp, struct ib_sge *sg_list,
430 int num_sge, u32 *plenp)
431
Steve Wisecfdda9d2010-04-21 15:30:06 -0700432{
433 int i;
Steve Wised37ac312010-06-10 19:03:00 +0000434 u32 plen = 0;
435 __be64 *flitp = (__be64 *)isglp->sge;
436
437 for (i = 0; i < num_sge; i++) {
438 if ((plen + sg_list[i].length) < plen)
439 return -EMSGSIZE;
440 plen += sg_list[i].length;
441 *flitp = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
442 sg_list[i].length);
443 if (++flitp == queue_end)
444 flitp = queue_start;
445 *flitp = cpu_to_be64(sg_list[i].addr);
446 if (++flitp == queue_end)
447 flitp = queue_start;
448 }
Steve Wise13fecb82010-09-10 11:14:53 -0500449 *flitp = (__force __be64)0;
Steve Wised37ac312010-06-10 19:03:00 +0000450 isglp->op = FW_RI_DATA_ISGL;
451 isglp->r1 = 0;
452 isglp->nsge = cpu_to_be16(num_sge);
453 isglp->r2 = 0;
454 if (plenp)
455 *plenp = plen;
456 return 0;
457}
458
459static int build_rdma_send(struct t4_sq *sq, union t4_wr *wqe,
460 struct ib_send_wr *wr, u8 *len16)
461{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700462 u32 plen;
463 int size;
Steve Wised37ac312010-06-10 19:03:00 +0000464 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700465
466 if (wr->num_sge > T4_MAX_SEND_SGE)
467 return -EINVAL;
468 switch (wr->opcode) {
469 case IB_WR_SEND:
470 if (wr->send_flags & IB_SEND_SOLICITED)
471 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530472 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700473 else
474 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530475 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700476 wqe->send.stag_inv = 0;
477 break;
478 case IB_WR_SEND_WITH_INV:
479 if (wr->send_flags & IB_SEND_SOLICITED)
480 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530481 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_SE_INV));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700482 else
483 wqe->send.sendop_pkd = cpu_to_be32(
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530484 FW_RI_SEND_WR_SENDOP_V(FW_RI_SEND_WITH_INV));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700485 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
486 break;
487
488 default:
489 return -EINVAL;
490 }
Steve Wisec3f98fa2014-04-09 09:38:27 -0500491 wqe->send.r3 = 0;
492 wqe->send.r4 = 0;
Steve Wised37ac312010-06-10 19:03:00 +0000493
Steve Wisecfdda9d2010-04-21 15:30:06 -0700494 plen = 0;
495 if (wr->num_sge) {
496 if (wr->send_flags & IB_SEND_INLINE) {
Steve Wised37ac312010-06-10 19:03:00 +0000497 ret = build_immd(sq, wqe->send.u.immd_src, wr,
498 T4_MAX_SEND_INLINE, &plen);
499 if (ret)
500 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700501 size = sizeof wqe->send + sizeof(struct fw_ri_immd) +
502 plen;
503 } else {
Steve Wised37ac312010-06-10 19:03:00 +0000504 ret = build_isgl((__be64 *)sq->queue,
505 (__be64 *)&sq->queue[sq->size],
506 wqe->send.u.isgl_src,
507 wr->sg_list, wr->num_sge, &plen);
508 if (ret)
509 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700510 size = sizeof wqe->send + sizeof(struct fw_ri_isgl) +
511 wr->num_sge * sizeof(struct fw_ri_sge);
512 }
513 } else {
514 wqe->send.u.immd_src[0].op = FW_RI_DATA_IMMD;
515 wqe->send.u.immd_src[0].r1 = 0;
516 wqe->send.u.immd_src[0].r2 = 0;
517 wqe->send.u.immd_src[0].immdlen = 0;
518 size = sizeof wqe->send + sizeof(struct fw_ri_immd);
Steve Wised37ac312010-06-10 19:03:00 +0000519 plen = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700520 }
521 *len16 = DIV_ROUND_UP(size, 16);
522 wqe->send.plen = cpu_to_be32(plen);
523 return 0;
524}
525
Steve Wised37ac312010-06-10 19:03:00 +0000526static int build_rdma_write(struct t4_sq *sq, union t4_wr *wqe,
527 struct ib_send_wr *wr, u8 *len16)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700528{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700529 u32 plen;
530 int size;
Steve Wised37ac312010-06-10 19:03:00 +0000531 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700532
Steve Wised37ac312010-06-10 19:03:00 +0000533 if (wr->num_sge > T4_MAX_SEND_SGE)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700534 return -EINVAL;
535 wqe->write.r2 = 0;
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100536 wqe->write.stag_sink = cpu_to_be32(rdma_wr(wr)->rkey);
537 wqe->write.to_sink = cpu_to_be64(rdma_wr(wr)->remote_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700538 if (wr->num_sge) {
539 if (wr->send_flags & IB_SEND_INLINE) {
Steve Wised37ac312010-06-10 19:03:00 +0000540 ret = build_immd(sq, wqe->write.u.immd_src, wr,
541 T4_MAX_WRITE_INLINE, &plen);
542 if (ret)
543 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700544 size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
545 plen;
546 } else {
Steve Wised37ac312010-06-10 19:03:00 +0000547 ret = build_isgl((__be64 *)sq->queue,
548 (__be64 *)&sq->queue[sq->size],
549 wqe->write.u.isgl_src,
550 wr->sg_list, wr->num_sge, &plen);
551 if (ret)
552 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700553 size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
554 wr->num_sge * sizeof(struct fw_ri_sge);
555 }
556 } else {
557 wqe->write.u.immd_src[0].op = FW_RI_DATA_IMMD;
558 wqe->write.u.immd_src[0].r1 = 0;
559 wqe->write.u.immd_src[0].r2 = 0;
560 wqe->write.u.immd_src[0].immdlen = 0;
561 size = sizeof wqe->write + sizeof(struct fw_ri_immd);
Steve Wised37ac312010-06-10 19:03:00 +0000562 plen = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700563 }
564 *len16 = DIV_ROUND_UP(size, 16);
565 wqe->write.plen = cpu_to_be32(plen);
566 return 0;
567}
568
569static int build_rdma_read(union t4_wr *wqe, struct ib_send_wr *wr, u8 *len16)
570{
571 if (wr->num_sge > 1)
572 return -EINVAL;
573 if (wr->num_sge) {
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100574 wqe->read.stag_src = cpu_to_be32(rdma_wr(wr)->rkey);
575 wqe->read.to_src_hi = cpu_to_be32((u32)(rdma_wr(wr)->remote_addr
Steve Wisecfdda9d2010-04-21 15:30:06 -0700576 >> 32));
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100577 wqe->read.to_src_lo = cpu_to_be32((u32)rdma_wr(wr)->remote_addr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700578 wqe->read.stag_sink = cpu_to_be32(wr->sg_list[0].lkey);
579 wqe->read.plen = cpu_to_be32(wr->sg_list[0].length);
580 wqe->read.to_sink_hi = cpu_to_be32((u32)(wr->sg_list[0].addr
581 >> 32));
582 wqe->read.to_sink_lo = cpu_to_be32((u32)(wr->sg_list[0].addr));
583 } else {
584 wqe->read.stag_src = cpu_to_be32(2);
585 wqe->read.to_src_hi = 0;
586 wqe->read.to_src_lo = 0;
587 wqe->read.stag_sink = cpu_to_be32(2);
588 wqe->read.plen = 0;
589 wqe->read.to_sink_hi = 0;
590 wqe->read.to_sink_lo = 0;
591 }
592 wqe->read.r2 = 0;
593 wqe->read.r5 = 0;
594 *len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
595 return 0;
596}
597
598static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe,
599 struct ib_recv_wr *wr, u8 *len16)
600{
Steve Wised37ac312010-06-10 19:03:00 +0000601 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700602
Steve Wised37ac312010-06-10 19:03:00 +0000603 ret = build_isgl((__be64 *)qhp->wq.rq.queue,
604 (__be64 *)&qhp->wq.rq.queue[qhp->wq.rq.size],
605 &wqe->recv.isgl, wr->sg_list, wr->num_sge, NULL);
606 if (ret)
607 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700608 *len16 = DIV_ROUND_UP(sizeof wqe->recv +
609 wr->num_sge * sizeof(struct fw_ri_sge), 16);
610 return 0;
611}
612
Steve Wise49b53a92016-09-16 07:54:52 -0700613static void build_tpte_memreg(struct fw_ri_fr_nsmr_tpte_wr *fr,
614 struct ib_reg_wr *wr, struct c4iw_mr *mhp,
615 u8 *len16)
Sagi Grimberg8376b862015-10-13 19:11:30 +0300616{
Steve Wise49b53a92016-09-16 07:54:52 -0700617 __be64 *p = (__be64 *)fr->pbl;
618
619 fr->r2 = cpu_to_be32(0);
620 fr->stag = cpu_to_be32(mhp->ibmr.rkey);
621
622 fr->tpte.valid_to_pdid = cpu_to_be32(FW_RI_TPTE_VALID_F |
623 FW_RI_TPTE_STAGKEY_V((mhp->ibmr.rkey & FW_RI_TPTE_STAGKEY_M)) |
624 FW_RI_TPTE_STAGSTATE_V(1) |
625 FW_RI_TPTE_STAGTYPE_V(FW_RI_STAG_NSMR) |
626 FW_RI_TPTE_PDID_V(mhp->attr.pdid));
627 fr->tpte.locread_to_qpid = cpu_to_be32(
628 FW_RI_TPTE_PERM_V(c4iw_ib_to_tpt_access(wr->access)) |
629 FW_RI_TPTE_ADDRTYPE_V(FW_RI_VA_BASED_TO) |
630 FW_RI_TPTE_PS_V(ilog2(wr->mr->page_size) - 12));
631 fr->tpte.nosnoop_pbladdr = cpu_to_be32(FW_RI_TPTE_PBLADDR_V(
632 PBL_OFF(&mhp->rhp->rdev, mhp->attr.pbl_addr)>>3));
633 fr->tpte.dca_mwbcnt_pstag = cpu_to_be32(0);
634 fr->tpte.len_hi = cpu_to_be32(0);
635 fr->tpte.len_lo = cpu_to_be32(mhp->ibmr.length);
636 fr->tpte.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
637 fr->tpte.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova & 0xffffffff);
638
639 p[0] = cpu_to_be64((u64)mhp->mpl[0]);
640 p[1] = cpu_to_be64((u64)mhp->mpl[1]);
641
642 *len16 = DIV_ROUND_UP(sizeof(*fr), 16);
643}
644
645static int build_memreg(struct t4_sq *sq, union t4_wr *wqe,
646 struct ib_reg_wr *wr, struct c4iw_mr *mhp, u8 *len16,
647 bool dsgl_supported)
648{
Sagi Grimberg8376b862015-10-13 19:11:30 +0300649 struct fw_ri_immd *imdp;
650 __be64 *p;
651 int i;
652 int pbllen = roundup(mhp->mpl_len * sizeof(u64), 32);
653 int rem;
654
Hariprasad See30f7d2016-02-12 16:10:35 +0530655 if (mhp->mpl_len > t4_max_fr_depth(dsgl_supported && use_dsgl))
Sagi Grimberg8376b862015-10-13 19:11:30 +0300656 return -EINVAL;
657
658 wqe->fr.qpbinde_to_dcacpu = 0;
659 wqe->fr.pgsz_shift = ilog2(wr->mr->page_size) - 12;
660 wqe->fr.addr_type = FW_RI_VA_BASED_TO;
661 wqe->fr.mem_perms = c4iw_ib_to_tpt_access(wr->access);
662 wqe->fr.len_hi = 0;
663 wqe->fr.len_lo = cpu_to_be32(mhp->ibmr.length);
664 wqe->fr.stag = cpu_to_be32(wr->key);
665 wqe->fr.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
666 wqe->fr.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova &
667 0xffffffff);
668
Hariprasad See30f7d2016-02-12 16:10:35 +0530669 if (dsgl_supported && use_dsgl && (pbllen > max_fr_immd)) {
Sagi Grimberg8376b862015-10-13 19:11:30 +0300670 struct fw_ri_dsgl *sglp;
671
672 for (i = 0; i < mhp->mpl_len; i++)
673 mhp->mpl[i] = (__force u64)cpu_to_be64((u64)mhp->mpl[i]);
674
675 sglp = (struct fw_ri_dsgl *)(&wqe->fr + 1);
676 sglp->op = FW_RI_DATA_DSGL;
677 sglp->r1 = 0;
678 sglp->nsge = cpu_to_be16(1);
679 sglp->addr0 = cpu_to_be64(mhp->mpl_addr);
680 sglp->len0 = cpu_to_be32(pbllen);
681
682 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*sglp), 16);
683 } else {
684 imdp = (struct fw_ri_immd *)(&wqe->fr + 1);
685 imdp->op = FW_RI_DATA_IMMD;
686 imdp->r1 = 0;
687 imdp->r2 = 0;
688 imdp->immdlen = cpu_to_be32(pbllen);
689 p = (__be64 *)(imdp + 1);
690 rem = pbllen;
691 for (i = 0; i < mhp->mpl_len; i++) {
692 *p = cpu_to_be64((u64)mhp->mpl[i]);
693 rem -= sizeof(*p);
694 if (++p == (__be64 *)&sq->queue[sq->size])
695 p = (__be64 *)sq->queue;
696 }
697 BUG_ON(rem < 0);
698 while (rem) {
699 *p = 0;
700 rem -= sizeof(*p);
701 if (++p == (__be64 *)&sq->queue[sq->size])
702 p = (__be64 *)sq->queue;
703 }
704 *len16 = DIV_ROUND_UP(sizeof(wqe->fr) + sizeof(*imdp)
705 + pbllen, 16);
706 }
707 return 0;
708}
709
Steve Wise49b53a92016-09-16 07:54:52 -0700710static int build_inv_stag(struct c4iw_dev *dev, union t4_wr *wqe,
711 struct ib_send_wr *wr, u8 *len16)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700712{
Steve Wise49b53a92016-09-16 07:54:52 -0700713 struct c4iw_mr *mhp = get_mhp(dev, wr->ex.invalidate_rkey >> 8);
714
715 mhp->attr.state = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700716 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
717 wqe->inv.r2 = 0;
718 *len16 = DIV_ROUND_UP(sizeof wqe->inv, 16);
719 return 0;
720}
721
Baoyou Xie656aace2016-08-28 22:57:11 +0800722static void _free_qp(struct kref *kref)
Steve Wisead61a4c2016-07-29 11:00:54 -0700723{
724 struct c4iw_qp *qhp;
725
726 qhp = container_of(kref, struct c4iw_qp, kref);
727 PDBG("%s qhp %p\n", __func__, qhp);
728 kfree(qhp);
729}
730
Steve Wisecfdda9d2010-04-21 15:30:06 -0700731void c4iw_qp_add_ref(struct ib_qp *qp)
732{
733 PDBG("%s ib_qp %p\n", __func__, qp);
Steve Wisead61a4c2016-07-29 11:00:54 -0700734 kref_get(&to_c4iw_qp(qp)->kref);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700735}
736
737void c4iw_qp_rem_ref(struct ib_qp *qp)
738{
739 PDBG("%s ib_qp %p\n", __func__, qp);
Steve Wisead61a4c2016-07-29 11:00:54 -0700740 kref_put(&to_c4iw_qp(qp)->kref, _free_qp);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700741}
742
Steve Wise05eb2382014-03-14 21:52:08 +0530743static void add_to_fc_list(struct list_head *head, struct list_head *entry)
744{
745 if (list_empty(entry))
746 list_add_tail(entry, head);
747}
748
749static int ring_kernel_sq_db(struct c4iw_qp *qhp, u16 inc)
750{
751 unsigned long flags;
752
753 spin_lock_irqsave(&qhp->rhp->lock, flags);
754 spin_lock(&qhp->lock);
Steve Wisefa658a92014-04-09 09:38:25 -0500755 if (qhp->rhp->db_state == NORMAL)
Hariprasad S963cab52015-09-23 17:19:27 +0530756 t4_ring_sq_db(&qhp->wq, inc, NULL);
Steve Wisefa658a92014-04-09 09:38:25 -0500757 else {
Steve Wise05eb2382014-03-14 21:52:08 +0530758 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
759 qhp->wq.sq.wq_pidx_inc += inc;
760 }
761 spin_unlock(&qhp->lock);
762 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
763 return 0;
764}
765
766static int ring_kernel_rq_db(struct c4iw_qp *qhp, u16 inc)
767{
768 unsigned long flags;
769
770 spin_lock_irqsave(&qhp->rhp->lock, flags);
771 spin_lock(&qhp->lock);
Steve Wisefa658a92014-04-09 09:38:25 -0500772 if (qhp->rhp->db_state == NORMAL)
Hariprasad S963cab52015-09-23 17:19:27 +0530773 t4_ring_rq_db(&qhp->wq, inc, NULL);
Steve Wisefa658a92014-04-09 09:38:25 -0500774 else {
Steve Wise05eb2382014-03-14 21:52:08 +0530775 add_to_fc_list(&qhp->rhp->db_fc_list, &qhp->db_fc_entry);
776 qhp->wq.rq.wq_pidx_inc += inc;
777 }
778 spin_unlock(&qhp->lock);
779 spin_unlock_irqrestore(&qhp->rhp->lock, flags);
780 return 0;
781}
782
Steve Wisecfdda9d2010-04-21 15:30:06 -0700783int c4iw_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr,
784 struct ib_send_wr **bad_wr)
785{
786 int err = 0;
787 u8 len16 = 0;
788 enum fw_wr_opcodes fw_opcode = 0;
789 enum fw_ri_wr_flags fw_flags;
790 struct c4iw_qp *qhp;
Steve Wisefa658a92014-04-09 09:38:25 -0500791 union t4_wr *wqe = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700792 u32 num_wrs;
793 struct t4_swsqe *swsqe;
794 unsigned long flag;
795 u16 idx = 0;
796
797 qhp = to_c4iw_qp(ibqp);
798 spin_lock_irqsave(&qhp->lock, flag);
799 if (t4_wq_in_error(&qhp->wq)) {
800 spin_unlock_irqrestore(&qhp->lock, flag);
801 return -EINVAL;
802 }
803 num_wrs = t4_sq_avail(&qhp->wq);
804 if (num_wrs == 0) {
805 spin_unlock_irqrestore(&qhp->lock, flag);
806 return -ENOMEM;
807 }
808 while (wr) {
809 if (num_wrs == 0) {
810 err = -ENOMEM;
811 *bad_wr = wr;
812 break;
813 }
Steve Wised37ac312010-06-10 19:03:00 +0000814 wqe = (union t4_wr *)((u8 *)qhp->wq.sq.queue +
815 qhp->wq.sq.wq_pidx * T4_EQ_ENTRY_SIZE);
816
Steve Wisecfdda9d2010-04-21 15:30:06 -0700817 fw_flags = 0;
818 if (wr->send_flags & IB_SEND_SOLICITED)
819 fw_flags |= FW_RI_SOLICITED_EVENT_FLAG;
Steve Wiseba32de92014-03-19 17:44:43 +0530820 if (wr->send_flags & IB_SEND_SIGNALED || qhp->sq_sig_all)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700821 fw_flags |= FW_RI_COMPLETION_FLAG;
822 swsqe = &qhp->wq.sq.sw_sq[qhp->wq.sq.pidx];
823 switch (wr->opcode) {
824 case IB_WR_SEND_WITH_INV:
825 case IB_WR_SEND:
826 if (wr->send_flags & IB_SEND_FENCE)
827 fw_flags |= FW_RI_READ_FENCE_FLAG;
828 fw_opcode = FW_RI_SEND_WR;
829 if (wr->opcode == IB_WR_SEND)
830 swsqe->opcode = FW_RI_SEND;
831 else
832 swsqe->opcode = FW_RI_SEND_WITH_INV;
Steve Wised37ac312010-06-10 19:03:00 +0000833 err = build_rdma_send(&qhp->wq.sq, wqe, wr, &len16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700834 break;
835 case IB_WR_RDMA_WRITE:
836 fw_opcode = FW_RI_RDMA_WRITE_WR;
837 swsqe->opcode = FW_RI_RDMA_WRITE;
Steve Wised37ac312010-06-10 19:03:00 +0000838 err = build_rdma_write(&qhp->wq.sq, wqe, wr, &len16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700839 break;
840 case IB_WR_RDMA_READ:
Steve Wise2f1fb502010-05-20 16:58:16 -0500841 case IB_WR_RDMA_READ_WITH_INV:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700842 fw_opcode = FW_RI_RDMA_READ_WR;
843 swsqe->opcode = FW_RI_READ_REQ;
Steve Wise2f1fb502010-05-20 16:58:16 -0500844 if (wr->opcode == IB_WR_RDMA_READ_WITH_INV)
Steve Wise410ade42010-09-17 15:40:09 -0500845 fw_flags = FW_RI_RDMA_READ_INVALIDATE;
Steve Wise2f1fb502010-05-20 16:58:16 -0500846 else
847 fw_flags = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700848 err = build_rdma_read(wqe, wr, &len16);
849 if (err)
850 break;
851 swsqe->read_len = wr->sg_list[0].length;
852 if (!qhp->wq.sq.oldest_read)
853 qhp->wq.sq.oldest_read = swsqe;
854 break;
Steve Wise49b53a92016-09-16 07:54:52 -0700855 case IB_WR_REG_MR: {
856 struct c4iw_mr *mhp = to_c4iw_mr(reg_wr(wr)->mr);
857
Sagi Grimberg8376b862015-10-13 19:11:30 +0300858 swsqe->opcode = FW_RI_FAST_REGISTER;
Steve Wise49b53a92016-09-16 07:54:52 -0700859 if (qhp->rhp->rdev.lldi.fr_nsmr_tpte_wr_support &&
860 !mhp->attr.state && mhp->mpl_len <= 2) {
861 fw_opcode = FW_RI_FR_NSMR_TPTE_WR;
862 build_tpte_memreg(&wqe->fr_tpte, reg_wr(wr),
863 mhp, &len16);
864 } else {
865 fw_opcode = FW_RI_FR_NSMR_WR;
866 err = build_memreg(&qhp->wq.sq, wqe, reg_wr(wr),
867 mhp, &len16,
868 qhp->rhp->rdev.lldi.ulptx_memwrite_dsgl);
869 if (err)
870 break;
871 }
872 mhp->attr.state = 1;
Sagi Grimberg8376b862015-10-13 19:11:30 +0300873 break;
Steve Wise49b53a92016-09-16 07:54:52 -0700874 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700875 case IB_WR_LOCAL_INV:
Steve Wise4ab1eb92010-05-20 16:58:10 -0500876 if (wr->send_flags & IB_SEND_FENCE)
877 fw_flags |= FW_RI_LOCAL_FENCE_FLAG;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700878 fw_opcode = FW_RI_INV_LSTAG_WR;
879 swsqe->opcode = FW_RI_LOCAL_INV;
Steve Wise49b53a92016-09-16 07:54:52 -0700880 err = build_inv_stag(qhp->rhp, wqe, wr, &len16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700881 break;
882 default:
883 PDBG("%s post of type=%d TBD!\n", __func__,
884 wr->opcode);
885 err = -EINVAL;
886 }
887 if (err) {
888 *bad_wr = wr;
889 break;
890 }
891 swsqe->idx = qhp->wq.sq.pidx;
892 swsqe->complete = 0;
Steve Wiseba32de92014-03-19 17:44:43 +0530893 swsqe->signaled = (wr->send_flags & IB_SEND_SIGNALED) ||
894 qhp->sq_sig_all;
Steve Wise1cf24dc2013-08-06 21:04:35 +0530895 swsqe->flushed = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700896 swsqe->wr_id = wr->wr_id;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530897 if (c4iw_wr_log) {
898 swsqe->sge_ts = cxgb4_read_sge_timestamp(
899 qhp->rhp->rdev.lldi.ports[0]);
900 getnstimeofday(&swsqe->host_ts);
901 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700902
903 init_wr_hdr(wqe, qhp->wq.sq.pidx, fw_opcode, fw_flags, len16);
904
905 PDBG("%s cookie 0x%llx pidx 0x%x opcode 0x%x read_len %u\n",
906 __func__, (unsigned long long)wr->wr_id, qhp->wq.sq.pidx,
907 swsqe->opcode, swsqe->read_len);
908 wr = wr->next;
909 num_wrs--;
Steve Wised37ac312010-06-10 19:03:00 +0000910 t4_sq_produce(&qhp->wq, len16);
911 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700912 }
Steve Wise05eb2382014-03-14 21:52:08 +0530913 if (!qhp->rhp->rdev.status_page->db_off) {
Hariprasad S963cab52015-09-23 17:19:27 +0530914 t4_ring_sq_db(&qhp->wq, idx, wqe);
Steve Wise05eb2382014-03-14 21:52:08 +0530915 spin_unlock_irqrestore(&qhp->lock, flag);
916 } else {
917 spin_unlock_irqrestore(&qhp->lock, flag);
918 ring_kernel_sq_db(qhp, idx);
919 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700920 return err;
921}
922
923int c4iw_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr,
924 struct ib_recv_wr **bad_wr)
925{
926 int err = 0;
927 struct c4iw_qp *qhp;
Steve Wisefa658a92014-04-09 09:38:25 -0500928 union t4_recv_wr *wqe = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700929 u32 num_wrs;
930 u8 len16 = 0;
931 unsigned long flag;
932 u16 idx = 0;
933
934 qhp = to_c4iw_qp(ibqp);
935 spin_lock_irqsave(&qhp->lock, flag);
936 if (t4_wq_in_error(&qhp->wq)) {
937 spin_unlock_irqrestore(&qhp->lock, flag);
938 return -EINVAL;
939 }
940 num_wrs = t4_rq_avail(&qhp->wq);
941 if (num_wrs == 0) {
942 spin_unlock_irqrestore(&qhp->lock, flag);
943 return -ENOMEM;
944 }
945 while (wr) {
946 if (wr->num_sge > T4_MAX_RECV_SGE) {
947 err = -EINVAL;
948 *bad_wr = wr;
949 break;
950 }
Steve Wised37ac312010-06-10 19:03:00 +0000951 wqe = (union t4_recv_wr *)((u8 *)qhp->wq.rq.queue +
952 qhp->wq.rq.wq_pidx *
953 T4_EQ_ENTRY_SIZE);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700954 if (num_wrs)
955 err = build_rdma_recv(qhp, wqe, wr, &len16);
956 else
957 err = -ENOMEM;
958 if (err) {
959 *bad_wr = wr;
960 break;
961 }
962
963 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].wr_id = wr->wr_id;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530964 if (c4iw_wr_log) {
965 qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].sge_ts =
966 cxgb4_read_sge_timestamp(
967 qhp->rhp->rdev.lldi.ports[0]);
968 getnstimeofday(
969 &qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].host_ts);
970 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700971
972 wqe->recv.opcode = FW_RI_RECV_WR;
973 wqe->recv.r1 = 0;
974 wqe->recv.wrid = qhp->wq.rq.pidx;
975 wqe->recv.r2[0] = 0;
976 wqe->recv.r2[1] = 0;
977 wqe->recv.r2[2] = 0;
978 wqe->recv.len16 = len16;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700979 PDBG("%s cookie 0x%llx pidx %u\n", __func__,
980 (unsigned long long) wr->wr_id, qhp->wq.rq.pidx);
Steve Wised37ac312010-06-10 19:03:00 +0000981 t4_rq_produce(&qhp->wq, len16);
982 idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700983 wr = wr->next;
984 num_wrs--;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700985 }
Steve Wise05eb2382014-03-14 21:52:08 +0530986 if (!qhp->rhp->rdev.status_page->db_off) {
Hariprasad S963cab52015-09-23 17:19:27 +0530987 t4_ring_rq_db(&qhp->wq, idx, wqe);
Steve Wise05eb2382014-03-14 21:52:08 +0530988 spin_unlock_irqrestore(&qhp->lock, flag);
989 } else {
990 spin_unlock_irqrestore(&qhp->lock, flag);
991 ring_kernel_rq_db(qhp, idx);
992 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700993 return err;
994}
995
Steve Wisecfdda9d2010-04-21 15:30:06 -0700996static inline void build_term_codes(struct t4_cqe *err_cqe, u8 *layer_type,
997 u8 *ecode)
998{
999 int status;
1000 int tagged;
1001 int opcode;
1002 int rqtype;
1003 int send_inv;
1004
1005 if (!err_cqe) {
1006 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1007 *ecode = 0;
1008 return;
1009 }
1010
1011 status = CQE_STATUS(err_cqe);
1012 opcode = CQE_OPCODE(err_cqe);
1013 rqtype = RQ_TYPE(err_cqe);
1014 send_inv = (opcode == FW_RI_SEND_WITH_INV) ||
1015 (opcode == FW_RI_SEND_WITH_SE_INV);
1016 tagged = (opcode == FW_RI_RDMA_WRITE) ||
1017 (rqtype && (opcode == FW_RI_READ_RESP));
1018
1019 switch (status) {
1020 case T4_ERR_STAG:
1021 if (send_inv) {
1022 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1023 *ecode = RDMAP_CANT_INV_STAG;
1024 } else {
1025 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1026 *ecode = RDMAP_INV_STAG;
1027 }
1028 break;
1029 case T4_ERR_PDID:
1030 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1031 if ((opcode == FW_RI_SEND_WITH_INV) ||
1032 (opcode == FW_RI_SEND_WITH_SE_INV))
1033 *ecode = RDMAP_CANT_INV_STAG;
1034 else
1035 *ecode = RDMAP_STAG_NOT_ASSOC;
1036 break;
1037 case T4_ERR_QPID:
1038 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1039 *ecode = RDMAP_STAG_NOT_ASSOC;
1040 break;
1041 case T4_ERR_ACCESS:
1042 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1043 *ecode = RDMAP_ACC_VIOL;
1044 break;
1045 case T4_ERR_WRAP:
1046 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1047 *ecode = RDMAP_TO_WRAP;
1048 break;
1049 case T4_ERR_BOUND:
1050 if (tagged) {
1051 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1052 *ecode = DDPT_BASE_BOUNDS;
1053 } else {
1054 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_PROT;
1055 *ecode = RDMAP_BASE_BOUNDS;
1056 }
1057 break;
1058 case T4_ERR_INVALIDATE_SHARED_MR:
1059 case T4_ERR_INVALIDATE_MR_WITH_MW_BOUND:
1060 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1061 *ecode = RDMAP_CANT_INV_STAG;
1062 break;
1063 case T4_ERR_ECC:
1064 case T4_ERR_ECC_PSTAG:
1065 case T4_ERR_INTERNAL_ERR:
1066 *layer_type = LAYER_RDMAP|RDMAP_LOCAL_CATA;
1067 *ecode = 0;
1068 break;
1069 case T4_ERR_OUT_OF_RQE:
1070 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1071 *ecode = DDPU_INV_MSN_NOBUF;
1072 break;
1073 case T4_ERR_PBL_ADDR_BOUND:
1074 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1075 *ecode = DDPT_BASE_BOUNDS;
1076 break;
1077 case T4_ERR_CRC:
1078 *layer_type = LAYER_MPA|DDP_LLP;
1079 *ecode = MPA_CRC_ERR;
1080 break;
1081 case T4_ERR_MARKER:
1082 *layer_type = LAYER_MPA|DDP_LLP;
1083 *ecode = MPA_MARKER_ERR;
1084 break;
1085 case T4_ERR_PDU_LEN_ERR:
1086 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1087 *ecode = DDPU_MSG_TOOBIG;
1088 break;
1089 case T4_ERR_DDP_VERSION:
1090 if (tagged) {
1091 *layer_type = LAYER_DDP|DDP_TAGGED_ERR;
1092 *ecode = DDPT_INV_VERS;
1093 } else {
1094 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1095 *ecode = DDPU_INV_VERS;
1096 }
1097 break;
1098 case T4_ERR_RDMA_VERSION:
1099 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1100 *ecode = RDMAP_INV_VERS;
1101 break;
1102 case T4_ERR_OPCODE:
1103 *layer_type = LAYER_RDMAP|RDMAP_REMOTE_OP;
1104 *ecode = RDMAP_INV_OPCODE;
1105 break;
1106 case T4_ERR_DDP_QUEUE_NUM:
1107 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1108 *ecode = DDPU_INV_QN;
1109 break;
1110 case T4_ERR_MSN:
1111 case T4_ERR_MSN_GAP:
1112 case T4_ERR_MSN_RANGE:
1113 case T4_ERR_IRD_OVERFLOW:
1114 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1115 *ecode = DDPU_INV_MSN_RANGE;
1116 break;
1117 case T4_ERR_TBIT:
1118 *layer_type = LAYER_DDP|DDP_LOCAL_CATA;
1119 *ecode = 0;
1120 break;
1121 case T4_ERR_MO:
1122 *layer_type = LAYER_DDP|DDP_UNTAGGED_ERR;
1123 *ecode = DDPU_INV_MO;
1124 break;
1125 default:
1126 *layer_type = LAYER_RDMAP|DDP_LOCAL_CATA;
1127 *ecode = 0;
1128 break;
1129 }
1130}
1131
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001132static void post_terminate(struct c4iw_qp *qhp, struct t4_cqe *err_cqe,
1133 gfp_t gfp)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001134{
1135 struct fw_ri_wr *wqe;
1136 struct sk_buff *skb;
1137 struct terminate_message *term;
1138
1139 PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
1140 qhp->ep->hwtid);
1141
Hariprasad S4a740832016-06-10 01:05:15 +05301142 skb = skb_dequeue(&qhp->ep->com.ep_skb_list);
1143 if (WARN_ON(!skb))
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001144 return;
Hariprasad S4a740832016-06-10 01:05:15 +05301145
Steve Wisecfdda9d2010-04-21 15:30:06 -07001146 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1147
1148 wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
1149 memset(wqe, 0, sizeof *wqe);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301150 wqe->op_compl = cpu_to_be32(FW_WR_OP_V(FW_RI_INIT_WR));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001151 wqe->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301152 FW_WR_FLOWID_V(qhp->ep->hwtid) |
1153 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001154
1155 wqe->u.terminate.type = FW_RI_TYPE_TERMINATE;
1156 wqe->u.terminate.immdlen = cpu_to_be32(sizeof *term);
1157 term = (struct terminate_message *)wqe->u.terminate.termmsg;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301158 if (qhp->attr.layer_etype == (LAYER_MPA|DDP_LLP)) {
1159 term->layer_etype = qhp->attr.layer_etype;
1160 term->ecode = qhp->attr.ecode;
1161 } else
1162 build_term_codes(err_cqe, &term->layer_etype, &term->ecode);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001163 c4iw_ofld_send(&qhp->rhp->rdev, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001164}
1165
1166/*
1167 * Assumes qhp lock is held.
1168 */
1169static void __flush_qp(struct c4iw_qp *qhp, struct c4iw_cq *rchp,
Steve Wise2f5b48c2010-09-10 11:15:36 -05001170 struct c4iw_cq *schp)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001171{
1172 int count;
Steve Wise678ea9b2014-07-31 14:35:43 -05001173 int rq_flushed, sq_flushed;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001174 unsigned long flag;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001175
1176 PDBG("%s qhp %p rchp %p schp %p\n", __func__, qhp, rchp, schp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001177
Uwe Kleine-König732bee72010-06-11 12:16:59 +02001178 /* locking hierarchy: cq lock first, then qp lock. */
Steve Wise2f5b48c2010-09-10 11:15:36 -05001179 spin_lock_irqsave(&rchp->lock, flag);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001180 spin_lock(&qhp->lock);
Steve Wise1cf24dc2013-08-06 21:04:35 +05301181
1182 if (qhp->wq.flushed) {
1183 spin_unlock(&qhp->lock);
1184 spin_unlock_irqrestore(&rchp->lock, flag);
1185 return;
1186 }
1187 qhp->wq.flushed = 1;
1188
1189 c4iw_flush_hw_cq(rchp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001190 c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
Steve Wise678ea9b2014-07-31 14:35:43 -05001191 rq_flushed = c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001192 spin_unlock(&qhp->lock);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001193 spin_unlock_irqrestore(&rchp->lock, flag);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001194
Uwe Kleine-König732bee72010-06-11 12:16:59 +02001195 /* locking hierarchy: cq lock first, then qp lock. */
Steve Wise2f5b48c2010-09-10 11:15:36 -05001196 spin_lock_irqsave(&schp->lock, flag);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001197 spin_lock(&qhp->lock);
Steve Wise1cf24dc2013-08-06 21:04:35 +05301198 if (schp != rchp)
1199 c4iw_flush_hw_cq(schp);
Steve Wise678ea9b2014-07-31 14:35:43 -05001200 sq_flushed = c4iw_flush_sq(qhp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001201 spin_unlock(&qhp->lock);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001202 spin_unlock_irqrestore(&schp->lock, flag);
Steve Wise678ea9b2014-07-31 14:35:43 -05001203
1204 if (schp == rchp) {
1205 if (t4_clear_cq_armed(&rchp->cq) &&
1206 (rq_flushed || sq_flushed)) {
1207 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
1208 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
1209 rchp->ibcq.cq_context);
1210 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1211 }
1212 } else {
1213 if (t4_clear_cq_armed(&rchp->cq) && rq_flushed) {
1214 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
1215 (*rchp->ibcq.comp_handler)(&rchp->ibcq,
1216 rchp->ibcq.cq_context);
1217 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
1218 }
1219 if (t4_clear_cq_armed(&schp->cq) && sq_flushed) {
1220 spin_lock_irqsave(&schp->comp_handler_lock, flag);
1221 (*schp->ibcq.comp_handler)(&schp->ibcq,
1222 schp->ibcq.cq_context);
1223 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
1224 }
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301225 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001226}
1227
Steve Wise2f5b48c2010-09-10 11:15:36 -05001228static void flush_qp(struct c4iw_qp *qhp)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001229{
1230 struct c4iw_cq *rchp, *schp;
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301231 unsigned long flag;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001232
Steve Wise1cf24dc2013-08-06 21:04:35 +05301233 rchp = to_c4iw_cq(qhp->ibqp.recv_cq);
1234 schp = to_c4iw_cq(qhp->ibqp.send_cq);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001235
Steve Wise1cf24dc2013-08-06 21:04:35 +05301236 t4_set_wq_in_error(&qhp->wq);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001237 if (qhp->ibqp.uobject) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001238 t4_set_cq_in_error(&rchp->cq);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301239 spin_lock_irqsave(&rchp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301240 (*rchp->ibcq.comp_handler)(&rchp->ibcq, rchp->ibcq.cq_context);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301241 spin_unlock_irqrestore(&rchp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301242 if (schp != rchp) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001243 t4_set_cq_in_error(&schp->cq);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301244 spin_lock_irqsave(&schp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301245 (*schp->ibcq.comp_handler)(&schp->ibcq,
1246 schp->ibcq.cq_context);
Kumar Sanghvi581bbe22011-10-24 21:20:21 +05301247 spin_unlock_irqrestore(&schp->comp_handler_lock, flag);
Kumar Sanghvi01e7da62011-10-13 13:51:30 +05301248 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001249 return;
1250 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001251 __flush_qp(qhp, rchp, schp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001252}
1253
Steve Wise73d6fca2010-07-23 19:12:27 +00001254static int rdma_fini(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1255 struct c4iw_ep *ep)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001256{
1257 struct fw_ri_wr *wqe;
1258 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001259 struct sk_buff *skb;
1260
1261 PDBG("%s qhp %p qid 0x%x tid %u\n", __func__, qhp, qhp->wq.sq.qid,
Steve Wise73d6fca2010-07-23 19:12:27 +00001262 ep->hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001263
Hariprasad S4a740832016-06-10 01:05:15 +05301264 skb = skb_dequeue(&ep->com.ep_skb_list);
1265 if (WARN_ON(!skb))
Steve Wisecfdda9d2010-04-21 15:30:06 -07001266 return -ENOMEM;
Hariprasad S4a740832016-06-10 01:05:15 +05301267
Steve Wise73d6fca2010-07-23 19:12:27 +00001268 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001269
1270 wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
1271 memset(wqe, 0, sizeof *wqe);
1272 wqe->op_compl = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301273 FW_WR_OP_V(FW_RI_INIT_WR) |
1274 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001275 wqe->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301276 FW_WR_FLOWID_V(ep->hwtid) |
1277 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
Hariprasad S6198dd82015-04-22 01:44:59 +05301278 wqe->cookie = (uintptr_t)&ep->com.wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001279
1280 wqe->u.fini.type = FW_RI_TYPE_FINI;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001281 ret = c4iw_ofld_send(&rhp->rdev, skb);
1282 if (ret)
1283 goto out;
1284
Steve Wise2f5b48c2010-09-10 11:15:36 -05001285 ret = c4iw_wait_for_reply(&rhp->rdev, &ep->com.wr_wait, qhp->ep->hwtid,
Steve Wiseaadc4df2010-09-10 11:15:25 -05001286 qhp->wq.sq.qid, __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001287out:
1288 PDBG("%s ret %d\n", __func__, ret);
1289 return ret;
1290}
1291
1292static void build_rtr_msg(u8 p2p_type, struct fw_ri_init *init)
1293{
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301294 PDBG("%s p2p_type = %d\n", __func__, p2p_type);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001295 memset(&init->u, 0, sizeof init->u);
1296 switch (p2p_type) {
1297 case FW_RI_INIT_P2PTYPE_RDMA_WRITE:
1298 init->u.write.opcode = FW_RI_RDMA_WRITE_WR;
1299 init->u.write.stag_sink = cpu_to_be32(1);
1300 init->u.write.to_sink = cpu_to_be64(1);
1301 init->u.write.u.immd_src[0].op = FW_RI_DATA_IMMD;
1302 init->u.write.len16 = DIV_ROUND_UP(sizeof init->u.write +
1303 sizeof(struct fw_ri_immd),
1304 16);
1305 break;
1306 case FW_RI_INIT_P2PTYPE_READ_REQ:
1307 init->u.write.opcode = FW_RI_RDMA_READ_WR;
1308 init->u.read.stag_src = cpu_to_be32(1);
1309 init->u.read.to_src_lo = cpu_to_be32(1);
1310 init->u.read.stag_sink = cpu_to_be32(1);
1311 init->u.read.to_sink_lo = cpu_to_be32(1);
1312 init->u.read.len16 = DIV_ROUND_UP(sizeof init->u.read, 16);
1313 break;
1314 }
1315}
1316
1317static int rdma_init(struct c4iw_dev *rhp, struct c4iw_qp *qhp)
1318{
1319 struct fw_ri_wr *wqe;
1320 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001321 struct sk_buff *skb;
1322
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301323 PDBG("%s qhp %p qid 0x%x tid %u ird %u ord %u\n", __func__, qhp,
1324 qhp->wq.sq.qid, qhp->ep->hwtid, qhp->ep->ird, qhp->ep->ord);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001325
David Rientjesd3c814e2010-07-21 02:44:56 +00001326 skb = alloc_skb(sizeof *wqe, GFP_KERNEL);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301327 if (!skb) {
1328 ret = -ENOMEM;
1329 goto out;
1330 }
1331 ret = alloc_ird(rhp, qhp->attr.max_ird);
1332 if (ret) {
1333 qhp->attr.max_ird = 0;
1334 kfree_skb(skb);
1335 goto out;
1336 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001337 set_wr_txq(skb, CPL_PRIORITY_DATA, qhp->ep->txq_idx);
1338
1339 wqe = (struct fw_ri_wr *)__skb_put(skb, sizeof(*wqe));
1340 memset(wqe, 0, sizeof *wqe);
1341 wqe->op_compl = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301342 FW_WR_OP_V(FW_RI_INIT_WR) |
1343 FW_WR_COMPL_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001344 wqe->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301345 FW_WR_FLOWID_V(qhp->ep->hwtid) |
1346 FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*wqe), 16)));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001347
Hariprasad S6198dd82015-04-22 01:44:59 +05301348 wqe->cookie = (uintptr_t)&qhp->ep->com.wr_wait;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001349
1350 wqe->u.init.type = FW_RI_TYPE_INIT;
1351 wqe->u.init.mpareqbit_p2ptype =
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05301352 FW_RI_WR_MPAREQBIT_V(qhp->attr.mpa_attr.initiator) |
1353 FW_RI_WR_P2PTYPE_V(qhp->attr.mpa_attr.p2p_type);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001354 wqe->u.init.mpa_attrs = FW_RI_MPA_IETF_ENABLE;
1355 if (qhp->attr.mpa_attr.recv_marker_enabled)
1356 wqe->u.init.mpa_attrs |= FW_RI_MPA_RX_MARKER_ENABLE;
1357 if (qhp->attr.mpa_attr.xmit_marker_enabled)
1358 wqe->u.init.mpa_attrs |= FW_RI_MPA_TX_MARKER_ENABLE;
1359 if (qhp->attr.mpa_attr.crc_enabled)
1360 wqe->u.init.mpa_attrs |= FW_RI_MPA_CRC_ENABLE;
1361
1362 wqe->u.init.qp_caps = FW_RI_QP_RDMA_READ_ENABLE |
1363 FW_RI_QP_RDMA_WRITE_ENABLE |
1364 FW_RI_QP_BIND_ENABLE;
1365 if (!qhp->ibqp.uobject)
1366 wqe->u.init.qp_caps |= FW_RI_QP_FAST_REGISTER_ENABLE |
1367 FW_RI_QP_STAG0_ENABLE;
1368 wqe->u.init.nrqe = cpu_to_be16(t4_rqes_posted(&qhp->wq));
1369 wqe->u.init.pdid = cpu_to_be32(qhp->attr.pd);
1370 wqe->u.init.qpid = cpu_to_be32(qhp->wq.sq.qid);
1371 wqe->u.init.sq_eqid = cpu_to_be32(qhp->wq.sq.qid);
1372 wqe->u.init.rq_eqid = cpu_to_be32(qhp->wq.rq.qid);
1373 wqe->u.init.scqid = cpu_to_be32(qhp->attr.scq);
1374 wqe->u.init.rcqid = cpu_to_be32(qhp->attr.rcq);
1375 wqe->u.init.ord_max = cpu_to_be32(qhp->attr.max_ord);
1376 wqe->u.init.ird_max = cpu_to_be32(qhp->attr.max_ird);
1377 wqe->u.init.iss = cpu_to_be32(qhp->ep->snd_seq);
1378 wqe->u.init.irs = cpu_to_be32(qhp->ep->rcv_seq);
1379 wqe->u.init.hwrqsize = cpu_to_be32(qhp->wq.rq.rqt_size);
1380 wqe->u.init.hwrqaddr = cpu_to_be32(qhp->wq.rq.rqt_hwaddr -
1381 rhp->rdev.lldi.vr->rq.start);
1382 if (qhp->attr.mpa_attr.initiator)
1383 build_rtr_msg(qhp->attr.mpa_attr.p2p_type, &wqe->u.init);
1384
Steve Wisecfdda9d2010-04-21 15:30:06 -07001385 ret = c4iw_ofld_send(&rhp->rdev, skb);
1386 if (ret)
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301387 goto err1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001388
Steve Wise2f5b48c2010-09-10 11:15:36 -05001389 ret = c4iw_wait_for_reply(&rhp->rdev, &qhp->ep->com.wr_wait,
1390 qhp->ep->hwtid, qhp->wq.sq.qid, __func__);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301391 if (!ret)
1392 goto out;
1393err1:
1394 free_ird(rhp, qhp->attr.max_ird);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001395out:
1396 PDBG("%s ret %d\n", __func__, ret);
1397 return ret;
1398}
1399
1400int c4iw_modify_qp(struct c4iw_dev *rhp, struct c4iw_qp *qhp,
1401 enum c4iw_qp_attr_mask mask,
1402 struct c4iw_qp_attributes *attrs,
1403 int internal)
1404{
1405 int ret = 0;
1406 struct c4iw_qp_attributes newattr = qhp->attr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001407 int disconnect = 0;
1408 int terminate = 0;
1409 int abort = 0;
1410 int free = 0;
1411 struct c4iw_ep *ep = NULL;
1412
1413 PDBG("%s qhp %p sqid 0x%x rqid 0x%x ep %p state %d -> %d\n", __func__,
1414 qhp, qhp->wq.sq.qid, qhp->wq.rq.qid, qhp->ep, qhp->attr.state,
1415 (mask & C4IW_QP_ATTR_NEXT_STATE) ? attrs->next_state : -1);
1416
Steve Wise2f5b48c2010-09-10 11:15:36 -05001417 mutex_lock(&qhp->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001418
1419 /* Process attr changes if in IDLE */
1420 if (mask & C4IW_QP_ATTR_VALID_MODIFY) {
1421 if (qhp->attr.state != C4IW_QP_STATE_IDLE) {
1422 ret = -EIO;
1423 goto out;
1424 }
1425 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_READ)
1426 newattr.enable_rdma_read = attrs->enable_rdma_read;
1427 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_WRITE)
1428 newattr.enable_rdma_write = attrs->enable_rdma_write;
1429 if (mask & C4IW_QP_ATTR_ENABLE_RDMA_BIND)
1430 newattr.enable_bind = attrs->enable_bind;
1431 if (mask & C4IW_QP_ATTR_MAX_ORD) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001432 if (attrs->max_ord > c4iw_max_read_depth) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001433 ret = -EINVAL;
1434 goto out;
1435 }
1436 newattr.max_ord = attrs->max_ord;
1437 }
1438 if (mask & C4IW_QP_ATTR_MAX_IRD) {
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301439 if (attrs->max_ird > cur_max_read_depth(rhp)) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001440 ret = -EINVAL;
1441 goto out;
1442 }
1443 newattr.max_ird = attrs->max_ird;
1444 }
1445 qhp->attr = newattr;
1446 }
1447
Vipul Pandya2c974782012-05-18 15:29:28 +05301448 if (mask & C4IW_QP_ATTR_SQ_DB) {
Steve Wise05eb2382014-03-14 21:52:08 +05301449 ret = ring_kernel_sq_db(qhp, attrs->sq_db_inc);
Vipul Pandya2c974782012-05-18 15:29:28 +05301450 goto out;
1451 }
1452 if (mask & C4IW_QP_ATTR_RQ_DB) {
Steve Wise05eb2382014-03-14 21:52:08 +05301453 ret = ring_kernel_rq_db(qhp, attrs->rq_db_inc);
Vipul Pandya2c974782012-05-18 15:29:28 +05301454 goto out;
1455 }
1456
Steve Wisecfdda9d2010-04-21 15:30:06 -07001457 if (!(mask & C4IW_QP_ATTR_NEXT_STATE))
1458 goto out;
1459 if (qhp->attr.state == attrs->next_state)
1460 goto out;
1461
1462 switch (qhp->attr.state) {
1463 case C4IW_QP_STATE_IDLE:
1464 switch (attrs->next_state) {
1465 case C4IW_QP_STATE_RTS:
1466 if (!(mask & C4IW_QP_ATTR_LLP_STREAM_HANDLE)) {
1467 ret = -EINVAL;
1468 goto out;
1469 }
1470 if (!(mask & C4IW_QP_ATTR_MPA_ATTR)) {
1471 ret = -EINVAL;
1472 goto out;
1473 }
1474 qhp->attr.mpa_attr = attrs->mpa_attr;
1475 qhp->attr.llp_stream_handle = attrs->llp_stream_handle;
1476 qhp->ep = qhp->attr.llp_stream_handle;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001477 set_state(qhp, C4IW_QP_STATE_RTS);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001478
1479 /*
1480 * Ref the endpoint here and deref when we
1481 * disassociate the endpoint from the QP. This
1482 * happens in CLOSING->IDLE transition or *->ERROR
1483 * transition.
1484 */
1485 c4iw_get_ep(&qhp->ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001486 ret = rdma_init(rhp, qhp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001487 if (ret)
1488 goto err;
1489 break;
1490 case C4IW_QP_STATE_ERROR:
Steve Wise2f5b48c2010-09-10 11:15:36 -05001491 set_state(qhp, C4IW_QP_STATE_ERROR);
1492 flush_qp(qhp);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001493 break;
1494 default:
1495 ret = -EINVAL;
1496 goto out;
1497 }
1498 break;
1499 case C4IW_QP_STATE_RTS:
1500 switch (attrs->next_state) {
1501 case C4IW_QP_STATE_CLOSING:
1502 BUG_ON(atomic_read(&qhp->ep->com.kref.refcount) < 2);
Steve Wiseb4e29012014-04-09 09:38:26 -05001503 t4_set_wq_in_error(&qhp->wq);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001504 set_state(qhp, C4IW_QP_STATE_CLOSING);
Steve Wise73d6fca2010-07-23 19:12:27 +00001505 ep = qhp->ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001506 if (!internal) {
1507 abort = 0;
1508 disconnect = 1;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001509 c4iw_get_ep(&qhp->ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001510 }
Steve Wise73d6fca2010-07-23 19:12:27 +00001511 ret = rdma_fini(rhp, qhp, ep);
Steve Wise8da7e7a2011-06-14 20:59:27 +00001512 if (ret)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001513 goto err;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001514 break;
1515 case C4IW_QP_STATE_TERMINATE:
Steve Wiseb4e29012014-04-09 09:38:26 -05001516 t4_set_wq_in_error(&qhp->wq);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001517 set_state(qhp, C4IW_QP_STATE_TERMINATE);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301518 qhp->attr.layer_etype = attrs->layer_etype;
1519 qhp->attr.ecode = attrs->ecode;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001520 ep = qhp->ep;
Steve Wisecc18b932014-04-24 14:31:53 -05001521 if (!internal) {
1522 c4iw_get_ep(&qhp->ep->com);
Steve Wise0e42c1f2010-09-10 11:15:09 -05001523 terminate = 1;
Steve Wisecc18b932014-04-24 14:31:53 -05001524 disconnect = 1;
1525 } else {
1526 terminate = qhp->attr.send_term;
Steve Wise09992572013-08-06 21:04:40 +05301527 ret = rdma_fini(rhp, qhp, ep);
1528 if (ret)
1529 goto err;
1530 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001531 break;
1532 case C4IW_QP_STATE_ERROR:
Steve Wise1cf24dc2013-08-06 21:04:35 +05301533 t4_set_wq_in_error(&qhp->wq);
Steve Wiseb4e29012014-04-09 09:38:26 -05001534 set_state(qhp, C4IW_QP_STATE_ERROR);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001535 if (!internal) {
1536 abort = 1;
1537 disconnect = 1;
1538 ep = qhp->ep;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001539 c4iw_get_ep(&qhp->ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001540 }
1541 goto err;
1542 break;
1543 default:
1544 ret = -EINVAL;
1545 goto out;
1546 }
1547 break;
1548 case C4IW_QP_STATE_CLOSING:
1549 if (!internal) {
1550 ret = -EINVAL;
1551 goto out;
1552 }
1553 switch (attrs->next_state) {
1554 case C4IW_QP_STATE_IDLE:
Steve Wise2f5b48c2010-09-10 11:15:36 -05001555 flush_qp(qhp);
1556 set_state(qhp, C4IW_QP_STATE_IDLE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001557 qhp->attr.llp_stream_handle = NULL;
1558 c4iw_put_ep(&qhp->ep->com);
1559 qhp->ep = NULL;
1560 wake_up(&qhp->wait);
1561 break;
1562 case C4IW_QP_STATE_ERROR:
1563 goto err;
1564 default:
1565 ret = -EINVAL;
1566 goto err;
1567 }
1568 break;
1569 case C4IW_QP_STATE_ERROR:
1570 if (attrs->next_state != C4IW_QP_STATE_IDLE) {
1571 ret = -EINVAL;
1572 goto out;
1573 }
1574 if (!t4_sq_empty(&qhp->wq) || !t4_rq_empty(&qhp->wq)) {
1575 ret = -EINVAL;
1576 goto out;
1577 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001578 set_state(qhp, C4IW_QP_STATE_IDLE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001579 break;
1580 case C4IW_QP_STATE_TERMINATE:
1581 if (!internal) {
1582 ret = -EINVAL;
1583 goto out;
1584 }
1585 goto err;
1586 break;
1587 default:
1588 printk(KERN_ERR "%s in a bad state %d\n",
1589 __func__, qhp->attr.state);
1590 ret = -EINVAL;
1591 goto err;
1592 break;
1593 }
1594 goto out;
1595err:
1596 PDBG("%s disassociating ep %p qpid 0x%x\n", __func__, qhp->ep,
1597 qhp->wq.sq.qid);
1598
1599 /* disassociate the LLP connection */
1600 qhp->attr.llp_stream_handle = NULL;
Steve Wiseaf93fb52010-09-10 11:14:48 -05001601 if (!ep)
1602 ep = qhp->ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001603 qhp->ep = NULL;
Steve Wise2f5b48c2010-09-10 11:15:36 -05001604 set_state(qhp, C4IW_QP_STATE_ERROR);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001605 free = 1;
Vipul Pandya91e9c0712013-01-07 13:11:51 +00001606 abort = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001607 BUG_ON(!ep);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001608 flush_qp(qhp);
Steve Wise5b3418082014-11-21 09:36:36 -06001609 wake_up(&qhp->wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001610out:
Steve Wise2f5b48c2010-09-10 11:15:36 -05001611 mutex_unlock(&qhp->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001612
1613 if (terminate)
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001614 post_terminate(qhp, NULL, internal ? GFP_ATOMIC : GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001615
1616 /*
1617 * If disconnect is 1, then we need to initiate a disconnect
1618 * on the EP. This can be a normal close (RTS->CLOSING) or
1619 * an abnormal close (RTS/CLOSING->ERROR).
1620 */
1621 if (disconnect) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001622 c4iw_ep_disconnect(ep, abort, internal ? GFP_ATOMIC :
1623 GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001624 c4iw_put_ep(&ep->com);
1625 }
1626
1627 /*
1628 * If free is 1, then we've disassociated the EP from the QP
1629 * and we need to dereference the EP.
1630 */
1631 if (free)
1632 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001633 PDBG("%s exit state %d\n", __func__, qhp->attr.state);
1634 return ret;
1635}
1636
1637int c4iw_destroy_qp(struct ib_qp *ib_qp)
1638{
1639 struct c4iw_dev *rhp;
1640 struct c4iw_qp *qhp;
1641 struct c4iw_qp_attributes attrs;
1642 struct c4iw_ucontext *ucontext;
1643
1644 qhp = to_c4iw_qp(ib_qp);
1645 rhp = qhp->rhp;
1646
1647 attrs.next_state = C4IW_QP_STATE_ERROR;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301648 if (qhp->attr.state == C4IW_QP_STATE_TERMINATE)
1649 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1650 else
1651 c4iw_modify_qp(rhp, qhp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001652 wait_event(qhp->wait, !qhp->ep);
1653
Steve Wise05eb2382014-03-14 21:52:08 +05301654 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001655
Steve Wise05eb2382014-03-14 21:52:08 +05301656 spin_lock_irq(&rhp->lock);
1657 if (!list_empty(&qhp->db_fc_entry))
1658 list_del_init(&qhp->db_fc_entry);
1659 spin_unlock_irq(&rhp->lock);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301660 free_ird(rhp, qhp->attr.max_ird);
Steve Wise05eb2382014-03-14 21:52:08 +05301661
Steve Wisecfdda9d2010-04-21 15:30:06 -07001662 ucontext = ib_qp->uobject ?
1663 to_c4iw_ucontext(ib_qp->uobject->context) : NULL;
1664 destroy_qp(&rhp->rdev, &qhp->wq,
1665 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1666
Steve Wisead61a4c2016-07-29 11:00:54 -07001667 c4iw_qp_rem_ref(ib_qp);
1668
Steve Wisecfdda9d2010-04-21 15:30:06 -07001669 PDBG("%s ib_qp %p qpid 0x%0x\n", __func__, ib_qp, qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001670 return 0;
1671}
1672
1673struct ib_qp *c4iw_create_qp(struct ib_pd *pd, struct ib_qp_init_attr *attrs,
1674 struct ib_udata *udata)
1675{
1676 struct c4iw_dev *rhp;
1677 struct c4iw_qp *qhp;
1678 struct c4iw_pd *php;
1679 struct c4iw_cq *schp;
1680 struct c4iw_cq *rchp;
1681 struct c4iw_create_qp_resp uresp;
Dan Carpenterff1706f2013-10-19 12:14:12 +03001682 unsigned int sqsize, rqsize;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001683 struct c4iw_ucontext *ucontext;
1684 int ret;
Hariprasad Sa6054df2016-02-05 11:43:28 +05301685 struct c4iw_mm_entry *sq_key_mm, *rq_key_mm = NULL, *sq_db_key_mm;
1686 struct c4iw_mm_entry *rq_db_key_mm = NULL, *ma_sync_key_mm = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001687
1688 PDBG("%s ib_pd %p\n", __func__, pd);
1689
1690 if (attrs->qp_type != IB_QPT_RC)
1691 return ERR_PTR(-EINVAL);
1692
1693 php = to_c4iw_pd(pd);
1694 rhp = php->rhp;
1695 schp = get_chp(rhp, ((struct c4iw_cq *)attrs->send_cq)->cq.cqid);
1696 rchp = get_chp(rhp, ((struct c4iw_cq *)attrs->recv_cq)->cq.cqid);
1697 if (!schp || !rchp)
1698 return ERR_PTR(-EINVAL);
1699
1700 if (attrs->cap.max_inline_data > T4_MAX_SEND_INLINE)
1701 return ERR_PTR(-EINVAL);
1702
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301703 if (attrs->cap.max_recv_wr > rhp->rdev.hw_queue.t4_max_rq_size)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001704 return ERR_PTR(-E2BIG);
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301705 rqsize = attrs->cap.max_recv_wr + 1;
1706 if (rqsize < 8)
1707 rqsize = 8;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001708
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301709 if (attrs->cap.max_send_wr > rhp->rdev.hw_queue.t4_max_sq_size)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001710 return ERR_PTR(-E2BIG);
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301711 sqsize = attrs->cap.max_send_wr + 1;
1712 if (sqsize < 8)
1713 sqsize = 8;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001714
1715 ucontext = pd->uobject ? to_c4iw_ucontext(pd->uobject->context) : NULL;
1716
Steve Wisecfdda9d2010-04-21 15:30:06 -07001717 qhp = kzalloc(sizeof(*qhp), GFP_KERNEL);
1718 if (!qhp)
1719 return ERR_PTR(-ENOMEM);
1720 qhp->wq.sq.size = sqsize;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301721 qhp->wq.sq.memsize =
1722 (sqsize + rhp->rdev.hw_queue.t4_eq_status_entries) *
1723 sizeof(*qhp->wq.sq.queue) + 16 * sizeof(__be64);
Steve Wise1cf24dc2013-08-06 21:04:35 +05301724 qhp->wq.sq.flush_cidx = -1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001725 qhp->wq.rq.size = rqsize;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301726 qhp->wq.rq.memsize =
1727 (rqsize + rhp->rdev.hw_queue.t4_eq_status_entries) *
1728 sizeof(*qhp->wq.rq.queue);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001729
1730 if (ucontext) {
1731 qhp->wq.sq.memsize = roundup(qhp->wq.sq.memsize, PAGE_SIZE);
1732 qhp->wq.rq.memsize = roundup(qhp->wq.rq.memsize, PAGE_SIZE);
1733 }
1734
Steve Wisecfdda9d2010-04-21 15:30:06 -07001735 ret = create_qp(&rhp->rdev, &qhp->wq, &schp->cq, &rchp->cq,
1736 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1737 if (ret)
1738 goto err1;
1739
1740 attrs->cap.max_recv_wr = rqsize - 1;
1741 attrs->cap.max_send_wr = sqsize - 1;
1742 attrs->cap.max_inline_data = T4_MAX_SEND_INLINE;
1743
1744 qhp->rhp = rhp;
1745 qhp->attr.pd = php->pdid;
1746 qhp->attr.scq = ((struct c4iw_cq *) attrs->send_cq)->cq.cqid;
1747 qhp->attr.rcq = ((struct c4iw_cq *) attrs->recv_cq)->cq.cqid;
1748 qhp->attr.sq_num_entries = attrs->cap.max_send_wr;
1749 qhp->attr.rq_num_entries = attrs->cap.max_recv_wr;
1750 qhp->attr.sq_max_sges = attrs->cap.max_send_sge;
1751 qhp->attr.sq_max_sges_rdma_write = attrs->cap.max_send_sge;
1752 qhp->attr.rq_max_sges = attrs->cap.max_recv_sge;
1753 qhp->attr.state = C4IW_QP_STATE_IDLE;
1754 qhp->attr.next_state = C4IW_QP_STATE_IDLE;
1755 qhp->attr.enable_rdma_read = 1;
1756 qhp->attr.enable_rdma_write = 1;
1757 qhp->attr.enable_bind = 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301758 qhp->attr.max_ord = 0;
1759 qhp->attr.max_ird = 0;
Steve Wiseba32de92014-03-19 17:44:43 +05301760 qhp->sq_sig_all = attrs->sq_sig_type == IB_SIGNAL_ALL_WR;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001761 spin_lock_init(&qhp->lock);
Steve Wise086dc6e2016-02-17 08:15:42 -08001762 init_completion(&qhp->sq_drained);
1763 init_completion(&qhp->rq_drained);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001764 mutex_init(&qhp->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001765 init_waitqueue_head(&qhp->wait);
Steve Wisead61a4c2016-07-29 11:00:54 -07001766 kref_init(&qhp->kref);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001767
Steve Wise05eb2382014-03-14 21:52:08 +05301768 ret = insert_handle(rhp, &rhp->qpidr, qhp, qhp->wq.sq.qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001769 if (ret)
1770 goto err2;
1771
Steve Wisecfdda9d2010-04-21 15:30:06 -07001772 if (udata) {
Hariprasad Sa6054df2016-02-05 11:43:28 +05301773 sq_key_mm = kmalloc(sizeof(*sq_key_mm), GFP_KERNEL);
1774 if (!sq_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001775 ret = -ENOMEM;
Steve Wise30a6a622010-05-20 16:58:21 -05001776 goto err3;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001777 }
Hariprasad Sa6054df2016-02-05 11:43:28 +05301778 rq_key_mm = kmalloc(sizeof(*rq_key_mm), GFP_KERNEL);
1779 if (!rq_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001780 ret = -ENOMEM;
Steve Wise30a6a622010-05-20 16:58:21 -05001781 goto err4;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001782 }
Hariprasad Sa6054df2016-02-05 11:43:28 +05301783 sq_db_key_mm = kmalloc(sizeof(*sq_db_key_mm), GFP_KERNEL);
1784 if (!sq_db_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001785 ret = -ENOMEM;
Steve Wise30a6a622010-05-20 16:58:21 -05001786 goto err5;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001787 }
Hariprasad Sa6054df2016-02-05 11:43:28 +05301788 rq_db_key_mm = kmalloc(sizeof(*rq_db_key_mm), GFP_KERNEL);
1789 if (!rq_db_key_mm) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001790 ret = -ENOMEM;
Steve Wise30a6a622010-05-20 16:58:21 -05001791 goto err6;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001792 }
Steve Wisec6d7b262010-09-13 11:23:57 -05001793 if (t4_sq_onchip(&qhp->wq.sq)) {
Hariprasad Sa6054df2016-02-05 11:43:28 +05301794 ma_sync_key_mm = kmalloc(sizeof(*ma_sync_key_mm),
1795 GFP_KERNEL);
1796 if (!ma_sync_key_mm) {
Steve Wisec6d7b262010-09-13 11:23:57 -05001797 ret = -ENOMEM;
1798 goto err7;
1799 }
1800 uresp.flags = C4IW_QPF_ONCHIP;
1801 } else
1802 uresp.flags = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001803 uresp.qid_mask = rhp->rdev.qpmask;
1804 uresp.sqid = qhp->wq.sq.qid;
1805 uresp.sq_size = qhp->wq.sq.size;
1806 uresp.sq_memsize = qhp->wq.sq.memsize;
1807 uresp.rqid = qhp->wq.rq.qid;
1808 uresp.rq_size = qhp->wq.rq.size;
1809 uresp.rq_memsize = qhp->wq.rq.memsize;
1810 spin_lock(&ucontext->mmap_lock);
Hariprasad Sa6054df2016-02-05 11:43:28 +05301811 if (ma_sync_key_mm) {
Steve Wisec6d7b262010-09-13 11:23:57 -05001812 uresp.ma_sync_key = ucontext->key;
1813 ucontext->key += PAGE_SIZE;
Dan Carpenterae1fe072013-07-25 19:48:32 +03001814 } else {
1815 uresp.ma_sync_key = 0;
Steve Wisec6d7b262010-09-13 11:23:57 -05001816 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001817 uresp.sq_key = ucontext->key;
1818 ucontext->key += PAGE_SIZE;
1819 uresp.rq_key = ucontext->key;
1820 ucontext->key += PAGE_SIZE;
1821 uresp.sq_db_gts_key = ucontext->key;
1822 ucontext->key += PAGE_SIZE;
1823 uresp.rq_db_gts_key = ucontext->key;
1824 ucontext->key += PAGE_SIZE;
1825 spin_unlock(&ucontext->mmap_lock);
1826 ret = ib_copy_to_udata(udata, &uresp, sizeof uresp);
1827 if (ret)
Steve Wisec6d7b262010-09-13 11:23:57 -05001828 goto err8;
Hariprasad Sa6054df2016-02-05 11:43:28 +05301829 sq_key_mm->key = uresp.sq_key;
1830 sq_key_mm->addr = qhp->wq.sq.phys_addr;
1831 sq_key_mm->len = PAGE_ALIGN(qhp->wq.sq.memsize);
1832 insert_mmap(ucontext, sq_key_mm);
1833 rq_key_mm->key = uresp.rq_key;
1834 rq_key_mm->addr = virt_to_phys(qhp->wq.rq.queue);
1835 rq_key_mm->len = PAGE_ALIGN(qhp->wq.rq.memsize);
1836 insert_mmap(ucontext, rq_key_mm);
1837 sq_db_key_mm->key = uresp.sq_db_gts_key;
1838 sq_db_key_mm->addr = (u64)(unsigned long)qhp->wq.sq.bar2_pa;
1839 sq_db_key_mm->len = PAGE_SIZE;
1840 insert_mmap(ucontext, sq_db_key_mm);
1841 rq_db_key_mm->key = uresp.rq_db_gts_key;
1842 rq_db_key_mm->addr = (u64)(unsigned long)qhp->wq.rq.bar2_pa;
1843 rq_db_key_mm->len = PAGE_SIZE;
1844 insert_mmap(ucontext, rq_db_key_mm);
1845 if (ma_sync_key_mm) {
1846 ma_sync_key_mm->key = uresp.ma_sync_key;
1847 ma_sync_key_mm->addr =
1848 (pci_resource_start(rhp->rdev.lldi.pdev, 0) +
1849 PCIE_MA_SYNC_A) & PAGE_MASK;
1850 ma_sync_key_mm->len = PAGE_SIZE;
1851 insert_mmap(ucontext, ma_sync_key_mm);
Steve Wisec6d7b262010-09-13 11:23:57 -05001852 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001853 }
1854 qhp->ibqp.qp_num = qhp->wq.sq.qid;
1855 init_timer(&(qhp->timer));
Steve Wise05eb2382014-03-14 21:52:08 +05301856 INIT_LIST_HEAD(&qhp->db_fc_entry);
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +05301857 PDBG("%s sq id %u size %u memsize %zu num_entries %u "
1858 "rq id %u size %u memsize %zu num_entries %u\n", __func__,
1859 qhp->wq.sq.qid, qhp->wq.sq.size, qhp->wq.sq.memsize,
1860 attrs->cap.max_send_wr, qhp->wq.rq.qid, qhp->wq.rq.size,
1861 qhp->wq.rq.memsize, attrs->cap.max_recv_wr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001862 return &qhp->ibqp;
Steve Wisec6d7b262010-09-13 11:23:57 -05001863err8:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301864 kfree(ma_sync_key_mm);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001865err7:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301866 kfree(rq_db_key_mm);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001867err6:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301868 kfree(sq_db_key_mm);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001869err5:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301870 kfree(rq_key_mm);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001871err4:
Hariprasad Sa6054df2016-02-05 11:43:28 +05301872 kfree(sq_key_mm);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001873err3:
1874 remove_handle(rhp, &rhp->qpidr, qhp->wq.sq.qid);
1875err2:
1876 destroy_qp(&rhp->rdev, &qhp->wq,
1877 ucontext ? &ucontext->uctx : &rhp->rdev.uctx);
1878err1:
1879 kfree(qhp);
1880 return ERR_PTR(ret);
1881}
1882
1883int c4iw_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1884 int attr_mask, struct ib_udata *udata)
1885{
1886 struct c4iw_dev *rhp;
1887 struct c4iw_qp *qhp;
1888 enum c4iw_qp_attr_mask mask = 0;
1889 struct c4iw_qp_attributes attrs;
1890
1891 PDBG("%s ib_qp %p\n", __func__, ibqp);
1892
1893 /* iwarp does not support the RTR state */
1894 if ((attr_mask & IB_QP_STATE) && (attr->qp_state == IB_QPS_RTR))
1895 attr_mask &= ~IB_QP_STATE;
1896
1897 /* Make sure we still have something left to do */
1898 if (!attr_mask)
1899 return 0;
1900
1901 memset(&attrs, 0, sizeof attrs);
1902 qhp = to_c4iw_qp(ibqp);
1903 rhp = qhp->rhp;
1904
1905 attrs.next_state = c4iw_convert_state(attr->qp_state);
1906 attrs.enable_rdma_read = (attr->qp_access_flags &
1907 IB_ACCESS_REMOTE_READ) ? 1 : 0;
1908 attrs.enable_rdma_write = (attr->qp_access_flags &
1909 IB_ACCESS_REMOTE_WRITE) ? 1 : 0;
1910 attrs.enable_bind = (attr->qp_access_flags & IB_ACCESS_MW_BIND) ? 1 : 0;
1911
1912
1913 mask |= (attr_mask & IB_QP_STATE) ? C4IW_QP_ATTR_NEXT_STATE : 0;
1914 mask |= (attr_mask & IB_QP_ACCESS_FLAGS) ?
1915 (C4IW_QP_ATTR_ENABLE_RDMA_READ |
1916 C4IW_QP_ATTR_ENABLE_RDMA_WRITE |
1917 C4IW_QP_ATTR_ENABLE_RDMA_BIND) : 0;
1918
Vipul Pandya2c974782012-05-18 15:29:28 +05301919 /*
1920 * Use SQ_PSN and RQ_PSN to pass in IDX_INC values for
1921 * ringing the queue db when we're in DB_FULL mode.
Steve Wisec2f9da92014-04-24 14:32:04 -05001922 * Only allow this on T4 devices.
Vipul Pandya2c974782012-05-18 15:29:28 +05301923 */
1924 attrs.sq_db_inc = attr->sq_psn;
1925 attrs.rq_db_inc = attr->rq_psn;
1926 mask |= (attr_mask & IB_QP_SQ_PSN) ? C4IW_QP_ATTR_SQ_DB : 0;
1927 mask |= (attr_mask & IB_QP_RQ_PSN) ? C4IW_QP_ATTR_RQ_DB : 0;
Hariprasad S963cab52015-09-23 17:19:27 +05301928 if (!is_t4(to_c4iw_qp(ibqp)->rhp->rdev.lldi.adapter_type) &&
Steve Wisec2f9da92014-04-24 14:32:04 -05001929 (mask & (C4IW_QP_ATTR_SQ_DB|C4IW_QP_ATTR_RQ_DB)))
1930 return -EINVAL;
Vipul Pandya2c974782012-05-18 15:29:28 +05301931
Steve Wisecfdda9d2010-04-21 15:30:06 -07001932 return c4iw_modify_qp(rhp, qhp, mask, &attrs, 0);
1933}
1934
1935struct ib_qp *c4iw_get_qp(struct ib_device *dev, int qpn)
1936{
1937 PDBG("%s ib_dev %p qpn 0x%x\n", __func__, dev, qpn);
1938 return (struct ib_qp *)get_qhp(to_c4iw_dev(dev), qpn);
1939}
Vipul Pandya67bbc052012-05-18 15:29:33 +05301940
1941int c4iw_ib_query_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
1942 int attr_mask, struct ib_qp_init_attr *init_attr)
1943{
1944 struct c4iw_qp *qhp = to_c4iw_qp(ibqp);
1945
1946 memset(attr, 0, sizeof *attr);
1947 memset(init_attr, 0, sizeof *init_attr);
1948 attr->qp_state = to_ib_qp_state(qhp->attr.state);
Hariprasad Shenai3e5c02c2014-07-21 20:55:14 +05301949 init_attr->cap.max_send_wr = qhp->attr.sq_num_entries;
1950 init_attr->cap.max_recv_wr = qhp->attr.rq_num_entries;
1951 init_attr->cap.max_send_sge = qhp->attr.sq_max_sges;
1952 init_attr->cap.max_recv_sge = qhp->attr.sq_max_sges;
1953 init_attr->cap.max_inline_data = T4_MAX_SEND_INLINE;
1954 init_attr->sq_sig_type = qhp->sq_sig_all ? IB_SIGNAL_ALL_WR : 0;
Vipul Pandya67bbc052012-05-18 15:29:33 +05301955 return 0;
1956}
Steve Wise086dc6e2016-02-17 08:15:42 -08001957
Steve Wise1b1a8892016-07-29 08:38:46 -07001958static void move_qp_to_err(struct c4iw_qp *qp)
1959{
1960 struct c4iw_qp_attributes attrs = { .next_state = C4IW_QP_STATE_ERROR };
1961
1962 (void)c4iw_modify_qp(qp->rhp, qp, C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1963}
1964
Steve Wise086dc6e2016-02-17 08:15:42 -08001965void c4iw_drain_sq(struct ib_qp *ibqp)
1966{
1967 struct c4iw_qp *qp = to_c4iw_qp(ibqp);
Steve Wise40edd7f2016-04-12 06:55:03 -07001968 unsigned long flag;
1969 bool need_to_wait;
Steve Wise086dc6e2016-02-17 08:15:42 -08001970
Steve Wise1b1a8892016-07-29 08:38:46 -07001971 move_qp_to_err(qp);
Steve Wise40edd7f2016-04-12 06:55:03 -07001972 spin_lock_irqsave(&qp->lock, flag);
1973 need_to_wait = !t4_sq_empty(&qp->wq);
1974 spin_unlock_irqrestore(&qp->lock, flag);
1975
1976 if (need_to_wait)
1977 wait_for_completion(&qp->sq_drained);
Steve Wise086dc6e2016-02-17 08:15:42 -08001978}
1979
1980void c4iw_drain_rq(struct ib_qp *ibqp)
1981{
1982 struct c4iw_qp *qp = to_c4iw_qp(ibqp);
Steve Wise40edd7f2016-04-12 06:55:03 -07001983 unsigned long flag;
1984 bool need_to_wait;
Steve Wise086dc6e2016-02-17 08:15:42 -08001985
Steve Wise1b1a8892016-07-29 08:38:46 -07001986 move_qp_to_err(qp);
Steve Wise40edd7f2016-04-12 06:55:03 -07001987 spin_lock_irqsave(&qp->lock, flag);
1988 need_to_wait = !t4_rq_empty(&qp->wq);
1989 spin_unlock_irqrestore(&qp->lock, flag);
1990
1991 if (need_to_wait)
1992 wait_for_completion(&qp->rq_drained);
Steve Wise086dc6e2016-02-17 08:15:42 -08001993}