1 /* QLogic qed NIC Driver
2  * Copyright (c) 2015-2017  QLogic Corporation
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  */
32 #include <linux/types.h>
33 #include <asm/byteorder.h>
34 #include <linux/bitops.h>
35 #include <linux/delay.h>
36 #include <linux/dma-mapping.h>
37 #include <linux/errno.h>
38 #include <linux/io.h>
39 #include <linux/kernel.h>
40 #include <linux/list.h>
41 #include <linux/module.h>
42 #include <linux/mutex.h>
43 #include <linux/pci.h>
44 #include <linux/slab.h>
45 #include <linux/spinlock.h>
46 #include <linux/string.h>
47 #include "qed.h"
48 #include "qed_cxt.h"
49 #include "qed_hsi.h"
50 #include "qed_hw.h"
51 #include "qed_init_ops.h"
52 #include "qed_int.h"
53 #include "qed_ll2.h"
54 #include "qed_mcp.h"
55 #include "qed_reg_addr.h"
56 #include <linux/qed/qed_rdma_if.h>
57 #include "qed_rdma.h"
58 #include "qed_roce.h"
59 #include "qed_sp.h"
60 
61 
62 int qed_rdma_bmap_alloc(struct qed_hwfn *p_hwfn,
63 			struct qed_bmap *bmap, u32 max_count, char *name)
64 {
65 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "max_count = %08x\n", max_count);
66 
67 	bmap->max_count = max_count;
68 
69 	bmap->bitmap = kcalloc(BITS_TO_LONGS(max_count), sizeof(long),
70 			       GFP_KERNEL);
71 	if (!bmap->bitmap)
72 		return -ENOMEM;
73 
74 	snprintf(bmap->name, QED_RDMA_MAX_BMAP_NAME, "%s", name);
75 
76 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "0\n");
77 	return 0;
78 }
79 
80 int qed_rdma_bmap_alloc_id(struct qed_hwfn *p_hwfn,
81 			   struct qed_bmap *bmap, u32 *id_num)
82 {
83 	*id_num = find_first_zero_bit(bmap->bitmap, bmap->max_count);
84 	if (*id_num >= bmap->max_count)
85 		return -EINVAL;
86 
87 	__set_bit(*id_num, bmap->bitmap);
88 
89 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "%s bitmap: allocated id %d\n",
90 		   bmap->name, *id_num);
91 
92 	return 0;
93 }
94 
95 void qed_bmap_set_id(struct qed_hwfn *p_hwfn,
96 		     struct qed_bmap *bmap, u32 id_num)
97 {
98 	if (id_num >= bmap->max_count)
99 		return;
100 
101 	__set_bit(id_num, bmap->bitmap);
102 }
103 
104 void qed_bmap_release_id(struct qed_hwfn *p_hwfn,
105 			 struct qed_bmap *bmap, u32 id_num)
106 {
107 	bool b_acquired;
108 
109 	if (id_num >= bmap->max_count)
110 		return;
111 
112 	b_acquired = test_and_clear_bit(id_num, bmap->bitmap);
113 	if (!b_acquired) {
114 		DP_NOTICE(p_hwfn, "%s bitmap: id %d already released\n",
115 			  bmap->name, id_num);
116 		return;
117 	}
118 
119 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "%s bitmap: released id %d\n",
120 		   bmap->name, id_num);
121 }
122 
123 int qed_bmap_test_id(struct qed_hwfn *p_hwfn,
124 		     struct qed_bmap *bmap, u32 id_num)
125 {
126 	if (id_num >= bmap->max_count)
127 		return -1;
128 
129 	return test_bit(id_num, bmap->bitmap);
130 }
131 
132 static bool qed_bmap_is_empty(struct qed_bmap *bmap)
133 {
134 	return bmap->max_count == find_first_bit(bmap->bitmap, bmap->max_count);
135 }
136 
137 static u32 qed_rdma_get_sb_id(void *p_hwfn, u32 rel_sb_id)
138 {
139 	/* First sb id for RoCE is after all the l2 sb */
140 	return FEAT_NUM((struct qed_hwfn *)p_hwfn, QED_PF_L2_QUE) + rel_sb_id;
141 }
142 
143 int qed_rdma_info_alloc(struct qed_hwfn *p_hwfn)
144 {
145 	struct qed_rdma_info *p_rdma_info;
146 
147 	p_rdma_info = kzalloc(sizeof(*p_rdma_info), GFP_KERNEL);
148 	if (!p_rdma_info)
149 		return -ENOMEM;
150 
151 	spin_lock_init(&p_rdma_info->lock);
152 
153 	p_hwfn->p_rdma_info = p_rdma_info;
154 	return 0;
155 }
156 
157 void qed_rdma_info_free(struct qed_hwfn *p_hwfn)
158 {
159 	kfree(p_hwfn->p_rdma_info);
160 	p_hwfn->p_rdma_info = NULL;
161 }
162 
163 static int qed_rdma_alloc(struct qed_hwfn *p_hwfn)
164 {
165 	struct qed_rdma_info *p_rdma_info = p_hwfn->p_rdma_info;
166 	u32 num_cons, num_tasks;
167 	int rc = -ENOMEM;
168 
169 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Allocating RDMA\n");
170 
171 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
172 		p_rdma_info->proto = PROTOCOLID_IWARP;
173 	else
174 		p_rdma_info->proto = PROTOCOLID_ROCE;
175 
176 	num_cons = qed_cxt_get_proto_cid_count(p_hwfn, p_rdma_info->proto,
177 					       NULL);
178 
179 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
180 		p_rdma_info->num_qps = num_cons;
181 	else
182 		p_rdma_info->num_qps = num_cons / 2; /* 2 cids per qp */
183 
184 	num_tasks = qed_cxt_get_proto_tid_count(p_hwfn, PROTOCOLID_ROCE);
185 
186 	/* Each MR uses a single task */
187 	p_rdma_info->num_mrs = num_tasks;
188 
189 	/* Queue zone lines are shared between RoCE and L2 in such a way that
190 	 * they can be used by each without obstructing the other.
191 	 */
192 	p_rdma_info->queue_zone_base = (u16)RESC_START(p_hwfn, QED_L2_QUEUE);
193 	p_rdma_info->max_queue_zones = (u16)RESC_NUM(p_hwfn, QED_L2_QUEUE);
194 
195 	/* Allocate a struct with device params and fill it */
196 	p_rdma_info->dev = kzalloc(sizeof(*p_rdma_info->dev), GFP_KERNEL);
197 	if (!p_rdma_info->dev)
198 		return rc;
199 
200 	/* Allocate a struct with port params and fill it */
201 	p_rdma_info->port = kzalloc(sizeof(*p_rdma_info->port), GFP_KERNEL);
202 	if (!p_rdma_info->port)
203 		goto free_rdma_dev;
204 
205 	/* Allocate bit map for pd's */
206 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->pd_map, RDMA_MAX_PDS,
207 				 "PD");
208 	if (rc) {
209 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
210 			   "Failed to allocate pd_map, rc = %d\n",
211 			   rc);
212 		goto free_rdma_port;
213 	}
214 
215 	/* Allocate DPI bitmap */
216 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->dpi_map,
217 				 p_hwfn->dpi_count, "DPI");
218 	if (rc) {
219 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
220 			   "Failed to allocate DPI bitmap, rc = %d\n", rc);
221 		goto free_pd_map;
222 	}
223 
224 	/* Allocate bitmap for cq's. The maximum number of CQs is bound to
225 	 * the number of connections we support. (num_qps in iWARP or
226 	 * num_qps/2 in RoCE).
227 	 */
228 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->cq_map, num_cons, "CQ");
229 	if (rc) {
230 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
231 			   "Failed to allocate cq bitmap, rc = %d\n", rc);
232 		goto free_dpi_map;
233 	}
234 
235 	/* Allocate bitmap for toggle bit for cq icids
236 	 * We toggle the bit every time we create or resize cq for a given icid.
237 	 * Size needs to equal the size of the cq bmap.
238 	 */
239 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->toggle_bits,
240 				 num_cons, "Toggle");
241 	if (rc) {
242 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
243 			   "Failed to allocate toggle bits, rc = %d\n", rc);
244 		goto free_cq_map;
245 	}
246 
247 	/* Allocate bitmap for itids */
248 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->tid_map,
249 				 p_rdma_info->num_mrs, "MR");
250 	if (rc) {
251 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
252 			   "Failed to allocate itids bitmaps, rc = %d\n", rc);
253 		goto free_toggle_map;
254 	}
255 
256 	/* Allocate bitmap for cids used for qps. */
257 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->cid_map, num_cons,
258 				 "CID");
259 	if (rc) {
260 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
261 			   "Failed to allocate cid bitmap, rc = %d\n", rc);
262 		goto free_tid_map;
263 	}
264 
265 	/* Allocate bitmap for cids used for responders/requesters. */
266 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->real_cid_map, num_cons,
267 				 "REAL_CID");
268 	if (rc) {
269 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
270 			   "Failed to allocate real cid bitmap, rc = %d\n", rc);
271 		goto free_cid_map;
272 	}
273 
274 	/* Allocate bitmap for srqs */
275 	p_rdma_info->num_srqs = qed_cxt_get_srq_count(p_hwfn);
276 	rc = qed_rdma_bmap_alloc(p_hwfn, &p_rdma_info->srq_map,
277 				 p_rdma_info->num_srqs, "SRQ");
278 	if (rc) {
279 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
280 			   "Failed to allocate srq bitmap, rc = %d\n", rc);
281 		goto free_real_cid_map;
282 	}
283 
284 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
285 		rc = qed_iwarp_alloc(p_hwfn);
286 
287 	if (rc)
288 		goto free_srq_map;
289 
290 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Allocation successful\n");
291 	return 0;
292 
293 free_srq_map:
294 	kfree(p_rdma_info->srq_map.bitmap);
295 free_real_cid_map:
296 	kfree(p_rdma_info->real_cid_map.bitmap);
297 free_cid_map:
298 	kfree(p_rdma_info->cid_map.bitmap);
299 free_tid_map:
300 	kfree(p_rdma_info->tid_map.bitmap);
301 free_toggle_map:
302 	kfree(p_rdma_info->toggle_bits.bitmap);
303 free_cq_map:
304 	kfree(p_rdma_info->cq_map.bitmap);
305 free_dpi_map:
306 	kfree(p_rdma_info->dpi_map.bitmap);
307 free_pd_map:
308 	kfree(p_rdma_info->pd_map.bitmap);
309 free_rdma_port:
310 	kfree(p_rdma_info->port);
311 free_rdma_dev:
312 	kfree(p_rdma_info->dev);
313 
314 	return rc;
315 }
316 
317 void qed_rdma_bmap_free(struct qed_hwfn *p_hwfn,
318 			struct qed_bmap *bmap, bool check)
319 {
320 	int weight = bitmap_weight(bmap->bitmap, bmap->max_count);
321 	int last_line = bmap->max_count / (64 * 8);
322 	int last_item = last_line * 8 +
323 	    DIV_ROUND_UP(bmap->max_count % (64 * 8), 64);
324 	u64 *pmap = (u64 *)bmap->bitmap;
325 	int line, item, offset;
326 	u8 str_last_line[200] = { 0 };
327 
328 	if (!weight || !check)
329 		goto end;
330 
331 	DP_NOTICE(p_hwfn,
332 		  "%s bitmap not free - size=%d, weight=%d, 512 bits per line\n",
333 		  bmap->name, bmap->max_count, weight);
334 
335 	/* print aligned non-zero lines, if any */
336 	for (item = 0, line = 0; line < last_line; line++, item += 8)
337 		if (bitmap_weight((unsigned long *)&pmap[item], 64 * 8))
338 			DP_NOTICE(p_hwfn,
339 				  "line 0x%04x: 0x%016llx 0x%016llx 0x%016llx 0x%016llx 0x%016llx 0x%016llx 0x%016llx 0x%016llx\n",
340 				  line,
341 				  pmap[item],
342 				  pmap[item + 1],
343 				  pmap[item + 2],
344 				  pmap[item + 3],
345 				  pmap[item + 4],
346 				  pmap[item + 5],
347 				  pmap[item + 6], pmap[item + 7]);
348 
349 	/* print last unaligned non-zero line, if any */
350 	if ((bmap->max_count % (64 * 8)) &&
351 	    (bitmap_weight((unsigned long *)&pmap[item],
352 			   bmap->max_count - item * 64))) {
353 		offset = sprintf(str_last_line, "line 0x%04x: ", line);
354 		for (; item < last_item; item++)
355 			offset += sprintf(str_last_line + offset,
356 					  "0x%016llx ", pmap[item]);
357 		DP_NOTICE(p_hwfn, "%s\n", str_last_line);
358 	}
359 
360 end:
361 	kfree(bmap->bitmap);
362 	bmap->bitmap = NULL;
363 }
364 
365 static void qed_rdma_resc_free(struct qed_hwfn *p_hwfn)
366 {
367 	struct qed_rdma_info *p_rdma_info = p_hwfn->p_rdma_info;
368 
369 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
370 		qed_iwarp_resc_free(p_hwfn);
371 
372 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->cid_map, 1);
373 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->pd_map, 1);
374 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->dpi_map, 1);
375 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->cq_map, 1);
376 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->toggle_bits, 0);
377 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->tid_map, 1);
378 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->srq_map, 1);
379 	qed_rdma_bmap_free(p_hwfn, &p_hwfn->p_rdma_info->real_cid_map, 1);
380 
381 	kfree(p_rdma_info->port);
382 	kfree(p_rdma_info->dev);
383 }
384 
385 static void qed_rdma_free_tid(void *rdma_cxt, u32 itid)
386 {
387 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
388 
389 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "itid = %08x\n", itid);
390 
391 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
392 	qed_bmap_release_id(p_hwfn, &p_hwfn->p_rdma_info->tid_map, itid);
393 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
394 }
395 
396 static void qed_rdma_free_reserved_lkey(struct qed_hwfn *p_hwfn)
397 {
398 	qed_rdma_free_tid(p_hwfn, p_hwfn->p_rdma_info->dev->reserved_lkey);
399 }
400 
401 static void qed_rdma_free(struct qed_hwfn *p_hwfn)
402 {
403 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Freeing RDMA\n");
404 
405 	qed_rdma_free_reserved_lkey(p_hwfn);
406 	qed_cxt_free_proto_ilt(p_hwfn, p_hwfn->p_rdma_info->proto);
407 	qed_rdma_resc_free(p_hwfn);
408 }
409 
410 static void qed_rdma_get_guid(struct qed_hwfn *p_hwfn, u8 *guid)
411 {
412 	guid[0] = p_hwfn->hw_info.hw_mac_addr[0] ^ 2;
413 	guid[1] = p_hwfn->hw_info.hw_mac_addr[1];
414 	guid[2] = p_hwfn->hw_info.hw_mac_addr[2];
415 	guid[3] = 0xff;
416 	guid[4] = 0xfe;
417 	guid[5] = p_hwfn->hw_info.hw_mac_addr[3];
418 	guid[6] = p_hwfn->hw_info.hw_mac_addr[4];
419 	guid[7] = p_hwfn->hw_info.hw_mac_addr[5];
420 }
421 
422 static void qed_rdma_init_events(struct qed_hwfn *p_hwfn,
423 				 struct qed_rdma_start_in_params *params)
424 {
425 	struct qed_rdma_events *events;
426 
427 	events = &p_hwfn->p_rdma_info->events;
428 
429 	events->unaffiliated_event = params->events->unaffiliated_event;
430 	events->affiliated_event = params->events->affiliated_event;
431 	events->context = params->events->context;
432 }
433 
434 static void qed_rdma_init_devinfo(struct qed_hwfn *p_hwfn,
435 				  struct qed_rdma_start_in_params *params)
436 {
437 	struct qed_rdma_device *dev = p_hwfn->p_rdma_info->dev;
438 	struct qed_dev *cdev = p_hwfn->cdev;
439 	u32 pci_status_control;
440 	u32 num_qps;
441 
442 	/* Vendor specific information */
443 	dev->vendor_id = cdev->vendor_id;
444 	dev->vendor_part_id = cdev->device_id;
445 	dev->hw_ver = 0;
446 	dev->fw_ver = (FW_MAJOR_VERSION << 24) | (FW_MINOR_VERSION << 16) |
447 		      (FW_REVISION_VERSION << 8) | (FW_ENGINEERING_VERSION);
448 
449 	qed_rdma_get_guid(p_hwfn, (u8 *)&dev->sys_image_guid);
450 	dev->node_guid = dev->sys_image_guid;
451 
452 	dev->max_sge = min_t(u32, RDMA_MAX_SGE_PER_SQ_WQE,
453 			     RDMA_MAX_SGE_PER_RQ_WQE);
454 
455 	if (cdev->rdma_max_sge)
456 		dev->max_sge = min_t(u32, cdev->rdma_max_sge, dev->max_sge);
457 
458 	dev->max_srq_sge = QED_RDMA_MAX_SGE_PER_SRQ_WQE;
459 	if (p_hwfn->cdev->rdma_max_srq_sge) {
460 		dev->max_srq_sge = min_t(u32,
461 					 p_hwfn->cdev->rdma_max_srq_sge,
462 					 dev->max_srq_sge);
463 	}
464 	dev->max_inline = ROCE_REQ_MAX_INLINE_DATA_SIZE;
465 
466 	dev->max_inline = (cdev->rdma_max_inline) ?
467 			  min_t(u32, cdev->rdma_max_inline, dev->max_inline) :
468 			  dev->max_inline;
469 
470 	dev->max_wqe = QED_RDMA_MAX_WQE;
471 	dev->max_cnq = (u8)FEAT_NUM(p_hwfn, QED_RDMA_CNQ);
472 
473 	/* The number of QPs may be higher than QED_ROCE_MAX_QPS, because
474 	 * it is up-aligned to 16 and then to ILT page size within qed cxt.
475 	 * This is OK in terms of ILT but we don't want to configure the FW
476 	 * above its abilities
477 	 */
478 	num_qps = ROCE_MAX_QPS;
479 	num_qps = min_t(u64, num_qps, p_hwfn->p_rdma_info->num_qps);
480 	dev->max_qp = num_qps;
481 
482 	/* CQs uses the same icids that QPs use hence they are limited by the
483 	 * number of icids. There are two icids per QP.
484 	 */
485 	dev->max_cq = num_qps * 2;
486 
487 	/* The number of mrs is smaller by 1 since the first is reserved */
488 	dev->max_mr = p_hwfn->p_rdma_info->num_mrs - 1;
489 	dev->max_mr_size = QED_RDMA_MAX_MR_SIZE;
490 
491 	/* The maximum CQE capacity per CQ supported.
492 	 * max number of cqes will be in two layer pbl,
493 	 * 8 is the pointer size in bytes
494 	 * 32 is the size of cq element in bytes
495 	 */
496 	if (params->cq_mode == QED_RDMA_CQ_MODE_32_BITS)
497 		dev->max_cqe = QED_RDMA_MAX_CQE_32_BIT;
498 	else
499 		dev->max_cqe = QED_RDMA_MAX_CQE_16_BIT;
500 
501 	dev->max_mw = 0;
502 	dev->max_fmr = QED_RDMA_MAX_FMR;
503 	dev->max_mr_mw_fmr_pbl = (PAGE_SIZE / 8) * (PAGE_SIZE / 8);
504 	dev->max_mr_mw_fmr_size = dev->max_mr_mw_fmr_pbl * PAGE_SIZE;
505 	dev->max_pkey = QED_RDMA_MAX_P_KEY;
506 
507 	dev->max_srq = p_hwfn->p_rdma_info->num_srqs;
508 	dev->max_srq_wr = QED_RDMA_MAX_SRQ_WQE_ELEM;
509 	dev->max_qp_resp_rd_atomic_resc = RDMA_RING_PAGE_SIZE /
510 					  (RDMA_RESP_RD_ATOMIC_ELM_SIZE * 2);
511 	dev->max_qp_req_rd_atomic_resc = RDMA_RING_PAGE_SIZE /
512 					 RDMA_REQ_RD_ATOMIC_ELM_SIZE;
513 	dev->max_dev_resp_rd_atomic_resc = dev->max_qp_resp_rd_atomic_resc *
514 					   p_hwfn->p_rdma_info->num_qps;
515 	dev->page_size_caps = QED_RDMA_PAGE_SIZE_CAPS;
516 	dev->dev_ack_delay = QED_RDMA_ACK_DELAY;
517 	dev->max_pd = RDMA_MAX_PDS;
518 	dev->max_ah = p_hwfn->p_rdma_info->num_qps;
519 	dev->max_stats_queues = (u8)RESC_NUM(p_hwfn, QED_RDMA_STATS_QUEUE);
520 
521 	/* Set capablities */
522 	dev->dev_caps = 0;
523 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_RNR_NAK, 1);
524 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_PORT_ACTIVE_EVENT, 1);
525 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_PORT_CHANGE_EVENT, 1);
526 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_RESIZE_CQ, 1);
527 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_BASE_MEMORY_EXT, 1);
528 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_BASE_QUEUE_EXT, 1);
529 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_ZBVA, 1);
530 	SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_LOCAL_INV_FENCE, 1);
531 
532 	/* Check atomic operations support in PCI configuration space. */
533 	pci_read_config_dword(cdev->pdev,
534 			      cdev->pdev->pcie_cap + PCI_EXP_DEVCTL2,
535 			      &pci_status_control);
536 
537 	if (pci_status_control & PCI_EXP_DEVCTL2_LTR_EN)
538 		SET_FIELD(dev->dev_caps, QED_RDMA_DEV_CAP_ATOMIC_OP, 1);
539 
540 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
541 		qed_iwarp_init_devinfo(p_hwfn);
542 }
543 
544 static void qed_rdma_init_port(struct qed_hwfn *p_hwfn)
545 {
546 	struct qed_rdma_port *port = p_hwfn->p_rdma_info->port;
547 	struct qed_rdma_device *dev = p_hwfn->p_rdma_info->dev;
548 
549 	port->port_state = p_hwfn->mcp_info->link_output.link_up ?
550 			   QED_RDMA_PORT_UP : QED_RDMA_PORT_DOWN;
551 
552 	port->max_msg_size = min_t(u64,
553 				   (dev->max_mr_mw_fmr_size *
554 				    p_hwfn->cdev->rdma_max_sge),
555 				   BIT(31));
556 
557 	port->pkey_bad_counter = 0;
558 }
559 
560 static int qed_rdma_init_hw(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
561 {
562 	int rc = 0;
563 
564 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Initializing HW\n");
565 	p_hwfn->b_rdma_enabled_in_prs = false;
566 
567 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
568 		qed_iwarp_init_hw(p_hwfn, p_ptt);
569 	else
570 		rc = qed_roce_init_hw(p_hwfn, p_ptt);
571 
572 	return rc;
573 }
574 
575 static int qed_rdma_start_fw(struct qed_hwfn *p_hwfn,
576 			     struct qed_rdma_start_in_params *params,
577 			     struct qed_ptt *p_ptt)
578 {
579 	struct rdma_init_func_ramrod_data *p_ramrod;
580 	struct qed_rdma_cnq_params *p_cnq_pbl_list;
581 	struct rdma_init_func_hdr *p_params_header;
582 	struct rdma_cnq_params *p_cnq_params;
583 	struct qed_sp_init_data init_data;
584 	struct qed_spq_entry *p_ent;
585 	u32 cnq_id, sb_id;
586 	u16 igu_sb_id;
587 	int rc;
588 
589 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Starting FW\n");
590 
591 	/* Save the number of cnqs for the function close ramrod */
592 	p_hwfn->p_rdma_info->num_cnqs = params->desired_cnq;
593 
594 	/* Get SPQ entry */
595 	memset(&init_data, 0, sizeof(init_data));
596 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
597 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
598 
599 	rc = qed_sp_init_request(p_hwfn, &p_ent, RDMA_RAMROD_FUNC_INIT,
600 				 p_hwfn->p_rdma_info->proto, &init_data);
601 	if (rc)
602 		return rc;
603 
604 	if (QED_IS_IWARP_PERSONALITY(p_hwfn)) {
605 		qed_iwarp_init_fw_ramrod(p_hwfn,
606 					 &p_ent->ramrod.iwarp_init_func);
607 		p_ramrod = &p_ent->ramrod.iwarp_init_func.rdma;
608 	} else {
609 		p_ramrod = &p_ent->ramrod.roce_init_func.rdma;
610 	}
611 
612 	p_params_header = &p_ramrod->params_header;
613 	p_params_header->cnq_start_offset = (u8)RESC_START(p_hwfn,
614 							   QED_RDMA_CNQ_RAM);
615 	p_params_header->num_cnqs = params->desired_cnq;
616 
617 	if (params->cq_mode == QED_RDMA_CQ_MODE_16_BITS)
618 		p_params_header->cq_ring_mode = 1;
619 	else
620 		p_params_header->cq_ring_mode = 0;
621 
622 	for (cnq_id = 0; cnq_id < params->desired_cnq; cnq_id++) {
623 		sb_id = qed_rdma_get_sb_id(p_hwfn, cnq_id);
624 		igu_sb_id = qed_get_igu_sb_id(p_hwfn, sb_id);
625 		p_ramrod->cnq_params[cnq_id].sb_num = cpu_to_le16(igu_sb_id);
626 		p_cnq_params = &p_ramrod->cnq_params[cnq_id];
627 		p_cnq_pbl_list = &params->cnq_pbl_list[cnq_id];
628 
629 		p_cnq_params->sb_index = p_hwfn->pf_params.rdma_pf_params.gl_pi;
630 		p_cnq_params->num_pbl_pages = p_cnq_pbl_list->num_pbl_pages;
631 
632 		DMA_REGPAIR_LE(p_cnq_params->pbl_base_addr,
633 			       p_cnq_pbl_list->pbl_ptr);
634 
635 		/* we assume here that cnq_id and qz_offset are the same */
636 		p_cnq_params->queue_zone_num =
637 			cpu_to_le16(p_hwfn->p_rdma_info->queue_zone_base +
638 				    cnq_id);
639 	}
640 
641 	return qed_spq_post(p_hwfn, p_ent, NULL);
642 }
643 
644 static int qed_rdma_alloc_tid(void *rdma_cxt, u32 *itid)
645 {
646 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
647 	int rc;
648 
649 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Allocate TID\n");
650 
651 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
652 	rc = qed_rdma_bmap_alloc_id(p_hwfn,
653 				    &p_hwfn->p_rdma_info->tid_map, itid);
654 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
655 	if (rc)
656 		goto out;
657 
658 	rc = qed_cxt_dynamic_ilt_alloc(p_hwfn, QED_ELEM_TASK, *itid);
659 out:
660 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Allocate TID - done, rc = %d\n", rc);
661 	return rc;
662 }
663 
664 static int qed_rdma_reserve_lkey(struct qed_hwfn *p_hwfn)
665 {
666 	struct qed_rdma_device *dev = p_hwfn->p_rdma_info->dev;
667 
668 	/* Tid 0 will be used as the key for "reserved MR".
669 	 * The driver should allocate memory for it so it can be loaded but no
670 	 * ramrod should be passed on it.
671 	 */
672 	qed_rdma_alloc_tid(p_hwfn, &dev->reserved_lkey);
673 	if (dev->reserved_lkey != RDMA_RESERVED_LKEY) {
674 		DP_NOTICE(p_hwfn,
675 			  "Reserved lkey should be equal to RDMA_RESERVED_LKEY\n");
676 		return -EINVAL;
677 	}
678 
679 	return 0;
680 }
681 
682 static int qed_rdma_setup(struct qed_hwfn *p_hwfn,
683 			  struct qed_ptt *p_ptt,
684 			  struct qed_rdma_start_in_params *params)
685 {
686 	int rc;
687 
688 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "RDMA setup\n");
689 
690 	qed_rdma_init_devinfo(p_hwfn, params);
691 	qed_rdma_init_port(p_hwfn);
692 	qed_rdma_init_events(p_hwfn, params);
693 
694 	rc = qed_rdma_reserve_lkey(p_hwfn);
695 	if (rc)
696 		return rc;
697 
698 	rc = qed_rdma_init_hw(p_hwfn, p_ptt);
699 	if (rc)
700 		return rc;
701 
702 	if (QED_IS_IWARP_PERSONALITY(p_hwfn)) {
703 		rc = qed_iwarp_setup(p_hwfn, params);
704 		if (rc)
705 			return rc;
706 	} else {
707 		rc = qed_roce_setup(p_hwfn);
708 		if (rc)
709 			return rc;
710 	}
711 
712 	return qed_rdma_start_fw(p_hwfn, params, p_ptt);
713 }
714 
715 static int qed_rdma_stop(void *rdma_cxt)
716 {
717 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
718 	struct rdma_close_func_ramrod_data *p_ramrod;
719 	struct qed_sp_init_data init_data;
720 	struct qed_spq_entry *p_ent;
721 	struct qed_ptt *p_ptt;
722 	u32 ll2_ethertype_en;
723 	int rc = -EBUSY;
724 
725 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "RDMA stop\n");
726 
727 	p_ptt = qed_ptt_acquire(p_hwfn);
728 	if (!p_ptt) {
729 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Failed to acquire PTT\n");
730 		return rc;
731 	}
732 
733 	/* Disable RoCE search */
734 	qed_wr(p_hwfn, p_ptt, p_hwfn->rdma_prs_search_reg, 0);
735 	p_hwfn->b_rdma_enabled_in_prs = false;
736 	p_hwfn->p_rdma_info->active = 0;
737 	qed_wr(p_hwfn, p_ptt, PRS_REG_ROCE_DEST_QP_MAX_PF, 0);
738 
739 	ll2_ethertype_en = qed_rd(p_hwfn, p_ptt, PRS_REG_LIGHT_L2_ETHERTYPE_EN);
740 
741 	qed_wr(p_hwfn, p_ptt, PRS_REG_LIGHT_L2_ETHERTYPE_EN,
742 	       (ll2_ethertype_en & 0xFFFE));
743 
744 	if (QED_IS_IWARP_PERSONALITY(p_hwfn)) {
745 		rc = qed_iwarp_stop(p_hwfn);
746 		if (rc) {
747 			qed_ptt_release(p_hwfn, p_ptt);
748 			return rc;
749 		}
750 	} else {
751 		qed_roce_stop(p_hwfn);
752 	}
753 
754 	qed_ptt_release(p_hwfn, p_ptt);
755 
756 	/* Get SPQ entry */
757 	memset(&init_data, 0, sizeof(init_data));
758 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
759 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
760 
761 	/* Stop RoCE */
762 	rc = qed_sp_init_request(p_hwfn, &p_ent, RDMA_RAMROD_FUNC_CLOSE,
763 				 p_hwfn->p_rdma_info->proto, &init_data);
764 	if (rc)
765 		goto out;
766 
767 	p_ramrod = &p_ent->ramrod.rdma_close_func;
768 
769 	p_ramrod->num_cnqs = p_hwfn->p_rdma_info->num_cnqs;
770 	p_ramrod->cnq_start_offset = (u8)RESC_START(p_hwfn, QED_RDMA_CNQ_RAM);
771 
772 	rc = qed_spq_post(p_hwfn, p_ent, NULL);
773 
774 out:
775 	qed_rdma_free(p_hwfn);
776 
777 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "RDMA stop done, rc = %d\n", rc);
778 	return rc;
779 }
780 
781 static int qed_rdma_add_user(void *rdma_cxt,
782 			     struct qed_rdma_add_user_out_params *out_params)
783 {
784 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
785 	u32 dpi_start_offset;
786 	u32 returned_id = 0;
787 	int rc;
788 
789 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Adding User\n");
790 
791 	/* Allocate DPI */
792 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
793 	rc = qed_rdma_bmap_alloc_id(p_hwfn, &p_hwfn->p_rdma_info->dpi_map,
794 				    &returned_id);
795 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
796 
797 	out_params->dpi = (u16)returned_id;
798 
799 	/* Calculate the corresponding DPI address */
800 	dpi_start_offset = p_hwfn->dpi_start_offset;
801 
802 	out_params->dpi_addr = (u64)((u8 __iomem *)p_hwfn->doorbells +
803 				     dpi_start_offset +
804 				     ((out_params->dpi) * p_hwfn->dpi_size));
805 
806 	out_params->dpi_phys_addr = p_hwfn->db_phys_addr +
807 				    dpi_start_offset +
808 				    ((out_params->dpi) * p_hwfn->dpi_size);
809 
810 	out_params->dpi_size = p_hwfn->dpi_size;
811 	out_params->wid_count = p_hwfn->wid_count;
812 
813 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Adding user - done, rc = %d\n", rc);
814 	return rc;
815 }
816 
817 static struct qed_rdma_port *qed_rdma_query_port(void *rdma_cxt)
818 {
819 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
820 	struct qed_rdma_port *p_port = p_hwfn->p_rdma_info->port;
821 	struct qed_mcp_link_state *p_link_output;
822 
823 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "RDMA Query port\n");
824 
825 	/* The link state is saved only for the leading hwfn */
826 	p_link_output = &QED_LEADING_HWFN(p_hwfn->cdev)->mcp_info->link_output;
827 
828 	p_port->port_state = p_link_output->link_up ? QED_RDMA_PORT_UP
829 	    : QED_RDMA_PORT_DOWN;
830 
831 	p_port->link_speed = p_link_output->speed;
832 
833 	p_port->max_msg_size = RDMA_MAX_DATA_SIZE_IN_WQE;
834 
835 	return p_port;
836 }
837 
838 static struct qed_rdma_device *qed_rdma_query_device(void *rdma_cxt)
839 {
840 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
841 
842 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Query device\n");
843 
844 	/* Return struct with device parameters */
845 	return p_hwfn->p_rdma_info->dev;
846 }
847 
848 static void qed_rdma_cnq_prod_update(void *rdma_cxt, u8 qz_offset, u16 prod)
849 {
850 	struct qed_hwfn *p_hwfn;
851 	u16 qz_num;
852 	u32 addr;
853 
854 	p_hwfn = (struct qed_hwfn *)rdma_cxt;
855 
856 	if (qz_offset > p_hwfn->p_rdma_info->max_queue_zones) {
857 		DP_NOTICE(p_hwfn,
858 			  "queue zone offset %d is too large (max is %d)\n",
859 			  qz_offset, p_hwfn->p_rdma_info->max_queue_zones);
860 		return;
861 	}
862 
863 	qz_num = p_hwfn->p_rdma_info->queue_zone_base + qz_offset;
864 	addr = GTT_BAR0_MAP_REG_USDM_RAM +
865 	       USTORM_COMMON_QUEUE_CONS_OFFSET(qz_num);
866 
867 	REG_WR16(p_hwfn, addr, prod);
868 
869 	/* keep prod updates ordered */
870 	wmb();
871 }
872 
873 static int qed_fill_rdma_dev_info(struct qed_dev *cdev,
874 				  struct qed_dev_rdma_info *info)
875 {
876 	struct qed_hwfn *p_hwfn = QED_AFFIN_HWFN(cdev);
877 
878 	memset(info, 0, sizeof(*info));
879 
880 	info->rdma_type = QED_IS_ROCE_PERSONALITY(p_hwfn) ?
881 	    QED_RDMA_TYPE_ROCE : QED_RDMA_TYPE_IWARP;
882 
883 	info->user_dpm_enabled = (p_hwfn->db_bar_no_edpm == 0);
884 
885 	qed_fill_dev_info(cdev, &info->common);
886 
887 	return 0;
888 }
889 
890 static int qed_rdma_get_sb_start(struct qed_dev *cdev)
891 {
892 	int feat_num;
893 
894 	if (cdev->num_hwfns > 1)
895 		feat_num = FEAT_NUM(QED_AFFIN_HWFN(cdev), QED_PF_L2_QUE);
896 	else
897 		feat_num = FEAT_NUM(QED_AFFIN_HWFN(cdev), QED_PF_L2_QUE) *
898 			   cdev->num_hwfns;
899 
900 	return feat_num;
901 }
902 
903 static int qed_rdma_get_min_cnq_msix(struct qed_dev *cdev)
904 {
905 	int n_cnq = FEAT_NUM(QED_AFFIN_HWFN(cdev), QED_RDMA_CNQ);
906 	int n_msix = cdev->int_params.rdma_msix_cnt;
907 
908 	return min_t(int, n_cnq, n_msix);
909 }
910 
911 static int qed_rdma_set_int(struct qed_dev *cdev, u16 cnt)
912 {
913 	int limit = 0;
914 
915 	/* Mark the fastpath as free/used */
916 	cdev->int_params.fp_initialized = cnt ? true : false;
917 
918 	if (cdev->int_params.out.int_mode != QED_INT_MODE_MSIX) {
919 		DP_ERR(cdev,
920 		       "qed roce supports only MSI-X interrupts (detected %d).\n",
921 		       cdev->int_params.out.int_mode);
922 		return -EINVAL;
923 	} else if (cdev->int_params.fp_msix_cnt) {
924 		limit = cdev->int_params.rdma_msix_cnt;
925 	}
926 
927 	if (!limit)
928 		return -ENOMEM;
929 
930 	return min_t(int, cnt, limit);
931 }
932 
933 static int qed_rdma_get_int(struct qed_dev *cdev, struct qed_int_info *info)
934 {
935 	memset(info, 0, sizeof(*info));
936 
937 	if (!cdev->int_params.fp_initialized) {
938 		DP_INFO(cdev,
939 			"Protocol driver requested interrupt information, but its support is not yet configured\n");
940 		return -EINVAL;
941 	}
942 
943 	if (cdev->int_params.out.int_mode == QED_INT_MODE_MSIX) {
944 		int msix_base = cdev->int_params.rdma_msix_base;
945 
946 		info->msix_cnt = cdev->int_params.rdma_msix_cnt;
947 		info->msix = &cdev->int_params.msix_table[msix_base];
948 
949 		DP_VERBOSE(cdev, QED_MSG_RDMA, "msix_cnt = %d msix_base=%d\n",
950 			   info->msix_cnt, msix_base);
951 	}
952 
953 	return 0;
954 }
955 
956 static int qed_rdma_alloc_pd(void *rdma_cxt, u16 *pd)
957 {
958 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
959 	u32 returned_id;
960 	int rc;
961 
962 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Alloc PD\n");
963 
964 	/* Allocates an unused protection domain */
965 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
966 	rc = qed_rdma_bmap_alloc_id(p_hwfn,
967 				    &p_hwfn->p_rdma_info->pd_map, &returned_id);
968 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
969 
970 	*pd = (u16)returned_id;
971 
972 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Alloc PD - done, rc = %d\n", rc);
973 	return rc;
974 }
975 
976 static void qed_rdma_free_pd(void *rdma_cxt, u16 pd)
977 {
978 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
979 
980 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "pd = %08x\n", pd);
981 
982 	/* Returns a previously allocated protection domain for reuse */
983 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
984 	qed_bmap_release_id(p_hwfn, &p_hwfn->p_rdma_info->pd_map, pd);
985 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
986 }
987 
988 static enum qed_rdma_toggle_bit
989 qed_rdma_toggle_bit_create_resize_cq(struct qed_hwfn *p_hwfn, u16 icid)
990 {
991 	struct qed_rdma_info *p_info = p_hwfn->p_rdma_info;
992 	enum qed_rdma_toggle_bit toggle_bit;
993 	u32 bmap_id;
994 
995 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "icid = %08x\n", icid);
996 
997 	/* the function toggle the bit that is related to a given icid
998 	 * and returns the new toggle bit's value
999 	 */
1000 	bmap_id = icid - qed_cxt_get_proto_cid_start(p_hwfn, p_info->proto);
1001 
1002 	spin_lock_bh(&p_info->lock);
1003 	toggle_bit = !test_and_change_bit(bmap_id,
1004 					  p_info->toggle_bits.bitmap);
1005 	spin_unlock_bh(&p_info->lock);
1006 
1007 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "QED_RDMA_TOGGLE_BIT_= %d\n",
1008 		   toggle_bit);
1009 
1010 	return toggle_bit;
1011 }
1012 
1013 static int qed_rdma_create_cq(void *rdma_cxt,
1014 			      struct qed_rdma_create_cq_in_params *params,
1015 			      u16 *icid)
1016 {
1017 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1018 	struct qed_rdma_info *p_info = p_hwfn->p_rdma_info;
1019 	struct rdma_create_cq_ramrod_data *p_ramrod;
1020 	enum qed_rdma_toggle_bit toggle_bit;
1021 	struct qed_sp_init_data init_data;
1022 	struct qed_spq_entry *p_ent;
1023 	u32 returned_id, start_cid;
1024 	int rc;
1025 
1026 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "cq_handle = %08x%08x\n",
1027 		   params->cq_handle_hi, params->cq_handle_lo);
1028 
1029 	/* Allocate icid */
1030 	spin_lock_bh(&p_info->lock);
1031 	rc = qed_rdma_bmap_alloc_id(p_hwfn, &p_info->cq_map, &returned_id);
1032 	spin_unlock_bh(&p_info->lock);
1033 
1034 	if (rc) {
1035 		DP_NOTICE(p_hwfn, "Can't create CQ, rc = %d\n", rc);
1036 		return rc;
1037 	}
1038 
1039 	start_cid = qed_cxt_get_proto_cid_start(p_hwfn,
1040 						p_info->proto);
1041 	*icid = returned_id + start_cid;
1042 
1043 	/* Check if icid requires a page allocation */
1044 	rc = qed_cxt_dynamic_ilt_alloc(p_hwfn, QED_ELEM_CXT, *icid);
1045 	if (rc)
1046 		goto err;
1047 
1048 	/* Get SPQ entry */
1049 	memset(&init_data, 0, sizeof(init_data));
1050 	init_data.cid = *icid;
1051 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1052 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1053 
1054 	/* Send create CQ ramrod */
1055 	rc = qed_sp_init_request(p_hwfn, &p_ent,
1056 				 RDMA_RAMROD_CREATE_CQ,
1057 				 p_info->proto, &init_data);
1058 	if (rc)
1059 		goto err;
1060 
1061 	p_ramrod = &p_ent->ramrod.rdma_create_cq;
1062 
1063 	p_ramrod->cq_handle.hi = cpu_to_le32(params->cq_handle_hi);
1064 	p_ramrod->cq_handle.lo = cpu_to_le32(params->cq_handle_lo);
1065 	p_ramrod->dpi = cpu_to_le16(params->dpi);
1066 	p_ramrod->is_two_level_pbl = params->pbl_two_level;
1067 	p_ramrod->max_cqes = cpu_to_le32(params->cq_size);
1068 	DMA_REGPAIR_LE(p_ramrod->pbl_addr, params->pbl_ptr);
1069 	p_ramrod->pbl_num_pages = cpu_to_le16(params->pbl_num_pages);
1070 	p_ramrod->cnq_id = (u8)RESC_START(p_hwfn, QED_RDMA_CNQ_RAM) +
1071 			   params->cnq_id;
1072 	p_ramrod->int_timeout = params->int_timeout;
1073 
1074 	/* toggle the bit for every resize or create cq for a given icid */
1075 	toggle_bit = qed_rdma_toggle_bit_create_resize_cq(p_hwfn, *icid);
1076 
1077 	p_ramrod->toggle_bit = toggle_bit;
1078 
1079 	rc = qed_spq_post(p_hwfn, p_ent, NULL);
1080 	if (rc) {
1081 		/* restore toggle bit */
1082 		qed_rdma_toggle_bit_create_resize_cq(p_hwfn, *icid);
1083 		goto err;
1084 	}
1085 
1086 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Created CQ, rc = %d\n", rc);
1087 	return rc;
1088 
1089 err:
1090 	/* release allocated icid */
1091 	spin_lock_bh(&p_info->lock);
1092 	qed_bmap_release_id(p_hwfn, &p_info->cq_map, returned_id);
1093 	spin_unlock_bh(&p_info->lock);
1094 	DP_NOTICE(p_hwfn, "Create CQ failed, rc = %d\n", rc);
1095 
1096 	return rc;
1097 }
1098 
1099 static int
1100 qed_rdma_destroy_cq(void *rdma_cxt,
1101 		    struct qed_rdma_destroy_cq_in_params *in_params,
1102 		    struct qed_rdma_destroy_cq_out_params *out_params)
1103 {
1104 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1105 	struct rdma_destroy_cq_output_params *p_ramrod_res;
1106 	struct rdma_destroy_cq_ramrod_data *p_ramrod;
1107 	struct qed_sp_init_data init_data;
1108 	struct qed_spq_entry *p_ent;
1109 	dma_addr_t ramrod_res_phys;
1110 	enum protocol_type proto;
1111 	int rc = -ENOMEM;
1112 
1113 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "icid = %08x\n", in_params->icid);
1114 
1115 	p_ramrod_res =
1116 	    (struct rdma_destroy_cq_output_params *)
1117 	    dma_alloc_coherent(&p_hwfn->cdev->pdev->dev,
1118 			       sizeof(struct rdma_destroy_cq_output_params),
1119 			       &ramrod_res_phys, GFP_KERNEL);
1120 	if (!p_ramrod_res) {
1121 		DP_NOTICE(p_hwfn,
1122 			  "qed destroy cq failed: cannot allocate memory (ramrod)\n");
1123 		return rc;
1124 	}
1125 
1126 	/* Get SPQ entry */
1127 	memset(&init_data, 0, sizeof(init_data));
1128 	init_data.cid = in_params->icid;
1129 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1130 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1131 	proto = p_hwfn->p_rdma_info->proto;
1132 	/* Send destroy CQ ramrod */
1133 	rc = qed_sp_init_request(p_hwfn, &p_ent,
1134 				 RDMA_RAMROD_DESTROY_CQ,
1135 				 proto, &init_data);
1136 	if (rc)
1137 		goto err;
1138 
1139 	p_ramrod = &p_ent->ramrod.rdma_destroy_cq;
1140 	DMA_REGPAIR_LE(p_ramrod->output_params_addr, ramrod_res_phys);
1141 
1142 	rc = qed_spq_post(p_hwfn, p_ent, NULL);
1143 	if (rc)
1144 		goto err;
1145 
1146 	out_params->num_cq_notif = le16_to_cpu(p_ramrod_res->cnq_num);
1147 
1148 	dma_free_coherent(&p_hwfn->cdev->pdev->dev,
1149 			  sizeof(struct rdma_destroy_cq_output_params),
1150 			  p_ramrod_res, ramrod_res_phys);
1151 
1152 	/* Free icid */
1153 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
1154 
1155 	qed_bmap_release_id(p_hwfn,
1156 			    &p_hwfn->p_rdma_info->cq_map,
1157 			    (in_params->icid -
1158 			     qed_cxt_get_proto_cid_start(p_hwfn, proto)));
1159 
1160 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
1161 
1162 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Destroyed CQ, rc = %d\n", rc);
1163 	return rc;
1164 
1165 err:	dma_free_coherent(&p_hwfn->cdev->pdev->dev,
1166 			  sizeof(struct rdma_destroy_cq_output_params),
1167 			  p_ramrod_res, ramrod_res_phys);
1168 
1169 	return rc;
1170 }
1171 
1172 void qed_rdma_set_fw_mac(u16 *p_fw_mac, u8 *p_qed_mac)
1173 {
1174 	p_fw_mac[0] = cpu_to_le16((p_qed_mac[0] << 8) + p_qed_mac[1]);
1175 	p_fw_mac[1] = cpu_to_le16((p_qed_mac[2] << 8) + p_qed_mac[3]);
1176 	p_fw_mac[2] = cpu_to_le16((p_qed_mac[4] << 8) + p_qed_mac[5]);
1177 }
1178 
1179 static int qed_rdma_query_qp(void *rdma_cxt,
1180 			     struct qed_rdma_qp *qp,
1181 			     struct qed_rdma_query_qp_out_params *out_params)
1182 {
1183 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1184 	int rc = 0;
1185 
1186 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "icid = %08x\n", qp->icid);
1187 
1188 	/* The following fields are filled in from qp and not FW as they can't
1189 	 * be modified by FW
1190 	 */
1191 	out_params->mtu = qp->mtu;
1192 	out_params->dest_qp = qp->dest_qp;
1193 	out_params->incoming_atomic_en = qp->incoming_atomic_en;
1194 	out_params->e2e_flow_control_en = qp->e2e_flow_control_en;
1195 	out_params->incoming_rdma_read_en = qp->incoming_rdma_read_en;
1196 	out_params->incoming_rdma_write_en = qp->incoming_rdma_write_en;
1197 	out_params->dgid = qp->dgid;
1198 	out_params->flow_label = qp->flow_label;
1199 	out_params->hop_limit_ttl = qp->hop_limit_ttl;
1200 	out_params->traffic_class_tos = qp->traffic_class_tos;
1201 	out_params->timeout = qp->ack_timeout;
1202 	out_params->rnr_retry = qp->rnr_retry_cnt;
1203 	out_params->retry_cnt = qp->retry_cnt;
1204 	out_params->min_rnr_nak_timer = qp->min_rnr_nak_timer;
1205 	out_params->pkey_index = 0;
1206 	out_params->max_rd_atomic = qp->max_rd_atomic_req;
1207 	out_params->max_dest_rd_atomic = qp->max_rd_atomic_resp;
1208 	out_params->sqd_async = qp->sqd_async;
1209 
1210 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
1211 		qed_iwarp_query_qp(qp, out_params);
1212 	else
1213 		rc = qed_roce_query_qp(p_hwfn, qp, out_params);
1214 
1215 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Query QP, rc = %d\n", rc);
1216 	return rc;
1217 }
1218 
1219 static int qed_rdma_destroy_qp(void *rdma_cxt, struct qed_rdma_qp *qp)
1220 {
1221 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1222 	int rc = 0;
1223 
1224 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "icid = %08x\n", qp->icid);
1225 
1226 	if (QED_IS_IWARP_PERSONALITY(p_hwfn))
1227 		rc = qed_iwarp_destroy_qp(p_hwfn, qp);
1228 	else
1229 		rc = qed_roce_destroy_qp(p_hwfn, qp);
1230 
1231 	/* free qp params struct */
1232 	kfree(qp);
1233 
1234 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "QP destroyed\n");
1235 	return rc;
1236 }
1237 
1238 static struct qed_rdma_qp *
1239 qed_rdma_create_qp(void *rdma_cxt,
1240 		   struct qed_rdma_create_qp_in_params *in_params,
1241 		   struct qed_rdma_create_qp_out_params *out_params)
1242 {
1243 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1244 	struct qed_rdma_qp *qp;
1245 	u8 max_stats_queues;
1246 	int rc;
1247 
1248 	if (!rdma_cxt || !in_params || !out_params ||
1249 	    !p_hwfn->p_rdma_info->active) {
1250 		DP_ERR(p_hwfn->cdev,
1251 		       "qed roce create qp failed due to NULL entry (rdma_cxt=%p, in=%p, out=%p, roce_info=?\n",
1252 		       rdma_cxt, in_params, out_params);
1253 		return NULL;
1254 	}
1255 
1256 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1257 		   "qed rdma create qp called with qp_handle = %08x%08x\n",
1258 		   in_params->qp_handle_hi, in_params->qp_handle_lo);
1259 
1260 	/* Some sanity checks... */
1261 	max_stats_queues = p_hwfn->p_rdma_info->dev->max_stats_queues;
1262 	if (in_params->stats_queue >= max_stats_queues) {
1263 		DP_ERR(p_hwfn->cdev,
1264 		       "qed rdma create qp failed due to invalid statistics queue %d. maximum is %d\n",
1265 		       in_params->stats_queue, max_stats_queues);
1266 		return NULL;
1267 	}
1268 
1269 	if (QED_IS_IWARP_PERSONALITY(p_hwfn)) {
1270 		if (in_params->sq_num_pages * sizeof(struct regpair) >
1271 		    IWARP_SHARED_QUEUE_PAGE_SQ_PBL_MAX_SIZE) {
1272 			DP_NOTICE(p_hwfn->cdev,
1273 				  "Sq num pages: %d exceeds maximum\n",
1274 				  in_params->sq_num_pages);
1275 			return NULL;
1276 		}
1277 		if (in_params->rq_num_pages * sizeof(struct regpair) >
1278 		    IWARP_SHARED_QUEUE_PAGE_RQ_PBL_MAX_SIZE) {
1279 			DP_NOTICE(p_hwfn->cdev,
1280 				  "Rq num pages: %d exceeds maximum\n",
1281 				  in_params->rq_num_pages);
1282 			return NULL;
1283 		}
1284 	}
1285 
1286 	qp = kzalloc(sizeof(*qp), GFP_KERNEL);
1287 	if (!qp)
1288 		return NULL;
1289 
1290 	qp->cur_state = QED_ROCE_QP_STATE_RESET;
1291 	qp->qp_handle.hi = cpu_to_le32(in_params->qp_handle_hi);
1292 	qp->qp_handle.lo = cpu_to_le32(in_params->qp_handle_lo);
1293 	qp->qp_handle_async.hi = cpu_to_le32(in_params->qp_handle_async_hi);
1294 	qp->qp_handle_async.lo = cpu_to_le32(in_params->qp_handle_async_lo);
1295 	qp->use_srq = in_params->use_srq;
1296 	qp->signal_all = in_params->signal_all;
1297 	qp->fmr_and_reserved_lkey = in_params->fmr_and_reserved_lkey;
1298 	qp->pd = in_params->pd;
1299 	qp->dpi = in_params->dpi;
1300 	qp->sq_cq_id = in_params->sq_cq_id;
1301 	qp->sq_num_pages = in_params->sq_num_pages;
1302 	qp->sq_pbl_ptr = in_params->sq_pbl_ptr;
1303 	qp->rq_cq_id = in_params->rq_cq_id;
1304 	qp->rq_num_pages = in_params->rq_num_pages;
1305 	qp->rq_pbl_ptr = in_params->rq_pbl_ptr;
1306 	qp->srq_id = in_params->srq_id;
1307 	qp->req_offloaded = false;
1308 	qp->resp_offloaded = false;
1309 	qp->e2e_flow_control_en = qp->use_srq ? false : true;
1310 	qp->stats_queue = in_params->stats_queue;
1311 
1312 	if (QED_IS_IWARP_PERSONALITY(p_hwfn)) {
1313 		rc = qed_iwarp_create_qp(p_hwfn, qp, out_params);
1314 		qp->qpid = qp->icid;
1315 	} else {
1316 		rc = qed_roce_alloc_cid(p_hwfn, &qp->icid);
1317 		qp->qpid = ((0xFF << 16) | qp->icid);
1318 	}
1319 
1320 	if (rc) {
1321 		kfree(qp);
1322 		return NULL;
1323 	}
1324 
1325 	out_params->icid = qp->icid;
1326 	out_params->qp_id = qp->qpid;
1327 
1328 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Create QP, rc = %d\n", rc);
1329 	return qp;
1330 }
1331 
1332 static int qed_rdma_modify_qp(void *rdma_cxt,
1333 			      struct qed_rdma_qp *qp,
1334 			      struct qed_rdma_modify_qp_in_params *params)
1335 {
1336 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1337 	enum qed_roce_qp_state prev_state;
1338 	int rc = 0;
1339 
1340 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "icid = %08x params->new_state=%d\n",
1341 		   qp->icid, params->new_state);
1342 
1343 	if (rc) {
1344 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "rc = %d\n", rc);
1345 		return rc;
1346 	}
1347 
1348 	if (GET_FIELD(params->modify_flags,
1349 		      QED_RDMA_MODIFY_QP_VALID_RDMA_OPS_EN)) {
1350 		qp->incoming_rdma_read_en = params->incoming_rdma_read_en;
1351 		qp->incoming_rdma_write_en = params->incoming_rdma_write_en;
1352 		qp->incoming_atomic_en = params->incoming_atomic_en;
1353 	}
1354 
1355 	/* Update QP structure with the updated values */
1356 	if (GET_FIELD(params->modify_flags, QED_ROCE_MODIFY_QP_VALID_ROCE_MODE))
1357 		qp->roce_mode = params->roce_mode;
1358 	if (GET_FIELD(params->modify_flags, QED_ROCE_MODIFY_QP_VALID_PKEY))
1359 		qp->pkey = params->pkey;
1360 	if (GET_FIELD(params->modify_flags,
1361 		      QED_ROCE_MODIFY_QP_VALID_E2E_FLOW_CONTROL_EN))
1362 		qp->e2e_flow_control_en = params->e2e_flow_control_en;
1363 	if (GET_FIELD(params->modify_flags, QED_ROCE_MODIFY_QP_VALID_DEST_QP))
1364 		qp->dest_qp = params->dest_qp;
1365 	if (GET_FIELD(params->modify_flags,
1366 		      QED_ROCE_MODIFY_QP_VALID_ADDRESS_VECTOR)) {
1367 		/* Indicates that the following parameters have changed:
1368 		 * Traffic class, flow label, hop limit, source GID,
1369 		 * destination GID, loopback indicator
1370 		 */
1371 		qp->traffic_class_tos = params->traffic_class_tos;
1372 		qp->flow_label = params->flow_label;
1373 		qp->hop_limit_ttl = params->hop_limit_ttl;
1374 
1375 		qp->sgid = params->sgid;
1376 		qp->dgid = params->dgid;
1377 		qp->udp_src_port = 0;
1378 		qp->vlan_id = params->vlan_id;
1379 		qp->mtu = params->mtu;
1380 		qp->lb_indication = params->lb_indication;
1381 		memcpy((u8 *)&qp->remote_mac_addr[0],
1382 		       (u8 *)&params->remote_mac_addr[0], ETH_ALEN);
1383 		if (params->use_local_mac) {
1384 			memcpy((u8 *)&qp->local_mac_addr[0],
1385 			       (u8 *)&params->local_mac_addr[0], ETH_ALEN);
1386 		} else {
1387 			memcpy((u8 *)&qp->local_mac_addr[0],
1388 			       (u8 *)&p_hwfn->hw_info.hw_mac_addr, ETH_ALEN);
1389 		}
1390 	}
1391 	if (GET_FIELD(params->modify_flags, QED_ROCE_MODIFY_QP_VALID_RQ_PSN))
1392 		qp->rq_psn = params->rq_psn;
1393 	if (GET_FIELD(params->modify_flags, QED_ROCE_MODIFY_QP_VALID_SQ_PSN))
1394 		qp->sq_psn = params->sq_psn;
1395 	if (GET_FIELD(params->modify_flags,
1396 		      QED_RDMA_MODIFY_QP_VALID_MAX_RD_ATOMIC_REQ))
1397 		qp->max_rd_atomic_req = params->max_rd_atomic_req;
1398 	if (GET_FIELD(params->modify_flags,
1399 		      QED_RDMA_MODIFY_QP_VALID_MAX_RD_ATOMIC_RESP))
1400 		qp->max_rd_atomic_resp = params->max_rd_atomic_resp;
1401 	if (GET_FIELD(params->modify_flags,
1402 		      QED_ROCE_MODIFY_QP_VALID_ACK_TIMEOUT))
1403 		qp->ack_timeout = params->ack_timeout;
1404 	if (GET_FIELD(params->modify_flags, QED_ROCE_MODIFY_QP_VALID_RETRY_CNT))
1405 		qp->retry_cnt = params->retry_cnt;
1406 	if (GET_FIELD(params->modify_flags,
1407 		      QED_ROCE_MODIFY_QP_VALID_RNR_RETRY_CNT))
1408 		qp->rnr_retry_cnt = params->rnr_retry_cnt;
1409 	if (GET_FIELD(params->modify_flags,
1410 		      QED_ROCE_MODIFY_QP_VALID_MIN_RNR_NAK_TIMER))
1411 		qp->min_rnr_nak_timer = params->min_rnr_nak_timer;
1412 
1413 	qp->sqd_async = params->sqd_async;
1414 
1415 	prev_state = qp->cur_state;
1416 	if (GET_FIELD(params->modify_flags,
1417 		      QED_RDMA_MODIFY_QP_VALID_NEW_STATE)) {
1418 		qp->cur_state = params->new_state;
1419 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "qp->cur_state=%d\n",
1420 			   qp->cur_state);
1421 	}
1422 
1423 	if (QED_IS_IWARP_PERSONALITY(p_hwfn)) {
1424 		enum qed_iwarp_qp_state new_state =
1425 		    qed_roce2iwarp_state(qp->cur_state);
1426 
1427 		rc = qed_iwarp_modify_qp(p_hwfn, qp, new_state, 0);
1428 	} else {
1429 		rc = qed_roce_modify_qp(p_hwfn, qp, prev_state, params);
1430 	}
1431 
1432 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Modify QP, rc = %d\n", rc);
1433 	return rc;
1434 }
1435 
1436 static int
1437 qed_rdma_register_tid(void *rdma_cxt,
1438 		      struct qed_rdma_register_tid_in_params *params)
1439 {
1440 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1441 	struct rdma_register_tid_ramrod_data *p_ramrod;
1442 	struct qed_sp_init_data init_data;
1443 	struct qed_spq_entry *p_ent;
1444 	enum rdma_tid_type tid_type;
1445 	u8 fw_return_code;
1446 	int rc;
1447 
1448 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "itid = %08x\n", params->itid);
1449 
1450 	/* Get SPQ entry */
1451 	memset(&init_data, 0, sizeof(init_data));
1452 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1453 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1454 
1455 	rc = qed_sp_init_request(p_hwfn, &p_ent, RDMA_RAMROD_REGISTER_MR,
1456 				 p_hwfn->p_rdma_info->proto, &init_data);
1457 	if (rc) {
1458 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "rc = %d\n", rc);
1459 		return rc;
1460 	}
1461 
1462 	if (p_hwfn->p_rdma_info->last_tid < params->itid)
1463 		p_hwfn->p_rdma_info->last_tid = params->itid;
1464 
1465 	p_ramrod = &p_ent->ramrod.rdma_register_tid;
1466 
1467 	p_ramrod->flags = 0;
1468 	SET_FIELD(p_ramrod->flags,
1469 		  RDMA_REGISTER_TID_RAMROD_DATA_TWO_LEVEL_PBL,
1470 		  params->pbl_two_level);
1471 
1472 	SET_FIELD(p_ramrod->flags,
1473 		  RDMA_REGISTER_TID_RAMROD_DATA_ZERO_BASED, params->zbva);
1474 
1475 	SET_FIELD(p_ramrod->flags,
1476 		  RDMA_REGISTER_TID_RAMROD_DATA_PHY_MR, params->phy_mr);
1477 
1478 	/* Don't initialize D/C field, as it may override other bits. */
1479 	if (!(params->tid_type == QED_RDMA_TID_FMR) && !(params->dma_mr))
1480 		SET_FIELD(p_ramrod->flags,
1481 			  RDMA_REGISTER_TID_RAMROD_DATA_PAGE_SIZE_LOG,
1482 			  params->page_size_log - 12);
1483 
1484 	SET_FIELD(p_ramrod->flags,
1485 		  RDMA_REGISTER_TID_RAMROD_DATA_REMOTE_READ,
1486 		  params->remote_read);
1487 
1488 	SET_FIELD(p_ramrod->flags,
1489 		  RDMA_REGISTER_TID_RAMROD_DATA_REMOTE_WRITE,
1490 		  params->remote_write);
1491 
1492 	SET_FIELD(p_ramrod->flags,
1493 		  RDMA_REGISTER_TID_RAMROD_DATA_REMOTE_ATOMIC,
1494 		  params->remote_atomic);
1495 
1496 	SET_FIELD(p_ramrod->flags,
1497 		  RDMA_REGISTER_TID_RAMROD_DATA_LOCAL_WRITE,
1498 		  params->local_write);
1499 
1500 	SET_FIELD(p_ramrod->flags,
1501 		  RDMA_REGISTER_TID_RAMROD_DATA_LOCAL_READ, params->local_read);
1502 
1503 	SET_FIELD(p_ramrod->flags,
1504 		  RDMA_REGISTER_TID_RAMROD_DATA_ENABLE_MW_BIND,
1505 		  params->mw_bind);
1506 
1507 	SET_FIELD(p_ramrod->flags1,
1508 		  RDMA_REGISTER_TID_RAMROD_DATA_PBL_PAGE_SIZE_LOG,
1509 		  params->pbl_page_size_log - 12);
1510 
1511 	SET_FIELD(p_ramrod->flags2,
1512 		  RDMA_REGISTER_TID_RAMROD_DATA_DMA_MR, params->dma_mr);
1513 
1514 	switch (params->tid_type) {
1515 	case QED_RDMA_TID_REGISTERED_MR:
1516 		tid_type = RDMA_TID_REGISTERED_MR;
1517 		break;
1518 	case QED_RDMA_TID_FMR:
1519 		tid_type = RDMA_TID_FMR;
1520 		break;
1521 	case QED_RDMA_TID_MW:
1522 		tid_type = RDMA_TID_MW;
1523 		break;
1524 	default:
1525 		rc = -EINVAL;
1526 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "rc = %d\n", rc);
1527 		qed_sp_destroy_request(p_hwfn, p_ent);
1528 		return rc;
1529 	}
1530 	SET_FIELD(p_ramrod->flags1,
1531 		  RDMA_REGISTER_TID_RAMROD_DATA_TID_TYPE, tid_type);
1532 
1533 	p_ramrod->itid = cpu_to_le32(params->itid);
1534 	p_ramrod->key = params->key;
1535 	p_ramrod->pd = cpu_to_le16(params->pd);
1536 	p_ramrod->length_hi = (u8)(params->length >> 32);
1537 	p_ramrod->length_lo = DMA_LO_LE(params->length);
1538 	if (params->zbva) {
1539 		/* Lower 32 bits of the registered MR address.
1540 		 * In case of zero based MR, will hold FBO
1541 		 */
1542 		p_ramrod->va.hi = 0;
1543 		p_ramrod->va.lo = cpu_to_le32(params->fbo);
1544 	} else {
1545 		DMA_REGPAIR_LE(p_ramrod->va, params->vaddr);
1546 	}
1547 	DMA_REGPAIR_LE(p_ramrod->pbl_base, params->pbl_ptr);
1548 
1549 	/* DIF */
1550 	if (params->dif_enabled) {
1551 		SET_FIELD(p_ramrod->flags2,
1552 			  RDMA_REGISTER_TID_RAMROD_DATA_DIF_ON_HOST_FLG, 1);
1553 		DMA_REGPAIR_LE(p_ramrod->dif_error_addr,
1554 			       params->dif_error_addr);
1555 	}
1556 
1557 	rc = qed_spq_post(p_hwfn, p_ent, &fw_return_code);
1558 	if (rc)
1559 		return rc;
1560 
1561 	if (fw_return_code != RDMA_RETURN_OK) {
1562 		DP_NOTICE(p_hwfn, "fw_return_code = %d\n", fw_return_code);
1563 		return -EINVAL;
1564 	}
1565 
1566 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "Register TID, rc = %d\n", rc);
1567 	return rc;
1568 }
1569 
1570 static int qed_rdma_deregister_tid(void *rdma_cxt, u32 itid)
1571 {
1572 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1573 	struct rdma_deregister_tid_ramrod_data *p_ramrod;
1574 	struct qed_sp_init_data init_data;
1575 	struct qed_spq_entry *p_ent;
1576 	struct qed_ptt *p_ptt;
1577 	u8 fw_return_code;
1578 	int rc;
1579 
1580 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "itid = %08x\n", itid);
1581 
1582 	/* Get SPQ entry */
1583 	memset(&init_data, 0, sizeof(init_data));
1584 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1585 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1586 
1587 	rc = qed_sp_init_request(p_hwfn, &p_ent, RDMA_RAMROD_DEREGISTER_MR,
1588 				 p_hwfn->p_rdma_info->proto, &init_data);
1589 	if (rc) {
1590 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "rc = %d\n", rc);
1591 		return rc;
1592 	}
1593 
1594 	p_ramrod = &p_ent->ramrod.rdma_deregister_tid;
1595 	p_ramrod->itid = cpu_to_le32(itid);
1596 
1597 	rc = qed_spq_post(p_hwfn, p_ent, &fw_return_code);
1598 	if (rc) {
1599 		DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "rc = %d\n", rc);
1600 		return rc;
1601 	}
1602 
1603 	if (fw_return_code == RDMA_RETURN_DEREGISTER_MR_BAD_STATE_ERR) {
1604 		DP_NOTICE(p_hwfn, "fw_return_code = %d\n", fw_return_code);
1605 		return -EINVAL;
1606 	} else if (fw_return_code == RDMA_RETURN_NIG_DRAIN_REQ) {
1607 		/* Bit indicating that the TID is in use and a nig drain is
1608 		 * required before sending the ramrod again
1609 		 */
1610 		p_ptt = qed_ptt_acquire(p_hwfn);
1611 		if (!p_ptt) {
1612 			rc = -EBUSY;
1613 			DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1614 				   "Failed to acquire PTT\n");
1615 			return rc;
1616 		}
1617 
1618 		rc = qed_mcp_drain(p_hwfn, p_ptt);
1619 		if (rc) {
1620 			qed_ptt_release(p_hwfn, p_ptt);
1621 			DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1622 				   "Drain failed\n");
1623 			return rc;
1624 		}
1625 
1626 		qed_ptt_release(p_hwfn, p_ptt);
1627 
1628 		/* Resend the ramrod */
1629 		rc = qed_sp_init_request(p_hwfn, &p_ent,
1630 					 RDMA_RAMROD_DEREGISTER_MR,
1631 					 p_hwfn->p_rdma_info->proto,
1632 					 &init_data);
1633 		if (rc) {
1634 			DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1635 				   "Failed to init sp-element\n");
1636 			return rc;
1637 		}
1638 
1639 		rc = qed_spq_post(p_hwfn, p_ent, &fw_return_code);
1640 		if (rc) {
1641 			DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1642 				   "Ramrod failed\n");
1643 			return rc;
1644 		}
1645 
1646 		if (fw_return_code != RDMA_RETURN_OK) {
1647 			DP_NOTICE(p_hwfn, "fw_return_code = %d\n",
1648 				  fw_return_code);
1649 			return rc;
1650 		}
1651 	}
1652 
1653 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "De-registered TID, rc = %d\n", rc);
1654 	return rc;
1655 }
1656 
1657 static void *qed_rdma_get_rdma_ctx(struct qed_dev *cdev)
1658 {
1659 	return QED_AFFIN_HWFN(cdev);
1660 }
1661 
1662 static int qed_rdma_modify_srq(void *rdma_cxt,
1663 			       struct qed_rdma_modify_srq_in_params *in_params)
1664 {
1665 	struct rdma_srq_modify_ramrod_data *p_ramrod;
1666 	struct qed_sp_init_data init_data = {};
1667 	struct qed_hwfn *p_hwfn = rdma_cxt;
1668 	struct qed_spq_entry *p_ent;
1669 	u16 opaque_fid;
1670 	int rc;
1671 
1672 	init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1673 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1674 
1675 	rc = qed_sp_init_request(p_hwfn, &p_ent,
1676 				 RDMA_RAMROD_MODIFY_SRQ,
1677 				 p_hwfn->p_rdma_info->proto, &init_data);
1678 	if (rc)
1679 		return rc;
1680 
1681 	p_ramrod = &p_ent->ramrod.rdma_modify_srq;
1682 	p_ramrod->srq_id.srq_idx = cpu_to_le16(in_params->srq_id);
1683 	opaque_fid = p_hwfn->hw_info.opaque_fid;
1684 	p_ramrod->srq_id.opaque_fid = cpu_to_le16(opaque_fid);
1685 	p_ramrod->wqe_limit = cpu_to_le32(in_params->wqe_limit);
1686 
1687 	rc = qed_spq_post(p_hwfn, p_ent, NULL);
1688 	if (rc)
1689 		return rc;
1690 
1691 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "modified SRQ id = %x",
1692 		   in_params->srq_id);
1693 
1694 	return rc;
1695 }
1696 
1697 static int
1698 qed_rdma_destroy_srq(void *rdma_cxt,
1699 		     struct qed_rdma_destroy_srq_in_params *in_params)
1700 {
1701 	struct rdma_srq_destroy_ramrod_data *p_ramrod;
1702 	struct qed_sp_init_data init_data = {};
1703 	struct qed_hwfn *p_hwfn = rdma_cxt;
1704 	struct qed_spq_entry *p_ent;
1705 	struct qed_bmap *bmap;
1706 	u16 opaque_fid;
1707 	int rc;
1708 
1709 	opaque_fid = p_hwfn->hw_info.opaque_fid;
1710 
1711 	init_data.opaque_fid = opaque_fid;
1712 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1713 
1714 	rc = qed_sp_init_request(p_hwfn, &p_ent,
1715 				 RDMA_RAMROD_DESTROY_SRQ,
1716 				 p_hwfn->p_rdma_info->proto, &init_data);
1717 	if (rc)
1718 		return rc;
1719 
1720 	p_ramrod = &p_ent->ramrod.rdma_destroy_srq;
1721 	p_ramrod->srq_id.srq_idx = cpu_to_le16(in_params->srq_id);
1722 	p_ramrod->srq_id.opaque_fid = cpu_to_le16(opaque_fid);
1723 
1724 	rc = qed_spq_post(p_hwfn, p_ent, NULL);
1725 	if (rc)
1726 		return rc;
1727 
1728 	bmap = &p_hwfn->p_rdma_info->srq_map;
1729 
1730 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
1731 	qed_bmap_release_id(p_hwfn, bmap, in_params->srq_id);
1732 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
1733 
1734 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "SRQ destroyed Id = %x",
1735 		   in_params->srq_id);
1736 
1737 	return rc;
1738 }
1739 
1740 static int
1741 qed_rdma_create_srq(void *rdma_cxt,
1742 		    struct qed_rdma_create_srq_in_params *in_params,
1743 		    struct qed_rdma_create_srq_out_params *out_params)
1744 {
1745 	struct rdma_srq_create_ramrod_data *p_ramrod;
1746 	struct qed_sp_init_data init_data = {};
1747 	struct qed_hwfn *p_hwfn = rdma_cxt;
1748 	enum qed_cxt_elem_type elem_type;
1749 	struct qed_spq_entry *p_ent;
1750 	u16 opaque_fid, srq_id;
1751 	struct qed_bmap *bmap;
1752 	u32 returned_id;
1753 	int rc;
1754 
1755 	bmap = &p_hwfn->p_rdma_info->srq_map;
1756 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
1757 	rc = qed_rdma_bmap_alloc_id(p_hwfn, bmap, &returned_id);
1758 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
1759 
1760 	if (rc) {
1761 		DP_NOTICE(p_hwfn, "failed to allocate srq id\n");
1762 		return rc;
1763 	}
1764 
1765 	elem_type = QED_ELEM_SRQ;
1766 	rc = qed_cxt_dynamic_ilt_alloc(p_hwfn, elem_type, returned_id);
1767 	if (rc)
1768 		goto err;
1769 	/* returned id is no greater than u16 */
1770 	srq_id = (u16)returned_id;
1771 	opaque_fid = p_hwfn->hw_info.opaque_fid;
1772 
1773 	opaque_fid = p_hwfn->hw_info.opaque_fid;
1774 	init_data.opaque_fid = opaque_fid;
1775 	init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1776 
1777 	rc = qed_sp_init_request(p_hwfn, &p_ent,
1778 				 RDMA_RAMROD_CREATE_SRQ,
1779 				 p_hwfn->p_rdma_info->proto, &init_data);
1780 	if (rc)
1781 		goto err;
1782 
1783 	p_ramrod = &p_ent->ramrod.rdma_create_srq;
1784 	DMA_REGPAIR_LE(p_ramrod->pbl_base_addr, in_params->pbl_base_addr);
1785 	p_ramrod->pages_in_srq_pbl = cpu_to_le16(in_params->num_pages);
1786 	p_ramrod->pd_id = cpu_to_le16(in_params->pd_id);
1787 	p_ramrod->srq_id.srq_idx = cpu_to_le16(srq_id);
1788 	p_ramrod->srq_id.opaque_fid = cpu_to_le16(opaque_fid);
1789 	p_ramrod->page_size = cpu_to_le16(in_params->page_size);
1790 	DMA_REGPAIR_LE(p_ramrod->producers_addr, in_params->prod_pair_addr);
1791 
1792 	rc = qed_spq_post(p_hwfn, p_ent, NULL);
1793 	if (rc)
1794 		goto err;
1795 
1796 	out_params->srq_id = srq_id;
1797 
1798 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1799 		   "SRQ created Id = %x\n", out_params->srq_id);
1800 
1801 	return rc;
1802 
1803 err:
1804 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
1805 	qed_bmap_release_id(p_hwfn, bmap, returned_id);
1806 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
1807 
1808 	return rc;
1809 }
1810 
1811 bool qed_rdma_allocated_qps(struct qed_hwfn *p_hwfn)
1812 {
1813 	bool result;
1814 
1815 	/* if rdma wasn't activated yet, naturally there are no qps */
1816 	if (!p_hwfn->p_rdma_info->active)
1817 		return false;
1818 
1819 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
1820 	if (!p_hwfn->p_rdma_info->cid_map.bitmap)
1821 		result = false;
1822 	else
1823 		result = !qed_bmap_is_empty(&p_hwfn->p_rdma_info->cid_map);
1824 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
1825 	return result;
1826 }
1827 
1828 void qed_rdma_dpm_conf(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
1829 {
1830 	u32 val;
1831 
1832 	val = (p_hwfn->dcbx_no_edpm || p_hwfn->db_bar_no_edpm) ? 0 : 1;
1833 
1834 	qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_DPM_ENABLE, val);
1835 	DP_VERBOSE(p_hwfn, (QED_MSG_DCB | QED_MSG_RDMA),
1836 		   "Changing DPM_EN state to %d (DCBX=%d, DB_BAR=%d)\n",
1837 		   val, p_hwfn->dcbx_no_edpm, p_hwfn->db_bar_no_edpm);
1838 }
1839 
1840 
1841 void qed_rdma_dpm_bar(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
1842 {
1843 	p_hwfn->db_bar_no_edpm = true;
1844 
1845 	qed_rdma_dpm_conf(p_hwfn, p_ptt);
1846 }
1847 
1848 static int qed_rdma_start(void *rdma_cxt,
1849 			  struct qed_rdma_start_in_params *params)
1850 {
1851 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1852 	struct qed_ptt *p_ptt;
1853 	int rc = -EBUSY;
1854 
1855 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA,
1856 		   "desired_cnq = %08x\n", params->desired_cnq);
1857 
1858 	p_ptt = qed_ptt_acquire(p_hwfn);
1859 	if (!p_ptt)
1860 		goto err;
1861 
1862 	rc = qed_rdma_alloc(p_hwfn);
1863 	if (rc)
1864 		goto err1;
1865 
1866 	rc = qed_rdma_setup(p_hwfn, p_ptt, params);
1867 	if (rc)
1868 		goto err2;
1869 
1870 	qed_ptt_release(p_hwfn, p_ptt);
1871 	p_hwfn->p_rdma_info->active = 1;
1872 
1873 	return rc;
1874 
1875 err2:
1876 	qed_rdma_free(p_hwfn);
1877 err1:
1878 	qed_ptt_release(p_hwfn, p_ptt);
1879 err:
1880 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "RDMA start - error, rc = %d\n", rc);
1881 	return rc;
1882 }
1883 
1884 static int qed_rdma_init(struct qed_dev *cdev,
1885 			 struct qed_rdma_start_in_params *params)
1886 {
1887 	return qed_rdma_start(QED_AFFIN_HWFN(cdev), params);
1888 }
1889 
1890 static void qed_rdma_remove_user(void *rdma_cxt, u16 dpi)
1891 {
1892 	struct qed_hwfn *p_hwfn = (struct qed_hwfn *)rdma_cxt;
1893 
1894 	DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "dpi = %08x\n", dpi);
1895 
1896 	spin_lock_bh(&p_hwfn->p_rdma_info->lock);
1897 	qed_bmap_release_id(p_hwfn, &p_hwfn->p_rdma_info->dpi_map, dpi);
1898 	spin_unlock_bh(&p_hwfn->p_rdma_info->lock);
1899 }
1900 
1901 static int qed_roce_ll2_set_mac_filter(struct qed_dev *cdev,
1902 				       u8 *old_mac_address,
1903 				       u8 *new_mac_address)
1904 {
1905 	int rc = 0;
1906 
1907 	if (old_mac_address)
1908 		qed_llh_remove_mac_filter(cdev, 0, old_mac_address);
1909 	if (new_mac_address)
1910 		rc = qed_llh_add_mac_filter(cdev, 0, new_mac_address);
1911 
1912 	if (rc)
1913 		DP_ERR(cdev,
1914 		       "qed roce ll2 mac filter set: failed to add MAC filter\n");
1915 
1916 	return rc;
1917 }
1918 
1919 static int qed_iwarp_set_engine_affin(struct qed_dev *cdev, bool b_reset)
1920 {
1921 	enum qed_eng eng;
1922 	u8 ppfid = 0;
1923 	int rc;
1924 
1925 	/* Make sure iwarp cmt mode is enabled before setting affinity */
1926 	if (!cdev->iwarp_cmt)
1927 		return -EINVAL;
1928 
1929 	if (b_reset)
1930 		eng = QED_BOTH_ENG;
1931 	else
1932 		eng = cdev->l2_affin_hint ? QED_ENG1 : QED_ENG0;
1933 
1934 	rc = qed_llh_set_ppfid_affinity(cdev, ppfid, eng);
1935 	if (rc) {
1936 		DP_NOTICE(cdev,
1937 			  "Failed to set the engine affinity of ppfid %d\n",
1938 			  ppfid);
1939 		return rc;
1940 	}
1941 
1942 	DP_VERBOSE(cdev, (QED_MSG_RDMA | QED_MSG_SP),
1943 		   "LLH: Set the engine affinity of non-RoCE packets as %d\n",
1944 		   eng);
1945 
1946 	return 0;
1947 }
1948 
1949 static const struct qed_rdma_ops qed_rdma_ops_pass = {
1950 	.common = &qed_common_ops_pass,
1951 	.fill_dev_info = &qed_fill_rdma_dev_info,
1952 	.rdma_get_rdma_ctx = &qed_rdma_get_rdma_ctx,
1953 	.rdma_init = &qed_rdma_init,
1954 	.rdma_add_user = &qed_rdma_add_user,
1955 	.rdma_remove_user = &qed_rdma_remove_user,
1956 	.rdma_stop = &qed_rdma_stop,
1957 	.rdma_query_port = &qed_rdma_query_port,
1958 	.rdma_query_device = &qed_rdma_query_device,
1959 	.rdma_get_start_sb = &qed_rdma_get_sb_start,
1960 	.rdma_get_rdma_int = &qed_rdma_get_int,
1961 	.rdma_set_rdma_int = &qed_rdma_set_int,
1962 	.rdma_get_min_cnq_msix = &qed_rdma_get_min_cnq_msix,
1963 	.rdma_cnq_prod_update = &qed_rdma_cnq_prod_update,
1964 	.rdma_alloc_pd = &qed_rdma_alloc_pd,
1965 	.rdma_dealloc_pd = &qed_rdma_free_pd,
1966 	.rdma_create_cq = &qed_rdma_create_cq,
1967 	.rdma_destroy_cq = &qed_rdma_destroy_cq,
1968 	.rdma_create_qp = &qed_rdma_create_qp,
1969 	.rdma_modify_qp = &qed_rdma_modify_qp,
1970 	.rdma_query_qp = &qed_rdma_query_qp,
1971 	.rdma_destroy_qp = &qed_rdma_destroy_qp,
1972 	.rdma_alloc_tid = &qed_rdma_alloc_tid,
1973 	.rdma_free_tid = &qed_rdma_free_tid,
1974 	.rdma_register_tid = &qed_rdma_register_tid,
1975 	.rdma_deregister_tid = &qed_rdma_deregister_tid,
1976 	.rdma_create_srq = &qed_rdma_create_srq,
1977 	.rdma_modify_srq = &qed_rdma_modify_srq,
1978 	.rdma_destroy_srq = &qed_rdma_destroy_srq,
1979 	.ll2_acquire_connection = &qed_ll2_acquire_connection,
1980 	.ll2_establish_connection = &qed_ll2_establish_connection,
1981 	.ll2_terminate_connection = &qed_ll2_terminate_connection,
1982 	.ll2_release_connection = &qed_ll2_release_connection,
1983 	.ll2_post_rx_buffer = &qed_ll2_post_rx_buffer,
1984 	.ll2_prepare_tx_packet = &qed_ll2_prepare_tx_packet,
1985 	.ll2_set_fragment_of_tx_packet = &qed_ll2_set_fragment_of_tx_packet,
1986 	.ll2_set_mac_filter = &qed_roce_ll2_set_mac_filter,
1987 	.ll2_get_stats = &qed_ll2_get_stats,
1988 	.iwarp_set_engine_affin = &qed_iwarp_set_engine_affin,
1989 	.iwarp_connect = &qed_iwarp_connect,
1990 	.iwarp_create_listen = &qed_iwarp_create_listen,
1991 	.iwarp_destroy_listen = &qed_iwarp_destroy_listen,
1992 	.iwarp_accept = &qed_iwarp_accept,
1993 	.iwarp_reject = &qed_iwarp_reject,
1994 	.iwarp_send_rtr = &qed_iwarp_send_rtr,
1995 };
1996 
1997 const struct qed_rdma_ops *qed_get_rdma_ops(void)
1998 {
1999 	return &qed_rdma_ops_pass;
2000 }
2001 EXPORT_SYMBOL(qed_get_rdma_ops);
2002