1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2020 Mellanox Technologies, Ltd 3 */ 4 5 #include <stddef.h> 6 #include <errno.h> 7 #include <string.h> 8 #include <stdint.h> 9 #include <unistd.h> 10 #include <inttypes.h> 11 #include <sys/queue.h> 12 13 #include "mlx5_autoconf.h" 14 15 #include <rte_mbuf.h> 16 #include <rte_malloc.h> 17 #include <rte_ethdev_driver.h> 18 #include <rte_common.h> 19 20 #include <mlx5_glue.h> 21 #include <mlx5_common.h> 22 #include <mlx5_common_mr.h> 23 #include <mlx5_rxtx.h> 24 #include <mlx5_verbs.h> 25 #include <mlx5_utils.h> 26 #include <mlx5_malloc.h> 27 28 /** 29 * Register mr. Given protection domain pointer, pointer to addr and length 30 * register the memory region. 31 * 32 * @param[in] pd 33 * Pointer to protection domain context. 34 * @param[in] addr 35 * Pointer to memory start address. 36 * @param[in] length 37 * Length of the memory to register. 38 * @param[out] pmd_mr 39 * pmd_mr struct set with lkey, address, length and pointer to mr object 40 * 41 * @return 42 * 0 on successful registration, -1 otherwise 43 */ 44 static int 45 mlx5_reg_mr(void *pd, void *addr, size_t length, 46 struct mlx5_pmd_mr *pmd_mr) 47 { 48 return mlx5_common_verbs_reg_mr(pd, addr, length, pmd_mr); 49 } 50 51 /** 52 * Deregister mr. Given the mlx5 pmd MR - deregister the MR 53 * 54 * @param[in] pmd_mr 55 * pmd_mr struct set with lkey, address, length and pointer to mr object 56 * 57 */ 58 static void 59 mlx5_dereg_mr(struct mlx5_pmd_mr *pmd_mr) 60 { 61 mlx5_common_verbs_dereg_mr(pmd_mr); 62 } 63 64 /* verbs operations. */ 65 const struct mlx5_mr_ops mlx5_mr_verbs_ops = { 66 .reg_mr = mlx5_reg_mr, 67 .dereg_mr = mlx5_dereg_mr, 68 }; 69 70 /** 71 * Modify Rx WQ vlan stripping offload 72 * 73 * @param rxq_obj 74 * Rx queue object. 75 * 76 * @return 0 on success, non-0 otherwise 77 */ 78 static int 79 mlx5_rxq_obj_modify_wq_vlan_strip(struct mlx5_rxq_obj *rxq_obj, int on) 80 { 81 uint16_t vlan_offloads = 82 (on ? IBV_WQ_FLAGS_CVLAN_STRIPPING : 0) | 83 0; 84 struct ibv_wq_attr mod; 85 mod = (struct ibv_wq_attr){ 86 .attr_mask = IBV_WQ_ATTR_FLAGS, 87 .flags_mask = IBV_WQ_FLAGS_CVLAN_STRIPPING, 88 .flags = vlan_offloads, 89 }; 90 91 return mlx5_glue->modify_wq(rxq_obj->wq, &mod); 92 } 93 94 /** 95 * Modifies the attributes for the specified WQ. 96 * 97 * @param rxq_obj 98 * Verbs Rx queue object. 99 * @param type 100 * Type of change queue state. 101 * 102 * @return 103 * 0 on success, a negative errno value otherwise and rte_errno is set. 104 */ 105 static int 106 mlx5_ibv_modify_wq(struct mlx5_rxq_obj *rxq_obj, uint8_t type) 107 { 108 struct ibv_wq_attr mod = { 109 .attr_mask = IBV_WQ_ATTR_STATE, 110 .wq_state = (enum ibv_wq_state)type, 111 }; 112 113 return mlx5_glue->modify_wq(rxq_obj->wq, &mod); 114 } 115 116 /** 117 * Modify QP using Verbs API. 118 * 119 * @param txq_obj 120 * Verbs Tx queue object. 121 * @param type 122 * Type of change queue state. 123 * @param dev_port 124 * IB device port number. 125 * 126 * @return 127 * 0 on success, a negative errno value otherwise and rte_errno is set. 128 */ 129 static int 130 mlx5_ibv_modify_qp(struct mlx5_txq_obj *obj, enum mlx5_txq_modify_type type, 131 uint8_t dev_port) 132 { 133 struct ibv_qp_attr mod = { 134 .qp_state = IBV_QPS_RESET, 135 .port_num = dev_port, 136 }; 137 int attr_mask = (IBV_QP_STATE | IBV_QP_PORT); 138 int ret; 139 140 if (type != MLX5_TXQ_MOD_RST2RDY) { 141 ret = mlx5_glue->modify_qp(obj->qp, &mod, IBV_QP_STATE); 142 if (ret) { 143 DRV_LOG(ERR, "Cannot change Tx QP state to RESET %s", 144 strerror(errno)); 145 rte_errno = errno; 146 return ret; 147 } 148 if (type == MLX5_TXQ_MOD_RDY2RST) 149 return 0; 150 } 151 if (type == MLX5_TXQ_MOD_ERR2RDY) 152 attr_mask = IBV_QP_STATE; 153 mod.qp_state = IBV_QPS_INIT; 154 ret = mlx5_glue->modify_qp(obj->qp, &mod, attr_mask); 155 if (ret) { 156 DRV_LOG(ERR, "Cannot change Tx QP state to INIT %s", 157 strerror(errno)); 158 rte_errno = errno; 159 return ret; 160 } 161 mod.qp_state = IBV_QPS_RTR; 162 ret = mlx5_glue->modify_qp(obj->qp, &mod, IBV_QP_STATE); 163 if (ret) { 164 DRV_LOG(ERR, "Cannot change Tx QP state to RTR %s", 165 strerror(errno)); 166 rte_errno = errno; 167 return ret; 168 } 169 mod.qp_state = IBV_QPS_RTS; 170 ret = mlx5_glue->modify_qp(obj->qp, &mod, IBV_QP_STATE); 171 if (ret) { 172 DRV_LOG(ERR, "Cannot change Tx QP state to RTS %s", 173 strerror(errno)); 174 rte_errno = errno; 175 return ret; 176 } 177 return 0; 178 } 179 180 /** 181 * Create a CQ Verbs object. 182 * 183 * @param dev 184 * Pointer to Ethernet device. 185 * @param idx 186 * Queue index in DPDK Rx queue array. 187 * 188 * @return 189 * The Verbs CQ object initialized, NULL otherwise and rte_errno is set. 190 */ 191 static struct ibv_cq * 192 mlx5_rxq_ibv_cq_create(struct rte_eth_dev *dev, uint16_t idx) 193 { 194 struct mlx5_priv *priv = dev->data->dev_private; 195 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx]; 196 struct mlx5_rxq_ctrl *rxq_ctrl = 197 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq); 198 struct mlx5_rxq_obj *rxq_obj = rxq_ctrl->obj; 199 unsigned int cqe_n = mlx5_rxq_cqe_num(rxq_data); 200 struct { 201 struct ibv_cq_init_attr_ex ibv; 202 struct mlx5dv_cq_init_attr mlx5; 203 } cq_attr; 204 205 cq_attr.ibv = (struct ibv_cq_init_attr_ex){ 206 .cqe = cqe_n, 207 .channel = rxq_obj->ibv_channel, 208 .comp_mask = 0, 209 }; 210 cq_attr.mlx5 = (struct mlx5dv_cq_init_attr){ 211 .comp_mask = 0, 212 }; 213 if (priv->config.cqe_comp && !rxq_data->hw_timestamp) { 214 cq_attr.mlx5.comp_mask |= 215 MLX5DV_CQ_INIT_ATTR_MASK_COMPRESSED_CQE; 216 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT 217 cq_attr.mlx5.cqe_comp_res_format = 218 mlx5_rxq_mprq_enabled(rxq_data) ? 219 MLX5DV_CQE_RES_FORMAT_CSUM_STRIDX : 220 MLX5DV_CQE_RES_FORMAT_HASH; 221 #else 222 cq_attr.mlx5.cqe_comp_res_format = MLX5DV_CQE_RES_FORMAT_HASH; 223 #endif 224 /* 225 * For vectorized Rx, it must not be doubled in order to 226 * make cq_ci and rq_ci aligned. 227 */ 228 if (mlx5_rxq_check_vec_support(rxq_data) < 0) 229 cq_attr.ibv.cqe *= 2; 230 } else if (priv->config.cqe_comp && rxq_data->hw_timestamp) { 231 DRV_LOG(DEBUG, 232 "Port %u Rx CQE compression is disabled for HW" 233 " timestamp.", 234 dev->data->port_id); 235 } 236 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD 237 if (priv->config.cqe_pad) { 238 cq_attr.mlx5.comp_mask |= MLX5DV_CQ_INIT_ATTR_MASK_FLAGS; 239 cq_attr.mlx5.flags |= MLX5DV_CQ_INIT_ATTR_FLAGS_CQE_PAD; 240 } 241 #endif 242 return mlx5_glue->cq_ex_to_cq(mlx5_glue->dv_create_cq(priv->sh->ctx, 243 &cq_attr.ibv, 244 &cq_attr.mlx5)); 245 } 246 247 /** 248 * Create a WQ Verbs object. 249 * 250 * @param dev 251 * Pointer to Ethernet device. 252 * @param idx 253 * Queue index in DPDK Rx queue array. 254 * 255 * @return 256 * The Verbs WQ object initialized, NULL otherwise and rte_errno is set. 257 */ 258 static struct ibv_wq * 259 mlx5_rxq_ibv_wq_create(struct rte_eth_dev *dev, uint16_t idx) 260 { 261 struct mlx5_priv *priv = dev->data->dev_private; 262 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx]; 263 struct mlx5_rxq_ctrl *rxq_ctrl = 264 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq); 265 struct mlx5_rxq_obj *rxq_obj = rxq_ctrl->obj; 266 unsigned int wqe_n = 1 << rxq_data->elts_n; 267 struct { 268 struct ibv_wq_init_attr ibv; 269 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT 270 struct mlx5dv_wq_init_attr mlx5; 271 #endif 272 } wq_attr; 273 274 wq_attr.ibv = (struct ibv_wq_init_attr){ 275 .wq_context = NULL, /* Could be useful in the future. */ 276 .wq_type = IBV_WQT_RQ, 277 /* Max number of outstanding WRs. */ 278 .max_wr = wqe_n >> rxq_data->sges_n, 279 /* Max number of scatter/gather elements in a WR. */ 280 .max_sge = 1 << rxq_data->sges_n, 281 .pd = priv->sh->pd, 282 .cq = rxq_obj->ibv_cq, 283 .comp_mask = IBV_WQ_FLAGS_CVLAN_STRIPPING | 0, 284 .create_flags = (rxq_data->vlan_strip ? 285 IBV_WQ_FLAGS_CVLAN_STRIPPING : 0), 286 }; 287 /* By default, FCS (CRC) is stripped by hardware. */ 288 if (rxq_data->crc_present) { 289 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_SCATTER_FCS; 290 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS; 291 } 292 if (priv->config.hw_padding) { 293 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING) 294 wq_attr.ibv.create_flags |= IBV_WQ_FLAG_RX_END_PADDING; 295 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS; 296 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING) 297 wq_attr.ibv.create_flags |= IBV_WQ_FLAGS_PCI_WRITE_END_PADDING; 298 wq_attr.ibv.comp_mask |= IBV_WQ_INIT_ATTR_FLAGS; 299 #endif 300 } 301 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT 302 wq_attr.mlx5 = (struct mlx5dv_wq_init_attr){ 303 .comp_mask = 0, 304 }; 305 if (mlx5_rxq_mprq_enabled(rxq_data)) { 306 struct mlx5dv_striding_rq_init_attr *mprq_attr = 307 &wq_attr.mlx5.striding_rq_attrs; 308 309 wq_attr.mlx5.comp_mask |= MLX5DV_WQ_INIT_ATTR_MASK_STRIDING_RQ; 310 *mprq_attr = (struct mlx5dv_striding_rq_init_attr){ 311 .single_stride_log_num_of_bytes = rxq_data->strd_sz_n, 312 .single_wqe_log_num_of_strides = rxq_data->strd_num_n, 313 .two_byte_shift_en = MLX5_MPRQ_TWO_BYTE_SHIFT, 314 }; 315 } 316 rxq_obj->wq = mlx5_glue->dv_create_wq(priv->sh->ctx, &wq_attr.ibv, 317 &wq_attr.mlx5); 318 #else 319 rxq_obj->wq = mlx5_glue->create_wq(priv->sh->ctx, &wq_attr.ibv); 320 #endif 321 if (rxq_obj->wq) { 322 /* 323 * Make sure number of WRs*SGEs match expectations since a queue 324 * cannot allocate more than "desc" buffers. 325 */ 326 if (wq_attr.ibv.max_wr != (wqe_n >> rxq_data->sges_n) || 327 wq_attr.ibv.max_sge != (1u << rxq_data->sges_n)) { 328 DRV_LOG(ERR, 329 "Port %u Rx queue %u requested %u*%u but got" 330 " %u*%u WRs*SGEs.", 331 dev->data->port_id, idx, 332 wqe_n >> rxq_data->sges_n, 333 (1 << rxq_data->sges_n), 334 wq_attr.ibv.max_wr, wq_attr.ibv.max_sge); 335 claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq)); 336 rxq_obj->wq = NULL; 337 rte_errno = EINVAL; 338 } 339 } 340 return rxq_obj->wq; 341 } 342 343 /** 344 * Create the Rx queue Verbs object. 345 * 346 * @param dev 347 * Pointer to Ethernet device. 348 * @param idx 349 * Queue index in DPDK Rx queue array. 350 * 351 * @return 352 * 0 on success, a negative errno value otherwise and rte_errno is set. 353 */ 354 static int 355 mlx5_rxq_ibv_obj_new(struct rte_eth_dev *dev, uint16_t idx) 356 { 357 struct mlx5_priv *priv = dev->data->dev_private; 358 struct mlx5_rxq_data *rxq_data = (*priv->rxqs)[idx]; 359 struct mlx5_rxq_ctrl *rxq_ctrl = 360 container_of(rxq_data, struct mlx5_rxq_ctrl, rxq); 361 struct mlx5_rxq_obj *tmpl = rxq_ctrl->obj; 362 struct mlx5dv_cq cq_info; 363 struct mlx5dv_rwq rwq; 364 int ret = 0; 365 struct mlx5dv_obj obj; 366 367 MLX5_ASSERT(rxq_data); 368 MLX5_ASSERT(tmpl); 369 tmpl->rxq_ctrl = rxq_ctrl; 370 if (rxq_ctrl->irq) { 371 tmpl->ibv_channel = 372 mlx5_glue->create_comp_channel(priv->sh->ctx); 373 if (!tmpl->ibv_channel) { 374 DRV_LOG(ERR, "Port %u: comp channel creation failure.", 375 dev->data->port_id); 376 rte_errno = ENOMEM; 377 goto error; 378 } 379 tmpl->fd = ((struct ibv_comp_channel *)(tmpl->ibv_channel))->fd; 380 } 381 /* Create CQ using Verbs API. */ 382 tmpl->ibv_cq = mlx5_rxq_ibv_cq_create(dev, idx); 383 if (!tmpl->ibv_cq) { 384 DRV_LOG(ERR, "Port %u Rx queue %u CQ creation failure.", 385 dev->data->port_id, idx); 386 rte_errno = ENOMEM; 387 goto error; 388 } 389 obj.cq.in = tmpl->ibv_cq; 390 obj.cq.out = &cq_info; 391 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ); 392 if (ret) { 393 rte_errno = ret; 394 goto error; 395 } 396 if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) { 397 DRV_LOG(ERR, 398 "Port %u wrong MLX5_CQE_SIZE environment " 399 "variable value: it should be set to %u.", 400 dev->data->port_id, RTE_CACHE_LINE_SIZE); 401 rte_errno = EINVAL; 402 goto error; 403 } 404 /* Fill the rings. */ 405 rxq_data->cqe_n = log2above(cq_info.cqe_cnt); 406 rxq_data->cq_db = cq_info.dbrec; 407 rxq_data->cqes = (volatile struct mlx5_cqe (*)[])(uintptr_t)cq_info.buf; 408 rxq_data->cq_uar = cq_info.cq_uar; 409 rxq_data->cqn = cq_info.cqn; 410 /* Create WQ (RQ) using Verbs API. */ 411 tmpl->wq = mlx5_rxq_ibv_wq_create(dev, idx); 412 if (!tmpl->wq) { 413 DRV_LOG(ERR, "Port %u Rx queue %u WQ creation failure.", 414 dev->data->port_id, idx); 415 rte_errno = ENOMEM; 416 goto error; 417 } 418 /* Change queue state to ready. */ 419 ret = mlx5_ibv_modify_wq(tmpl, IBV_WQS_RDY); 420 if (ret) { 421 DRV_LOG(ERR, 422 "Port %u Rx queue %u WQ state to IBV_WQS_RDY failed.", 423 dev->data->port_id, idx); 424 rte_errno = ret; 425 goto error; 426 } 427 obj.rwq.in = tmpl->wq; 428 obj.rwq.out = &rwq; 429 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_RWQ); 430 if (ret) { 431 rte_errno = ret; 432 goto error; 433 } 434 rxq_data->wqes = rwq.buf; 435 rxq_data->rq_db = rwq.dbrec; 436 rxq_data->cq_arm_sn = 0; 437 mlx5_rxq_initialize(rxq_data); 438 rxq_data->cq_ci = 0; 439 dev->data->rx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STARTED; 440 rxq_ctrl->wqn = ((struct ibv_wq *)(tmpl->wq))->wq_num; 441 return 0; 442 error: 443 ret = rte_errno; /* Save rte_errno before cleanup. */ 444 if (tmpl->wq) 445 claim_zero(mlx5_glue->destroy_wq(tmpl->wq)); 446 if (tmpl->ibv_cq) 447 claim_zero(mlx5_glue->destroy_cq(tmpl->ibv_cq)); 448 if (tmpl->ibv_channel) 449 claim_zero(mlx5_glue->destroy_comp_channel(tmpl->ibv_channel)); 450 rte_errno = ret; /* Restore rte_errno. */ 451 return -rte_errno; 452 } 453 454 /** 455 * Release an Rx verbs queue object. 456 * 457 * @param rxq_obj 458 * Verbs Rx queue object. 459 */ 460 static void 461 mlx5_rxq_ibv_obj_release(struct mlx5_rxq_obj *rxq_obj) 462 { 463 MLX5_ASSERT(rxq_obj); 464 MLX5_ASSERT(rxq_obj->wq); 465 MLX5_ASSERT(rxq_obj->ibv_cq); 466 claim_zero(mlx5_glue->destroy_wq(rxq_obj->wq)); 467 claim_zero(mlx5_glue->destroy_cq(rxq_obj->ibv_cq)); 468 if (rxq_obj->ibv_channel) 469 claim_zero(mlx5_glue->destroy_comp_channel 470 (rxq_obj->ibv_channel)); 471 } 472 473 /** 474 * Get event for an Rx verbs queue object. 475 * 476 * @param rxq_obj 477 * Verbs Rx queue object. 478 * 479 * @return 480 * 0 on success, a negative errno value otherwise and rte_errno is set. 481 */ 482 static int 483 mlx5_rx_ibv_get_event(struct mlx5_rxq_obj *rxq_obj) 484 { 485 struct ibv_cq *ev_cq; 486 void *ev_ctx; 487 int ret = mlx5_glue->get_cq_event(rxq_obj->ibv_channel, 488 &ev_cq, &ev_ctx); 489 490 if (ret < 0 || ev_cq != rxq_obj->ibv_cq) 491 goto exit; 492 mlx5_glue->ack_cq_events(rxq_obj->ibv_cq, 1); 493 return 0; 494 exit: 495 if (ret < 0) 496 rte_errno = errno; 497 else 498 rte_errno = EINVAL; 499 return -rte_errno; 500 } 501 502 /** 503 * Creates a receive work queue as a filed of indirection table. 504 * 505 * @param dev 506 * Pointer to Ethernet device. 507 * @param log_n 508 * Log of number of queues in the array. 509 * @param ind_tbl 510 * Verbs indirection table object. 511 * 512 * @return 513 * 0 on success, a negative errno value otherwise and rte_errno is set. 514 */ 515 static int 516 mlx5_ibv_ind_table_new(struct rte_eth_dev *dev, const unsigned int log_n, 517 struct mlx5_ind_table_obj *ind_tbl) 518 { 519 struct mlx5_priv *priv = dev->data->dev_private; 520 struct ibv_wq *wq[1 << log_n]; 521 unsigned int i, j; 522 523 MLX5_ASSERT(ind_tbl); 524 for (i = 0; i != ind_tbl->queues_n; ++i) { 525 struct mlx5_rxq_data *rxq = (*priv->rxqs)[ind_tbl->queues[i]]; 526 struct mlx5_rxq_ctrl *rxq_ctrl = 527 container_of(rxq, struct mlx5_rxq_ctrl, rxq); 528 529 wq[i] = rxq_ctrl->obj->wq; 530 } 531 MLX5_ASSERT(i > 0); 532 /* Finalise indirection table. */ 533 for (j = 0; i != (unsigned int)(1 << log_n); ++j, ++i) 534 wq[i] = wq[j]; 535 ind_tbl->ind_table = mlx5_glue->create_rwq_ind_table(priv->sh->ctx, 536 &(struct ibv_rwq_ind_table_init_attr){ 537 .log_ind_tbl_size = log_n, 538 .ind_tbl = wq, 539 .comp_mask = 0, 540 }); 541 if (!ind_tbl->ind_table) { 542 rte_errno = errno; 543 return -rte_errno; 544 } 545 return 0; 546 } 547 548 /** 549 * Destroys the specified Indirection Table. 550 * 551 * @param ind_table 552 * Indirection table to release. 553 */ 554 static void 555 mlx5_ibv_ind_table_destroy(struct mlx5_ind_table_obj *ind_tbl) 556 { 557 claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl->ind_table)); 558 } 559 560 /** 561 * Create an Rx Hash queue. 562 * 563 * @param dev 564 * Pointer to Ethernet device. 565 * @param hrxq 566 * Pointer to Rx Hash queue. 567 * @param tunnel 568 * Tunnel type. 569 * 570 * @return 571 * 0 on success, a negative errno value otherwise and rte_errno is set. 572 */ 573 static int 574 mlx5_ibv_hrxq_new(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq, 575 int tunnel __rte_unused) 576 { 577 struct mlx5_priv *priv = dev->data->dev_private; 578 struct ibv_qp *qp = NULL; 579 struct mlx5_ind_table_obj *ind_tbl = hrxq->ind_table; 580 const uint8_t *rss_key = hrxq->rss_key; 581 uint64_t hash_fields = hrxq->hash_fields; 582 int err; 583 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT 584 struct mlx5dv_qp_init_attr qp_init_attr; 585 586 memset(&qp_init_attr, 0, sizeof(qp_init_attr)); 587 if (tunnel) { 588 qp_init_attr.comp_mask = 589 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS; 590 qp_init_attr.create_flags = MLX5DV_QP_CREATE_TUNNEL_OFFLOADS; 591 } 592 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 593 if (dev->data->dev_conf.lpbk_mode) { 594 /* Allow packet sent from NIC loop back w/o source MAC check. */ 595 qp_init_attr.comp_mask |= 596 MLX5DV_QP_INIT_ATTR_MASK_QP_CREATE_FLAGS; 597 qp_init_attr.create_flags |= 598 MLX5DV_QP_CREATE_TIR_ALLOW_SELF_LOOPBACK_UC; 599 } 600 #endif 601 qp = mlx5_glue->dv_create_qp 602 (priv->sh->ctx, 603 &(struct ibv_qp_init_attr_ex){ 604 .qp_type = IBV_QPT_RAW_PACKET, 605 .comp_mask = 606 IBV_QP_INIT_ATTR_PD | 607 IBV_QP_INIT_ATTR_IND_TABLE | 608 IBV_QP_INIT_ATTR_RX_HASH, 609 .rx_hash_conf = (struct ibv_rx_hash_conf){ 610 .rx_hash_function = 611 IBV_RX_HASH_FUNC_TOEPLITZ, 612 .rx_hash_key_len = hrxq->rss_key_len, 613 .rx_hash_key = 614 (void *)(uintptr_t)rss_key, 615 .rx_hash_fields_mask = hash_fields, 616 }, 617 .rwq_ind_tbl = ind_tbl->ind_table, 618 .pd = priv->sh->pd, 619 }, 620 &qp_init_attr); 621 #else 622 qp = mlx5_glue->create_qp_ex 623 (priv->sh->ctx, 624 &(struct ibv_qp_init_attr_ex){ 625 .qp_type = IBV_QPT_RAW_PACKET, 626 .comp_mask = 627 IBV_QP_INIT_ATTR_PD | 628 IBV_QP_INIT_ATTR_IND_TABLE | 629 IBV_QP_INIT_ATTR_RX_HASH, 630 .rx_hash_conf = (struct ibv_rx_hash_conf){ 631 .rx_hash_function = 632 IBV_RX_HASH_FUNC_TOEPLITZ, 633 .rx_hash_key_len = hrxq->rss_key_len, 634 .rx_hash_key = 635 (void *)(uintptr_t)rss_key, 636 .rx_hash_fields_mask = hash_fields, 637 }, 638 .rwq_ind_tbl = ind_tbl->ind_table, 639 .pd = priv->sh->pd, 640 }); 641 #endif 642 if (!qp) { 643 rte_errno = errno; 644 goto error; 645 } 646 hrxq->qp = qp; 647 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 648 hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp); 649 if (!hrxq->action) { 650 rte_errno = errno; 651 goto error; 652 } 653 #endif 654 return 0; 655 error: 656 err = rte_errno; /* Save rte_errno before cleanup. */ 657 if (qp) 658 claim_zero(mlx5_glue->destroy_qp(qp)); 659 rte_errno = err; /* Restore rte_errno. */ 660 return -rte_errno; 661 } 662 663 /** 664 * Destroy a Verbs queue pair. 665 * 666 * @param hrxq 667 * Hash Rx queue to release its qp. 668 */ 669 static void 670 mlx5_ibv_qp_destroy(struct mlx5_hrxq *hrxq) 671 { 672 claim_zero(mlx5_glue->destroy_qp(hrxq->qp)); 673 } 674 675 /** 676 * Release a drop Rx queue Verbs object. 677 * 678 * @param dev 679 * Pointer to Ethernet device. 680 */ 681 static void 682 mlx5_rxq_ibv_obj_drop_release(struct rte_eth_dev *dev) 683 { 684 struct mlx5_priv *priv = dev->data->dev_private; 685 struct mlx5_rxq_obj *rxq = priv->drop_queue.rxq; 686 687 if (rxq->wq) 688 claim_zero(mlx5_glue->destroy_wq(rxq->wq)); 689 if (rxq->ibv_cq) 690 claim_zero(mlx5_glue->destroy_cq(rxq->ibv_cq)); 691 mlx5_free(rxq); 692 priv->drop_queue.rxq = NULL; 693 } 694 695 /** 696 * Create a drop Rx queue Verbs object. 697 * 698 * @param dev 699 * Pointer to Ethernet device. 700 * 701 * @return 702 * 0 on success, a negative errno value otherwise and rte_errno is set. 703 */ 704 static int 705 mlx5_rxq_ibv_obj_drop_create(struct rte_eth_dev *dev) 706 { 707 struct mlx5_priv *priv = dev->data->dev_private; 708 struct ibv_context *ctx = priv->sh->ctx; 709 struct mlx5_rxq_obj *rxq = priv->drop_queue.rxq; 710 711 if (rxq) 712 return 0; 713 rxq = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*rxq), 0, SOCKET_ID_ANY); 714 if (!rxq) { 715 DEBUG("Port %u cannot allocate drop Rx queue memory.", 716 dev->data->port_id); 717 rte_errno = ENOMEM; 718 return -rte_errno; 719 } 720 priv->drop_queue.rxq = rxq; 721 rxq->ibv_cq = mlx5_glue->create_cq(ctx, 1, NULL, NULL, 0); 722 if (!rxq->ibv_cq) { 723 DEBUG("Port %u cannot allocate CQ for drop queue.", 724 dev->data->port_id); 725 rte_errno = errno; 726 goto error; 727 } 728 rxq->wq = mlx5_glue->create_wq(ctx, &(struct ibv_wq_init_attr){ 729 .wq_type = IBV_WQT_RQ, 730 .max_wr = 1, 731 .max_sge = 1, 732 .pd = priv->sh->pd, 733 .cq = rxq->ibv_cq, 734 }); 735 if (!rxq->wq) { 736 DEBUG("Port %u cannot allocate WQ for drop queue.", 737 dev->data->port_id); 738 rte_errno = errno; 739 goto error; 740 } 741 priv->drop_queue.rxq = rxq; 742 return 0; 743 error: 744 mlx5_rxq_ibv_obj_drop_release(dev); 745 return -rte_errno; 746 } 747 748 /** 749 * Create a Verbs drop action for Rx Hash queue. 750 * 751 * @param dev 752 * Pointer to Ethernet device. 753 * 754 * @return 755 * 0 on success, a negative errno value otherwise and rte_errno is set. 756 */ 757 static int 758 mlx5_ibv_drop_action_create(struct rte_eth_dev *dev) 759 { 760 struct mlx5_priv *priv = dev->data->dev_private; 761 struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq; 762 struct ibv_rwq_ind_table *ind_tbl = NULL; 763 struct mlx5_rxq_obj *rxq; 764 int ret; 765 766 MLX5_ASSERT(hrxq && hrxq->ind_table); 767 ret = mlx5_rxq_ibv_obj_drop_create(dev); 768 if (ret < 0) 769 goto error; 770 rxq = priv->drop_queue.rxq; 771 ind_tbl = mlx5_glue->create_rwq_ind_table 772 (priv->sh->ctx, 773 &(struct ibv_rwq_ind_table_init_attr){ 774 .log_ind_tbl_size = 0, 775 .ind_tbl = (struct ibv_wq **)&rxq->wq, 776 .comp_mask = 0, 777 }); 778 if (!ind_tbl) { 779 DEBUG("Port %u cannot allocate indirection table for drop" 780 " queue.", dev->data->port_id); 781 rte_errno = errno; 782 goto error; 783 } 784 hrxq->qp = mlx5_glue->create_qp_ex(priv->sh->ctx, 785 &(struct ibv_qp_init_attr_ex){ 786 .qp_type = IBV_QPT_RAW_PACKET, 787 .comp_mask = IBV_QP_INIT_ATTR_PD | 788 IBV_QP_INIT_ATTR_IND_TABLE | 789 IBV_QP_INIT_ATTR_RX_HASH, 790 .rx_hash_conf = (struct ibv_rx_hash_conf){ 791 .rx_hash_function = IBV_RX_HASH_FUNC_TOEPLITZ, 792 .rx_hash_key_len = MLX5_RSS_HASH_KEY_LEN, 793 .rx_hash_key = rss_hash_default_key, 794 .rx_hash_fields_mask = 0, 795 }, 796 .rwq_ind_tbl = ind_tbl, 797 .pd = priv->sh->pd 798 }); 799 if (!hrxq->qp) { 800 DEBUG("Port %u cannot allocate QP for drop queue.", 801 dev->data->port_id); 802 rte_errno = errno; 803 goto error; 804 } 805 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 806 hrxq->action = mlx5_glue->dv_create_flow_action_dest_ibv_qp(hrxq->qp); 807 if (!hrxq->action) { 808 rte_errno = errno; 809 goto error; 810 } 811 #endif 812 hrxq->ind_table->ind_table = ind_tbl; 813 return 0; 814 error: 815 if (hrxq->qp) 816 claim_zero(mlx5_glue->destroy_qp(hrxq->qp)); 817 if (ind_tbl) 818 claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl)); 819 if (priv->drop_queue.rxq) 820 mlx5_rxq_ibv_obj_drop_release(dev); 821 return -rte_errno; 822 } 823 824 /** 825 * Release a drop hash Rx queue. 826 * 827 * @param dev 828 * Pointer to Ethernet device. 829 */ 830 static void 831 mlx5_ibv_drop_action_destroy(struct rte_eth_dev *dev) 832 { 833 struct mlx5_priv *priv = dev->data->dev_private; 834 struct mlx5_hrxq *hrxq = priv->drop_queue.hrxq; 835 struct ibv_rwq_ind_table *ind_tbl = hrxq->ind_table->ind_table; 836 837 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 838 claim_zero(mlx5_glue->destroy_flow_action(hrxq->action)); 839 #endif 840 claim_zero(mlx5_glue->destroy_qp(hrxq->qp)); 841 claim_zero(mlx5_glue->destroy_rwq_ind_table(ind_tbl)); 842 mlx5_rxq_ibv_obj_drop_release(dev); 843 } 844 845 /** 846 * Create a QP Verbs object. 847 * 848 * @param dev 849 * Pointer to Ethernet device. 850 * @param idx 851 * Queue index in DPDK Tx queue array. 852 * 853 * @return 854 * The QP Verbs object, NULL otherwise and rte_errno is set. 855 */ 856 static struct ibv_qp * 857 mlx5_txq_ibv_qp_create(struct rte_eth_dev *dev, uint16_t idx) 858 { 859 struct mlx5_priv *priv = dev->data->dev_private; 860 struct mlx5_txq_data *txq_data = (*priv->txqs)[idx]; 861 struct mlx5_txq_ctrl *txq_ctrl = 862 container_of(txq_data, struct mlx5_txq_ctrl, txq); 863 struct ibv_qp *qp_obj = NULL; 864 struct ibv_qp_init_attr_ex qp_attr = { 0 }; 865 const int desc = 1 << txq_data->elts_n; 866 867 MLX5_ASSERT(txq_ctrl->obj->cq); 868 /* CQ to be associated with the send queue. */ 869 qp_attr.send_cq = txq_ctrl->obj->cq; 870 /* CQ to be associated with the receive queue. */ 871 qp_attr.recv_cq = txq_ctrl->obj->cq; 872 /* Max number of outstanding WRs. */ 873 qp_attr.cap.max_send_wr = ((priv->sh->device_attr.max_qp_wr < desc) ? 874 priv->sh->device_attr.max_qp_wr : desc); 875 /* 876 * Max number of scatter/gather elements in a WR, must be 1 to prevent 877 * libmlx5 from trying to affect must be 1 to prevent libmlx5 from 878 * trying to affect too much memory. TX gather is not impacted by the 879 * device_attr.max_sge limit and will still work properly. 880 */ 881 qp_attr.cap.max_send_sge = 1; 882 qp_attr.qp_type = IBV_QPT_RAW_PACKET, 883 /* Do *NOT* enable this, completions events are managed per Tx burst. */ 884 qp_attr.sq_sig_all = 0; 885 qp_attr.pd = priv->sh->pd; 886 qp_attr.comp_mask = IBV_QP_INIT_ATTR_PD; 887 if (txq_data->inlen_send) 888 qp_attr.cap.max_inline_data = txq_ctrl->max_inline_data; 889 if (txq_data->tso_en) { 890 qp_attr.max_tso_header = txq_ctrl->max_tso_header; 891 qp_attr.comp_mask |= IBV_QP_INIT_ATTR_MAX_TSO_HEADER; 892 } 893 qp_obj = mlx5_glue->create_qp_ex(priv->sh->ctx, &qp_attr); 894 if (qp_obj == NULL) { 895 DRV_LOG(ERR, "Port %u Tx queue %u QP creation failure.", 896 dev->data->port_id, idx); 897 rte_errno = errno; 898 } 899 return qp_obj; 900 } 901 902 /** 903 * Create the Tx queue Verbs object. 904 * 905 * @param dev 906 * Pointer to Ethernet device. 907 * @param idx 908 * Queue index in DPDK Tx queue array. 909 * 910 * @return 911 * 0 on success, a negative errno value otherwise and rte_errno is set. 912 */ 913 int 914 mlx5_txq_ibv_obj_new(struct rte_eth_dev *dev, uint16_t idx) 915 { 916 struct mlx5_priv *priv = dev->data->dev_private; 917 struct mlx5_txq_data *txq_data = (*priv->txqs)[idx]; 918 struct mlx5_txq_ctrl *txq_ctrl = 919 container_of(txq_data, struct mlx5_txq_ctrl, txq); 920 struct mlx5_txq_obj *txq_obj = txq_ctrl->obj; 921 unsigned int cqe_n; 922 struct mlx5dv_qp qp; 923 struct mlx5dv_cq cq_info; 924 struct mlx5dv_obj obj; 925 const int desc = 1 << txq_data->elts_n; 926 int ret = 0; 927 928 MLX5_ASSERT(txq_data); 929 MLX5_ASSERT(txq_obj); 930 txq_obj->txq_ctrl = txq_ctrl; 931 if (mlx5_getenv_int("MLX5_ENABLE_CQE_COMPRESSION")) { 932 DRV_LOG(ERR, "Port %u MLX5_ENABLE_CQE_COMPRESSION " 933 "must never be set.", dev->data->port_id); 934 rte_errno = EINVAL; 935 return -rte_errno; 936 } 937 cqe_n = desc / MLX5_TX_COMP_THRESH + 938 1 + MLX5_TX_COMP_THRESH_INLINE_DIV; 939 txq_obj->cq = mlx5_glue->create_cq(priv->sh->ctx, cqe_n, NULL, NULL, 0); 940 if (txq_obj->cq == NULL) { 941 DRV_LOG(ERR, "Port %u Tx queue %u CQ creation failure.", 942 dev->data->port_id, idx); 943 rte_errno = errno; 944 goto error; 945 } 946 txq_obj->qp = mlx5_txq_ibv_qp_create(dev, idx); 947 if (txq_obj->qp == NULL) { 948 rte_errno = errno; 949 goto error; 950 } 951 ret = mlx5_ibv_modify_qp(txq_obj, MLX5_TXQ_MOD_RST2RDY, 952 (uint8_t)priv->dev_port); 953 if (ret) { 954 DRV_LOG(ERR, "Port %u Tx queue %u QP state modifying failed.", 955 dev->data->port_id, idx); 956 rte_errno = errno; 957 goto error; 958 } 959 qp.comp_mask = MLX5DV_QP_MASK_UAR_MMAP_OFFSET; 960 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 961 /* If using DevX, need additional mask to read tisn value. */ 962 if (priv->sh->devx && !priv->sh->tdn) 963 qp.comp_mask |= MLX5DV_QP_MASK_RAW_QP_HANDLES; 964 #endif 965 obj.cq.in = txq_obj->cq; 966 obj.cq.out = &cq_info; 967 obj.qp.in = txq_obj->qp; 968 obj.qp.out = &qp; 969 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_CQ | MLX5DV_OBJ_QP); 970 if (ret != 0) { 971 rte_errno = errno; 972 goto error; 973 } 974 if (cq_info.cqe_size != RTE_CACHE_LINE_SIZE) { 975 DRV_LOG(ERR, 976 "Port %u wrong MLX5_CQE_SIZE environment variable" 977 " value: it should be set to %u.", 978 dev->data->port_id, RTE_CACHE_LINE_SIZE); 979 rte_errno = EINVAL; 980 goto error; 981 } 982 txq_data->cqe_n = log2above(cq_info.cqe_cnt); 983 txq_data->cqe_s = 1 << txq_data->cqe_n; 984 txq_data->cqe_m = txq_data->cqe_s - 1; 985 txq_data->qp_num_8s = ((struct ibv_qp *)txq_obj->qp)->qp_num << 8; 986 txq_data->wqes = qp.sq.buf; 987 txq_data->wqe_n = log2above(qp.sq.wqe_cnt); 988 txq_data->wqe_s = 1 << txq_data->wqe_n; 989 txq_data->wqe_m = txq_data->wqe_s - 1; 990 txq_data->wqes_end = txq_data->wqes + txq_data->wqe_s; 991 txq_data->qp_db = &qp.dbrec[MLX5_SND_DBR]; 992 txq_data->cq_db = cq_info.dbrec; 993 txq_data->cqes = (volatile struct mlx5_cqe *)cq_info.buf; 994 txq_data->cq_ci = 0; 995 txq_data->cq_pi = 0; 996 txq_data->wqe_ci = 0; 997 txq_data->wqe_pi = 0; 998 txq_data->wqe_comp = 0; 999 txq_data->wqe_thres = txq_data->wqe_s / MLX5_TX_COMP_THRESH_INLINE_DIV; 1000 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 1001 /* 1002 * If using DevX need to query and store TIS transport domain value. 1003 * This is done once per port. 1004 * Will use this value on Rx, when creating matching TIR. 1005 */ 1006 if (priv->sh->devx && !priv->sh->tdn) { 1007 ret = mlx5_devx_cmd_qp_query_tis_td(txq_obj->qp, qp.tisn, 1008 &priv->sh->tdn); 1009 if (ret) { 1010 DRV_LOG(ERR, "Fail to query port %u Tx queue %u QP TIS " 1011 "transport domain.", dev->data->port_id, idx); 1012 rte_errno = EINVAL; 1013 goto error; 1014 } else { 1015 DRV_LOG(DEBUG, "Port %u Tx queue %u TIS number %d " 1016 "transport domain %d.", dev->data->port_id, 1017 idx, qp.tisn, priv->sh->tdn); 1018 } 1019 } 1020 #endif 1021 txq_ctrl->bf_reg = qp.bf.reg; 1022 if (qp.comp_mask & MLX5DV_QP_MASK_UAR_MMAP_OFFSET) { 1023 txq_ctrl->uar_mmap_offset = qp.uar_mmap_offset; 1024 DRV_LOG(DEBUG, "Port %u: uar_mmap_offset 0x%" PRIx64 ".", 1025 dev->data->port_id, txq_ctrl->uar_mmap_offset); 1026 } else { 1027 DRV_LOG(ERR, 1028 "Port %u failed to retrieve UAR info, invalid" 1029 " libmlx5.so", 1030 dev->data->port_id); 1031 rte_errno = EINVAL; 1032 goto error; 1033 } 1034 txq_uar_init(txq_ctrl); 1035 dev->data->tx_queue_state[idx] = RTE_ETH_QUEUE_STATE_STARTED; 1036 return 0; 1037 error: 1038 ret = rte_errno; /* Save rte_errno before cleanup. */ 1039 if (txq_obj->cq) 1040 claim_zero(mlx5_glue->destroy_cq(txq_obj->cq)); 1041 if (txq_obj->qp) 1042 claim_zero(mlx5_glue->destroy_qp(txq_obj->qp)); 1043 rte_errno = ret; /* Restore rte_errno. */ 1044 return -rte_errno; 1045 } 1046 1047 /** 1048 * Release an Tx verbs queue object. 1049 * 1050 * @param txq_obj 1051 * Verbs Tx queue object.. 1052 */ 1053 void 1054 mlx5_txq_ibv_obj_release(struct mlx5_txq_obj *txq_obj) 1055 { 1056 MLX5_ASSERT(txq_obj); 1057 claim_zero(mlx5_glue->destroy_qp(txq_obj->qp)); 1058 claim_zero(mlx5_glue->destroy_cq(txq_obj->cq)); 1059 } 1060 1061 struct mlx5_obj_ops ibv_obj_ops = { 1062 .rxq_obj_modify_vlan_strip = mlx5_rxq_obj_modify_wq_vlan_strip, 1063 .rxq_obj_new = mlx5_rxq_ibv_obj_new, 1064 .rxq_event_get = mlx5_rx_ibv_get_event, 1065 .rxq_obj_modify = mlx5_ibv_modify_wq, 1066 .rxq_obj_release = mlx5_rxq_ibv_obj_release, 1067 .ind_table_new = mlx5_ibv_ind_table_new, 1068 .ind_table_destroy = mlx5_ibv_ind_table_destroy, 1069 .hrxq_new = mlx5_ibv_hrxq_new, 1070 .hrxq_destroy = mlx5_ibv_qp_destroy, 1071 .drop_action_create = mlx5_ibv_drop_action_create, 1072 .drop_action_destroy = mlx5_ibv_drop_action_destroy, 1073 .txq_obj_new = mlx5_txq_ibv_obj_new, 1074 .txq_obj_modify = mlx5_ibv_modify_qp, 1075 .txq_obj_release = mlx5_txq_ibv_obj_release, 1076 }; 1077