1 // SPDX-License-Identifier: GPL-2.0 or Linux-OpenIB
2 /* Copyright (c) 2015 - 2021 Intel Corporation */
3 #include "main.h"
4
5 static struct irdma_rsrc_limits rsrc_limits_table[] = {
6 [0] = {
7 .qplimit = SZ_128,
8 },
9 [1] = {
10 .qplimit = SZ_1K,
11 },
12 [2] = {
13 .qplimit = SZ_2K,
14 },
15 [3] = {
16 .qplimit = SZ_4K,
17 },
18 [4] = {
19 .qplimit = SZ_16K,
20 },
21 [5] = {
22 .qplimit = SZ_64K,
23 },
24 [6] = {
25 .qplimit = SZ_128K,
26 },
27 [7] = {
28 .qplimit = SZ_256K,
29 },
30 };
31
32 /* types of hmc objects */
33 static enum irdma_hmc_rsrc_type iw_hmc_obj_types[] = {
34 IRDMA_HMC_IW_QP,
35 IRDMA_HMC_IW_CQ,
36 IRDMA_HMC_IW_HTE,
37 IRDMA_HMC_IW_ARP,
38 IRDMA_HMC_IW_APBVT_ENTRY,
39 IRDMA_HMC_IW_MR,
40 IRDMA_HMC_IW_XF,
41 IRDMA_HMC_IW_XFFL,
42 IRDMA_HMC_IW_Q1,
43 IRDMA_HMC_IW_Q1FL,
44 IRDMA_HMC_IW_PBLE,
45 IRDMA_HMC_IW_TIMER,
46 IRDMA_HMC_IW_FSIMC,
47 IRDMA_HMC_IW_FSIAV,
48 IRDMA_HMC_IW_RRF,
49 IRDMA_HMC_IW_RRFFL,
50 IRDMA_HMC_IW_HDR,
51 IRDMA_HMC_IW_MD,
52 IRDMA_HMC_IW_OOISC,
53 IRDMA_HMC_IW_OOISCFFL,
54 };
55
56 /**
57 * irdma_iwarp_ce_handler - handle iwarp completions
58 * @iwcq: iwarp cq receiving event
59 */
irdma_iwarp_ce_handler(struct irdma_sc_cq * iwcq)60 static void irdma_iwarp_ce_handler(struct irdma_sc_cq *iwcq)
61 {
62 struct irdma_cq *cq = iwcq->back_cq;
63
64 if (!cq->user_mode)
65 atomic_set(&cq->armed, 0);
66 if (cq->ibcq.comp_handler)
67 cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context);
68 }
69
70 /**
71 * irdma_puda_ce_handler - handle puda completion events
72 * @rf: RDMA PCI function
73 * @cq: puda completion q for event
74 */
irdma_puda_ce_handler(struct irdma_pci_f * rf,struct irdma_sc_cq * cq)75 static void irdma_puda_ce_handler(struct irdma_pci_f *rf,
76 struct irdma_sc_cq *cq)
77 {
78 struct irdma_sc_dev *dev = &rf->sc_dev;
79 enum irdma_status_code status;
80 u32 compl_error;
81
82 do {
83 status = irdma_puda_poll_cmpl(dev, cq, &compl_error);
84 if (status == IRDMA_ERR_Q_EMPTY)
85 break;
86 if (status) {
87 ibdev_dbg(to_ibdev(dev), "ERR: puda status = %d\n", status);
88 break;
89 }
90 if (compl_error) {
91 ibdev_dbg(to_ibdev(dev), "ERR: puda compl_err =0x%x\n",
92 compl_error);
93 break;
94 }
95 } while (1);
96
97 irdma_sc_ccq_arm(cq);
98 }
99
100 /**
101 * irdma_process_ceq - handle ceq for completions
102 * @rf: RDMA PCI function
103 * @ceq: ceq having cq for completion
104 */
irdma_process_ceq(struct irdma_pci_f * rf,struct irdma_ceq * ceq)105 static void irdma_process_ceq(struct irdma_pci_f *rf, struct irdma_ceq *ceq)
106 {
107 struct irdma_sc_dev *dev = &rf->sc_dev;
108 struct irdma_sc_ceq *sc_ceq;
109 struct irdma_sc_cq *cq;
110 unsigned long flags;
111
112 sc_ceq = &ceq->sc_ceq;
113 do {
114 spin_lock_irqsave(&ceq->ce_lock, flags);
115 cq = irdma_sc_process_ceq(dev, sc_ceq);
116 if (!cq) {
117 spin_unlock_irqrestore(&ceq->ce_lock, flags);
118 break;
119 }
120
121 if (cq->cq_type == IRDMA_CQ_TYPE_IWARP)
122 irdma_iwarp_ce_handler(cq);
123
124 spin_unlock_irqrestore(&ceq->ce_lock, flags);
125
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);
131 } while (1);
132 }
133
irdma_set_flush_fields(struct irdma_sc_qp * qp,struct irdma_aeqe_info * info)134 static void irdma_set_flush_fields(struct irdma_sc_qp *qp,
135 struct irdma_aeqe_info *info)
136 {
137 qp->sq_flush_code = info->sq;
138 qp->rq_flush_code = info->rq;
139 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
140
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;
154 break;
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;
159 break;
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;
167 break;
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;
172 break;
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;
179 break;
180 case IRDMA_AE_LCE_QP_CATASTROPHIC:
181 qp->flush_code = FLUSH_FATAL_ERR;
182 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
183 break;
184 case IRDMA_AE_IB_RREQ_AND_Q1_FULL:
185 qp->flush_code = FLUSH_GENERAL_ERR;
186 break;
187 case IRDMA_AE_LLP_TOO_MANY_RETRIES:
188 qp->flush_code = FLUSH_RETRY_EXC_ERR;
189 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
190 break;
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;
197 break;
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;
201 break;
202 default:
203 qp->flush_code = FLUSH_GENERAL_ERR;
204 qp->event_type = IRDMA_QP_EVENT_CATASTROPHIC;
205 break;
206 }
207 }
208
209 /**
210 * irdma_process_aeq - handle aeq events
211 * @rf: RDMA PCI function
212 */
irdma_process_aeq(struct irdma_pci_f * rf)213 static void irdma_process_aeq(struct irdma_pci_f *rf)
214 {
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;
220 int ret;
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;
227 unsigned long flags;
228
229 u32 aeqcnt = 0;
230
231 if (!sc_aeq->size)
232 return;
233
234 do {
235 memset(info, 0, sizeof(*info));
236 ret = irdma_sc_get_next_aeqe(sc_aeq, info);
237 if (ret)
238 break;
239
240 aeqcnt++;
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);
245
246 if (info->qp) {
247 spin_lock_irqsave(&rf->qptable_lock, flags);
248 iwqp = rf->qp_table[info->qp_cq_id];
249 if (!iwqp) {
250 spin_unlock_irqrestore(&rf->qptable_lock,
251 flags);
252 if (info->ae_id == IRDMA_AE_QP_SUSPEND_COMPLETE) {
253 atomic_dec(&iwdev->vsi.qp_suspend_reqs);
254 wake_up(&iwdev->suspend_wq);
255 continue;
256 }
257 ibdev_dbg(&iwdev->ibdev, "AEQ: qp_id %d is already freed\n",
258 info->qp_cq_id);
259 continue;
260 }
261 irdma_qp_add_ref(&iwqp->ibqp);
262 spin_unlock_irqrestore(&rf->qptable_lock, flags);
263 qp = &iwqp->sc_qp;
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;
271 } else {
272 if (info->ae_id != IRDMA_AE_CQ_OPERATION_ERROR)
273 continue;
274 }
275
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;
283 }
284 iwqp->rts_ae_rcvd = 1;
285 wake_up_interruptible(&iwqp->waitq);
286 break;
287 case IRDMA_AE_LLP_FIN_RECEIVED:
288 case IRDMA_AE_RDMAP_ROE_BAD_LLP_CLOSE:
289 if (qp->term_flags)
290 break;
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,
297 0, 0, 0);
298 irdma_cm_disconn(iwqp);
299 }
300 irdma_schedule_cm_timer(iwqp->cm_node,
301 (struct irdma_puda_buf *)iwqp,
302 IRDMA_TIMER_TYPE_CLOSE,
303 1, 0);
304 }
305 break;
306 case IRDMA_AE_LLP_CLOSE_COMPLETE:
307 if (qp->term_flags)
308 irdma_terminate_done(qp, 0);
309 else
310 irdma_cm_disconn(iwqp);
311 break;
312 case IRDMA_AE_BAD_CLOSE:
313 case IRDMA_AE_RESET_SENT:
314 irdma_next_iw_state(iwqp, IRDMA_QP_STATE_ERROR, 1, 0,
315 0);
316 irdma_cm_disconn(iwqp);
317 break;
318 case IRDMA_AE_LLP_CONNECTION_RESET:
319 if (atomic_read(&iwqp->close_timer_started))
320 break;
321 irdma_cm_disconn(iwqp);
322 break;
323 case IRDMA_AE_QP_SUSPEND_COMPLETE:
324 if (iwqp->iwdev->vsi.tc_change_pending) {
325 if (!atomic_dec_return(&qp->vsi->qp_suspend_reqs))
326 wake_up(&iwqp->iwdev->suspend_wq);
327 }
328 if (iwqp->suspend_pending) {
329 iwqp->suspend_pending = false;
330 wake_up(&iwqp->iwdev->suspend_wq);
331 }
332 break;
333 case IRDMA_AE_TERMINATE_SENT:
334 irdma_terminate_send_fin(qp);
335 break;
336 case IRDMA_AE_LLP_TERMINATE_RECEIVED:
337 irdma_terminate_received(qp, info);
338 break;
339 case IRDMA_AE_CQ_OPERATION_ERROR:
340 ibdev_err(&iwdev->ibdev,
341 "Processing an iWARP related AE for CQ misc = 0x%04X\n",
342 info->ae_id);
343 cq = (struct irdma_sc_cq *)(unsigned long)
344 info->compl_ctx;
345
346 iwcq = cq->back_cq;
347
348 if (iwcq->ibcq.event_handler) {
349 struct ib_event ibevent;
350
351 ibevent.device = iwcq->ibcq.device;
352 ibevent.event = IB_EVENT_CQ_ERR;
353 ibevent.element.cq = &iwcq->ibcq;
354 iwcq->ibcq.event_handler(&ibevent,
355 iwcq->ibcq.cq_context);
356 }
357 break;
358 case IRDMA_AE_RESET_NOT_SENT:
359 case IRDMA_AE_LLP_DOUBT_REACHABILITY:
360 case IRDMA_AE_RESOURCE_EXHAUSTION:
361 break;
362 case IRDMA_AE_PRIV_OPERATION_DENIED:
363 case IRDMA_AE_STAG_ZERO_INVALID:
364 case IRDMA_AE_IB_RREQ_AND_Q1_FULL:
365 case IRDMA_AE_DDP_UBE_INVALID_DDP_VERSION:
366 case IRDMA_AE_DDP_UBE_INVALID_MO:
367 case IRDMA_AE_DDP_UBE_INVALID_QN:
368 case IRDMA_AE_DDP_NO_L_BIT:
369 case IRDMA_AE_RDMAP_ROE_INVALID_RDMAP_VERSION:
370 case IRDMA_AE_RDMAP_ROE_UNEXPECTED_OPCODE:
371 case IRDMA_AE_ROE_INVALID_RDMA_READ_REQUEST:
372 case IRDMA_AE_ROE_INVALID_RDMA_WRITE_OR_READ_RESP:
373 case IRDMA_AE_INVALID_ARP_ENTRY:
374 case IRDMA_AE_INVALID_TCP_OPTION_RCVD:
375 case IRDMA_AE_STALE_ARP_ENTRY:
376 case IRDMA_AE_LLP_RECEIVED_MPA_CRC_ERROR:
377 case IRDMA_AE_LLP_SEGMENT_TOO_SMALL:
378 case IRDMA_AE_LLP_SYN_RECEIVED:
379 case IRDMA_AE_LLP_TOO_MANY_RETRIES:
380 case IRDMA_AE_LCE_QP_CATASTROPHIC:
381 case IRDMA_AE_LCE_FUNCTION_CATASTROPHIC:
382 case IRDMA_AE_LLP_TOO_MANY_RNRS:
383 case IRDMA_AE_LCE_CQ_CATASTROPHIC:
384 case IRDMA_AE_UDA_XMIT_DGRAM_TOO_LONG:
385 default:
386 ibdev_err(&iwdev->ibdev, "abnormal ae_id = 0x%x bool qp=%d qp_id = %d\n",
387 info->ae_id, info->qp, info->qp_cq_id);
388 if (rdma_protocol_roce(&iwdev->ibdev, 1)) {
389 ctx_info->roce_info->err_rq_idx_valid = info->rq;
390 if (info->rq) {
391 ctx_info->roce_info->err_rq_idx = info->wqe_idx;
392 irdma_sc_qp_setctx_roce(&iwqp->sc_qp, iwqp->host_ctx.va,
393 ctx_info);
394 }
395 irdma_set_flush_fields(qp, info);
396 irdma_cm_disconn(iwqp);
397 break;
398 }
399 ctx_info->iwarp_info->err_rq_idx_valid = info->rq;
400 if (info->rq) {
401 ctx_info->iwarp_info->err_rq_idx = info->wqe_idx;
402 ctx_info->tcp_info_valid = false;
403 ctx_info->iwarp_info_valid = true;
404 irdma_sc_qp_setctx(&iwqp->sc_qp, iwqp->host_ctx.va,
405 ctx_info);
406 }
407 if (iwqp->hw_iwarp_state != IRDMA_QP_STATE_RTS &&
408 iwqp->hw_iwarp_state != IRDMA_QP_STATE_TERMINATE) {
409 irdma_next_iw_state(iwqp, IRDMA_QP_STATE_ERROR, 1, 0, 0);
410 irdma_cm_disconn(iwqp);
411 } else {
412 irdma_terminate_connection(qp, info);
413 }
414 break;
415 }
416 if (info->qp)
417 irdma_qp_rem_ref(&iwqp->ibqp);
418 } while (1);
419
420 if (aeqcnt)
421 irdma_sc_repost_aeq_entries(dev, aeqcnt);
422 }
423
424 /**
425 * irdma_ena_intr - set up device interrupts
426 * @dev: hardware control device structure
427 * @msix_id: id of the interrupt to be enabled
428 */
irdma_ena_intr(struct irdma_sc_dev * dev,u32 msix_id)429 static void irdma_ena_intr(struct irdma_sc_dev *dev, u32 msix_id)
430 {
431 dev->irq_ops->irdma_en_irq(dev, msix_id);
432 }
433
434 /**
435 * irdma_dpc - tasklet for aeq and ceq 0
436 * @t: tasklet_struct ptr
437 */
irdma_dpc(struct tasklet_struct * t)438 static void irdma_dpc(struct tasklet_struct *t)
439 {
440 struct irdma_pci_f *rf = from_tasklet(rf, t, dpc_tasklet);
441
442 if (rf->msix_shared)
443 irdma_process_ceq(rf, rf->ceqlist);
444 irdma_process_aeq(rf);
445 irdma_ena_intr(&rf->sc_dev, rf->iw_msixtbl[0].idx);
446 }
447
448 /**
449 * irdma_ceq_dpc - dpc handler for CEQ
450 * @t: tasklet_struct ptr
451 */
irdma_ceq_dpc(struct tasklet_struct * t)452 static void irdma_ceq_dpc(struct tasklet_struct *t)
453 {
454 struct irdma_ceq *iwceq = from_tasklet(iwceq, t, dpc_tasklet);
455 struct irdma_pci_f *rf = iwceq->rf;
456
457 irdma_process_ceq(rf, iwceq);
458 irdma_ena_intr(&rf->sc_dev, iwceq->msix_idx);
459 }
460
461 /**
462 * irdma_save_msix_info - copy msix vector information to iwarp device
463 * @rf: RDMA PCI function
464 *
465 * Allocate iwdev msix table and copy the msix info to the table
466 * Return 0 if successful, otherwise return error
467 */
irdma_save_msix_info(struct irdma_pci_f * rf)468 static enum irdma_status_code irdma_save_msix_info(struct irdma_pci_f *rf)
469 {
470 struct irdma_qvlist_info *iw_qvlist;
471 struct irdma_qv_info *iw_qvinfo;
472 struct msix_entry *pmsix;
473 u32 ceq_idx;
474 u32 i;
475 size_t size;
476
477 if (!rf->msix_count)
478 return IRDMA_ERR_NO_INTR;
479
480 size = sizeof(struct irdma_msix_vector) * rf->msix_count;
481 size += struct_size(iw_qvlist, qv_info, rf->msix_count);
482 rf->iw_msixtbl = kzalloc(size, GFP_KERNEL);
483 if (!rf->iw_msixtbl)
484 return IRDMA_ERR_NO_MEMORY;
485
486 rf->iw_qvlist = (struct irdma_qvlist_info *)
487 (&rf->iw_msixtbl[rf->msix_count]);
488 iw_qvlist = rf->iw_qvlist;
489 iw_qvinfo = iw_qvlist->qv_info;
490 iw_qvlist->num_vectors = rf->msix_count;
491 if (rf->msix_count <= num_online_cpus())
492 rf->msix_shared = true;
493 else if (rf->msix_count > num_online_cpus() + 1)
494 rf->msix_count = num_online_cpus() + 1;
495
496 pmsix = rf->msix_entries;
497 for (i = 0, ceq_idx = 0; i < rf->msix_count; i++, iw_qvinfo++) {
498 rf->iw_msixtbl[i].idx = pmsix->entry;
499 rf->iw_msixtbl[i].irq = pmsix->vector;
500 rf->iw_msixtbl[i].cpu_affinity = ceq_idx;
501 if (!i) {
502 iw_qvinfo->aeq_idx = 0;
503 if (rf->msix_shared)
504 iw_qvinfo->ceq_idx = ceq_idx++;
505 else
506 iw_qvinfo->ceq_idx = IRDMA_Q_INVALID_IDX;
507 } else {
508 iw_qvinfo->aeq_idx = IRDMA_Q_INVALID_IDX;
509 iw_qvinfo->ceq_idx = ceq_idx++;
510 }
511 iw_qvinfo->itr_idx = 3;
512 iw_qvinfo->v_idx = rf->iw_msixtbl[i].idx;
513 pmsix++;
514 }
515
516 return 0;
517 }
518
519 /**
520 * irdma_irq_handler - interrupt handler for aeq and ceq0
521 * @irq: Interrupt request number
522 * @data: RDMA PCI function
523 */
irdma_irq_handler(int irq,void * data)524 static irqreturn_t irdma_irq_handler(int irq, void *data)
525 {
526 struct irdma_pci_f *rf = data;
527
528 tasklet_schedule(&rf->dpc_tasklet);
529
530 return IRQ_HANDLED;
531 }
532
533 /**
534 * irdma_ceq_handler - interrupt handler for ceq
535 * @irq: interrupt request number
536 * @data: ceq pointer
537 */
irdma_ceq_handler(int irq,void * data)538 static irqreturn_t irdma_ceq_handler(int irq, void *data)
539 {
540 struct irdma_ceq *iwceq = data;
541
542 if (iwceq->irq != irq)
543 ibdev_err(to_ibdev(&iwceq->rf->sc_dev), "expected irq = %d received irq = %d\n",
544 iwceq->irq, irq);
545 tasklet_schedule(&iwceq->dpc_tasklet);
546
547 return IRQ_HANDLED;
548 }
549
550 /**
551 * irdma_destroy_irq - destroy device interrupts
552 * @rf: RDMA PCI function
553 * @msix_vec: msix vector to disable irq
554 * @dev_id: parameter to pass to free_irq (used during irq setup)
555 *
556 * The function is called when destroying aeq/ceq
557 */
irdma_destroy_irq(struct irdma_pci_f * rf,struct irdma_msix_vector * msix_vec,void * dev_id)558 static void irdma_destroy_irq(struct irdma_pci_f *rf,
559 struct irdma_msix_vector *msix_vec, void *dev_id)
560 {
561 struct irdma_sc_dev *dev = &rf->sc_dev;
562
563 dev->irq_ops->irdma_dis_irq(dev, msix_vec->idx);
564 irq_set_affinity_hint(msix_vec->irq, NULL);
565 free_irq(msix_vec->irq, dev_id);
566 if (rf == dev_id) {
567 tasklet_kill(&rf->dpc_tasklet);
568 } else {
569 struct irdma_ceq *iwceq = (struct irdma_ceq *)dev_id;
570
571 tasklet_kill(&iwceq->dpc_tasklet);
572 }
573 }
574
575 /**
576 * irdma_destroy_cqp - destroy control qp
577 * @rf: RDMA PCI function
578 * @free_hwcqp: 1 if hw cqp should be freed
579 *
580 * Issue destroy cqp request and
581 * free the resources associated with the cqp
582 */
irdma_destroy_cqp(struct irdma_pci_f * rf,bool free_hwcqp)583 static void irdma_destroy_cqp(struct irdma_pci_f *rf, bool free_hwcqp)
584 {
585 enum irdma_status_code status = 0;
586 struct irdma_sc_dev *dev = &rf->sc_dev;
587 struct irdma_cqp *cqp = &rf->cqp;
588
589 if (rf->cqp_cmpl_wq)
590 destroy_workqueue(rf->cqp_cmpl_wq);
591 if (free_hwcqp)
592 status = irdma_sc_cqp_destroy(dev->cqp);
593 if (status)
594 ibdev_dbg(to_ibdev(dev), "ERR: Destroy CQP failed %d\n", status);
595
596 irdma_cleanup_pending_cqp_op(rf);
597 dma_free_coherent(dev->hw->device, cqp->sq.size, cqp->sq.va,
598 cqp->sq.pa);
599 cqp->sq.va = NULL;
600 kfree(cqp->scratch_array);
601 cqp->scratch_array = NULL;
602 kfree(cqp->cqp_requests);
603 cqp->cqp_requests = NULL;
604 }
605
irdma_destroy_virt_aeq(struct irdma_pci_f * rf)606 static void irdma_destroy_virt_aeq(struct irdma_pci_f *rf)
607 {
608 struct irdma_aeq *aeq = &rf->aeq;
609 u32 pg_cnt = DIV_ROUND_UP(aeq->mem.size, PAGE_SIZE);
610 dma_addr_t *pg_arr = (dma_addr_t *)aeq->palloc.level1.addr;
611
612 irdma_unmap_vm_page_list(&rf->hw, pg_arr, pg_cnt);
613 irdma_free_pble(rf->pble_rsrc, &aeq->palloc);
614 vfree(aeq->mem.va);
615 }
616
617 /**
618 * irdma_destroy_aeq - destroy aeq
619 * @rf: RDMA PCI function
620 *
621 * Issue a destroy aeq request and
622 * free the resources associated with the aeq
623 * The function is called during driver unload
624 */
irdma_destroy_aeq(struct irdma_pci_f * rf)625 static void irdma_destroy_aeq(struct irdma_pci_f *rf)
626 {
627 enum irdma_status_code status = IRDMA_ERR_NOT_READY;
628 struct irdma_sc_dev *dev = &rf->sc_dev;
629 struct irdma_aeq *aeq = &rf->aeq;
630
631 if (!rf->msix_shared) {
632 rf->sc_dev.irq_ops->irdma_cfg_aeq(&rf->sc_dev, rf->iw_msixtbl->idx, false);
633 irdma_destroy_irq(rf, rf->iw_msixtbl, rf);
634 }
635 if (rf->reset)
636 goto exit;
637
638 aeq->sc_aeq.size = 0;
639 status = irdma_cqp_aeq_cmd(dev, &aeq->sc_aeq, IRDMA_OP_AEQ_DESTROY);
640 if (status)
641 ibdev_dbg(to_ibdev(dev), "ERR: Destroy AEQ failed %d\n", status);
642
643 exit:
644 if (aeq->virtual_map) {
645 irdma_destroy_virt_aeq(rf);
646 } else {
647 dma_free_coherent(dev->hw->device, aeq->mem.size, aeq->mem.va,
648 aeq->mem.pa);
649 aeq->mem.va = NULL;
650 }
651 }
652
653 /**
654 * irdma_destroy_ceq - destroy ceq
655 * @rf: RDMA PCI function
656 * @iwceq: ceq to be destroyed
657 *
658 * Issue a destroy ceq request and
659 * free the resources associated with the ceq
660 */
irdma_destroy_ceq(struct irdma_pci_f * rf,struct irdma_ceq * iwceq)661 static void irdma_destroy_ceq(struct irdma_pci_f *rf, struct irdma_ceq *iwceq)
662 {
663 enum irdma_status_code status;
664 struct irdma_sc_dev *dev = &rf->sc_dev;
665
666 if (rf->reset)
667 goto exit;
668
669 status = irdma_sc_ceq_destroy(&iwceq->sc_ceq, 0, 1);
670 if (status) {
671 ibdev_dbg(to_ibdev(dev), "ERR: CEQ destroy command failed %d\n", status);
672 goto exit;
673 }
674
675 status = irdma_sc_cceq_destroy_done(&iwceq->sc_ceq);
676 if (status)
677 ibdev_dbg(to_ibdev(dev), "ERR: CEQ destroy completion failed %d\n",
678 status);
679 exit:
680 dma_free_coherent(dev->hw->device, iwceq->mem.size, iwceq->mem.va,
681 iwceq->mem.pa);
682 iwceq->mem.va = NULL;
683 }
684
685 /**
686 * irdma_del_ceq_0 - destroy ceq 0
687 * @rf: RDMA PCI function
688 *
689 * Disable the ceq 0 interrupt and destroy the ceq 0
690 */
irdma_del_ceq_0(struct irdma_pci_f * rf)691 static void irdma_del_ceq_0(struct irdma_pci_f *rf)
692 {
693 struct irdma_ceq *iwceq = rf->ceqlist;
694 struct irdma_msix_vector *msix_vec;
695
696 if (rf->msix_shared) {
697 msix_vec = &rf->iw_msixtbl[0];
698 rf->sc_dev.irq_ops->irdma_cfg_ceq(&rf->sc_dev,
699 msix_vec->ceq_id,
700 msix_vec->idx, false);
701 irdma_destroy_irq(rf, msix_vec, rf);
702 } else {
703 msix_vec = &rf->iw_msixtbl[1];
704 irdma_destroy_irq(rf, msix_vec, iwceq);
705 }
706
707 irdma_destroy_ceq(rf, iwceq);
708 rf->sc_dev.ceq_valid = false;
709 rf->ceqs_count = 0;
710 }
711
712 /**
713 * irdma_del_ceqs - destroy all ceq's except CEQ 0
714 * @rf: RDMA PCI function
715 *
716 * Go through all of the device ceq's, except 0, and for each
717 * ceq disable the ceq interrupt and destroy the ceq
718 */
irdma_del_ceqs(struct irdma_pci_f * rf)719 static void irdma_del_ceqs(struct irdma_pci_f *rf)
720 {
721 struct irdma_ceq *iwceq = &rf->ceqlist[1];
722 struct irdma_msix_vector *msix_vec;
723 u32 i = 0;
724
725 if (rf->msix_shared)
726 msix_vec = &rf->iw_msixtbl[1];
727 else
728 msix_vec = &rf->iw_msixtbl[2];
729
730 for (i = 1; i < rf->ceqs_count; i++, msix_vec++, iwceq++) {
731 rf->sc_dev.irq_ops->irdma_cfg_ceq(&rf->sc_dev, msix_vec->ceq_id,
732 msix_vec->idx, false);
733 irdma_destroy_irq(rf, msix_vec, iwceq);
734 irdma_cqp_ceq_cmd(&rf->sc_dev, &iwceq->sc_ceq,
735 IRDMA_OP_CEQ_DESTROY);
736 dma_free_coherent(rf->sc_dev.hw->device, iwceq->mem.size,
737 iwceq->mem.va, iwceq->mem.pa);
738 iwceq->mem.va = NULL;
739 }
740 rf->ceqs_count = 1;
741 }
742
743 /**
744 * irdma_destroy_ccq - destroy control cq
745 * @rf: RDMA PCI function
746 *
747 * Issue destroy ccq request and
748 * free the resources associated with the ccq
749 */
irdma_destroy_ccq(struct irdma_pci_f * rf)750 static void irdma_destroy_ccq(struct irdma_pci_f *rf)
751 {
752 struct irdma_sc_dev *dev = &rf->sc_dev;
753 struct irdma_ccq *ccq = &rf->ccq;
754 enum irdma_status_code status = 0;
755
756 if (!rf->reset)
757 status = irdma_sc_ccq_destroy(dev->ccq, 0, true);
758 if (status)
759 ibdev_dbg(to_ibdev(dev), "ERR: CCQ destroy failed %d\n", status);
760 dma_free_coherent(dev->hw->device, ccq->mem_cq.size, ccq->mem_cq.va,
761 ccq->mem_cq.pa);
762 ccq->mem_cq.va = NULL;
763 }
764
765 /**
766 * irdma_close_hmc_objects_type - delete hmc objects of a given type
767 * @dev: iwarp device
768 * @obj_type: the hmc object type to be deleted
769 * @hmc_info: host memory info struct
770 * @privileged: permission to close HMC objects
771 * @reset: true if called before reset
772 */
irdma_close_hmc_objects_type(struct irdma_sc_dev * dev,enum irdma_hmc_rsrc_type obj_type,struct irdma_hmc_info * hmc_info,bool privileged,bool reset)773 static void irdma_close_hmc_objects_type(struct irdma_sc_dev *dev,
774 enum irdma_hmc_rsrc_type obj_type,
775 struct irdma_hmc_info *hmc_info,
776 bool privileged, bool reset)
777 {
778 struct irdma_hmc_del_obj_info info = {};
779
780 info.hmc_info = hmc_info;
781 info.rsrc_type = obj_type;
782 info.count = hmc_info->hmc_obj[obj_type].cnt;
783 info.privileged = privileged;
784 if (irdma_sc_del_hmc_obj(dev, &info, reset))
785 ibdev_dbg(to_ibdev(dev), "ERR: del HMC obj of type %d failed\n",
786 obj_type);
787 }
788
789 /**
790 * irdma_del_hmc_objects - remove all device hmc objects
791 * @dev: iwarp device
792 * @hmc_info: hmc_info to free
793 * @privileged: permission to delete HMC objects
794 * @reset: true if called before reset
795 * @vers: hardware version
796 */
irdma_del_hmc_objects(struct irdma_sc_dev * dev,struct irdma_hmc_info * hmc_info,bool privileged,bool reset,enum irdma_vers vers)797 static void irdma_del_hmc_objects(struct irdma_sc_dev *dev,
798 struct irdma_hmc_info *hmc_info, bool privileged,
799 bool reset, enum irdma_vers vers)
800 {
801 unsigned int i;
802
803 for (i = 0; i < IW_HMC_OBJ_TYPE_NUM; i++) {
804 if (dev->hmc_info->hmc_obj[iw_hmc_obj_types[i]].cnt)
805 irdma_close_hmc_objects_type(dev, iw_hmc_obj_types[i],
806 hmc_info, privileged, reset);
807 if (vers == IRDMA_GEN_1 && i == IRDMA_HMC_IW_TIMER)
808 break;
809 }
810 }
811
812 /**
813 * irdma_create_hmc_obj_type - create hmc object of a given type
814 * @dev: hardware control device structure
815 * @info: information for the hmc object to create
816 */
817 static enum irdma_status_code
irdma_create_hmc_obj_type(struct irdma_sc_dev * dev,struct irdma_hmc_create_obj_info * info)818 irdma_create_hmc_obj_type(struct irdma_sc_dev *dev,
819 struct irdma_hmc_create_obj_info *info)
820 {
821 return irdma_sc_create_hmc_obj(dev, info);
822 }
823
824 /**
825 * irdma_create_hmc_objs - create all hmc objects for the device
826 * @rf: RDMA PCI function
827 * @privileged: permission to create HMC objects
828 * @vers: HW version
829 *
830 * Create the device hmc objects and allocate hmc pages
831 * Return 0 if successful, otherwise clean up and return error
832 */
833 static enum irdma_status_code
irdma_create_hmc_objs(struct irdma_pci_f * rf,bool privileged,enum irdma_vers vers)834 irdma_create_hmc_objs(struct irdma_pci_f *rf, bool privileged, enum irdma_vers vers)
835 {
836 struct irdma_sc_dev *dev = &rf->sc_dev;
837 struct irdma_hmc_create_obj_info info = {};
838 enum irdma_status_code status = 0;
839 int i;
840
841 info.hmc_info = dev->hmc_info;
842 info.privileged = privileged;
843 info.entry_type = rf->sd_type;
844
845 for (i = 0; i < IW_HMC_OBJ_TYPE_NUM; i++) {
846 if (iw_hmc_obj_types[i] == IRDMA_HMC_IW_PBLE)
847 continue;
848 if (dev->hmc_info->hmc_obj[iw_hmc_obj_types[i]].cnt) {
849 info.rsrc_type = iw_hmc_obj_types[i];
850 info.count = dev->hmc_info->hmc_obj[info.rsrc_type].cnt;
851 info.add_sd_cnt = 0;
852 status = irdma_create_hmc_obj_type(dev, &info);
853 if (status) {
854 ibdev_dbg(to_ibdev(dev),
855 "ERR: create obj type %d status = %d\n",
856 iw_hmc_obj_types[i], status);
857 break;
858 }
859 }
860 if (vers == IRDMA_GEN_1 && i == IRDMA_HMC_IW_TIMER)
861 break;
862 }
863
864 if (!status)
865 return irdma_sc_static_hmc_pages_allocated(dev->cqp, 0, dev->hmc_fn_id,
866 true, true);
867
868 while (i) {
869 i--;
870 /* destroy the hmc objects of a given type */
871 if (dev->hmc_info->hmc_obj[iw_hmc_obj_types[i]].cnt)
872 irdma_close_hmc_objects_type(dev, iw_hmc_obj_types[i],
873 dev->hmc_info, privileged,
874 false);
875 }
876
877 return status;
878 }
879
880 /**
881 * irdma_obj_aligned_mem - get aligned memory from device allocated memory
882 * @rf: RDMA PCI function
883 * @memptr: points to the memory addresses
884 * @size: size of memory needed
885 * @mask: mask for the aligned memory
886 *
887 * Get aligned memory of the requested size and
888 * update the memptr to point to the new aligned memory
889 * Return 0 if successful, otherwise return no memory error
890 */
891 static enum irdma_status_code
irdma_obj_aligned_mem(struct irdma_pci_f * rf,struct irdma_dma_mem * memptr,u32 size,u32 mask)892 irdma_obj_aligned_mem(struct irdma_pci_f *rf, struct irdma_dma_mem *memptr,
893 u32 size, u32 mask)
894 {
895 unsigned long va, newva;
896 unsigned long extra;
897
898 va = (unsigned long)rf->obj_next.va;
899 newva = va;
900 if (mask)
901 newva = ALIGN(va, (unsigned long)mask + 1ULL);
902 extra = newva - va;
903 memptr->va = (u8 *)va + extra;
904 memptr->pa = rf->obj_next.pa + extra;
905 memptr->size = size;
906 if (((u8 *)memptr->va + size) > ((u8 *)rf->obj_mem.va + rf->obj_mem.size))
907 return IRDMA_ERR_NO_MEMORY;
908
909 rf->obj_next.va = (u8 *)memptr->va + size;
910 rf->obj_next.pa = memptr->pa + size;
911
912 return 0;
913 }
914
915 /**
916 * irdma_create_cqp - create control qp
917 * @rf: RDMA PCI function
918 *
919 * Return 0, if the cqp and all the resources associated with it
920 * are successfully created, otherwise return error
921 */
irdma_create_cqp(struct irdma_pci_f * rf)922 static enum irdma_status_code irdma_create_cqp(struct irdma_pci_f *rf)
923 {
924 enum irdma_status_code status;
925 u32 sqsize = IRDMA_CQP_SW_SQSIZE_2048;
926 struct irdma_dma_mem mem;
927 struct irdma_sc_dev *dev = &rf->sc_dev;
928 struct irdma_cqp_init_info cqp_init_info = {};
929 struct irdma_cqp *cqp = &rf->cqp;
930 u16 maj_err, min_err;
931 int i;
932
933 cqp->cqp_requests = kcalloc(sqsize, sizeof(*cqp->cqp_requests), GFP_KERNEL);
934 if (!cqp->cqp_requests)
935 return IRDMA_ERR_NO_MEMORY;
936
937 cqp->scratch_array = kcalloc(sqsize, sizeof(*cqp->scratch_array), GFP_KERNEL);
938 if (!cqp->scratch_array) {
939 kfree(cqp->cqp_requests);
940 return IRDMA_ERR_NO_MEMORY;
941 }
942
943 dev->cqp = &cqp->sc_cqp;
944 dev->cqp->dev = dev;
945 cqp->sq.size = ALIGN(sizeof(struct irdma_cqp_sq_wqe) * sqsize,
946 IRDMA_CQP_ALIGNMENT);
947 cqp->sq.va = dma_alloc_coherent(dev->hw->device, cqp->sq.size,
948 &cqp->sq.pa, GFP_KERNEL);
949 if (!cqp->sq.va) {
950 kfree(cqp->scratch_array);
951 kfree(cqp->cqp_requests);
952 return IRDMA_ERR_NO_MEMORY;
953 }
954
955 status = irdma_obj_aligned_mem(rf, &mem, sizeof(struct irdma_cqp_ctx),
956 IRDMA_HOST_CTX_ALIGNMENT_M);
957 if (status)
958 goto exit;
959
960 dev->cqp->host_ctx_pa = mem.pa;
961 dev->cqp->host_ctx = mem.va;
962 /* populate the cqp init info */
963 cqp_init_info.dev = dev;
964 cqp_init_info.sq_size = sqsize;
965 cqp_init_info.sq = cqp->sq.va;
966 cqp_init_info.sq_pa = cqp->sq.pa;
967 cqp_init_info.host_ctx_pa = mem.pa;
968 cqp_init_info.host_ctx = mem.va;
969 cqp_init_info.hmc_profile = rf->rsrc_profile;
970 cqp_init_info.scratch_array = cqp->scratch_array;
971 cqp_init_info.protocol_used = rf->protocol_used;
972
973 switch (rf->rdma_ver) {
974 case IRDMA_GEN_1:
975 cqp_init_info.hw_maj_ver = IRDMA_CQPHC_HW_MAJVER_GEN_1;
976 break;
977 case IRDMA_GEN_2:
978 cqp_init_info.hw_maj_ver = IRDMA_CQPHC_HW_MAJVER_GEN_2;
979 break;
980 }
981 status = irdma_sc_cqp_init(dev->cqp, &cqp_init_info);
982 if (status) {
983 ibdev_dbg(to_ibdev(dev), "ERR: cqp init status %d\n", status);
984 goto exit;
985 }
986
987 spin_lock_init(&cqp->req_lock);
988 spin_lock_init(&cqp->compl_lock);
989
990 status = irdma_sc_cqp_create(dev->cqp, &maj_err, &min_err);
991 if (status) {
992 ibdev_dbg(to_ibdev(dev),
993 "ERR: cqp create failed - status %d maj_err %d min_err %d\n",
994 status, maj_err, min_err);
995 goto exit;
996 }
997
998 INIT_LIST_HEAD(&cqp->cqp_avail_reqs);
999 INIT_LIST_HEAD(&cqp->cqp_pending_reqs);
1000
1001 /* init the waitqueue of the cqp_requests and add them to the list */
1002 for (i = 0; i < sqsize; i++) {
1003 init_waitqueue_head(&cqp->cqp_requests[i].waitq);
1004 list_add_tail(&cqp->cqp_requests[i].list, &cqp->cqp_avail_reqs);
1005 }
1006 init_waitqueue_head(&cqp->remove_wq);
1007 return 0;
1008
1009 exit:
1010 irdma_destroy_cqp(rf, false);
1011
1012 return status;
1013 }
1014
1015 /**
1016 * irdma_create_ccq - create control cq
1017 * @rf: RDMA PCI function
1018 *
1019 * Return 0, if the ccq and the resources associated with it
1020 * are successfully created, otherwise return error
1021 */
irdma_create_ccq(struct irdma_pci_f * rf)1022 static enum irdma_status_code irdma_create_ccq(struct irdma_pci_f *rf)
1023 {
1024 struct irdma_sc_dev *dev = &rf->sc_dev;
1025 enum irdma_status_code status;
1026 struct irdma_ccq_init_info info = {};
1027 struct irdma_ccq *ccq = &rf->ccq;
1028
1029 dev->ccq = &ccq->sc_cq;
1030 dev->ccq->dev = dev;
1031 info.dev = dev;
1032 ccq->shadow_area.size = sizeof(struct irdma_cq_shadow_area);
1033 ccq->mem_cq.size = ALIGN(sizeof(struct irdma_cqe) * IW_CCQ_SIZE,
1034 IRDMA_CQ0_ALIGNMENT);
1035 ccq->mem_cq.va = dma_alloc_coherent(dev->hw->device, ccq->mem_cq.size,
1036 &ccq->mem_cq.pa, GFP_KERNEL);
1037 if (!ccq->mem_cq.va)
1038 return IRDMA_ERR_NO_MEMORY;
1039
1040 status = irdma_obj_aligned_mem(rf, &ccq->shadow_area,
1041 ccq->shadow_area.size,
1042 IRDMA_SHADOWAREA_M);
1043 if (status)
1044 goto exit;
1045
1046 ccq->sc_cq.back_cq = ccq;
1047 /* populate the ccq init info */
1048 info.cq_base = ccq->mem_cq.va;
1049 info.cq_pa = ccq->mem_cq.pa;
1050 info.num_elem = IW_CCQ_SIZE;
1051 info.shadow_area = ccq->shadow_area.va;
1052 info.shadow_area_pa = ccq->shadow_area.pa;
1053 info.ceqe_mask = false;
1054 info.ceq_id_valid = true;
1055 info.shadow_read_threshold = 16;
1056 info.vsi = &rf->default_vsi;
1057 status = irdma_sc_ccq_init(dev->ccq, &info);
1058 if (!status)
1059 status = irdma_sc_ccq_create(dev->ccq, 0, true, true);
1060 exit:
1061 if (status) {
1062 dma_free_coherent(dev->hw->device, ccq->mem_cq.size,
1063 ccq->mem_cq.va, ccq->mem_cq.pa);
1064 ccq->mem_cq.va = NULL;
1065 }
1066
1067 return status;
1068 }
1069
1070 /**
1071 * irdma_alloc_set_mac - set up a mac address table entry
1072 * @iwdev: irdma device
1073 *
1074 * Allocate a mac ip entry and add it to the hw table Return 0
1075 * if successful, otherwise return error
1076 */
irdma_alloc_set_mac(struct irdma_device * iwdev)1077 static enum irdma_status_code irdma_alloc_set_mac(struct irdma_device *iwdev)
1078 {
1079 enum irdma_status_code status;
1080
1081 status = irdma_alloc_local_mac_entry(iwdev->rf,
1082 &iwdev->mac_ip_table_idx);
1083 if (!status) {
1084 status = irdma_add_local_mac_entry(iwdev->rf,
1085 (u8 *)iwdev->netdev->dev_addr,
1086 (u8)iwdev->mac_ip_table_idx);
1087 if (status)
1088 irdma_del_local_mac_entry(iwdev->rf,
1089 (u8)iwdev->mac_ip_table_idx);
1090 }
1091 return status;
1092 }
1093
1094 /**
1095 * irdma_cfg_ceq_vector - set up the msix interrupt vector for
1096 * ceq
1097 * @rf: RDMA PCI function
1098 * @iwceq: ceq associated with the vector
1099 * @ceq_id: the id number of the iwceq
1100 * @msix_vec: interrupt vector information
1101 *
1102 * Allocate interrupt resources and enable irq handling
1103 * Return 0 if successful, otherwise return error
1104 */
1105 static enum irdma_status_code
irdma_cfg_ceq_vector(struct irdma_pci_f * rf,struct irdma_ceq * iwceq,u32 ceq_id,struct irdma_msix_vector * msix_vec)1106 irdma_cfg_ceq_vector(struct irdma_pci_f *rf, struct irdma_ceq *iwceq,
1107 u32 ceq_id, struct irdma_msix_vector *msix_vec)
1108 {
1109 int status;
1110
1111 if (rf->msix_shared && !ceq_id) {
1112 tasklet_setup(&rf->dpc_tasklet, irdma_dpc);
1113 status = request_irq(msix_vec->irq, irdma_irq_handler, 0,
1114 "AEQCEQ", rf);
1115 } else {
1116 tasklet_setup(&iwceq->dpc_tasklet, irdma_ceq_dpc);
1117
1118 status = request_irq(msix_vec->irq, irdma_ceq_handler, 0,
1119 "CEQ", iwceq);
1120 }
1121 cpumask_clear(&msix_vec->mask);
1122 cpumask_set_cpu(msix_vec->cpu_affinity, &msix_vec->mask);
1123 irq_set_affinity_hint(msix_vec->irq, &msix_vec->mask);
1124 if (status) {
1125 ibdev_dbg(&rf->iwdev->ibdev, "ERR: ceq irq config fail\n");
1126 return IRDMA_ERR_CFG;
1127 }
1128
1129 msix_vec->ceq_id = ceq_id;
1130 rf->sc_dev.irq_ops->irdma_cfg_ceq(&rf->sc_dev, ceq_id, msix_vec->idx, true);
1131
1132 return 0;
1133 }
1134
1135 /**
1136 * irdma_cfg_aeq_vector - set up the msix vector for aeq
1137 * @rf: RDMA PCI function
1138 *
1139 * Allocate interrupt resources and enable irq handling
1140 * Return 0 if successful, otherwise return error
1141 */
irdma_cfg_aeq_vector(struct irdma_pci_f * rf)1142 static enum irdma_status_code irdma_cfg_aeq_vector(struct irdma_pci_f *rf)
1143 {
1144 struct irdma_msix_vector *msix_vec = rf->iw_msixtbl;
1145 u32 ret = 0;
1146
1147 if (!rf->msix_shared) {
1148 tasklet_setup(&rf->dpc_tasklet, irdma_dpc);
1149 ret = request_irq(msix_vec->irq, irdma_irq_handler, 0,
1150 "irdma", rf);
1151 }
1152 if (ret) {
1153 ibdev_dbg(&rf->iwdev->ibdev, "ERR: aeq irq config fail\n");
1154 return IRDMA_ERR_CFG;
1155 }
1156
1157 rf->sc_dev.irq_ops->irdma_cfg_aeq(&rf->sc_dev, msix_vec->idx, true);
1158
1159 return 0;
1160 }
1161
1162 /**
1163 * irdma_create_ceq - create completion event queue
1164 * @rf: RDMA PCI function
1165 * @iwceq: pointer to the ceq resources to be created
1166 * @ceq_id: the id number of the iwceq
1167 * @vsi: SC vsi struct
1168 *
1169 * Return 0, if the ceq and the resources associated with it
1170 * are successfully created, otherwise return error
1171 */
irdma_create_ceq(struct irdma_pci_f * rf,struct irdma_ceq * iwceq,u32 ceq_id,struct irdma_sc_vsi * vsi)1172 static enum irdma_status_code irdma_create_ceq(struct irdma_pci_f *rf,
1173 struct irdma_ceq *iwceq,
1174 u32 ceq_id,
1175 struct irdma_sc_vsi *vsi)
1176 {
1177 enum irdma_status_code status;
1178 struct irdma_ceq_init_info info = {};
1179 struct irdma_sc_dev *dev = &rf->sc_dev;
1180 u32 ceq_size;
1181
1182 info.ceq_id = ceq_id;
1183 iwceq->rf = rf;
1184 ceq_size = min(rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_CQ].cnt,
1185 dev->hw_attrs.max_hw_ceq_size);
1186 iwceq->mem.size = ALIGN(sizeof(struct irdma_ceqe) * ceq_size,
1187 IRDMA_CEQ_ALIGNMENT);
1188 iwceq->mem.va = dma_alloc_coherent(dev->hw->device, iwceq->mem.size,
1189 &iwceq->mem.pa, GFP_KERNEL);
1190 if (!iwceq->mem.va)
1191 return IRDMA_ERR_NO_MEMORY;
1192
1193 info.ceq_id = ceq_id;
1194 info.ceqe_base = iwceq->mem.va;
1195 info.ceqe_pa = iwceq->mem.pa;
1196 info.elem_cnt = ceq_size;
1197 iwceq->sc_ceq.ceq_id = ceq_id;
1198 info.dev = dev;
1199 info.vsi = vsi;
1200 status = irdma_sc_ceq_init(&iwceq->sc_ceq, &info);
1201 if (!status) {
1202 if (dev->ceq_valid)
1203 status = irdma_cqp_ceq_cmd(&rf->sc_dev, &iwceq->sc_ceq,
1204 IRDMA_OP_CEQ_CREATE);
1205 else
1206 status = irdma_sc_cceq_create(&iwceq->sc_ceq, 0);
1207 }
1208
1209 if (status) {
1210 dma_free_coherent(dev->hw->device, iwceq->mem.size,
1211 iwceq->mem.va, iwceq->mem.pa);
1212 iwceq->mem.va = NULL;
1213 }
1214
1215 return status;
1216 }
1217
1218 /**
1219 * irdma_setup_ceq_0 - create CEQ 0 and it's interrupt resource
1220 * @rf: RDMA PCI function
1221 *
1222 * Allocate a list for all device completion event queues
1223 * Create the ceq 0 and configure it's msix interrupt vector
1224 * Return 0, if successfully set up, otherwise return error
1225 */
irdma_setup_ceq_0(struct irdma_pci_f * rf)1226 static enum irdma_status_code irdma_setup_ceq_0(struct irdma_pci_f *rf)
1227 {
1228 struct irdma_ceq *iwceq;
1229 struct irdma_msix_vector *msix_vec;
1230 u32 i;
1231 enum irdma_status_code status = 0;
1232 u32 num_ceqs;
1233
1234 num_ceqs = min(rf->msix_count, rf->sc_dev.hmc_fpm_misc.max_ceqs);
1235 rf->ceqlist = kcalloc(num_ceqs, sizeof(*rf->ceqlist), GFP_KERNEL);
1236 if (!rf->ceqlist) {
1237 status = IRDMA_ERR_NO_MEMORY;
1238 goto exit;
1239 }
1240
1241 iwceq = &rf->ceqlist[0];
1242 status = irdma_create_ceq(rf, iwceq, 0, &rf->default_vsi);
1243 if (status) {
1244 ibdev_dbg(&rf->iwdev->ibdev, "ERR: create ceq status = %d\n",
1245 status);
1246 goto exit;
1247 }
1248
1249 spin_lock_init(&iwceq->ce_lock);
1250 i = rf->msix_shared ? 0 : 1;
1251 msix_vec = &rf->iw_msixtbl[i];
1252 iwceq->irq = msix_vec->irq;
1253 iwceq->msix_idx = msix_vec->idx;
1254 status = irdma_cfg_ceq_vector(rf, iwceq, 0, msix_vec);
1255 if (status) {
1256 irdma_destroy_ceq(rf, iwceq);
1257 goto exit;
1258 }
1259
1260 irdma_ena_intr(&rf->sc_dev, msix_vec->idx);
1261 rf->ceqs_count++;
1262
1263 exit:
1264 if (status && !rf->ceqs_count) {
1265 kfree(rf->ceqlist);
1266 rf->ceqlist = NULL;
1267 return status;
1268 }
1269 rf->sc_dev.ceq_valid = true;
1270
1271 return 0;
1272 }
1273
1274 /**
1275 * irdma_setup_ceqs - manage the device ceq's and their interrupt resources
1276 * @rf: RDMA PCI function
1277 * @vsi: VSI structure for this CEQ
1278 *
1279 * Allocate a list for all device completion event queues
1280 * Create the ceq's and configure their msix interrupt vectors
1281 * Return 0, if ceqs are successfully set up, otherwise return error
1282 */
irdma_setup_ceqs(struct irdma_pci_f * rf,struct irdma_sc_vsi * vsi)1283 static enum irdma_status_code irdma_setup_ceqs(struct irdma_pci_f *rf,
1284 struct irdma_sc_vsi *vsi)
1285 {
1286 u32 i;
1287 u32 ceq_id;
1288 struct irdma_ceq *iwceq;
1289 struct irdma_msix_vector *msix_vec;
1290 enum irdma_status_code status;
1291 u32 num_ceqs;
1292
1293 num_ceqs = min(rf->msix_count, rf->sc_dev.hmc_fpm_misc.max_ceqs);
1294 i = (rf->msix_shared) ? 1 : 2;
1295 for (ceq_id = 1; i < num_ceqs; i++, ceq_id++) {
1296 iwceq = &rf->ceqlist[ceq_id];
1297 status = irdma_create_ceq(rf, iwceq, ceq_id, vsi);
1298 if (status) {
1299 ibdev_dbg(&rf->iwdev->ibdev,
1300 "ERR: create ceq status = %d\n", status);
1301 goto del_ceqs;
1302 }
1303 spin_lock_init(&iwceq->ce_lock);
1304 msix_vec = &rf->iw_msixtbl[i];
1305 iwceq->irq = msix_vec->irq;
1306 iwceq->msix_idx = msix_vec->idx;
1307 status = irdma_cfg_ceq_vector(rf, iwceq, ceq_id, msix_vec);
1308 if (status) {
1309 irdma_destroy_ceq(rf, iwceq);
1310 goto del_ceqs;
1311 }
1312 irdma_ena_intr(&rf->sc_dev, msix_vec->idx);
1313 rf->ceqs_count++;
1314 }
1315
1316 return 0;
1317
1318 del_ceqs:
1319 irdma_del_ceqs(rf);
1320
1321 return status;
1322 }
1323
irdma_create_virt_aeq(struct irdma_pci_f * rf,u32 size)1324 static enum irdma_status_code irdma_create_virt_aeq(struct irdma_pci_f *rf,
1325 u32 size)
1326 {
1327 enum irdma_status_code status = IRDMA_ERR_NO_MEMORY;
1328 struct irdma_aeq *aeq = &rf->aeq;
1329 dma_addr_t *pg_arr;
1330 u32 pg_cnt;
1331
1332 if (rf->rdma_ver < IRDMA_GEN_2)
1333 return IRDMA_NOT_SUPPORTED;
1334
1335 aeq->mem.size = sizeof(struct irdma_sc_aeqe) * size;
1336 aeq->mem.va = vzalloc(aeq->mem.size);
1337
1338 if (!aeq->mem.va)
1339 return status;
1340
1341 pg_cnt = DIV_ROUND_UP(aeq->mem.size, PAGE_SIZE);
1342 status = irdma_get_pble(rf->pble_rsrc, &aeq->palloc, pg_cnt, true);
1343 if (status) {
1344 vfree(aeq->mem.va);
1345 return status;
1346 }
1347
1348 pg_arr = (dma_addr_t *)aeq->palloc.level1.addr;
1349 status = irdma_map_vm_page_list(&rf->hw, aeq->mem.va, pg_arr, pg_cnt);
1350 if (status) {
1351 irdma_free_pble(rf->pble_rsrc, &aeq->palloc);
1352 vfree(aeq->mem.va);
1353 return status;
1354 }
1355
1356 return 0;
1357 }
1358
1359 /**
1360 * irdma_create_aeq - create async event queue
1361 * @rf: RDMA PCI function
1362 *
1363 * Return 0, if the aeq and the resources associated with it
1364 * are successfully created, otherwise return error
1365 */
irdma_create_aeq(struct irdma_pci_f * rf)1366 static enum irdma_status_code irdma_create_aeq(struct irdma_pci_f *rf)
1367 {
1368 enum irdma_status_code status;
1369 struct irdma_aeq_init_info info = {};
1370 struct irdma_sc_dev *dev = &rf->sc_dev;
1371 struct irdma_aeq *aeq = &rf->aeq;
1372 struct irdma_hmc_info *hmc_info = rf->sc_dev.hmc_info;
1373 u32 aeq_size;
1374 u8 multiplier = (rf->protocol_used == IRDMA_IWARP_PROTOCOL_ONLY) ? 2 : 1;
1375
1376 aeq_size = multiplier * hmc_info->hmc_obj[IRDMA_HMC_IW_QP].cnt +
1377 hmc_info->hmc_obj[IRDMA_HMC_IW_CQ].cnt;
1378 aeq_size = min(aeq_size, dev->hw_attrs.max_hw_aeq_size);
1379
1380 aeq->mem.size = ALIGN(sizeof(struct irdma_sc_aeqe) * aeq_size,
1381 IRDMA_AEQ_ALIGNMENT);
1382 aeq->mem.va = dma_alloc_coherent(dev->hw->device, aeq->mem.size,
1383 &aeq->mem.pa,
1384 GFP_KERNEL | __GFP_NOWARN);
1385 if (aeq->mem.va)
1386 goto skip_virt_aeq;
1387
1388 /* physically mapped aeq failed. setup virtual aeq */
1389 status = irdma_create_virt_aeq(rf, aeq_size);
1390 if (status)
1391 return status;
1392
1393 info.virtual_map = true;
1394 aeq->virtual_map = info.virtual_map;
1395 info.pbl_chunk_size = 1;
1396 info.first_pm_pbl_idx = aeq->palloc.level1.idx;
1397
1398 skip_virt_aeq:
1399 info.aeqe_base = aeq->mem.va;
1400 info.aeq_elem_pa = aeq->mem.pa;
1401 info.elem_cnt = aeq_size;
1402 info.dev = dev;
1403 info.msix_idx = rf->iw_msixtbl->idx;
1404 status = irdma_sc_aeq_init(&aeq->sc_aeq, &info);
1405 if (status)
1406 goto err;
1407
1408 status = irdma_cqp_aeq_cmd(dev, &aeq->sc_aeq, IRDMA_OP_AEQ_CREATE);
1409 if (status)
1410 goto err;
1411
1412 return 0;
1413
1414 err:
1415 if (aeq->virtual_map) {
1416 irdma_destroy_virt_aeq(rf);
1417 } else {
1418 dma_free_coherent(dev->hw->device, aeq->mem.size, aeq->mem.va,
1419 aeq->mem.pa);
1420 aeq->mem.va = NULL;
1421 }
1422
1423 return status;
1424 }
1425
1426 /**
1427 * irdma_setup_aeq - set up the device aeq
1428 * @rf: RDMA PCI function
1429 *
1430 * Create the aeq and configure its msix interrupt vector
1431 * Return 0 if successful, otherwise return error
1432 */
irdma_setup_aeq(struct irdma_pci_f * rf)1433 static enum irdma_status_code irdma_setup_aeq(struct irdma_pci_f *rf)
1434 {
1435 struct irdma_sc_dev *dev = &rf->sc_dev;
1436 enum irdma_status_code status;
1437
1438 status = irdma_create_aeq(rf);
1439 if (status)
1440 return status;
1441
1442 status = irdma_cfg_aeq_vector(rf);
1443 if (status) {
1444 irdma_destroy_aeq(rf);
1445 return status;
1446 }
1447
1448 if (!rf->msix_shared)
1449 irdma_ena_intr(dev, rf->iw_msixtbl[0].idx);
1450
1451 return 0;
1452 }
1453
1454 /**
1455 * irdma_initialize_ilq - create iwarp local queue for cm
1456 * @iwdev: irdma device
1457 *
1458 * Return 0 if successful, otherwise return error
1459 */
irdma_initialize_ilq(struct irdma_device * iwdev)1460 static enum irdma_status_code irdma_initialize_ilq(struct irdma_device *iwdev)
1461 {
1462 struct irdma_puda_rsrc_info info = {};
1463 enum irdma_status_code status;
1464
1465 info.type = IRDMA_PUDA_RSRC_TYPE_ILQ;
1466 info.cq_id = 1;
1467 info.qp_id = 1;
1468 info.count = 1;
1469 info.pd_id = 1;
1470 info.abi_ver = IRDMA_ABI_VER;
1471 info.sq_size = min(iwdev->rf->max_qp / 2, (u32)32768);
1472 info.rq_size = info.sq_size;
1473 info.buf_size = 1024;
1474 info.tx_buf_cnt = 2 * info.sq_size;
1475 info.receive = irdma_receive_ilq;
1476 info.xmit_complete = irdma_free_sqbuf;
1477 status = irdma_puda_create_rsrc(&iwdev->vsi, &info);
1478 if (status)
1479 ibdev_dbg(&iwdev->ibdev, "ERR: ilq create fail\n");
1480
1481 return status;
1482 }
1483
1484 /**
1485 * irdma_initialize_ieq - create iwarp exception queue
1486 * @iwdev: irdma device
1487 *
1488 * Return 0 if successful, otherwise return error
1489 */
irdma_initialize_ieq(struct irdma_device * iwdev)1490 static enum irdma_status_code irdma_initialize_ieq(struct irdma_device *iwdev)
1491 {
1492 struct irdma_puda_rsrc_info info = {};
1493 enum irdma_status_code status;
1494
1495 info.type = IRDMA_PUDA_RSRC_TYPE_IEQ;
1496 info.cq_id = 2;
1497 info.qp_id = iwdev->vsi.exception_lan_q;
1498 info.count = 1;
1499 info.pd_id = 2;
1500 info.abi_ver = IRDMA_ABI_VER;
1501 info.sq_size = min(iwdev->rf->max_qp / 2, (u32)32768);
1502 info.rq_size = info.sq_size;
1503 info.buf_size = iwdev->vsi.mtu + IRDMA_IPV4_PAD;
1504 info.tx_buf_cnt = 4096;
1505 status = irdma_puda_create_rsrc(&iwdev->vsi, &info);
1506 if (status)
1507 ibdev_dbg(&iwdev->ibdev, "ERR: ieq create fail\n");
1508
1509 return status;
1510 }
1511
1512 /**
1513 * irdma_reinitialize_ieq - destroy and re-create ieq
1514 * @vsi: VSI structure
1515 */
irdma_reinitialize_ieq(struct irdma_sc_vsi * vsi)1516 void irdma_reinitialize_ieq(struct irdma_sc_vsi *vsi)
1517 {
1518 struct irdma_device *iwdev = vsi->back_vsi;
1519 struct irdma_pci_f *rf = iwdev->rf;
1520
1521 irdma_puda_dele_rsrc(vsi, IRDMA_PUDA_RSRC_TYPE_IEQ, false);
1522 if (irdma_initialize_ieq(iwdev)) {
1523 iwdev->rf->reset = true;
1524 rf->gen_ops.request_reset(rf);
1525 }
1526 }
1527
1528 /**
1529 * irdma_hmc_setup - create hmc objects for the device
1530 * @rf: RDMA PCI function
1531 *
1532 * Set up the device private memory space for the number and size of
1533 * the hmc objects and create the objects
1534 * Return 0 if successful, otherwise return error
1535 */
irdma_hmc_setup(struct irdma_pci_f * rf)1536 static enum irdma_status_code irdma_hmc_setup(struct irdma_pci_f *rf)
1537 {
1538 enum irdma_status_code status;
1539 u32 qpcnt;
1540
1541 if (rf->rdma_ver == IRDMA_GEN_1)
1542 qpcnt = rsrc_limits_table[rf->limits_sel].qplimit * 2;
1543 else
1544 qpcnt = rsrc_limits_table[rf->limits_sel].qplimit;
1545
1546 rf->sd_type = IRDMA_SD_TYPE_DIRECT;
1547 status = irdma_cfg_fpm_val(&rf->sc_dev, qpcnt);
1548 if (status)
1549 return status;
1550
1551 status = irdma_create_hmc_objs(rf, true, rf->rdma_ver);
1552
1553 return status;
1554 }
1555
1556 /**
1557 * irdma_del_init_mem - deallocate memory resources
1558 * @rf: RDMA PCI function
1559 */
irdma_del_init_mem(struct irdma_pci_f * rf)1560 static void irdma_del_init_mem(struct irdma_pci_f *rf)
1561 {
1562 struct irdma_sc_dev *dev = &rf->sc_dev;
1563
1564 kfree(dev->hmc_info->sd_table.sd_entry);
1565 dev->hmc_info->sd_table.sd_entry = NULL;
1566 kfree(rf->mem_rsrc);
1567 rf->mem_rsrc = NULL;
1568 dma_free_coherent(rf->hw.device, rf->obj_mem.size, rf->obj_mem.va,
1569 rf->obj_mem.pa);
1570 rf->obj_mem.va = NULL;
1571 if (rf->rdma_ver != IRDMA_GEN_1) {
1572 kfree(rf->allocated_ws_nodes);
1573 rf->allocated_ws_nodes = NULL;
1574 }
1575 kfree(rf->ceqlist);
1576 rf->ceqlist = NULL;
1577 kfree(rf->iw_msixtbl);
1578 rf->iw_msixtbl = NULL;
1579 kfree(rf->hmc_info_mem);
1580 rf->hmc_info_mem = NULL;
1581 }
1582
1583 /**
1584 * irdma_initialize_dev - initialize device
1585 * @rf: RDMA PCI function
1586 *
1587 * Allocate memory for the hmc objects and initialize iwdev
1588 * Return 0 if successful, otherwise clean up the resources
1589 * and return error
1590 */
irdma_initialize_dev(struct irdma_pci_f * rf)1591 static enum irdma_status_code irdma_initialize_dev(struct irdma_pci_f *rf)
1592 {
1593 enum irdma_status_code status;
1594 struct irdma_sc_dev *dev = &rf->sc_dev;
1595 struct irdma_device_init_info info = {};
1596 struct irdma_dma_mem mem;
1597 u32 size;
1598
1599 size = sizeof(struct irdma_hmc_pble_rsrc) +
1600 sizeof(struct irdma_hmc_info) +
1601 (sizeof(struct irdma_hmc_obj_info) * IRDMA_HMC_IW_MAX);
1602
1603 rf->hmc_info_mem = kzalloc(size, GFP_KERNEL);
1604 if (!rf->hmc_info_mem)
1605 return IRDMA_ERR_NO_MEMORY;
1606
1607 rf->pble_rsrc = (struct irdma_hmc_pble_rsrc *)rf->hmc_info_mem;
1608 dev->hmc_info = &rf->hw.hmc;
1609 dev->hmc_info->hmc_obj = (struct irdma_hmc_obj_info *)
1610 (rf->pble_rsrc + 1);
1611
1612 status = irdma_obj_aligned_mem(rf, &mem, IRDMA_QUERY_FPM_BUF_SIZE,
1613 IRDMA_FPM_QUERY_BUF_ALIGNMENT_M);
1614 if (status)
1615 goto error;
1616
1617 info.fpm_query_buf_pa = mem.pa;
1618 info.fpm_query_buf = mem.va;
1619
1620 status = irdma_obj_aligned_mem(rf, &mem, IRDMA_COMMIT_FPM_BUF_SIZE,
1621 IRDMA_FPM_COMMIT_BUF_ALIGNMENT_M);
1622 if (status)
1623 goto error;
1624
1625 info.fpm_commit_buf_pa = mem.pa;
1626 info.fpm_commit_buf = mem.va;
1627
1628 info.bar0 = rf->hw.hw_addr;
1629 info.hmc_fn_id = rf->pf_id;
1630 info.hw = &rf->hw;
1631 status = irdma_sc_dev_init(rf->rdma_ver, &rf->sc_dev, &info);
1632 if (status)
1633 goto error;
1634
1635 return status;
1636 error:
1637 kfree(rf->hmc_info_mem);
1638 rf->hmc_info_mem = NULL;
1639
1640 return status;
1641 }
1642
1643 /**
1644 * irdma_rt_deinit_hw - clean up the irdma device resources
1645 * @iwdev: irdma device
1646 *
1647 * remove the mac ip entry and ipv4/ipv6 addresses, destroy the
1648 * device queues and free the pble and the hmc objects
1649 */
irdma_rt_deinit_hw(struct irdma_device * iwdev)1650 void irdma_rt_deinit_hw(struct irdma_device *iwdev)
1651 {
1652 ibdev_dbg(&iwdev->ibdev, "INIT: state = %d\n", iwdev->init_state);
1653
1654 switch (iwdev->init_state) {
1655 case IP_ADDR_REGISTERED:
1656 if (iwdev->rf->sc_dev.hw_attrs.uk_attrs.hw_rev == IRDMA_GEN_1)
1657 irdma_del_local_mac_entry(iwdev->rf,
1658 (u8)iwdev->mac_ip_table_idx);
1659 fallthrough;
1660 case AEQ_CREATED:
1661 case PBLE_CHUNK_MEM:
1662 case CEQS_CREATED:
1663 case IEQ_CREATED:
1664 if (!iwdev->roce_mode)
1665 irdma_puda_dele_rsrc(&iwdev->vsi, IRDMA_PUDA_RSRC_TYPE_IEQ,
1666 iwdev->rf->reset);
1667 fallthrough;
1668 case ILQ_CREATED:
1669 if (!iwdev->roce_mode)
1670 irdma_puda_dele_rsrc(&iwdev->vsi,
1671 IRDMA_PUDA_RSRC_TYPE_ILQ,
1672 iwdev->rf->reset);
1673 break;
1674 default:
1675 ibdev_warn(&iwdev->ibdev, "bad init_state = %d\n", iwdev->init_state);
1676 break;
1677 }
1678
1679 irdma_cleanup_cm_core(&iwdev->cm_core);
1680 if (iwdev->vsi.pestat) {
1681 irdma_vsi_stats_free(&iwdev->vsi);
1682 kfree(iwdev->vsi.pestat);
1683 }
1684 if (iwdev->cleanup_wq)
1685 destroy_workqueue(iwdev->cleanup_wq);
1686 }
1687
irdma_setup_init_state(struct irdma_pci_f * rf)1688 static enum irdma_status_code irdma_setup_init_state(struct irdma_pci_f *rf)
1689 {
1690 enum irdma_status_code status;
1691
1692 status = irdma_save_msix_info(rf);
1693 if (status)
1694 return status;
1695
1696 rf->hw.device = &rf->pcidev->dev;
1697 rf->obj_mem.size = ALIGN(8192, IRDMA_HW_PAGE_SIZE);
1698 rf->obj_mem.va = dma_alloc_coherent(rf->hw.device, rf->obj_mem.size,
1699 &rf->obj_mem.pa, GFP_KERNEL);
1700 if (!rf->obj_mem.va) {
1701 status = IRDMA_ERR_NO_MEMORY;
1702 goto clean_msixtbl;
1703 }
1704
1705 rf->obj_next = rf->obj_mem;
1706 status = irdma_initialize_dev(rf);
1707 if (status)
1708 goto clean_obj_mem;
1709
1710 return 0;
1711
1712 clean_obj_mem:
1713 dma_free_coherent(rf->hw.device, rf->obj_mem.size, rf->obj_mem.va,
1714 rf->obj_mem.pa);
1715 rf->obj_mem.va = NULL;
1716 clean_msixtbl:
1717 kfree(rf->iw_msixtbl);
1718 rf->iw_msixtbl = NULL;
1719 return status;
1720 }
1721
1722 /**
1723 * irdma_get_used_rsrc - determine resources used internally
1724 * @iwdev: irdma device
1725 *
1726 * Called at the end of open to get all internal allocations
1727 */
irdma_get_used_rsrc(struct irdma_device * iwdev)1728 static void irdma_get_used_rsrc(struct irdma_device *iwdev)
1729 {
1730 iwdev->rf->used_pds = find_next_zero_bit(iwdev->rf->allocated_pds,
1731 iwdev->rf->max_pd, 0);
1732 iwdev->rf->used_qps = find_next_zero_bit(iwdev->rf->allocated_qps,
1733 iwdev->rf->max_qp, 0);
1734 iwdev->rf->used_cqs = find_next_zero_bit(iwdev->rf->allocated_cqs,
1735 iwdev->rf->max_cq, 0);
1736 iwdev->rf->used_mrs = find_next_zero_bit(iwdev->rf->allocated_mrs,
1737 iwdev->rf->max_mr, 0);
1738 }
1739
irdma_ctrl_deinit_hw(struct irdma_pci_f * rf)1740 void irdma_ctrl_deinit_hw(struct irdma_pci_f *rf)
1741 {
1742 enum init_completion_state state = rf->init_state;
1743
1744 rf->init_state = INVALID_STATE;
1745 if (rf->rsrc_created) {
1746 irdma_destroy_aeq(rf);
1747 irdma_destroy_pble_prm(rf->pble_rsrc);
1748 irdma_del_ceqs(rf);
1749 rf->rsrc_created = false;
1750 }
1751 switch (state) {
1752 case CEQ0_CREATED:
1753 irdma_del_ceq_0(rf);
1754 fallthrough;
1755 case CCQ_CREATED:
1756 irdma_destroy_ccq(rf);
1757 fallthrough;
1758 case HW_RSRC_INITIALIZED:
1759 case HMC_OBJS_CREATED:
1760 irdma_del_hmc_objects(&rf->sc_dev, rf->sc_dev.hmc_info, true,
1761 rf->reset, rf->rdma_ver);
1762 fallthrough;
1763 case CQP_CREATED:
1764 irdma_destroy_cqp(rf, true);
1765 fallthrough;
1766 case INITIAL_STATE:
1767 irdma_del_init_mem(rf);
1768 break;
1769 case INVALID_STATE:
1770 default:
1771 ibdev_warn(&rf->iwdev->ibdev, "bad init_state = %d\n", rf->init_state);
1772 break;
1773 }
1774 }
1775
1776 /**
1777 * irdma_rt_init_hw - Initializes runtime portion of HW
1778 * @iwdev: irdma device
1779 * @l2params: qos, tc, mtu info from netdev driver
1780 *
1781 * Create device queues ILQ, IEQ, CEQs and PBLEs. Setup irdma
1782 * device resource objects.
1783 */
irdma_rt_init_hw(struct irdma_device * iwdev,struct irdma_l2params * l2params)1784 enum irdma_status_code irdma_rt_init_hw(struct irdma_device *iwdev,
1785 struct irdma_l2params *l2params)
1786 {
1787 struct irdma_pci_f *rf = iwdev->rf;
1788 struct irdma_sc_dev *dev = &rf->sc_dev;
1789 enum irdma_status_code status;
1790 struct irdma_vsi_init_info vsi_info = {};
1791 struct irdma_vsi_stats_info stats_info = {};
1792
1793 vsi_info.dev = dev;
1794 vsi_info.back_vsi = iwdev;
1795 vsi_info.params = l2params;
1796 vsi_info.pf_data_vsi_num = iwdev->vsi_num;
1797 vsi_info.register_qset = rf->gen_ops.register_qset;
1798 vsi_info.unregister_qset = rf->gen_ops.unregister_qset;
1799 vsi_info.exception_lan_q = 2;
1800 irdma_sc_vsi_init(&iwdev->vsi, &vsi_info);
1801
1802 status = irdma_setup_cm_core(iwdev, rf->rdma_ver);
1803 if (status)
1804 return status;
1805
1806 stats_info.pestat = kzalloc(sizeof(*stats_info.pestat), GFP_KERNEL);
1807 if (!stats_info.pestat) {
1808 irdma_cleanup_cm_core(&iwdev->cm_core);
1809 return IRDMA_ERR_NO_MEMORY;
1810 }
1811 stats_info.fcn_id = dev->hmc_fn_id;
1812 status = irdma_vsi_stats_init(&iwdev->vsi, &stats_info);
1813 if (status) {
1814 irdma_cleanup_cm_core(&iwdev->cm_core);
1815 kfree(stats_info.pestat);
1816 return status;
1817 }
1818
1819 do {
1820 if (!iwdev->roce_mode) {
1821 status = irdma_initialize_ilq(iwdev);
1822 if (status)
1823 break;
1824 iwdev->init_state = ILQ_CREATED;
1825 status = irdma_initialize_ieq(iwdev);
1826 if (status)
1827 break;
1828 iwdev->init_state = IEQ_CREATED;
1829 }
1830 if (!rf->rsrc_created) {
1831 status = irdma_setup_ceqs(rf, &iwdev->vsi);
1832 if (status)
1833 break;
1834
1835 iwdev->init_state = CEQS_CREATED;
1836
1837 status = irdma_hmc_init_pble(&rf->sc_dev,
1838 rf->pble_rsrc);
1839 if (status) {
1840 irdma_del_ceqs(rf);
1841 break;
1842 }
1843
1844 iwdev->init_state = PBLE_CHUNK_MEM;
1845
1846 status = irdma_setup_aeq(rf);
1847 if (status) {
1848 irdma_destroy_pble_prm(rf->pble_rsrc);
1849 irdma_del_ceqs(rf);
1850 break;
1851 }
1852 iwdev->init_state = AEQ_CREATED;
1853 rf->rsrc_created = true;
1854 }
1855
1856 iwdev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY |
1857 IB_DEVICE_MEM_WINDOW |
1858 IB_DEVICE_MEM_MGT_EXTENSIONS;
1859
1860 if (iwdev->rf->sc_dev.hw_attrs.uk_attrs.hw_rev == IRDMA_GEN_1)
1861 irdma_alloc_set_mac(iwdev);
1862 irdma_add_ip(iwdev);
1863 iwdev->init_state = IP_ADDR_REGISTERED;
1864
1865 /* handles asynch cleanup tasks - disconnect CM , free qp,
1866 * free cq bufs
1867 */
1868 iwdev->cleanup_wq = alloc_workqueue("irdma-cleanup-wq",
1869 WQ_UNBOUND, WQ_UNBOUND_MAX_ACTIVE);
1870 if (!iwdev->cleanup_wq)
1871 return IRDMA_ERR_NO_MEMORY;
1872 irdma_get_used_rsrc(iwdev);
1873 init_waitqueue_head(&iwdev->suspend_wq);
1874
1875 return 0;
1876 } while (0);
1877
1878 dev_err(&rf->pcidev->dev, "HW runtime init FAIL status = %d last cmpl = %d\n",
1879 status, iwdev->init_state);
1880 irdma_rt_deinit_hw(iwdev);
1881
1882 return status;
1883 }
1884
1885 /**
1886 * irdma_ctrl_init_hw - Initializes control portion of HW
1887 * @rf: RDMA PCI function
1888 *
1889 * Create admin queues, HMC obejcts and RF resource objects
1890 */
irdma_ctrl_init_hw(struct irdma_pci_f * rf)1891 enum irdma_status_code irdma_ctrl_init_hw(struct irdma_pci_f *rf)
1892 {
1893 struct irdma_sc_dev *dev = &rf->sc_dev;
1894 enum irdma_status_code status;
1895 do {
1896 status = irdma_setup_init_state(rf);
1897 if (status)
1898 break;
1899 rf->init_state = INITIAL_STATE;
1900
1901 status = irdma_create_cqp(rf);
1902 if (status)
1903 break;
1904 rf->init_state = CQP_CREATED;
1905
1906 status = irdma_hmc_setup(rf);
1907 if (status)
1908 break;
1909 rf->init_state = HMC_OBJS_CREATED;
1910
1911 status = irdma_initialize_hw_rsrc(rf);
1912 if (status)
1913 break;
1914 rf->init_state = HW_RSRC_INITIALIZED;
1915
1916 status = irdma_create_ccq(rf);
1917 if (status)
1918 break;
1919 rf->init_state = CCQ_CREATED;
1920
1921 dev->feature_info[IRDMA_FEATURE_FW_INFO] = IRDMA_FW_VER_DEFAULT;
1922 if (rf->rdma_ver != IRDMA_GEN_1) {
1923 status = irdma_get_rdma_features(dev);
1924 if (status)
1925 break;
1926 }
1927
1928 status = irdma_setup_ceq_0(rf);
1929 if (status)
1930 break;
1931 rf->init_state = CEQ0_CREATED;
1932 /* Handles processing of CQP completions */
1933 rf->cqp_cmpl_wq = alloc_ordered_workqueue("cqp_cmpl_wq",
1934 WQ_HIGHPRI | WQ_UNBOUND);
1935 if (!rf->cqp_cmpl_wq) {
1936 status = IRDMA_ERR_NO_MEMORY;
1937 break;
1938 }
1939 INIT_WORK(&rf->cqp_cmpl_work, cqp_compl_worker);
1940 irdma_sc_ccq_arm(dev->ccq);
1941 return 0;
1942 } while (0);
1943
1944 dev_err(&rf->pcidev->dev, "IRDMA hardware initialization FAILED init_state=%d status=%d\n",
1945 rf->init_state, status);
1946 irdma_ctrl_deinit_hw(rf);
1947 return status;
1948 }
1949
1950 /**
1951 * irdma_set_hw_rsrc - set hw memory resources.
1952 * @rf: RDMA PCI function
1953 */
irdma_set_hw_rsrc(struct irdma_pci_f * rf)1954 static void irdma_set_hw_rsrc(struct irdma_pci_f *rf)
1955 {
1956 rf->allocated_qps = (void *)(rf->mem_rsrc +
1957 (sizeof(struct irdma_arp_entry) * rf->arp_table_size));
1958 rf->allocated_cqs = &rf->allocated_qps[BITS_TO_LONGS(rf->max_qp)];
1959 rf->allocated_mrs = &rf->allocated_cqs[BITS_TO_LONGS(rf->max_cq)];
1960 rf->allocated_pds = &rf->allocated_mrs[BITS_TO_LONGS(rf->max_mr)];
1961 rf->allocated_ahs = &rf->allocated_pds[BITS_TO_LONGS(rf->max_pd)];
1962 rf->allocated_mcgs = &rf->allocated_ahs[BITS_TO_LONGS(rf->max_ah)];
1963 rf->allocated_arps = &rf->allocated_mcgs[BITS_TO_LONGS(rf->max_mcg)];
1964 rf->qp_table = (struct irdma_qp **)
1965 (&rf->allocated_arps[BITS_TO_LONGS(rf->arp_table_size)]);
1966
1967 spin_lock_init(&rf->rsrc_lock);
1968 spin_lock_init(&rf->arp_lock);
1969 spin_lock_init(&rf->qptable_lock);
1970 spin_lock_init(&rf->qh_list_lock);
1971 }
1972
1973 /**
1974 * irdma_calc_mem_rsrc_size - calculate memory resources size.
1975 * @rf: RDMA PCI function
1976 */
irdma_calc_mem_rsrc_size(struct irdma_pci_f * rf)1977 static u32 irdma_calc_mem_rsrc_size(struct irdma_pci_f *rf)
1978 {
1979 u32 rsrc_size;
1980
1981 rsrc_size = sizeof(struct irdma_arp_entry) * rf->arp_table_size;
1982 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_qp);
1983 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_mr);
1984 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_cq);
1985 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_pd);
1986 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->arp_table_size);
1987 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_ah);
1988 rsrc_size += sizeof(unsigned long) * BITS_TO_LONGS(rf->max_mcg);
1989 rsrc_size += sizeof(struct irdma_qp **) * rf->max_qp;
1990
1991 return rsrc_size;
1992 }
1993
1994 /**
1995 * irdma_initialize_hw_rsrc - initialize hw resource tracking array
1996 * @rf: RDMA PCI function
1997 */
irdma_initialize_hw_rsrc(struct irdma_pci_f * rf)1998 u32 irdma_initialize_hw_rsrc(struct irdma_pci_f *rf)
1999 {
2000 u32 rsrc_size;
2001 u32 mrdrvbits;
2002 u32 ret;
2003
2004 if (rf->rdma_ver != IRDMA_GEN_1) {
2005 rf->allocated_ws_nodes =
2006 kcalloc(BITS_TO_LONGS(IRDMA_MAX_WS_NODES),
2007 sizeof(unsigned long), GFP_KERNEL);
2008 if (!rf->allocated_ws_nodes)
2009 return -ENOMEM;
2010
2011 set_bit(0, rf->allocated_ws_nodes);
2012 rf->max_ws_node_id = IRDMA_MAX_WS_NODES;
2013 }
2014 rf->max_cqe = rf->sc_dev.hw_attrs.uk_attrs.max_hw_cq_size;
2015 rf->max_qp = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_QP].cnt;
2016 rf->max_mr = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_MR].cnt;
2017 rf->max_cq = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_CQ].cnt;
2018 rf->max_pd = rf->sc_dev.hw_attrs.max_hw_pds;
2019 rf->arp_table_size = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_ARP].cnt;
2020 rf->max_ah = rf->sc_dev.hmc_info->hmc_obj[IRDMA_HMC_IW_FSIAV].cnt;
2021 rf->max_mcg = rf->max_qp;
2022
2023 rsrc_size = irdma_calc_mem_rsrc_size(rf);
2024 rf->mem_rsrc = kzalloc(rsrc_size, GFP_KERNEL);
2025 if (!rf->mem_rsrc) {
2026 ret = -ENOMEM;
2027 goto mem_rsrc_kzalloc_fail;
2028 }
2029
2030 rf->arp_table = (struct irdma_arp_entry *)rf->mem_rsrc;
2031
2032 irdma_set_hw_rsrc(rf);
2033
2034 set_bit(0, rf->allocated_mrs);
2035 set_bit(0, rf->allocated_qps);
2036 set_bit(0, rf->allocated_cqs);
2037 set_bit(0, rf->allocated_pds);
2038 set_bit(0, rf->allocated_arps);
2039 set_bit(0, rf->allocated_ahs);
2040 set_bit(0, rf->allocated_mcgs);
2041 set_bit(2, rf->allocated_qps); /* qp 2 IEQ */
2042 set_bit(1, rf->allocated_qps); /* qp 1 ILQ */
2043 set_bit(1, rf->allocated_cqs);
2044 set_bit(1, rf->allocated_pds);
2045 set_bit(2, rf->allocated_cqs);
2046 set_bit(2, rf->allocated_pds);
2047
2048 INIT_LIST_HEAD(&rf->mc_qht_list.list);
2049 /* stag index mask has a minimum of 14 bits */
2050 mrdrvbits = 24 - max(get_count_order(rf->max_mr), 14);
2051 rf->mr_stagmask = ~(((1 << mrdrvbits) - 1) << (32 - mrdrvbits));
2052
2053 return 0;
2054
2055 mem_rsrc_kzalloc_fail:
2056 kfree(rf->allocated_ws_nodes);
2057 rf->allocated_ws_nodes = NULL;
2058
2059 return ret;
2060 }
2061
2062 /**
2063 * irdma_cqp_ce_handler - handle cqp completions
2064 * @rf: RDMA PCI function
2065 * @cq: cq for cqp completions
2066 */
irdma_cqp_ce_handler(struct irdma_pci_f * rf,struct irdma_sc_cq * cq)2067 void irdma_cqp_ce_handler(struct irdma_pci_f *rf, struct irdma_sc_cq *cq)
2068 {
2069 struct irdma_cqp_request *cqp_request;
2070 struct irdma_sc_dev *dev = &rf->sc_dev;
2071 u32 cqe_count = 0;
2072 struct irdma_ccq_cqe_info info;
2073 unsigned long flags;
2074 int ret;
2075
2076 do {
2077 memset(&info, 0, sizeof(info));
2078 spin_lock_irqsave(&rf->cqp.compl_lock, flags);
2079 ret = irdma_sc_ccq_get_cqe_info(cq, &info);
2080 spin_unlock_irqrestore(&rf->cqp.compl_lock, flags);
2081 if (ret)
2082 break;
2083
2084 cqp_request = (struct irdma_cqp_request *)
2085 (unsigned long)info.scratch;
2086 if (info.error && irdma_cqp_crit_err(dev, cqp_request->info.cqp_cmd,
2087 info.maj_err_code,
2088 info.min_err_code))
2089 ibdev_err(&rf->iwdev->ibdev, "cqp opcode = 0x%x maj_err_code = 0x%x min_err_code = 0x%x\n",
2090 info.op_code, info.maj_err_code, info.min_err_code);
2091 if (cqp_request) {
2092 cqp_request->compl_info.maj_err_code = info.maj_err_code;
2093 cqp_request->compl_info.min_err_code = info.min_err_code;
2094 cqp_request->compl_info.op_ret_val = info.op_ret_val;
2095 cqp_request->compl_info.error = info.error;
2096
2097 if (cqp_request->waiting) {
2098 WRITE_ONCE(cqp_request->request_done, true);
2099 wake_up(&cqp_request->waitq);
2100 irdma_put_cqp_request(&rf->cqp, cqp_request);
2101 } else {
2102 if (cqp_request->callback_fcn)
2103 cqp_request->callback_fcn(cqp_request);
2104 irdma_put_cqp_request(&rf->cqp, cqp_request);
2105 }
2106 }
2107
2108 cqe_count++;
2109 } while (1);
2110
2111 if (cqe_count) {
2112 irdma_process_bh(dev);
2113 irdma_sc_ccq_arm(cq);
2114 }
2115 }
2116
2117 /**
2118 * cqp_compl_worker - Handle cqp completions
2119 * @work: Pointer to work structure
2120 */
cqp_compl_worker(struct work_struct * work)2121 void cqp_compl_worker(struct work_struct *work)
2122 {
2123 struct irdma_pci_f *rf = container_of(work, struct irdma_pci_f,
2124 cqp_cmpl_work);
2125 struct irdma_sc_cq *cq = &rf->ccq.sc_cq;
2126
2127 irdma_cqp_ce_handler(rf, cq);
2128 }
2129
2130 /**
2131 * irdma_lookup_apbvt_entry - lookup hash table for an existing apbvt entry corresponding to port
2132 * @cm_core: cm's core
2133 * @port: port to identify apbvt entry
2134 */
irdma_lookup_apbvt_entry(struct irdma_cm_core * cm_core,u16 port)2135 static struct irdma_apbvt_entry *irdma_lookup_apbvt_entry(struct irdma_cm_core *cm_core,
2136 u16 port)
2137 {
2138 struct irdma_apbvt_entry *entry;
2139
2140 hash_for_each_possible(cm_core->apbvt_hash_tbl, entry, hlist, port) {
2141 if (entry->port == port) {
2142 entry->use_cnt++;
2143 return entry;
2144 }
2145 }
2146
2147 return NULL;
2148 }
2149
2150 /**
2151 * irdma_next_iw_state - modify qp state
2152 * @iwqp: iwarp qp to modify
2153 * @state: next state for qp
2154 * @del_hash: del hash
2155 * @term: term message
2156 * @termlen: length of term message
2157 */
irdma_next_iw_state(struct irdma_qp * iwqp,u8 state,u8 del_hash,u8 term,u8 termlen)2158 void irdma_next_iw_state(struct irdma_qp *iwqp, u8 state, u8 del_hash, u8 term,
2159 u8 termlen)
2160 {
2161 struct irdma_modify_qp_info info = {};
2162
2163 info.next_iwarp_state = state;
2164 info.remove_hash_idx = del_hash;
2165 info.cq_num_valid = true;
2166 info.arp_cache_idx_valid = true;
2167 info.dont_send_term = true;
2168 info.dont_send_fin = true;
2169 info.termlen = termlen;
2170
2171 if (term & IRDMAQP_TERM_SEND_TERM_ONLY)
2172 info.dont_send_term = false;
2173 if (term & IRDMAQP_TERM_SEND_FIN_ONLY)
2174 info.dont_send_fin = false;
2175 if (iwqp->sc_qp.term_flags && state == IRDMA_QP_STATE_ERROR)
2176 info.reset_tcp_conn = true;
2177 iwqp->hw_iwarp_state = state;
2178 irdma_hw_modify_qp(iwqp->iwdev, iwqp, &info, 0);
2179 iwqp->iwarp_state = info.next_iwarp_state;
2180 }
2181
2182 /**
2183 * irdma_del_local_mac_entry - remove a mac entry from the hw
2184 * table
2185 * @rf: RDMA PCI function
2186 * @idx: the index of the mac ip address to delete
2187 */
irdma_del_local_mac_entry(struct irdma_pci_f * rf,u16 idx)2188 void irdma_del_local_mac_entry(struct irdma_pci_f *rf, u16 idx)
2189 {
2190 struct irdma_cqp *iwcqp = &rf->cqp;
2191 struct irdma_cqp_request *cqp_request;
2192 struct cqp_cmds_info *cqp_info;
2193
2194 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, true);
2195 if (!cqp_request)
2196 return;
2197
2198 cqp_info = &cqp_request->info;
2199 cqp_info->cqp_cmd = IRDMA_OP_DELETE_LOCAL_MAC_ENTRY;
2200 cqp_info->post_sq = 1;
2201 cqp_info->in.u.del_local_mac_entry.cqp = &iwcqp->sc_cqp;
2202 cqp_info->in.u.del_local_mac_entry.scratch = (uintptr_t)cqp_request;
2203 cqp_info->in.u.del_local_mac_entry.entry_idx = idx;
2204 cqp_info->in.u.del_local_mac_entry.ignore_ref_count = 0;
2205
2206 irdma_handle_cqp_op(rf, cqp_request);
2207 irdma_put_cqp_request(iwcqp, cqp_request);
2208 }
2209
2210 /**
2211 * irdma_add_local_mac_entry - add a mac ip address entry to the
2212 * hw table
2213 * @rf: RDMA PCI function
2214 * @mac_addr: pointer to mac address
2215 * @idx: the index of the mac ip address to add
2216 */
irdma_add_local_mac_entry(struct irdma_pci_f * rf,u8 * mac_addr,u16 idx)2217 int irdma_add_local_mac_entry(struct irdma_pci_f *rf, u8 *mac_addr, u16 idx)
2218 {
2219 struct irdma_local_mac_entry_info *info;
2220 struct irdma_cqp *iwcqp = &rf->cqp;
2221 struct irdma_cqp_request *cqp_request;
2222 struct cqp_cmds_info *cqp_info;
2223 enum irdma_status_code status;
2224
2225 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, true);
2226 if (!cqp_request)
2227 return IRDMA_ERR_NO_MEMORY;
2228
2229 cqp_info = &cqp_request->info;
2230 cqp_info->post_sq = 1;
2231 info = &cqp_info->in.u.add_local_mac_entry.info;
2232 ether_addr_copy(info->mac_addr, mac_addr);
2233 info->entry_idx = idx;
2234 cqp_info->in.u.add_local_mac_entry.scratch = (uintptr_t)cqp_request;
2235 cqp_info->cqp_cmd = IRDMA_OP_ADD_LOCAL_MAC_ENTRY;
2236 cqp_info->in.u.add_local_mac_entry.cqp = &iwcqp->sc_cqp;
2237 cqp_info->in.u.add_local_mac_entry.scratch = (uintptr_t)cqp_request;
2238
2239 status = irdma_handle_cqp_op(rf, cqp_request);
2240 irdma_put_cqp_request(iwcqp, cqp_request);
2241
2242 return status;
2243 }
2244
2245 /**
2246 * irdma_alloc_local_mac_entry - allocate a mac entry
2247 * @rf: RDMA PCI function
2248 * @mac_tbl_idx: the index of the new mac address
2249 *
2250 * Allocate a mac address entry and update the mac_tbl_idx
2251 * to hold the index of the newly created mac address
2252 * Return 0 if successful, otherwise return error
2253 */
irdma_alloc_local_mac_entry(struct irdma_pci_f * rf,u16 * mac_tbl_idx)2254 int irdma_alloc_local_mac_entry(struct irdma_pci_f *rf, u16 *mac_tbl_idx)
2255 {
2256 struct irdma_cqp *iwcqp = &rf->cqp;
2257 struct irdma_cqp_request *cqp_request;
2258 struct cqp_cmds_info *cqp_info;
2259 enum irdma_status_code status = 0;
2260
2261 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, true);
2262 if (!cqp_request)
2263 return IRDMA_ERR_NO_MEMORY;
2264
2265 cqp_info = &cqp_request->info;
2266 cqp_info->cqp_cmd = IRDMA_OP_ALLOC_LOCAL_MAC_ENTRY;
2267 cqp_info->post_sq = 1;
2268 cqp_info->in.u.alloc_local_mac_entry.cqp = &iwcqp->sc_cqp;
2269 cqp_info->in.u.alloc_local_mac_entry.scratch = (uintptr_t)cqp_request;
2270 status = irdma_handle_cqp_op(rf, cqp_request);
2271 if (!status)
2272 *mac_tbl_idx = (u16)cqp_request->compl_info.op_ret_val;
2273
2274 irdma_put_cqp_request(iwcqp, cqp_request);
2275
2276 return status;
2277 }
2278
2279 /**
2280 * irdma_cqp_manage_apbvt_cmd - send cqp command manage apbvt
2281 * @iwdev: irdma device
2282 * @accel_local_port: port for apbvt
2283 * @add_port: add ordelete port
2284 */
2285 static enum irdma_status_code
irdma_cqp_manage_apbvt_cmd(struct irdma_device * iwdev,u16 accel_local_port,bool add_port)2286 irdma_cqp_manage_apbvt_cmd(struct irdma_device *iwdev, u16 accel_local_port,
2287 bool add_port)
2288 {
2289 struct irdma_apbvt_info *info;
2290 struct irdma_cqp_request *cqp_request;
2291 struct cqp_cmds_info *cqp_info;
2292 enum irdma_status_code status;
2293
2294 cqp_request = irdma_alloc_and_get_cqp_request(&iwdev->rf->cqp, add_port);
2295 if (!cqp_request)
2296 return IRDMA_ERR_NO_MEMORY;
2297
2298 cqp_info = &cqp_request->info;
2299 info = &cqp_info->in.u.manage_apbvt_entry.info;
2300 memset(info, 0, sizeof(*info));
2301 info->add = add_port;
2302 info->port = accel_local_port;
2303 cqp_info->cqp_cmd = IRDMA_OP_MANAGE_APBVT_ENTRY;
2304 cqp_info->post_sq = 1;
2305 cqp_info->in.u.manage_apbvt_entry.cqp = &iwdev->rf->cqp.sc_cqp;
2306 cqp_info->in.u.manage_apbvt_entry.scratch = (uintptr_t)cqp_request;
2307 ibdev_dbg(&iwdev->ibdev, "DEV: %s: port=0x%04x\n",
2308 (!add_port) ? "DELETE" : "ADD", accel_local_port);
2309
2310 status = irdma_handle_cqp_op(iwdev->rf, cqp_request);
2311 irdma_put_cqp_request(&iwdev->rf->cqp, cqp_request);
2312
2313 return status;
2314 }
2315
2316 /**
2317 * irdma_add_apbvt - add tcp port to HW apbvt table
2318 * @iwdev: irdma device
2319 * @port: port for apbvt
2320 */
irdma_add_apbvt(struct irdma_device * iwdev,u16 port)2321 struct irdma_apbvt_entry *irdma_add_apbvt(struct irdma_device *iwdev, u16 port)
2322 {
2323 struct irdma_cm_core *cm_core = &iwdev->cm_core;
2324 struct irdma_apbvt_entry *entry;
2325 unsigned long flags;
2326
2327 spin_lock_irqsave(&cm_core->apbvt_lock, flags);
2328 entry = irdma_lookup_apbvt_entry(cm_core, port);
2329 if (entry) {
2330 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2331 return entry;
2332 }
2333
2334 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
2335 if (!entry) {
2336 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2337 return NULL;
2338 }
2339
2340 entry->port = port;
2341 entry->use_cnt = 1;
2342 hash_add(cm_core->apbvt_hash_tbl, &entry->hlist, entry->port);
2343 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2344
2345 if (irdma_cqp_manage_apbvt_cmd(iwdev, port, true)) {
2346 kfree(entry);
2347 return NULL;
2348 }
2349
2350 return entry;
2351 }
2352
2353 /**
2354 * irdma_del_apbvt - delete tcp port from HW apbvt table
2355 * @iwdev: irdma device
2356 * @entry: apbvt entry object
2357 */
irdma_del_apbvt(struct irdma_device * iwdev,struct irdma_apbvt_entry * entry)2358 void irdma_del_apbvt(struct irdma_device *iwdev,
2359 struct irdma_apbvt_entry *entry)
2360 {
2361 struct irdma_cm_core *cm_core = &iwdev->cm_core;
2362 unsigned long flags;
2363
2364 spin_lock_irqsave(&cm_core->apbvt_lock, flags);
2365 if (--entry->use_cnt) {
2366 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2367 return;
2368 }
2369
2370 hash_del(&entry->hlist);
2371 /* apbvt_lock is held across CQP delete APBVT OP (non-waiting) to
2372 * protect against race where add APBVT CQP can race ahead of the delete
2373 * APBVT for same port.
2374 */
2375 irdma_cqp_manage_apbvt_cmd(iwdev, entry->port, false);
2376 kfree(entry);
2377 spin_unlock_irqrestore(&cm_core->apbvt_lock, flags);
2378 }
2379
2380 /**
2381 * irdma_manage_arp_cache - manage hw arp cache
2382 * @rf: RDMA PCI function
2383 * @mac_addr: mac address ptr
2384 * @ip_addr: ip addr for arp cache
2385 * @ipv4: flag inicating IPv4
2386 * @action: add, delete or modify
2387 */
irdma_manage_arp_cache(struct irdma_pci_f * rf,unsigned char * mac_addr,u32 * ip_addr,bool ipv4,u32 action)2388 void irdma_manage_arp_cache(struct irdma_pci_f *rf, unsigned char *mac_addr,
2389 u32 *ip_addr, bool ipv4, u32 action)
2390 {
2391 struct irdma_add_arp_cache_entry_info *info;
2392 struct irdma_cqp_request *cqp_request;
2393 struct cqp_cmds_info *cqp_info;
2394 int arp_index;
2395
2396 arp_index = irdma_arp_table(rf, ip_addr, ipv4, mac_addr, action);
2397 if (arp_index == -1)
2398 return;
2399
2400 cqp_request = irdma_alloc_and_get_cqp_request(&rf->cqp, false);
2401 if (!cqp_request)
2402 return;
2403
2404 cqp_info = &cqp_request->info;
2405 if (action == IRDMA_ARP_ADD) {
2406 cqp_info->cqp_cmd = IRDMA_OP_ADD_ARP_CACHE_ENTRY;
2407 info = &cqp_info->in.u.add_arp_cache_entry.info;
2408 memset(info, 0, sizeof(*info));
2409 info->arp_index = (u16)arp_index;
2410 info->permanent = true;
2411 ether_addr_copy(info->mac_addr, mac_addr);
2412 cqp_info->in.u.add_arp_cache_entry.scratch =
2413 (uintptr_t)cqp_request;
2414 cqp_info->in.u.add_arp_cache_entry.cqp = &rf->cqp.sc_cqp;
2415 } else {
2416 cqp_info->cqp_cmd = IRDMA_OP_DELETE_ARP_CACHE_ENTRY;
2417 cqp_info->in.u.del_arp_cache_entry.scratch =
2418 (uintptr_t)cqp_request;
2419 cqp_info->in.u.del_arp_cache_entry.cqp = &rf->cqp.sc_cqp;
2420 cqp_info->in.u.del_arp_cache_entry.arp_index = arp_index;
2421 }
2422
2423 cqp_info->post_sq = 1;
2424 irdma_handle_cqp_op(rf, cqp_request);
2425 irdma_put_cqp_request(&rf->cqp, cqp_request);
2426 }
2427
2428 /**
2429 * irdma_send_syn_cqp_callback - do syn/ack after qhash
2430 * @cqp_request: qhash cqp completion
2431 */
irdma_send_syn_cqp_callback(struct irdma_cqp_request * cqp_request)2432 static void irdma_send_syn_cqp_callback(struct irdma_cqp_request *cqp_request)
2433 {
2434 struct irdma_cm_node *cm_node = cqp_request->param;
2435
2436 irdma_send_syn(cm_node, 1);
2437 irdma_rem_ref_cm_node(cm_node);
2438 }
2439
2440 /**
2441 * irdma_manage_qhash - add or modify qhash
2442 * @iwdev: irdma device
2443 * @cminfo: cm info for qhash
2444 * @etype: type (syn or quad)
2445 * @mtype: type of qhash
2446 * @cmnode: cmnode associated with connection
2447 * @wait: wait for completion
2448 */
2449 enum irdma_status_code
irdma_manage_qhash(struct irdma_device * iwdev,struct irdma_cm_info * cminfo,enum irdma_quad_entry_type etype,enum irdma_quad_hash_manage_type mtype,void * cmnode,bool wait)2450 irdma_manage_qhash(struct irdma_device *iwdev, struct irdma_cm_info *cminfo,
2451 enum irdma_quad_entry_type etype,
2452 enum irdma_quad_hash_manage_type mtype, void *cmnode,
2453 bool wait)
2454 {
2455 struct irdma_qhash_table_info *info;
2456 enum irdma_status_code status;
2457 struct irdma_cqp *iwcqp = &iwdev->rf->cqp;
2458 struct irdma_cqp_request *cqp_request;
2459 struct cqp_cmds_info *cqp_info;
2460 struct irdma_cm_node *cm_node = cmnode;
2461
2462 cqp_request = irdma_alloc_and_get_cqp_request(iwcqp, wait);
2463 if (!cqp_request)
2464 return IRDMA_ERR_NO_MEMORY;
2465
2466 cqp_info = &cqp_request->info;
2467 info = &cqp_info->in.u.manage_qhash_table_entry.info;
2468 memset(info, 0, sizeof(*info));
2469 info->vsi = &iwdev->vsi;
2470 info->manage = mtype;
2471 info->entry_type = etype;
2472 if (cminfo->vlan_id < VLAN_N_VID) {
2473 info->vlan_valid = true;
2474 info->vlan_id = cminfo->vlan_id;
2475 } else {
2476 info->vlan_valid = false;
2477 }
2478 info->ipv4_valid = cminfo->ipv4;
2479 info->user_pri = cminfo->user_pri;
2480 ether_addr_copy(info->mac_addr, iwdev->netdev->dev_addr);
2481 info->qp_num = cminfo->qh_qpid;
2482 info->dest_port = cminfo->loc_port;
2483 info->dest_ip[0] = cminfo->loc_addr[0];
2484 info->dest_ip[1] = cminfo->loc_addr[1];
2485 info->dest_ip[2] = cminfo->loc_addr[2];
2486 info->dest_ip[3] = cminfo->loc_addr[3];
2487 if (etype == IRDMA_QHASH_TYPE_TCP_ESTABLISHED ||
2488 etype == IRDMA_QHASH_TYPE_UDP_UNICAST ||
2489 etype == IRDMA_QHASH_TYPE_UDP_MCAST ||
2490 etype == IRDMA_QHASH_TYPE_ROCE_MCAST ||
2491 etype == IRDMA_QHASH_TYPE_ROCEV2_HW) {
2492 info->src_port = cminfo->rem_port;
2493 info->src_ip[0] = cminfo->rem_addr[0];
2494 info->src_ip[1] = cminfo->rem_addr[1];
2495 info->src_ip[2] = cminfo->rem_addr[2];
2496 info->src_ip[3] = cminfo->rem_addr[3];
2497 }
2498 if (cmnode) {
2499 cqp_request->callback_fcn = irdma_send_syn_cqp_callback;
2500 cqp_request->param = cmnode;
2501 if (!wait)
2502 refcount_inc(&cm_node->refcnt);
2503 }
2504 if (info->ipv4_valid)
2505 ibdev_dbg(&iwdev->ibdev,
2506 "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",
2507 (!mtype) ? "DELETE" : "ADD",
2508 __builtin_return_address(0), info->dest_port,
2509 info->src_port, info->dest_ip, info->src_ip,
2510 info->mac_addr, cminfo->vlan_id,
2511 cmnode ? cmnode : NULL);
2512 else
2513 ibdev_dbg(&iwdev->ibdev,
2514 "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",
2515 (!mtype) ? "DELETE" : "ADD",
2516 __builtin_return_address(0), info->dest_port,
2517 info->src_port, info->dest_ip, info->src_ip,
2518 info->mac_addr, cminfo->vlan_id,
2519 cmnode ? cmnode : NULL);
2520
2521 cqp_info->in.u.manage_qhash_table_entry.cqp = &iwdev->rf->cqp.sc_cqp;
2522 cqp_info->in.u.manage_qhash_table_entry.scratch = (uintptr_t)cqp_request;
2523 cqp_info->cqp_cmd = IRDMA_OP_MANAGE_QHASH_TABLE_ENTRY;
2524 cqp_info->post_sq = 1;
2525 status = irdma_handle_cqp_op(iwdev->rf, cqp_request);
2526 if (status && cm_node && !wait)
2527 irdma_rem_ref_cm_node(cm_node);
2528
2529 irdma_put_cqp_request(iwcqp, cqp_request);
2530
2531 return status;
2532 }
2533
2534 /**
2535 * irdma_hw_flush_wqes_callback - Check return code after flush
2536 * @cqp_request: qhash cqp completion
2537 */
irdma_hw_flush_wqes_callback(struct irdma_cqp_request * cqp_request)2538 static void irdma_hw_flush_wqes_callback(struct irdma_cqp_request *cqp_request)
2539 {
2540 struct irdma_qp_flush_info *hw_info;
2541 struct irdma_sc_qp *qp;
2542 struct irdma_qp *iwqp;
2543 struct cqp_cmds_info *cqp_info;
2544
2545 cqp_info = &cqp_request->info;
2546 hw_info = &cqp_info->in.u.qp_flush_wqes.info;
2547 qp = cqp_info->in.u.qp_flush_wqes.qp;
2548 iwqp = qp->qp_uk.back_qp;
2549
2550 if (cqp_request->compl_info.maj_err_code)
2551 return;
2552
2553 if (hw_info->rq &&
2554 (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_SQ_WQE_FLUSHED ||
2555 cqp_request->compl_info.min_err_code == 0)) {
2556 /* RQ WQE flush was requested but did not happen */
2557 qp->qp_uk.rq_flush_complete = true;
2558 }
2559 if (hw_info->sq &&
2560 (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_RQ_WQE_FLUSHED ||
2561 cqp_request->compl_info.min_err_code == 0)) {
2562 if (IRDMA_RING_MORE_WORK(qp->qp_uk.sq_ring)) {
2563 ibdev_err(&iwqp->iwdev->ibdev, "Flush QP[%d] failed, SQ has more work",
2564 qp->qp_uk.qp_id);
2565 irdma_ib_qp_event(iwqp, IRDMA_QP_EVENT_CATASTROPHIC);
2566 }
2567 qp->qp_uk.sq_flush_complete = true;
2568 }
2569 }
2570
2571 /**
2572 * irdma_hw_flush_wqes - flush qp's wqe
2573 * @rf: RDMA PCI function
2574 * @qp: hardware control qp
2575 * @info: info for flush
2576 * @wait: flag wait for completion
2577 */
irdma_hw_flush_wqes(struct irdma_pci_f * rf,struct irdma_sc_qp * qp,struct irdma_qp_flush_info * info,bool wait)2578 enum irdma_status_code irdma_hw_flush_wqes(struct irdma_pci_f *rf,
2579 struct irdma_sc_qp *qp,
2580 struct irdma_qp_flush_info *info,
2581 bool wait)
2582 {
2583 enum irdma_status_code status;
2584 struct irdma_qp_flush_info *hw_info;
2585 struct irdma_cqp_request *cqp_request;
2586 struct cqp_cmds_info *cqp_info;
2587 struct irdma_qp *iwqp = qp->qp_uk.back_qp;
2588
2589 cqp_request = irdma_alloc_and_get_cqp_request(&rf->cqp, wait);
2590 if (!cqp_request)
2591 return IRDMA_ERR_NO_MEMORY;
2592
2593 cqp_info = &cqp_request->info;
2594 if (!wait)
2595 cqp_request->callback_fcn = irdma_hw_flush_wqes_callback;
2596 hw_info = &cqp_request->info.in.u.qp_flush_wqes.info;
2597 memcpy(hw_info, info, sizeof(*hw_info));
2598 cqp_info->cqp_cmd = IRDMA_OP_QP_FLUSH_WQES;
2599 cqp_info->post_sq = 1;
2600 cqp_info->in.u.qp_flush_wqes.qp = qp;
2601 cqp_info->in.u.qp_flush_wqes.scratch = (uintptr_t)cqp_request;
2602 status = irdma_handle_cqp_op(rf, cqp_request);
2603 if (status) {
2604 qp->qp_uk.sq_flush_complete = true;
2605 qp->qp_uk.rq_flush_complete = true;
2606 irdma_put_cqp_request(&rf->cqp, cqp_request);
2607 return status;
2608 }
2609
2610 if (!wait || cqp_request->compl_info.maj_err_code)
2611 goto put_cqp;
2612
2613 if (info->rq) {
2614 if (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_SQ_WQE_FLUSHED ||
2615 cqp_request->compl_info.min_err_code == 0) {
2616 /* RQ WQE flush was requested but did not happen */
2617 qp->qp_uk.rq_flush_complete = true;
2618 }
2619 }
2620 if (info->sq) {
2621 if (cqp_request->compl_info.min_err_code == IRDMA_CQP_COMPL_RQ_WQE_FLUSHED ||
2622 cqp_request->compl_info.min_err_code == 0) {
2623 /*
2624 * Handling case where WQE is posted to empty SQ when
2625 * flush has not completed
2626 */
2627 if (IRDMA_RING_MORE_WORK(qp->qp_uk.sq_ring)) {
2628 struct irdma_cqp_request *new_req;
2629
2630 if (!qp->qp_uk.sq_flush_complete)
2631 goto put_cqp;
2632 qp->qp_uk.sq_flush_complete = false;
2633 qp->flush_sq = false;
2634
2635 info->rq = false;
2636 info->sq = true;
2637 new_req = irdma_alloc_and_get_cqp_request(&rf->cqp, true);
2638 if (!new_req) {
2639 status = IRDMA_ERR_NO_MEMORY;
2640 goto put_cqp;
2641 }
2642 cqp_info = &new_req->info;
2643 hw_info = &new_req->info.in.u.qp_flush_wqes.info;
2644 memcpy(hw_info, info, sizeof(*hw_info));
2645 cqp_info->cqp_cmd = IRDMA_OP_QP_FLUSH_WQES;
2646 cqp_info->post_sq = 1;
2647 cqp_info->in.u.qp_flush_wqes.qp = qp;
2648 cqp_info->in.u.qp_flush_wqes.scratch = (uintptr_t)new_req;
2649
2650 status = irdma_handle_cqp_op(rf, new_req);
2651 if (new_req->compl_info.maj_err_code ||
2652 new_req->compl_info.min_err_code != IRDMA_CQP_COMPL_SQ_WQE_FLUSHED ||
2653 status) {
2654 ibdev_err(&iwqp->iwdev->ibdev, "fatal QP event: SQ in error but not flushed, qp: %d",
2655 iwqp->ibqp.qp_num);
2656 qp->qp_uk.sq_flush_complete = false;
2657 irdma_ib_qp_event(iwqp, IRDMA_QP_EVENT_CATASTROPHIC);
2658 }
2659 irdma_put_cqp_request(&rf->cqp, new_req);
2660 } else {
2661 /* SQ WQE flush was requested but did not happen */
2662 qp->qp_uk.sq_flush_complete = true;
2663 }
2664 } else {
2665 if (!IRDMA_RING_MORE_WORK(qp->qp_uk.sq_ring))
2666 qp->qp_uk.sq_flush_complete = true;
2667 }
2668 }
2669
2670 ibdev_dbg(&rf->iwdev->ibdev,
2671 "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",
2672 iwqp->ibqp.qp_num, rf->protocol_used, iwqp->iwarp_state,
2673 iwqp->ibqp_state, iwqp->last_aeq, iwqp->hw_iwarp_state,
2674 cqp_request->compl_info.maj_err_code,
2675 cqp_request->compl_info.min_err_code);
2676 put_cqp:
2677 irdma_put_cqp_request(&rf->cqp, cqp_request);
2678
2679 return status;
2680 }
2681
2682 /**
2683 * irdma_gen_ae - generate AE
2684 * @rf: RDMA PCI function
2685 * @qp: qp associated with AE
2686 * @info: info for ae
2687 * @wait: wait for completion
2688 */
irdma_gen_ae(struct irdma_pci_f * rf,struct irdma_sc_qp * qp,struct irdma_gen_ae_info * info,bool wait)2689 void irdma_gen_ae(struct irdma_pci_f *rf, struct irdma_sc_qp *qp,
2690 struct irdma_gen_ae_info *info, bool wait)
2691 {
2692 struct irdma_gen_ae_info *ae_info;
2693 struct irdma_cqp_request *cqp_request;
2694 struct cqp_cmds_info *cqp_info;
2695
2696 cqp_request = irdma_alloc_and_get_cqp_request(&rf->cqp, wait);
2697 if (!cqp_request)
2698 return;
2699
2700 cqp_info = &cqp_request->info;
2701 ae_info = &cqp_request->info.in.u.gen_ae.info;
2702 memcpy(ae_info, info, sizeof(*ae_info));
2703 cqp_info->cqp_cmd = IRDMA_OP_GEN_AE;
2704 cqp_info->post_sq = 1;
2705 cqp_info->in.u.gen_ae.qp = qp;
2706 cqp_info->in.u.gen_ae.scratch = (uintptr_t)cqp_request;
2707
2708 irdma_handle_cqp_op(rf, cqp_request);
2709 irdma_put_cqp_request(&rf->cqp, cqp_request);
2710 }
2711
irdma_flush_wqes(struct irdma_qp * iwqp,u32 flush_mask)2712 void irdma_flush_wqes(struct irdma_qp *iwqp, u32 flush_mask)
2713 {
2714 struct irdma_qp_flush_info info = {};
2715 struct irdma_pci_f *rf = iwqp->iwdev->rf;
2716 u8 flush_code = iwqp->sc_qp.flush_code;
2717
2718 if (!(flush_mask & IRDMA_FLUSH_SQ) && !(flush_mask & IRDMA_FLUSH_RQ))
2719 return;
2720
2721 /* Set flush info fields*/
2722 info.sq = flush_mask & IRDMA_FLUSH_SQ;
2723 info.rq = flush_mask & IRDMA_FLUSH_RQ;
2724
2725 /* Generate userflush errors in CQE */
2726 info.sq_major_code = IRDMA_FLUSH_MAJOR_ERR;
2727 info.sq_minor_code = FLUSH_GENERAL_ERR;
2728 info.rq_major_code = IRDMA_FLUSH_MAJOR_ERR;
2729 info.rq_minor_code = FLUSH_GENERAL_ERR;
2730 info.userflushcode = true;
2731
2732 if (flush_mask & IRDMA_REFLUSH) {
2733 if (info.sq)
2734 iwqp->sc_qp.flush_sq = false;
2735 if (info.rq)
2736 iwqp->sc_qp.flush_rq = false;
2737 } else {
2738 if (flush_code) {
2739 if (info.sq && iwqp->sc_qp.sq_flush_code)
2740 info.sq_minor_code = flush_code;
2741 if (info.rq && iwqp->sc_qp.rq_flush_code)
2742 info.rq_minor_code = flush_code;
2743 }
2744 if (!iwqp->user_mode)
2745 queue_delayed_work(iwqp->iwdev->cleanup_wq,
2746 &iwqp->dwork_flush,
2747 msecs_to_jiffies(IRDMA_FLUSH_DELAY_MS));
2748 }
2749
2750 /* Issue flush */
2751 (void)irdma_hw_flush_wqes(rf, &iwqp->sc_qp, &info,
2752 flush_mask & IRDMA_FLUSH_WAIT);
2753 iwqp->flush_issued = true;
2754 }
2755