1 // SPDX-License-Identifier: GPL-2.0 or Linux-OpenIB
2 /* Copyright (c) 2015 - 2021 Intel Corporation */
5 static struct irdma_rsrc_limits rsrc_limits_table[] = {
32 /* types of hmc objects */
33 static enum irdma_hmc_rsrc_type iw_hmc_obj_types[] = {
38 IRDMA_HMC_IW_APBVT_ENTRY,
53 IRDMA_HMC_IW_OOISCFFL,
57 * irdma_iwarp_ce_handler - handle iwarp completions
58 * @iwcq: iwarp cq receiving event
60 static void irdma_iwarp_ce_handler(struct irdma_sc_cq *iwcq)
62 struct irdma_cq *cq = iwcq->back_cq;
65 atomic_set(&cq->armed, 0);
66 if (cq->ibcq.comp_handler)
67 cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context);
71 * irdma_puda_ce_handler - handle puda completion events
72 * @rf: RDMA PCI function
73 * @cq: puda completion q for event
75 static void irdma_puda_ce_handler(struct irdma_pci_f *rf,
76 struct irdma_sc_cq *cq)
78 struct irdma_sc_dev *dev = &rf->sc_dev;
83 status = irdma_puda_poll_cmpl(dev, cq, &compl_error);
84 if (status == -ENOENT)
87 ibdev_dbg(to_ibdev(dev), "ERR: puda status = %d\n", status);
91 ibdev_dbg(to_ibdev(dev), "ERR: puda compl_err =0x%x\n",
101 * irdma_process_ceq - handle ceq for completions
102 * @rf: RDMA PCI function
103 * @ceq: ceq having cq for completion
105 static void irdma_process_ceq(struct irdma_pci_f *rf, struct irdma_ceq *ceq)
107 struct irdma_sc_dev *dev = &rf->sc_dev;
108 struct irdma_sc_ceq *sc_ceq;
109 struct irdma_sc_cq *cq;
112 sc_ceq = &ceq->sc_ceq;
114 spin_lock_irqsave(&ceq->ce_lock, flags);
115 cq = irdma_sc_process_ceq(dev, sc_ceq);
117 spin_unlock_irqrestore(&ceq->ce_lock, flags);
121 if (cq->cq_type == IRDMA_CQ_TYPE_IWARP)
122 irdma_iwarp_ce_handler(cq);
124 spin_unlock_irqrestore(&ceq->ce_lock, flags);
126 if (cq->cq_type == IRDMA_CQ_TYPE_CQP)
127 queue_work(rf->cqp_cmpl_wq, &rf->cqp_cmpl_work);
128 else if (cq->cq_type == IRDMA_CQ_TYPE_ILQ ||
129 cq->cq_type == IRDMA_CQ_TYPE_IEQ)
130 irdma_puda_ce_handler(rf, cq);
134 static void irdma_set_flush_fields(struct irdma_sc_qp *qp,
135 struct irdma_aeqe_info *info)
137 qp->sq_flush_code = info->sq;
138 qp->rq_flush_code = info->rq;
139 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
141 switch (info->ae_id) {
142 case IRDMA_AE_AMP_BOUNDS_VIOLATION:
143 case IRDMA_AE_AMP_INVALID_STAG:
144 case IRDMA_AE_AMP_RIGHTS_VIOLATION:
145 case IRDMA_AE_AMP_UNALLOCATED_STAG:
146 case IRDMA_AE_AMP_BAD_PD:
147 case IRDMA_AE_AMP_BAD_QP:
148 case IRDMA_AE_AMP_BAD_STAG_KEY:
149 case IRDMA_AE_AMP_BAD_STAG_INDEX:
150 case IRDMA_AE_AMP_TO_WRAP:
151 case IRDMA_AE_PRIV_OPERATION_DENIED:
152 qp->flush_code = FLUSH_PROT_ERR;
153 qp->event_type = IRDMA_QP_EVENT_ACCESS_ERR;
155 case IRDMA_AE_UDA_XMIT_BAD_PD:
156 case IRDMA_AE_WQE_UNEXPECTED_OPCODE:
157 qp->flush_code = FLUSH_LOC_QP_OP_ERR;
158 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
160 case IRDMA_AE_UDA_XMIT_DGRAM_TOO_LONG:
161 case IRDMA_AE_UDA_XMIT_DGRAM_TOO_SHORT:
162 case IRDMA_AE_UDA_L4LEN_INVALID:
163 case IRDMA_AE_DDP_UBE_INVALID_MO:
164 case IRDMA_AE_DDP_UBE_DDP_MESSAGE_TOO_LONG_FOR_AVAILABLE_BUFFER:
165 qp->flush_code = FLUSH_LOC_LEN_ERR;
166 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
168 case IRDMA_AE_AMP_INVALIDATE_NO_REMOTE_ACCESS_RIGHTS:
169 case IRDMA_AE_IB_REMOTE_ACCESS_ERROR:
170 qp->flush_code = FLUSH_REM_ACCESS_ERR;
171 qp->event_type = IRDMA_QP_EVENT_ACCESS_ERR;
173 case IRDMA_AE_LLP_SEGMENT_TOO_SMALL:
174 case IRDMA_AE_LLP_RECEIVED_MPA_CRC_ERROR:
175 case IRDMA_AE_ROCE_RSP_LENGTH_ERROR:
176 case IRDMA_AE_IB_REMOTE_OP_ERROR:
177 qp->flush_code = FLUSH_REM_OP_ERR;
178 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
180 case IRDMA_AE_LCE_QP_CATASTROPHIC:
181 qp->flush_code = FLUSH_FATAL_ERR;
182 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
184 case IRDMA_AE_IB_RREQ_AND_Q1_FULL:
185 qp->flush_code = FLUSH_GENERAL_ERR;
187 case IRDMA_AE_LLP_TOO_MANY_RETRIES:
188 qp->flush_code = FLUSH_RETRY_EXC_ERR;
189 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
191 case IRDMA_AE_AMP_MWBIND_INVALID_RIGHTS:
192 case IRDMA_AE_AMP_MWBIND_BIND_DISABLED:
193 case IRDMA_AE_AMP_MWBIND_INVALID_BOUNDS:
194 case IRDMA_AE_AMP_MWBIND_VALID_STAG:
195 qp->flush_code = FLUSH_MW_BIND_ERR;
196 qp->event_type = IRDMA_QP_EVENT_ACCESS_ERR;
198 case IRDMA_AE_IB_INVALID_REQUEST:
199 qp->flush_code = FLUSH_REM_INV_REQ_ERR;
200 qp->event_type = IRDMA_QP_EVENT_REQ_ERR;
203 qp->flush_code = FLUSH_GENERAL_ERR;
204 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
210 * irdma_process_aeq - handle aeq events
211 * @rf: RDMA PCI function
213 static void irdma_process_aeq(struct irdma_pci_f *rf)
215 struct irdma_sc_dev *dev = &rf->sc_dev;
216 struct irdma_aeq *aeq = &rf->aeq;
217 struct irdma_sc_aeq *sc_aeq = &aeq->sc_aeq;
218 struct irdma_aeqe_info aeinfo;
219 struct irdma_aeqe_info *info = &aeinfo;
221 struct irdma_qp *iwqp = NULL;
222 struct irdma_sc_cq *cq = NULL;
223 struct irdma_cq *iwcq = NULL;
224 struct irdma_sc_qp *qp = NULL;
225 struct irdma_qp_host_ctx_info *ctx_info = NULL;
226 struct irdma_device *iwdev = rf->iwdev;
235 memset(info, 0, sizeof(*info));
236 ret = irdma_sc_get_next_aeqe(sc_aeq, info);
241 ibdev_dbg(&iwdev->ibdev,
242 "AEQ: ae_id = 0x%x bool qp=%d qp_id = %d tcp_state=%d iwarp_state=%d ae_src=%d\n",
243 info->ae_id, info->qp, info->qp_cq_id, info->tcp_state,
244 info->iwarp_state, info->ae_src);
247 spin_lock_irqsave(&rf->qptable_lock, flags);
248 iwqp = rf->qp_table[info->qp_cq_id];
250 spin_unlock_irqrestore(&rf->qptable_lock,
252 if (info->ae_id == IRDMA_AE_QP_SUSPEND_COMPLETE) {
253 atomic_dec(&iwdev->vsi.qp_suspend_reqs);
254 wake_up(&iwdev->suspend_wq);
257 ibdev_dbg(&iwdev->ibdev, "AEQ: qp_id %d is already freed\n",
261 irdma_qp_add_ref(&iwqp->ibqp);
262 spin_unlock_irqrestore(&rf->qptable_lock, flags);
264 spin_lock_irqsave(&iwqp->lock, flags);
265 iwqp->hw_tcp_state = info->tcp_state;
266 iwqp->hw_iwarp_state = info->iwarp_state;
267 if (info->ae_id != IRDMA_AE_QP_SUSPEND_COMPLETE)
268 iwqp->last_aeq = info->ae_id;
269 spin_unlock_irqrestore(&iwqp->lock, flags);
270 ctx_info = &iwqp->ctx_info;
272 if (info->ae_id != IRDMA_AE_CQ_OPERATION_ERROR)
276 switch (info->ae_id) {
277 struct irdma_cm_node *cm_node;
278 case IRDMA_AE_LLP_CONNECTION_ESTABLISHED:
279 cm_node = iwqp->cm_node;
280 if (cm_node->accept_pend) {
281 atomic_dec(&cm_node->listener->pend_accepts_cnt);
282 cm_node->accept_pend = 0;
284 iwqp->rts_ae_rcvd = 1;
285 wake_up_interruptible(&iwqp->waitq);
287 case IRDMA_AE_LLP_FIN_RECEIVED:
288 case IRDMA_AE_RDMAP_ROE_BAD_LLP_CLOSE:
291 if (atomic_inc_return(&iwqp->close_timer_started) == 1) {
292 iwqp->hw_tcp_state = IRDMA_TCP_STATE_CLOSE_WAIT;
293 if (iwqp->hw_tcp_state == IRDMA_TCP_STATE_CLOSE_WAIT &&
294 iwqp->ibqp_state == IB_QPS_RTS) {
295 irdma_next_iw_state(iwqp,
296 IRDMA_QP_STATE_CLOSING,
298 irdma_cm_disconn(iwqp);
300 irdma_schedule_cm_timer(iwqp->cm_node,
301 (struct irdma_puda_buf *)iwqp,
302 IRDMA_TIMER_TYPE_CLOSE,
306 case IRDMA_AE_LLP_CLOSE_COMPLETE:
308 irdma_terminate_done(qp, 0);
310 irdma_cm_disconn(iwqp);
312 case IRDMA_AE_BAD_CLOSE:
313 case IRDMA_AE_RESET_SENT:
314 irdma_next_iw_state(iwqp, IRDMA_QP_STATE_ERROR, 1, 0,
316 irdma_cm_disconn(iwqp);
318 case IRDMA_AE_LLP_CONNECTION_RESET:
319 if (atomic_read(&iwqp->close_timer_started))
321 irdma_cm_disconn(iwqp);
323 case IRDMA_AE_QP_SUSPEND_COMPLETE:
324 if (iwqp->iwdev->vsi.tc_change_pending) {
325 atomic_dec(&iwqp->sc_qp.vsi->qp_suspend_reqs);
326 wake_up(&iwqp->iwdev->suspend_wq);
329 case IRDMA_AE_TERMINATE_SENT:
330 irdma_terminate_send_fin(qp);
332 case IRDMA_AE_LLP_TERMINATE_RECEIVED:
333 irdma_terminate_received(qp, info);
335 case IRDMA_AE_CQ_OPERATION_ERROR:
336 ibdev_err(&iwdev->ibdev,
337 "Processing an iWARP related AE for CQ misc = 0x%04X\n",
339 cq = (struct irdma_sc_cq *)(unsigned long)
344 if (iwcq->ibcq.event_handler) {
345 struct ib_event ibevent;
347 ibevent.device = iwcq->ibcq.device;
348 ibevent.event = IB_EVENT_CQ_ERR;
349 ibevent.element.cq = &iwcq->ibcq;
350 iwcq->ibcq.event_handler(&ibevent,
351 iwcq->ibcq.cq_context);
354 case IRDMA_AE_RESET_NOT_SENT:
355 case IRDMA_AE_LLP_DOUBT_REACHABILITY:
356 case IRDMA_AE_RESOURCE_EXHAUSTION:
358 case IRDMA_AE_PRIV_OPERATION_DENIED:
359 case IRDMA_AE_STAG_ZERO_INVALID:
360 case IRDMA_AE_IB_RREQ_AND_Q1_FULL:
361 case IRDMA_AE_DDP_UBE_INVALID_DDP_VERSION:
362 case IRDMA_AE_DDP_UBE_INVALID_MO:
363 case IRDMA_AE_DDP_UBE_INVALID_QN:
364 case IRDMA_AE_DDP_NO_L_BIT:
365 case IRDMA_AE_RDMAP_ROE_INVALID_RDMAP_VERSION:
366 case IRDMA_AE_RDMAP_ROE_UNEXPECTED_OPCODE:
367 case IRDMA_AE_ROE_INVALID_RDMA_READ_REQUEST:
368 case IRDMA_AE_ROE_INVALID_RDMA_WRITE_OR_READ_RESP:
369 case IRDMA_AE_INVALID_ARP_ENTRY:
370 case IRDMA_AE_INVALID_TCP_OPTION_RCVD:
371 case IRDMA_AE_STALE_ARP_ENTRY:
372 case IRDMA_AE_LLP_RECEIVED_MPA_CRC_ERROR:
373 case IRDMA_AE_LLP_SEGMENT_TOO_SMALL:
374 case IRDMA_AE_LLP_SYN_RECEIVED:
375 case IRDMA_AE_LLP_TOO_MANY_RETRIES:
376 case IRDMA_AE_LCE_QP_CATASTROPHIC:
377 case IRDMA_AE_LCE_FUNCTION_CATASTROPHIC:
378 case IRDMA_AE_LCE_CQ_CATASTROPHIC:
379 case IRDMA_AE_UDA_XMIT_DGRAM_TOO_LONG:
381 ibdev_err(&iwdev->ibdev, "abnormal ae_id = 0x%x bool qp=%d qp_id = %d, ae_src=%d\n",
382 info->ae_id, info->qp, info->qp_cq_id, info->ae_src);
383 if (rdma_protocol_roce(&iwdev->ibdev, 1)) {
384 ctx_info->roce_info->err_rq_idx_valid = info->rq;
386 ctx_info->roce_info->err_rq_idx = info->wqe_idx;
387 irdma_sc_qp_setctx_roce(&iwqp->sc_qp, iwqp->host_ctx.va,
390 irdma_set_flush_fields(qp, info);
391 irdma_cm_disconn(iwqp);
394 ctx_info->iwarp_info->err_rq_idx_valid = info->rq;
396 ctx_info->iwarp_info->err_rq_idx = info->wqe_idx;
397 ctx_info->tcp_info_valid = false;
398 ctx_info->iwarp_info_valid = true;
399 irdma_sc_qp_setctx(&iwqp->sc_qp, iwqp->host_ctx.va,
402 if (iwqp->hw_iwarp_state != IRDMA_QP_STATE_RTS &&
403 iwqp->hw_iwarp_state != IRDMA_QP_STATE_TERMINATE) {
404 irdma_next_iw_state(iwqp, IRDMA_QP_STATE_ERROR, 1, 0, 0);
405 irdma_cm_disconn(iwqp);
407 irdma_terminate_connection(qp, info);
412 irdma_qp_rem_ref(&iwqp->ibqp);
416 irdma_sc_repost_aeq_entries(dev, aeqcnt);
420 * irdma_ena_intr - set up device interrupts
421 * @dev: hardware control device structure
422 * @msix_id: id of the interrupt to be enabled
424 static void irdma_ena_intr(struct irdma_sc_dev *dev, u32 msix_id)
426 dev->irq_ops->irdma_en_irq(dev, msix_id);
430 * irdma_dpc - tasklet for aeq and ceq 0
431 * @t: tasklet_struct ptr
433 static void irdma_dpc(struct tasklet_struct *t)
435 struct irdma_pci_f *rf = from_tasklet(rf, t, dpc_tasklet);
438 irdma_process_ceq(rf, rf->ceqlist);
439 irdma_process_aeq(rf);
440 irdma_ena_intr(&rf->sc_dev, rf->iw_msixtbl[0].idx);
444 * irdma_ceq_dpc - dpc handler for CEQ
445 * @t: tasklet_struct ptr
447 static void irdma_ceq_dpc(struct tasklet_struct *t)
449 struct irdma_ceq *iwceq = from_tasklet(iwceq, t, dpc_tasklet);
450 struct irdma_pci_f *rf = iwceq->rf;
452 irdma_process_ceq(rf, iwceq);
453 irdma_ena_intr(&rf->sc_dev, iwceq->msix_idx);
457 * irdma_save_msix_info - copy msix vector information to iwarp device
458 * @rf: RDMA PCI function
460 * Allocate iwdev msix table and copy the msix info to the table
461 * Return 0 if successful, otherwise return error
463 static int irdma_save_msix_info(struct irdma_pci_f *rf)
465 struct irdma_qvlist_info *iw_qvlist;
466 struct irdma_qv_info *iw_qvinfo;
467 struct msix_entry *pmsix;
475 size = sizeof(struct irdma_msix_vector) * rf->msix_count;
476 size += struct_size(iw_qvlist, qv_info, rf->msix_count);
477 rf->iw_msixtbl = kzalloc(size, GFP_KERNEL);
481 rf->iw_qvlist = (struct irdma_qvlist_info *)
482 (&rf->iw_msixtbl[rf->msix_count]);
483 iw_qvlist = rf->iw_qvlist;
484 iw_qvinfo = iw_qvlist->qv_info;
485 iw_qvlist->num_vectors = rf->msix_count;
486 if (rf->msix_count <= num_online_cpus())
487 rf->msix_shared = true;
488 else if (rf->msix_count > num_online_cpus() + 1)
489 rf->msix_count = num_online_cpus() + 1;
491 pmsix = rf->msix_entries;
492 for (i = 0, ceq_idx = 0; i < rf->msix_count; i++, iw_qvinfo++) {
493 rf->iw_msixtbl[i].idx = pmsix->entry;
494 rf->iw_msixtbl[i].irq = pmsix->vector;
495 rf->iw_msixtbl[i].cpu_affinity = ceq_idx;
497 iw_qvinfo->aeq_idx = 0;
499 iw_qvinfo->ceq_idx = ceq_idx++;
501 iw_qvinfo->ceq_idx = IRDMA_Q_INVALID_IDX;
503 iw_qvinfo->aeq_idx = IRDMA_Q_INVALID_IDX;
504 iw_qvinfo->ceq_idx = ceq_idx++;
506 iw_qvinfo->itr_idx = 3;
507 iw_qvinfo->v_idx = rf->iw_msixtbl[i].idx;
515 * irdma_irq_handler - interrupt handler for aeq and ceq0
516 * @irq: Interrupt request number
517 * @data: RDMA PCI function
519 static irqreturn_t irdma_irq_handler(int irq, void *data)
521 struct irdma_pci_f *rf = data;
523 tasklet_schedule(&rf->dpc_tasklet);
529 * irdma_ceq_handler - interrupt handler for ceq
530 * @irq: interrupt request number
533 static irqreturn_t irdma_ceq_handler(int irq, void *data)
535 struct irdma_ceq *iwceq = data;
537 if (iwceq->irq != irq)
538 ibdev_err(to_ibdev(&iwceq->rf->sc_dev), "expected irq = %d received irq = %d\n",
540 tasklet_schedule(&iwceq->dpc_tasklet);
546 * irdma_destroy_irq - destroy device interrupts
547 * @rf: RDMA PCI function
548 * @msix_vec: msix vector to disable irq
549 * @dev_id: parameter to pass to free_irq (used during irq setup)
551 * The function is called when destroying aeq/ceq
553 static void irdma_destroy_irq(struct irdma_pci_f *rf,
554 struct irdma_msix_vector *msix_vec, void *dev_id)
556 struct irdma_sc_dev *dev = &rf->sc_dev;
558 dev->irq_ops->irdma_dis_irq(dev, msix_vec->idx);
559 irq_update_affinity_hint(msix_vec->irq, NULL);
560 free_irq(msix_vec->irq, dev_id);
564 * irdma_destroy_cqp - destroy control qp
565 * @rf: RDMA PCI function
566 * @free_hwcqp: 1 if hw cqp should be freed
568 * Issue destroy cqp request and
569 * free the resources associated with the cqp
571 static void irdma_destroy_cqp(struct irdma_pci_f *rf, bool free_hwcqp)
573 struct irdma_sc_dev *dev = &rf->sc_dev;
574 struct irdma_cqp *cqp = &rf->cqp;
578 destroy_workqueue(rf->cqp_cmpl_wq);
580 status = irdma_sc_cqp_destroy(dev->cqp);
582 ibdev_dbg(to_ibdev(dev), "ERR: Destroy CQP failed %d\n", status);
584 irdma_cleanup_pending_cqp_op(rf);
585 dma_free_coherent(dev->hw->device, cqp->sq.size, cqp->sq.va,
588 kfree(cqp->scratch_array);
589 cqp->scratch_array = NULL;
590 kfree(cqp->cqp_requests);
591 cqp->cqp_requests = NULL;
594 static void irdma_destroy_virt_aeq(struct irdma_pci_f *rf)
596 struct irdma_aeq *aeq = &rf->aeq;
597 u32 pg_cnt = DIV_ROUND_UP(aeq->mem.size, PAGE_SIZE);
598 dma_addr_t *pg_arr = (dma_addr_t *)aeq->palloc.level1.addr;
600 irdma_unmap_vm_page_list(&rf->hw, pg_arr, pg_cnt);
601 irdma_free_pble(rf->pble_rsrc, &aeq->palloc);
606 * irdma_destroy_aeq - destroy aeq
607 * @rf: RDMA PCI function
609 * Issue a destroy aeq request and
610 * free the resources associated with the aeq
611 * The function is called during driver unload
613 static void irdma_destroy_aeq(struct irdma_pci_f *rf)
615 struct irdma_sc_dev *dev = &rf->sc_dev;
616 struct irdma_aeq *aeq = &rf->aeq;
619 if (!rf->msix_shared) {
620 rf->sc_dev.irq_ops->irdma_cfg_aeq(&rf->sc_dev, rf->iw_msixtbl->idx, false);
621 irdma_destroy_irq(rf, rf->iw_msixtbl, rf);
626 aeq->sc_aeq.size = 0;
627 status = irdma_cqp_aeq_cmd(dev, &aeq->sc_aeq, IRDMA_OP_AEQ_DESTROY);
629 ibdev_dbg(to_ibdev(dev), "ERR: Destroy AEQ failed %d\n", status);
632 if (aeq->virtual_map) {
633 irdma_destroy_virt_aeq(rf);
635 dma_free_coherent(dev->hw->device, aeq->mem.size, aeq->mem.va,
642 * irdma_destroy_ceq - destroy ceq
643 * @rf: RDMA PCI function
644 * @iwceq: ceq to be destroyed
646 * Issue a destroy ceq request and
647 * free the resources associated with the ceq
649 static void irdma_destroy_ceq(struct irdma_pci_f *rf, struct irdma_ceq *iwceq)
651 struct irdma_sc_dev *dev = &rf->sc_dev;
657 status = irdma_sc_ceq_destroy(&iwceq->sc_ceq, 0, 1);
659 ibdev_dbg(to_ibdev(dev), "ERR: CEQ destroy command failed %d\n", status);
663 status = irdma_sc_cceq_destroy_done(&iwceq->sc_ceq);
665 ibdev_dbg(to_ibdev(dev), "ERR: CEQ destroy completion failed %d\n",
668 dma_free_coherent(dev->hw->device, iwceq->mem.size, iwceq->mem.va,
670 iwceq->mem.va = NULL;
674 * irdma_del_ceq_0 - destroy ceq 0
675 * @rf: RDMA PCI function
677 * Disable the ceq 0 interrupt and destroy the ceq 0
679 static void irdma_del_ceq_0(struct irdma_pci_f *rf)
681 struct irdma_ceq *iwceq = rf->ceqlist;
682 struct irdma_msix_vector *msix_vec;
684 if (rf->msix_shared) {
685 msix_vec = &rf->iw_msixtbl[0];
686 rf->sc_dev.irq_ops->irdma_cfg_ceq(&rf->sc_dev,
688 msix_vec->idx, false);
689 irdma_destroy_irq(rf, msix_vec, rf);
691 msix_vec = &rf->iw_msixtbl[1];
692 irdma_destroy_irq(rf, msix_vec, iwceq);
695 irdma_destroy_ceq(rf, iwceq);
696 rf->sc_dev.ceq_valid = false;
701 * irdma_del_ceqs - destroy all ceq's except CEQ 0
702 * @rf: RDMA PCI function
704 * Go through all of the device ceq's, except 0, and for each
705 * ceq disable the ceq interrupt and destroy the ceq
707 static void irdma_del_ceqs(struct irdma_pci_f *rf)
709 struct irdma_ceq *iwceq = &rf->ceqlist[1];
710 struct irdma_msix_vector *msix_vec;
714 msix_vec = &rf->iw_msixtbl[1];
716 msix_vec = &rf->iw_msixtbl[2];
718 for (i = 1; i < rf->ceqs_count; i++, msix_vec++, iwceq++) {
719 rf->sc_dev.irq_ops->irdma_cfg_ceq(&rf->sc_dev, msix_vec->ceq_id,
720 msix_vec->idx, false);
721 irdma_destroy_irq(rf, msix_vec, iwceq);
722 irdma_cqp_ceq_cmd(&rf->sc_dev, &iwceq->sc_ceq,
723 IRDMA_OP_CEQ_DESTROY);
724 dma_free_coherent(rf->sc_dev.hw->device, iwceq->mem.size,
725 iwceq->mem.va, iwceq->mem.pa);
726 iwceq->mem.va = NULL;
732 * irdma_destroy_ccq - destroy control cq
733 * @rf: RDMA PCI function
735 * Issue destroy ccq request and
736 * free the resources associated with the ccq
738 static void irdma_destroy_ccq(struct irdma_pci_f *rf)
740 struct irdma_sc_dev *dev = &rf->sc_dev;
741 struct irdma_ccq *ccq = &rf->ccq;
745 status = irdma_sc_ccq_destroy(dev->ccq, 0, true);
747 ibdev_dbg(to_ibdev(dev), "ERR: CCQ destroy failed %d\n", status);
748 dma_free_coherent(dev->hw->device, ccq->mem_cq.size, ccq->mem_cq.va,
750 ccq->mem_cq.va = NULL;
754 * irdma_close_hmc_objects_type - delete hmc objects of a given type
756 * @obj_type: the hmc object type to be deleted
757 * @hmc_info: host memory info struct
758 * @privileged: permission to close HMC objects
759 * @reset: true if called before reset
761 static void irdma_close_hmc_objects_type(struct irdma_sc_dev *dev,
762 enum irdma_hmc_rsrc_type obj_type,
763 struct irdma_hmc_info *hmc_info,
764 bool privileged, bool reset)
766 struct irdma_hmc_del_obj_info info = {};
768 info.hmc_info = hmc_info;
769 info.rsrc_type = obj_type;
770 info.count = hmc_info->hmc_obj[obj_type].cnt;
771 info.privileged = privileged;
772 if (irdma_sc_del_hmc_obj(dev, &info, reset))
773 ibdev_dbg(to_ibdev(dev), "ERR: del HMC obj of type %d failed\n",
778 * irdma_del_hmc_objects - remove all device hmc objects
780 * @hmc_info: hmc_info to free
781 * @privileged: permission to delete HMC objects
782 * @reset: true if called before reset
783 * @vers: hardware version
785 static void irdma_del_hmc_objects(struct irdma_sc_dev *dev,
786 struct irdma_hmc_info *hmc_info, bool privileged,
787 bool reset, enum irdma_vers vers)
791 for (i = 0; i < IW_HMC_OBJ_TYPE_NUM; i++) {
792 if (dev->hmc_info->hmc_obj[iw_hmc_obj_types[i]].cnt)
793 irdma_close_hmc_objects_type(dev, iw_hmc_obj_types[i],
794 hmc_info, privileged, reset);
795 if (vers == IRDMA_GEN_1 && i == IRDMA_HMC_IW_TIMER)
801 * irdma_create_hmc_obj_type - create hmc object of a given type
802 * @dev: hardware control device structure
803 * @info: information for the hmc object to create
805 static int irdma_create_hmc_obj_type(struct irdma_sc_dev *dev,
806 struct irdma_hmc_create_obj_info *info)
808 return irdma_sc_create_hmc_obj(dev, info);
812 * irdma_create_hmc_objs - create all hmc objects for the device
813 * @rf: RDMA PCI function
814 * @privileged: permission to create HMC objects
817 * Create the device hmc objects and allocate hmc pages
818 * Return 0 if successful, otherwise clean up and return error
820 static int irdma_create_hmc_objs(struct irdma_pci_f *rf, bool privileged,
821 enum irdma_vers vers)
823 struct irdma_sc_dev *dev = &rf->sc_dev;
824 struct irdma_hmc_create_obj_info info = {};
827 info.hmc_info = dev->hmc_info;
828 info.privileged = privileged;
829 info.entry_type = rf->sd_type;
831 for (i = 0; i < IW_HMC_OBJ_TYPE_NUM; i++) {
832 if (iw_hmc_obj_types[i] == IRDMA_HMC_IW_PBLE)
834 if (dev->hmc_info->hmc_obj[iw_hmc_obj_types[i]].cnt) {
835 info.rsrc_type = iw_hmc_obj_types[i];
836 info.count = dev->hmc_info->hmc_obj[info.rsrc_type].cnt;
838 status = irdma_create_hmc_obj_type(dev, &info);
840 ibdev_dbg(to_ibdev(dev),
841 "ERR: create obj type %d status = %d\n",
842 iw_hmc_obj_types[i], status);
846 if (vers == IRDMA_GEN_1 && i == IRDMA_HMC_IW_TIMER)
851 return irdma_sc_static_hmc_pages_allocated(dev->cqp, 0, dev->hmc_fn_id,
856 /* destroy the hmc objects of a given type */
857 if (dev->hmc_info->hmc_obj[iw_hmc_obj_types[i]].cnt)
858 irdma_close_hmc_objects_type(dev, iw_hmc_obj_types[i],
859 dev->hmc_info, privileged,
867 * irdma_obj_aligned_mem - get aligned memory from device allocated memory
868 * @rf: RDMA PCI function
869 * @memptr: points to the memory addresses
870 * @size: size of memory needed
871 * @mask: mask for the aligned memory
873 * Get aligned memory of the requested size and
874 * update the memptr to point to the new aligned memory
875 * Return 0 if successful, otherwise return no memory error
877 static int irdma_obj_aligned_mem(struct irdma_pci_f *rf,
878 struct irdma_dma_mem *memptr, u32 size,
881 unsigned long va, newva;
884 va = (unsigned long)rf->obj_next.va;
887 newva = ALIGN(va, (unsigned long)mask + 1ULL);
889 memptr->va = (u8 *)va + extra;
890 memptr->pa = rf->obj_next.pa + extra;
892 if (((u8 *)memptr->va + size) > ((u8 *)rf->obj_mem.va + rf->obj_mem.size))
895 rf->obj_next.va = (u8 *)memptr->va + size;
896 rf->obj_next.pa = memptr->pa + size;
902 * irdma_create_cqp - create control qp
903 * @rf: RDMA PCI function
905 * Return 0, if the cqp and all the resources associated with it
906 * are successfully created, otherwise return error
908 static int irdma_create_cqp(struct irdma_pci_f *rf)
910 u32 sqsize = IRDMA_CQP_SW_SQSIZE_2048;
911 struct irdma_dma_mem mem;
912 struct irdma_sc_dev *dev = &rf->sc_dev;
913 struct irdma_cqp_init_info cqp_init_info = {};
914 struct irdma_cqp *cqp = &rf->cqp;
915 u16 maj_err, min_err;
918 cqp->cqp_requests = kcalloc(sqsize, sizeof(*cqp->cqp_requests), GFP_KERNEL);
919 if (!cqp->cqp_requests)
922 cqp->scratch_array = kcalloc(sqsize, sizeof(*cqp->scratch_array), GFP_KERNEL);
923 if (!cqp->scratch_array) {
924 kfree(cqp->cqp_requests);
928 dev->cqp = &cqp->sc_cqp;
930 cqp->sq.size = ALIGN(sizeof(struct irdma_cqp_sq_wqe) * sqsize,
931 IRDMA_CQP_ALIGNMENT);
932 cqp->sq.va = dma_alloc_coherent(dev->hw->device, cqp->sq.size,
933 &cqp->sq.pa, GFP_KERNEL);
935 kfree(cqp->scratch_array);
936 kfree(cqp->cqp_requests);
940 status = irdma_obj_aligned_mem(rf, &mem, sizeof(struct irdma_cqp_ctx),
941 IRDMA_HOST_CTX_ALIGNMENT_M);
945 dev->cqp->host_ctx_pa = mem.pa;
946 dev->cqp->host_ctx = mem.va;
947 /* populate the cqp init info */
948 cqp_init_info.dev = dev;
949 cqp_init_info.sq_size = sqsize;
950 cqp_init_info.sq = cqp->sq.va;
951 cqp_init_info.sq_pa = cqp->sq.pa;
952 cqp_init_info.host_ctx_pa = mem.pa;
953 cqp_init_info.host_ctx = mem.va;
954 cqp_init_info.hmc_profile = rf->rsrc_profile;
955 cqp_init_info.scratch_array = cqp->scratch_array;
956 cqp_init_info.protocol_used = rf->protocol_used;
958 switch (rf->rdma_ver) {
960 cqp_init_info.hw_maj_ver = IRDMA_CQPHC_HW_MAJVER_GEN_1;
963 cqp_init_info.hw_maj_ver = IRDMA_CQPHC_HW_MAJVER_GEN_2;
966 status = irdma_sc_cqp_init(dev->cqp, &cqp_init_info);
968 ibdev_dbg(to_ibdev(dev), "ERR: cqp init status %d\n", status);
972 spin_lock_init(&cqp->req_lock);
973 spin_lock_init(&cqp->compl_lock);
975 status = irdma_sc_cqp_create(dev->cqp, &maj_err, &min_err);
977 ibdev_dbg(to_ibdev(dev),
978 "ERR: cqp create failed - status %d maj_err %d min_err %d\n",
979 status, maj_err, min_err);
983 INIT_LIST_HEAD(&cqp->cqp_avail_reqs);
984 INIT_LIST_HEAD(&cqp->cqp_pending_reqs);
986 /* init the waitqueue of the cqp_requests and add them to the list */
987 for (i = 0; i < sqsize; i++) {
988 init_waitqueue_head(&cqp->cqp_requests[i].waitq);
989 list_add_tail(&cqp->cqp_requests[i].list, &cqp->cqp_avail_reqs);
991 init_waitqueue_head(&cqp->remove_wq);
995 irdma_destroy_cqp(rf, false);
1001 * irdma_create_ccq - create control cq
1002 * @rf: RDMA PCI function
1004 * Return 0, if the ccq and the resources associated with it
1005 * are successfully created, otherwise return error
1007 static int irdma_create_ccq(struct irdma_pci_f *rf)
1009 struct irdma_sc_dev *dev = &rf->sc_dev;
1010 struct irdma_ccq_init_info info = {};
1011 struct irdma_ccq *ccq = &rf->ccq;
1014 dev->ccq = &ccq->sc_cq;
1015 dev->ccq->dev = dev;
1017 ccq->shadow_area.size = sizeof(struct irdma_cq_shadow_area);
1018 ccq->mem_cq.size = ALIGN(sizeof(struct irdma_cqe) * IW_CCQ_SIZE,
1019 IRDMA_CQ0_ALIGNMENT);
1020 ccq->mem_cq.va = dma_alloc_coherent(dev->hw->device, ccq->mem_cq.size,
1021 &ccq->mem_cq.pa, GFP_KERNEL);
1022 if (!ccq->mem_cq.va)
1025 status = irdma_obj_aligned_mem(rf, &ccq->shadow_area,
1026 ccq->shadow_area.size,
1027 IRDMA_SHADOWAREA_M);
1031 ccq->sc_cq.back_cq = ccq;
1032 /* populate the ccq init info */
1033 info.cq_base = ccq->mem_cq.va;
1034 info.cq_pa = ccq->mem_cq.pa;
1035 info.num_elem = IW_CCQ_SIZE;
1036 info.shadow_area = ccq->shadow_area.va;
1037 info.shadow_area_pa = ccq->shadow_area.pa;
1038 info.ceqe_mask = false;
1039 info.ceq_id_valid = true;
1040 info.shadow_read_threshold = 16;
1041 info.vsi = &rf->default_vsi;
1042 status = irdma_sc_ccq_init(dev->ccq, &info);
1044 status = irdma_sc_ccq_create(dev->ccq, 0, true, true);
1047 dma_free_coherent(dev->hw->device, ccq->mem_cq.size,
1048 ccq->mem_cq.va, ccq->mem_cq.pa);
1049 ccq->mem_cq.va = NULL;
1056 * irdma_alloc_set_mac - set up a mac address table entry
1057 * @iwdev: irdma device
1059 * Allocate a mac ip entry and add it to the hw table Return 0
1060 * if successful, otherwise return error
1062 static int irdma_alloc_set_mac(struct irdma_device *iwdev)
1066 status = irdma_alloc_local_mac_entry(iwdev->rf,
1067 &iwdev->mac_ip_table_idx);
1069 status = irdma_add_local_mac_entry(iwdev->rf,
1070 (const u8 *)iwdev->netdev->dev_addr,
1071 (u8)iwdev->mac_ip_table_idx);
1073 irdma_del_local_mac_entry(iwdev->rf,
1074 (u8)iwdev->mac_ip_table_idx);
1080 * irdma_cfg_ceq_vector - set up the msix interrupt vector for
1082 * @rf: RDMA PCI function
1083 * @iwceq: ceq associated with the vector
1084 * @ceq_id: the id number of the iwceq
1085 * @msix_vec: interrupt vector information
1087 * Allocate interrupt resources and enable irq handling
1088 * Return 0 if successful, otherwise return error
1090 static int irdma_cfg_ceq_vector(struct irdma_pci_f *rf, struct irdma_ceq *iwceq,
1091 u32 ceq_id, struct irdma_msix_vector *msix_vec)
1095 if (rf->msix_shared && !ceq_id) {
1096 snprintf(msix_vec->name, sizeof(msix_vec->name) - 1,
1097 "irdma-%s-AEQCEQ-0", dev_name(&rf->pcidev->dev));
1098 tasklet_setup(&rf->dpc_tasklet, irdma_dpc);
1099 status = request_irq(msix_vec->irq, irdma_irq_handler, 0,
1100 msix_vec->name, rf);
1102 snprintf(msix_vec->name, sizeof(msix_vec->name) - 1,
1104 dev_name(&rf->pcidev->dev), ceq_id);
1105 tasklet_setup(&iwceq->dpc_tasklet, irdma_ceq_dpc);
1107 status = request_irq(msix_vec->irq, irdma_ceq_handler, 0,
1108 msix_vec->name, iwceq);
1110 cpumask_clear(&msix_vec->mask);
1111 cpumask_set_cpu(msix_vec->cpu_affinity, &msix_vec->mask);
1112 irq_update_affinity_hint(msix_vec->irq, &msix_vec->mask);
1114 ibdev_dbg(&rf->iwdev->ibdev, "ERR: ceq irq config fail\n");
1118 msix_vec->ceq_id = ceq_id;
1119 rf->sc_dev.irq_ops->irdma_cfg_ceq(&rf->sc_dev, ceq_id, msix_vec->idx, true);
1125 * irdma_cfg_aeq_vector - set up the msix vector for aeq
1126 * @rf: RDMA PCI function
1128 * Allocate interrupt resources and enable irq handling
1129 * Return 0 if successful, otherwise return error
1131 static int irdma_cfg_aeq_vector(struct irdma_pci_f *rf)
1133 struct irdma_msix_vector *msix_vec = rf->iw_msixtbl;
1136 if (!rf->msix_shared) {
1137 snprintf(msix_vec->name, sizeof(msix_vec->name) - 1,
1138 "irdma-%s-AEQ", dev_name(&rf->pcidev->dev));
1139 tasklet_setup(&rf->dpc_tasklet, irdma_dpc);
1140 ret = request_irq(msix_vec->irq, irdma_irq_handler, 0,
1141 msix_vec->name, rf);
1144 ibdev_dbg(&rf->iwdev->ibdev, "ERR: aeq irq config fail\n");
1148 rf->sc_dev.irq_ops->irdma_cfg_aeq(&rf->sc_dev, msix_vec->idx, true);
1154 * irdma_create_ceq - create completion event queue
1155 * @rf: RDMA PCI function
1156 * @iwceq: pointer to the ceq resources to be created
1157 * @ceq_id: the id number of the iwceq
1158 * @vsi: SC vsi struct
1160 * Return 0, if the ceq and the resources associated with it
1161 * are successfully created, otherwise return error
1163 static int irdma_create_ceq(struct irdma_pci_f *rf, struct irdma_ceq *iwceq,
1164 u32 ceq_id, struct irdma_sc_vsi *vsi)
1167 struct irdma_ceq_init_info info = {};
1168 struct irdma_sc_dev *dev = &rf->sc_dev;
1172 info.ceq_id = ceq_id;
1174 ceq_size = min(rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_CQ].cnt,
1175 dev->hw_attrs.max_hw_ceq_size);
1176 iwceq->mem.size = ALIGN(sizeof(struct irdma_ceqe) * ceq_size,
1177 IRDMA_CEQ_ALIGNMENT);
1178 iwceq->mem.va = dma_alloc_coherent(dev->hw->device, iwceq->mem.size,
1179 &iwceq->mem.pa, GFP_KERNEL);
1183 info.ceq_id = ceq_id;
1184 info.ceqe_base = iwceq->mem.va;
1185 info.ceqe_pa = iwceq->mem.pa;
1186 info.elem_cnt = ceq_size;
1187 iwceq->sc_ceq.ceq_id = ceq_id;
1190 scratch = (uintptr_t)&rf->cqp.sc_cqp;
1191 status = irdma_sc_ceq_init(&iwceq->sc_ceq, &info);
1194 status = irdma_cqp_ceq_cmd(&rf->sc_dev, &iwceq->sc_ceq,
1195 IRDMA_OP_CEQ_CREATE);
1197 status = irdma_sc_cceq_create(&iwceq->sc_ceq, scratch);
1201 dma_free_coherent(dev->hw->device, iwceq->mem.size,
1202 iwceq->mem.va, iwceq->mem.pa);
1203 iwceq->mem.va = NULL;
1210 * irdma_setup_ceq_0 - create CEQ 0 and it's interrupt resource
1211 * @rf: RDMA PCI function
1213 * Allocate a list for all device completion event queues
1214 * Create the ceq 0 and configure it's msix interrupt vector
1215 * Return 0, if successfully set up, otherwise return error
1217 static int irdma_setup_ceq_0(struct irdma_pci_f *rf)
1219 struct irdma_ceq *iwceq;
1220 struct irdma_msix_vector *msix_vec;
1225 num_ceqs = min(rf->msix_count, rf->sc_dev.hmc_fpm_misc.max_ceqs);
1226 rf->ceqlist = kcalloc(num_ceqs, sizeof(*rf->ceqlist), GFP_KERNEL);
1232 iwceq = &rf->ceqlist[0];
1233 status = irdma_create_ceq(rf, iwceq, 0, &rf->default_vsi);
1235 ibdev_dbg(&rf->iwdev->ibdev, "ERR: create ceq status = %d\n",
1240 spin_lock_init(&iwceq->ce_lock);
1241 i = rf->msix_shared ? 0 : 1;
1242 msix_vec = &rf->iw_msixtbl[i];
1243 iwceq->irq = msix_vec->irq;
1244 iwceq->msix_idx = msix_vec->idx;
1245 status = irdma_cfg_ceq_vector(rf, iwceq, 0, msix_vec);
1247 irdma_destroy_ceq(rf, iwceq);
1251 irdma_ena_intr(&rf->sc_dev, msix_vec->idx);
1255 if (status && !rf->ceqs_count) {
1260 rf->sc_dev.ceq_valid = true;
1266 * irdma_setup_ceqs - manage the device ceq's and their interrupt resources
1267 * @rf: RDMA PCI function
1268 * @vsi: VSI structure for this CEQ
1270 * Allocate a list for all device completion event queues
1271 * Create the ceq's and configure their msix interrupt vectors
1272 * Return 0, if ceqs are successfully set up, otherwise return error
1274 static int irdma_setup_ceqs(struct irdma_pci_f *rf, struct irdma_sc_vsi *vsi)
1278 struct irdma_ceq *iwceq;
1279 struct irdma_msix_vector *msix_vec;
1283 num_ceqs = min(rf->msix_count, rf->sc_dev.hmc_fpm_misc.max_ceqs);
1284 i = (rf->msix_shared) ? 1 : 2;
1285 for (ceq_id = 1; i < num_ceqs; i++, ceq_id++) {
1286 iwceq = &rf->ceqlist[ceq_id];
1287 status = irdma_create_ceq(rf, iwceq, ceq_id, vsi);
1289 ibdev_dbg(&rf->iwdev->ibdev,
1290 "ERR: create ceq status = %d\n", status);
1293 spin_lock_init(&iwceq->ce_lock);
1294 msix_vec = &rf->iw_msixtbl[i];
1295 iwceq->irq = msix_vec->irq;
1296 iwceq->msix_idx = msix_vec->idx;
1297 status = irdma_cfg_ceq_vector(rf, iwceq, ceq_id, msix_vec);
1299 irdma_destroy_ceq(rf, iwceq);
1302 irdma_ena_intr(&rf->sc_dev, msix_vec->idx);
1314 static int irdma_create_virt_aeq(struct irdma_pci_f *rf, u32 size)
1316 struct irdma_aeq *aeq = &rf->aeq;
1321 if (rf->rdma_ver < IRDMA_GEN_2)
1324 aeq->mem.size = sizeof(struct irdma_sc_aeqe) * size;
1325 aeq->mem.va = vzalloc(aeq->mem.size);
1330 pg_cnt = DIV_ROUND_UP(aeq->mem.size, PAGE_SIZE);
1331 status = irdma_get_pble(rf->pble_rsrc, &aeq->palloc, pg_cnt, true);
1337 pg_arr = (dma_addr_t *)aeq->palloc.level1.addr;
1338 status = irdma_map_vm_page_list(&rf->hw, aeq->mem.va, pg_arr, pg_cnt);
1340 irdma_free_pble(rf->pble_rsrc, &aeq->palloc);
1349 * irdma_create_aeq - create async event queue
1350 * @rf: RDMA PCI function
1352 * Return 0, if the aeq and the resources associated with it
1353 * are successfully created, otherwise return error
1355 static int irdma_create_aeq(struct irdma_pci_f *rf)
1357 struct irdma_aeq_init_info info = {};
1358 struct irdma_sc_dev *dev = &rf->sc_dev;
1359 struct irdma_aeq *aeq = &rf->aeq;
1360 struct irdma_hmc_info *hmc_info = rf->sc_dev.hmc_info;
1362 u8 multiplier = (rf->protocol_used == IRDMA_IWARP_PROTOCOL_ONLY) ? 2 : 1;
1365 aeq_size = multiplier * hmc_info->hmc_obj[IRDMA_HMC_IW_QP].cnt +
1366 hmc_info->hmc_obj[IRDMA_HMC_IW_CQ].cnt;
1367 aeq_size = min(aeq_size, dev->hw_attrs.max_hw_aeq_size);
1369 aeq->mem.size = ALIGN(sizeof(struct irdma_sc_aeqe) * aeq_size,
1370 IRDMA_AEQ_ALIGNMENT);
1371 aeq->mem.va = dma_alloc_coherent(dev->hw->device, aeq->mem.size,
1373 GFP_KERNEL | __GFP_NOWARN);
1377 /* physically mapped aeq failed. setup virtual aeq */
1378 status = irdma_create_virt_aeq(rf, aeq_size);
1382 info.virtual_map = true;
1383 aeq->virtual_map = info.virtual_map;
1384 info.pbl_chunk_size = 1;
1385 info.first_pm_pbl_idx = aeq->palloc.level1.idx;
1388 info.aeqe_base = aeq->mem.va;
1389 info.aeq_elem_pa = aeq->mem.pa;
1390 info.elem_cnt = aeq_size;
1392 info.msix_idx = rf->iw_msixtbl->idx;
1393 status = irdma_sc_aeq_init(&aeq->sc_aeq, &info);
1397 status = irdma_cqp_aeq_cmd(dev, &aeq->sc_aeq, IRDMA_OP_AEQ_CREATE);
1404 if (aeq->virtual_map) {
1405 irdma_destroy_virt_aeq(rf);
1407 dma_free_coherent(dev->hw->device, aeq->mem.size, aeq->mem.va,
1416 * irdma_setup_aeq - set up the device aeq
1417 * @rf: RDMA PCI function
1419 * Create the aeq and configure its msix interrupt vector
1420 * Return 0 if successful, otherwise return error
1422 static int irdma_setup_aeq(struct irdma_pci_f *rf)
1424 struct irdma_sc_dev *dev = &rf->sc_dev;
1427 status = irdma_create_aeq(rf);
1431 status = irdma_cfg_aeq_vector(rf);
1433 irdma_destroy_aeq(rf);
1437 if (!rf->msix_shared)
1438 irdma_ena_intr(dev, rf->iw_msixtbl[0].idx);
1444 * irdma_initialize_ilq - create iwarp local queue for cm
1445 * @iwdev: irdma device
1447 * Return 0 if successful, otherwise return error
1449 static int irdma_initialize_ilq(struct irdma_device *iwdev)
1451 struct irdma_puda_rsrc_info info = {};
1454 info.type = IRDMA_PUDA_RSRC_TYPE_ILQ;
1459 info.abi_ver = IRDMA_ABI_VER;
1460 info.sq_size = min(iwdev->rf->max_qp / 2, (u32)32768);
1461 info.rq_size = info.sq_size;
1462 info.buf_size = 1024;
1463 info.tx_buf_cnt = 2 * info.sq_size;
1464 info.receive = irdma_receive_ilq;
1465 info.xmit_complete = irdma_free_sqbuf;
1466 status = irdma_puda_create_rsrc(&iwdev->vsi, &info);
1468 ibdev_dbg(&iwdev->ibdev, "ERR: ilq create fail\n");
1474 * irdma_initialize_ieq - create iwarp exception queue
1475 * @iwdev: irdma device
1477 * Return 0 if successful, otherwise return error
1479 static int irdma_initialize_ieq(struct irdma_device *iwdev)
1481 struct irdma_puda_rsrc_info info = {};
1484 info.type = IRDMA_PUDA_RSRC_TYPE_IEQ;
1486 info.qp_id = iwdev->vsi.exception_lan_q;
1489 info.abi_ver = IRDMA_ABI_VER;
1490 info.sq_size = min(iwdev->rf->max_qp / 2, (u32)32768);
1491 info.rq_size = info.sq_size;
1492 info.buf_size = iwdev->vsi.mtu + IRDMA_IPV4_PAD;
1493 info.tx_buf_cnt = 4096;
1494 status = irdma_puda_create_rsrc(&iwdev->vsi, &info);
1496 ibdev_dbg(&iwdev->ibdev, "ERR: ieq create fail\n");
1502 * irdma_reinitialize_ieq - destroy and re-create ieq
1503 * @vsi: VSI structure
1505 void irdma_reinitialize_ieq(struct irdma_sc_vsi *vsi)
1507 struct irdma_device *iwdev = vsi->back_vsi;
1508 struct irdma_pci_f *rf = iwdev->rf;
1510 irdma_puda_dele_rsrc(vsi, IRDMA_PUDA_RSRC_TYPE_IEQ, false);
1511 if (irdma_initialize_ieq(iwdev)) {
1512 iwdev->rf->reset = true;
1513 rf->gen_ops.request_reset(rf);
1518 * irdma_hmc_setup - create hmc objects for the device
1519 * @rf: RDMA PCI function
1521 * Set up the device private memory space for the number and size of
1522 * the hmc objects and create the objects
1523 * Return 0 if successful, otherwise return error
1525 static int irdma_hmc_setup(struct irdma_pci_f *rf)
1530 qpcnt = rsrc_limits_table[rf->limits_sel].qplimit;
1532 rf->sd_type = IRDMA_SD_TYPE_DIRECT;
1533 status = irdma_cfg_fpm_val(&rf->sc_dev, qpcnt);
1537 status = irdma_create_hmc_objs(rf, true, rf->rdma_ver);
1543 * irdma_del_init_mem - deallocate memory resources
1544 * @rf: RDMA PCI function
1546 static void irdma_del_init_mem(struct irdma_pci_f *rf)
1548 struct irdma_sc_dev *dev = &rf->sc_dev;
1550 kfree(dev->hmc_info->sd_table.sd_entry);
1551 dev->hmc_info->sd_table.sd_entry = NULL;
1552 kfree(rf->mem_rsrc);
1553 rf->mem_rsrc = NULL;
1554 dma_free_coherent(rf->hw.device, rf->obj_mem.size, rf->obj_mem.va,
1556 rf->obj_mem.va = NULL;
1557 if (rf->rdma_ver != IRDMA_GEN_1) {
1558 bitmap_free(rf->allocated_ws_nodes);
1559 rf->allocated_ws_nodes = NULL;
1563 kfree(rf->iw_msixtbl);
1564 rf->iw_msixtbl = NULL;
1565 kfree(rf->hmc_info_mem);
1566 rf->hmc_info_mem = NULL;
1570 * irdma_initialize_dev - initialize device
1571 * @rf: RDMA PCI function
1573 * Allocate memory for the hmc objects and initialize iwdev
1574 * Return 0 if successful, otherwise clean up the resources
1577 static int irdma_initialize_dev(struct irdma_pci_f *rf)
1580 struct irdma_sc_dev *dev = &rf->sc_dev;
1581 struct irdma_device_init_info info = {};
1582 struct irdma_dma_mem mem;
1585 size = sizeof(struct irdma_hmc_pble_rsrc) +
1586 sizeof(struct irdma_hmc_info) +
1587 (sizeof(struct irdma_hmc_obj_info) * IRDMA_HMC_IW_MAX);
1589 rf->hmc_info_mem = kzalloc(size, GFP_KERNEL);
1590 if (!rf->hmc_info_mem)
1593 rf->pble_rsrc = (struct irdma_hmc_pble_rsrc *)rf->hmc_info_mem;
1594 dev->hmc_info = &rf->hw.hmc;
1595 dev->hmc_info->hmc_obj = (struct irdma_hmc_obj_info *)
1596 (rf->pble_rsrc + 1);
1598 status = irdma_obj_aligned_mem(rf, &mem, IRDMA_QUERY_FPM_BUF_SIZE,
1599 IRDMA_FPM_QUERY_BUF_ALIGNMENT_M);
1603 info.fpm_query_buf_pa = mem.pa;
1604 info.fpm_query_buf = mem.va;
1606 status = irdma_obj_aligned_mem(rf, &mem, IRDMA_COMMIT_FPM_BUF_SIZE,
1607 IRDMA_FPM_COMMIT_BUF_ALIGNMENT_M);
1611 info.fpm_commit_buf_pa = mem.pa;
1612 info.fpm_commit_buf = mem.va;
1614 info.bar0 = rf->hw.hw_addr;
1615 info.hmc_fn_id = rf->pf_id;
1617 status = irdma_sc_dev_init(rf->rdma_ver, &rf->sc_dev, &info);
1623 kfree(rf->hmc_info_mem);
1624 rf->hmc_info_mem = NULL;
1630 * irdma_rt_deinit_hw - clean up the irdma device resources
1631 * @iwdev: irdma device
1633 * remove the mac ip entry and ipv4/ipv6 addresses, destroy the
1634 * device queues and free the pble and the hmc objects
1636 void irdma_rt_deinit_hw(struct irdma_device *iwdev)
1638 ibdev_dbg(&iwdev->ibdev, "INIT: state = %d\n", iwdev->init_state);
1640 switch (iwdev->init_state) {
1641 case IP_ADDR_REGISTERED:
1642 if (iwdev->rf->sc_dev.hw_attrs.uk_attrs.hw_rev == IRDMA_GEN_1)
1643 irdma_del_local_mac_entry(iwdev->rf,
1644 (u8)iwdev->mac_ip_table_idx);
1647 case PBLE_CHUNK_MEM:
1650 if (!iwdev->roce_mode)
1651 irdma_puda_dele_rsrc(&iwdev->vsi, IRDMA_PUDA_RSRC_TYPE_IEQ,
1655 if (!iwdev->roce_mode)
1656 irdma_puda_dele_rsrc(&iwdev->vsi,
1657 IRDMA_PUDA_RSRC_TYPE_ILQ,
1661 ibdev_warn(&iwdev->ibdev, "bad init_state = %d\n", iwdev->init_state);
1665 irdma_cleanup_cm_core(&iwdev->cm_core);
1666 if (iwdev->vsi.pestat) {
1667 irdma_vsi_stats_free(&iwdev->vsi);
1668 kfree(iwdev->vsi.pestat);
1670 if (iwdev->cleanup_wq)
1671 destroy_workqueue(iwdev->cleanup_wq);
1674 static int irdma_setup_init_state(struct irdma_pci_f *rf)
1678 status = irdma_save_msix_info(rf);
1682 rf->hw.device = &rf->pcidev->dev;
1683 rf->obj_mem.size = ALIGN(8192, IRDMA_HW_PAGE_SIZE);
1684 rf->obj_mem.va = dma_alloc_coherent(rf->hw.device, rf->obj_mem.size,
1685 &rf->obj_mem.pa, GFP_KERNEL);
1686 if (!rf->obj_mem.va) {
1691 rf->obj_next = rf->obj_mem;
1692 status = irdma_initialize_dev(rf);
1699 dma_free_coherent(rf->hw.device, rf->obj_mem.size, rf->obj_mem.va,
1701 rf->obj_mem.va = NULL;
1703 kfree(rf->iw_msixtbl);
1704 rf->iw_msixtbl = NULL;
1709 * irdma_get_used_rsrc - determine resources used internally
1710 * @iwdev: irdma device
1712 * Called at the end of open to get all internal allocations
1714 static void irdma_get_used_rsrc(struct irdma_device *iwdev)
1716 iwdev->rf->used_pds = find_first_zero_bit(iwdev->rf->allocated_pds,
1718 iwdev->rf->used_qps = find_first_zero_bit(iwdev->rf->allocated_qps,
1720 iwdev->rf->used_cqs = find_first_zero_bit(iwdev->rf->allocated_cqs,
1722 iwdev->rf->used_mrs = find_first_zero_bit(iwdev->rf->allocated_mrs,
1726 void irdma_ctrl_deinit_hw(struct irdma_pci_f *rf)
1728 enum init_completion_state state = rf->init_state;
1730 rf->init_state = INVALID_STATE;
1731 if (rf->rsrc_created) {
1732 irdma_destroy_aeq(rf);
1733 irdma_destroy_pble_prm(rf->pble_rsrc);
1735 rf->rsrc_created = false;
1739 irdma_del_ceq_0(rf);
1742 irdma_destroy_ccq(rf);
1744 case HW_RSRC_INITIALIZED:
1745 case HMC_OBJS_CREATED:
1746 irdma_del_hmc_objects(&rf->sc_dev, rf->sc_dev.hmc_info, true,
1747 rf->reset, rf->rdma_ver);
1750 irdma_destroy_cqp(rf, true);
1753 irdma_del_init_mem(rf);
1757 ibdev_warn(&rf->iwdev->ibdev, "bad init_state = %d\n", rf->init_state);
1763 * irdma_rt_init_hw - Initializes runtime portion of HW
1764 * @iwdev: irdma device
1765 * @l2params: qos, tc, mtu info from netdev driver
1767 * Create device queues ILQ, IEQ, CEQs and PBLEs. Setup irdma
1768 * device resource objects.
1770 int irdma_rt_init_hw(struct irdma_device *iwdev,
1771 struct irdma_l2params *l2params)
1773 struct irdma_pci_f *rf = iwdev->rf;
1774 struct irdma_sc_dev *dev = &rf->sc_dev;
1775 struct irdma_vsi_init_info vsi_info = {};
1776 struct irdma_vsi_stats_info stats_info = {};
1780 vsi_info.back_vsi = iwdev;
1781 vsi_info.params = l2params;
1782 vsi_info.pf_data_vsi_num = iwdev->vsi_num;
1783 vsi_info.register_qset = rf->gen_ops.register_qset;
1784 vsi_info.unregister_qset = rf->gen_ops.unregister_qset;
1785 vsi_info.exception_lan_q = 2;
1786 irdma_sc_vsi_init(&iwdev->vsi, &vsi_info);
1788 status = irdma_setup_cm_core(iwdev, rf->rdma_ver);
1792 stats_info.pestat = kzalloc(sizeof(*stats_info.pestat), GFP_KERNEL);
1793 if (!stats_info.pestat) {
1794 irdma_cleanup_cm_core(&iwdev->cm_core);
1797 stats_info.fcn_id = dev->hmc_fn_id;
1798 status = irdma_vsi_stats_init(&iwdev->vsi, &stats_info);
1800 irdma_cleanup_cm_core(&iwdev->cm_core);
1801 kfree(stats_info.pestat);
1806 if (!iwdev->roce_mode) {
1807 status = irdma_initialize_ilq(iwdev);
1810 iwdev->init_state = ILQ_CREATED;
1811 status = irdma_initialize_ieq(iwdev);
1814 iwdev->init_state = IEQ_CREATED;
1816 if (!rf->rsrc_created) {
1817 status = irdma_setup_ceqs(rf, &iwdev->vsi);
1821 iwdev->init_state = CEQS_CREATED;
1823 status = irdma_hmc_init_pble(&rf->sc_dev,
1830 iwdev->init_state = PBLE_CHUNK_MEM;
1832 status = irdma_setup_aeq(rf);
1834 irdma_destroy_pble_prm(rf->pble_rsrc);
1838 iwdev->init_state = AEQ_CREATED;
1839 rf->rsrc_created = true;
1842 if (iwdev->rf->sc_dev.hw_attrs.uk_attrs.hw_rev == IRDMA_GEN_1)
1843 irdma_alloc_set_mac(iwdev);
1844 irdma_add_ip(iwdev);
1845 iwdev->init_state = IP_ADDR_REGISTERED;
1847 /* handles asynch cleanup tasks - disconnect CM , free qp,
1850 iwdev->cleanup_wq = alloc_workqueue("irdma-cleanup-wq",
1851 WQ_UNBOUND, WQ_UNBOUND_MAX_ACTIVE);
1852 if (!iwdev->cleanup_wq)
1854 irdma_get_used_rsrc(iwdev);
1855 init_waitqueue_head(&iwdev->suspend_wq);
1860 dev_err(&rf->pcidev->dev, "HW runtime init FAIL status = %d last cmpl = %d\n",
1861 status, iwdev->init_state);
1862 irdma_rt_deinit_hw(iwdev);
1868 * irdma_ctrl_init_hw - Initializes control portion of HW
1869 * @rf: RDMA PCI function
1871 * Create admin queues, HMC obejcts and RF resource objects
1873 int irdma_ctrl_init_hw(struct irdma_pci_f *rf)
1875 struct irdma_sc_dev *dev = &rf->sc_dev;
1878 status = irdma_setup_init_state(rf);
1881 rf->init_state = INITIAL_STATE;
1883 status = irdma_create_cqp(rf);
1886 rf->init_state = CQP_CREATED;
1888 status = irdma_hmc_setup(rf);
1891 rf->init_state = HMC_OBJS_CREATED;
1893 status = irdma_initialize_hw_rsrc(rf);
1896 rf->init_state = HW_RSRC_INITIALIZED;
1898 status = irdma_create_ccq(rf);
1901 rf->init_state = CCQ_CREATED;
1903 dev->feature_info[IRDMA_FEATURE_FW_INFO] = IRDMA_FW_VER_DEFAULT;
1904 if (rf->rdma_ver != IRDMA_GEN_1) {
1905 status = irdma_get_rdma_features(dev);
1910 status = irdma_setup_ceq_0(rf);
1913 rf->init_state = CEQ0_CREATED;
1914 /* Handles processing of CQP completions */
1916 alloc_ordered_workqueue("cqp_cmpl_wq", WQ_HIGHPRI);
1917 if (!rf->cqp_cmpl_wq) {
1921 INIT_WORK(&rf->cqp_cmpl_work, cqp_compl_worker);
1922 irdma_sc_ccq_arm(dev->ccq);
1926 dev_err(&rf->pcidev->dev, "IRDMA hardware initialization FAILED init_state=%d status=%d\n",
1927 rf->init_state, status);
1928 irdma_ctrl_deinit_hw(rf);
1933 * irdma_set_hw_rsrc - set hw memory resources.
1934 * @rf: RDMA PCI function
1936 static void irdma_set_hw_rsrc(struct irdma_pci_f *rf)
1938 rf->allocated_qps = (void *)(rf->mem_rsrc +
1939 (sizeof(struct irdma_arp_entry) * rf->arp_table_size));
1940 rf->allocated_cqs = &rf->allocated_qps[BITS_TO_LONGS(rf->max_qp)];
1941 rf->allocated_mrs = &rf->allocated_cqs[BITS_TO_LONGS(rf->max_cq)];
1942 rf->allocated_pds = &rf->allocated_mrs[BITS_TO_LONGS(rf->max_mr)];
1943 rf->allocated_ahs = &rf->allocated_pds[BITS_TO_LONGS(rf->max_pd)];
1944 rf->allocated_mcgs = &rf->allocated_ahs[BITS_TO_LONGS(rf->max_ah)];
1945 rf->allocated_arps = &rf->allocated_mcgs[BITS_TO_LONGS(rf->max_mcg)];
1946 rf->qp_table = (struct irdma_qp **)
1947 (&rf->allocated_arps[BITS_TO_LONGS(rf->arp_table_size)]);
1949 spin_lock_init(&rf->rsrc_lock);
1950 spin_lock_init(&rf->arp_lock);
1951 spin_lock_init(&rf->qptable_lock);
1952 spin_lock_init(&rf->qh_list_lock);
1956 * irdma_calc_mem_rsrc_size - calculate memory resources size.
1957 * @rf: RDMA PCI function
1959 static u32 irdma_calc_mem_rsrc_size(struct irdma_pci_f *rf)
1963 rsrc_size = sizeof(struct irdma_arp_entry) * rf->arp_table_size;
1964 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_qp);
1965 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_mr);
1966 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_cq);
1967 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_pd);
1968 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->arp_table_size);
1969 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_ah);
1970 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_mcg);
1971 rsrc_size += sizeof(struct irdma_qp **) * rf->max_qp;
1977 * irdma_initialize_hw_rsrc - initialize hw resource tracking array
1978 * @rf: RDMA PCI function
1980 u32 irdma_initialize_hw_rsrc(struct irdma_pci_f *rf)
1986 if (rf->rdma_ver != IRDMA_GEN_1) {
1987 rf->allocated_ws_nodes = bitmap_zalloc(IRDMA_MAX_WS_NODES,
1989 if (!rf->allocated_ws_nodes)
1992 set_bit(0, rf->allocated_ws_nodes);
1993 rf->max_ws_node_id = IRDMA_MAX_WS_NODES;
1995 rf->max_cqe = rf->sc_dev.hw_attrs.uk_attrs.max_hw_cq_size;
1996 rf->max_qp = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_QP].cnt;
1997 rf->max_mr = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_MR].cnt;
1998 rf->max_cq = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_CQ].cnt;
1999 rf->max_pd = rf->sc_dev.hw_attrs.max_hw_pds;
2000 rf->arp_table_size = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_ARP].cnt;
2001 rf->max_ah = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_FSIAV].cnt;
2002 rf->max_mcg = rf->max_qp;
2004 rsrc_size = irdma_calc_mem_rsrc_size(rf);
2005 rf->mem_rsrc = kzalloc(rsrc_size, GFP_KERNEL);
2006 if (!rf->mem_rsrc) {
2008 goto mem_rsrc_kzalloc_fail;
2011 rf->arp_table = (struct irdma_arp_entry *)rf->mem_rsrc;
2013 irdma_set_hw_rsrc(rf);
2015 set_bit(0, rf->allocated_mrs);
2016 set_bit(0, rf->allocated_qps);
2017 set_bit(0, rf->allocated_cqs);
2018 set_bit(0, rf->allocated_pds);
2019 set_bit(0, rf->allocated_arps);
2020 set_bit(0, rf->allocated_ahs);
2021 set_bit(0, rf->allocated_mcgs);
2022 set_bit(2, rf->allocated_qps); /* qp 2 IEQ */
2023 set_bit(1, rf->allocated_qps); /* qp 1 ILQ */
2024 set_bit(1, rf->allocated_cqs);
2025 set_bit(1, rf->allocated_pds);
2026 set_bit(2, rf->allocated_cqs);
2027 set_bit(2, rf->allocated_pds);
2029 INIT_LIST_HEAD(&rf->mc_qht_list.list);
2030 /* stag index mask has a minimum of 14 bits */
2031 mrdrvbits = 24 - max(get_count_order(rf->max_mr), 14);
2032 rf->mr_stagmask = ~(((1 << mrdrvbits) - 1) << (32 - mrdrvbits));
2036 mem_rsrc_kzalloc_fail:
2037 bitmap_free(rf->allocated_ws_nodes);
2038 rf->allocated_ws_nodes = NULL;
2044 * irdma_cqp_ce_handler - handle cqp completions
2045 * @rf: RDMA PCI function
2046 * @cq: cq for cqp completions
2048 void irdma_cqp_ce_handler(struct irdma_pci_f *rf, struct irdma_sc_cq *cq)
2050 struct irdma_cqp_request *cqp_request;
2051 struct irdma_sc_dev *dev = &rf->sc_dev;
2053 struct irdma_ccq_cqe_info info;
2054 unsigned long flags;
2058 memset(&info, 0, sizeof(info));
2059 spin_lock_irqsave(&rf->cqp.compl_lock, flags);
2060 ret = irdma_sc_ccq_get_cqe_info(cq, &info);
2061 spin_unlock_irqrestore(&rf->cqp.compl_lock, flags);
2065 cqp_request = (struct irdma_cqp_request *)
2066 (unsigned long)info.scratch;
2067 if (info.error && irdma_cqp_crit_err(dev, cqp_request->info.cqp_cmd,
2070 ibdev_err(&rf->iwdev->ibdev, "cqp opcode = 0x%x maj_err_code = 0x%x min_err_code = 0x%x\n",
2071 info.op_code, info.maj_err_code, info.min_err_code);
2073 cqp_request->compl_info.maj_err_code = info.maj_err_code;
2074 cqp_request->compl_info.min_err_code = info.min_err_code;
2075 cqp_request->compl_info.op_ret_val = info.op_ret_val;
2076 cqp_request->compl_info.error = info.error;
2078 if (cqp_request->waiting) {
2079 WRITE_ONCE(cqp_request->request_done, true);
2080 wake_up(&cqp_request->waitq);
2081 irdma_put_cqp_request(&rf->cqp, cqp_request);
2083 if (cqp_request->callback_fcn)
2084 cqp_request->callback_fcn(cqp_request);
2085 irdma_put_cqp_request(&rf->cqp, cqp_request);
2093 irdma_process_bh(dev);
2094 irdma_sc_ccq_arm(cq);
2099 * cqp_compl_worker - Handle cqp completions
2100 * @work: Pointer to work structure
2102 void cqp_compl_worker(struct work_struct *work)
2104 struct irdma_pci_f *rf = container_of(work, struct irdma_pci_f,
2106 struct irdma_sc_cq *cq = &rf->ccq.sc_cq;
2108 irdma_cqp_ce_handler(rf, cq);
2112 * irdma_lookup_apbvt_entry - lookup hash table for an existing apbvt entry corresponding to port
2113 * @cm_core: cm's core
2114 * @port: port to identify apbvt entry
2116 static struct irdma_apbvt_entry *irdma_lookup_apbvt_entry(struct irdma_cm_core *cm_core,
2119 struct irdma_apbvt_entry *entry;
2121 hash_for_each_possible(cm_core->apbvt_hash_tbl, entry, hlist, port) {
2122 if (entry->port == port) {
2132 * irdma_next_iw_state - modify qp state
2133 * @iwqp: iwarp qp to modify
2134 * @state: next state for qp
2135 * @del_hash: del hash
2136 * @term: term message
2137 * @termlen: length of term message
2139 void irdma_next_iw_state(struct irdma_qp *iwqp, u8 state, u8 del_hash, u8 term,
2142 struct irdma_modify_qp_info info = {};
2144 info.next_iwarp_state = state;
2145 info.remove_hash_idx = del_hash;
2146 info.cq_num_valid = true;
2147 info.arp_cache_idx_valid = true;
2148 info.dont_send_term = true;
2149 info.dont_send_fin = true;
2150 info.termlen = termlen;
2152 if (term & IRDMAQP_TERM_SEND_TERM_ONLY)
2153 info.dont_send_term = false;
2154 if (term & IRDMAQP_TERM_SEND_FIN_ONLY)
2155 info.dont_send_fin = false;
2156 if (iwqp->sc_qp.term_flags && state == IRDMA_QP_STATE_ERROR)
2157 info.reset_tcp_conn = true;
2158 iwqp->hw_iwarp_state = state;
2159 irdma_hw_modify_qp(iwqp->iwdev, iwqp, &info, 0);
2160 iwqp->iwarp_state = info.next_iwarp_state;
2164 * irdma_del_local_mac_entry - remove a mac entry from the hw
2166 * @rf: RDMA PCI function
2167 * @idx: the index of the mac ip address to delete
2169 void irdma_del_local_mac_entry(struct irdma_pci_f *rf, u16 idx)
2171 struct irdma_cqp *iwcqp = &rf->cqp;
2172 struct irdma_cqp_request *cqp_request;
2173 struct cqp_cmds_info *cqp_info;
2175 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, true);
2179 cqp_info = &cqp_request->info;
2180 cqp_info->cqp_cmd = IRDMA_OP_DELETE_LOCAL_MAC_ENTRY;
2181 cqp_info->post_sq = 1;
2182 cqp_info->in.u.del_local_mac_entry.cqp = &iwcqp->sc_cqp;
2183 cqp_info->in.u.del_local_mac_entry.scratch = (uintptr_t)cqp_request;
2184 cqp_info->in.u.del_local_mac_entry.entry_idx = idx;
2185 cqp_info->in.u.del_local_mac_entry.ignore_ref_count = 0;
2187 irdma_handle_cqp_op(rf, cqp_request);
2188 irdma_put_cqp_request(iwcqp, cqp_request);
2192 * irdma_add_local_mac_entry - add a mac ip address entry to the
2194 * @rf: RDMA PCI function
2195 * @mac_addr: pointer to mac address
2196 * @idx: the index of the mac ip address to add
2198 int irdma_add_local_mac_entry(struct irdma_pci_f *rf, const u8 *mac_addr, u16 idx)
2200 struct irdma_local_mac_entry_info *info;
2201 struct irdma_cqp *iwcqp = &rf->cqp;
2202 struct irdma_cqp_request *cqp_request;
2203 struct cqp_cmds_info *cqp_info;
2206 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, true);
2210 cqp_info = &cqp_request->info;
2211 cqp_info->post_sq = 1;
2212 info = &cqp_info->in.u.add_local_mac_entry.info;
2213 ether_addr_copy(info->mac_addr, mac_addr);
2214 info->entry_idx = idx;
2215 cqp_info->in.u.add_local_mac_entry.scratch = (uintptr_t)cqp_request;
2216 cqp_info->cqp_cmd = IRDMA_OP_ADD_LOCAL_MAC_ENTRY;
2217 cqp_info->in.u.add_local_mac_entry.cqp = &iwcqp->sc_cqp;
2218 cqp_info->in.u.add_local_mac_entry.scratch = (uintptr_t)cqp_request;
2220 status = irdma_handle_cqp_op(rf, cqp_request);
2221 irdma_put_cqp_request(iwcqp, cqp_request);
2227 * irdma_alloc_local_mac_entry - allocate a mac entry
2228 * @rf: RDMA PCI function
2229 * @mac_tbl_idx: the index of the new mac address
2231 * Allocate a mac address entry and update the mac_tbl_idx
2232 * to hold the index of the newly created mac address
2233 * Return 0 if successful, otherwise return error
2235 int irdma_alloc_local_mac_entry(struct irdma_pci_f *rf, u16 *mac_tbl_idx)
2237 struct irdma_cqp *iwcqp = &rf->cqp;
2238 struct irdma_cqp_request *cqp_request;
2239 struct cqp_cmds_info *cqp_info;
2242 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, true);
2246 cqp_info = &cqp_request->info;
2247 cqp_info->cqp_cmd = IRDMA_OP_ALLOC_LOCAL_MAC_ENTRY;
2248 cqp_info->post_sq = 1;
2249 cqp_info->in.u.alloc_local_mac_entry.cqp = &iwcqp->sc_cqp;
2250 cqp_info->in.u.alloc_local_mac_entry.scratch = (uintptr_t)cqp_request;
2251 status = irdma_handle_cqp_op(rf, cqp_request);
2253 *mac_tbl_idx = (u16)cqp_request->compl_info.op_ret_val;
2255 irdma_put_cqp_request(iwcqp, cqp_request);
2261 * irdma_cqp_manage_apbvt_cmd - send cqp command manage apbvt
2262 * @iwdev: irdma device
2263 * @accel_local_port: port for apbvt
2264 * @add_port: add ordelete port
2266 static int irdma_cqp_manage_apbvt_cmd(struct irdma_device *iwdev,
2267 u16 accel_local_port, bool add_port)
2269 struct irdma_apbvt_info *info;
2270 struct irdma_cqp_request *cqp_request;
2271 struct cqp_cmds_info *cqp_info;
2274 cqp_request = irdma_alloc_and_get_cqp_request(&iwdev->rf->cqp, add_port);
2278 cqp_info = &cqp_request->info;
2279 info = &cqp_info->in.u.manage_apbvt_entry.info;
2280 memset(info, 0, sizeof(*info));
2281 info->add = add_port;
2282 info->port = accel_local_port;
2283 cqp_info->cqp_cmd = IRDMA_OP_MANAGE_APBVT_ENTRY;
2284 cqp_info->post_sq = 1;
2285 cqp_info->in.u.manage_apbvt_entry.cqp = &iwdev->rf->cqp.sc_cqp;
2286 cqp_info->in.u.manage_apbvt_entry.scratch = (uintptr_t)cqp_request;
2287 ibdev_dbg(&iwdev->ibdev, "DEV: %s: port=0x%04x\n",
2288 (!add_port) ? "DELETE" : "ADD", accel_local_port);
2290 status = irdma_handle_cqp_op(iwdev->rf, cqp_request);
2291 irdma_put_cqp_request(&iwdev->rf->cqp, cqp_request);
2297 * irdma_add_apbvt - add tcp port to HW apbvt table
2298 * @iwdev: irdma device
2299 * @port: port for apbvt
2301 struct irdma_apbvt_entry *irdma_add_apbvt(struct irdma_device *iwdev, u16 port)
2303 struct irdma_cm_core *cm_core = &iwdev->cm_core;
2304 struct irdma_apbvt_entry *entry;
2305 unsigned long flags;
2307 spin_lock_irqsave(&cm_core->apbvt_lock, flags);
2308 entry = irdma_lookup_apbvt_entry(cm_core, port);
2310 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2314 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
2316 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2322 hash_add(cm_core->apbvt_hash_tbl, &entry->hlist, entry->port);
2323 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2325 if (irdma_cqp_manage_apbvt_cmd(iwdev, port, true)) {
2334 * irdma_del_apbvt - delete tcp port from HW apbvt table
2335 * @iwdev: irdma device
2336 * @entry: apbvt entry object
2338 void irdma_del_apbvt(struct irdma_device *iwdev,
2339 struct irdma_apbvt_entry *entry)
2341 struct irdma_cm_core *cm_core = &iwdev->cm_core;
2342 unsigned long flags;
2344 spin_lock_irqsave(&cm_core->apbvt_lock, flags);
2345 if (--entry->use_cnt) {
2346 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2350 hash_del(&entry->hlist);
2351 /* apbvt_lock is held across CQP delete APBVT OP (non-waiting) to
2352 * protect against race where add APBVT CQP can race ahead of the delete
2353 * APBVT for same port.
2355 irdma_cqp_manage_apbvt_cmd(iwdev, entry->port, false);
2357 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2361 * irdma_manage_arp_cache - manage hw arp cache
2362 * @rf: RDMA PCI function
2363 * @mac_addr: mac address ptr
2364 * @ip_addr: ip addr for arp cache
2365 * @ipv4: flag inicating IPv4
2366 * @action: add, delete or modify
2368 void irdma_manage_arp_cache(struct irdma_pci_f *rf,
2369 const unsigned char *mac_addr,
2370 u32 *ip_addr, bool ipv4, u32 action)
2372 struct irdma_add_arp_cache_entry_info *info;
2373 struct irdma_cqp_request *cqp_request;
2374 struct cqp_cmds_info *cqp_info;
2377 arp_index = irdma_arp_table(rf, ip_addr, ipv4, mac_addr, action);
2378 if (arp_index == -1)
2381 cqp_request = irdma_alloc_and_get_cqp_request(&rf->cqp, false);
2385 cqp_info = &cqp_request->info;
2386 if (action == IRDMA_ARP_ADD) {
2387 cqp_info->cqp_cmd = IRDMA_OP_ADD_ARP_CACHE_ENTRY;
2388 info = &cqp_info->in.u.add_arp_cache_entry.info;
2389 memset(info, 0, sizeof(*info));
2390 info->arp_index = (u16)arp_index;
2391 info->permanent = true;
2392 ether_addr_copy(info->mac_addr, mac_addr);
2393 cqp_info->in.u.add_arp_cache_entry.scratch =
2394 (uintptr_t)cqp_request;
2395 cqp_info->in.u.add_arp_cache_entry.cqp = &rf->cqp.sc_cqp;
2397 cqp_info->cqp_cmd = IRDMA_OP_DELETE_ARP_CACHE_ENTRY;
2398 cqp_info->in.u.del_arp_cache_entry.scratch =
2399 (uintptr_t)cqp_request;
2400 cqp_info->in.u.del_arp_cache_entry.cqp = &rf->cqp.sc_cqp;
2401 cqp_info->in.u.del_arp_cache_entry.arp_index = arp_index;
2404 cqp_info->post_sq = 1;
2405 irdma_handle_cqp_op(rf, cqp_request);
2406 irdma_put_cqp_request(&rf->cqp, cqp_request);
2410 * irdma_send_syn_cqp_callback - do syn/ack after qhash
2411 * @cqp_request: qhash cqp completion
2413 static void irdma_send_syn_cqp_callback(struct irdma_cqp_request *cqp_request)
2415 struct irdma_cm_node *cm_node = cqp_request->param;
2417 irdma_send_syn(cm_node, 1);
2418 irdma_rem_ref_cm_node(cm_node);
2422 * irdma_manage_qhash - add or modify qhash
2423 * @iwdev: irdma device
2424 * @cminfo: cm info for qhash
2425 * @etype: type (syn or quad)
2426 * @mtype: type of qhash
2427 * @cmnode: cmnode associated with connection
2428 * @wait: wait for completion
2430 int irdma_manage_qhash(struct irdma_device *iwdev, struct irdma_cm_info *cminfo,
2431 enum irdma_quad_entry_type etype,
2432 enum irdma_quad_hash_manage_type mtype, void *cmnode,
2435 struct irdma_qhash_table_info *info;
2436 struct irdma_cqp *iwcqp = &iwdev->rf->cqp;
2437 struct irdma_cqp_request *cqp_request;
2438 struct cqp_cmds_info *cqp_info;
2439 struct irdma_cm_node *cm_node = cmnode;
2442 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, wait);
2446 cqp_info = &cqp_request->info;
2447 info = &cqp_info->in.u.manage_qhash_table_entry.info;
2448 memset(info, 0, sizeof(*info));
2449 info->vsi = &iwdev->vsi;
2450 info->manage = mtype;
2451 info->entry_type = etype;
2452 if (cminfo->vlan_id < VLAN_N_VID) {
2453 info->vlan_valid = true;
2454 info->vlan_id = cminfo->vlan_id;
2456 info->vlan_valid = false;
2458 info->ipv4_valid = cminfo->ipv4;
2459 info->user_pri = cminfo->user_pri;
2460 ether_addr_copy(info->mac_addr, iwdev->netdev->dev_addr);
2461 info->qp_num = cminfo->qh_qpid;
2462 info->dest_port = cminfo->loc_port;
2463 info->dest_ip[0] = cminfo->loc_addr[0];
2464 info->dest_ip[1] = cminfo->loc_addr[1];
2465 info->dest_ip[2] = cminfo->loc_addr[2];
2466 info->dest_ip[3] = cminfo->loc_addr[3];
2467 if (etype == IRDMA_QHASH_TYPE_TCP_ESTABLISHED ||
2468 etype == IRDMA_QHASH_TYPE_UDP_UNICAST ||
2469 etype == IRDMA_QHASH_TYPE_UDP_MCAST ||
2470 etype == IRDMA_QHASH_TYPE_ROCE_MCAST ||
2471 etype == IRDMA_QHASH_TYPE_ROCEV2_HW) {
2472 info->src_port = cminfo->rem_port;
2473 info->src_ip[0] = cminfo->rem_addr[0];
2474 info->src_ip[1] = cminfo->rem_addr[1];
2475 info->src_ip[2] = cminfo->rem_addr[2];
2476 info->src_ip[3] = cminfo->rem_addr[3];
2479 cqp_request->callback_fcn = irdma_send_syn_cqp_callback;
2480 cqp_request->param = cmnode;
2482 refcount_inc(&cm_node->refcnt);
2484 if (info->ipv4_valid)
2485 ibdev_dbg(&iwdev->ibdev,
2486 "CM: %s caller: %pS loc_port=0x%04x rem_port=0x%04x loc_addr=%pI4 rem_addr=%pI4 mac=%pM, vlan_id=%d cm_node=%p\n",
2487 (!mtype) ? "DELETE" : "ADD",
2488 __builtin_return_address(0), info->dest_port,
2489 info->src_port, info->dest_ip, info->src_ip,
2490 info->mac_addr, cminfo->vlan_id,
2491 cmnode ? cmnode : NULL);
2493 ibdev_dbg(&iwdev->ibdev,
2494 "CM: %s caller: %pS loc_port=0x%04x rem_port=0x%04x loc_addr=%pI6 rem_addr=%pI6 mac=%pM, vlan_id=%d cm_node=%p\n",
2495 (!mtype) ? "DELETE" : "ADD",
2496 __builtin_return_address(0), info->dest_port,
2497 info->src_port, info->dest_ip, info->src_ip,
2498 info->mac_addr, cminfo->vlan_id,
2499 cmnode ? cmnode : NULL);
2501 cqp_info->in.u.manage_qhash_table_entry.cqp = &iwdev->rf->cqp.sc_cqp;
2502 cqp_info->in.u.manage_qhash_table_entry.scratch = (uintptr_t)cqp_request;
2503 cqp_info->cqp_cmd = IRDMA_OP_MANAGE_QHASH_TABLE_ENTRY;
2504 cqp_info->post_sq = 1;
2505 status = irdma_handle_cqp_op(iwdev->rf, cqp_request);
2506 if (status && cm_node && !wait)
2507 irdma_rem_ref_cm_node(cm_node);
2509 irdma_put_cqp_request(iwcqp, cqp_request);
2515 * irdma_hw_flush_wqes_callback - Check return code after flush
2516 * @cqp_request: qhash cqp completion
2518 static void irdma_hw_flush_wqes_callback(struct irdma_cqp_request *cqp_request)
2520 struct irdma_qp_flush_info *hw_info;
2521 struct irdma_sc_qp *qp;
2522 struct irdma_qp *iwqp;
2523 struct cqp_cmds_info *cqp_info;
2525 cqp_info = &cqp_request->info;
2526 hw_info = &cqp_info->in.u.qp_flush_wqes.info;
2527 qp = cqp_info->in.u.qp_flush_wqes.qp;
2528 iwqp = qp->qp_uk.back_qp;
2530 if (cqp_request->compl_info.maj_err_code)
2534 (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_SQ_WQE_FLUSHED ||
2535 cqp_request->compl_info.min_err_code == 0)) {
2536 /* RQ WQE flush was requested but did not happen */
2537 qp->qp_uk.rq_flush_complete = true;
2540 (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_RQ_WQE_FLUSHED ||
2541 cqp_request->compl_info.min_err_code == 0)) {
2542 if (IRDMA_RING_MORE_WORK(qp->qp_uk.sq_ring)) {
2543 ibdev_err(&iwqp->iwdev->ibdev, "Flush QP[%d] failed, SQ has more work",
2545 irdma_ib_qp_event(iwqp, IRDMA_QP_EVENT_CATASTROPHIC);
2547 qp->qp_uk.sq_flush_complete = true;
2552 * irdma_hw_flush_wqes - flush qp's wqe
2553 * @rf: RDMA PCI function
2554 * @qp: hardware control qp
2555 * @info: info for flush
2556 * @wait: flag wait for completion
2558 int irdma_hw_flush_wqes(struct irdma_pci_f *rf, struct irdma_sc_qp *qp,
2559 struct irdma_qp_flush_info *info, bool wait)
2562 struct irdma_qp_flush_info *hw_info;
2563 struct irdma_cqp_request *cqp_request;
2564 struct cqp_cmds_info *cqp_info;
2565 struct irdma_qp *iwqp = qp->qp_uk.back_qp;
2567 cqp_request = irdma_alloc_and_get_cqp_request(&rf->cqp, wait);
2571 cqp_info = &cqp_request->info;
2573 cqp_request->callback_fcn = irdma_hw_flush_wqes_callback;
2574 hw_info = &cqp_request->info.in.u.qp_flush_wqes.info;
2575 memcpy(hw_info, info, sizeof(*hw_info));
2576 cqp_info->cqp_cmd = IRDMA_OP_QP_FLUSH_WQES;
2577 cqp_info->post_sq = 1;
2578 cqp_info->in.u.qp_flush_wqes.qp = qp;
2579 cqp_info->in.u.qp_flush_wqes.scratch = (uintptr_t)cqp_request;
2580 status = irdma_handle_cqp_op(rf, cqp_request);
2582 qp->qp_uk.sq_flush_complete = true;
2583 qp->qp_uk.rq_flush_complete = true;
2584 irdma_put_cqp_request(&rf->cqp, cqp_request);
2588 if (!wait || cqp_request->compl_info.maj_err_code)
2592 if (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_SQ_WQE_FLUSHED ||
2593 cqp_request->compl_info.min_err_code == 0) {
2594 /* RQ WQE flush was requested but did not happen */
2595 qp->qp_uk.rq_flush_complete = true;
2599 if (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_RQ_WQE_FLUSHED ||
2600 cqp_request->compl_info.min_err_code == 0) {
2602 * Handling case where WQE is posted to empty SQ when
2603 * flush has not completed
2605 if (IRDMA_RING_MORE_WORK(qp->qp_uk.sq_ring)) {
2606 struct irdma_cqp_request *new_req;
2608 if (!qp->qp_uk.sq_flush_complete)
2610 qp->qp_uk.sq_flush_complete = false;
2611 qp->flush_sq = false;
2615 new_req = irdma_alloc_and_get_cqp_request(&rf->cqp, true);
2620 cqp_info = &new_req->info;
2621 hw_info = &new_req->info.in.u.qp_flush_wqes.info;
2622 memcpy(hw_info, info, sizeof(*hw_info));
2623 cqp_info->cqp_cmd = IRDMA_OP_QP_FLUSH_WQES;
2624 cqp_info->post_sq = 1;
2625 cqp_info->in.u.qp_flush_wqes.qp = qp;
2626 cqp_info->in.u.qp_flush_wqes.scratch = (uintptr_t)new_req;
2628 status = irdma_handle_cqp_op(rf, new_req);
2629 if (new_req->compl_info.maj_err_code ||
2630 new_req->compl_info.min_err_code != IRDMA_CQP_COMPL_SQ_WQE_FLUSHED ||
2632 ibdev_err(&iwqp->iwdev->ibdev, "fatal QP event: SQ in error but not flushed, qp: %d",
2634 qp->qp_uk.sq_flush_complete = false;
2635 irdma_ib_qp_event(iwqp, IRDMA_QP_EVENT_CATASTROPHIC);
2637 irdma_put_cqp_request(&rf->cqp, new_req);
2639 /* SQ WQE flush was requested but did not happen */
2640 qp->qp_uk.sq_flush_complete = true;
2643 if (!IRDMA_RING_MORE_WORK(qp->qp_uk.sq_ring))
2644 qp->qp_uk.sq_flush_complete = true;
2648 ibdev_dbg(&rf->iwdev->ibdev,
2649 "VERBS: qp_id=%d qp_type=%d qpstate=%d ibqpstate=%d last_aeq=%d hw_iw_state=%d maj_err_code=%d min_err_code=%d\n",
2650 iwqp->ibqp.qp_num, rf->protocol_used, iwqp->iwarp_state,
2651 iwqp->ibqp_state, iwqp->last_aeq, iwqp->hw_iwarp_state,
2652 cqp_request->compl_info.maj_err_code,
2653 cqp_request->compl_info.min_err_code);
2655 irdma_put_cqp_request(&rf->cqp, cqp_request);
2661 * irdma_gen_ae - generate AE
2662 * @rf: RDMA PCI function
2663 * @qp: qp associated with AE
2664 * @info: info for ae
2665 * @wait: wait for completion
2667 void irdma_gen_ae(struct irdma_pci_f *rf, struct irdma_sc_qp *qp,
2668 struct irdma_gen_ae_info *info, bool wait)
2670 struct irdma_gen_ae_info *ae_info;
2671 struct irdma_cqp_request *cqp_request;
2672 struct cqp_cmds_info *cqp_info;
2674 cqp_request = irdma_alloc_and_get_cqp_request(&rf->cqp, wait);
2678 cqp_info = &cqp_request->info;
2679 ae_info = &cqp_request->info.in.u.gen_ae.info;
2680 memcpy(ae_info, info, sizeof(*ae_info));
2681 cqp_info->cqp_cmd = IRDMA_OP_GEN_AE;
2682 cqp_info->post_sq = 1;
2683 cqp_info->in.u.gen_ae.qp = qp;
2684 cqp_info->in.u.gen_ae.scratch = (uintptr_t)cqp_request;
2686 irdma_handle_cqp_op(rf, cqp_request);
2687 irdma_put_cqp_request(&rf->cqp, cqp_request);
2690 void irdma_flush_wqes(struct irdma_qp *iwqp, u32 flush_mask)
2692 struct irdma_qp_flush_info info = {};
2693 struct irdma_pci_f *rf = iwqp->iwdev->rf;
2694 u8 flush_code = iwqp->sc_qp.flush_code;
2696 if (!(flush_mask & IRDMA_FLUSH_SQ) && !(flush_mask & IRDMA_FLUSH_RQ))
2699 /* Set flush info fields*/
2700 info.sq = flush_mask & IRDMA_FLUSH_SQ;
2701 info.rq = flush_mask & IRDMA_FLUSH_RQ;
2703 /* Generate userflush errors in CQE */
2704 info.sq_major_code = IRDMA_FLUSH_MAJOR_ERR;
2705 info.sq_minor_code = FLUSH_GENERAL_ERR;
2706 info.rq_major_code = IRDMA_FLUSH_MAJOR_ERR;
2707 info.rq_minor_code = FLUSH_GENERAL_ERR;
2708 info.userflushcode = true;
2710 if (flush_mask & IRDMA_REFLUSH) {
2712 iwqp->sc_qp.flush_sq = false;
2714 iwqp->sc_qp.flush_rq = false;
2717 if (info.sq && iwqp->sc_qp.sq_flush_code)
2718 info.sq_minor_code = flush_code;
2719 if (info.rq && iwqp->sc_qp.rq_flush_code)
2720 info.rq_minor_code = flush_code;
2722 if (!iwqp->user_mode)
2723 queue_delayed_work(iwqp->iwdev->cleanup_wq,
2725 msecs_to_jiffies(IRDMA_FLUSH_DELAY_MS));
2729 (void)irdma_hw_flush_wqes(rf, &iwqp->sc_qp, &info,
2730 flush_mask & IRDMA_FLUSH_WAIT);
2731 iwqp->flush_issued = true;