x86/topology: Fix function name in documentation
[cris-mirror.git] / drivers / infiniband / hw / i40iw / i40iw_ctrl.c
blobc74fd3309b9333a4a58eaeb378bd2442e6164f2d
1 /*******************************************************************************
3 * Copyright (c) 2015-2016 Intel Corporation. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenFabrics.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
33 *******************************************************************************/
35 #include "i40iw_osdep.h"
36 #include "i40iw_register.h"
37 #include "i40iw_status.h"
38 #include "i40iw_hmc.h"
40 #include "i40iw_d.h"
41 #include "i40iw_type.h"
42 #include "i40iw_p.h"
43 #include "i40iw_vf.h"
44 #include "i40iw_virtchnl.h"
46 /**
47 * i40iw_insert_wqe_hdr - write wqe header
48 * @wqe: cqp wqe for header
49 * @header: header for the cqp wqe
51 void i40iw_insert_wqe_hdr(u64 *wqe, u64 header)
53 wmb(); /* make sure WQE is populated before polarity is set */
54 set_64bit_val(wqe, 24, header);
57 void i40iw_check_cqp_progress(struct i40iw_cqp_timeout *cqp_timeout, struct i40iw_sc_dev *dev)
59 if (cqp_timeout->compl_cqp_cmds != dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS]) {
60 cqp_timeout->compl_cqp_cmds = dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS];
61 cqp_timeout->count = 0;
62 } else {
63 if (dev->cqp_cmd_stats[OP_REQUESTED_COMMANDS] != cqp_timeout->compl_cqp_cmds)
64 cqp_timeout->count++;
68 /**
69 * i40iw_get_cqp_reg_info - get head and tail for cqp using registers
70 * @cqp: struct for cqp hw
71 * @val: cqp tail register value
72 * @tail:wqtail register value
73 * @error: cqp processing err
75 static inline void i40iw_get_cqp_reg_info(struct i40iw_sc_cqp *cqp,
76 u32 *val,
77 u32 *tail,
78 u32 *error)
80 if (cqp->dev->is_pf) {
81 *val = i40iw_rd32(cqp->dev->hw, I40E_PFPE_CQPTAIL);
82 *tail = RS_32(*val, I40E_PFPE_CQPTAIL_WQTAIL);
83 *error = RS_32(*val, I40E_PFPE_CQPTAIL_CQP_OP_ERR);
84 } else {
85 *val = i40iw_rd32(cqp->dev->hw, I40E_VFPE_CQPTAIL1);
86 *tail = RS_32(*val, I40E_VFPE_CQPTAIL_WQTAIL);
87 *error = RS_32(*val, I40E_VFPE_CQPTAIL_CQP_OP_ERR);
91 /**
92 * i40iw_cqp_poll_registers - poll cqp registers
93 * @cqp: struct for cqp hw
94 * @tail:wqtail register value
95 * @count: how many times to try for completion
97 static enum i40iw_status_code i40iw_cqp_poll_registers(
98 struct i40iw_sc_cqp *cqp,
99 u32 tail,
100 u32 count)
102 u32 i = 0;
103 u32 newtail, error, val;
105 while (i < count) {
106 i++;
107 i40iw_get_cqp_reg_info(cqp, &val, &newtail, &error);
108 if (error) {
109 error = (cqp->dev->is_pf) ?
110 i40iw_rd32(cqp->dev->hw, I40E_PFPE_CQPERRCODES) :
111 i40iw_rd32(cqp->dev->hw, I40E_VFPE_CQPERRCODES1);
112 return I40IW_ERR_CQP_COMPL_ERROR;
114 if (newtail != tail) {
115 /* SUCCESS */
116 I40IW_RING_MOVE_TAIL(cqp->sq_ring);
117 cqp->dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS]++;
118 return 0;
120 udelay(I40IW_SLEEP_COUNT);
122 return I40IW_ERR_TIMEOUT;
126 * i40iw_sc_parse_fpm_commit_buf - parse fpm commit buffer
127 * @buf: ptr to fpm commit buffer
128 * @info: ptr to i40iw_hmc_obj_info struct
129 * @sd: number of SDs for HMC objects
131 * parses fpm commit info and copy base value
132 * of hmc objects in hmc_info
134 static enum i40iw_status_code i40iw_sc_parse_fpm_commit_buf(
135 u64 *buf,
136 struct i40iw_hmc_obj_info *info,
137 u32 *sd)
139 u64 temp;
140 u64 size;
141 u64 base = 0;
142 u32 i, j;
143 u32 k = 0;
145 /* copy base values in obj_info */
146 for (i = I40IW_HMC_IW_QP, j = 0; i <= I40IW_HMC_IW_PBLE; i++, j += 8) {
147 if ((i == I40IW_HMC_IW_SRQ) ||
148 (i == I40IW_HMC_IW_FSIMC) ||
149 (i == I40IW_HMC_IW_FSIAV)) {
150 info[i].base = 0;
151 info[i].cnt = 0;
152 continue;
154 get_64bit_val(buf, j, &temp);
155 info[i].base = RS_64_1(temp, 32) * 512;
156 if (info[i].base > base) {
157 base = info[i].base;
158 k = i;
160 if (i == I40IW_HMC_IW_APBVT_ENTRY) {
161 info[i].cnt = 1;
162 continue;
164 if (i == I40IW_HMC_IW_QP)
165 info[i].cnt = (u32)RS_64(temp, I40IW_QUERY_FPM_MAX_QPS);
166 else if (i == I40IW_HMC_IW_CQ)
167 info[i].cnt = (u32)RS_64(temp, I40IW_QUERY_FPM_MAX_CQS);
168 else
169 info[i].cnt = (u32)(temp);
171 size = info[k].cnt * info[k].size + info[k].base;
172 if (size & 0x1FFFFF)
173 *sd = (u32)((size >> 21) + 1); /* add 1 for remainder */
174 else
175 *sd = (u32)(size >> 21);
177 return 0;
181 * i40iw_sc_decode_fpm_query() - Decode a 64 bit value into max count and size
182 * @buf: ptr to fpm query buffer
183 * @buf_idx: index into buf
184 * @info: ptr to i40iw_hmc_obj_info struct
185 * @rsrc_idx: resource index into info
187 * Decode a 64 bit value from fpm query buffer into max count and size
189 static u64 i40iw_sc_decode_fpm_query(u64 *buf,
190 u32 buf_idx,
191 struct i40iw_hmc_obj_info *obj_info,
192 u32 rsrc_idx)
194 u64 temp;
195 u32 size;
197 get_64bit_val(buf, buf_idx, &temp);
198 obj_info[rsrc_idx].max_cnt = (u32)temp;
199 size = (u32)RS_64_1(temp, 32);
200 obj_info[rsrc_idx].size = LS_64_1(1, size);
202 return temp;
206 * i40iw_sc_parse_fpm_query_buf() - parses fpm query buffer
207 * @buf: ptr to fpm query buffer
208 * @info: ptr to i40iw_hmc_obj_info struct
209 * @hmc_fpm_misc: ptr to fpm data
211 * parses fpm query buffer and copy max_cnt and
212 * size value of hmc objects in hmc_info
214 static enum i40iw_status_code i40iw_sc_parse_fpm_query_buf(
215 u64 *buf,
216 struct i40iw_hmc_info *hmc_info,
217 struct i40iw_hmc_fpm_misc *hmc_fpm_misc)
219 struct i40iw_hmc_obj_info *obj_info;
220 u64 temp;
221 u32 size;
222 u16 max_pe_sds;
224 obj_info = hmc_info->hmc_obj;
226 get_64bit_val(buf, 0, &temp);
227 hmc_info->first_sd_index = (u16)RS_64(temp, I40IW_QUERY_FPM_FIRST_PE_SD_INDEX);
228 max_pe_sds = (u16)RS_64(temp, I40IW_QUERY_FPM_MAX_PE_SDS);
230 /* Reduce SD count for VFs by 1 to account for PBLE backing page rounding */
231 if (hmc_info->hmc_fn_id >= I40IW_FIRST_VF_FPM_ID)
232 max_pe_sds--;
233 hmc_fpm_misc->max_sds = max_pe_sds;
234 hmc_info->sd_table.sd_cnt = max_pe_sds + hmc_info->first_sd_index;
236 get_64bit_val(buf, 8, &temp);
237 obj_info[I40IW_HMC_IW_QP].max_cnt = (u32)RS_64(temp, I40IW_QUERY_FPM_MAX_QPS);
238 size = (u32)RS_64_1(temp, 32);
239 obj_info[I40IW_HMC_IW_QP].size = LS_64_1(1, size);
241 get_64bit_val(buf, 16, &temp);
242 obj_info[I40IW_HMC_IW_CQ].max_cnt = (u32)RS_64(temp, I40IW_QUERY_FPM_MAX_CQS);
243 size = (u32)RS_64_1(temp, 32);
244 obj_info[I40IW_HMC_IW_CQ].size = LS_64_1(1, size);
246 i40iw_sc_decode_fpm_query(buf, 32, obj_info, I40IW_HMC_IW_HTE);
247 i40iw_sc_decode_fpm_query(buf, 40, obj_info, I40IW_HMC_IW_ARP);
249 obj_info[I40IW_HMC_IW_APBVT_ENTRY].size = 8192;
250 obj_info[I40IW_HMC_IW_APBVT_ENTRY].max_cnt = 1;
252 i40iw_sc_decode_fpm_query(buf, 48, obj_info, I40IW_HMC_IW_MR);
253 i40iw_sc_decode_fpm_query(buf, 56, obj_info, I40IW_HMC_IW_XF);
255 get_64bit_val(buf, 64, &temp);
256 obj_info[I40IW_HMC_IW_XFFL].max_cnt = (u32)temp;
257 obj_info[I40IW_HMC_IW_XFFL].size = 4;
258 hmc_fpm_misc->xf_block_size = RS_64(temp, I40IW_QUERY_FPM_XFBLOCKSIZE);
259 if (!hmc_fpm_misc->xf_block_size)
260 return I40IW_ERR_INVALID_SIZE;
262 i40iw_sc_decode_fpm_query(buf, 72, obj_info, I40IW_HMC_IW_Q1);
264 get_64bit_val(buf, 80, &temp);
265 obj_info[I40IW_HMC_IW_Q1FL].max_cnt = (u32)temp;
266 obj_info[I40IW_HMC_IW_Q1FL].size = 4;
267 hmc_fpm_misc->q1_block_size = RS_64(temp, I40IW_QUERY_FPM_Q1BLOCKSIZE);
268 if (!hmc_fpm_misc->q1_block_size)
269 return I40IW_ERR_INVALID_SIZE;
271 i40iw_sc_decode_fpm_query(buf, 88, obj_info, I40IW_HMC_IW_TIMER);
273 get_64bit_val(buf, 112, &temp);
274 obj_info[I40IW_HMC_IW_PBLE].max_cnt = (u32)temp;
275 obj_info[I40IW_HMC_IW_PBLE].size = 8;
277 get_64bit_val(buf, 120, &temp);
278 hmc_fpm_misc->max_ceqs = (u8)RS_64(temp, I40IW_QUERY_FPM_MAX_CEQS);
279 hmc_fpm_misc->ht_multiplier = RS_64(temp, I40IW_QUERY_FPM_HTMULTIPLIER);
280 hmc_fpm_misc->timer_bucket = RS_64(temp, I40IW_QUERY_FPM_TIMERBUCKET);
282 return 0;
286 * i40iw_fill_qos_list - Change all unknown qs handles to available ones
287 * @qs_list: list of qs_handles to be fixed with valid qs_handles
289 static void i40iw_fill_qos_list(u16 *qs_list)
291 u16 qshandle = qs_list[0];
292 int i;
294 for (i = 0; i < I40IW_MAX_USER_PRIORITY; i++) {
295 if (qs_list[i] == QS_HANDLE_UNKNOWN)
296 qs_list[i] = qshandle;
297 else
298 qshandle = qs_list[i];
303 * i40iw_qp_from_entry - Given entry, get to the qp structure
304 * @entry: Points to list of qp structure
306 static struct i40iw_sc_qp *i40iw_qp_from_entry(struct list_head *entry)
308 if (!entry)
309 return NULL;
311 return (struct i40iw_sc_qp *)((char *)entry - offsetof(struct i40iw_sc_qp, list));
315 * i40iw_get_qp - get the next qp from the list given current qp
316 * @head: Listhead of qp's
317 * @qp: current qp
319 static struct i40iw_sc_qp *i40iw_get_qp(struct list_head *head, struct i40iw_sc_qp *qp)
321 struct list_head *entry = NULL;
322 struct list_head *lastentry;
324 if (list_empty(head))
325 return NULL;
327 if (!qp) {
328 entry = head->next;
329 } else {
330 lastentry = &qp->list;
331 entry = (lastentry != head) ? lastentry->next : NULL;
334 return i40iw_qp_from_entry(entry);
338 * i40iw_change_l2params - given the new l2 parameters, change all qp
339 * @vsi: pointer to the vsi structure
340 * @l2params: New paramaters from l2
342 void i40iw_change_l2params(struct i40iw_sc_vsi *vsi, struct i40iw_l2params *l2params)
344 struct i40iw_sc_dev *dev = vsi->dev;
345 struct i40iw_sc_qp *qp = NULL;
346 bool qs_handle_change = false;
347 unsigned long flags;
348 u16 qs_handle;
349 int i;
351 if (vsi->mtu != l2params->mtu) {
352 vsi->mtu = l2params->mtu;
353 i40iw_reinitialize_ieq(dev);
356 i40iw_fill_qos_list(l2params->qs_handle_list);
357 for (i = 0; i < I40IW_MAX_USER_PRIORITY; i++) {
358 qs_handle = l2params->qs_handle_list[i];
359 if (vsi->qos[i].qs_handle != qs_handle)
360 qs_handle_change = true;
361 spin_lock_irqsave(&vsi->qos[i].lock, flags);
362 qp = i40iw_get_qp(&vsi->qos[i].qplist, qp);
363 while (qp) {
364 if (qs_handle_change) {
365 qp->qs_handle = qs_handle;
366 /* issue cqp suspend command */
367 i40iw_qp_suspend_resume(dev, qp, true);
369 qp = i40iw_get_qp(&vsi->qos[i].qplist, qp);
371 spin_unlock_irqrestore(&vsi->qos[i].lock, flags);
372 vsi->qos[i].qs_handle = qs_handle;
377 * i40iw_qp_rem_qos - remove qp from qos lists during destroy qp
378 * @qp: qp to be removed from qos
380 void i40iw_qp_rem_qos(struct i40iw_sc_qp *qp)
382 struct i40iw_sc_vsi *vsi = qp->vsi;
383 unsigned long flags;
385 if (!qp->on_qoslist)
386 return;
387 spin_lock_irqsave(&vsi->qos[qp->user_pri].lock, flags);
388 list_del(&qp->list);
389 spin_unlock_irqrestore(&vsi->qos[qp->user_pri].lock, flags);
393 * i40iw_qp_add_qos - called during setctx fot qp to be added to qos
394 * @qp: qp to be added to qos
396 void i40iw_qp_add_qos(struct i40iw_sc_qp *qp)
398 struct i40iw_sc_vsi *vsi = qp->vsi;
399 unsigned long flags;
401 if (qp->on_qoslist)
402 return;
403 spin_lock_irqsave(&vsi->qos[qp->user_pri].lock, flags);
404 qp->qs_handle = vsi->qos[qp->user_pri].qs_handle;
405 list_add(&qp->list, &vsi->qos[qp->user_pri].qplist);
406 qp->on_qoslist = true;
407 spin_unlock_irqrestore(&vsi->qos[qp->user_pri].lock, flags);
411 * i40iw_sc_pd_init - initialize sc pd struct
412 * @dev: sc device struct
413 * @pd: sc pd ptr
414 * @pd_id: pd_id for allocated pd
415 * @abi_ver: ABI version from user context, -1 if not valid
417 static void i40iw_sc_pd_init(struct i40iw_sc_dev *dev,
418 struct i40iw_sc_pd *pd,
419 u16 pd_id,
420 int abi_ver)
422 pd->size = sizeof(*pd);
423 pd->pd_id = pd_id;
424 pd->abi_ver = abi_ver;
425 pd->dev = dev;
429 * i40iw_get_encoded_wqe_size - given wq size, returns hardware encoded size
430 * @wqsize: size of the wq (sq, rq, srq) to encoded_size
431 * @cqpsq: encoded size for sq for cqp as its encoded size is 1+ other wq's
433 u8 i40iw_get_encoded_wqe_size(u32 wqsize, bool cqpsq)
435 u8 encoded_size = 0;
437 /* cqp sq's hw coded value starts from 1 for size of 4
438 * while it starts from 0 for qp' wq's.
440 if (cqpsq)
441 encoded_size = 1;
442 wqsize >>= 2;
443 while (wqsize >>= 1)
444 encoded_size++;
445 return encoded_size;
449 * i40iw_sc_cqp_init - Initialize buffers for a control Queue Pair
450 * @cqp: IWARP control queue pair pointer
451 * @info: IWARP control queue pair init info pointer
453 * Initializes the object and context buffers for a control Queue Pair.
455 static enum i40iw_status_code i40iw_sc_cqp_init(struct i40iw_sc_cqp *cqp,
456 struct i40iw_cqp_init_info *info)
458 u8 hw_sq_size;
460 if ((info->sq_size > I40IW_CQP_SW_SQSIZE_2048) ||
461 (info->sq_size < I40IW_CQP_SW_SQSIZE_4) ||
462 ((info->sq_size & (info->sq_size - 1))))
463 return I40IW_ERR_INVALID_SIZE;
465 hw_sq_size = i40iw_get_encoded_wqe_size(info->sq_size, true);
466 cqp->size = sizeof(*cqp);
467 cqp->sq_size = info->sq_size;
468 cqp->hw_sq_size = hw_sq_size;
469 cqp->sq_base = info->sq;
470 cqp->host_ctx = info->host_ctx;
471 cqp->sq_pa = info->sq_pa;
472 cqp->host_ctx_pa = info->host_ctx_pa;
473 cqp->dev = info->dev;
474 cqp->struct_ver = info->struct_ver;
475 cqp->scratch_array = info->scratch_array;
476 cqp->polarity = 0;
477 cqp->en_datacenter_tcp = info->en_datacenter_tcp;
478 cqp->enabled_vf_count = info->enabled_vf_count;
479 cqp->hmc_profile = info->hmc_profile;
480 info->dev->cqp = cqp;
482 I40IW_RING_INIT(cqp->sq_ring, cqp->sq_size);
483 cqp->dev->cqp_cmd_stats[OP_REQUESTED_COMMANDS] = 0;
484 cqp->dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS] = 0;
485 INIT_LIST_HEAD(&cqp->dev->cqp_cmd_head); /* for the cqp commands backlog. */
487 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CQPTAIL, 0);
488 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CQPDB, 0);
490 i40iw_debug(cqp->dev, I40IW_DEBUG_WQE,
491 "%s: sq_size[%04d] hw_sq_size[%04d] sq_base[%p] sq_pa[%llxh] cqp[%p] polarity[x%04X]\n",
492 __func__, cqp->sq_size, cqp->hw_sq_size,
493 cqp->sq_base, cqp->sq_pa, cqp, cqp->polarity);
494 return 0;
498 * i40iw_sc_cqp_create - create cqp during bringup
499 * @cqp: struct for cqp hw
500 * @maj_err: If error, major err number
501 * @min_err: If error, minor err number
503 static enum i40iw_status_code i40iw_sc_cqp_create(struct i40iw_sc_cqp *cqp,
504 u16 *maj_err,
505 u16 *min_err)
507 u64 temp;
508 u32 cnt = 0, p1, p2, val = 0, err_code;
509 enum i40iw_status_code ret_code;
511 *maj_err = 0;
512 *min_err = 0;
514 ret_code = i40iw_allocate_dma_mem(cqp->dev->hw,
515 &cqp->sdbuf,
516 I40IW_UPDATE_SD_BUF_SIZE * cqp->sq_size,
517 I40IW_SD_BUF_ALIGNMENT);
519 if (ret_code)
520 goto exit;
522 temp = LS_64(cqp->hw_sq_size, I40IW_CQPHC_SQSIZE) |
523 LS_64(cqp->struct_ver, I40IW_CQPHC_SVER);
525 set_64bit_val(cqp->host_ctx, 0, temp);
526 set_64bit_val(cqp->host_ctx, 8, cqp->sq_pa);
527 temp = LS_64(cqp->enabled_vf_count, I40IW_CQPHC_ENABLED_VFS) |
528 LS_64(cqp->hmc_profile, I40IW_CQPHC_HMC_PROFILE);
529 set_64bit_val(cqp->host_ctx, 16, temp);
530 set_64bit_val(cqp->host_ctx, 24, (uintptr_t)cqp);
531 set_64bit_val(cqp->host_ctx, 32, 0);
532 set_64bit_val(cqp->host_ctx, 40, 0);
533 set_64bit_val(cqp->host_ctx, 48, 0);
534 set_64bit_val(cqp->host_ctx, 56, 0);
536 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CQP_HOST_CTX",
537 cqp->host_ctx, I40IW_CQP_CTX_SIZE * 8);
539 p1 = RS_32_1(cqp->host_ctx_pa, 32);
540 p2 = (u32)cqp->host_ctx_pa;
542 if (cqp->dev->is_pf) {
543 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CCQPHIGH, p1);
544 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CCQPLOW, p2);
545 } else {
546 i40iw_wr32(cqp->dev->hw, I40E_VFPE_CCQPHIGH1, p1);
547 i40iw_wr32(cqp->dev->hw, I40E_VFPE_CCQPLOW1, p2);
549 do {
550 if (cnt++ > I40IW_DONE_COUNT) {
551 i40iw_free_dma_mem(cqp->dev->hw, &cqp->sdbuf);
552 ret_code = I40IW_ERR_TIMEOUT;
554 * read PFPE_CQPERRORCODES register to get the minor
555 * and major error code
557 if (cqp->dev->is_pf)
558 err_code = i40iw_rd32(cqp->dev->hw, I40E_PFPE_CQPERRCODES);
559 else
560 err_code = i40iw_rd32(cqp->dev->hw, I40E_VFPE_CQPERRCODES1);
561 *min_err = RS_32(err_code, I40E_PFPE_CQPERRCODES_CQP_MINOR_CODE);
562 *maj_err = RS_32(err_code, I40E_PFPE_CQPERRCODES_CQP_MAJOR_CODE);
563 goto exit;
565 udelay(I40IW_SLEEP_COUNT);
566 if (cqp->dev->is_pf)
567 val = i40iw_rd32(cqp->dev->hw, I40E_PFPE_CCQPSTATUS);
568 else
569 val = i40iw_rd32(cqp->dev->hw, I40E_VFPE_CCQPSTATUS1);
570 } while (!val);
572 exit:
573 if (!ret_code)
574 cqp->process_cqp_sds = i40iw_update_sds_noccq;
575 return ret_code;
579 * i40iw_sc_cqp_post_sq - post of cqp's sq
580 * @cqp: struct for cqp hw
582 void i40iw_sc_cqp_post_sq(struct i40iw_sc_cqp *cqp)
584 if (cqp->dev->is_pf)
585 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CQPDB, I40IW_RING_GETCURRENT_HEAD(cqp->sq_ring));
586 else
587 i40iw_wr32(cqp->dev->hw, I40E_VFPE_CQPDB1, I40IW_RING_GETCURRENT_HEAD(cqp->sq_ring));
589 i40iw_debug(cqp->dev,
590 I40IW_DEBUG_WQE,
591 "%s: HEAD_TAIL[%04d,%04d,%04d]\n",
592 __func__,
593 cqp->sq_ring.head,
594 cqp->sq_ring.tail,
595 cqp->sq_ring.size);
599 * i40iw_sc_cqp_get_next_send_wqe_idx - get next WQE on CQP SQ and pass back the index
600 * @cqp: pointer to CQP structure
601 * @scratch: private data for CQP WQE
602 * @wqe_idx: WQE index for next WQE on CQP SQ
604 static u64 *i40iw_sc_cqp_get_next_send_wqe_idx(struct i40iw_sc_cqp *cqp,
605 u64 scratch, u32 *wqe_idx)
607 u64 *wqe = NULL;
608 enum i40iw_status_code ret_code;
610 if (I40IW_RING_FULL_ERR(cqp->sq_ring)) {
611 i40iw_debug(cqp->dev,
612 I40IW_DEBUG_WQE,
613 "%s: ring is full head %x tail %x size %x\n",
614 __func__,
615 cqp->sq_ring.head,
616 cqp->sq_ring.tail,
617 cqp->sq_ring.size);
618 return NULL;
620 I40IW_ATOMIC_RING_MOVE_HEAD(cqp->sq_ring, *wqe_idx, ret_code);
621 cqp->dev->cqp_cmd_stats[OP_REQUESTED_COMMANDS]++;
622 if (ret_code)
623 return NULL;
624 if (!*wqe_idx)
625 cqp->polarity = !cqp->polarity;
627 wqe = cqp->sq_base[*wqe_idx].elem;
628 cqp->scratch_array[*wqe_idx] = scratch;
629 I40IW_CQP_INIT_WQE(wqe);
631 return wqe;
635 * i40iw_sc_cqp_get_next_send_wqe - get next wqe on cqp sq
636 * @cqp: struct for cqp hw
637 * @scratch: private data for CQP WQE
639 u64 *i40iw_sc_cqp_get_next_send_wqe(struct i40iw_sc_cqp *cqp, u64 scratch)
641 u32 wqe_idx;
643 return i40iw_sc_cqp_get_next_send_wqe_idx(cqp, scratch, &wqe_idx);
647 * i40iw_sc_cqp_destroy - destroy cqp during close
648 * @cqp: struct for cqp hw
650 static enum i40iw_status_code i40iw_sc_cqp_destroy(struct i40iw_sc_cqp *cqp)
652 u32 cnt = 0, val = 1;
653 enum i40iw_status_code ret_code = 0;
654 u32 cqpstat_addr;
656 if (cqp->dev->is_pf) {
657 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CCQPHIGH, 0);
658 i40iw_wr32(cqp->dev->hw, I40E_PFPE_CCQPLOW, 0);
659 cqpstat_addr = I40E_PFPE_CCQPSTATUS;
660 } else {
661 i40iw_wr32(cqp->dev->hw, I40E_VFPE_CCQPHIGH1, 0);
662 i40iw_wr32(cqp->dev->hw, I40E_VFPE_CCQPLOW1, 0);
663 cqpstat_addr = I40E_VFPE_CCQPSTATUS1;
665 do {
666 if (cnt++ > I40IW_DONE_COUNT) {
667 ret_code = I40IW_ERR_TIMEOUT;
668 break;
670 udelay(I40IW_SLEEP_COUNT);
671 val = i40iw_rd32(cqp->dev->hw, cqpstat_addr);
672 } while (val);
674 i40iw_free_dma_mem(cqp->dev->hw, &cqp->sdbuf);
675 return ret_code;
679 * i40iw_sc_ccq_arm - enable intr for control cq
680 * @ccq: ccq sc struct
682 static void i40iw_sc_ccq_arm(struct i40iw_sc_cq *ccq)
684 u64 temp_val;
685 u16 sw_cq_sel;
686 u8 arm_next_se;
687 u8 arm_seq_num;
689 /* write to cq doorbell shadow area */
690 /* arm next se should always be zero */
691 get_64bit_val(ccq->cq_uk.shadow_area, 32, &temp_val);
693 sw_cq_sel = (u16)RS_64(temp_val, I40IW_CQ_DBSA_SW_CQ_SELECT);
694 arm_next_se = (u8)RS_64(temp_val, I40IW_CQ_DBSA_ARM_NEXT_SE);
696 arm_seq_num = (u8)RS_64(temp_val, I40IW_CQ_DBSA_ARM_SEQ_NUM);
697 arm_seq_num++;
699 temp_val = LS_64(arm_seq_num, I40IW_CQ_DBSA_ARM_SEQ_NUM) |
700 LS_64(sw_cq_sel, I40IW_CQ_DBSA_SW_CQ_SELECT) |
701 LS_64(arm_next_se, I40IW_CQ_DBSA_ARM_NEXT_SE) |
702 LS_64(1, I40IW_CQ_DBSA_ARM_NEXT);
704 set_64bit_val(ccq->cq_uk.shadow_area, 32, temp_val);
706 wmb(); /* make sure shadow area is updated before arming */
708 if (ccq->dev->is_pf)
709 i40iw_wr32(ccq->dev->hw, I40E_PFPE_CQARM, ccq->cq_uk.cq_id);
710 else
711 i40iw_wr32(ccq->dev->hw, I40E_VFPE_CQARM1, ccq->cq_uk.cq_id);
715 * i40iw_sc_ccq_get_cqe_info - get ccq's cq entry
716 * @ccq: ccq sc struct
717 * @info: completion q entry to return
719 static enum i40iw_status_code i40iw_sc_ccq_get_cqe_info(
720 struct i40iw_sc_cq *ccq,
721 struct i40iw_ccq_cqe_info *info)
723 u64 qp_ctx, temp, temp1;
724 u64 *cqe;
725 struct i40iw_sc_cqp *cqp;
726 u32 wqe_idx;
727 u8 polarity;
728 enum i40iw_status_code ret_code = 0;
730 if (ccq->cq_uk.avoid_mem_cflct)
731 cqe = (u64 *)I40IW_GET_CURRENT_EXTENDED_CQ_ELEMENT(&ccq->cq_uk);
732 else
733 cqe = (u64 *)I40IW_GET_CURRENT_CQ_ELEMENT(&ccq->cq_uk);
735 get_64bit_val(cqe, 24, &temp);
736 polarity = (u8)RS_64(temp, I40IW_CQ_VALID);
737 if (polarity != ccq->cq_uk.polarity)
738 return I40IW_ERR_QUEUE_EMPTY;
740 get_64bit_val(cqe, 8, &qp_ctx);
741 cqp = (struct i40iw_sc_cqp *)(unsigned long)qp_ctx;
742 info->error = (bool)RS_64(temp, I40IW_CQ_ERROR);
743 info->min_err_code = (u16)RS_64(temp, I40IW_CQ_MINERR);
744 if (info->error) {
745 info->maj_err_code = (u16)RS_64(temp, I40IW_CQ_MAJERR);
746 info->min_err_code = (u16)RS_64(temp, I40IW_CQ_MINERR);
748 wqe_idx = (u32)RS_64(temp, I40IW_CQ_WQEIDX);
749 info->scratch = cqp->scratch_array[wqe_idx];
751 get_64bit_val(cqe, 16, &temp1);
752 info->op_ret_val = (u32)RS_64(temp1, I40IW_CCQ_OPRETVAL);
753 get_64bit_val(cqp->sq_base[wqe_idx].elem, 24, &temp1);
754 info->op_code = (u8)RS_64(temp1, I40IW_CQPSQ_OPCODE);
755 info->cqp = cqp;
757 /* move the head for cq */
758 I40IW_RING_MOVE_HEAD(ccq->cq_uk.cq_ring, ret_code);
759 if (I40IW_RING_GETCURRENT_HEAD(ccq->cq_uk.cq_ring) == 0)
760 ccq->cq_uk.polarity ^= 1;
762 /* update cq tail in cq shadow memory also */
763 I40IW_RING_MOVE_TAIL(ccq->cq_uk.cq_ring);
764 set_64bit_val(ccq->cq_uk.shadow_area,
766 I40IW_RING_GETCURRENT_HEAD(ccq->cq_uk.cq_ring));
767 wmb(); /* write shadow area before tail */
768 I40IW_RING_MOVE_TAIL(cqp->sq_ring);
769 ccq->dev->cqp_cmd_stats[OP_COMPLETED_COMMANDS]++;
771 return ret_code;
775 * i40iw_sc_poll_for_cqp_op_done - Waits for last write to complete in CQP SQ
776 * @cqp: struct for cqp hw
777 * @op_code: cqp opcode for completion
778 * @info: completion q entry to return
780 static enum i40iw_status_code i40iw_sc_poll_for_cqp_op_done(
781 struct i40iw_sc_cqp *cqp,
782 u8 op_code,
783 struct i40iw_ccq_cqe_info *compl_info)
785 struct i40iw_ccq_cqe_info info;
786 struct i40iw_sc_cq *ccq;
787 enum i40iw_status_code ret_code = 0;
788 u32 cnt = 0;
790 memset(&info, 0, sizeof(info));
791 ccq = cqp->dev->ccq;
792 while (1) {
793 if (cnt++ > I40IW_DONE_COUNT)
794 return I40IW_ERR_TIMEOUT;
796 if (i40iw_sc_ccq_get_cqe_info(ccq, &info)) {
797 udelay(I40IW_SLEEP_COUNT);
798 continue;
801 if (info.error) {
802 ret_code = I40IW_ERR_CQP_COMPL_ERROR;
803 break;
805 /* check if opcode is cq create */
806 if (op_code != info.op_code) {
807 i40iw_debug(cqp->dev, I40IW_DEBUG_WQE,
808 "%s: opcode mismatch for my op code 0x%x, returned opcode %x\n",
809 __func__, op_code, info.op_code);
811 /* success, exit out of the loop */
812 if (op_code == info.op_code)
813 break;
816 if (compl_info)
817 memcpy(compl_info, &info, sizeof(*compl_info));
819 return ret_code;
823 * i40iw_sc_manage_push_page - Handle push page
824 * @cqp: struct for cqp hw
825 * @info: push page info
826 * @scratch: u64 saved to be used during cqp completion
827 * @post_sq: flag for cqp db to ring
829 static enum i40iw_status_code i40iw_sc_manage_push_page(
830 struct i40iw_sc_cqp *cqp,
831 struct i40iw_cqp_manage_push_page_info *info,
832 u64 scratch,
833 bool post_sq)
835 u64 *wqe;
836 u64 header;
838 if (info->push_idx >= I40IW_MAX_PUSH_PAGE_COUNT)
839 return I40IW_ERR_INVALID_PUSH_PAGE_INDEX;
841 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
842 if (!wqe)
843 return I40IW_ERR_RING_FULL;
845 set_64bit_val(wqe, 16, info->qs_handle);
847 header = LS_64(info->push_idx, I40IW_CQPSQ_MPP_PPIDX) |
848 LS_64(I40IW_CQP_OP_MANAGE_PUSH_PAGES, I40IW_CQPSQ_OPCODE) |
849 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID) |
850 LS_64(info->free_page, I40IW_CQPSQ_MPP_FREE_PAGE);
852 i40iw_insert_wqe_hdr(wqe, header);
854 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "MANAGE_PUSH_PAGES WQE",
855 wqe, I40IW_CQP_WQE_SIZE * 8);
857 if (post_sq)
858 i40iw_sc_cqp_post_sq(cqp);
859 return 0;
863 * i40iw_sc_manage_hmc_pm_func_table - manage of function table
864 * @cqp: struct for cqp hw
865 * @scratch: u64 saved to be used during cqp completion
866 * @vf_index: vf index for cqp
867 * @free_pm_fcn: function number
868 * @post_sq: flag for cqp db to ring
870 static enum i40iw_status_code i40iw_sc_manage_hmc_pm_func_table(
871 struct i40iw_sc_cqp *cqp,
872 u64 scratch,
873 u8 vf_index,
874 bool free_pm_fcn,
875 bool post_sq)
877 u64 *wqe;
878 u64 header;
880 if (vf_index >= I40IW_MAX_VF_PER_PF)
881 return I40IW_ERR_INVALID_VF_ID;
882 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
883 if (!wqe)
884 return I40IW_ERR_RING_FULL;
886 header = LS_64(vf_index, I40IW_CQPSQ_MHMC_VFIDX) |
887 LS_64(I40IW_CQP_OP_MANAGE_HMC_PM_FUNC_TABLE, I40IW_CQPSQ_OPCODE) |
888 LS_64(free_pm_fcn, I40IW_CQPSQ_MHMC_FREEPMFN) |
889 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
891 i40iw_insert_wqe_hdr(wqe, header);
892 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "MANAGE_HMC_PM_FUNC_TABLE WQE",
893 wqe, I40IW_CQP_WQE_SIZE * 8);
894 if (post_sq)
895 i40iw_sc_cqp_post_sq(cqp);
896 return 0;
900 * i40iw_sc_set_hmc_resource_profile - cqp wqe for hmc profile
901 * @cqp: struct for cqp hw
902 * @scratch: u64 saved to be used during cqp completion
903 * @hmc_profile_type: type of profile to set
904 * @vf_num: vf number for profile
905 * @post_sq: flag for cqp db to ring
906 * @poll_registers: flag to poll register for cqp completion
908 static enum i40iw_status_code i40iw_sc_set_hmc_resource_profile(
909 struct i40iw_sc_cqp *cqp,
910 u64 scratch,
911 u8 hmc_profile_type,
912 u8 vf_num, bool post_sq,
913 bool poll_registers)
915 u64 *wqe;
916 u64 header;
917 u32 val, tail, error;
918 enum i40iw_status_code ret_code = 0;
920 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
921 if (!wqe)
922 return I40IW_ERR_RING_FULL;
924 set_64bit_val(wqe, 16,
925 (LS_64(hmc_profile_type, I40IW_CQPSQ_SHMCRP_HMC_PROFILE) |
926 LS_64(vf_num, I40IW_CQPSQ_SHMCRP_VFNUM)));
928 header = LS_64(I40IW_CQP_OP_SET_HMC_RESOURCE_PROFILE, I40IW_CQPSQ_OPCODE) |
929 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
931 i40iw_insert_wqe_hdr(wqe, header);
933 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "MANAGE_HMC_PM_FUNC_TABLE WQE",
934 wqe, I40IW_CQP_WQE_SIZE * 8);
936 i40iw_get_cqp_reg_info(cqp, &val, &tail, &error);
937 if (error)
938 return I40IW_ERR_CQP_COMPL_ERROR;
940 if (post_sq) {
941 i40iw_sc_cqp_post_sq(cqp);
942 if (poll_registers)
943 ret_code = i40iw_cqp_poll_registers(cqp, tail, 1000000);
944 else
945 ret_code = i40iw_sc_poll_for_cqp_op_done(cqp,
946 I40IW_CQP_OP_SHMC_PAGES_ALLOCATED,
947 NULL);
950 return ret_code;
954 * i40iw_sc_manage_hmc_pm_func_table_done - wait for cqp wqe completion for function table
955 * @cqp: struct for cqp hw
957 static enum i40iw_status_code i40iw_sc_manage_hmc_pm_func_table_done(struct i40iw_sc_cqp *cqp)
959 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_MANAGE_HMC_PM_FUNC_TABLE, NULL);
963 * i40iw_sc_commit_fpm_values_done - wait for cqp eqe completion for fpm commit
964 * @cqp: struct for cqp hw
966 static enum i40iw_status_code i40iw_sc_commit_fpm_values_done(struct i40iw_sc_cqp *cqp)
968 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_COMMIT_FPM_VALUES, NULL);
972 * i40iw_sc_commit_fpm_values - cqp wqe for commit fpm values
973 * @cqp: struct for cqp hw
974 * @scratch: u64 saved to be used during cqp completion
975 * @hmc_fn_id: hmc function id
976 * @commit_fpm_mem; Memory for fpm values
977 * @post_sq: flag for cqp db to ring
978 * @wait_type: poll ccq or cqp registers for cqp completion
980 static enum i40iw_status_code i40iw_sc_commit_fpm_values(
981 struct i40iw_sc_cqp *cqp,
982 u64 scratch,
983 u8 hmc_fn_id,
984 struct i40iw_dma_mem *commit_fpm_mem,
985 bool post_sq,
986 u8 wait_type)
988 u64 *wqe;
989 u64 header;
990 u32 tail, val, error;
991 enum i40iw_status_code ret_code = 0;
993 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
994 if (!wqe)
995 return I40IW_ERR_RING_FULL;
997 set_64bit_val(wqe, 16, hmc_fn_id);
998 set_64bit_val(wqe, 32, commit_fpm_mem->pa);
1000 header = LS_64(I40IW_CQP_OP_COMMIT_FPM_VALUES, I40IW_CQPSQ_OPCODE) |
1001 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1003 i40iw_insert_wqe_hdr(wqe, header);
1005 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "COMMIT_FPM_VALUES WQE",
1006 wqe, I40IW_CQP_WQE_SIZE * 8);
1008 i40iw_get_cqp_reg_info(cqp, &val, &tail, &error);
1009 if (error)
1010 return I40IW_ERR_CQP_COMPL_ERROR;
1012 if (post_sq) {
1013 i40iw_sc_cqp_post_sq(cqp);
1015 if (wait_type == I40IW_CQP_WAIT_POLL_REGS)
1016 ret_code = i40iw_cqp_poll_registers(cqp, tail, I40IW_DONE_COUNT);
1017 else if (wait_type == I40IW_CQP_WAIT_POLL_CQ)
1018 ret_code = i40iw_sc_commit_fpm_values_done(cqp);
1021 return ret_code;
1025 * i40iw_sc_query_fpm_values_done - poll for cqp wqe completion for query fpm
1026 * @cqp: struct for cqp hw
1028 static enum i40iw_status_code i40iw_sc_query_fpm_values_done(struct i40iw_sc_cqp *cqp)
1030 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_QUERY_FPM_VALUES, NULL);
1034 * i40iw_sc_query_fpm_values - cqp wqe query fpm values
1035 * @cqp: struct for cqp hw
1036 * @scratch: u64 saved to be used during cqp completion
1037 * @hmc_fn_id: hmc function id
1038 * @query_fpm_mem: memory for return fpm values
1039 * @post_sq: flag for cqp db to ring
1040 * @wait_type: poll ccq or cqp registers for cqp completion
1042 static enum i40iw_status_code i40iw_sc_query_fpm_values(
1043 struct i40iw_sc_cqp *cqp,
1044 u64 scratch,
1045 u8 hmc_fn_id,
1046 struct i40iw_dma_mem *query_fpm_mem,
1047 bool post_sq,
1048 u8 wait_type)
1050 u64 *wqe;
1051 u64 header;
1052 u32 tail, val, error;
1053 enum i40iw_status_code ret_code = 0;
1055 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1056 if (!wqe)
1057 return I40IW_ERR_RING_FULL;
1059 set_64bit_val(wqe, 16, hmc_fn_id);
1060 set_64bit_val(wqe, 32, query_fpm_mem->pa);
1062 header = LS_64(I40IW_CQP_OP_QUERY_FPM_VALUES, I40IW_CQPSQ_OPCODE) |
1063 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1065 i40iw_insert_wqe_hdr(wqe, header);
1067 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "QUERY_FPM WQE",
1068 wqe, I40IW_CQP_WQE_SIZE * 8);
1070 /* read the tail from CQP_TAIL register */
1071 i40iw_get_cqp_reg_info(cqp, &val, &tail, &error);
1073 if (error)
1074 return I40IW_ERR_CQP_COMPL_ERROR;
1076 if (post_sq) {
1077 i40iw_sc_cqp_post_sq(cqp);
1078 if (wait_type == I40IW_CQP_WAIT_POLL_REGS)
1079 ret_code = i40iw_cqp_poll_registers(cqp, tail, I40IW_DONE_COUNT);
1080 else if (wait_type == I40IW_CQP_WAIT_POLL_CQ)
1081 ret_code = i40iw_sc_query_fpm_values_done(cqp);
1084 return ret_code;
1088 * i40iw_sc_add_arp_cache_entry - cqp wqe add arp cache entry
1089 * @cqp: struct for cqp hw
1090 * @info: arp entry information
1091 * @scratch: u64 saved to be used during cqp completion
1092 * @post_sq: flag for cqp db to ring
1094 static enum i40iw_status_code i40iw_sc_add_arp_cache_entry(
1095 struct i40iw_sc_cqp *cqp,
1096 struct i40iw_add_arp_cache_entry_info *info,
1097 u64 scratch,
1098 bool post_sq)
1100 u64 *wqe;
1101 u64 temp, header;
1103 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1104 if (!wqe)
1105 return I40IW_ERR_RING_FULL;
1106 set_64bit_val(wqe, 8, info->reach_max);
1108 temp = info->mac_addr[5] |
1109 LS_64_1(info->mac_addr[4], 8) |
1110 LS_64_1(info->mac_addr[3], 16) |
1111 LS_64_1(info->mac_addr[2], 24) |
1112 LS_64_1(info->mac_addr[1], 32) |
1113 LS_64_1(info->mac_addr[0], 40);
1115 set_64bit_val(wqe, 16, temp);
1117 header = info->arp_index |
1118 LS_64(I40IW_CQP_OP_MANAGE_ARP, I40IW_CQPSQ_OPCODE) |
1119 LS_64((info->permanent ? 1 : 0), I40IW_CQPSQ_MAT_PERMANENT) |
1120 LS_64(1, I40IW_CQPSQ_MAT_ENTRYVALID) |
1121 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1123 i40iw_insert_wqe_hdr(wqe, header);
1125 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "ARP_CACHE_ENTRY WQE",
1126 wqe, I40IW_CQP_WQE_SIZE * 8);
1128 if (post_sq)
1129 i40iw_sc_cqp_post_sq(cqp);
1130 return 0;
1134 * i40iw_sc_del_arp_cache_entry - dele arp cache entry
1135 * @cqp: struct for cqp hw
1136 * @scratch: u64 saved to be used during cqp completion
1137 * @arp_index: arp index to delete arp entry
1138 * @post_sq: flag for cqp db to ring
1140 static enum i40iw_status_code i40iw_sc_del_arp_cache_entry(
1141 struct i40iw_sc_cqp *cqp,
1142 u64 scratch,
1143 u16 arp_index,
1144 bool post_sq)
1146 u64 *wqe;
1147 u64 header;
1149 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1150 if (!wqe)
1151 return I40IW_ERR_RING_FULL;
1153 header = arp_index |
1154 LS_64(I40IW_CQP_OP_MANAGE_ARP, I40IW_CQPSQ_OPCODE) |
1155 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1156 i40iw_insert_wqe_hdr(wqe, header);
1158 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "ARP_CACHE_DEL_ENTRY WQE",
1159 wqe, I40IW_CQP_WQE_SIZE * 8);
1161 if (post_sq)
1162 i40iw_sc_cqp_post_sq(cqp);
1163 return 0;
1167 * i40iw_sc_query_arp_cache_entry - cqp wqe to query arp and arp index
1168 * @cqp: struct for cqp hw
1169 * @scratch: u64 saved to be used during cqp completion
1170 * @arp_index: arp index to delete arp entry
1171 * @post_sq: flag for cqp db to ring
1173 static enum i40iw_status_code i40iw_sc_query_arp_cache_entry(
1174 struct i40iw_sc_cqp *cqp,
1175 u64 scratch,
1176 u16 arp_index,
1177 bool post_sq)
1179 u64 *wqe;
1180 u64 header;
1182 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1183 if (!wqe)
1184 return I40IW_ERR_RING_FULL;
1186 header = arp_index |
1187 LS_64(I40IW_CQP_OP_MANAGE_ARP, I40IW_CQPSQ_OPCODE) |
1188 LS_64(1, I40IW_CQPSQ_MAT_QUERY) |
1189 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1191 i40iw_insert_wqe_hdr(wqe, header);
1193 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "QUERY_ARP_CACHE_ENTRY WQE",
1194 wqe, I40IW_CQP_WQE_SIZE * 8);
1196 if (post_sq)
1197 i40iw_sc_cqp_post_sq(cqp);
1198 return 0;
1202 * i40iw_sc_manage_apbvt_entry - for adding and deleting apbvt entries
1203 * @cqp: struct for cqp hw
1204 * @info: info for apbvt entry to add or delete
1205 * @scratch: u64 saved to be used during cqp completion
1206 * @post_sq: flag for cqp db to ring
1208 static enum i40iw_status_code i40iw_sc_manage_apbvt_entry(
1209 struct i40iw_sc_cqp *cqp,
1210 struct i40iw_apbvt_info *info,
1211 u64 scratch,
1212 bool post_sq)
1214 u64 *wqe;
1215 u64 header;
1217 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1218 if (!wqe)
1219 return I40IW_ERR_RING_FULL;
1221 set_64bit_val(wqe, 16, info->port);
1223 header = LS_64(I40IW_CQP_OP_MANAGE_APBVT, I40IW_CQPSQ_OPCODE) |
1224 LS_64(info->add, I40IW_CQPSQ_MAPT_ADDPORT) |
1225 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1227 i40iw_insert_wqe_hdr(wqe, header);
1229 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "MANAGE_APBVT WQE",
1230 wqe, I40IW_CQP_WQE_SIZE * 8);
1232 if (post_sq)
1233 i40iw_sc_cqp_post_sq(cqp);
1234 return 0;
1238 * i40iw_sc_manage_qhash_table_entry - manage quad hash entries
1239 * @cqp: struct for cqp hw
1240 * @info: info for quad hash to manage
1241 * @scratch: u64 saved to be used during cqp completion
1242 * @post_sq: flag for cqp db to ring
1244 * This is called before connection establishment is started. For passive connections, when
1245 * listener is created, it will call with entry type of I40IW_QHASH_TYPE_TCP_SYN with local
1246 * ip address and tcp port. When SYN is received (passive connections) or
1247 * sent (active connections), this routine is called with entry type of
1248 * I40IW_QHASH_TYPE_TCP_ESTABLISHED and quad is passed in info.
1250 * When iwarp connection is done and its state moves to RTS, the quad hash entry in
1251 * the hardware will point to iwarp's qp number and requires no calls from the driver.
1253 static enum i40iw_status_code i40iw_sc_manage_qhash_table_entry(
1254 struct i40iw_sc_cqp *cqp,
1255 struct i40iw_qhash_table_info *info,
1256 u64 scratch,
1257 bool post_sq)
1259 u64 *wqe;
1260 u64 qw1 = 0;
1261 u64 qw2 = 0;
1262 u64 temp;
1263 struct i40iw_sc_vsi *vsi = info->vsi;
1265 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1266 if (!wqe)
1267 return I40IW_ERR_RING_FULL;
1269 temp = info->mac_addr[5] |
1270 LS_64_1(info->mac_addr[4], 8) |
1271 LS_64_1(info->mac_addr[3], 16) |
1272 LS_64_1(info->mac_addr[2], 24) |
1273 LS_64_1(info->mac_addr[1], 32) |
1274 LS_64_1(info->mac_addr[0], 40);
1276 set_64bit_val(wqe, 0, temp);
1278 qw1 = LS_64(info->qp_num, I40IW_CQPSQ_QHASH_QPN) |
1279 LS_64(info->dest_port, I40IW_CQPSQ_QHASH_DEST_PORT);
1280 if (info->ipv4_valid) {
1281 set_64bit_val(wqe,
1283 LS_64(info->dest_ip[0], I40IW_CQPSQ_QHASH_ADDR3));
1284 } else {
1285 set_64bit_val(wqe,
1287 LS_64(info->dest_ip[0], I40IW_CQPSQ_QHASH_ADDR0) |
1288 LS_64(info->dest_ip[1], I40IW_CQPSQ_QHASH_ADDR1));
1290 set_64bit_val(wqe,
1292 LS_64(info->dest_ip[2], I40IW_CQPSQ_QHASH_ADDR2) |
1293 LS_64(info->dest_ip[3], I40IW_CQPSQ_QHASH_ADDR3));
1295 qw2 = LS_64(vsi->qos[info->user_pri].qs_handle, I40IW_CQPSQ_QHASH_QS_HANDLE);
1296 if (info->vlan_valid)
1297 qw2 |= LS_64(info->vlan_id, I40IW_CQPSQ_QHASH_VLANID);
1298 set_64bit_val(wqe, 16, qw2);
1299 if (info->entry_type == I40IW_QHASH_TYPE_TCP_ESTABLISHED) {
1300 qw1 |= LS_64(info->src_port, I40IW_CQPSQ_QHASH_SRC_PORT);
1301 if (!info->ipv4_valid) {
1302 set_64bit_val(wqe,
1304 LS_64(info->src_ip[0], I40IW_CQPSQ_QHASH_ADDR0) |
1305 LS_64(info->src_ip[1], I40IW_CQPSQ_QHASH_ADDR1));
1306 set_64bit_val(wqe,
1308 LS_64(info->src_ip[2], I40IW_CQPSQ_QHASH_ADDR2) |
1309 LS_64(info->src_ip[3], I40IW_CQPSQ_QHASH_ADDR3));
1310 } else {
1311 set_64bit_val(wqe,
1313 LS_64(info->src_ip[0], I40IW_CQPSQ_QHASH_ADDR3));
1317 set_64bit_val(wqe, 8, qw1);
1318 temp = LS_64(cqp->polarity, I40IW_CQPSQ_QHASH_WQEVALID) |
1319 LS_64(I40IW_CQP_OP_MANAGE_QUAD_HASH_TABLE_ENTRY, I40IW_CQPSQ_QHASH_OPCODE) |
1320 LS_64(info->manage, I40IW_CQPSQ_QHASH_MANAGE) |
1321 LS_64(info->ipv4_valid, I40IW_CQPSQ_QHASH_IPV4VALID) |
1322 LS_64(info->vlan_valid, I40IW_CQPSQ_QHASH_VLANVALID) |
1323 LS_64(info->entry_type, I40IW_CQPSQ_QHASH_ENTRYTYPE);
1325 i40iw_insert_wqe_hdr(wqe, temp);
1327 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "MANAGE_QHASH WQE",
1328 wqe, I40IW_CQP_WQE_SIZE * 8);
1330 if (post_sq)
1331 i40iw_sc_cqp_post_sq(cqp);
1332 return 0;
1336 * i40iw_sc_alloc_local_mac_ipaddr_entry - cqp wqe for loc mac entry
1337 * @cqp: struct for cqp hw
1338 * @scratch: u64 saved to be used during cqp completion
1339 * @post_sq: flag for cqp db to ring
1341 static enum i40iw_status_code i40iw_sc_alloc_local_mac_ipaddr_entry(
1342 struct i40iw_sc_cqp *cqp,
1343 u64 scratch,
1344 bool post_sq)
1346 u64 *wqe;
1347 u64 header;
1349 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1350 if (!wqe)
1351 return I40IW_ERR_RING_FULL;
1352 header = LS_64(I40IW_CQP_OP_ALLOCATE_LOC_MAC_IP_TABLE_ENTRY, I40IW_CQPSQ_OPCODE) |
1353 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1355 i40iw_insert_wqe_hdr(wqe, header);
1356 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "ALLOCATE_LOCAL_MAC_IPADDR WQE",
1357 wqe, I40IW_CQP_WQE_SIZE * 8);
1358 if (post_sq)
1359 i40iw_sc_cqp_post_sq(cqp);
1360 return 0;
1364 * i40iw_sc_add_local_mac_ipaddr_entry - add mac enry
1365 * @cqp: struct for cqp hw
1366 * @info:mac addr info
1367 * @scratch: u64 saved to be used during cqp completion
1368 * @post_sq: flag for cqp db to ring
1370 static enum i40iw_status_code i40iw_sc_add_local_mac_ipaddr_entry(
1371 struct i40iw_sc_cqp *cqp,
1372 struct i40iw_local_mac_ipaddr_entry_info *info,
1373 u64 scratch,
1374 bool post_sq)
1376 u64 *wqe;
1377 u64 temp, header;
1379 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1380 if (!wqe)
1381 return I40IW_ERR_RING_FULL;
1382 temp = info->mac_addr[5] |
1383 LS_64_1(info->mac_addr[4], 8) |
1384 LS_64_1(info->mac_addr[3], 16) |
1385 LS_64_1(info->mac_addr[2], 24) |
1386 LS_64_1(info->mac_addr[1], 32) |
1387 LS_64_1(info->mac_addr[0], 40);
1389 set_64bit_val(wqe, 32, temp);
1391 header = LS_64(info->entry_idx, I40IW_CQPSQ_MLIPA_IPTABLEIDX) |
1392 LS_64(I40IW_CQP_OP_MANAGE_LOC_MAC_IP_TABLE, I40IW_CQPSQ_OPCODE) |
1393 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1395 i40iw_insert_wqe_hdr(wqe, header);
1397 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "ADD_LOCAL_MAC_IPADDR WQE",
1398 wqe, I40IW_CQP_WQE_SIZE * 8);
1400 if (post_sq)
1401 i40iw_sc_cqp_post_sq(cqp);
1402 return 0;
1406 * i40iw_sc_del_local_mac_ipaddr_entry - cqp wqe to dele local mac
1407 * @cqp: struct for cqp hw
1408 * @scratch: u64 saved to be used during cqp completion
1409 * @entry_idx: index of mac entry
1410 * @ ignore_ref_count: to force mac adde delete
1411 * @post_sq: flag for cqp db to ring
1413 static enum i40iw_status_code i40iw_sc_del_local_mac_ipaddr_entry(
1414 struct i40iw_sc_cqp *cqp,
1415 u64 scratch,
1416 u8 entry_idx,
1417 u8 ignore_ref_count,
1418 bool post_sq)
1420 u64 *wqe;
1421 u64 header;
1423 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1424 if (!wqe)
1425 return I40IW_ERR_RING_FULL;
1426 header = LS_64(entry_idx, I40IW_CQPSQ_MLIPA_IPTABLEIDX) |
1427 LS_64(I40IW_CQP_OP_MANAGE_LOC_MAC_IP_TABLE, I40IW_CQPSQ_OPCODE) |
1428 LS_64(1, I40IW_CQPSQ_MLIPA_FREEENTRY) |
1429 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID) |
1430 LS_64(ignore_ref_count, I40IW_CQPSQ_MLIPA_IGNORE_REF_CNT);
1432 i40iw_insert_wqe_hdr(wqe, header);
1434 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "DEL_LOCAL_MAC_IPADDR WQE",
1435 wqe, I40IW_CQP_WQE_SIZE * 8);
1437 if (post_sq)
1438 i40iw_sc_cqp_post_sq(cqp);
1439 return 0;
1443 * i40iw_sc_cqp_nop - send a nop wqe
1444 * @cqp: struct for cqp hw
1445 * @scratch: u64 saved to be used during cqp completion
1446 * @post_sq: flag for cqp db to ring
1448 static enum i40iw_status_code i40iw_sc_cqp_nop(struct i40iw_sc_cqp *cqp,
1449 u64 scratch,
1450 bool post_sq)
1452 u64 *wqe;
1453 u64 header;
1455 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1456 if (!wqe)
1457 return I40IW_ERR_RING_FULL;
1458 header = LS_64(I40IW_CQP_OP_NOP, I40IW_CQPSQ_OPCODE) |
1459 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1460 i40iw_insert_wqe_hdr(wqe, header);
1461 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "NOP WQE",
1462 wqe, I40IW_CQP_WQE_SIZE * 8);
1464 if (post_sq)
1465 i40iw_sc_cqp_post_sq(cqp);
1466 return 0;
1470 * i40iw_sc_ceq_init - initialize ceq
1471 * @ceq: ceq sc structure
1472 * @info: ceq initialization info
1474 static enum i40iw_status_code i40iw_sc_ceq_init(struct i40iw_sc_ceq *ceq,
1475 struct i40iw_ceq_init_info *info)
1477 u32 pble_obj_cnt;
1479 if ((info->elem_cnt < I40IW_MIN_CEQ_ENTRIES) ||
1480 (info->elem_cnt > I40IW_MAX_CEQ_ENTRIES))
1481 return I40IW_ERR_INVALID_SIZE;
1483 if (info->ceq_id >= I40IW_MAX_CEQID)
1484 return I40IW_ERR_INVALID_CEQ_ID;
1486 pble_obj_cnt = info->dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
1488 if (info->virtual_map && (info->first_pm_pbl_idx >= pble_obj_cnt))
1489 return I40IW_ERR_INVALID_PBLE_INDEX;
1491 ceq->size = sizeof(*ceq);
1492 ceq->ceqe_base = (struct i40iw_ceqe *)info->ceqe_base;
1493 ceq->ceq_id = info->ceq_id;
1494 ceq->dev = info->dev;
1495 ceq->elem_cnt = info->elem_cnt;
1496 ceq->ceq_elem_pa = info->ceqe_pa;
1497 ceq->virtual_map = info->virtual_map;
1499 ceq->pbl_chunk_size = (ceq->virtual_map ? info->pbl_chunk_size : 0);
1500 ceq->first_pm_pbl_idx = (ceq->virtual_map ? info->first_pm_pbl_idx : 0);
1501 ceq->pbl_list = (ceq->virtual_map ? info->pbl_list : NULL);
1503 ceq->tph_en = info->tph_en;
1504 ceq->tph_val = info->tph_val;
1505 ceq->polarity = 1;
1506 I40IW_RING_INIT(ceq->ceq_ring, ceq->elem_cnt);
1507 ceq->dev->ceq[info->ceq_id] = ceq;
1509 return 0;
1513 * i40iw_sc_ceq_create - create ceq wqe
1514 * @ceq: ceq sc structure
1515 * @scratch: u64 saved to be used during cqp completion
1516 * @post_sq: flag for cqp db to ring
1518 static enum i40iw_status_code i40iw_sc_ceq_create(struct i40iw_sc_ceq *ceq,
1519 u64 scratch,
1520 bool post_sq)
1522 struct i40iw_sc_cqp *cqp;
1523 u64 *wqe;
1524 u64 header;
1526 cqp = ceq->dev->cqp;
1527 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1528 if (!wqe)
1529 return I40IW_ERR_RING_FULL;
1530 set_64bit_val(wqe, 16, ceq->elem_cnt);
1531 set_64bit_val(wqe, 32, (ceq->virtual_map ? 0 : ceq->ceq_elem_pa));
1532 set_64bit_val(wqe, 48, (ceq->virtual_map ? ceq->first_pm_pbl_idx : 0));
1533 set_64bit_val(wqe, 56, LS_64(ceq->tph_val, I40IW_CQPSQ_TPHVAL));
1535 header = ceq->ceq_id |
1536 LS_64(I40IW_CQP_OP_CREATE_CEQ, I40IW_CQPSQ_OPCODE) |
1537 LS_64(ceq->pbl_chunk_size, I40IW_CQPSQ_CEQ_LPBLSIZE) |
1538 LS_64(ceq->virtual_map, I40IW_CQPSQ_CEQ_VMAP) |
1539 LS_64(ceq->tph_en, I40IW_CQPSQ_TPHEN) |
1540 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1542 i40iw_insert_wqe_hdr(wqe, header);
1544 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CEQ_CREATE WQE",
1545 wqe, I40IW_CQP_WQE_SIZE * 8);
1547 if (post_sq)
1548 i40iw_sc_cqp_post_sq(cqp);
1549 return 0;
1553 * i40iw_sc_cceq_create_done - poll for control ceq wqe to complete
1554 * @ceq: ceq sc structure
1556 static enum i40iw_status_code i40iw_sc_cceq_create_done(struct i40iw_sc_ceq *ceq)
1558 struct i40iw_sc_cqp *cqp;
1560 cqp = ceq->dev->cqp;
1561 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_CREATE_CEQ, NULL);
1565 * i40iw_sc_cceq_destroy_done - poll for destroy cceq to complete
1566 * @ceq: ceq sc structure
1568 static enum i40iw_status_code i40iw_sc_cceq_destroy_done(struct i40iw_sc_ceq *ceq)
1570 struct i40iw_sc_cqp *cqp;
1572 cqp = ceq->dev->cqp;
1573 cqp->process_cqp_sds = i40iw_update_sds_noccq;
1574 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_DESTROY_CEQ, NULL);
1578 * i40iw_sc_cceq_create - create cceq
1579 * @ceq: ceq sc structure
1580 * @scratch: u64 saved to be used during cqp completion
1582 static enum i40iw_status_code i40iw_sc_cceq_create(struct i40iw_sc_ceq *ceq, u64 scratch)
1584 enum i40iw_status_code ret_code;
1586 ret_code = i40iw_sc_ceq_create(ceq, scratch, true);
1587 if (!ret_code)
1588 ret_code = i40iw_sc_cceq_create_done(ceq);
1589 return ret_code;
1593 * i40iw_sc_ceq_destroy - destroy ceq
1594 * @ceq: ceq sc structure
1595 * @scratch: u64 saved to be used during cqp completion
1596 * @post_sq: flag for cqp db to ring
1598 static enum i40iw_status_code i40iw_sc_ceq_destroy(struct i40iw_sc_ceq *ceq,
1599 u64 scratch,
1600 bool post_sq)
1602 struct i40iw_sc_cqp *cqp;
1603 u64 *wqe;
1604 u64 header;
1606 cqp = ceq->dev->cqp;
1607 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1608 if (!wqe)
1609 return I40IW_ERR_RING_FULL;
1610 set_64bit_val(wqe, 16, ceq->elem_cnt);
1611 set_64bit_val(wqe, 48, ceq->first_pm_pbl_idx);
1612 header = ceq->ceq_id |
1613 LS_64(I40IW_CQP_OP_DESTROY_CEQ, I40IW_CQPSQ_OPCODE) |
1614 LS_64(ceq->pbl_chunk_size, I40IW_CQPSQ_CEQ_LPBLSIZE) |
1615 LS_64(ceq->virtual_map, I40IW_CQPSQ_CEQ_VMAP) |
1616 LS_64(ceq->tph_en, I40IW_CQPSQ_TPHEN) |
1617 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1618 i40iw_insert_wqe_hdr(wqe, header);
1619 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CEQ_DESTROY WQE",
1620 wqe, I40IW_CQP_WQE_SIZE * 8);
1622 if (post_sq)
1623 i40iw_sc_cqp_post_sq(cqp);
1624 return 0;
1628 * i40iw_sc_process_ceq - process ceq
1629 * @dev: sc device struct
1630 * @ceq: ceq sc structure
1632 static void *i40iw_sc_process_ceq(struct i40iw_sc_dev *dev, struct i40iw_sc_ceq *ceq)
1634 u64 temp;
1635 u64 *ceqe;
1636 struct i40iw_sc_cq *cq = NULL;
1637 u8 polarity;
1639 ceqe = (u64 *)I40IW_GET_CURRENT_CEQ_ELEMENT(ceq);
1640 get_64bit_val(ceqe, 0, &temp);
1641 polarity = (u8)RS_64(temp, I40IW_CEQE_VALID);
1642 if (polarity != ceq->polarity)
1643 return cq;
1645 cq = (struct i40iw_sc_cq *)(unsigned long)LS_64_1(temp, 1);
1647 I40IW_RING_MOVE_TAIL(ceq->ceq_ring);
1648 if (I40IW_RING_GETCURRENT_TAIL(ceq->ceq_ring) == 0)
1649 ceq->polarity ^= 1;
1651 if (dev->is_pf)
1652 i40iw_wr32(dev->hw, I40E_PFPE_CQACK, cq->cq_uk.cq_id);
1653 else
1654 i40iw_wr32(dev->hw, I40E_VFPE_CQACK1, cq->cq_uk.cq_id);
1656 return cq;
1660 * i40iw_sc_aeq_init - initialize aeq
1661 * @aeq: aeq structure ptr
1662 * @info: aeq initialization info
1664 static enum i40iw_status_code i40iw_sc_aeq_init(struct i40iw_sc_aeq *aeq,
1665 struct i40iw_aeq_init_info *info)
1667 u32 pble_obj_cnt;
1669 if ((info->elem_cnt < I40IW_MIN_AEQ_ENTRIES) ||
1670 (info->elem_cnt > I40IW_MAX_AEQ_ENTRIES))
1671 return I40IW_ERR_INVALID_SIZE;
1672 pble_obj_cnt = info->dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
1674 if (info->virtual_map && (info->first_pm_pbl_idx >= pble_obj_cnt))
1675 return I40IW_ERR_INVALID_PBLE_INDEX;
1677 aeq->size = sizeof(*aeq);
1678 aeq->polarity = 1;
1679 aeq->aeqe_base = (struct i40iw_sc_aeqe *)info->aeqe_base;
1680 aeq->dev = info->dev;
1681 aeq->elem_cnt = info->elem_cnt;
1683 aeq->aeq_elem_pa = info->aeq_elem_pa;
1684 I40IW_RING_INIT(aeq->aeq_ring, aeq->elem_cnt);
1685 info->dev->aeq = aeq;
1687 aeq->virtual_map = info->virtual_map;
1688 aeq->pbl_list = (aeq->virtual_map ? info->pbl_list : NULL);
1689 aeq->pbl_chunk_size = (aeq->virtual_map ? info->pbl_chunk_size : 0);
1690 aeq->first_pm_pbl_idx = (aeq->virtual_map ? info->first_pm_pbl_idx : 0);
1691 info->dev->aeq = aeq;
1692 return 0;
1696 * i40iw_sc_aeq_create - create aeq
1697 * @aeq: aeq structure ptr
1698 * @scratch: u64 saved to be used during cqp completion
1699 * @post_sq: flag for cqp db to ring
1701 static enum i40iw_status_code i40iw_sc_aeq_create(struct i40iw_sc_aeq *aeq,
1702 u64 scratch,
1703 bool post_sq)
1705 u64 *wqe;
1706 struct i40iw_sc_cqp *cqp;
1707 u64 header;
1709 cqp = aeq->dev->cqp;
1710 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1711 if (!wqe)
1712 return I40IW_ERR_RING_FULL;
1713 set_64bit_val(wqe, 16, aeq->elem_cnt);
1714 set_64bit_val(wqe, 32,
1715 (aeq->virtual_map ? 0 : aeq->aeq_elem_pa));
1716 set_64bit_val(wqe, 48,
1717 (aeq->virtual_map ? aeq->first_pm_pbl_idx : 0));
1719 header = LS_64(I40IW_CQP_OP_CREATE_AEQ, I40IW_CQPSQ_OPCODE) |
1720 LS_64(aeq->pbl_chunk_size, I40IW_CQPSQ_AEQ_LPBLSIZE) |
1721 LS_64(aeq->virtual_map, I40IW_CQPSQ_AEQ_VMAP) |
1722 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1724 i40iw_insert_wqe_hdr(wqe, header);
1725 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "AEQ_CREATE WQE",
1726 wqe, I40IW_CQP_WQE_SIZE * 8);
1727 if (post_sq)
1728 i40iw_sc_cqp_post_sq(cqp);
1729 return 0;
1733 * i40iw_sc_aeq_destroy - destroy aeq during close
1734 * @aeq: aeq structure ptr
1735 * @scratch: u64 saved to be used during cqp completion
1736 * @post_sq: flag for cqp db to ring
1738 static enum i40iw_status_code i40iw_sc_aeq_destroy(struct i40iw_sc_aeq *aeq,
1739 u64 scratch,
1740 bool post_sq)
1742 u64 *wqe;
1743 struct i40iw_sc_cqp *cqp;
1744 u64 header;
1746 cqp = aeq->dev->cqp;
1747 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
1748 if (!wqe)
1749 return I40IW_ERR_RING_FULL;
1750 set_64bit_val(wqe, 16, aeq->elem_cnt);
1751 set_64bit_val(wqe, 48, aeq->first_pm_pbl_idx);
1752 header = LS_64(I40IW_CQP_OP_DESTROY_AEQ, I40IW_CQPSQ_OPCODE) |
1753 LS_64(aeq->pbl_chunk_size, I40IW_CQPSQ_AEQ_LPBLSIZE) |
1754 LS_64(aeq->virtual_map, I40IW_CQPSQ_AEQ_VMAP) |
1755 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
1756 i40iw_insert_wqe_hdr(wqe, header);
1758 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "AEQ_DESTROY WQE",
1759 wqe, I40IW_CQP_WQE_SIZE * 8);
1760 if (post_sq)
1761 i40iw_sc_cqp_post_sq(cqp);
1762 return 0;
1766 * i40iw_sc_get_next_aeqe - get next aeq entry
1767 * @aeq: aeq structure ptr
1768 * @info: aeqe info to be returned
1770 static enum i40iw_status_code i40iw_sc_get_next_aeqe(struct i40iw_sc_aeq *aeq,
1771 struct i40iw_aeqe_info *info)
1773 u64 temp, compl_ctx;
1774 u64 *aeqe;
1775 u16 wqe_idx;
1776 u8 ae_src;
1777 u8 polarity;
1779 aeqe = (u64 *)I40IW_GET_CURRENT_AEQ_ELEMENT(aeq);
1780 get_64bit_val(aeqe, 0, &compl_ctx);
1781 get_64bit_val(aeqe, 8, &temp);
1782 polarity = (u8)RS_64(temp, I40IW_AEQE_VALID);
1784 if (aeq->polarity != polarity)
1785 return I40IW_ERR_QUEUE_EMPTY;
1787 i40iw_debug_buf(aeq->dev, I40IW_DEBUG_WQE, "AEQ_ENTRY", aeqe, 16);
1789 ae_src = (u8)RS_64(temp, I40IW_AEQE_AESRC);
1790 wqe_idx = (u16)RS_64(temp, I40IW_AEQE_WQDESCIDX);
1791 info->qp_cq_id = (u32)RS_64(temp, I40IW_AEQE_QPCQID);
1792 info->ae_id = (u16)RS_64(temp, I40IW_AEQE_AECODE);
1793 info->tcp_state = (u8)RS_64(temp, I40IW_AEQE_TCPSTATE);
1794 info->iwarp_state = (u8)RS_64(temp, I40IW_AEQE_IWSTATE);
1795 info->q2_data_written = (u8)RS_64(temp, I40IW_AEQE_Q2DATA);
1796 info->aeqe_overflow = (bool)RS_64(temp, I40IW_AEQE_OVERFLOW);
1798 switch (info->ae_id) {
1799 case I40IW_AE_PRIV_OPERATION_DENIED:
1800 case I40IW_AE_UDA_XMIT_DGRAM_TOO_LONG:
1801 case I40IW_AE_UDA_XMIT_DGRAM_TOO_SHORT:
1802 case I40IW_AE_BAD_CLOSE:
1803 case I40IW_AE_RDMAP_ROE_BAD_LLP_CLOSE:
1804 case I40IW_AE_RDMA_READ_WHILE_ORD_ZERO:
1805 case I40IW_AE_STAG_ZERO_INVALID:
1806 case I40IW_AE_IB_RREQ_AND_Q1_FULL:
1807 case I40IW_AE_WQE_UNEXPECTED_OPCODE:
1808 case I40IW_AE_DDP_UBE_INVALID_DDP_VERSION:
1809 case I40IW_AE_DDP_UBE_INVALID_MO:
1810 case I40IW_AE_DDP_UBE_INVALID_QN:
1811 case I40IW_AE_DDP_NO_L_BIT:
1812 case I40IW_AE_RDMAP_ROE_INVALID_RDMAP_VERSION:
1813 case I40IW_AE_RDMAP_ROE_UNEXPECTED_OPCODE:
1814 case I40IW_AE_ROE_INVALID_RDMA_READ_REQUEST:
1815 case I40IW_AE_ROE_INVALID_RDMA_WRITE_OR_READ_RESP:
1816 case I40IW_AE_INVALID_ARP_ENTRY:
1817 case I40IW_AE_INVALID_TCP_OPTION_RCVD:
1818 case I40IW_AE_STALE_ARP_ENTRY:
1819 case I40IW_AE_LLP_CLOSE_COMPLETE:
1820 case I40IW_AE_LLP_CONNECTION_RESET:
1821 case I40IW_AE_LLP_FIN_RECEIVED:
1822 case I40IW_AE_LLP_RECEIVED_MPA_CRC_ERROR:
1823 case I40IW_AE_LLP_SEGMENT_TOO_SMALL:
1824 case I40IW_AE_LLP_SYN_RECEIVED:
1825 case I40IW_AE_LLP_TERMINATE_RECEIVED:
1826 case I40IW_AE_LLP_TOO_MANY_RETRIES:
1827 case I40IW_AE_LLP_DOUBT_REACHABILITY:
1828 case I40IW_AE_RESET_SENT:
1829 case I40IW_AE_TERMINATE_SENT:
1830 case I40IW_AE_RESET_NOT_SENT:
1831 case I40IW_AE_LCE_QP_CATASTROPHIC:
1832 case I40IW_AE_QP_SUSPEND_COMPLETE:
1833 info->qp = true;
1834 info->compl_ctx = compl_ctx;
1835 ae_src = I40IW_AE_SOURCE_RSVD;
1836 break;
1837 case I40IW_AE_LCE_CQ_CATASTROPHIC:
1838 info->cq = true;
1839 info->compl_ctx = LS_64_1(compl_ctx, 1);
1840 ae_src = I40IW_AE_SOURCE_RSVD;
1841 break;
1844 switch (ae_src) {
1845 case I40IW_AE_SOURCE_RQ:
1846 case I40IW_AE_SOURCE_RQ_0011:
1847 info->qp = true;
1848 info->wqe_idx = wqe_idx;
1849 info->compl_ctx = compl_ctx;
1850 break;
1851 case I40IW_AE_SOURCE_CQ:
1852 case I40IW_AE_SOURCE_CQ_0110:
1853 case I40IW_AE_SOURCE_CQ_1010:
1854 case I40IW_AE_SOURCE_CQ_1110:
1855 info->cq = true;
1856 info->compl_ctx = LS_64_1(compl_ctx, 1);
1857 break;
1858 case I40IW_AE_SOURCE_SQ:
1859 case I40IW_AE_SOURCE_SQ_0111:
1860 info->qp = true;
1861 info->sq = true;
1862 info->wqe_idx = wqe_idx;
1863 info->compl_ctx = compl_ctx;
1864 break;
1865 case I40IW_AE_SOURCE_IN_RR_WR:
1866 case I40IW_AE_SOURCE_IN_RR_WR_1011:
1867 info->qp = true;
1868 info->compl_ctx = compl_ctx;
1869 info->in_rdrsp_wr = true;
1870 break;
1871 case I40IW_AE_SOURCE_OUT_RR:
1872 case I40IW_AE_SOURCE_OUT_RR_1111:
1873 info->qp = true;
1874 info->compl_ctx = compl_ctx;
1875 info->out_rdrsp = true;
1876 break;
1877 case I40IW_AE_SOURCE_RSVD:
1878 /* fallthrough */
1879 default:
1880 break;
1882 I40IW_RING_MOVE_TAIL(aeq->aeq_ring);
1883 if (I40IW_RING_GETCURRENT_TAIL(aeq->aeq_ring) == 0)
1884 aeq->polarity ^= 1;
1885 return 0;
1889 * i40iw_sc_repost_aeq_entries - repost completed aeq entries
1890 * @dev: sc device struct
1891 * @count: allocate count
1893 static enum i40iw_status_code i40iw_sc_repost_aeq_entries(struct i40iw_sc_dev *dev,
1894 u32 count)
1897 if (dev->is_pf)
1898 i40iw_wr32(dev->hw, I40E_PFPE_AEQALLOC, count);
1899 else
1900 i40iw_wr32(dev->hw, I40E_VFPE_AEQALLOC1, count);
1902 return 0;
1906 * i40iw_sc_aeq_create_done - create aeq
1907 * @aeq: aeq structure ptr
1909 static enum i40iw_status_code i40iw_sc_aeq_create_done(struct i40iw_sc_aeq *aeq)
1911 struct i40iw_sc_cqp *cqp;
1913 cqp = aeq->dev->cqp;
1914 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_CREATE_AEQ, NULL);
1918 * i40iw_sc_aeq_destroy_done - destroy of aeq during close
1919 * @aeq: aeq structure ptr
1921 static enum i40iw_status_code i40iw_sc_aeq_destroy_done(struct i40iw_sc_aeq *aeq)
1923 struct i40iw_sc_cqp *cqp;
1925 cqp = aeq->dev->cqp;
1926 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_DESTROY_AEQ, NULL);
1930 * i40iw_sc_ccq_init - initialize control cq
1931 * @cq: sc's cq ctruct
1932 * @info: info for control cq initialization
1934 static enum i40iw_status_code i40iw_sc_ccq_init(struct i40iw_sc_cq *cq,
1935 struct i40iw_ccq_init_info *info)
1937 u32 pble_obj_cnt;
1939 if (info->num_elem < I40IW_MIN_CQ_SIZE || info->num_elem > I40IW_MAX_CQ_SIZE)
1940 return I40IW_ERR_INVALID_SIZE;
1942 if (info->ceq_id > I40IW_MAX_CEQID)
1943 return I40IW_ERR_INVALID_CEQ_ID;
1945 pble_obj_cnt = info->dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
1947 if (info->virtual_map && (info->first_pm_pbl_idx >= pble_obj_cnt))
1948 return I40IW_ERR_INVALID_PBLE_INDEX;
1950 cq->cq_pa = info->cq_pa;
1951 cq->cq_uk.cq_base = info->cq_base;
1952 cq->shadow_area_pa = info->shadow_area_pa;
1953 cq->cq_uk.shadow_area = info->shadow_area;
1954 cq->shadow_read_threshold = info->shadow_read_threshold;
1955 cq->dev = info->dev;
1956 cq->ceq_id = info->ceq_id;
1957 cq->cq_uk.cq_size = info->num_elem;
1958 cq->cq_type = I40IW_CQ_TYPE_CQP;
1959 cq->ceqe_mask = info->ceqe_mask;
1960 I40IW_RING_INIT(cq->cq_uk.cq_ring, info->num_elem);
1962 cq->cq_uk.cq_id = 0; /* control cq is id 0 always */
1963 cq->ceq_id_valid = info->ceq_id_valid;
1964 cq->tph_en = info->tph_en;
1965 cq->tph_val = info->tph_val;
1966 cq->cq_uk.avoid_mem_cflct = info->avoid_mem_cflct;
1968 cq->pbl_list = info->pbl_list;
1969 cq->virtual_map = info->virtual_map;
1970 cq->pbl_chunk_size = info->pbl_chunk_size;
1971 cq->first_pm_pbl_idx = info->first_pm_pbl_idx;
1972 cq->cq_uk.polarity = true;
1974 /* following are only for iw cqs so initialize them to zero */
1975 cq->cq_uk.cqe_alloc_reg = NULL;
1976 info->dev->ccq = cq;
1977 return 0;
1981 * i40iw_sc_ccq_create_done - poll cqp for ccq create
1982 * @ccq: ccq sc struct
1984 static enum i40iw_status_code i40iw_sc_ccq_create_done(struct i40iw_sc_cq *ccq)
1986 struct i40iw_sc_cqp *cqp;
1988 cqp = ccq->dev->cqp;
1989 return i40iw_sc_poll_for_cqp_op_done(cqp, I40IW_CQP_OP_CREATE_CQ, NULL);
1993 * i40iw_sc_ccq_create - create control cq
1994 * @ccq: ccq sc struct
1995 * @scratch: u64 saved to be used during cqp completion
1996 * @check_overflow: overlow flag for ccq
1997 * @post_sq: flag for cqp db to ring
1999 static enum i40iw_status_code i40iw_sc_ccq_create(struct i40iw_sc_cq *ccq,
2000 u64 scratch,
2001 bool check_overflow,
2002 bool post_sq)
2004 u64 *wqe;
2005 struct i40iw_sc_cqp *cqp;
2006 u64 header;
2007 enum i40iw_status_code ret_code;
2009 cqp = ccq->dev->cqp;
2010 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2011 if (!wqe)
2012 return I40IW_ERR_RING_FULL;
2013 set_64bit_val(wqe, 0, ccq->cq_uk.cq_size);
2014 set_64bit_val(wqe, 8, RS_64_1(ccq, 1));
2015 set_64bit_val(wqe, 16,
2016 LS_64(ccq->shadow_read_threshold, I40IW_CQPSQ_CQ_SHADOW_READ_THRESHOLD));
2017 set_64bit_val(wqe, 32, (ccq->virtual_map ? 0 : ccq->cq_pa));
2018 set_64bit_val(wqe, 40, ccq->shadow_area_pa);
2019 set_64bit_val(wqe, 48,
2020 (ccq->virtual_map ? ccq->first_pm_pbl_idx : 0));
2021 set_64bit_val(wqe, 56,
2022 LS_64(ccq->tph_val, I40IW_CQPSQ_TPHVAL));
2024 header = ccq->cq_uk.cq_id |
2025 LS_64((ccq->ceq_id_valid ? ccq->ceq_id : 0), I40IW_CQPSQ_CQ_CEQID) |
2026 LS_64(I40IW_CQP_OP_CREATE_CQ, I40IW_CQPSQ_OPCODE) |
2027 LS_64(ccq->pbl_chunk_size, I40IW_CQPSQ_CQ_LPBLSIZE) |
2028 LS_64(check_overflow, I40IW_CQPSQ_CQ_CHKOVERFLOW) |
2029 LS_64(ccq->virtual_map, I40IW_CQPSQ_CQ_VIRTMAP) |
2030 LS_64(ccq->ceqe_mask, I40IW_CQPSQ_CQ_ENCEQEMASK) |
2031 LS_64(ccq->ceq_id_valid, I40IW_CQPSQ_CQ_CEQIDVALID) |
2032 LS_64(ccq->tph_en, I40IW_CQPSQ_TPHEN) |
2033 LS_64(ccq->cq_uk.avoid_mem_cflct, I40IW_CQPSQ_CQ_AVOIDMEMCNFLCT) |
2034 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2036 i40iw_insert_wqe_hdr(wqe, header);
2038 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CCQ_CREATE WQE",
2039 wqe, I40IW_CQP_WQE_SIZE * 8);
2041 if (post_sq) {
2042 i40iw_sc_cqp_post_sq(cqp);
2043 ret_code = i40iw_sc_ccq_create_done(ccq);
2044 if (ret_code)
2045 return ret_code;
2047 cqp->process_cqp_sds = i40iw_cqp_sds_cmd;
2049 return 0;
2053 * i40iw_sc_ccq_destroy - destroy ccq during close
2054 * @ccq: ccq sc struct
2055 * @scratch: u64 saved to be used during cqp completion
2056 * @post_sq: flag for cqp db to ring
2058 static enum i40iw_status_code i40iw_sc_ccq_destroy(struct i40iw_sc_cq *ccq,
2059 u64 scratch,
2060 bool post_sq)
2062 struct i40iw_sc_cqp *cqp;
2063 u64 *wqe;
2064 u64 header;
2065 enum i40iw_status_code ret_code = 0;
2066 u32 tail, val, error;
2068 cqp = ccq->dev->cqp;
2069 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2070 if (!wqe)
2071 return I40IW_ERR_RING_FULL;
2072 set_64bit_val(wqe, 0, ccq->cq_uk.cq_size);
2073 set_64bit_val(wqe, 8, RS_64_1(ccq, 1));
2074 set_64bit_val(wqe, 40, ccq->shadow_area_pa);
2076 header = ccq->cq_uk.cq_id |
2077 LS_64((ccq->ceq_id_valid ? ccq->ceq_id : 0), I40IW_CQPSQ_CQ_CEQID) |
2078 LS_64(I40IW_CQP_OP_DESTROY_CQ, I40IW_CQPSQ_OPCODE) |
2079 LS_64(ccq->ceqe_mask, I40IW_CQPSQ_CQ_ENCEQEMASK) |
2080 LS_64(ccq->ceq_id_valid, I40IW_CQPSQ_CQ_CEQIDVALID) |
2081 LS_64(ccq->tph_en, I40IW_CQPSQ_TPHEN) |
2082 LS_64(ccq->cq_uk.avoid_mem_cflct, I40IW_CQPSQ_CQ_AVOIDMEMCNFLCT) |
2083 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2085 i40iw_insert_wqe_hdr(wqe, header);
2087 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CCQ_DESTROY WQE",
2088 wqe, I40IW_CQP_WQE_SIZE * 8);
2090 i40iw_get_cqp_reg_info(cqp, &val, &tail, &error);
2091 if (error)
2092 return I40IW_ERR_CQP_COMPL_ERROR;
2094 if (post_sq) {
2095 i40iw_sc_cqp_post_sq(cqp);
2096 ret_code = i40iw_cqp_poll_registers(cqp, tail, 1000);
2099 cqp->process_cqp_sds = i40iw_update_sds_noccq;
2101 return ret_code;
2105 * i40iw_sc_cq_init - initialize completion q
2106 * @cq: cq struct
2107 * @info: cq initialization info
2109 static enum i40iw_status_code i40iw_sc_cq_init(struct i40iw_sc_cq *cq,
2110 struct i40iw_cq_init_info *info)
2112 u32 __iomem *cqe_alloc_reg = NULL;
2113 enum i40iw_status_code ret_code;
2114 u32 pble_obj_cnt;
2115 u32 arm_offset;
2117 pble_obj_cnt = info->dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
2119 if (info->virtual_map && (info->first_pm_pbl_idx >= pble_obj_cnt))
2120 return I40IW_ERR_INVALID_PBLE_INDEX;
2122 cq->cq_pa = info->cq_base_pa;
2123 cq->dev = info->dev;
2124 cq->ceq_id = info->ceq_id;
2125 arm_offset = (info->dev->is_pf) ? I40E_PFPE_CQARM : I40E_VFPE_CQARM1;
2126 if (i40iw_get_hw_addr(cq->dev))
2127 cqe_alloc_reg = (u32 __iomem *)(i40iw_get_hw_addr(cq->dev) +
2128 arm_offset);
2129 info->cq_uk_init_info.cqe_alloc_reg = cqe_alloc_reg;
2130 ret_code = i40iw_cq_uk_init(&cq->cq_uk, &info->cq_uk_init_info);
2131 if (ret_code)
2132 return ret_code;
2133 cq->virtual_map = info->virtual_map;
2134 cq->pbl_chunk_size = info->pbl_chunk_size;
2135 cq->ceqe_mask = info->ceqe_mask;
2136 cq->cq_type = (info->type) ? info->type : I40IW_CQ_TYPE_IWARP;
2138 cq->shadow_area_pa = info->shadow_area_pa;
2139 cq->shadow_read_threshold = info->shadow_read_threshold;
2141 cq->ceq_id_valid = info->ceq_id_valid;
2142 cq->tph_en = info->tph_en;
2143 cq->tph_val = info->tph_val;
2145 cq->first_pm_pbl_idx = info->first_pm_pbl_idx;
2147 return 0;
2151 * i40iw_sc_cq_create - create completion q
2152 * @cq: cq struct
2153 * @scratch: u64 saved to be used during cqp completion
2154 * @check_overflow: flag for overflow check
2155 * @post_sq: flag for cqp db to ring
2157 static enum i40iw_status_code i40iw_sc_cq_create(struct i40iw_sc_cq *cq,
2158 u64 scratch,
2159 bool check_overflow,
2160 bool post_sq)
2162 u64 *wqe;
2163 struct i40iw_sc_cqp *cqp;
2164 u64 header;
2166 if (cq->cq_uk.cq_id > I40IW_MAX_CQID)
2167 return I40IW_ERR_INVALID_CQ_ID;
2169 if (cq->ceq_id > I40IW_MAX_CEQID)
2170 return I40IW_ERR_INVALID_CEQ_ID;
2172 cqp = cq->dev->cqp;
2173 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2174 if (!wqe)
2175 return I40IW_ERR_RING_FULL;
2177 set_64bit_val(wqe, 0, cq->cq_uk.cq_size);
2178 set_64bit_val(wqe, 8, RS_64_1(cq, 1));
2179 set_64bit_val(wqe,
2181 LS_64(cq->shadow_read_threshold, I40IW_CQPSQ_CQ_SHADOW_READ_THRESHOLD));
2183 set_64bit_val(wqe, 32, (cq->virtual_map ? 0 : cq->cq_pa));
2185 set_64bit_val(wqe, 40, cq->shadow_area_pa);
2186 set_64bit_val(wqe, 48, (cq->virtual_map ? cq->first_pm_pbl_idx : 0));
2187 set_64bit_val(wqe, 56, LS_64(cq->tph_val, I40IW_CQPSQ_TPHVAL));
2189 header = cq->cq_uk.cq_id |
2190 LS_64((cq->ceq_id_valid ? cq->ceq_id : 0), I40IW_CQPSQ_CQ_CEQID) |
2191 LS_64(I40IW_CQP_OP_CREATE_CQ, I40IW_CQPSQ_OPCODE) |
2192 LS_64(cq->pbl_chunk_size, I40IW_CQPSQ_CQ_LPBLSIZE) |
2193 LS_64(check_overflow, I40IW_CQPSQ_CQ_CHKOVERFLOW) |
2194 LS_64(cq->virtual_map, I40IW_CQPSQ_CQ_VIRTMAP) |
2195 LS_64(cq->ceqe_mask, I40IW_CQPSQ_CQ_ENCEQEMASK) |
2196 LS_64(cq->ceq_id_valid, I40IW_CQPSQ_CQ_CEQIDVALID) |
2197 LS_64(cq->tph_en, I40IW_CQPSQ_TPHEN) |
2198 LS_64(cq->cq_uk.avoid_mem_cflct, I40IW_CQPSQ_CQ_AVOIDMEMCNFLCT) |
2199 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2201 i40iw_insert_wqe_hdr(wqe, header);
2203 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CQ_CREATE WQE",
2204 wqe, I40IW_CQP_WQE_SIZE * 8);
2206 if (post_sq)
2207 i40iw_sc_cqp_post_sq(cqp);
2208 return 0;
2212 * i40iw_sc_cq_destroy - destroy completion q
2213 * @cq: cq struct
2214 * @scratch: u64 saved to be used during cqp completion
2215 * @post_sq: flag for cqp db to ring
2217 static enum i40iw_status_code i40iw_sc_cq_destroy(struct i40iw_sc_cq *cq,
2218 u64 scratch,
2219 bool post_sq)
2221 struct i40iw_sc_cqp *cqp;
2222 u64 *wqe;
2223 u64 header;
2225 cqp = cq->dev->cqp;
2226 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2227 if (!wqe)
2228 return I40IW_ERR_RING_FULL;
2229 set_64bit_val(wqe, 0, cq->cq_uk.cq_size);
2230 set_64bit_val(wqe, 8, RS_64_1(cq, 1));
2231 set_64bit_val(wqe, 40, cq->shadow_area_pa);
2232 set_64bit_val(wqe, 48, (cq->virtual_map ? cq->first_pm_pbl_idx : 0));
2234 header = cq->cq_uk.cq_id |
2235 LS_64((cq->ceq_id_valid ? cq->ceq_id : 0), I40IW_CQPSQ_CQ_CEQID) |
2236 LS_64(I40IW_CQP_OP_DESTROY_CQ, I40IW_CQPSQ_OPCODE) |
2237 LS_64(cq->pbl_chunk_size, I40IW_CQPSQ_CQ_LPBLSIZE) |
2238 LS_64(cq->virtual_map, I40IW_CQPSQ_CQ_VIRTMAP) |
2239 LS_64(cq->ceqe_mask, I40IW_CQPSQ_CQ_ENCEQEMASK) |
2240 LS_64(cq->ceq_id_valid, I40IW_CQPSQ_CQ_CEQIDVALID) |
2241 LS_64(cq->tph_en, I40IW_CQPSQ_TPHEN) |
2242 LS_64(cq->cq_uk.avoid_mem_cflct, I40IW_CQPSQ_CQ_AVOIDMEMCNFLCT) |
2243 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2245 i40iw_insert_wqe_hdr(wqe, header);
2247 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CQ_DESTROY WQE",
2248 wqe, I40IW_CQP_WQE_SIZE * 8);
2250 if (post_sq)
2251 i40iw_sc_cqp_post_sq(cqp);
2252 return 0;
2256 * i40iw_sc_cq_modify - modify a Completion Queue
2257 * @cq: cq struct
2258 * @info: modification info struct
2259 * @scratch:
2260 * @post_sq: flag to post to sq
2262 static enum i40iw_status_code i40iw_sc_cq_modify(struct i40iw_sc_cq *cq,
2263 struct i40iw_modify_cq_info *info,
2264 u64 scratch,
2265 bool post_sq)
2267 struct i40iw_sc_cqp *cqp;
2268 u64 *wqe;
2269 u64 header;
2270 u32 cq_size, ceq_id, first_pm_pbl_idx;
2271 u8 pbl_chunk_size;
2272 bool virtual_map, ceq_id_valid, check_overflow;
2273 u32 pble_obj_cnt;
2275 if (info->ceq_valid && (info->ceq_id > I40IW_MAX_CEQID))
2276 return I40IW_ERR_INVALID_CEQ_ID;
2278 pble_obj_cnt = cq->dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
2280 if (info->cq_resize && info->virtual_map &&
2281 (info->first_pm_pbl_idx >= pble_obj_cnt))
2282 return I40IW_ERR_INVALID_PBLE_INDEX;
2284 cqp = cq->dev->cqp;
2285 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2286 if (!wqe)
2287 return I40IW_ERR_RING_FULL;
2289 cq->pbl_list = info->pbl_list;
2290 cq->cq_pa = info->cq_pa;
2291 cq->first_pm_pbl_idx = info->first_pm_pbl_idx;
2293 cq_size = info->cq_resize ? info->cq_size : cq->cq_uk.cq_size;
2294 if (info->ceq_change) {
2295 ceq_id_valid = true;
2296 ceq_id = info->ceq_id;
2297 } else {
2298 ceq_id_valid = cq->ceq_id_valid;
2299 ceq_id = ceq_id_valid ? cq->ceq_id : 0;
2301 virtual_map = info->cq_resize ? info->virtual_map : cq->virtual_map;
2302 first_pm_pbl_idx = (info->cq_resize ?
2303 (info->virtual_map ? info->first_pm_pbl_idx : 0) :
2304 (cq->virtual_map ? cq->first_pm_pbl_idx : 0));
2305 pbl_chunk_size = (info->cq_resize ?
2306 (info->virtual_map ? info->pbl_chunk_size : 0) :
2307 (cq->virtual_map ? cq->pbl_chunk_size : 0));
2308 check_overflow = info->check_overflow_change ? info->check_overflow :
2309 cq->check_overflow;
2310 cq->cq_uk.cq_size = cq_size;
2311 cq->ceq_id_valid = ceq_id_valid;
2312 cq->ceq_id = ceq_id;
2313 cq->virtual_map = virtual_map;
2314 cq->first_pm_pbl_idx = first_pm_pbl_idx;
2315 cq->pbl_chunk_size = pbl_chunk_size;
2316 cq->check_overflow = check_overflow;
2318 set_64bit_val(wqe, 0, cq_size);
2319 set_64bit_val(wqe, 8, RS_64_1(cq, 1));
2320 set_64bit_val(wqe, 16,
2321 LS_64(info->shadow_read_threshold, I40IW_CQPSQ_CQ_SHADOW_READ_THRESHOLD));
2322 set_64bit_val(wqe, 32, (cq->virtual_map ? 0 : cq->cq_pa));
2323 set_64bit_val(wqe, 40, cq->shadow_area_pa);
2324 set_64bit_val(wqe, 48, (cq->virtual_map ? first_pm_pbl_idx : 0));
2325 set_64bit_val(wqe, 56, LS_64(cq->tph_val, I40IW_CQPSQ_TPHVAL));
2327 header = cq->cq_uk.cq_id |
2328 LS_64(ceq_id, I40IW_CQPSQ_CQ_CEQID) |
2329 LS_64(I40IW_CQP_OP_MODIFY_CQ, I40IW_CQPSQ_OPCODE) |
2330 LS_64(info->cq_resize, I40IW_CQPSQ_CQ_CQRESIZE) |
2331 LS_64(pbl_chunk_size, I40IW_CQPSQ_CQ_LPBLSIZE) |
2332 LS_64(check_overflow, I40IW_CQPSQ_CQ_CHKOVERFLOW) |
2333 LS_64(virtual_map, I40IW_CQPSQ_CQ_VIRTMAP) |
2334 LS_64(cq->ceqe_mask, I40IW_CQPSQ_CQ_ENCEQEMASK) |
2335 LS_64(ceq_id_valid, I40IW_CQPSQ_CQ_CEQIDVALID) |
2336 LS_64(cq->tph_en, I40IW_CQPSQ_TPHEN) |
2337 LS_64(cq->cq_uk.avoid_mem_cflct, I40IW_CQPSQ_CQ_AVOIDMEMCNFLCT) |
2338 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2340 i40iw_insert_wqe_hdr(wqe, header);
2342 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "CQ_MODIFY WQE",
2343 wqe, I40IW_CQP_WQE_SIZE * 8);
2345 if (post_sq)
2346 i40iw_sc_cqp_post_sq(cqp);
2347 return 0;
2351 * i40iw_sc_qp_init - initialize qp
2352 * @qp: sc qp
2353 * @info: initialization qp info
2355 static enum i40iw_status_code i40iw_sc_qp_init(struct i40iw_sc_qp *qp,
2356 struct i40iw_qp_init_info *info)
2358 u32 __iomem *wqe_alloc_reg = NULL;
2359 enum i40iw_status_code ret_code;
2360 u32 pble_obj_cnt;
2361 u8 wqe_size;
2362 u32 offset;
2364 qp->dev = info->pd->dev;
2365 qp->vsi = info->vsi;
2366 qp->sq_pa = info->sq_pa;
2367 qp->rq_pa = info->rq_pa;
2368 qp->hw_host_ctx_pa = info->host_ctx_pa;
2369 qp->q2_pa = info->q2_pa;
2370 qp->shadow_area_pa = info->shadow_area_pa;
2372 qp->q2_buf = info->q2;
2373 qp->pd = info->pd;
2374 qp->hw_host_ctx = info->host_ctx;
2375 offset = (qp->pd->dev->is_pf) ? I40E_PFPE_WQEALLOC : I40E_VFPE_WQEALLOC1;
2376 if (i40iw_get_hw_addr(qp->pd->dev))
2377 wqe_alloc_reg = (u32 __iomem *)(i40iw_get_hw_addr(qp->pd->dev) +
2378 offset);
2380 info->qp_uk_init_info.wqe_alloc_reg = wqe_alloc_reg;
2381 info->qp_uk_init_info.abi_ver = qp->pd->abi_ver;
2382 ret_code = i40iw_qp_uk_init(&qp->qp_uk, &info->qp_uk_init_info);
2383 if (ret_code)
2384 return ret_code;
2385 qp->virtual_map = info->virtual_map;
2387 pble_obj_cnt = info->pd->dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
2389 if ((info->virtual_map && (info->sq_pa >= pble_obj_cnt)) ||
2390 (info->virtual_map && (info->rq_pa >= pble_obj_cnt)))
2391 return I40IW_ERR_INVALID_PBLE_INDEX;
2393 qp->llp_stream_handle = (void *)(-1);
2394 qp->qp_type = (info->type) ? info->type : I40IW_QP_TYPE_IWARP;
2396 qp->hw_sq_size = i40iw_get_encoded_wqe_size(qp->qp_uk.sq_ring.size,
2397 false);
2398 i40iw_debug(qp->dev, I40IW_DEBUG_WQE, "%s: hw_sq_size[%04d] sq_ring.size[%04d]\n",
2399 __func__, qp->hw_sq_size, qp->qp_uk.sq_ring.size);
2401 switch (qp->pd->abi_ver) {
2402 case 4:
2403 ret_code = i40iw_fragcnt_to_wqesize_rq(qp->qp_uk.max_rq_frag_cnt,
2404 &wqe_size);
2405 if (ret_code)
2406 return ret_code;
2407 break;
2408 case 5: /* fallthrough until next ABI version */
2409 default:
2410 if (qp->qp_uk.max_rq_frag_cnt > I40IW_MAX_WQ_FRAGMENT_COUNT)
2411 return I40IW_ERR_INVALID_FRAG_COUNT;
2412 wqe_size = I40IW_MAX_WQE_SIZE_RQ;
2413 break;
2415 qp->hw_rq_size = i40iw_get_encoded_wqe_size(qp->qp_uk.rq_size *
2416 (wqe_size / I40IW_QP_WQE_MIN_SIZE), false);
2417 i40iw_debug(qp->dev, I40IW_DEBUG_WQE,
2418 "%s: hw_rq_size[%04d] qp_uk.rq_size[%04d] wqe_size[%04d]\n",
2419 __func__, qp->hw_rq_size, qp->qp_uk.rq_size, wqe_size);
2420 qp->sq_tph_val = info->sq_tph_val;
2421 qp->rq_tph_val = info->rq_tph_val;
2422 qp->sq_tph_en = info->sq_tph_en;
2423 qp->rq_tph_en = info->rq_tph_en;
2424 qp->rcv_tph_en = info->rcv_tph_en;
2425 qp->xmit_tph_en = info->xmit_tph_en;
2426 qp->qs_handle = qp->vsi->qos[qp->user_pri].qs_handle;
2428 return 0;
2432 * i40iw_sc_qp_create - create qp
2433 * @qp: sc qp
2434 * @info: qp create info
2435 * @scratch: u64 saved to be used during cqp completion
2436 * @post_sq: flag for cqp db to ring
2438 static enum i40iw_status_code i40iw_sc_qp_create(
2439 struct i40iw_sc_qp *qp,
2440 struct i40iw_create_qp_info *info,
2441 u64 scratch,
2442 bool post_sq)
2444 struct i40iw_sc_cqp *cqp;
2445 u64 *wqe;
2446 u64 header;
2448 if ((qp->qp_uk.qp_id < I40IW_MIN_IW_QP_ID) ||
2449 (qp->qp_uk.qp_id > I40IW_MAX_IW_QP_ID))
2450 return I40IW_ERR_INVALID_QP_ID;
2452 cqp = qp->pd->dev->cqp;
2453 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2454 if (!wqe)
2455 return I40IW_ERR_RING_FULL;
2457 set_64bit_val(wqe, 16, qp->hw_host_ctx_pa);
2459 set_64bit_val(wqe, 40, qp->shadow_area_pa);
2461 header = qp->qp_uk.qp_id |
2462 LS_64(I40IW_CQP_OP_CREATE_QP, I40IW_CQPSQ_OPCODE) |
2463 LS_64((info->ord_valid ? 1 : 0), I40IW_CQPSQ_QP_ORDVALID) |
2464 LS_64(info->tcp_ctx_valid, I40IW_CQPSQ_QP_TOECTXVALID) |
2465 LS_64(qp->qp_type, I40IW_CQPSQ_QP_QPTYPE) |
2466 LS_64(qp->virtual_map, I40IW_CQPSQ_QP_VQ) |
2467 LS_64(info->cq_num_valid, I40IW_CQPSQ_QP_CQNUMVALID) |
2468 LS_64(info->arp_cache_idx_valid, I40IW_CQPSQ_QP_ARPTABIDXVALID) |
2469 LS_64(info->next_iwarp_state, I40IW_CQPSQ_QP_NEXTIWSTATE) |
2470 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2472 i40iw_insert_wqe_hdr(wqe, header);
2473 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "QP_CREATE WQE",
2474 wqe, I40IW_CQP_WQE_SIZE * 8);
2476 if (post_sq)
2477 i40iw_sc_cqp_post_sq(cqp);
2478 return 0;
2482 * i40iw_sc_qp_modify - modify qp cqp wqe
2483 * @qp: sc qp
2484 * @info: modify qp info
2485 * @scratch: u64 saved to be used during cqp completion
2486 * @post_sq: flag for cqp db to ring
2488 static enum i40iw_status_code i40iw_sc_qp_modify(
2489 struct i40iw_sc_qp *qp,
2490 struct i40iw_modify_qp_info *info,
2491 u64 scratch,
2492 bool post_sq)
2494 u64 *wqe;
2495 struct i40iw_sc_cqp *cqp;
2496 u64 header;
2497 u8 term_actions = 0;
2498 u8 term_len = 0;
2500 cqp = qp->pd->dev->cqp;
2501 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2502 if (!wqe)
2503 return I40IW_ERR_RING_FULL;
2504 if (info->next_iwarp_state == I40IW_QP_STATE_TERMINATE) {
2505 if (info->dont_send_fin)
2506 term_actions += I40IWQP_TERM_SEND_TERM_ONLY;
2507 if (info->dont_send_term)
2508 term_actions += I40IWQP_TERM_SEND_FIN_ONLY;
2509 if ((term_actions == I40IWQP_TERM_SEND_TERM_AND_FIN) ||
2510 (term_actions == I40IWQP_TERM_SEND_TERM_ONLY))
2511 term_len = info->termlen;
2514 set_64bit_val(wqe,
2516 LS_64(term_len, I40IW_CQPSQ_QP_TERMLEN));
2518 set_64bit_val(wqe, 16, qp->hw_host_ctx_pa);
2519 set_64bit_val(wqe, 40, qp->shadow_area_pa);
2521 header = qp->qp_uk.qp_id |
2522 LS_64(I40IW_CQP_OP_MODIFY_QP, I40IW_CQPSQ_OPCODE) |
2523 LS_64(info->ord_valid, I40IW_CQPSQ_QP_ORDVALID) |
2524 LS_64(info->tcp_ctx_valid, I40IW_CQPSQ_QP_TOECTXVALID) |
2525 LS_64(info->cached_var_valid, I40IW_CQPSQ_QP_CACHEDVARVALID) |
2526 LS_64(qp->virtual_map, I40IW_CQPSQ_QP_VQ) |
2527 LS_64(info->cq_num_valid, I40IW_CQPSQ_QP_CQNUMVALID) |
2528 LS_64(info->force_loopback, I40IW_CQPSQ_QP_FORCELOOPBACK) |
2529 LS_64(qp->qp_type, I40IW_CQPSQ_QP_QPTYPE) |
2530 LS_64(info->remove_hash_idx, I40IW_CQPSQ_QP_REMOVEHASHENTRY) |
2531 LS_64(term_actions, I40IW_CQPSQ_QP_TERMACT) |
2532 LS_64(info->reset_tcp_conn, I40IW_CQPSQ_QP_RESETCON) |
2533 LS_64(info->arp_cache_idx_valid, I40IW_CQPSQ_QP_ARPTABIDXVALID) |
2534 LS_64(info->next_iwarp_state, I40IW_CQPSQ_QP_NEXTIWSTATE) |
2535 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2537 i40iw_insert_wqe_hdr(wqe, header);
2539 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "QP_MODIFY WQE",
2540 wqe, I40IW_CQP_WQE_SIZE * 8);
2542 if (post_sq)
2543 i40iw_sc_cqp_post_sq(cqp);
2544 return 0;
2548 * i40iw_sc_qp_destroy - cqp destroy qp
2549 * @qp: sc qp
2550 * @scratch: u64 saved to be used during cqp completion
2551 * @remove_hash_idx: flag if to remove hash idx
2552 * @ignore_mw_bnd: memory window bind flag
2553 * @post_sq: flag for cqp db to ring
2555 static enum i40iw_status_code i40iw_sc_qp_destroy(
2556 struct i40iw_sc_qp *qp,
2557 u64 scratch,
2558 bool remove_hash_idx,
2559 bool ignore_mw_bnd,
2560 bool post_sq)
2562 u64 *wqe;
2563 struct i40iw_sc_cqp *cqp;
2564 u64 header;
2566 i40iw_qp_rem_qos(qp);
2567 cqp = qp->pd->dev->cqp;
2568 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2569 if (!wqe)
2570 return I40IW_ERR_RING_FULL;
2571 set_64bit_val(wqe, 16, qp->hw_host_ctx_pa);
2572 set_64bit_val(wqe, 40, qp->shadow_area_pa);
2574 header = qp->qp_uk.qp_id |
2575 LS_64(I40IW_CQP_OP_DESTROY_QP, I40IW_CQPSQ_OPCODE) |
2576 LS_64(qp->qp_type, I40IW_CQPSQ_QP_QPTYPE) |
2577 LS_64(ignore_mw_bnd, I40IW_CQPSQ_QP_IGNOREMWBOUND) |
2578 LS_64(remove_hash_idx, I40IW_CQPSQ_QP_REMOVEHASHENTRY) |
2579 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2581 i40iw_insert_wqe_hdr(wqe, header);
2582 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "QP_DESTROY WQE",
2583 wqe, I40IW_CQP_WQE_SIZE * 8);
2585 if (post_sq)
2586 i40iw_sc_cqp_post_sq(cqp);
2587 return 0;
2591 * i40iw_sc_qp_flush_wqes - flush qp's wqe
2592 * @qp: sc qp
2593 * @info: dlush information
2594 * @scratch: u64 saved to be used during cqp completion
2595 * @post_sq: flag for cqp db to ring
2597 static enum i40iw_status_code i40iw_sc_qp_flush_wqes(
2598 struct i40iw_sc_qp *qp,
2599 struct i40iw_qp_flush_info *info,
2600 u64 scratch,
2601 bool post_sq)
2603 u64 temp = 0;
2604 u64 *wqe;
2605 struct i40iw_sc_cqp *cqp;
2606 u64 header;
2607 bool flush_sq = false, flush_rq = false;
2609 if (info->rq && !qp->flush_rq)
2610 flush_rq = true;
2612 if (info->sq && !qp->flush_sq)
2613 flush_sq = true;
2615 qp->flush_sq |= flush_sq;
2616 qp->flush_rq |= flush_rq;
2617 if (!flush_sq && !flush_rq) {
2618 if (info->ae_code != I40IW_AE_LLP_RECEIVED_MPA_CRC_ERROR)
2619 return 0;
2622 cqp = qp->pd->dev->cqp;
2623 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2624 if (!wqe)
2625 return I40IW_ERR_RING_FULL;
2626 if (info->userflushcode) {
2627 if (flush_rq) {
2628 temp |= LS_64(info->rq_minor_code, I40IW_CQPSQ_FWQE_RQMNERR) |
2629 LS_64(info->rq_major_code, I40IW_CQPSQ_FWQE_RQMJERR);
2631 if (flush_sq) {
2632 temp |= LS_64(info->sq_minor_code, I40IW_CQPSQ_FWQE_SQMNERR) |
2633 LS_64(info->sq_major_code, I40IW_CQPSQ_FWQE_SQMJERR);
2636 set_64bit_val(wqe, 16, temp);
2638 temp = (info->generate_ae) ?
2639 info->ae_code | LS_64(info->ae_source, I40IW_CQPSQ_FWQE_AESOURCE) : 0;
2641 set_64bit_val(wqe, 8, temp);
2643 header = qp->qp_uk.qp_id |
2644 LS_64(I40IW_CQP_OP_FLUSH_WQES, I40IW_CQPSQ_OPCODE) |
2645 LS_64(info->generate_ae, I40IW_CQPSQ_FWQE_GENERATE_AE) |
2646 LS_64(info->userflushcode, I40IW_CQPSQ_FWQE_USERFLCODE) |
2647 LS_64(flush_sq, I40IW_CQPSQ_FWQE_FLUSHSQ) |
2648 LS_64(flush_rq, I40IW_CQPSQ_FWQE_FLUSHRQ) |
2649 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2651 i40iw_insert_wqe_hdr(wqe, header);
2653 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "QP_FLUSH WQE",
2654 wqe, I40IW_CQP_WQE_SIZE * 8);
2656 if (post_sq)
2657 i40iw_sc_cqp_post_sq(cqp);
2658 return 0;
2662 * i40iw_sc_qp_upload_context - upload qp's context
2663 * @dev: sc device struct
2664 * @info: upload context info ptr for return
2665 * @scratch: u64 saved to be used during cqp completion
2666 * @post_sq: flag for cqp db to ring
2668 static enum i40iw_status_code i40iw_sc_qp_upload_context(
2669 struct i40iw_sc_dev *dev,
2670 struct i40iw_upload_context_info *info,
2671 u64 scratch,
2672 bool post_sq)
2674 u64 *wqe;
2675 struct i40iw_sc_cqp *cqp;
2676 u64 header;
2678 cqp = dev->cqp;
2679 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2680 if (!wqe)
2681 return I40IW_ERR_RING_FULL;
2682 set_64bit_val(wqe, 16, info->buf_pa);
2684 header = LS_64(info->qp_id, I40IW_CQPSQ_UCTX_QPID) |
2685 LS_64(I40IW_CQP_OP_UPLOAD_CONTEXT, I40IW_CQPSQ_OPCODE) |
2686 LS_64(info->qp_type, I40IW_CQPSQ_UCTX_QPTYPE) |
2687 LS_64(info->raw_format, I40IW_CQPSQ_UCTX_RAWFORMAT) |
2688 LS_64(info->freeze_qp, I40IW_CQPSQ_UCTX_FREEZEQP) |
2689 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2691 i40iw_insert_wqe_hdr(wqe, header);
2693 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "QP_UPLOAD_CTX WQE",
2694 wqe, I40IW_CQP_WQE_SIZE * 8);
2696 if (post_sq)
2697 i40iw_sc_cqp_post_sq(cqp);
2698 return 0;
2702 * i40iw_sc_qp_setctx - set qp's context
2703 * @qp: sc qp
2704 * @qp_ctx: context ptr
2705 * @info: ctx info
2707 static enum i40iw_status_code i40iw_sc_qp_setctx(
2708 struct i40iw_sc_qp *qp,
2709 u64 *qp_ctx,
2710 struct i40iw_qp_host_ctx_info *info)
2712 struct i40iwarp_offload_info *iw;
2713 struct i40iw_tcp_offload_info *tcp;
2714 struct i40iw_sc_vsi *vsi;
2715 struct i40iw_sc_dev *dev;
2716 u64 qw0, qw3, qw7 = 0;
2718 iw = info->iwarp_info;
2719 tcp = info->tcp_info;
2720 vsi = qp->vsi;
2721 dev = qp->dev;
2722 if (info->add_to_qoslist) {
2723 qp->user_pri = info->user_pri;
2724 i40iw_qp_add_qos(qp);
2725 i40iw_debug(qp->dev, I40IW_DEBUG_DCB, "%s qp[%d] UP[%d] qset[%d]\n",
2726 __func__, qp->qp_uk.qp_id, qp->user_pri, qp->qs_handle);
2728 qw0 = LS_64(qp->qp_uk.rq_wqe_size, I40IWQPC_RQWQESIZE) |
2729 LS_64(info->err_rq_idx_valid, I40IWQPC_ERR_RQ_IDX_VALID) |
2730 LS_64(qp->rcv_tph_en, I40IWQPC_RCVTPHEN) |
2731 LS_64(qp->xmit_tph_en, I40IWQPC_XMITTPHEN) |
2732 LS_64(qp->rq_tph_en, I40IWQPC_RQTPHEN) |
2733 LS_64(qp->sq_tph_en, I40IWQPC_SQTPHEN) |
2734 LS_64(info->push_idx, I40IWQPC_PPIDX) |
2735 LS_64(info->push_mode_en, I40IWQPC_PMENA);
2737 set_64bit_val(qp_ctx, 8, qp->sq_pa);
2738 set_64bit_val(qp_ctx, 16, qp->rq_pa);
2740 qw3 = LS_64(qp->src_mac_addr_idx, I40IWQPC_SRCMACADDRIDX) |
2741 LS_64(qp->hw_rq_size, I40IWQPC_RQSIZE) |
2742 LS_64(qp->hw_sq_size, I40IWQPC_SQSIZE);
2744 set_64bit_val(qp_ctx,
2745 128,
2746 LS_64(info->err_rq_idx, I40IWQPC_ERR_RQ_IDX));
2748 set_64bit_val(qp_ctx,
2749 136,
2750 LS_64(info->send_cq_num, I40IWQPC_TXCQNUM) |
2751 LS_64(info->rcv_cq_num, I40IWQPC_RXCQNUM));
2753 set_64bit_val(qp_ctx,
2754 168,
2755 LS_64(info->qp_compl_ctx, I40IWQPC_QPCOMPCTX));
2756 set_64bit_val(qp_ctx,
2757 176,
2758 LS_64(qp->sq_tph_val, I40IWQPC_SQTPHVAL) |
2759 LS_64(qp->rq_tph_val, I40IWQPC_RQTPHVAL) |
2760 LS_64(qp->qs_handle, I40IWQPC_QSHANDLE) |
2761 LS_64(vsi->exception_lan_queue, I40IWQPC_EXCEPTION_LAN_QUEUE));
2763 if (info->iwarp_info_valid) {
2764 qw0 |= LS_64(iw->ddp_ver, I40IWQPC_DDP_VER) |
2765 LS_64(iw->rdmap_ver, I40IWQPC_RDMAP_VER);
2767 qw7 |= LS_64(iw->pd_id, I40IWQPC_PDIDX);
2768 set_64bit_val(qp_ctx,
2769 144,
2770 LS_64(qp->q2_pa, I40IWQPC_Q2ADDR) |
2771 LS_64(vsi->fcn_id, I40IWQPC_STAT_INDEX));
2772 set_64bit_val(qp_ctx,
2773 152,
2774 LS_64(iw->last_byte_sent, I40IWQPC_LASTBYTESENT));
2776 set_64bit_val(qp_ctx,
2777 160,
2778 LS_64(iw->ord_size, I40IWQPC_ORDSIZE) |
2779 LS_64(iw->ird_size, I40IWQPC_IRDSIZE) |
2780 LS_64(iw->wr_rdresp_en, I40IWQPC_WRRDRSPOK) |
2781 LS_64(iw->rd_enable, I40IWQPC_RDOK) |
2782 LS_64(iw->snd_mark_en, I40IWQPC_SNDMARKERS) |
2783 LS_64(iw->bind_en, I40IWQPC_BINDEN) |
2784 LS_64(iw->fast_reg_en, I40IWQPC_FASTREGEN) |
2785 LS_64(iw->priv_mode_en, I40IWQPC_PRIVEN) |
2786 LS_64((((vsi->stats_fcn_id_alloc) &&
2787 (dev->is_pf) && (vsi->fcn_id >= I40IW_FIRST_NON_PF_STAT)) ? 1 : 0),
2788 I40IWQPC_USESTATSINSTANCE) |
2789 LS_64(1, I40IWQPC_IWARPMODE) |
2790 LS_64(iw->rcv_mark_en, I40IWQPC_RCVMARKERS) |
2791 LS_64(iw->align_hdrs, I40IWQPC_ALIGNHDRS) |
2792 LS_64(iw->rcv_no_mpa_crc, I40IWQPC_RCVNOMPACRC) |
2793 LS_64(iw->rcv_mark_offset, I40IWQPC_RCVMARKOFFSET) |
2794 LS_64(iw->snd_mark_offset, I40IWQPC_SNDMARKOFFSET));
2796 if (info->tcp_info_valid) {
2797 qw0 |= LS_64(tcp->ipv4, I40IWQPC_IPV4) |
2798 LS_64(tcp->no_nagle, I40IWQPC_NONAGLE) |
2799 LS_64(tcp->insert_vlan_tag, I40IWQPC_INSERTVLANTAG) |
2800 LS_64(tcp->time_stamp, I40IWQPC_TIMESTAMP) |
2801 LS_64(tcp->cwnd_inc_limit, I40IWQPC_LIMIT) |
2802 LS_64(tcp->drop_ooo_seg, I40IWQPC_DROPOOOSEG) |
2803 LS_64(tcp->dup_ack_thresh, I40IWQPC_DUPACK_THRESH);
2805 qw3 |= LS_64(tcp->ttl, I40IWQPC_TTL) |
2806 LS_64(tcp->src_mac_addr_idx, I40IWQPC_SRCMACADDRIDX) |
2807 LS_64(tcp->avoid_stretch_ack, I40IWQPC_AVOIDSTRETCHACK) |
2808 LS_64(tcp->tos, I40IWQPC_TOS) |
2809 LS_64(tcp->src_port, I40IWQPC_SRCPORTNUM) |
2810 LS_64(tcp->dst_port, I40IWQPC_DESTPORTNUM);
2812 qp->src_mac_addr_idx = tcp->src_mac_addr_idx;
2813 set_64bit_val(qp_ctx,
2815 LS_64(tcp->dest_ip_addr2, I40IWQPC_DESTIPADDR2) |
2816 LS_64(tcp->dest_ip_addr3, I40IWQPC_DESTIPADDR3));
2818 set_64bit_val(qp_ctx,
2820 LS_64(tcp->dest_ip_addr0, I40IWQPC_DESTIPADDR0) |
2821 LS_64(tcp->dest_ip_addr1, I40IWQPC_DESTIPADDR1));
2823 set_64bit_val(qp_ctx,
2825 LS_64(tcp->snd_mss, I40IWQPC_SNDMSS) |
2826 LS_64(tcp->vlan_tag, I40IWQPC_VLANTAG) |
2827 LS_64(tcp->arp_idx, I40IWQPC_ARPIDX));
2829 qw7 |= LS_64(tcp->flow_label, I40IWQPC_FLOWLABEL) |
2830 LS_64(tcp->wscale, I40IWQPC_WSCALE) |
2831 LS_64(tcp->ignore_tcp_opt, I40IWQPC_IGNORE_TCP_OPT) |
2832 LS_64(tcp->ignore_tcp_uns_opt, I40IWQPC_IGNORE_TCP_UNS_OPT) |
2833 LS_64(tcp->tcp_state, I40IWQPC_TCPSTATE) |
2834 LS_64(tcp->rcv_wscale, I40IWQPC_RCVSCALE) |
2835 LS_64(tcp->snd_wscale, I40IWQPC_SNDSCALE);
2837 set_64bit_val(qp_ctx,
2839 LS_64(tcp->time_stamp_recent, I40IWQPC_TIMESTAMP_RECENT) |
2840 LS_64(tcp->time_stamp_age, I40IWQPC_TIMESTAMP_AGE));
2841 set_64bit_val(qp_ctx,
2843 LS_64(tcp->snd_nxt, I40IWQPC_SNDNXT) |
2844 LS_64(tcp->snd_wnd, I40IWQPC_SNDWND));
2846 set_64bit_val(qp_ctx,
2848 LS_64(tcp->rcv_nxt, I40IWQPC_RCVNXT) |
2849 LS_64(tcp->rcv_wnd, I40IWQPC_RCVWND));
2850 set_64bit_val(qp_ctx,
2852 LS_64(tcp->snd_max, I40IWQPC_SNDMAX) |
2853 LS_64(tcp->snd_una, I40IWQPC_SNDUNA));
2854 set_64bit_val(qp_ctx,
2855 104,
2856 LS_64(tcp->srtt, I40IWQPC_SRTT) |
2857 LS_64(tcp->rtt_var, I40IWQPC_RTTVAR));
2858 set_64bit_val(qp_ctx,
2859 112,
2860 LS_64(tcp->ss_thresh, I40IWQPC_SSTHRESH) |
2861 LS_64(tcp->cwnd, I40IWQPC_CWND));
2862 set_64bit_val(qp_ctx,
2863 120,
2864 LS_64(tcp->snd_wl1, I40IWQPC_SNDWL1) |
2865 LS_64(tcp->snd_wl2, I40IWQPC_SNDWL2));
2866 set_64bit_val(qp_ctx,
2867 128,
2868 LS_64(tcp->max_snd_window, I40IWQPC_MAXSNDWND) |
2869 LS_64(tcp->rexmit_thresh, I40IWQPC_REXMIT_THRESH));
2870 set_64bit_val(qp_ctx,
2871 184,
2872 LS_64(tcp->local_ipaddr3, I40IWQPC_LOCAL_IPADDR3) |
2873 LS_64(tcp->local_ipaddr2, I40IWQPC_LOCAL_IPADDR2));
2874 set_64bit_val(qp_ctx,
2875 192,
2876 LS_64(tcp->local_ipaddr1, I40IWQPC_LOCAL_IPADDR1) |
2877 LS_64(tcp->local_ipaddr0, I40IWQPC_LOCAL_IPADDR0));
2880 set_64bit_val(qp_ctx, 0, qw0);
2881 set_64bit_val(qp_ctx, 24, qw3);
2882 set_64bit_val(qp_ctx, 56, qw7);
2884 i40iw_debug_buf(qp->dev, I40IW_DEBUG_WQE, "QP_HOST)CTX WQE",
2885 qp_ctx, I40IW_QP_CTX_SIZE);
2886 return 0;
2890 * i40iw_sc_alloc_stag - mr stag alloc
2891 * @dev: sc device struct
2892 * @info: stag info
2893 * @scratch: u64 saved to be used during cqp completion
2894 * @post_sq: flag for cqp db to ring
2896 static enum i40iw_status_code i40iw_sc_alloc_stag(
2897 struct i40iw_sc_dev *dev,
2898 struct i40iw_allocate_stag_info *info,
2899 u64 scratch,
2900 bool post_sq)
2902 u64 *wqe;
2903 struct i40iw_sc_cqp *cqp;
2904 u64 header;
2905 enum i40iw_page_size page_size;
2907 page_size = (info->page_size == 0x200000) ? I40IW_PAGE_SIZE_2M : I40IW_PAGE_SIZE_4K;
2908 cqp = dev->cqp;
2909 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2910 if (!wqe)
2911 return I40IW_ERR_RING_FULL;
2912 set_64bit_val(wqe,
2914 LS_64(info->pd_id, I40IW_CQPSQ_STAG_PDID) |
2915 LS_64(info->total_len, I40IW_CQPSQ_STAG_STAGLEN));
2916 set_64bit_val(wqe,
2918 LS_64(info->stag_idx, I40IW_CQPSQ_STAG_IDX));
2919 set_64bit_val(wqe,
2921 LS_64(info->hmc_fcn_index, I40IW_CQPSQ_STAG_HMCFNIDX));
2923 header = LS_64(I40IW_CQP_OP_ALLOC_STAG, I40IW_CQPSQ_OPCODE) |
2924 LS_64(1, I40IW_CQPSQ_STAG_MR) |
2925 LS_64(info->access_rights, I40IW_CQPSQ_STAG_ARIGHTS) |
2926 LS_64(info->chunk_size, I40IW_CQPSQ_STAG_LPBLSIZE) |
2927 LS_64(page_size, I40IW_CQPSQ_STAG_HPAGESIZE) |
2928 LS_64(info->remote_access, I40IW_CQPSQ_STAG_REMACCENABLED) |
2929 LS_64(info->use_hmc_fcn_index, I40IW_CQPSQ_STAG_USEHMCFNIDX) |
2930 LS_64(info->use_pf_rid, I40IW_CQPSQ_STAG_USEPFRID) |
2931 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
2933 i40iw_insert_wqe_hdr(wqe, header);
2935 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "ALLOC_STAG WQE",
2936 wqe, I40IW_CQP_WQE_SIZE * 8);
2938 if (post_sq)
2939 i40iw_sc_cqp_post_sq(cqp);
2940 return 0;
2944 * i40iw_sc_mr_reg_non_shared - non-shared mr registration
2945 * @dev: sc device struct
2946 * @info: mr info
2947 * @scratch: u64 saved to be used during cqp completion
2948 * @post_sq: flag for cqp db to ring
2950 static enum i40iw_status_code i40iw_sc_mr_reg_non_shared(
2951 struct i40iw_sc_dev *dev,
2952 struct i40iw_reg_ns_stag_info *info,
2953 u64 scratch,
2954 bool post_sq)
2956 u64 *wqe;
2957 u64 temp;
2958 struct i40iw_sc_cqp *cqp;
2959 u64 header;
2960 u32 pble_obj_cnt;
2961 bool remote_access;
2962 u8 addr_type;
2963 enum i40iw_page_size page_size;
2965 page_size = (info->page_size == 0x200000) ? I40IW_PAGE_SIZE_2M : I40IW_PAGE_SIZE_4K;
2966 if (info->access_rights & (I40IW_ACCESS_FLAGS_REMOTEREAD_ONLY |
2967 I40IW_ACCESS_FLAGS_REMOTEWRITE_ONLY))
2968 remote_access = true;
2969 else
2970 remote_access = false;
2972 pble_obj_cnt = dev->hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt;
2974 if (info->chunk_size && (info->first_pm_pbl_index >= pble_obj_cnt))
2975 return I40IW_ERR_INVALID_PBLE_INDEX;
2977 cqp = dev->cqp;
2978 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
2979 if (!wqe)
2980 return I40IW_ERR_RING_FULL;
2982 temp = (info->addr_type == I40IW_ADDR_TYPE_VA_BASED) ? (uintptr_t)info->va : info->fbo;
2983 set_64bit_val(wqe, 0, temp);
2985 set_64bit_val(wqe,
2987 LS_64(info->total_len, I40IW_CQPSQ_STAG_STAGLEN) |
2988 LS_64(info->pd_id, I40IW_CQPSQ_STAG_PDID));
2990 set_64bit_val(wqe,
2992 LS_64(info->stag_key, I40IW_CQPSQ_STAG_KEY) |
2993 LS_64(info->stag_idx, I40IW_CQPSQ_STAG_IDX));
2994 if (!info->chunk_size) {
2995 set_64bit_val(wqe, 32, info->reg_addr_pa);
2996 set_64bit_val(wqe, 48, 0);
2997 } else {
2998 set_64bit_val(wqe, 32, 0);
2999 set_64bit_val(wqe, 48, info->first_pm_pbl_index);
3001 set_64bit_val(wqe, 40, info->hmc_fcn_index);
3002 set_64bit_val(wqe, 56, 0);
3004 addr_type = (info->addr_type == I40IW_ADDR_TYPE_VA_BASED) ? 1 : 0;
3005 header = LS_64(I40IW_CQP_OP_REG_MR, I40IW_CQPSQ_OPCODE) |
3006 LS_64(1, I40IW_CQPSQ_STAG_MR) |
3007 LS_64(info->chunk_size, I40IW_CQPSQ_STAG_LPBLSIZE) |
3008 LS_64(page_size, I40IW_CQPSQ_STAG_HPAGESIZE) |
3009 LS_64(info->access_rights, I40IW_CQPSQ_STAG_ARIGHTS) |
3010 LS_64(remote_access, I40IW_CQPSQ_STAG_REMACCENABLED) |
3011 LS_64(addr_type, I40IW_CQPSQ_STAG_VABASEDTO) |
3012 LS_64(info->use_hmc_fcn_index, I40IW_CQPSQ_STAG_USEHMCFNIDX) |
3013 LS_64(info->use_pf_rid, I40IW_CQPSQ_STAG_USEPFRID) |
3014 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3016 i40iw_insert_wqe_hdr(wqe, header);
3018 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "MR_REG_NS WQE",
3019 wqe, I40IW_CQP_WQE_SIZE * 8);
3021 if (post_sq)
3022 i40iw_sc_cqp_post_sq(cqp);
3023 return 0;
3027 * i40iw_sc_mr_reg_shared - registered shared memory region
3028 * @dev: sc device struct
3029 * @info: info for shared memory registeration
3030 * @scratch: u64 saved to be used during cqp completion
3031 * @post_sq: flag for cqp db to ring
3033 static enum i40iw_status_code i40iw_sc_mr_reg_shared(
3034 struct i40iw_sc_dev *dev,
3035 struct i40iw_register_shared_stag *info,
3036 u64 scratch,
3037 bool post_sq)
3039 u64 *wqe;
3040 struct i40iw_sc_cqp *cqp;
3041 u64 temp, va64, fbo, header;
3042 u32 va32;
3043 bool remote_access;
3044 u8 addr_type;
3046 if (info->access_rights & (I40IW_ACCESS_FLAGS_REMOTEREAD_ONLY |
3047 I40IW_ACCESS_FLAGS_REMOTEWRITE_ONLY))
3048 remote_access = true;
3049 else
3050 remote_access = false;
3051 cqp = dev->cqp;
3052 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3053 if (!wqe)
3054 return I40IW_ERR_RING_FULL;
3055 va64 = (uintptr_t)(info->va);
3056 va32 = (u32)(va64 & 0x00000000FFFFFFFF);
3057 fbo = (u64)(va32 & (4096 - 1));
3059 set_64bit_val(wqe,
3061 (info->addr_type == I40IW_ADDR_TYPE_VA_BASED ? (uintptr_t)info->va : fbo));
3063 set_64bit_val(wqe,
3065 LS_64(info->pd_id, I40IW_CQPSQ_STAG_PDID));
3066 temp = LS_64(info->new_stag_key, I40IW_CQPSQ_STAG_KEY) |
3067 LS_64(info->new_stag_idx, I40IW_CQPSQ_STAG_IDX) |
3068 LS_64(info->parent_stag_idx, I40IW_CQPSQ_STAG_PARENTSTAGIDX);
3069 set_64bit_val(wqe, 16, temp);
3071 addr_type = (info->addr_type == I40IW_ADDR_TYPE_VA_BASED) ? 1 : 0;
3072 header = LS_64(I40IW_CQP_OP_REG_SMR, I40IW_CQPSQ_OPCODE) |
3073 LS_64(1, I40IW_CQPSQ_STAG_MR) |
3074 LS_64(info->access_rights, I40IW_CQPSQ_STAG_ARIGHTS) |
3075 LS_64(remote_access, I40IW_CQPSQ_STAG_REMACCENABLED) |
3076 LS_64(addr_type, I40IW_CQPSQ_STAG_VABASEDTO) |
3077 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3079 i40iw_insert_wqe_hdr(wqe, header);
3081 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "MR_REG_SHARED WQE",
3082 wqe, I40IW_CQP_WQE_SIZE * 8);
3084 if (post_sq)
3085 i40iw_sc_cqp_post_sq(cqp);
3086 return 0;
3090 * i40iw_sc_dealloc_stag - deallocate stag
3091 * @dev: sc device struct
3092 * @info: dealloc stag info
3093 * @scratch: u64 saved to be used during cqp completion
3094 * @post_sq: flag for cqp db to ring
3096 static enum i40iw_status_code i40iw_sc_dealloc_stag(
3097 struct i40iw_sc_dev *dev,
3098 struct i40iw_dealloc_stag_info *info,
3099 u64 scratch,
3100 bool post_sq)
3102 u64 header;
3103 u64 *wqe;
3104 struct i40iw_sc_cqp *cqp;
3106 cqp = dev->cqp;
3107 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3108 if (!wqe)
3109 return I40IW_ERR_RING_FULL;
3110 set_64bit_val(wqe,
3112 LS_64(info->pd_id, I40IW_CQPSQ_STAG_PDID));
3113 set_64bit_val(wqe,
3115 LS_64(info->stag_idx, I40IW_CQPSQ_STAG_IDX));
3117 header = LS_64(I40IW_CQP_OP_DEALLOC_STAG, I40IW_CQPSQ_OPCODE) |
3118 LS_64(info->mr, I40IW_CQPSQ_STAG_MR) |
3119 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3121 i40iw_insert_wqe_hdr(wqe, header);
3123 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "DEALLOC_STAG WQE",
3124 wqe, I40IW_CQP_WQE_SIZE * 8);
3126 if (post_sq)
3127 i40iw_sc_cqp_post_sq(cqp);
3128 return 0;
3132 * i40iw_sc_query_stag - query hardware for stag
3133 * @dev: sc device struct
3134 * @scratch: u64 saved to be used during cqp completion
3135 * @stag_index: stag index for query
3136 * @post_sq: flag for cqp db to ring
3138 static enum i40iw_status_code i40iw_sc_query_stag(struct i40iw_sc_dev *dev,
3139 u64 scratch,
3140 u32 stag_index,
3141 bool post_sq)
3143 u64 header;
3144 u64 *wqe;
3145 struct i40iw_sc_cqp *cqp;
3147 cqp = dev->cqp;
3148 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3149 if (!wqe)
3150 return I40IW_ERR_RING_FULL;
3151 set_64bit_val(wqe,
3153 LS_64(stag_index, I40IW_CQPSQ_QUERYSTAG_IDX));
3155 header = LS_64(I40IW_CQP_OP_QUERY_STAG, I40IW_CQPSQ_OPCODE) |
3156 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3158 i40iw_insert_wqe_hdr(wqe, header);
3160 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "QUERY_STAG WQE",
3161 wqe, I40IW_CQP_WQE_SIZE * 8);
3163 if (post_sq)
3164 i40iw_sc_cqp_post_sq(cqp);
3165 return 0;
3169 * i40iw_sc_mw_alloc - mw allocate
3170 * @dev: sc device struct
3171 * @scratch: u64 saved to be used during cqp completion
3172 * @mw_stag_index:stag index
3173 * @pd_id: pd is for this mw
3174 * @post_sq: flag for cqp db to ring
3176 static enum i40iw_status_code i40iw_sc_mw_alloc(
3177 struct i40iw_sc_dev *dev,
3178 u64 scratch,
3179 u32 mw_stag_index,
3180 u16 pd_id,
3181 bool post_sq)
3183 u64 header;
3184 struct i40iw_sc_cqp *cqp;
3185 u64 *wqe;
3187 cqp = dev->cqp;
3188 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3189 if (!wqe)
3190 return I40IW_ERR_RING_FULL;
3191 set_64bit_val(wqe, 8, LS_64(pd_id, I40IW_CQPSQ_STAG_PDID));
3192 set_64bit_val(wqe,
3194 LS_64(mw_stag_index, I40IW_CQPSQ_STAG_IDX));
3196 header = LS_64(I40IW_CQP_OP_ALLOC_STAG, I40IW_CQPSQ_OPCODE) |
3197 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3199 i40iw_insert_wqe_hdr(wqe, header);
3201 i40iw_debug_buf(dev, I40IW_DEBUG_WQE, "MW_ALLOC WQE",
3202 wqe, I40IW_CQP_WQE_SIZE * 8);
3204 if (post_sq)
3205 i40iw_sc_cqp_post_sq(cqp);
3206 return 0;
3210 * i40iw_sc_mr_fast_register - Posts RDMA fast register mr WR to iwarp qp
3211 * @qp: sc qp struct
3212 * @info: fast mr info
3213 * @post_sq: flag for cqp db to ring
3215 enum i40iw_status_code i40iw_sc_mr_fast_register(
3216 struct i40iw_sc_qp *qp,
3217 struct i40iw_fast_reg_stag_info *info,
3218 bool post_sq)
3220 u64 temp, header;
3221 u64 *wqe;
3222 u32 wqe_idx;
3223 enum i40iw_page_size page_size;
3225 page_size = (info->page_size == 0x200000) ? I40IW_PAGE_SIZE_2M : I40IW_PAGE_SIZE_4K;
3226 wqe = i40iw_qp_get_next_send_wqe(&qp->qp_uk, &wqe_idx, I40IW_QP_WQE_MIN_SIZE,
3227 0, info->wr_id);
3228 if (!wqe)
3229 return I40IW_ERR_QP_TOOMANY_WRS_POSTED;
3231 i40iw_debug(qp->dev, I40IW_DEBUG_MR, "%s: wr_id[%llxh] wqe_idx[%04d] location[%p]\n",
3232 __func__, info->wr_id, wqe_idx,
3233 &qp->qp_uk.sq_wrtrk_array[wqe_idx].wrid);
3234 temp = (info->addr_type == I40IW_ADDR_TYPE_VA_BASED) ? (uintptr_t)info->va : info->fbo;
3235 set_64bit_val(wqe, 0, temp);
3237 temp = RS_64(info->first_pm_pbl_index >> 16, I40IWQPSQ_FIRSTPMPBLIDXHI);
3238 set_64bit_val(wqe,
3240 LS_64(temp, I40IWQPSQ_FIRSTPMPBLIDXHI) |
3241 LS_64(info->reg_addr_pa >> I40IWQPSQ_PBLADDR_SHIFT, I40IWQPSQ_PBLADDR));
3243 set_64bit_val(wqe,
3245 info->total_len |
3246 LS_64(info->first_pm_pbl_index, I40IWQPSQ_FIRSTPMPBLIDXLO));
3248 header = LS_64(info->stag_key, I40IWQPSQ_STAGKEY) |
3249 LS_64(info->stag_idx, I40IWQPSQ_STAGINDEX) |
3250 LS_64(I40IWQP_OP_FAST_REGISTER, I40IWQPSQ_OPCODE) |
3251 LS_64(info->chunk_size, I40IWQPSQ_LPBLSIZE) |
3252 LS_64(page_size, I40IWQPSQ_HPAGESIZE) |
3253 LS_64(info->access_rights, I40IWQPSQ_STAGRIGHTS) |
3254 LS_64(info->addr_type, I40IWQPSQ_VABASEDTO) |
3255 LS_64(info->read_fence, I40IWQPSQ_READFENCE) |
3256 LS_64(info->local_fence, I40IWQPSQ_LOCALFENCE) |
3257 LS_64(info->signaled, I40IWQPSQ_SIGCOMPL) |
3258 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID);
3260 i40iw_insert_wqe_hdr(wqe, header);
3262 i40iw_debug_buf(qp->dev, I40IW_DEBUG_WQE, "FAST_REG WQE",
3263 wqe, I40IW_QP_WQE_MIN_SIZE);
3265 if (post_sq)
3266 i40iw_qp_post_wr(&qp->qp_uk);
3267 return 0;
3271 * i40iw_sc_send_lsmm - send last streaming mode message
3272 * @qp: sc qp struct
3273 * @lsmm_buf: buffer with lsmm message
3274 * @size: size of lsmm buffer
3275 * @stag: stag of lsmm buffer
3277 static void i40iw_sc_send_lsmm(struct i40iw_sc_qp *qp,
3278 void *lsmm_buf,
3279 u32 size,
3280 i40iw_stag stag)
3282 u64 *wqe;
3283 u64 header;
3284 struct i40iw_qp_uk *qp_uk;
3286 qp_uk = &qp->qp_uk;
3287 wqe = qp_uk->sq_base->elem;
3289 set_64bit_val(wqe, 0, (uintptr_t)lsmm_buf);
3291 set_64bit_val(wqe, 8, (size | LS_64(stag, I40IWQPSQ_FRAG_STAG)));
3293 set_64bit_val(wqe, 16, 0);
3295 header = LS_64(I40IWQP_OP_RDMA_SEND, I40IWQPSQ_OPCODE) |
3296 LS_64(1, I40IWQPSQ_STREAMMODE) |
3297 LS_64(1, I40IWQPSQ_WAITFORRCVPDU) |
3298 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID);
3300 i40iw_insert_wqe_hdr(wqe, header);
3302 i40iw_debug_buf(qp->dev, I40IW_DEBUG_QP, "SEND_LSMM WQE",
3303 wqe, I40IW_QP_WQE_MIN_SIZE);
3307 * i40iw_sc_send_lsmm_nostag - for privilege qp
3308 * @qp: sc qp struct
3309 * @lsmm_buf: buffer with lsmm message
3310 * @size: size of lsmm buffer
3312 static void i40iw_sc_send_lsmm_nostag(struct i40iw_sc_qp *qp,
3313 void *lsmm_buf,
3314 u32 size)
3316 u64 *wqe;
3317 u64 header;
3318 struct i40iw_qp_uk *qp_uk;
3320 qp_uk = &qp->qp_uk;
3321 wqe = qp_uk->sq_base->elem;
3323 set_64bit_val(wqe, 0, (uintptr_t)lsmm_buf);
3325 set_64bit_val(wqe, 8, size);
3327 set_64bit_val(wqe, 16, 0);
3329 header = LS_64(I40IWQP_OP_RDMA_SEND, I40IWQPSQ_OPCODE) |
3330 LS_64(1, I40IWQPSQ_STREAMMODE) |
3331 LS_64(1, I40IWQPSQ_WAITFORRCVPDU) |
3332 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID);
3334 i40iw_insert_wqe_hdr(wqe, header);
3336 i40iw_debug_buf(qp->dev, I40IW_DEBUG_WQE, "SEND_LSMM_NOSTAG WQE",
3337 wqe, I40IW_QP_WQE_MIN_SIZE);
3341 * i40iw_sc_send_rtt - send last read0 or write0
3342 * @qp: sc qp struct
3343 * @read: Do read0 or write0
3345 static void i40iw_sc_send_rtt(struct i40iw_sc_qp *qp, bool read)
3347 u64 *wqe;
3348 u64 header;
3349 struct i40iw_qp_uk *qp_uk;
3351 qp_uk = &qp->qp_uk;
3352 wqe = qp_uk->sq_base->elem;
3354 set_64bit_val(wqe, 0, 0);
3355 set_64bit_val(wqe, 8, 0);
3356 set_64bit_val(wqe, 16, 0);
3357 if (read) {
3358 header = LS_64(0x1234, I40IWQPSQ_REMSTAG) |
3359 LS_64(I40IWQP_OP_RDMA_READ, I40IWQPSQ_OPCODE) |
3360 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID);
3361 set_64bit_val(wqe, 8, ((u64)0xabcd << 32));
3362 } else {
3363 header = LS_64(I40IWQP_OP_RDMA_WRITE, I40IWQPSQ_OPCODE) |
3364 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID);
3367 i40iw_insert_wqe_hdr(wqe, header);
3369 i40iw_debug_buf(qp->dev, I40IW_DEBUG_WQE, "RTR WQE",
3370 wqe, I40IW_QP_WQE_MIN_SIZE);
3374 * i40iw_sc_post_wqe0 - send wqe with opcode
3375 * @qp: sc qp struct
3376 * @opcode: opcode to use for wqe0
3378 static enum i40iw_status_code i40iw_sc_post_wqe0(struct i40iw_sc_qp *qp, u8 opcode)
3380 u64 *wqe;
3381 u64 header;
3382 struct i40iw_qp_uk *qp_uk;
3384 qp_uk = &qp->qp_uk;
3385 wqe = qp_uk->sq_base->elem;
3387 if (!wqe)
3388 return I40IW_ERR_QP_TOOMANY_WRS_POSTED;
3389 switch (opcode) {
3390 case I40IWQP_OP_NOP:
3391 set_64bit_val(wqe, 0, 0);
3392 set_64bit_val(wqe, 8, 0);
3393 set_64bit_val(wqe, 16, 0);
3394 header = LS_64(I40IWQP_OP_NOP, I40IWQPSQ_OPCODE) |
3395 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID);
3397 i40iw_insert_wqe_hdr(wqe, header);
3398 break;
3399 case I40IWQP_OP_RDMA_SEND:
3400 set_64bit_val(wqe, 0, 0);
3401 set_64bit_val(wqe, 8, 0);
3402 set_64bit_val(wqe, 16, 0);
3403 header = LS_64(I40IWQP_OP_RDMA_SEND, I40IWQPSQ_OPCODE) |
3404 LS_64(qp->qp_uk.swqe_polarity, I40IWQPSQ_VALID) |
3405 LS_64(1, I40IWQPSQ_STREAMMODE) |
3406 LS_64(1, I40IWQPSQ_WAITFORRCVPDU);
3408 i40iw_insert_wqe_hdr(wqe, header);
3409 break;
3410 default:
3411 i40iw_debug(qp->dev, I40IW_DEBUG_QP, "%s: Invalid WQE zero opcode\n",
3412 __func__);
3413 break;
3415 return 0;
3419 * i40iw_sc_init_iw_hmc() - queries fpm values using cqp and populates hmc_info
3420 * @dev : ptr to i40iw_dev struct
3421 * @hmc_fn_id: hmc function id
3423 enum i40iw_status_code i40iw_sc_init_iw_hmc(struct i40iw_sc_dev *dev, u8 hmc_fn_id)
3425 struct i40iw_hmc_info *hmc_info;
3426 struct i40iw_dma_mem query_fpm_mem;
3427 struct i40iw_virt_mem virt_mem;
3428 struct i40iw_vfdev *vf_dev = NULL;
3429 u32 mem_size;
3430 enum i40iw_status_code ret_code = 0;
3431 bool poll_registers = true;
3432 u16 iw_vf_idx;
3433 u8 wait_type;
3435 if (hmc_fn_id >= I40IW_MAX_VF_FPM_ID ||
3436 (dev->hmc_fn_id != hmc_fn_id && hmc_fn_id < I40IW_FIRST_VF_FPM_ID))
3437 return I40IW_ERR_INVALID_HMCFN_ID;
3439 i40iw_debug(dev, I40IW_DEBUG_HMC, "hmc_fn_id %u, dev->hmc_fn_id %u\n", hmc_fn_id,
3440 dev->hmc_fn_id);
3441 if (hmc_fn_id == dev->hmc_fn_id) {
3442 hmc_info = dev->hmc_info;
3443 query_fpm_mem.pa = dev->fpm_query_buf_pa;
3444 query_fpm_mem.va = dev->fpm_query_buf;
3445 } else {
3446 vf_dev = i40iw_vfdev_from_fpm(dev, hmc_fn_id);
3447 if (!vf_dev)
3448 return I40IW_ERR_INVALID_VF_ID;
3450 hmc_info = &vf_dev->hmc_info;
3451 iw_vf_idx = vf_dev->iw_vf_idx;
3452 i40iw_debug(dev, I40IW_DEBUG_HMC, "vf_dev %p, hmc_info %p, hmc_obj %p\n", vf_dev,
3453 hmc_info, hmc_info->hmc_obj);
3454 if (!vf_dev->fpm_query_buf) {
3455 if (!dev->vf_fpm_query_buf[iw_vf_idx].va) {
3456 ret_code = i40iw_alloc_query_fpm_buf(dev,
3457 &dev->vf_fpm_query_buf[iw_vf_idx]);
3458 if (ret_code)
3459 return ret_code;
3461 vf_dev->fpm_query_buf = dev->vf_fpm_query_buf[iw_vf_idx].va;
3462 vf_dev->fpm_query_buf_pa = dev->vf_fpm_query_buf[iw_vf_idx].pa;
3464 query_fpm_mem.pa = vf_dev->fpm_query_buf_pa;
3465 query_fpm_mem.va = vf_dev->fpm_query_buf;
3467 * It is HARDWARE specific:
3468 * this call is done by PF for VF and
3469 * i40iw_sc_query_fpm_values needs ccq poll
3470 * because PF ccq is already created.
3472 poll_registers = false;
3475 hmc_info->hmc_fn_id = hmc_fn_id;
3477 if (hmc_fn_id != dev->hmc_fn_id) {
3478 ret_code =
3479 i40iw_cqp_query_fpm_values_cmd(dev, &query_fpm_mem, hmc_fn_id);
3480 } else {
3481 wait_type = poll_registers ? (u8)I40IW_CQP_WAIT_POLL_REGS :
3482 (u8)I40IW_CQP_WAIT_POLL_CQ;
3484 ret_code = i40iw_sc_query_fpm_values(
3485 dev->cqp,
3487 hmc_info->hmc_fn_id,
3488 &query_fpm_mem,
3489 true,
3490 wait_type);
3492 if (ret_code)
3493 return ret_code;
3495 /* parse the fpm_query_buf and fill hmc obj info */
3496 ret_code =
3497 i40iw_sc_parse_fpm_query_buf((u64 *)query_fpm_mem.va,
3498 hmc_info,
3499 &dev->hmc_fpm_misc);
3500 if (ret_code)
3501 return ret_code;
3502 i40iw_debug_buf(dev, I40IW_DEBUG_HMC, "QUERY FPM BUFFER",
3503 query_fpm_mem.va, I40IW_QUERY_FPM_BUF_SIZE);
3505 if (hmc_fn_id != dev->hmc_fn_id) {
3506 i40iw_cqp_commit_fpm_values_cmd(dev, &query_fpm_mem, hmc_fn_id);
3508 /* parse the fpm_commit_buf and fill hmc obj info */
3509 i40iw_sc_parse_fpm_commit_buf((u64 *)query_fpm_mem.va, hmc_info->hmc_obj, &hmc_info->sd_table.sd_cnt);
3510 mem_size = sizeof(struct i40iw_hmc_sd_entry) *
3511 (hmc_info->sd_table.sd_cnt + hmc_info->first_sd_index);
3512 ret_code = i40iw_allocate_virt_mem(dev->hw, &virt_mem, mem_size);
3513 if (ret_code)
3514 return ret_code;
3515 hmc_info->sd_table.sd_entry = virt_mem.va;
3518 return ret_code;
3522 * i40iw_sc_configure_iw_fpm() - commits hmc obj cnt values using cqp command and
3523 * populates fpm base address in hmc_info
3524 * @dev : ptr to i40iw_dev struct
3525 * @hmc_fn_id: hmc function id
3527 static enum i40iw_status_code i40iw_sc_configure_iw_fpm(struct i40iw_sc_dev *dev,
3528 u8 hmc_fn_id)
3530 struct i40iw_hmc_info *hmc_info;
3531 struct i40iw_hmc_obj_info *obj_info;
3532 u64 *buf;
3533 struct i40iw_dma_mem commit_fpm_mem;
3534 u32 i, j;
3535 enum i40iw_status_code ret_code = 0;
3536 bool poll_registers = true;
3537 u8 wait_type;
3539 if (hmc_fn_id >= I40IW_MAX_VF_FPM_ID ||
3540 (dev->hmc_fn_id != hmc_fn_id && hmc_fn_id < I40IW_FIRST_VF_FPM_ID))
3541 return I40IW_ERR_INVALID_HMCFN_ID;
3543 if (hmc_fn_id == dev->hmc_fn_id) {
3544 hmc_info = dev->hmc_info;
3545 } else {
3546 hmc_info = i40iw_vf_hmcinfo_from_fpm(dev, hmc_fn_id);
3547 poll_registers = false;
3549 if (!hmc_info)
3550 return I40IW_ERR_BAD_PTR;
3552 obj_info = hmc_info->hmc_obj;
3553 buf = dev->fpm_commit_buf;
3555 /* copy cnt values in commit buf */
3556 for (i = I40IW_HMC_IW_QP, j = 0; i <= I40IW_HMC_IW_PBLE;
3557 i++, j += 8)
3558 set_64bit_val(buf, j, (u64)obj_info[i].cnt);
3560 set_64bit_val(buf, 40, 0); /* APBVT rsvd */
3562 commit_fpm_mem.pa = dev->fpm_commit_buf_pa;
3563 commit_fpm_mem.va = dev->fpm_commit_buf;
3564 wait_type = poll_registers ? (u8)I40IW_CQP_WAIT_POLL_REGS :
3565 (u8)I40IW_CQP_WAIT_POLL_CQ;
3566 ret_code = i40iw_sc_commit_fpm_values(
3567 dev->cqp,
3569 hmc_info->hmc_fn_id,
3570 &commit_fpm_mem,
3571 true,
3572 wait_type);
3574 /* parse the fpm_commit_buf and fill hmc obj info */
3575 if (!ret_code)
3576 ret_code = i40iw_sc_parse_fpm_commit_buf(dev->fpm_commit_buf,
3577 hmc_info->hmc_obj,
3578 &hmc_info->sd_table.sd_cnt);
3580 i40iw_debug_buf(dev, I40IW_DEBUG_HMC, "COMMIT FPM BUFFER",
3581 commit_fpm_mem.va, I40IW_COMMIT_FPM_BUF_SIZE);
3583 return ret_code;
3587 * cqp_sds_wqe_fill - fill cqp wqe doe sd
3588 * @cqp: struct for cqp hw
3589 * @info; sd info for wqe
3590 * @scratch: u64 saved to be used during cqp completion
3592 static enum i40iw_status_code cqp_sds_wqe_fill(struct i40iw_sc_cqp *cqp,
3593 struct i40iw_update_sds_info *info,
3594 u64 scratch)
3596 u64 data;
3597 u64 header;
3598 u64 *wqe;
3599 int mem_entries, wqe_entries;
3600 struct i40iw_dma_mem *sdbuf = &cqp->sdbuf;
3601 u64 offset;
3602 u32 wqe_idx;
3604 wqe = i40iw_sc_cqp_get_next_send_wqe_idx(cqp, scratch, &wqe_idx);
3605 if (!wqe)
3606 return I40IW_ERR_RING_FULL;
3608 I40IW_CQP_INIT_WQE(wqe);
3609 wqe_entries = (info->cnt > 3) ? 3 : info->cnt;
3610 mem_entries = info->cnt - wqe_entries;
3612 header = LS_64(I40IW_CQP_OP_UPDATE_PE_SDS, I40IW_CQPSQ_OPCODE) |
3613 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID) |
3614 LS_64(mem_entries, I40IW_CQPSQ_UPESD_ENTRY_COUNT);
3616 if (mem_entries) {
3617 offset = wqe_idx * I40IW_UPDATE_SD_BUF_SIZE;
3618 memcpy((char *)sdbuf->va + offset, &info->entry[3],
3619 mem_entries << 4);
3620 data = (u64)sdbuf->pa + offset;
3621 } else {
3622 data = 0;
3624 data |= LS_64(info->hmc_fn_id, I40IW_CQPSQ_UPESD_HMCFNID);
3626 set_64bit_val(wqe, 16, data);
3628 switch (wqe_entries) {
3629 case 3:
3630 set_64bit_val(wqe, 48,
3631 (LS_64(info->entry[2].cmd, I40IW_CQPSQ_UPESD_SDCMD) |
3632 LS_64(1, I40IW_CQPSQ_UPESD_ENTRY_VALID)));
3634 set_64bit_val(wqe, 56, info->entry[2].data);
3635 /* fallthrough */
3636 case 2:
3637 set_64bit_val(wqe, 32,
3638 (LS_64(info->entry[1].cmd, I40IW_CQPSQ_UPESD_SDCMD) |
3639 LS_64(1, I40IW_CQPSQ_UPESD_ENTRY_VALID)));
3641 set_64bit_val(wqe, 40, info->entry[1].data);
3642 /* fallthrough */
3643 case 1:
3644 set_64bit_val(wqe, 0,
3645 LS_64(info->entry[0].cmd, I40IW_CQPSQ_UPESD_SDCMD));
3647 set_64bit_val(wqe, 8, info->entry[0].data);
3648 break;
3649 default:
3650 break;
3653 i40iw_insert_wqe_hdr(wqe, header);
3655 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "UPDATE_PE_SDS WQE",
3656 wqe, I40IW_CQP_WQE_SIZE * 8);
3657 return 0;
3661 * i40iw_update_pe_sds - cqp wqe for sd
3662 * @dev: ptr to i40iw_dev struct
3663 * @info: sd info for sd's
3664 * @scratch: u64 saved to be used during cqp completion
3666 static enum i40iw_status_code i40iw_update_pe_sds(struct i40iw_sc_dev *dev,
3667 struct i40iw_update_sds_info *info,
3668 u64 scratch)
3670 struct i40iw_sc_cqp *cqp = dev->cqp;
3671 enum i40iw_status_code ret_code;
3673 ret_code = cqp_sds_wqe_fill(cqp, info, scratch);
3674 if (!ret_code)
3675 i40iw_sc_cqp_post_sq(cqp);
3677 return ret_code;
3681 * i40iw_update_sds_noccq - update sd before ccq created
3682 * @dev: sc device struct
3683 * @info: sd info for sd's
3685 enum i40iw_status_code i40iw_update_sds_noccq(struct i40iw_sc_dev *dev,
3686 struct i40iw_update_sds_info *info)
3688 u32 error, val, tail;
3689 struct i40iw_sc_cqp *cqp = dev->cqp;
3690 enum i40iw_status_code ret_code;
3692 ret_code = cqp_sds_wqe_fill(cqp, info, 0);
3693 if (ret_code)
3694 return ret_code;
3695 i40iw_get_cqp_reg_info(cqp, &val, &tail, &error);
3696 if (error)
3697 return I40IW_ERR_CQP_COMPL_ERROR;
3699 i40iw_sc_cqp_post_sq(cqp);
3700 ret_code = i40iw_cqp_poll_registers(cqp, tail, I40IW_DONE_COUNT);
3702 return ret_code;
3706 * i40iw_sc_suspend_qp - suspend qp for param change
3707 * @cqp: struct for cqp hw
3708 * @qp: sc qp struct
3709 * @scratch: u64 saved to be used during cqp completion
3711 enum i40iw_status_code i40iw_sc_suspend_qp(struct i40iw_sc_cqp *cqp,
3712 struct i40iw_sc_qp *qp,
3713 u64 scratch)
3715 u64 header;
3716 u64 *wqe;
3718 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3719 if (!wqe)
3720 return I40IW_ERR_RING_FULL;
3721 header = LS_64(qp->qp_uk.qp_id, I40IW_CQPSQ_SUSPENDQP_QPID) |
3722 LS_64(I40IW_CQP_OP_SUSPEND_QP, I40IW_CQPSQ_OPCODE) |
3723 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3725 i40iw_insert_wqe_hdr(wqe, header);
3727 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "SUSPEND_QP WQE",
3728 wqe, I40IW_CQP_WQE_SIZE * 8);
3730 i40iw_sc_cqp_post_sq(cqp);
3731 return 0;
3735 * i40iw_sc_resume_qp - resume qp after suspend
3736 * @cqp: struct for cqp hw
3737 * @qp: sc qp struct
3738 * @scratch: u64 saved to be used during cqp completion
3740 enum i40iw_status_code i40iw_sc_resume_qp(struct i40iw_sc_cqp *cqp,
3741 struct i40iw_sc_qp *qp,
3742 u64 scratch)
3744 u64 header;
3745 u64 *wqe;
3747 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3748 if (!wqe)
3749 return I40IW_ERR_RING_FULL;
3750 set_64bit_val(wqe,
3752 LS_64(qp->qs_handle, I40IW_CQPSQ_RESUMEQP_QSHANDLE));
3754 header = LS_64(qp->qp_uk.qp_id, I40IW_CQPSQ_RESUMEQP_QPID) |
3755 LS_64(I40IW_CQP_OP_RESUME_QP, I40IW_CQPSQ_OPCODE) |
3756 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3758 i40iw_insert_wqe_hdr(wqe, header);
3760 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "RESUME_QP WQE",
3761 wqe, I40IW_CQP_WQE_SIZE * 8);
3763 i40iw_sc_cqp_post_sq(cqp);
3764 return 0;
3768 * i40iw_sc_static_hmc_pages_allocated - cqp wqe to allocate hmc pages
3769 * @cqp: struct for cqp hw
3770 * @scratch: u64 saved to be used during cqp completion
3771 * @hmc_fn_id: hmc function id
3772 * @post_sq: flag for cqp db to ring
3773 * @poll_registers: flag to poll register for cqp completion
3775 enum i40iw_status_code i40iw_sc_static_hmc_pages_allocated(
3776 struct i40iw_sc_cqp *cqp,
3777 u64 scratch,
3778 u8 hmc_fn_id,
3779 bool post_sq,
3780 bool poll_registers)
3782 u64 header;
3783 u64 *wqe;
3784 u32 tail, val, error;
3785 enum i40iw_status_code ret_code = 0;
3787 wqe = i40iw_sc_cqp_get_next_send_wqe(cqp, scratch);
3788 if (!wqe)
3789 return I40IW_ERR_RING_FULL;
3790 set_64bit_val(wqe,
3792 LS_64(hmc_fn_id, I40IW_SHMC_PAGE_ALLOCATED_HMC_FN_ID));
3794 header = LS_64(I40IW_CQP_OP_SHMC_PAGES_ALLOCATED, I40IW_CQPSQ_OPCODE) |
3795 LS_64(cqp->polarity, I40IW_CQPSQ_WQEVALID);
3797 i40iw_insert_wqe_hdr(wqe, header);
3799 i40iw_debug_buf(cqp->dev, I40IW_DEBUG_WQE, "SHMC_PAGES_ALLOCATED WQE",
3800 wqe, I40IW_CQP_WQE_SIZE * 8);
3801 i40iw_get_cqp_reg_info(cqp, &val, &tail, &error);
3802 if (error) {
3803 ret_code = I40IW_ERR_CQP_COMPL_ERROR;
3804 return ret_code;
3806 if (post_sq) {
3807 i40iw_sc_cqp_post_sq(cqp);
3808 if (poll_registers)
3809 /* check for cqp sq tail update */
3810 ret_code = i40iw_cqp_poll_registers(cqp, tail, 1000);
3811 else
3812 ret_code = i40iw_sc_poll_for_cqp_op_done(cqp,
3813 I40IW_CQP_OP_SHMC_PAGES_ALLOCATED,
3814 NULL);
3817 return ret_code;
3821 * i40iw_ring_full - check if cqp ring is full
3822 * @cqp: struct for cqp hw
3824 static bool i40iw_ring_full(struct i40iw_sc_cqp *cqp)
3826 return I40IW_RING_FULL_ERR(cqp->sq_ring);
3830 * i40iw_est_sd - returns approximate number of SDs for HMC
3831 * @dev: sc device struct
3832 * @hmc_info: hmc structure, size and count for HMC objects
3834 static u64 i40iw_est_sd(struct i40iw_sc_dev *dev, struct i40iw_hmc_info *hmc_info)
3836 int i;
3837 u64 size = 0;
3838 u64 sd;
3840 for (i = I40IW_HMC_IW_QP; i < I40IW_HMC_IW_PBLE; i++)
3841 size += hmc_info->hmc_obj[i].cnt * hmc_info->hmc_obj[i].size;
3843 if (dev->is_pf)
3844 size += hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt * hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].size;
3846 if (size & 0x1FFFFF)
3847 sd = (size >> 21) + 1; /* add 1 for remainder */
3848 else
3849 sd = size >> 21;
3851 if (!dev->is_pf) {
3852 /* 2MB alignment for VF PBLE HMC */
3853 size = hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt * hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].size;
3854 if (size & 0x1FFFFF)
3855 sd += (size >> 21) + 1; /* add 1 for remainder */
3856 else
3857 sd += size >> 21;
3860 return sd;
3864 * i40iw_config_fpm_values - configure HMC objects
3865 * @dev: sc device struct
3866 * @qp_count: desired qp count
3868 enum i40iw_status_code i40iw_config_fpm_values(struct i40iw_sc_dev *dev, u32 qp_count)
3870 struct i40iw_virt_mem virt_mem;
3871 u32 i, mem_size;
3872 u32 qpwantedoriginal, qpwanted, mrwanted, pblewanted;
3873 u64 sd_needed;
3874 u32 loop_count = 0;
3876 struct i40iw_hmc_info *hmc_info;
3877 struct i40iw_hmc_fpm_misc *hmc_fpm_misc;
3878 enum i40iw_status_code ret_code = 0;
3880 hmc_info = dev->hmc_info;
3881 hmc_fpm_misc = &dev->hmc_fpm_misc;
3883 ret_code = i40iw_sc_init_iw_hmc(dev, dev->hmc_fn_id);
3884 if (ret_code) {
3885 i40iw_debug(dev, I40IW_DEBUG_HMC,
3886 "i40iw_sc_init_iw_hmc returned error_code = %d\n",
3887 ret_code);
3888 return ret_code;
3891 for (i = I40IW_HMC_IW_QP; i < I40IW_HMC_IW_MAX; i++)
3892 hmc_info->hmc_obj[i].cnt = hmc_info->hmc_obj[i].max_cnt;
3893 sd_needed = i40iw_est_sd(dev, hmc_info);
3894 i40iw_debug(dev, I40IW_DEBUG_HMC,
3895 "%s: FW initial max sd_count[%08lld] first_sd_index[%04d]\n",
3896 __func__, sd_needed, hmc_info->first_sd_index);
3897 i40iw_debug(dev, I40IW_DEBUG_HMC,
3898 "%s: sd count %d where max sd is %d\n",
3899 __func__, hmc_info->sd_table.sd_cnt,
3900 hmc_fpm_misc->max_sds);
3902 qpwanted = min(qp_count, hmc_info->hmc_obj[I40IW_HMC_IW_QP].max_cnt);
3903 qpwantedoriginal = qpwanted;
3904 mrwanted = hmc_info->hmc_obj[I40IW_HMC_IW_MR].max_cnt;
3905 pblewanted = hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].max_cnt;
3907 i40iw_debug(dev, I40IW_DEBUG_HMC,
3908 "req_qp=%d max_sd=%d, max_qp = %d, max_cq=%d, max_mr=%d, max_pble=%d\n",
3909 qp_count, hmc_fpm_misc->max_sds,
3910 hmc_info->hmc_obj[I40IW_HMC_IW_QP].max_cnt,
3911 hmc_info->hmc_obj[I40IW_HMC_IW_CQ].max_cnt,
3912 hmc_info->hmc_obj[I40IW_HMC_IW_MR].max_cnt,
3913 hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].max_cnt);
3915 do {
3916 ++loop_count;
3917 hmc_info->hmc_obj[I40IW_HMC_IW_QP].cnt = qpwanted;
3918 hmc_info->hmc_obj[I40IW_HMC_IW_CQ].cnt =
3919 min(2 * qpwanted, hmc_info->hmc_obj[I40IW_HMC_IW_CQ].cnt);
3920 hmc_info->hmc_obj[I40IW_HMC_IW_SRQ].cnt = 0x00; /* Reserved */
3921 hmc_info->hmc_obj[I40IW_HMC_IW_HTE].cnt =
3922 qpwanted * hmc_fpm_misc->ht_multiplier;
3923 hmc_info->hmc_obj[I40IW_HMC_IW_ARP].cnt =
3924 hmc_info->hmc_obj[I40IW_HMC_IW_ARP].max_cnt;
3925 hmc_info->hmc_obj[I40IW_HMC_IW_APBVT_ENTRY].cnt = 1;
3926 hmc_info->hmc_obj[I40IW_HMC_IW_MR].cnt = mrwanted;
3928 hmc_info->hmc_obj[I40IW_HMC_IW_XF].cnt =
3929 roundup_pow_of_two(I40IW_MAX_WQ_ENTRIES * qpwanted);
3930 hmc_info->hmc_obj[I40IW_HMC_IW_Q1].cnt =
3931 roundup_pow_of_two(2 * I40IW_MAX_IRD_SIZE * qpwanted);
3932 hmc_info->hmc_obj[I40IW_HMC_IW_XFFL].cnt =
3933 hmc_info->hmc_obj[I40IW_HMC_IW_XF].cnt / hmc_fpm_misc->xf_block_size;
3934 hmc_info->hmc_obj[I40IW_HMC_IW_Q1FL].cnt =
3935 hmc_info->hmc_obj[I40IW_HMC_IW_Q1].cnt / hmc_fpm_misc->q1_block_size;
3936 hmc_info->hmc_obj[I40IW_HMC_IW_TIMER].cnt =
3937 ((qpwanted) / 512 + 1) * hmc_fpm_misc->timer_bucket;
3938 hmc_info->hmc_obj[I40IW_HMC_IW_FSIMC].cnt = 0x00;
3939 hmc_info->hmc_obj[I40IW_HMC_IW_FSIAV].cnt = 0x00;
3940 hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt = pblewanted;
3942 /* How much memory is needed for all the objects. */
3943 sd_needed = i40iw_est_sd(dev, hmc_info);
3944 if ((loop_count > 1000) ||
3945 ((!(loop_count % 10)) &&
3946 (qpwanted > qpwantedoriginal * 2 / 3))) {
3947 if (qpwanted > FPM_MULTIPLIER)
3948 qpwanted = roundup_pow_of_two(qpwanted -
3949 FPM_MULTIPLIER);
3950 qpwanted >>= 1;
3952 if (mrwanted > FPM_MULTIPLIER * 10)
3953 mrwanted -= FPM_MULTIPLIER * 10;
3954 if (pblewanted > FPM_MULTIPLIER * 1000)
3955 pblewanted -= FPM_MULTIPLIER * 1000;
3956 } while (sd_needed > hmc_fpm_misc->max_sds && loop_count < 2000);
3958 i40iw_debug(dev, I40IW_DEBUG_HMC,
3959 "loop_cnt=%d, sd_needed=%lld, qpcnt = %d, cqcnt=%d, mrcnt=%d, pblecnt=%d\n",
3960 loop_count, sd_needed,
3961 hmc_info->hmc_obj[I40IW_HMC_IW_QP].cnt,
3962 hmc_info->hmc_obj[I40IW_HMC_IW_CQ].cnt,
3963 hmc_info->hmc_obj[I40IW_HMC_IW_MR].cnt,
3964 hmc_info->hmc_obj[I40IW_HMC_IW_PBLE].cnt);
3966 ret_code = i40iw_sc_configure_iw_fpm(dev, dev->hmc_fn_id);
3967 if (ret_code) {
3968 i40iw_debug(dev, I40IW_DEBUG_HMC,
3969 "configure_iw_fpm returned error_code[x%08X]\n",
3970 i40iw_rd32(dev->hw, dev->is_pf ? I40E_PFPE_CQPERRCODES : I40E_VFPE_CQPERRCODES1));
3971 return ret_code;
3974 mem_size = sizeof(struct i40iw_hmc_sd_entry) *
3975 (hmc_info->sd_table.sd_cnt + hmc_info->first_sd_index + 1);
3976 ret_code = i40iw_allocate_virt_mem(dev->hw, &virt_mem, mem_size);
3977 if (ret_code) {
3978 i40iw_debug(dev, I40IW_DEBUG_HMC,
3979 "%s: failed to allocate memory for sd_entry buffer\n",
3980 __func__);
3981 return ret_code;
3983 hmc_info->sd_table.sd_entry = virt_mem.va;
3985 return ret_code;
3989 * i40iw_exec_cqp_cmd - execute cqp cmd when wqe are available
3990 * @dev: rdma device
3991 * @pcmdinfo: cqp command info
3993 static enum i40iw_status_code i40iw_exec_cqp_cmd(struct i40iw_sc_dev *dev,
3994 struct cqp_commands_info *pcmdinfo)
3996 enum i40iw_status_code status;
3997 struct i40iw_dma_mem values_mem;
3999 dev->cqp_cmd_stats[pcmdinfo->cqp_cmd]++;
4000 switch (pcmdinfo->cqp_cmd) {
4001 case OP_DELETE_LOCAL_MAC_IPADDR_ENTRY:
4002 status = i40iw_sc_del_local_mac_ipaddr_entry(
4003 pcmdinfo->in.u.del_local_mac_ipaddr_entry.cqp,
4004 pcmdinfo->in.u.del_local_mac_ipaddr_entry.scratch,
4005 pcmdinfo->in.u.del_local_mac_ipaddr_entry.entry_idx,
4006 pcmdinfo->in.u.del_local_mac_ipaddr_entry.ignore_ref_count,
4007 pcmdinfo->post_sq);
4008 break;
4009 case OP_CEQ_DESTROY:
4010 status = i40iw_sc_ceq_destroy(pcmdinfo->in.u.ceq_destroy.ceq,
4011 pcmdinfo->in.u.ceq_destroy.scratch,
4012 pcmdinfo->post_sq);
4013 break;
4014 case OP_AEQ_DESTROY:
4015 status = i40iw_sc_aeq_destroy(pcmdinfo->in.u.aeq_destroy.aeq,
4016 pcmdinfo->in.u.aeq_destroy.scratch,
4017 pcmdinfo->post_sq);
4019 break;
4020 case OP_DELETE_ARP_CACHE_ENTRY:
4021 status = i40iw_sc_del_arp_cache_entry(
4022 pcmdinfo->in.u.del_arp_cache_entry.cqp,
4023 pcmdinfo->in.u.del_arp_cache_entry.scratch,
4024 pcmdinfo->in.u.del_arp_cache_entry.arp_index,
4025 pcmdinfo->post_sq);
4026 break;
4027 case OP_MANAGE_APBVT_ENTRY:
4028 status = i40iw_sc_manage_apbvt_entry(
4029 pcmdinfo->in.u.manage_apbvt_entry.cqp,
4030 &pcmdinfo->in.u.manage_apbvt_entry.info,
4031 pcmdinfo->in.u.manage_apbvt_entry.scratch,
4032 pcmdinfo->post_sq);
4033 break;
4034 case OP_CEQ_CREATE:
4035 status = i40iw_sc_ceq_create(pcmdinfo->in.u.ceq_create.ceq,
4036 pcmdinfo->in.u.ceq_create.scratch,
4037 pcmdinfo->post_sq);
4038 break;
4039 case OP_AEQ_CREATE:
4040 status = i40iw_sc_aeq_create(pcmdinfo->in.u.aeq_create.aeq,
4041 pcmdinfo->in.u.aeq_create.scratch,
4042 pcmdinfo->post_sq);
4043 break;
4044 case OP_ALLOC_LOCAL_MAC_IPADDR_ENTRY:
4045 status = i40iw_sc_alloc_local_mac_ipaddr_entry(
4046 pcmdinfo->in.u.alloc_local_mac_ipaddr_entry.cqp,
4047 pcmdinfo->in.u.alloc_local_mac_ipaddr_entry.scratch,
4048 pcmdinfo->post_sq);
4049 break;
4050 case OP_ADD_LOCAL_MAC_IPADDR_ENTRY:
4051 status = i40iw_sc_add_local_mac_ipaddr_entry(
4052 pcmdinfo->in.u.add_local_mac_ipaddr_entry.cqp,
4053 &pcmdinfo->in.u.add_local_mac_ipaddr_entry.info,
4054 pcmdinfo->in.u.add_local_mac_ipaddr_entry.scratch,
4055 pcmdinfo->post_sq);
4056 break;
4057 case OP_MANAGE_QHASH_TABLE_ENTRY:
4058 status = i40iw_sc_manage_qhash_table_entry(
4059 pcmdinfo->in.u.manage_qhash_table_entry.cqp,
4060 &pcmdinfo->in.u.manage_qhash_table_entry.info,
4061 pcmdinfo->in.u.manage_qhash_table_entry.scratch,
4062 pcmdinfo->post_sq);
4064 break;
4065 case OP_QP_MODIFY:
4066 status = i40iw_sc_qp_modify(
4067 pcmdinfo->in.u.qp_modify.qp,
4068 &pcmdinfo->in.u.qp_modify.info,
4069 pcmdinfo->in.u.qp_modify.scratch,
4070 pcmdinfo->post_sq);
4072 break;
4073 case OP_QP_UPLOAD_CONTEXT:
4074 status = i40iw_sc_qp_upload_context(
4075 pcmdinfo->in.u.qp_upload_context.dev,
4076 &pcmdinfo->in.u.qp_upload_context.info,
4077 pcmdinfo->in.u.qp_upload_context.scratch,
4078 pcmdinfo->post_sq);
4080 break;
4081 case OP_CQ_CREATE:
4082 status = i40iw_sc_cq_create(
4083 pcmdinfo->in.u.cq_create.cq,
4084 pcmdinfo->in.u.cq_create.scratch,
4085 pcmdinfo->in.u.cq_create.check_overflow,
4086 pcmdinfo->post_sq);
4087 break;
4088 case OP_CQ_DESTROY:
4089 status = i40iw_sc_cq_destroy(
4090 pcmdinfo->in.u.cq_destroy.cq,
4091 pcmdinfo->in.u.cq_destroy.scratch,
4092 pcmdinfo->post_sq);
4094 break;
4095 case OP_QP_CREATE:
4096 status = i40iw_sc_qp_create(
4097 pcmdinfo->in.u.qp_create.qp,
4098 &pcmdinfo->in.u.qp_create.info,
4099 pcmdinfo->in.u.qp_create.scratch,
4100 pcmdinfo->post_sq);
4101 break;
4102 case OP_QP_DESTROY:
4103 status = i40iw_sc_qp_destroy(
4104 pcmdinfo->in.u.qp_destroy.qp,
4105 pcmdinfo->in.u.qp_destroy.scratch,
4106 pcmdinfo->in.u.qp_destroy.remove_hash_idx,
4107 pcmdinfo->in.u.qp_destroy.
4108 ignore_mw_bnd,
4109 pcmdinfo->post_sq);
4111 break;
4112 case OP_ALLOC_STAG:
4113 status = i40iw_sc_alloc_stag(
4114 pcmdinfo->in.u.alloc_stag.dev,
4115 &pcmdinfo->in.u.alloc_stag.info,
4116 pcmdinfo->in.u.alloc_stag.scratch,
4117 pcmdinfo->post_sq);
4118 break;
4119 case OP_MR_REG_NON_SHARED:
4120 status = i40iw_sc_mr_reg_non_shared(
4121 pcmdinfo->in.u.mr_reg_non_shared.dev,
4122 &pcmdinfo->in.u.mr_reg_non_shared.info,
4123 pcmdinfo->in.u.mr_reg_non_shared.scratch,
4124 pcmdinfo->post_sq);
4126 break;
4127 case OP_DEALLOC_STAG:
4128 status = i40iw_sc_dealloc_stag(
4129 pcmdinfo->in.u.dealloc_stag.dev,
4130 &pcmdinfo->in.u.dealloc_stag.info,
4131 pcmdinfo->in.u.dealloc_stag.scratch,
4132 pcmdinfo->post_sq);
4134 break;
4135 case OP_MW_ALLOC:
4136 status = i40iw_sc_mw_alloc(
4137 pcmdinfo->in.u.mw_alloc.dev,
4138 pcmdinfo->in.u.mw_alloc.scratch,
4139 pcmdinfo->in.u.mw_alloc.mw_stag_index,
4140 pcmdinfo->in.u.mw_alloc.pd_id,
4141 pcmdinfo->post_sq);
4143 break;
4144 case OP_QP_FLUSH_WQES:
4145 status = i40iw_sc_qp_flush_wqes(
4146 pcmdinfo->in.u.qp_flush_wqes.qp,
4147 &pcmdinfo->in.u.qp_flush_wqes.info,
4148 pcmdinfo->in.u.qp_flush_wqes.
4149 scratch, pcmdinfo->post_sq);
4150 break;
4151 case OP_ADD_ARP_CACHE_ENTRY:
4152 status = i40iw_sc_add_arp_cache_entry(
4153 pcmdinfo->in.u.add_arp_cache_entry.cqp,
4154 &pcmdinfo->in.u.add_arp_cache_entry.info,
4155 pcmdinfo->in.u.add_arp_cache_entry.scratch,
4156 pcmdinfo->post_sq);
4157 break;
4158 case OP_MANAGE_PUSH_PAGE:
4159 status = i40iw_sc_manage_push_page(
4160 pcmdinfo->in.u.manage_push_page.cqp,
4161 &pcmdinfo->in.u.manage_push_page.info,
4162 pcmdinfo->in.u.manage_push_page.scratch,
4163 pcmdinfo->post_sq);
4164 break;
4165 case OP_UPDATE_PE_SDS:
4166 /* case I40IW_CQP_OP_UPDATE_PE_SDS */
4167 status = i40iw_update_pe_sds(
4168 pcmdinfo->in.u.update_pe_sds.dev,
4169 &pcmdinfo->in.u.update_pe_sds.info,
4170 pcmdinfo->in.u.update_pe_sds.
4171 scratch);
4173 break;
4174 case OP_MANAGE_HMC_PM_FUNC_TABLE:
4175 status = i40iw_sc_manage_hmc_pm_func_table(
4176 pcmdinfo->in.u.manage_hmc_pm.dev->cqp,
4177 pcmdinfo->in.u.manage_hmc_pm.scratch,
4178 (u8)pcmdinfo->in.u.manage_hmc_pm.info.vf_id,
4179 pcmdinfo->in.u.manage_hmc_pm.info.free_fcn,
4180 true);
4181 break;
4182 case OP_SUSPEND:
4183 status = i40iw_sc_suspend_qp(
4184 pcmdinfo->in.u.suspend_resume.cqp,
4185 pcmdinfo->in.u.suspend_resume.qp,
4186 pcmdinfo->in.u.suspend_resume.scratch);
4187 break;
4188 case OP_RESUME:
4189 status = i40iw_sc_resume_qp(
4190 pcmdinfo->in.u.suspend_resume.cqp,
4191 pcmdinfo->in.u.suspend_resume.qp,
4192 pcmdinfo->in.u.suspend_resume.scratch);
4193 break;
4194 case OP_MANAGE_VF_PBLE_BP:
4195 status = i40iw_manage_vf_pble_bp(
4196 pcmdinfo->in.u.manage_vf_pble_bp.cqp,
4197 &pcmdinfo->in.u.manage_vf_pble_bp.info,
4198 pcmdinfo->in.u.manage_vf_pble_bp.scratch, true);
4199 break;
4200 case OP_QUERY_FPM_VALUES:
4201 values_mem.pa = pcmdinfo->in.u.query_fpm_values.fpm_values_pa;
4202 values_mem.va = pcmdinfo->in.u.query_fpm_values.fpm_values_va;
4203 status = i40iw_sc_query_fpm_values(
4204 pcmdinfo->in.u.query_fpm_values.cqp,
4205 pcmdinfo->in.u.query_fpm_values.scratch,
4206 pcmdinfo->in.u.query_fpm_values.hmc_fn_id,
4207 &values_mem, true, I40IW_CQP_WAIT_EVENT);
4208 break;
4209 case OP_COMMIT_FPM_VALUES:
4210 values_mem.pa = pcmdinfo->in.u.commit_fpm_values.fpm_values_pa;
4211 values_mem.va = pcmdinfo->in.u.commit_fpm_values.fpm_values_va;
4212 status = i40iw_sc_commit_fpm_values(
4213 pcmdinfo->in.u.commit_fpm_values.cqp,
4214 pcmdinfo->in.u.commit_fpm_values.scratch,
4215 pcmdinfo->in.u.commit_fpm_values.hmc_fn_id,
4216 &values_mem,
4217 true,
4218 I40IW_CQP_WAIT_EVENT);
4219 break;
4220 default:
4221 status = I40IW_NOT_SUPPORTED;
4222 break;
4225 return status;
4229 * i40iw_process_cqp_cmd - process all cqp commands
4230 * @dev: sc device struct
4231 * @pcmdinfo: cqp command info
4233 enum i40iw_status_code i40iw_process_cqp_cmd(struct i40iw_sc_dev *dev,
4234 struct cqp_commands_info *pcmdinfo)
4236 enum i40iw_status_code status = 0;
4237 unsigned long flags;
4239 spin_lock_irqsave(&dev->cqp_lock, flags);
4240 if (list_empty(&dev->cqp_cmd_head) && !i40iw_ring_full(dev->cqp))
4241 status = i40iw_exec_cqp_cmd(dev, pcmdinfo);
4242 else
4243 list_add_tail(&pcmdinfo->cqp_cmd_entry, &dev->cqp_cmd_head);
4244 spin_unlock_irqrestore(&dev->cqp_lock, flags);
4245 return status;
4249 * i40iw_process_bh - called from tasklet for cqp list
4250 * @dev: sc device struct
4252 enum i40iw_status_code i40iw_process_bh(struct i40iw_sc_dev *dev)
4254 enum i40iw_status_code status = 0;
4255 struct cqp_commands_info *pcmdinfo;
4256 unsigned long flags;
4258 spin_lock_irqsave(&dev->cqp_lock, flags);
4259 while (!list_empty(&dev->cqp_cmd_head) && !i40iw_ring_full(dev->cqp)) {
4260 pcmdinfo = (struct cqp_commands_info *)i40iw_remove_head(&dev->cqp_cmd_head);
4262 status = i40iw_exec_cqp_cmd(dev, pcmdinfo);
4263 if (status)
4264 break;
4266 spin_unlock_irqrestore(&dev->cqp_lock, flags);
4267 return status;
4271 * i40iw_iwarp_opcode - determine if incoming is rdma layer
4272 * @info: aeq info for the packet
4273 * @pkt: packet for error
4275 static u32 i40iw_iwarp_opcode(struct i40iw_aeqe_info *info, u8 *pkt)
4277 __be16 *mpa;
4278 u32 opcode = 0xffffffff;
4280 if (info->q2_data_written) {
4281 mpa = (__be16 *)pkt;
4282 opcode = ntohs(mpa[1]) & 0xf;
4284 return opcode;
4288 * i40iw_locate_mpa - return pointer to mpa in the pkt
4289 * @pkt: packet with data
4291 static u8 *i40iw_locate_mpa(u8 *pkt)
4293 /* skip over ethernet header */
4294 pkt += I40IW_MAC_HLEN;
4296 /* Skip over IP and TCP headers */
4297 pkt += 4 * (pkt[0] & 0x0f);
4298 pkt += 4 * ((pkt[12] >> 4) & 0x0f);
4299 return pkt;
4303 * i40iw_setup_termhdr - termhdr for terminate pkt
4304 * @qp: sc qp ptr for pkt
4305 * @hdr: term hdr
4306 * @opcode: flush opcode for termhdr
4307 * @layer_etype: error layer + error type
4308 * @err: error cod ein the header
4310 static void i40iw_setup_termhdr(struct i40iw_sc_qp *qp,
4311 struct i40iw_terminate_hdr *hdr,
4312 enum i40iw_flush_opcode opcode,
4313 u8 layer_etype,
4314 u8 err)
4316 qp->flush_code = opcode;
4317 hdr->layer_etype = layer_etype;
4318 hdr->error_code = err;
4322 * i40iw_bld_terminate_hdr - build terminate message header
4323 * @qp: qp associated with received terminate AE
4324 * @info: the struct contiaing AE information
4326 static int i40iw_bld_terminate_hdr(struct i40iw_sc_qp *qp,
4327 struct i40iw_aeqe_info *info)
4329 u8 *pkt = qp->q2_buf + Q2_BAD_FRAME_OFFSET;
4330 u16 ddp_seg_len;
4331 int copy_len = 0;
4332 u8 is_tagged = 0;
4333 u32 opcode;
4334 struct i40iw_terminate_hdr *termhdr;
4336 termhdr = (struct i40iw_terminate_hdr *)qp->q2_buf;
4337 memset(termhdr, 0, Q2_BAD_FRAME_OFFSET);
4339 if (info->q2_data_written) {
4340 /* Use data from offending packet to fill in ddp & rdma hdrs */
4341 pkt = i40iw_locate_mpa(pkt);
4342 ddp_seg_len = ntohs(*(__be16 *)pkt);
4343 if (ddp_seg_len) {
4344 copy_len = 2;
4345 termhdr->hdrct = DDP_LEN_FLAG;
4346 if (pkt[2] & 0x80) {
4347 is_tagged = 1;
4348 if (ddp_seg_len >= TERM_DDP_LEN_TAGGED) {
4349 copy_len += TERM_DDP_LEN_TAGGED;
4350 termhdr->hdrct |= DDP_HDR_FLAG;
4352 } else {
4353 if (ddp_seg_len >= TERM_DDP_LEN_UNTAGGED) {
4354 copy_len += TERM_DDP_LEN_UNTAGGED;
4355 termhdr->hdrct |= DDP_HDR_FLAG;
4358 if (ddp_seg_len >= (TERM_DDP_LEN_UNTAGGED + TERM_RDMA_LEN)) {
4359 if ((pkt[3] & RDMA_OPCODE_MASK) == RDMA_READ_REQ_OPCODE) {
4360 copy_len += TERM_RDMA_LEN;
4361 termhdr->hdrct |= RDMA_HDR_FLAG;
4368 opcode = i40iw_iwarp_opcode(info, pkt);
4370 switch (info->ae_id) {
4371 case I40IW_AE_AMP_UNALLOCATED_STAG:
4372 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4373 if (opcode == I40IW_OP_TYPE_RDMA_WRITE)
4374 i40iw_setup_termhdr(qp, termhdr, FLUSH_PROT_ERR,
4375 (LAYER_DDP << 4) | DDP_TAGGED_BUFFER, DDP_TAGGED_INV_STAG);
4376 else
4377 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4378 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_INV_STAG);
4379 break;
4380 case I40IW_AE_AMP_BOUNDS_VIOLATION:
4381 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4382 if (info->q2_data_written)
4383 i40iw_setup_termhdr(qp, termhdr, FLUSH_PROT_ERR,
4384 (LAYER_DDP << 4) | DDP_TAGGED_BUFFER, DDP_TAGGED_BOUNDS);
4385 else
4386 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4387 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_INV_BOUNDS);
4388 break;
4389 case I40IW_AE_AMP_BAD_PD:
4390 switch (opcode) {
4391 case I40IW_OP_TYPE_RDMA_WRITE:
4392 i40iw_setup_termhdr(qp, termhdr, FLUSH_PROT_ERR,
4393 (LAYER_DDP << 4) | DDP_TAGGED_BUFFER, DDP_TAGGED_UNASSOC_STAG);
4394 break;
4395 case I40IW_OP_TYPE_SEND_INV:
4396 case I40IW_OP_TYPE_SEND_SOL_INV:
4397 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4398 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_CANT_INV_STAG);
4399 break;
4400 default:
4401 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4402 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_UNASSOC_STAG);
4404 break;
4405 case I40IW_AE_AMP_INVALID_STAG:
4406 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4407 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4408 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_INV_STAG);
4409 break;
4410 case I40IW_AE_AMP_BAD_QP:
4411 i40iw_setup_termhdr(qp, termhdr, FLUSH_LOC_QP_OP_ERR,
4412 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_QN);
4413 break;
4414 case I40IW_AE_AMP_BAD_STAG_KEY:
4415 case I40IW_AE_AMP_BAD_STAG_INDEX:
4416 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4417 switch (opcode) {
4418 case I40IW_OP_TYPE_SEND_INV:
4419 case I40IW_OP_TYPE_SEND_SOL_INV:
4420 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_OP_ERR,
4421 (LAYER_RDMA << 4) | RDMAP_REMOTE_OP, RDMAP_CANT_INV_STAG);
4422 break;
4423 default:
4424 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4425 (LAYER_RDMA << 4) | RDMAP_REMOTE_OP, RDMAP_INV_STAG);
4427 break;
4428 case I40IW_AE_AMP_RIGHTS_VIOLATION:
4429 case I40IW_AE_AMP_INVALIDATE_NO_REMOTE_ACCESS_RIGHTS:
4430 case I40IW_AE_PRIV_OPERATION_DENIED:
4431 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4432 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4433 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_ACCESS);
4434 break;
4435 case I40IW_AE_AMP_TO_WRAP:
4436 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4437 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_ACCESS_ERR,
4438 (LAYER_RDMA << 4) | RDMAP_REMOTE_PROT, RDMAP_TO_WRAP);
4439 break;
4440 case I40IW_AE_LLP_RECEIVED_MPA_CRC_ERROR:
4441 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4442 (LAYER_MPA << 4) | DDP_LLP, MPA_CRC);
4443 break;
4444 case I40IW_AE_LLP_SEGMENT_TOO_LARGE:
4445 case I40IW_AE_LLP_SEGMENT_TOO_SMALL:
4446 i40iw_setup_termhdr(qp, termhdr, FLUSH_LOC_LEN_ERR,
4447 (LAYER_DDP << 4) | DDP_CATASTROPHIC, DDP_CATASTROPHIC_LOCAL);
4448 break;
4449 case I40IW_AE_LCE_QP_CATASTROPHIC:
4450 case I40IW_AE_DDP_NO_L_BIT:
4451 i40iw_setup_termhdr(qp, termhdr, FLUSH_FATAL_ERR,
4452 (LAYER_DDP << 4) | DDP_CATASTROPHIC, DDP_CATASTROPHIC_LOCAL);
4453 break;
4454 case I40IW_AE_DDP_INVALID_MSN_GAP_IN_MSN:
4455 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4456 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_MSN_RANGE);
4457 break;
4458 case I40IW_AE_DDP_UBE_DDP_MESSAGE_TOO_LONG_FOR_AVAILABLE_BUFFER:
4459 qp->eventtype = TERM_EVENT_QP_ACCESS_ERR;
4460 i40iw_setup_termhdr(qp, termhdr, FLUSH_LOC_LEN_ERR,
4461 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_TOO_LONG);
4462 break;
4463 case I40IW_AE_DDP_UBE_INVALID_DDP_VERSION:
4464 if (is_tagged)
4465 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4466 (LAYER_DDP << 4) | DDP_TAGGED_BUFFER, DDP_TAGGED_INV_DDP_VER);
4467 else
4468 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4469 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_DDP_VER);
4470 break;
4471 case I40IW_AE_DDP_UBE_INVALID_MO:
4472 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4473 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_MO);
4474 break;
4475 case I40IW_AE_DDP_UBE_INVALID_MSN_NO_BUFFER_AVAILABLE:
4476 i40iw_setup_termhdr(qp, termhdr, FLUSH_REM_OP_ERR,
4477 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_MSN_NO_BUF);
4478 break;
4479 case I40IW_AE_DDP_UBE_INVALID_QN:
4480 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4481 (LAYER_DDP << 4) | DDP_UNTAGGED_BUFFER, DDP_UNTAGGED_INV_QN);
4482 break;
4483 case I40IW_AE_RDMAP_ROE_INVALID_RDMAP_VERSION:
4484 i40iw_setup_termhdr(qp, termhdr, FLUSH_GENERAL_ERR,
4485 (LAYER_RDMA << 4) | RDMAP_REMOTE_OP, RDMAP_INV_RDMAP_VER);
4486 break;
4487 case I40IW_AE_RDMAP_ROE_UNEXPECTED_OPCODE:
4488 i40iw_setup_termhdr(qp, termhdr, FLUSH_LOC_QP_OP_ERR,
4489 (LAYER_RDMA << 4) | RDMAP_REMOTE_OP, RDMAP_UNEXPECTED_OP);
4490 break;
4491 default:
4492 i40iw_setup_termhdr(qp, termhdr, FLUSH_FATAL_ERR,
4493 (LAYER_RDMA << 4) | RDMAP_REMOTE_OP, RDMAP_UNSPECIFIED);
4494 break;
4497 if (copy_len)
4498 memcpy(termhdr + 1, pkt, copy_len);
4500 return sizeof(struct i40iw_terminate_hdr) + copy_len;
4504 * i40iw_terminate_send_fin() - Send fin for terminate message
4505 * @qp: qp associated with received terminate AE
4507 void i40iw_terminate_send_fin(struct i40iw_sc_qp *qp)
4509 /* Send the fin only */
4510 i40iw_term_modify_qp(qp,
4511 I40IW_QP_STATE_TERMINATE,
4512 I40IWQP_TERM_SEND_FIN_ONLY,
4517 * i40iw_terminate_connection() - Bad AE and send terminate to remote QP
4518 * @qp: qp associated with received terminate AE
4519 * @info: the struct contiaing AE information
4521 void i40iw_terminate_connection(struct i40iw_sc_qp *qp, struct i40iw_aeqe_info *info)
4523 u8 termlen = 0;
4525 if (qp->term_flags & I40IW_TERM_SENT)
4526 return; /* Sanity check */
4528 /* Eventtype can change from bld_terminate_hdr */
4529 qp->eventtype = TERM_EVENT_QP_FATAL;
4530 termlen = i40iw_bld_terminate_hdr(qp, info);
4531 i40iw_terminate_start_timer(qp);
4532 qp->term_flags |= I40IW_TERM_SENT;
4533 i40iw_term_modify_qp(qp, I40IW_QP_STATE_TERMINATE,
4534 I40IWQP_TERM_SEND_TERM_ONLY, termlen);
4538 * i40iw_terminate_received - handle terminate received AE
4539 * @qp: qp associated with received terminate AE
4540 * @info: the struct contiaing AE information
4542 void i40iw_terminate_received(struct i40iw_sc_qp *qp, struct i40iw_aeqe_info *info)
4544 u8 *pkt = qp->q2_buf + Q2_BAD_FRAME_OFFSET;
4545 __be32 *mpa;
4546 u8 ddp_ctl;
4547 u8 rdma_ctl;
4548 u16 aeq_id = 0;
4549 struct i40iw_terminate_hdr *termhdr;
4551 mpa = (__be32 *)i40iw_locate_mpa(pkt);
4552 if (info->q2_data_written) {
4553 /* did not validate the frame - do it now */
4554 ddp_ctl = (ntohl(mpa[0]) >> 8) & 0xff;
4555 rdma_ctl = ntohl(mpa[0]) & 0xff;
4556 if ((ddp_ctl & 0xc0) != 0x40)
4557 aeq_id = I40IW_AE_LCE_QP_CATASTROPHIC;
4558 else if ((ddp_ctl & 0x03) != 1)
4559 aeq_id = I40IW_AE_DDP_UBE_INVALID_DDP_VERSION;
4560 else if (ntohl(mpa[2]) != 2)
4561 aeq_id = I40IW_AE_DDP_UBE_INVALID_QN;
4562 else if (ntohl(mpa[3]) != 1)
4563 aeq_id = I40IW_AE_DDP_INVALID_MSN_GAP_IN_MSN;
4564 else if (ntohl(mpa[4]) != 0)
4565 aeq_id = I40IW_AE_DDP_UBE_INVALID_MO;
4566 else if ((rdma_ctl & 0xc0) != 0x40)
4567 aeq_id = I40IW_AE_RDMAP_ROE_INVALID_RDMAP_VERSION;
4569 info->ae_id = aeq_id;
4570 if (info->ae_id) {
4571 /* Bad terminate recvd - send back a terminate */
4572 i40iw_terminate_connection(qp, info);
4573 return;
4577 qp->term_flags |= I40IW_TERM_RCVD;
4578 qp->eventtype = TERM_EVENT_QP_FATAL;
4579 termhdr = (struct i40iw_terminate_hdr *)&mpa[5];
4580 if (termhdr->layer_etype == RDMAP_REMOTE_PROT ||
4581 termhdr->layer_etype == RDMAP_REMOTE_OP) {
4582 i40iw_terminate_done(qp, 0);
4583 } else {
4584 i40iw_terminate_start_timer(qp);
4585 i40iw_terminate_send_fin(qp);
4590 * i40iw_sc_vsi_init - Initialize virtual device
4591 * @vsi: pointer to the vsi structure
4592 * @info: parameters to initialize vsi
4594 void i40iw_sc_vsi_init(struct i40iw_sc_vsi *vsi, struct i40iw_vsi_init_info *info)
4596 int i;
4598 vsi->dev = info->dev;
4599 vsi->back_vsi = info->back_vsi;
4600 vsi->mtu = info->params->mtu;
4601 vsi->exception_lan_queue = info->exception_lan_queue;
4602 i40iw_fill_qos_list(info->params->qs_handle_list);
4604 for (i = 0; i < I40IW_MAX_USER_PRIORITY; i++) {
4605 vsi->qos[i].qs_handle = info->params->qs_handle_list[i];
4606 i40iw_debug(vsi->dev, I40IW_DEBUG_DCB, "qset[%d]: %d\n", i,
4607 vsi->qos[i].qs_handle);
4608 spin_lock_init(&vsi->qos[i].lock);
4609 INIT_LIST_HEAD(&vsi->qos[i].qplist);
4614 * i40iw_hw_stats_init - Initiliaze HW stats table
4615 * @stats: pestat struct
4616 * @fcn_idx: PCI fn id
4617 * @is_pf: Is it a PF?
4619 * Populate the HW stats table with register offset addr for each
4620 * stats. And start the perioidic stats timer.
4622 void i40iw_hw_stats_init(struct i40iw_vsi_pestat *stats, u8 fcn_idx, bool is_pf)
4624 u32 stats_reg_offset;
4625 u32 stats_index;
4626 struct i40iw_dev_hw_stats_offsets *stats_table =
4627 &stats->hw_stats_offsets;
4628 struct i40iw_dev_hw_stats *last_rd_stats = &stats->last_read_hw_stats;
4630 if (is_pf) {
4631 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP4RXDISCARD] =
4632 I40E_GLPES_PFIP4RXDISCARD(fcn_idx);
4633 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP4RXTRUNC] =
4634 I40E_GLPES_PFIP4RXTRUNC(fcn_idx);
4635 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP4TXNOROUTE] =
4636 I40E_GLPES_PFIP4TXNOROUTE(fcn_idx);
4637 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP6RXDISCARD] =
4638 I40E_GLPES_PFIP6RXDISCARD(fcn_idx);
4639 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP6RXTRUNC] =
4640 I40E_GLPES_PFIP6RXTRUNC(fcn_idx);
4641 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP6TXNOROUTE] =
4642 I40E_GLPES_PFIP6TXNOROUTE(fcn_idx);
4643 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_TCPRTXSEG] =
4644 I40E_GLPES_PFTCPRTXSEG(fcn_idx);
4645 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_TCPRXOPTERR] =
4646 I40E_GLPES_PFTCPRXOPTERR(fcn_idx);
4647 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_TCPRXPROTOERR] =
4648 I40E_GLPES_PFTCPRXPROTOERR(fcn_idx);
4650 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXOCTS] =
4651 I40E_GLPES_PFIP4RXOCTSLO(fcn_idx);
4652 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXPKTS] =
4653 I40E_GLPES_PFIP4RXPKTSLO(fcn_idx);
4654 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXFRAGS] =
4655 I40E_GLPES_PFIP4RXFRAGSLO(fcn_idx);
4656 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXMCPKTS] =
4657 I40E_GLPES_PFIP4RXMCPKTSLO(fcn_idx);
4658 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXOCTS] =
4659 I40E_GLPES_PFIP4TXOCTSLO(fcn_idx);
4660 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXPKTS] =
4661 I40E_GLPES_PFIP4TXPKTSLO(fcn_idx);
4662 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXFRAGS] =
4663 I40E_GLPES_PFIP4TXFRAGSLO(fcn_idx);
4664 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXMCPKTS] =
4665 I40E_GLPES_PFIP4TXMCPKTSLO(fcn_idx);
4666 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXOCTS] =
4667 I40E_GLPES_PFIP6RXOCTSLO(fcn_idx);
4668 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXPKTS] =
4669 I40E_GLPES_PFIP6RXPKTSLO(fcn_idx);
4670 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXFRAGS] =
4671 I40E_GLPES_PFIP6RXFRAGSLO(fcn_idx);
4672 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXMCPKTS] =
4673 I40E_GLPES_PFIP6RXMCPKTSLO(fcn_idx);
4674 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXOCTS] =
4675 I40E_GLPES_PFIP6TXOCTSLO(fcn_idx);
4676 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXPKTS] =
4677 I40E_GLPES_PFIP6TXPKTSLO(fcn_idx);
4678 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXPKTS] =
4679 I40E_GLPES_PFIP6TXPKTSLO(fcn_idx);
4680 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXFRAGS] =
4681 I40E_GLPES_PFIP6TXFRAGSLO(fcn_idx);
4682 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_TCPRXSEGS] =
4683 I40E_GLPES_PFTCPRXSEGSLO(fcn_idx);
4684 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_TCPTXSEG] =
4685 I40E_GLPES_PFTCPTXSEGLO(fcn_idx);
4686 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMARXRDS] =
4687 I40E_GLPES_PFRDMARXRDSLO(fcn_idx);
4688 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMARXSNDS] =
4689 I40E_GLPES_PFRDMARXSNDSLO(fcn_idx);
4690 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMARXWRS] =
4691 I40E_GLPES_PFRDMARXWRSLO(fcn_idx);
4692 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMATXRDS] =
4693 I40E_GLPES_PFRDMATXRDSLO(fcn_idx);
4694 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMATXSNDS] =
4695 I40E_GLPES_PFRDMATXSNDSLO(fcn_idx);
4696 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMATXWRS] =
4697 I40E_GLPES_PFRDMATXWRSLO(fcn_idx);
4698 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMAVBND] =
4699 I40E_GLPES_PFRDMAVBNDLO(fcn_idx);
4700 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMAVINV] =
4701 I40E_GLPES_PFRDMAVINVLO(fcn_idx);
4702 } else {
4703 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP4RXDISCARD] =
4704 I40E_GLPES_VFIP4RXDISCARD(fcn_idx);
4705 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP4RXTRUNC] =
4706 I40E_GLPES_VFIP4RXTRUNC(fcn_idx);
4707 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP4TXNOROUTE] =
4708 I40E_GLPES_VFIP4TXNOROUTE(fcn_idx);
4709 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP6RXDISCARD] =
4710 I40E_GLPES_VFIP6RXDISCARD(fcn_idx);
4711 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP6RXTRUNC] =
4712 I40E_GLPES_VFIP6RXTRUNC(fcn_idx);
4713 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_IP6TXNOROUTE] =
4714 I40E_GLPES_VFIP6TXNOROUTE(fcn_idx);
4715 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_TCPRTXSEG] =
4716 I40E_GLPES_VFTCPRTXSEG(fcn_idx);
4717 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_TCPRXOPTERR] =
4718 I40E_GLPES_VFTCPRXOPTERR(fcn_idx);
4719 stats_table->stats_offset_32[I40IW_HW_STAT_INDEX_TCPRXPROTOERR] =
4720 I40E_GLPES_VFTCPRXPROTOERR(fcn_idx);
4722 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXOCTS] =
4723 I40E_GLPES_VFIP4RXOCTSLO(fcn_idx);
4724 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXPKTS] =
4725 I40E_GLPES_VFIP4RXPKTSLO(fcn_idx);
4726 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXFRAGS] =
4727 I40E_GLPES_VFIP4RXFRAGSLO(fcn_idx);
4728 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4RXMCPKTS] =
4729 I40E_GLPES_VFIP4RXMCPKTSLO(fcn_idx);
4730 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXOCTS] =
4731 I40E_GLPES_VFIP4TXOCTSLO(fcn_idx);
4732 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXPKTS] =
4733 I40E_GLPES_VFIP4TXPKTSLO(fcn_idx);
4734 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXFRAGS] =
4735 I40E_GLPES_VFIP4TXFRAGSLO(fcn_idx);
4736 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP4TXMCPKTS] =
4737 I40E_GLPES_VFIP4TXMCPKTSLO(fcn_idx);
4738 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXOCTS] =
4739 I40E_GLPES_VFIP6RXOCTSLO(fcn_idx);
4740 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXPKTS] =
4741 I40E_GLPES_VFIP6RXPKTSLO(fcn_idx);
4742 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXFRAGS] =
4743 I40E_GLPES_VFIP6RXFRAGSLO(fcn_idx);
4744 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6RXMCPKTS] =
4745 I40E_GLPES_VFIP6RXMCPKTSLO(fcn_idx);
4746 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXOCTS] =
4747 I40E_GLPES_VFIP6TXOCTSLO(fcn_idx);
4748 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXPKTS] =
4749 I40E_GLPES_VFIP6TXPKTSLO(fcn_idx);
4750 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXPKTS] =
4751 I40E_GLPES_VFIP6TXPKTSLO(fcn_idx);
4752 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_IP6TXFRAGS] =
4753 I40E_GLPES_VFIP6TXFRAGSLO(fcn_idx);
4754 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_TCPRXSEGS] =
4755 I40E_GLPES_VFTCPRXSEGSLO(fcn_idx);
4756 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_TCPTXSEG] =
4757 I40E_GLPES_VFTCPTXSEGLO(fcn_idx);
4758 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMARXRDS] =
4759 I40E_GLPES_VFRDMARXRDSLO(fcn_idx);
4760 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMARXSNDS] =
4761 I40E_GLPES_VFRDMARXSNDSLO(fcn_idx);
4762 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMARXWRS] =
4763 I40E_GLPES_VFRDMARXWRSLO(fcn_idx);
4764 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMATXRDS] =
4765 I40E_GLPES_VFRDMATXRDSLO(fcn_idx);
4766 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMATXSNDS] =
4767 I40E_GLPES_VFRDMATXSNDSLO(fcn_idx);
4768 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMATXWRS] =
4769 I40E_GLPES_VFRDMATXWRSLO(fcn_idx);
4770 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMAVBND] =
4771 I40E_GLPES_VFRDMAVBNDLO(fcn_idx);
4772 stats_table->stats_offset_64[I40IW_HW_STAT_INDEX_RDMAVINV] =
4773 I40E_GLPES_VFRDMAVINVLO(fcn_idx);
4776 for (stats_index = 0; stats_index < I40IW_HW_STAT_INDEX_MAX_64;
4777 stats_index++) {
4778 stats_reg_offset = stats_table->stats_offset_64[stats_index];
4779 last_rd_stats->stats_value_64[stats_index] =
4780 readq(stats->hw->hw_addr + stats_reg_offset);
4783 for (stats_index = 0; stats_index < I40IW_HW_STAT_INDEX_MAX_32;
4784 stats_index++) {
4785 stats_reg_offset = stats_table->stats_offset_32[stats_index];
4786 last_rd_stats->stats_value_32[stats_index] =
4787 i40iw_rd32(stats->hw, stats_reg_offset);
4792 * i40iw_hw_stats_read_32 - Read 32-bit HW stats counters and accommodates for roll-overs.
4793 * @stat: pestat struct
4794 * @index: index in HW stats table which contains offset reg-addr
4795 * @value: hw stats value
4797 void i40iw_hw_stats_read_32(struct i40iw_vsi_pestat *stats,
4798 enum i40iw_hw_stats_index_32b index,
4799 u64 *value)
4801 struct i40iw_dev_hw_stats_offsets *stats_table =
4802 &stats->hw_stats_offsets;
4803 struct i40iw_dev_hw_stats *last_rd_stats = &stats->last_read_hw_stats;
4804 struct i40iw_dev_hw_stats *hw_stats = &stats->hw_stats;
4805 u64 new_stats_value = 0;
4806 u32 stats_reg_offset = stats_table->stats_offset_32[index];
4808 new_stats_value = i40iw_rd32(stats->hw, stats_reg_offset);
4809 /*roll-over case */
4810 if (new_stats_value < last_rd_stats->stats_value_32[index])
4811 hw_stats->stats_value_32[index] += new_stats_value;
4812 else
4813 hw_stats->stats_value_32[index] +=
4814 new_stats_value - last_rd_stats->stats_value_32[index];
4815 last_rd_stats->stats_value_32[index] = new_stats_value;
4816 *value = hw_stats->stats_value_32[index];
4820 * i40iw_hw_stats_read_64 - Read HW stats counters (greater than 32-bit) and accommodates for roll-overs.
4821 * @stats: pestat struct
4822 * @index: index in HW stats table which contains offset reg-addr
4823 * @value: hw stats value
4825 void i40iw_hw_stats_read_64(struct i40iw_vsi_pestat *stats,
4826 enum i40iw_hw_stats_index_64b index,
4827 u64 *value)
4829 struct i40iw_dev_hw_stats_offsets *stats_table =
4830 &stats->hw_stats_offsets;
4831 struct i40iw_dev_hw_stats *last_rd_stats = &stats->last_read_hw_stats;
4832 struct i40iw_dev_hw_stats *hw_stats = &stats->hw_stats;
4833 u64 new_stats_value = 0;
4834 u32 stats_reg_offset = stats_table->stats_offset_64[index];
4836 new_stats_value = readq(stats->hw->hw_addr + stats_reg_offset);
4837 /*roll-over case */
4838 if (new_stats_value < last_rd_stats->stats_value_64[index])
4839 hw_stats->stats_value_64[index] += new_stats_value;
4840 else
4841 hw_stats->stats_value_64[index] +=
4842 new_stats_value - last_rd_stats->stats_value_64[index];
4843 last_rd_stats->stats_value_64[index] = new_stats_value;
4844 *value = hw_stats->stats_value_64[index];
4848 * i40iw_hw_stats_read_all - read all HW stat counters
4849 * @stats: pestat struct
4850 * @stats_values: hw stats structure
4852 * Read all the HW stat counters and populates hw_stats structure
4853 * of passed-in vsi's pestat as well as copy created in stat_values.
4855 void i40iw_hw_stats_read_all(struct i40iw_vsi_pestat *stats,
4856 struct i40iw_dev_hw_stats *stats_values)
4858 u32 stats_index;
4859 unsigned long flags;
4861 spin_lock_irqsave(&stats->lock, flags);
4863 for (stats_index = 0; stats_index < I40IW_HW_STAT_INDEX_MAX_32;
4864 stats_index++)
4865 i40iw_hw_stats_read_32(stats, stats_index,
4866 &stats_values->stats_value_32[stats_index]);
4867 for (stats_index = 0; stats_index < I40IW_HW_STAT_INDEX_MAX_64;
4868 stats_index++)
4869 i40iw_hw_stats_read_64(stats, stats_index,
4870 &stats_values->stats_value_64[stats_index]);
4871 spin_unlock_irqrestore(&stats->lock, flags);
4875 * i40iw_hw_stats_refresh_all - Update all HW stats structs
4876 * @stats: pestat struct
4878 * Read all the HW stats counters to refresh values in hw_stats structure
4879 * of passed-in dev's pestat
4881 void i40iw_hw_stats_refresh_all(struct i40iw_vsi_pestat *stats)
4883 u64 stats_value;
4884 u32 stats_index;
4885 unsigned long flags;
4887 spin_lock_irqsave(&stats->lock, flags);
4889 for (stats_index = 0; stats_index < I40IW_HW_STAT_INDEX_MAX_32;
4890 stats_index++)
4891 i40iw_hw_stats_read_32(stats, stats_index, &stats_value);
4892 for (stats_index = 0; stats_index < I40IW_HW_STAT_INDEX_MAX_64;
4893 stats_index++)
4894 i40iw_hw_stats_read_64(stats, stats_index, &stats_value);
4895 spin_unlock_irqrestore(&stats->lock, flags);
4899 * i40iw_get_fcn_id - Return the function id
4900 * @dev: pointer to the device
4902 static u8 i40iw_get_fcn_id(struct i40iw_sc_dev *dev)
4904 u8 fcn_id = I40IW_INVALID_FCN_ID;
4905 u8 i;
4907 for (i = I40IW_FIRST_NON_PF_STAT; i < I40IW_MAX_STATS_COUNT; i++)
4908 if (!dev->fcn_id_array[i]) {
4909 fcn_id = i;
4910 dev->fcn_id_array[i] = true;
4911 break;
4913 return fcn_id;
4917 * i40iw_vsi_stats_init - Initialize the vsi statistics
4918 * @vsi: pointer to the vsi structure
4919 * @info: The info structure used for initialization
4921 enum i40iw_status_code i40iw_vsi_stats_init(struct i40iw_sc_vsi *vsi, struct i40iw_vsi_stats_info *info)
4923 u8 fcn_id = info->fcn_id;
4925 if (info->alloc_fcn_id)
4926 fcn_id = i40iw_get_fcn_id(vsi->dev);
4928 if (fcn_id == I40IW_INVALID_FCN_ID)
4929 return I40IW_ERR_NOT_READY;
4931 vsi->pestat = info->pestat;
4932 vsi->pestat->hw = vsi->dev->hw;
4933 vsi->pestat->vsi = vsi;
4935 if (info->stats_initialize) {
4936 i40iw_hw_stats_init(vsi->pestat, fcn_id, true);
4937 spin_lock_init(&vsi->pestat->lock);
4938 i40iw_hw_stats_start_timer(vsi);
4940 vsi->stats_fcn_id_alloc = info->alloc_fcn_id;
4941 vsi->fcn_id = fcn_id;
4942 return I40IW_SUCCESS;
4946 * i40iw_vsi_stats_free - Free the vsi stats
4947 * @vsi: pointer to the vsi structure
4949 void i40iw_vsi_stats_free(struct i40iw_sc_vsi *vsi)
4951 u8 fcn_id = vsi->fcn_id;
4953 if (vsi->stats_fcn_id_alloc && fcn_id < I40IW_MAX_STATS_COUNT)
4954 vsi->dev->fcn_id_array[fcn_id] = false;
4955 i40iw_hw_stats_stop_timer(vsi);
4958 static struct i40iw_cqp_ops iw_cqp_ops = {
4959 .cqp_init = i40iw_sc_cqp_init,
4960 .cqp_create = i40iw_sc_cqp_create,
4961 .cqp_post_sq = i40iw_sc_cqp_post_sq,
4962 .cqp_get_next_send_wqe = i40iw_sc_cqp_get_next_send_wqe,
4963 .cqp_destroy = i40iw_sc_cqp_destroy,
4964 .poll_for_cqp_op_done = i40iw_sc_poll_for_cqp_op_done
4967 static struct i40iw_ccq_ops iw_ccq_ops = {
4968 .ccq_init = i40iw_sc_ccq_init,
4969 .ccq_create = i40iw_sc_ccq_create,
4970 .ccq_destroy = i40iw_sc_ccq_destroy,
4971 .ccq_create_done = i40iw_sc_ccq_create_done,
4972 .ccq_get_cqe_info = i40iw_sc_ccq_get_cqe_info,
4973 .ccq_arm = i40iw_sc_ccq_arm
4976 static struct i40iw_ceq_ops iw_ceq_ops = {
4977 .ceq_init = i40iw_sc_ceq_init,
4978 .ceq_create = i40iw_sc_ceq_create,
4979 .cceq_create_done = i40iw_sc_cceq_create_done,
4980 .cceq_destroy_done = i40iw_sc_cceq_destroy_done,
4981 .cceq_create = i40iw_sc_cceq_create,
4982 .ceq_destroy = i40iw_sc_ceq_destroy,
4983 .process_ceq = i40iw_sc_process_ceq
4986 static struct i40iw_aeq_ops iw_aeq_ops = {
4987 .aeq_init = i40iw_sc_aeq_init,
4988 .aeq_create = i40iw_sc_aeq_create,
4989 .aeq_destroy = i40iw_sc_aeq_destroy,
4990 .get_next_aeqe = i40iw_sc_get_next_aeqe,
4991 .repost_aeq_entries = i40iw_sc_repost_aeq_entries,
4992 .aeq_create_done = i40iw_sc_aeq_create_done,
4993 .aeq_destroy_done = i40iw_sc_aeq_destroy_done
4996 /* iwarp pd ops */
4997 static struct i40iw_pd_ops iw_pd_ops = {
4998 .pd_init = i40iw_sc_pd_init,
5001 static struct i40iw_priv_qp_ops iw_priv_qp_ops = {
5002 .qp_init = i40iw_sc_qp_init,
5003 .qp_create = i40iw_sc_qp_create,
5004 .qp_modify = i40iw_sc_qp_modify,
5005 .qp_destroy = i40iw_sc_qp_destroy,
5006 .qp_flush_wqes = i40iw_sc_qp_flush_wqes,
5007 .qp_upload_context = i40iw_sc_qp_upload_context,
5008 .qp_setctx = i40iw_sc_qp_setctx,
5009 .qp_send_lsmm = i40iw_sc_send_lsmm,
5010 .qp_send_lsmm_nostag = i40iw_sc_send_lsmm_nostag,
5011 .qp_send_rtt = i40iw_sc_send_rtt,
5012 .qp_post_wqe0 = i40iw_sc_post_wqe0,
5013 .iw_mr_fast_register = i40iw_sc_mr_fast_register
5016 static struct i40iw_priv_cq_ops iw_priv_cq_ops = {
5017 .cq_init = i40iw_sc_cq_init,
5018 .cq_create = i40iw_sc_cq_create,
5019 .cq_destroy = i40iw_sc_cq_destroy,
5020 .cq_modify = i40iw_sc_cq_modify,
5023 static struct i40iw_mr_ops iw_mr_ops = {
5024 .alloc_stag = i40iw_sc_alloc_stag,
5025 .mr_reg_non_shared = i40iw_sc_mr_reg_non_shared,
5026 .mr_reg_shared = i40iw_sc_mr_reg_shared,
5027 .dealloc_stag = i40iw_sc_dealloc_stag,
5028 .query_stag = i40iw_sc_query_stag,
5029 .mw_alloc = i40iw_sc_mw_alloc
5032 static struct i40iw_cqp_misc_ops iw_cqp_misc_ops = {
5033 .manage_push_page = i40iw_sc_manage_push_page,
5034 .manage_hmc_pm_func_table = i40iw_sc_manage_hmc_pm_func_table,
5035 .set_hmc_resource_profile = i40iw_sc_set_hmc_resource_profile,
5036 .commit_fpm_values = i40iw_sc_commit_fpm_values,
5037 .query_fpm_values = i40iw_sc_query_fpm_values,
5038 .static_hmc_pages_allocated = i40iw_sc_static_hmc_pages_allocated,
5039 .add_arp_cache_entry = i40iw_sc_add_arp_cache_entry,
5040 .del_arp_cache_entry = i40iw_sc_del_arp_cache_entry,
5041 .query_arp_cache_entry = i40iw_sc_query_arp_cache_entry,
5042 .manage_apbvt_entry = i40iw_sc_manage_apbvt_entry,
5043 .manage_qhash_table_entry = i40iw_sc_manage_qhash_table_entry,
5044 .alloc_local_mac_ipaddr_table_entry = i40iw_sc_alloc_local_mac_ipaddr_entry,
5045 .add_local_mac_ipaddr_entry = i40iw_sc_add_local_mac_ipaddr_entry,
5046 .del_local_mac_ipaddr_entry = i40iw_sc_del_local_mac_ipaddr_entry,
5047 .cqp_nop = i40iw_sc_cqp_nop,
5048 .commit_fpm_values_done = i40iw_sc_commit_fpm_values_done,
5049 .query_fpm_values_done = i40iw_sc_query_fpm_values_done,
5050 .manage_hmc_pm_func_table_done = i40iw_sc_manage_hmc_pm_func_table_done,
5051 .update_suspend_qp = i40iw_sc_suspend_qp,
5052 .update_resume_qp = i40iw_sc_resume_qp
5055 static struct i40iw_hmc_ops iw_hmc_ops = {
5056 .init_iw_hmc = i40iw_sc_init_iw_hmc,
5057 .parse_fpm_query_buf = i40iw_sc_parse_fpm_query_buf,
5058 .configure_iw_fpm = i40iw_sc_configure_iw_fpm,
5059 .parse_fpm_commit_buf = i40iw_sc_parse_fpm_commit_buf,
5060 .create_hmc_object = i40iw_sc_create_hmc_obj,
5061 .del_hmc_object = i40iw_sc_del_hmc_obj
5065 * i40iw_device_init - Initialize IWARP device
5066 * @dev: IWARP device pointer
5067 * @info: IWARP init info
5069 enum i40iw_status_code i40iw_device_init(struct i40iw_sc_dev *dev,
5070 struct i40iw_device_init_info *info)
5072 u32 val;
5073 u32 vchnl_ver = 0;
5074 u16 hmc_fcn = 0;
5075 enum i40iw_status_code ret_code = 0;
5076 u8 db_size;
5078 spin_lock_init(&dev->cqp_lock);
5080 i40iw_device_init_uk(&dev->dev_uk);
5082 dev->debug_mask = info->debug_mask;
5084 dev->hmc_fn_id = info->hmc_fn_id;
5085 dev->is_pf = info->is_pf;
5087 dev->fpm_query_buf_pa = info->fpm_query_buf_pa;
5088 dev->fpm_query_buf = info->fpm_query_buf;
5090 dev->fpm_commit_buf_pa = info->fpm_commit_buf_pa;
5091 dev->fpm_commit_buf = info->fpm_commit_buf;
5093 dev->hw = info->hw;
5094 dev->hw->hw_addr = info->bar0;
5096 if (dev->is_pf) {
5097 val = i40iw_rd32(dev->hw, I40E_GLPCI_DREVID);
5098 dev->hw_rev = (u8)RS_32(val, I40E_GLPCI_DREVID_DEFAULT_REVID);
5100 val = i40iw_rd32(dev->hw, I40E_GLPCI_LBARCTRL);
5101 db_size = (u8)RS_32(val, I40E_GLPCI_LBARCTRL_PE_DB_SIZE);
5102 if ((db_size != I40IW_PE_DB_SIZE_4M) &&
5103 (db_size != I40IW_PE_DB_SIZE_8M)) {
5104 i40iw_debug(dev, I40IW_DEBUG_DEV,
5105 "%s: PE doorbell is not enabled in CSR val 0x%x\n",
5106 __func__, val);
5107 ret_code = I40IW_ERR_PE_DOORBELL_NOT_ENABLED;
5108 return ret_code;
5110 dev->db_addr = dev->hw->hw_addr + I40IW_DB_ADDR_OFFSET;
5111 dev->vchnl_if.vchnl_recv = i40iw_vchnl_recv_pf;
5112 } else {
5113 dev->db_addr = dev->hw->hw_addr + I40IW_VF_DB_ADDR_OFFSET;
5116 dev->cqp_ops = &iw_cqp_ops;
5117 dev->ccq_ops = &iw_ccq_ops;
5118 dev->ceq_ops = &iw_ceq_ops;
5119 dev->aeq_ops = &iw_aeq_ops;
5120 dev->cqp_misc_ops = &iw_cqp_misc_ops;
5121 dev->iw_pd_ops = &iw_pd_ops;
5122 dev->iw_priv_qp_ops = &iw_priv_qp_ops;
5123 dev->iw_priv_cq_ops = &iw_priv_cq_ops;
5124 dev->mr_ops = &iw_mr_ops;
5125 dev->hmc_ops = &iw_hmc_ops;
5126 dev->vchnl_if.vchnl_send = info->vchnl_send;
5127 if (dev->vchnl_if.vchnl_send)
5128 dev->vchnl_up = true;
5129 else
5130 dev->vchnl_up = false;
5131 if (!dev->is_pf) {
5132 dev->vchnl_if.vchnl_recv = i40iw_vchnl_recv_vf;
5133 ret_code = i40iw_vchnl_vf_get_ver(dev, &vchnl_ver);
5134 if (!ret_code) {
5135 i40iw_debug(dev, I40IW_DEBUG_DEV,
5136 "%s: Get Channel version rc = 0x%0x, version is %u\n",
5137 __func__, ret_code, vchnl_ver);
5138 ret_code = i40iw_vchnl_vf_get_hmc_fcn(dev, &hmc_fcn);
5139 if (!ret_code) {
5140 i40iw_debug(dev, I40IW_DEBUG_DEV,
5141 "%s Get HMC function rc = 0x%0x, hmc fcn is %u\n",
5142 __func__, ret_code, hmc_fcn);
5143 dev->hmc_fn_id = (u8)hmc_fcn;
5147 dev->iw_vf_cqp_ops = &iw_vf_cqp_ops;
5149 return ret_code;