1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2015 6WIND S.A. 3 * Copyright 2020 Mellanox Technologies, Ltd 4 */ 5 6 #include <stddef.h> 7 #include <unistd.h> 8 #include <string.h> 9 #include <stdint.h> 10 #include <stdlib.h> 11 #include <errno.h> 12 #include <net/if.h> 13 #include <linux/rtnetlink.h> 14 #include <linux/sockios.h> 15 #include <linux/ethtool.h> 16 #include <fcntl.h> 17 18 #include <rte_malloc.h> 19 #include <ethdev_driver.h> 20 #include <ethdev_pci.h> 21 #include <rte_pci.h> 22 #include <rte_bus_pci.h> 23 #include <rte_bus_auxiliary.h> 24 #include <rte_common.h> 25 #include <rte_kvargs.h> 26 #include <rte_rwlock.h> 27 #include <rte_spinlock.h> 28 #include <rte_string_fns.h> 29 #include <rte_alarm.h> 30 #include <rte_eal_paging.h> 31 32 #include <mlx5_glue.h> 33 #include <mlx5_devx_cmds.h> 34 #include <mlx5_common.h> 35 #include <mlx5_common_mp.h> 36 #include <mlx5_common_mr.h> 37 #include <mlx5_malloc.h> 38 39 #include "mlx5_defs.h" 40 #include "mlx5.h" 41 #include "mlx5_common_os.h" 42 #include "mlx5_utils.h" 43 #include "mlx5_rxtx.h" 44 #include "mlx5_rx.h" 45 #include "mlx5_tx.h" 46 #include "mlx5_autoconf.h" 47 #include "mlx5_flow.h" 48 #include "rte_pmd_mlx5.h" 49 #include "mlx5_verbs.h" 50 #include "mlx5_nl.h" 51 #include "mlx5_devx.h" 52 53 #ifndef HAVE_IBV_MLX5_MOD_MPW 54 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2) 55 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3) 56 #endif 57 58 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP 59 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4) 60 #endif 61 62 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data"; 63 64 /* Spinlock for mlx5_shared_data allocation. */ 65 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER; 66 67 /* Process local data for secondary processes. */ 68 static struct mlx5_local_data mlx5_local_data; 69 70 /* rte flow indexed pool configuration. */ 71 static struct mlx5_indexed_pool_config icfg[] = { 72 { 73 .size = sizeof(struct rte_flow), 74 .trunk_size = 64, 75 .need_lock = 1, 76 .release_mem_en = 0, 77 .malloc = mlx5_malloc, 78 .free = mlx5_free, 79 .per_core_cache = 0, 80 .type = "ctl_flow_ipool", 81 }, 82 { 83 .size = sizeof(struct rte_flow), 84 .trunk_size = 64, 85 .grow_trunk = 3, 86 .grow_shift = 2, 87 .need_lock = 1, 88 .release_mem_en = 0, 89 .malloc = mlx5_malloc, 90 .free = mlx5_free, 91 .per_core_cache = 1 << 14, 92 .type = "rte_flow_ipool", 93 }, 94 { 95 .size = sizeof(struct rte_flow), 96 .trunk_size = 64, 97 .grow_trunk = 3, 98 .grow_shift = 2, 99 .need_lock = 1, 100 .release_mem_en = 0, 101 .malloc = mlx5_malloc, 102 .free = mlx5_free, 103 .per_core_cache = 0, 104 .type = "mcp_flow_ipool", 105 }, 106 }; 107 108 /** 109 * Set the completion channel file descriptor interrupt as non-blocking. 110 * 111 * @param[in] rxq_obj 112 * Pointer to RQ channel object, which includes the channel fd 113 * 114 * @param[out] fd 115 * The file descriptor (representing the interrupt) used in this channel. 116 * 117 * @return 118 * 0 on successfully setting the fd to non-blocking, non-zero otherwise. 119 */ 120 int 121 mlx5_os_set_nonblock_channel_fd(int fd) 122 { 123 int flags; 124 125 flags = fcntl(fd, F_GETFL); 126 return fcntl(fd, F_SETFL, flags | O_NONBLOCK); 127 } 128 129 /** 130 * Get mlx5 device attributes. The glue function query_device_ex() is called 131 * with out parameter of type 'struct ibv_device_attr_ex *'. Then fill in mlx5 132 * device attributes from the glue out parameter. 133 * 134 * @param cdev 135 * Pointer to mlx5 device. 136 * 137 * @param device_attr 138 * Pointer to mlx5 device attributes. 139 * 140 * @return 141 * 0 on success, a negative errno value otherwise and rte_errno is set. 142 */ 143 int 144 mlx5_os_get_dev_attr(struct mlx5_common_device *cdev, 145 struct mlx5_dev_attr *device_attr) 146 { 147 int err; 148 struct ibv_context *ctx = cdev->ctx; 149 struct ibv_device_attr_ex attr_ex; 150 151 memset(device_attr, 0, sizeof(*device_attr)); 152 err = mlx5_glue->query_device_ex(ctx, NULL, &attr_ex); 153 if (err) { 154 rte_errno = errno; 155 return -rte_errno; 156 } 157 device_attr->device_cap_flags_ex = attr_ex.device_cap_flags_ex; 158 device_attr->max_qp_wr = attr_ex.orig_attr.max_qp_wr; 159 device_attr->max_sge = attr_ex.orig_attr.max_sge; 160 device_attr->max_cq = attr_ex.orig_attr.max_cq; 161 device_attr->max_cqe = attr_ex.orig_attr.max_cqe; 162 device_attr->max_mr = attr_ex.orig_attr.max_mr; 163 device_attr->max_pd = attr_ex.orig_attr.max_pd; 164 device_attr->max_qp = attr_ex.orig_attr.max_qp; 165 device_attr->max_srq = attr_ex.orig_attr.max_srq; 166 device_attr->max_srq_wr = attr_ex.orig_attr.max_srq_wr; 167 device_attr->raw_packet_caps = attr_ex.raw_packet_caps; 168 device_attr->max_rwq_indirection_table_size = 169 attr_ex.rss_caps.max_rwq_indirection_table_size; 170 device_attr->max_tso = attr_ex.tso_caps.max_tso; 171 device_attr->tso_supported_qpts = attr_ex.tso_caps.supported_qpts; 172 173 struct mlx5dv_context dv_attr = { .comp_mask = 0 }; 174 #ifdef HAVE_IBV_MLX5_MOD_SWP 175 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP; 176 #endif 177 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT 178 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS; 179 #endif 180 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT 181 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ; 182 #endif 183 err = mlx5_glue->dv_query_device(ctx, &dv_attr); 184 if (err) { 185 rte_errno = errno; 186 return -rte_errno; 187 } 188 189 device_attr->flags = dv_attr.flags; 190 device_attr->comp_mask = dv_attr.comp_mask; 191 #ifdef HAVE_IBV_MLX5_MOD_SWP 192 device_attr->sw_parsing_offloads = 193 dv_attr.sw_parsing_caps.sw_parsing_offloads; 194 #endif 195 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT 196 device_attr->min_single_stride_log_num_of_bytes = 197 dv_attr.striding_rq_caps.min_single_stride_log_num_of_bytes; 198 device_attr->max_single_stride_log_num_of_bytes = 199 dv_attr.striding_rq_caps.max_single_stride_log_num_of_bytes; 200 device_attr->min_single_wqe_log_num_of_strides = 201 dv_attr.striding_rq_caps.min_single_wqe_log_num_of_strides; 202 device_attr->max_single_wqe_log_num_of_strides = 203 dv_attr.striding_rq_caps.max_single_wqe_log_num_of_strides; 204 device_attr->stride_supported_qpts = 205 dv_attr.striding_rq_caps.supported_qpts; 206 #endif 207 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT 208 device_attr->tunnel_offloads_caps = dv_attr.tunnel_offloads_caps; 209 #endif 210 strlcpy(device_attr->fw_ver, attr_ex.orig_attr.fw_ver, 211 sizeof(device_attr->fw_ver)); 212 213 return 0; 214 } 215 216 /** 217 * Detect misc5 support or not 218 * 219 * @param[in] priv 220 * Device private data pointer 221 */ 222 #ifdef HAVE_MLX5DV_DR 223 static void 224 __mlx5_discovery_misc5_cap(struct mlx5_priv *priv) 225 { 226 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 227 /* Dummy VxLAN matcher to detect rdma-core misc5 cap 228 * Case: IPv4--->UDP--->VxLAN--->vni 229 */ 230 void *tbl; 231 struct mlx5_flow_dv_match_params matcher_mask; 232 void *match_m; 233 void *matcher; 234 void *headers_m; 235 void *misc5_m; 236 uint32_t *tunnel_header_m; 237 struct mlx5dv_flow_matcher_attr dv_attr; 238 239 memset(&matcher_mask, 0, sizeof(matcher_mask)); 240 matcher_mask.size = sizeof(matcher_mask.buf); 241 match_m = matcher_mask.buf; 242 headers_m = MLX5_ADDR_OF(fte_match_param, match_m, outer_headers); 243 misc5_m = MLX5_ADDR_OF(fte_match_param, 244 match_m, misc_parameters_5); 245 tunnel_header_m = (uint32_t *) 246 MLX5_ADDR_OF(fte_match_set_misc5, 247 misc5_m, tunnel_header_1); 248 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_protocol, 0xff); 249 MLX5_SET(fte_match_set_lyr_2_4, headers_m, ip_version, 4); 250 MLX5_SET(fte_match_set_lyr_2_4, headers_m, udp_dport, 0xffff); 251 *tunnel_header_m = 0xffffff; 252 253 tbl = mlx5_glue->dr_create_flow_tbl(priv->sh->rx_domain, 1); 254 if (!tbl) { 255 DRV_LOG(INFO, "No SW steering support"); 256 return; 257 } 258 dv_attr.type = IBV_FLOW_ATTR_NORMAL, 259 dv_attr.match_mask = (void *)&matcher_mask, 260 dv_attr.match_criteria_enable = 261 (1 << MLX5_MATCH_CRITERIA_ENABLE_OUTER_BIT) | 262 (1 << MLX5_MATCH_CRITERIA_ENABLE_MISC5_BIT); 263 dv_attr.priority = 3; 264 #ifdef HAVE_MLX5DV_DR_ESWITCH 265 void *misc2_m; 266 if (priv->config.dv_esw_en) { 267 /* FDB enabled reg_c_0 */ 268 dv_attr.match_criteria_enable |= 269 (1 << MLX5_MATCH_CRITERIA_ENABLE_MISC2_BIT); 270 misc2_m = MLX5_ADDR_OF(fte_match_param, 271 match_m, misc_parameters_2); 272 MLX5_SET(fte_match_set_misc2, misc2_m, 273 metadata_reg_c_0, 0xffff); 274 } 275 #endif 276 matcher = mlx5_glue->dv_create_flow_matcher(priv->sh->cdev->ctx, 277 &dv_attr, tbl); 278 if (matcher) { 279 priv->sh->misc5_cap = 1; 280 mlx5_glue->dv_destroy_flow_matcher(matcher); 281 } 282 mlx5_glue->dr_destroy_flow_tbl(tbl); 283 #else 284 RTE_SET_USED(priv); 285 #endif 286 } 287 #endif 288 289 /** 290 * Initialize DR related data within private structure. 291 * Routine checks the reference counter and does actual 292 * resources creation/initialization only if counter is zero. 293 * 294 * @param[in] priv 295 * Pointer to the private device data structure. 296 * 297 * @return 298 * Zero on success, positive error code otherwise. 299 */ 300 static int 301 mlx5_alloc_shared_dr(struct mlx5_priv *priv) 302 { 303 struct mlx5_dev_ctx_shared *sh = priv->sh; 304 char s[MLX5_NAME_SIZE] __rte_unused; 305 int err; 306 307 MLX5_ASSERT(sh && sh->refcnt); 308 if (sh->refcnt > 1) 309 return 0; 310 err = mlx5_alloc_table_hash_list(priv); 311 if (err) 312 goto error; 313 /* The resources below are only valid with DV support. */ 314 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 315 /* Init port id action list. */ 316 snprintf(s, sizeof(s), "%s_port_id_action_list", sh->ibdev_name); 317 sh->port_id_action_list = mlx5_list_create(s, sh, true, 318 flow_dv_port_id_create_cb, 319 flow_dv_port_id_match_cb, 320 flow_dv_port_id_remove_cb, 321 flow_dv_port_id_clone_cb, 322 flow_dv_port_id_clone_free_cb); 323 if (!sh->port_id_action_list) 324 goto error; 325 /* Init push vlan action list. */ 326 snprintf(s, sizeof(s), "%s_push_vlan_action_list", sh->ibdev_name); 327 sh->push_vlan_action_list = mlx5_list_create(s, sh, true, 328 flow_dv_push_vlan_create_cb, 329 flow_dv_push_vlan_match_cb, 330 flow_dv_push_vlan_remove_cb, 331 flow_dv_push_vlan_clone_cb, 332 flow_dv_push_vlan_clone_free_cb); 333 if (!sh->push_vlan_action_list) 334 goto error; 335 /* Init sample action list. */ 336 snprintf(s, sizeof(s), "%s_sample_action_list", sh->ibdev_name); 337 sh->sample_action_list = mlx5_list_create(s, sh, true, 338 flow_dv_sample_create_cb, 339 flow_dv_sample_match_cb, 340 flow_dv_sample_remove_cb, 341 flow_dv_sample_clone_cb, 342 flow_dv_sample_clone_free_cb); 343 if (!sh->sample_action_list) 344 goto error; 345 /* Init dest array action list. */ 346 snprintf(s, sizeof(s), "%s_dest_array_list", sh->ibdev_name); 347 sh->dest_array_list = mlx5_list_create(s, sh, true, 348 flow_dv_dest_array_create_cb, 349 flow_dv_dest_array_match_cb, 350 flow_dv_dest_array_remove_cb, 351 flow_dv_dest_array_clone_cb, 352 flow_dv_dest_array_clone_free_cb); 353 if (!sh->dest_array_list) 354 goto error; 355 /* Init shared flex parsers list, no need lcore_share */ 356 snprintf(s, sizeof(s), "%s_flex_parsers_list", sh->ibdev_name); 357 sh->flex_parsers_dv = mlx5_list_create(s, sh, false, 358 mlx5_flex_parser_create_cb, 359 mlx5_flex_parser_match_cb, 360 mlx5_flex_parser_remove_cb, 361 mlx5_flex_parser_clone_cb, 362 mlx5_flex_parser_clone_free_cb); 363 if (!sh->flex_parsers_dv) 364 goto error; 365 #endif 366 #ifdef HAVE_MLX5DV_DR 367 void *domain; 368 369 /* Reference counter is zero, we should initialize structures. */ 370 domain = mlx5_glue->dr_create_domain(sh->cdev->ctx, 371 MLX5DV_DR_DOMAIN_TYPE_NIC_RX); 372 if (!domain) { 373 DRV_LOG(ERR, "ingress mlx5dv_dr_create_domain failed"); 374 err = errno; 375 goto error; 376 } 377 sh->rx_domain = domain; 378 domain = mlx5_glue->dr_create_domain(sh->cdev->ctx, 379 MLX5DV_DR_DOMAIN_TYPE_NIC_TX); 380 if (!domain) { 381 DRV_LOG(ERR, "egress mlx5dv_dr_create_domain failed"); 382 err = errno; 383 goto error; 384 } 385 sh->tx_domain = domain; 386 #ifdef HAVE_MLX5DV_DR_ESWITCH 387 if (priv->config.dv_esw_en) { 388 domain = mlx5_glue->dr_create_domain(sh->cdev->ctx, 389 MLX5DV_DR_DOMAIN_TYPE_FDB); 390 if (!domain) { 391 DRV_LOG(ERR, "FDB mlx5dv_dr_create_domain failed"); 392 err = errno; 393 goto error; 394 } 395 sh->fdb_domain = domain; 396 } 397 /* 398 * The drop action is just some dummy placeholder in rdma-core. It 399 * does not belong to domains and has no any attributes, and, can be 400 * shared by the entire device. 401 */ 402 sh->dr_drop_action = mlx5_glue->dr_create_flow_action_drop(); 403 if (!sh->dr_drop_action) { 404 DRV_LOG(ERR, "FDB mlx5dv_dr_create_flow_action_drop"); 405 err = errno; 406 goto error; 407 } 408 #endif 409 if (!sh->tunnel_hub && priv->config.dv_miss_info) 410 err = mlx5_alloc_tunnel_hub(sh); 411 if (err) { 412 DRV_LOG(ERR, "mlx5_alloc_tunnel_hub failed err=%d", err); 413 goto error; 414 } 415 if (priv->config.reclaim_mode == MLX5_RCM_AGGR) { 416 mlx5_glue->dr_reclaim_domain_memory(sh->rx_domain, 1); 417 mlx5_glue->dr_reclaim_domain_memory(sh->tx_domain, 1); 418 if (sh->fdb_domain) 419 mlx5_glue->dr_reclaim_domain_memory(sh->fdb_domain, 1); 420 } 421 sh->pop_vlan_action = mlx5_glue->dr_create_flow_action_pop_vlan(); 422 if (!priv->config.allow_duplicate_pattern) { 423 #ifndef HAVE_MLX5_DR_ALLOW_DUPLICATE 424 DRV_LOG(WARNING, "Disallow duplicate pattern is not supported - maybe old rdma-core version?"); 425 #endif 426 mlx5_glue->dr_allow_duplicate_rules(sh->rx_domain, 0); 427 mlx5_glue->dr_allow_duplicate_rules(sh->tx_domain, 0); 428 if (sh->fdb_domain) 429 mlx5_glue->dr_allow_duplicate_rules(sh->fdb_domain, 0); 430 } 431 432 __mlx5_discovery_misc5_cap(priv); 433 #endif /* HAVE_MLX5DV_DR */ 434 sh->default_miss_action = 435 mlx5_glue->dr_create_flow_action_default_miss(); 436 if (!sh->default_miss_action) 437 DRV_LOG(WARNING, "Default miss action is not supported."); 438 LIST_INIT(&sh->shared_rxqs); 439 return 0; 440 error: 441 /* Rollback the created objects. */ 442 if (sh->rx_domain) { 443 mlx5_glue->dr_destroy_domain(sh->rx_domain); 444 sh->rx_domain = NULL; 445 } 446 if (sh->tx_domain) { 447 mlx5_glue->dr_destroy_domain(sh->tx_domain); 448 sh->tx_domain = NULL; 449 } 450 if (sh->fdb_domain) { 451 mlx5_glue->dr_destroy_domain(sh->fdb_domain); 452 sh->fdb_domain = NULL; 453 } 454 if (sh->dr_drop_action) { 455 mlx5_glue->destroy_flow_action(sh->dr_drop_action); 456 sh->dr_drop_action = NULL; 457 } 458 if (sh->pop_vlan_action) { 459 mlx5_glue->destroy_flow_action(sh->pop_vlan_action); 460 sh->pop_vlan_action = NULL; 461 } 462 if (sh->encaps_decaps) { 463 mlx5_hlist_destroy(sh->encaps_decaps); 464 sh->encaps_decaps = NULL; 465 } 466 if (sh->modify_cmds) { 467 mlx5_hlist_destroy(sh->modify_cmds); 468 sh->modify_cmds = NULL; 469 } 470 if (sh->tag_table) { 471 /* tags should be destroyed with flow before. */ 472 mlx5_hlist_destroy(sh->tag_table); 473 sh->tag_table = NULL; 474 } 475 if (sh->tunnel_hub) { 476 mlx5_release_tunnel_hub(sh, priv->dev_port); 477 sh->tunnel_hub = NULL; 478 } 479 mlx5_free_table_hash_list(priv); 480 if (sh->port_id_action_list) { 481 mlx5_list_destroy(sh->port_id_action_list); 482 sh->port_id_action_list = NULL; 483 } 484 if (sh->push_vlan_action_list) { 485 mlx5_list_destroy(sh->push_vlan_action_list); 486 sh->push_vlan_action_list = NULL; 487 } 488 if (sh->sample_action_list) { 489 mlx5_list_destroy(sh->sample_action_list); 490 sh->sample_action_list = NULL; 491 } 492 if (sh->dest_array_list) { 493 mlx5_list_destroy(sh->dest_array_list); 494 sh->dest_array_list = NULL; 495 } 496 return err; 497 } 498 499 /** 500 * Destroy DR related data within private structure. 501 * 502 * @param[in] priv 503 * Pointer to the private device data structure. 504 */ 505 void 506 mlx5_os_free_shared_dr(struct mlx5_priv *priv) 507 { 508 struct mlx5_dev_ctx_shared *sh = priv->sh; 509 510 MLX5_ASSERT(sh && sh->refcnt); 511 if (sh->refcnt > 1) 512 return; 513 MLX5_ASSERT(LIST_EMPTY(&sh->shared_rxqs)); 514 #ifdef HAVE_MLX5DV_DR 515 if (sh->rx_domain) { 516 mlx5_glue->dr_destroy_domain(sh->rx_domain); 517 sh->rx_domain = NULL; 518 } 519 if (sh->tx_domain) { 520 mlx5_glue->dr_destroy_domain(sh->tx_domain); 521 sh->tx_domain = NULL; 522 } 523 #ifdef HAVE_MLX5DV_DR_ESWITCH 524 if (sh->fdb_domain) { 525 mlx5_glue->dr_destroy_domain(sh->fdb_domain); 526 sh->fdb_domain = NULL; 527 } 528 if (sh->dr_drop_action) { 529 mlx5_glue->destroy_flow_action(sh->dr_drop_action); 530 sh->dr_drop_action = NULL; 531 } 532 #endif 533 if (sh->pop_vlan_action) { 534 mlx5_glue->destroy_flow_action(sh->pop_vlan_action); 535 sh->pop_vlan_action = NULL; 536 } 537 #endif /* HAVE_MLX5DV_DR */ 538 if (sh->default_miss_action) 539 mlx5_glue->destroy_flow_action 540 (sh->default_miss_action); 541 if (sh->encaps_decaps) { 542 mlx5_hlist_destroy(sh->encaps_decaps); 543 sh->encaps_decaps = NULL; 544 } 545 if (sh->modify_cmds) { 546 mlx5_hlist_destroy(sh->modify_cmds); 547 sh->modify_cmds = NULL; 548 } 549 if (sh->tag_table) { 550 /* tags should be destroyed with flow before. */ 551 mlx5_hlist_destroy(sh->tag_table); 552 sh->tag_table = NULL; 553 } 554 if (sh->tunnel_hub) { 555 mlx5_release_tunnel_hub(sh, priv->dev_port); 556 sh->tunnel_hub = NULL; 557 } 558 mlx5_free_table_hash_list(priv); 559 if (sh->port_id_action_list) { 560 mlx5_list_destroy(sh->port_id_action_list); 561 sh->port_id_action_list = NULL; 562 } 563 if (sh->push_vlan_action_list) { 564 mlx5_list_destroy(sh->push_vlan_action_list); 565 sh->push_vlan_action_list = NULL; 566 } 567 if (sh->sample_action_list) { 568 mlx5_list_destroy(sh->sample_action_list); 569 sh->sample_action_list = NULL; 570 } 571 if (sh->dest_array_list) { 572 mlx5_list_destroy(sh->dest_array_list); 573 sh->dest_array_list = NULL; 574 } 575 } 576 577 /** 578 * Initialize shared data between primary and secondary process. 579 * 580 * A memzone is reserved by primary process and secondary processes attach to 581 * the memzone. 582 * 583 * @return 584 * 0 on success, a negative errno value otherwise and rte_errno is set. 585 */ 586 static int 587 mlx5_init_shared_data(void) 588 { 589 const struct rte_memzone *mz; 590 int ret = 0; 591 592 rte_spinlock_lock(&mlx5_shared_data_lock); 593 if (mlx5_shared_data == NULL) { 594 if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 595 /* Allocate shared memory. */ 596 mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA, 597 sizeof(*mlx5_shared_data), 598 SOCKET_ID_ANY, 0); 599 if (mz == NULL) { 600 DRV_LOG(ERR, 601 "Cannot allocate mlx5 shared data"); 602 ret = -rte_errno; 603 goto error; 604 } 605 mlx5_shared_data = mz->addr; 606 memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data)); 607 rte_spinlock_init(&mlx5_shared_data->lock); 608 } else { 609 /* Lookup allocated shared memory. */ 610 mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA); 611 if (mz == NULL) { 612 DRV_LOG(ERR, 613 "Cannot attach mlx5 shared data"); 614 ret = -rte_errno; 615 goto error; 616 } 617 mlx5_shared_data = mz->addr; 618 memset(&mlx5_local_data, 0, sizeof(mlx5_local_data)); 619 } 620 } 621 error: 622 rte_spinlock_unlock(&mlx5_shared_data_lock); 623 return ret; 624 } 625 626 /** 627 * PMD global initialization. 628 * 629 * Independent from individual device, this function initializes global 630 * per-PMD data structures distinguishing primary and secondary processes. 631 * Hence, each initialization is called once per a process. 632 * 633 * @return 634 * 0 on success, a negative errno value otherwise and rte_errno is set. 635 */ 636 static int 637 mlx5_init_once(void) 638 { 639 struct mlx5_shared_data *sd; 640 struct mlx5_local_data *ld = &mlx5_local_data; 641 int ret = 0; 642 643 if (mlx5_init_shared_data()) 644 return -rte_errno; 645 sd = mlx5_shared_data; 646 MLX5_ASSERT(sd); 647 rte_spinlock_lock(&sd->lock); 648 switch (rte_eal_process_type()) { 649 case RTE_PROC_PRIMARY: 650 if (sd->init_done) 651 break; 652 ret = mlx5_mp_init_primary(MLX5_MP_NAME, 653 mlx5_mp_os_primary_handle); 654 if (ret) 655 goto out; 656 sd->init_done = true; 657 break; 658 case RTE_PROC_SECONDARY: 659 if (ld->init_done) 660 break; 661 ret = mlx5_mp_init_secondary(MLX5_MP_NAME, 662 mlx5_mp_os_secondary_handle); 663 if (ret) 664 goto out; 665 ++sd->secondary_cnt; 666 ld->init_done = true; 667 break; 668 default: 669 break; 670 } 671 out: 672 rte_spinlock_unlock(&sd->lock); 673 return ret; 674 } 675 676 /** 677 * DV flow counter mode detect and config. 678 * 679 * @param dev 680 * Pointer to rte_eth_dev structure. 681 * 682 */ 683 static void 684 mlx5_flow_counter_mode_config(struct rte_eth_dev *dev __rte_unused) 685 { 686 #ifdef HAVE_IBV_FLOW_DV_SUPPORT 687 struct mlx5_priv *priv = dev->data->dev_private; 688 struct mlx5_dev_ctx_shared *sh = priv->sh; 689 struct mlx5_hca_attr *hca_attr = &sh->cdev->config.hca_attr; 690 bool fallback; 691 692 #ifndef HAVE_IBV_DEVX_ASYNC 693 fallback = true; 694 #else 695 fallback = false; 696 if (!sh->cdev->config.devx || !priv->config.dv_flow_en || 697 !hca_attr->flow_counters_dump || 698 !(hca_attr->flow_counter_bulk_alloc_bitmap & 0x4) || 699 (mlx5_flow_dv_discover_counter_offset_support(dev) == -ENOTSUP)) 700 fallback = true; 701 #endif 702 if (fallback) 703 DRV_LOG(INFO, "Use fall-back DV counter management. Flow " 704 "counter dump:%d, bulk_alloc_bitmap:0x%hhx.", 705 hca_attr->flow_counters_dump, 706 hca_attr->flow_counter_bulk_alloc_bitmap); 707 /* Initialize fallback mode only on the port initializes sh. */ 708 if (sh->refcnt == 1) 709 sh->cmng.counter_fallback = fallback; 710 else if (fallback != sh->cmng.counter_fallback) 711 DRV_LOG(WARNING, "Port %d in sh has different fallback mode " 712 "with others:%d.", PORT_ID(priv), fallback); 713 #endif 714 } 715 716 /** 717 * DR flow drop action support detect. 718 * 719 * @param dev 720 * Pointer to rte_eth_dev structure. 721 * 722 */ 723 static void 724 mlx5_flow_drop_action_config(struct rte_eth_dev *dev __rte_unused) 725 { 726 #ifdef HAVE_MLX5DV_DR 727 struct mlx5_priv *priv = dev->data->dev_private; 728 729 if (!priv->config.dv_flow_en || !priv->sh->dr_drop_action) 730 return; 731 /** 732 * DR supports drop action placeholder when it is supported; 733 * otherwise, use the queue drop action. 734 */ 735 if (!priv->sh->drop_action_check_flag) { 736 if (!mlx5_flow_discover_dr_action_support(dev)) 737 priv->sh->dr_drop_action_en = 1; 738 priv->sh->drop_action_check_flag = 1; 739 } 740 if (priv->sh->dr_drop_action_en) 741 priv->root_drop_action = priv->sh->dr_drop_action; 742 else 743 priv->root_drop_action = priv->drop_queue.hrxq->action; 744 #endif 745 } 746 747 static void 748 mlx5_queue_counter_id_prepare(struct rte_eth_dev *dev) 749 { 750 struct mlx5_priv *priv = dev->data->dev_private; 751 void *ctx = priv->sh->cdev->ctx; 752 753 priv->q_counters = mlx5_devx_cmd_queue_counter_alloc(ctx); 754 if (!priv->q_counters) { 755 struct ibv_cq *cq = mlx5_glue->create_cq(ctx, 1, NULL, NULL, 0); 756 struct ibv_wq *wq; 757 758 DRV_LOG(DEBUG, "Port %d queue counter object cannot be created " 759 "by DevX - fall-back to use the kernel driver global " 760 "queue counter.", dev->data->port_id); 761 /* Create WQ by kernel and query its queue counter ID. */ 762 if (cq) { 763 wq = mlx5_glue->create_wq(ctx, 764 &(struct ibv_wq_init_attr){ 765 .wq_type = IBV_WQT_RQ, 766 .max_wr = 1, 767 .max_sge = 1, 768 .pd = priv->sh->cdev->pd, 769 .cq = cq, 770 }); 771 if (wq) { 772 /* Counter is assigned only on RDY state. */ 773 int ret = mlx5_glue->modify_wq(wq, 774 &(struct ibv_wq_attr){ 775 .attr_mask = IBV_WQ_ATTR_STATE, 776 .wq_state = IBV_WQS_RDY, 777 }); 778 779 if (ret == 0) 780 mlx5_devx_cmd_wq_query(wq, 781 &priv->counter_set_id); 782 claim_zero(mlx5_glue->destroy_wq(wq)); 783 } 784 claim_zero(mlx5_glue->destroy_cq(cq)); 785 } 786 } else { 787 priv->counter_set_id = priv->q_counters->id; 788 } 789 if (priv->counter_set_id == 0) 790 DRV_LOG(INFO, "Part of the port %d statistics will not be " 791 "available.", dev->data->port_id); 792 } 793 794 /** 795 * Check if representor spawn info match devargs. 796 * 797 * @param spawn 798 * Verbs device parameters (name, port, switch_info) to spawn. 799 * @param eth_da 800 * Device devargs to probe. 801 * 802 * @return 803 * Match result. 804 */ 805 static bool 806 mlx5_representor_match(struct mlx5_dev_spawn_data *spawn, 807 struct rte_eth_devargs *eth_da) 808 { 809 struct mlx5_switch_info *switch_info = &spawn->info; 810 unsigned int p, f; 811 uint16_t id; 812 uint16_t repr_id = mlx5_representor_id_encode(switch_info, 813 eth_da->type); 814 815 switch (eth_da->type) { 816 case RTE_ETH_REPRESENTOR_SF: 817 if (!(spawn->info.port_name == -1 && 818 switch_info->name_type == 819 MLX5_PHYS_PORT_NAME_TYPE_PFHPF) && 820 switch_info->name_type != MLX5_PHYS_PORT_NAME_TYPE_PFSF) { 821 rte_errno = EBUSY; 822 return false; 823 } 824 break; 825 case RTE_ETH_REPRESENTOR_VF: 826 /* Allows HPF representor index -1 as exception. */ 827 if (!(spawn->info.port_name == -1 && 828 switch_info->name_type == 829 MLX5_PHYS_PORT_NAME_TYPE_PFHPF) && 830 switch_info->name_type != MLX5_PHYS_PORT_NAME_TYPE_PFVF) { 831 rte_errno = EBUSY; 832 return false; 833 } 834 break; 835 case RTE_ETH_REPRESENTOR_NONE: 836 rte_errno = EBUSY; 837 return false; 838 default: 839 rte_errno = ENOTSUP; 840 DRV_LOG(ERR, "unsupported representor type"); 841 return false; 842 } 843 /* Check representor ID: */ 844 for (p = 0; p < eth_da->nb_ports; ++p) { 845 if (spawn->pf_bond < 0) { 846 /* For non-LAG mode, allow and ignore pf. */ 847 switch_info->pf_num = eth_da->ports[p]; 848 repr_id = mlx5_representor_id_encode(switch_info, 849 eth_da->type); 850 } 851 for (f = 0; f < eth_da->nb_representor_ports; ++f) { 852 id = MLX5_REPRESENTOR_ID 853 (eth_da->ports[p], eth_da->type, 854 eth_da->representor_ports[f]); 855 if (repr_id == id) 856 return true; 857 } 858 } 859 rte_errno = EBUSY; 860 return false; 861 } 862 863 /** 864 * Spawn an Ethernet device from Verbs information. 865 * 866 * @param dpdk_dev 867 * Backing DPDK device. 868 * @param spawn 869 * Verbs device parameters (name, port, switch_info) to spawn. 870 * @param config 871 * Device configuration parameters. 872 * @param eth_da 873 * Device arguments. 874 * 875 * @return 876 * A valid Ethernet device object on success, NULL otherwise and rte_errno 877 * is set. The following errors are defined: 878 * 879 * EBUSY: device is not supposed to be spawned. 880 * EEXIST: device is already spawned 881 */ 882 static struct rte_eth_dev * 883 mlx5_dev_spawn(struct rte_device *dpdk_dev, 884 struct mlx5_dev_spawn_data *spawn, 885 struct mlx5_dev_config *config, 886 struct rte_eth_devargs *eth_da) 887 { 888 const struct mlx5_switch_info *switch_info = &spawn->info; 889 struct mlx5_dev_ctx_shared *sh = NULL; 890 struct mlx5_hca_attr *hca_attr = &spawn->cdev->config.hca_attr; 891 struct ibv_port_attr port_attr = { .state = IBV_PORT_NOP }; 892 struct rte_eth_dev *eth_dev = NULL; 893 struct mlx5_priv *priv = NULL; 894 int err = 0; 895 unsigned int hw_padding = 0; 896 unsigned int mps; 897 unsigned int mpls_en = 0; 898 unsigned int swp = 0; 899 unsigned int mprq = 0; 900 struct rte_ether_addr mac; 901 char name[RTE_ETH_NAME_MAX_LEN]; 902 int own_domain_id = 0; 903 uint16_t port_id; 904 struct mlx5_port_info vport_info = { .query_flags = 0 }; 905 int nl_rdma = -1; 906 int i; 907 908 /* Determine if this port representor is supposed to be spawned. */ 909 if (switch_info->representor && dpdk_dev->devargs && 910 !mlx5_representor_match(spawn, eth_da)) 911 return NULL; 912 /* Build device name. */ 913 if (spawn->pf_bond < 0) { 914 /* Single device. */ 915 if (!switch_info->representor) 916 strlcpy(name, dpdk_dev->name, sizeof(name)); 917 else 918 err = snprintf(name, sizeof(name), "%s_representor_%s%u", 919 dpdk_dev->name, 920 switch_info->name_type == 921 MLX5_PHYS_PORT_NAME_TYPE_PFSF ? "sf" : "vf", 922 switch_info->port_name); 923 } else { 924 /* Bonding device. */ 925 if (!switch_info->representor) { 926 err = snprintf(name, sizeof(name), "%s_%s", 927 dpdk_dev->name, spawn->phys_dev_name); 928 } else { 929 err = snprintf(name, sizeof(name), "%s_%s_representor_c%dpf%d%s%u", 930 dpdk_dev->name, spawn->phys_dev_name, 931 switch_info->ctrl_num, 932 switch_info->pf_num, 933 switch_info->name_type == 934 MLX5_PHYS_PORT_NAME_TYPE_PFSF ? "sf" : "vf", 935 switch_info->port_name); 936 } 937 } 938 if (err >= (int)sizeof(name)) 939 DRV_LOG(WARNING, "device name overflow %s", name); 940 /* check if the device is already spawned */ 941 if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) { 942 rte_errno = EEXIST; 943 return NULL; 944 } 945 DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name); 946 if (rte_eal_process_type() == RTE_PROC_SECONDARY) { 947 struct mlx5_mp_id mp_id; 948 949 eth_dev = rte_eth_dev_attach_secondary(name); 950 if (eth_dev == NULL) { 951 DRV_LOG(ERR, "can not attach rte ethdev"); 952 rte_errno = ENOMEM; 953 return NULL; 954 } 955 eth_dev->device = dpdk_dev; 956 eth_dev->dev_ops = &mlx5_dev_sec_ops; 957 eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status; 958 eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status; 959 err = mlx5_proc_priv_init(eth_dev); 960 if (err) 961 return NULL; 962 mlx5_mp_id_init(&mp_id, eth_dev->data->port_id); 963 /* Receive command fd from primary process */ 964 err = mlx5_mp_req_verbs_cmd_fd(&mp_id); 965 if (err < 0) 966 goto err_secondary; 967 /* Remap UAR for Tx queues. */ 968 err = mlx5_tx_uar_init_secondary(eth_dev, err); 969 if (err) 970 goto err_secondary; 971 /* 972 * Ethdev pointer is still required as input since 973 * the primary device is not accessible from the 974 * secondary process. 975 */ 976 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev); 977 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev); 978 return eth_dev; 979 err_secondary: 980 mlx5_dev_close(eth_dev); 981 return NULL; 982 } 983 /* Process parameters. */ 984 err = mlx5_args(config, dpdk_dev->devargs); 985 if (err) { 986 DRV_LOG(ERR, "failed to process device arguments: %s", 987 strerror(rte_errno)); 988 return NULL; 989 } 990 sh = mlx5_alloc_shared_dev_ctx(spawn, config); 991 if (!sh) 992 return NULL; 993 /* Update final values for devargs before check sibling config. */ 994 if (config->dv_miss_info) { 995 if (switch_info->master || switch_info->representor) 996 config->dv_xmeta_en = MLX5_XMETA_MODE_META16; 997 } 998 #if !defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_MLX5DV_DR) 999 if (config->dv_flow_en) { 1000 DRV_LOG(WARNING, "DV flow is not supported."); 1001 config->dv_flow_en = 0; 1002 } 1003 #endif 1004 #ifdef HAVE_MLX5DV_DR_ESWITCH 1005 if (!(hca_attr->eswitch_manager && config->dv_flow_en && 1006 (switch_info->representor || switch_info->master))) 1007 config->dv_esw_en = 0; 1008 #else 1009 config->dv_esw_en = 0; 1010 #endif 1011 if (!config->dv_esw_en && 1012 config->dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) { 1013 DRV_LOG(WARNING, 1014 "Metadata mode %u is not supported (no E-Switch).", 1015 config->dv_xmeta_en); 1016 config->dv_xmeta_en = MLX5_XMETA_MODE_LEGACY; 1017 } 1018 /* Check sibling device configurations. */ 1019 err = mlx5_dev_check_sibling_config(sh, config, dpdk_dev); 1020 if (err) 1021 goto error; 1022 #ifdef HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR 1023 config->dest_tir = 1; 1024 #endif 1025 /* 1026 * Multi-packet send is supported by ConnectX-4 Lx PF as well 1027 * as all ConnectX-5 devices. 1028 */ 1029 if (sh->device_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) { 1030 if (sh->device_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) { 1031 DRV_LOG(DEBUG, "enhanced MPW is supported"); 1032 mps = MLX5_MPW_ENHANCED; 1033 } else { 1034 DRV_LOG(DEBUG, "MPW is supported"); 1035 mps = MLX5_MPW; 1036 } 1037 } else { 1038 DRV_LOG(DEBUG, "MPW isn't supported"); 1039 mps = MLX5_MPW_DISABLED; 1040 } 1041 #ifdef HAVE_IBV_MLX5_MOD_SWP 1042 if (sh->device_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP) 1043 swp = sh->device_attr.sw_parsing_offloads; 1044 DRV_LOG(DEBUG, "SWP support: %u", swp); 1045 #endif 1046 config->swp = swp & (MLX5_SW_PARSING_CAP | MLX5_SW_PARSING_CSUM_CAP | 1047 MLX5_SW_PARSING_TSO_CAP); 1048 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT 1049 if (sh->device_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) { 1050 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d", 1051 sh->device_attr.min_single_stride_log_num_of_bytes); 1052 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d", 1053 sh->device_attr.max_single_stride_log_num_of_bytes); 1054 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d", 1055 sh->device_attr.min_single_wqe_log_num_of_strides); 1056 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d", 1057 sh->device_attr.max_single_wqe_log_num_of_strides); 1058 DRV_LOG(DEBUG, "\tsupported_qpts: %d", 1059 sh->device_attr.stride_supported_qpts); 1060 DRV_LOG(DEBUG, "\tmin_stride_wqe_log_size: %d", 1061 config->mprq.log_min_stride_wqe_size); 1062 DRV_LOG(DEBUG, "device supports Multi-Packet RQ"); 1063 mprq = 1; 1064 config->mprq.log_min_stride_size = 1065 sh->device_attr.min_single_stride_log_num_of_bytes; 1066 config->mprq.log_max_stride_size = 1067 sh->device_attr.max_single_stride_log_num_of_bytes; 1068 config->mprq.log_min_stride_num = 1069 sh->device_attr.min_single_wqe_log_num_of_strides; 1070 config->mprq.log_max_stride_num = 1071 sh->device_attr.max_single_wqe_log_num_of_strides; 1072 } 1073 #endif 1074 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT 1075 if (sh->device_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) { 1076 config->tunnel_en = sh->device_attr.tunnel_offloads_caps & 1077 (MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN | 1078 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE | 1079 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GENEVE); 1080 } 1081 if (config->tunnel_en) { 1082 DRV_LOG(DEBUG, "tunnel offloading is supported for %s%s%s", 1083 config->tunnel_en & 1084 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN ? "[VXLAN]" : "", 1085 config->tunnel_en & 1086 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE ? "[GRE]" : "", 1087 config->tunnel_en & 1088 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GENEVE ? "[GENEVE]" : "" 1089 ); 1090 } else { 1091 DRV_LOG(DEBUG, "tunnel offloading is not supported"); 1092 } 1093 #else 1094 DRV_LOG(WARNING, 1095 "tunnel offloading disabled due to old OFED/rdma-core version"); 1096 #endif 1097 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT 1098 mpls_en = ((sh->device_attr.tunnel_offloads_caps & 1099 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) && 1100 (sh->device_attr.tunnel_offloads_caps & 1101 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP)); 1102 DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported", 1103 mpls_en ? "" : "not "); 1104 #else 1105 DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to" 1106 " old OFED/rdma-core version or firmware configuration"); 1107 #endif 1108 config->mpls_en = mpls_en; 1109 nl_rdma = mlx5_nl_init(NETLINK_RDMA); 1110 /* Check port status. */ 1111 if (spawn->phys_port <= UINT8_MAX) { 1112 /* Legacy Verbs api only support u8 port number. */ 1113 err = mlx5_glue->query_port(sh->cdev->ctx, spawn->phys_port, 1114 &port_attr); 1115 if (err) { 1116 DRV_LOG(ERR, "port query failed: %s", strerror(err)); 1117 goto error; 1118 } 1119 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) { 1120 DRV_LOG(ERR, "port is not configured in Ethernet mode"); 1121 err = EINVAL; 1122 goto error; 1123 } 1124 } else if (nl_rdma >= 0) { 1125 /* IB doesn't allow more than 255 ports, must be Ethernet. */ 1126 err = mlx5_nl_port_state(nl_rdma, 1127 spawn->phys_dev_name, 1128 spawn->phys_port); 1129 if (err < 0) { 1130 DRV_LOG(INFO, "Failed to get netlink port state: %s", 1131 strerror(rte_errno)); 1132 err = -rte_errno; 1133 goto error; 1134 } 1135 port_attr.state = (enum ibv_port_state)err; 1136 } 1137 if (port_attr.state != IBV_PORT_ACTIVE) 1138 DRV_LOG(INFO, "port is not active: \"%s\" (%d)", 1139 mlx5_glue->port_state_str(port_attr.state), 1140 port_attr.state); 1141 /* Allocate private eth device data. */ 1142 priv = mlx5_malloc(MLX5_MEM_ZERO | MLX5_MEM_RTE, 1143 sizeof(*priv), 1144 RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY); 1145 if (priv == NULL) { 1146 DRV_LOG(ERR, "priv allocation failure"); 1147 err = ENOMEM; 1148 goto error; 1149 } 1150 priv->sh = sh; 1151 priv->dev_port = spawn->phys_port; 1152 priv->pci_dev = spawn->pci_dev; 1153 priv->mtu = RTE_ETHER_MTU; 1154 /* Some internal functions rely on Netlink sockets, open them now. */ 1155 priv->nl_socket_rdma = nl_rdma; 1156 priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE); 1157 priv->representor = !!switch_info->representor; 1158 priv->master = !!switch_info->master; 1159 priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID; 1160 priv->vport_meta_tag = 0; 1161 priv->vport_meta_mask = 0; 1162 priv->pf_bond = spawn->pf_bond; 1163 1164 DRV_LOG(DEBUG, 1165 "dev_port=%u bus=%s pci=%s master=%d representor=%d pf_bond=%d\n", 1166 priv->dev_port, dpdk_dev->bus->name, 1167 priv->pci_dev ? priv->pci_dev->name : "NONE", 1168 priv->master, priv->representor, priv->pf_bond); 1169 1170 /* 1171 * If we have E-Switch we should determine the vport attributes. 1172 * E-Switch may use either source vport field or reg_c[0] metadata 1173 * register to match on vport index. The engaged part of metadata 1174 * register is defined by mask. 1175 */ 1176 if (switch_info->representor || switch_info->master) { 1177 err = mlx5_glue->devx_port_query(sh->cdev->ctx, 1178 spawn->phys_port, 1179 &vport_info); 1180 if (err) { 1181 DRV_LOG(WARNING, 1182 "Cannot query devx port %d on device %s", 1183 spawn->phys_port, spawn->phys_dev_name); 1184 vport_info.query_flags = 0; 1185 } 1186 } 1187 if (vport_info.query_flags & MLX5_PORT_QUERY_REG_C0) { 1188 priv->vport_meta_tag = vport_info.vport_meta_tag; 1189 priv->vport_meta_mask = vport_info.vport_meta_mask; 1190 if (!priv->vport_meta_mask) { 1191 DRV_LOG(ERR, 1192 "vport zero mask for port %d on bonding device %s", 1193 spawn->phys_port, spawn->phys_dev_name); 1194 err = ENOTSUP; 1195 goto error; 1196 } 1197 if (priv->vport_meta_tag & ~priv->vport_meta_mask) { 1198 DRV_LOG(ERR, 1199 "Invalid vport tag for port %d on bonding device %s", 1200 spawn->phys_port, spawn->phys_dev_name); 1201 err = ENOTSUP; 1202 goto error; 1203 } 1204 } 1205 if (vport_info.query_flags & MLX5_PORT_QUERY_VPORT) { 1206 priv->vport_id = vport_info.vport_id; 1207 } else if (spawn->pf_bond >= 0 && 1208 (switch_info->representor || switch_info->master)) { 1209 DRV_LOG(ERR, 1210 "Cannot deduce vport index for port %d on bonding device %s", 1211 spawn->phys_port, spawn->phys_dev_name); 1212 err = ENOTSUP; 1213 goto error; 1214 } else { 1215 /* 1216 * Suppose vport index in compatible way. Kernel/rdma_core 1217 * support single E-Switch per PF configurations only and 1218 * vport_id field contains the vport index for associated VF, 1219 * which is deduced from representor port name. 1220 * For example, let's have the IB device port 10, it has 1221 * attached network device eth0, which has port name attribute 1222 * pf0vf2, we can deduce the VF number as 2, and set vport index 1223 * as 3 (2+1). This assigning schema should be changed if the 1224 * multiple E-Switch instances per PF configurations or/and PCI 1225 * subfunctions are added. 1226 */ 1227 priv->vport_id = switch_info->representor ? 1228 switch_info->port_name + 1 : -1; 1229 } 1230 priv->representor_id = mlx5_representor_id_encode(switch_info, 1231 eth_da->type); 1232 /* 1233 * Look for sibling devices in order to reuse their switch domain 1234 * if any, otherwise allocate one. 1235 */ 1236 MLX5_ETH_FOREACH_DEV(port_id, dpdk_dev) { 1237 const struct mlx5_priv *opriv = 1238 rte_eth_devices[port_id].data->dev_private; 1239 1240 if (!opriv || 1241 opriv->sh != priv->sh || 1242 opriv->domain_id == 1243 RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) 1244 continue; 1245 priv->domain_id = opriv->domain_id; 1246 DRV_LOG(DEBUG, "dev_port-%u inherit domain_id=%u\n", 1247 priv->dev_port, priv->domain_id); 1248 break; 1249 } 1250 if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) { 1251 err = rte_eth_switch_domain_alloc(&priv->domain_id); 1252 if (err) { 1253 err = rte_errno; 1254 DRV_LOG(ERR, "unable to allocate switch domain: %s", 1255 strerror(rte_errno)); 1256 goto error; 1257 } 1258 own_domain_id = 1; 1259 DRV_LOG(DEBUG, "dev_port-%u new domain_id=%u\n", 1260 priv->dev_port, priv->domain_id); 1261 } 1262 config->hw_csum = !!(sh->device_attr.device_cap_flags_ex & 1263 IBV_DEVICE_RAW_IP_CSUM); 1264 DRV_LOG(DEBUG, "checksum offloading is %ssupported", 1265 (config->hw_csum ? "" : "not ")); 1266 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \ 1267 !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45) 1268 DRV_LOG(DEBUG, "counters are not supported"); 1269 #endif 1270 config->ind_table_max_size = 1271 sh->device_attr.max_rwq_indirection_table_size; 1272 /* 1273 * Remove this check once DPDK supports larger/variable 1274 * indirection tables. 1275 */ 1276 if (config->ind_table_max_size > (unsigned int)RTE_ETH_RSS_RETA_SIZE_512) 1277 config->ind_table_max_size = RTE_ETH_RSS_RETA_SIZE_512; 1278 DRV_LOG(DEBUG, "maximum Rx indirection table size is %u", 1279 config->ind_table_max_size); 1280 config->hw_vlan_strip = !!(sh->device_attr.raw_packet_caps & 1281 IBV_RAW_PACKET_CAP_CVLAN_STRIPPING); 1282 DRV_LOG(DEBUG, "VLAN stripping is %ssupported", 1283 (config->hw_vlan_strip ? "" : "not ")); 1284 config->hw_fcs_strip = !!(sh->device_attr.raw_packet_caps & 1285 IBV_RAW_PACKET_CAP_SCATTER_FCS); 1286 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING) 1287 hw_padding = !!sh->device_attr.rx_pad_end_addr_align; 1288 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING) 1289 hw_padding = !!(sh->device_attr.device_cap_flags_ex & 1290 IBV_DEVICE_PCI_WRITE_END_PADDING); 1291 #endif 1292 if (config->hw_padding && !hw_padding) { 1293 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported"); 1294 config->hw_padding = 0; 1295 } else if (config->hw_padding) { 1296 DRV_LOG(DEBUG, "Rx end alignment padding is enabled"); 1297 } 1298 config->tso = (sh->device_attr.max_tso > 0 && 1299 (sh->device_attr.tso_supported_qpts & 1300 (1 << IBV_QPT_RAW_PACKET))); 1301 if (config->tso) 1302 config->tso_max_payload_sz = sh->device_attr.max_tso; 1303 /* 1304 * MPW is disabled by default, while the Enhanced MPW is enabled 1305 * by default. 1306 */ 1307 if (config->mps == MLX5_ARG_UNSET) 1308 config->mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED : 1309 MLX5_MPW_DISABLED; 1310 else 1311 config->mps = config->mps ? mps : MLX5_MPW_DISABLED; 1312 DRV_LOG(INFO, "%sMPS is %s", 1313 config->mps == MLX5_MPW_ENHANCED ? "enhanced " : 1314 config->mps == MLX5_MPW ? "legacy " : "", 1315 config->mps != MLX5_MPW_DISABLED ? "enabled" : "disabled"); 1316 if (sh->cdev->config.devx) { 1317 sh->steering_format_version = hca_attr->steering_format_version; 1318 /* Check for LRO support. */ 1319 if (config->dest_tir && hca_attr->lro_cap && 1320 config->dv_flow_en) { 1321 /* TBD check tunnel lro caps. */ 1322 config->lro.supported = hca_attr->lro_cap; 1323 DRV_LOG(DEBUG, "Device supports LRO"); 1324 /* 1325 * If LRO timeout is not configured by application, 1326 * use the minimal supported value. 1327 */ 1328 if (!config->lro.timeout) 1329 config->lro.timeout = 1330 hca_attr->lro_timer_supported_periods[0]; 1331 DRV_LOG(DEBUG, "LRO session timeout set to %d usec", 1332 config->lro.timeout); 1333 DRV_LOG(DEBUG, "LRO minimal size of TCP segment " 1334 "required for coalescing is %d bytes", 1335 hca_attr->lro_min_mss_size); 1336 } 1337 #if defined(HAVE_MLX5DV_DR) && \ 1338 (defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER) || \ 1339 defined(HAVE_MLX5_DR_CREATE_ACTION_ASO)) 1340 if (hca_attr->qos.sup && hca_attr->qos.flow_meter_old && 1341 config->dv_flow_en) { 1342 uint8_t reg_c_mask = hca_attr->qos.flow_meter_reg_c_ids; 1343 /* 1344 * Meter needs two REG_C's for color match and pre-sfx 1345 * flow match. Here get the REG_C for color match. 1346 * REG_C_0 and REG_C_1 is reserved for metadata feature. 1347 */ 1348 reg_c_mask &= 0xfc; 1349 if (__builtin_popcount(reg_c_mask) < 1) { 1350 priv->mtr_en = 0; 1351 DRV_LOG(WARNING, "No available register for" 1352 " meter."); 1353 } else { 1354 /* 1355 * The meter color register is used by the 1356 * flow-hit feature as well. 1357 * The flow-hit feature must use REG_C_3 1358 * Prefer REG_C_3 if it is available. 1359 */ 1360 if (reg_c_mask & (1 << (REG_C_3 - REG_C_0))) 1361 priv->mtr_color_reg = REG_C_3; 1362 else 1363 priv->mtr_color_reg = ffs(reg_c_mask) 1364 - 1 + REG_C_0; 1365 priv->mtr_en = 1; 1366 priv->mtr_reg_share = hca_attr->qos.flow_meter; 1367 DRV_LOG(DEBUG, "The REG_C meter uses is %d", 1368 priv->mtr_color_reg); 1369 } 1370 } 1371 if (hca_attr->qos.sup && hca_attr->qos.flow_meter_aso_sup) { 1372 uint32_t log_obj_size = 1373 rte_log2_u32(MLX5_ASO_MTRS_PER_POOL >> 1); 1374 if (log_obj_size >= 1375 hca_attr->qos.log_meter_aso_granularity && 1376 log_obj_size <= 1377 hca_attr->qos.log_meter_aso_max_alloc) 1378 sh->meter_aso_en = 1; 1379 } 1380 if (priv->mtr_en) { 1381 err = mlx5_aso_flow_mtrs_mng_init(priv->sh); 1382 if (err) { 1383 err = -err; 1384 goto error; 1385 } 1386 } 1387 if (hca_attr->flow.tunnel_header_0_1) 1388 sh->tunnel_header_0_1 = 1; 1389 #endif 1390 #ifdef HAVE_MLX5_DR_CREATE_ACTION_ASO 1391 if (hca_attr->flow_hit_aso && priv->mtr_color_reg == REG_C_3) { 1392 sh->flow_hit_aso_en = 1; 1393 err = mlx5_flow_aso_age_mng_init(sh); 1394 if (err) { 1395 err = -err; 1396 goto error; 1397 } 1398 DRV_LOG(DEBUG, "Flow Hit ASO is supported."); 1399 } 1400 #endif /* HAVE_MLX5_DR_CREATE_ACTION_ASO */ 1401 #if defined(HAVE_MLX5_DR_CREATE_ACTION_ASO) && \ 1402 defined(HAVE_MLX5_DR_ACTION_ASO_CT) 1403 if (hca_attr->ct_offload && priv->mtr_color_reg == REG_C_3) { 1404 err = mlx5_flow_aso_ct_mng_init(sh); 1405 if (err) { 1406 err = -err; 1407 goto error; 1408 } 1409 DRV_LOG(DEBUG, "CT ASO is supported."); 1410 sh->ct_aso_en = 1; 1411 } 1412 #endif /* HAVE_MLX5_DR_CREATE_ACTION_ASO && HAVE_MLX5_DR_ACTION_ASO_CT */ 1413 #if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_SAMPLE) 1414 if (hca_attr->log_max_ft_sampler_num > 0 && 1415 config->dv_flow_en) { 1416 priv->sampler_en = 1; 1417 DRV_LOG(DEBUG, "Sampler enabled!"); 1418 } else { 1419 priv->sampler_en = 0; 1420 if (!hca_attr->log_max_ft_sampler_num) 1421 DRV_LOG(WARNING, 1422 "No available register for sampler."); 1423 else 1424 DRV_LOG(DEBUG, "DV flow is not supported!"); 1425 } 1426 #endif 1427 } 1428 if (config->cqe_comp && RTE_CACHE_LINE_SIZE == 128 && 1429 !(sh->device_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP)) { 1430 DRV_LOG(WARNING, "Rx CQE 128B compression is not supported"); 1431 config->cqe_comp = 0; 1432 } 1433 if (config->cqe_comp_fmt == MLX5_CQE_RESP_FORMAT_FTAG_STRIDX && 1434 (!sh->cdev->config.devx || !hca_attr->mini_cqe_resp_flow_tag)) { 1435 DRV_LOG(WARNING, "Flow Tag CQE compression" 1436 " format isn't supported."); 1437 config->cqe_comp = 0; 1438 } 1439 if (config->cqe_comp_fmt == MLX5_CQE_RESP_FORMAT_L34H_STRIDX && 1440 (!sh->cdev->config.devx || !hca_attr->mini_cqe_resp_l3_l4_tag)) { 1441 DRV_LOG(WARNING, "L3/L4 Header CQE compression" 1442 " format isn't supported."); 1443 config->cqe_comp = 0; 1444 } 1445 DRV_LOG(DEBUG, "Rx CQE compression is %ssupported", 1446 config->cqe_comp ? "" : "not "); 1447 if (config->tx_pp) { 1448 DRV_LOG(DEBUG, "Timestamp counter frequency %u kHz", 1449 hca_attr->dev_freq_khz); 1450 DRV_LOG(DEBUG, "Packet pacing is %ssupported", 1451 hca_attr->qos.packet_pacing ? "" : "not "); 1452 DRV_LOG(DEBUG, "Cross channel ops are %ssupported", 1453 hca_attr->cross_channel ? "" : "not "); 1454 DRV_LOG(DEBUG, "WQE index ignore is %ssupported", 1455 hca_attr->wqe_index_ignore ? "" : "not "); 1456 DRV_LOG(DEBUG, "Non-wire SQ feature is %ssupported", 1457 hca_attr->non_wire_sq ? "" : "not "); 1458 DRV_LOG(DEBUG, "Static WQE SQ feature is %ssupported (%d)", 1459 hca_attr->log_max_static_sq_wq ? "" : "not ", 1460 hca_attr->log_max_static_sq_wq); 1461 DRV_LOG(DEBUG, "WQE rate PP mode is %ssupported", 1462 hca_attr->qos.wqe_rate_pp ? "" : "not "); 1463 if (!sh->cdev->config.devx) { 1464 DRV_LOG(ERR, "DevX is required for packet pacing"); 1465 err = ENODEV; 1466 goto error; 1467 } 1468 if (!hca_attr->qos.packet_pacing) { 1469 DRV_LOG(ERR, "Packet pacing is not supported"); 1470 err = ENODEV; 1471 goto error; 1472 } 1473 if (!hca_attr->cross_channel) { 1474 DRV_LOG(ERR, "Cross channel operations are" 1475 " required for packet pacing"); 1476 err = ENODEV; 1477 goto error; 1478 } 1479 if (!hca_attr->wqe_index_ignore) { 1480 DRV_LOG(ERR, "WQE index ignore feature is" 1481 " required for packet pacing"); 1482 err = ENODEV; 1483 goto error; 1484 } 1485 if (!hca_attr->non_wire_sq) { 1486 DRV_LOG(ERR, "Non-wire SQ feature is" 1487 " required for packet pacing"); 1488 err = ENODEV; 1489 goto error; 1490 } 1491 if (!hca_attr->log_max_static_sq_wq) { 1492 DRV_LOG(ERR, "Static WQE SQ feature is" 1493 " required for packet pacing"); 1494 err = ENODEV; 1495 goto error; 1496 } 1497 if (!hca_attr->qos.wqe_rate_pp) { 1498 DRV_LOG(ERR, "WQE rate mode is required" 1499 " for packet pacing"); 1500 err = ENODEV; 1501 goto error; 1502 } 1503 #ifndef HAVE_MLX5DV_DEVX_UAR_OFFSET 1504 DRV_LOG(ERR, "DevX does not provide UAR offset," 1505 " can't create queues for packet pacing"); 1506 err = ENODEV; 1507 goto error; 1508 #endif 1509 } 1510 if (config->std_delay_drop || config->hp_delay_drop) { 1511 if (!hca_attr->rq_delay_drop) { 1512 config->std_delay_drop = 0; 1513 config->hp_delay_drop = 0; 1514 DRV_LOG(WARNING, 1515 "dev_port-%u: Rxq delay drop is not supported", 1516 priv->dev_port); 1517 } 1518 } 1519 if (sh->cdev->config.devx) { 1520 uint32_t reg[MLX5_ST_SZ_DW(register_mtutc)]; 1521 1522 err = hca_attr->access_register_user ? 1523 mlx5_devx_cmd_register_read 1524 (sh->cdev->ctx, MLX5_REGISTER_ID_MTUTC, 0, 1525 reg, MLX5_ST_SZ_DW(register_mtutc)) : ENOTSUP; 1526 if (!err) { 1527 uint32_t ts_mode; 1528 1529 /* MTUTC register is read successfully. */ 1530 ts_mode = MLX5_GET(register_mtutc, reg, 1531 time_stamp_mode); 1532 if (ts_mode == MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME) 1533 config->rt_timestamp = 1; 1534 } else { 1535 /* Kernel does not support register reading. */ 1536 if (hca_attr->dev_freq_khz == (NS_PER_S / MS_PER_S)) 1537 config->rt_timestamp = 1; 1538 } 1539 } 1540 /* 1541 * If HW has bug working with tunnel packet decapsulation and 1542 * scatter FCS, and decapsulation is needed, clear the hw_fcs_strip 1543 * bit. Then RTE_ETH_RX_OFFLOAD_KEEP_CRC bit will not be set anymore. 1544 */ 1545 if (hca_attr->scatter_fcs_w_decap_disable && config->decap_en) 1546 config->hw_fcs_strip = 0; 1547 DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported", 1548 (config->hw_fcs_strip ? "" : "not ")); 1549 if (config->mprq.enabled && !mprq) { 1550 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported"); 1551 config->mprq.enabled = 0; 1552 } 1553 if (config->max_dump_files_num == 0) 1554 config->max_dump_files_num = 128; 1555 eth_dev = rte_eth_dev_allocate(name); 1556 if (eth_dev == NULL) { 1557 DRV_LOG(ERR, "can not allocate rte ethdev"); 1558 err = ENOMEM; 1559 goto error; 1560 } 1561 if (priv->representor) { 1562 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR; 1563 eth_dev->data->representor_id = priv->representor_id; 1564 MLX5_ETH_FOREACH_DEV(port_id, dpdk_dev) { 1565 struct mlx5_priv *opriv = 1566 rte_eth_devices[port_id].data->dev_private; 1567 if (opriv && 1568 opriv->master && 1569 opriv->domain_id == priv->domain_id && 1570 opriv->sh == priv->sh) { 1571 eth_dev->data->backer_port_id = port_id; 1572 break; 1573 } 1574 } 1575 if (port_id >= RTE_MAX_ETHPORTS) 1576 eth_dev->data->backer_port_id = eth_dev->data->port_id; 1577 } 1578 priv->mp_id.port_id = eth_dev->data->port_id; 1579 strlcpy(priv->mp_id.name, MLX5_MP_NAME, RTE_MP_MAX_NAME_LEN); 1580 /* 1581 * Store associated network device interface index. This index 1582 * is permanent throughout the lifetime of device. So, we may store 1583 * the ifindex here and use the cached value further. 1584 */ 1585 MLX5_ASSERT(spawn->ifindex); 1586 priv->if_index = spawn->ifindex; 1587 priv->lag_affinity_idx = sh->refcnt - 1; 1588 eth_dev->data->dev_private = priv; 1589 priv->dev_data = eth_dev->data; 1590 eth_dev->data->mac_addrs = priv->mac; 1591 eth_dev->device = dpdk_dev; 1592 eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS; 1593 /* Configure the first MAC address by default. */ 1594 if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) { 1595 DRV_LOG(ERR, 1596 "port %u cannot get MAC address, is mlx5_en" 1597 " loaded? (errno: %s)", 1598 eth_dev->data->port_id, strerror(rte_errno)); 1599 err = ENODEV; 1600 goto error; 1601 } 1602 DRV_LOG(INFO, 1603 "port %u MAC address is " RTE_ETHER_ADDR_PRT_FMT, 1604 eth_dev->data->port_id, RTE_ETHER_ADDR_BYTES(&mac)); 1605 #ifdef RTE_LIBRTE_MLX5_DEBUG 1606 { 1607 char ifname[MLX5_NAMESIZE]; 1608 1609 if (mlx5_get_ifname(eth_dev, &ifname) == 0) 1610 DRV_LOG(DEBUG, "port %u ifname is \"%s\"", 1611 eth_dev->data->port_id, ifname); 1612 else 1613 DRV_LOG(DEBUG, "port %u ifname is unknown", 1614 eth_dev->data->port_id); 1615 } 1616 #endif 1617 /* Get actual MTU if possible. */ 1618 err = mlx5_get_mtu(eth_dev, &priv->mtu); 1619 if (err) { 1620 err = rte_errno; 1621 goto error; 1622 } 1623 DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id, 1624 priv->mtu); 1625 /* Initialize burst functions to prevent crashes before link-up. */ 1626 eth_dev->rx_pkt_burst = rte_eth_pkt_burst_dummy; 1627 eth_dev->tx_pkt_burst = rte_eth_pkt_burst_dummy; 1628 eth_dev->dev_ops = &mlx5_dev_ops; 1629 eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status; 1630 eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status; 1631 eth_dev->rx_queue_count = mlx5_rx_queue_count; 1632 /* Register MAC address. */ 1633 claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0)); 1634 if (config->vf && config->vf_nl_en) 1635 mlx5_nl_mac_addr_sync(priv->nl_socket_route, 1636 mlx5_ifindex(eth_dev), 1637 eth_dev->data->mac_addrs, 1638 MLX5_MAX_MAC_ADDRESSES); 1639 priv->ctrl_flows = 0; 1640 rte_spinlock_init(&priv->flow_list_lock); 1641 TAILQ_INIT(&priv->flow_meters); 1642 priv->mtr_profile_tbl = mlx5_l3t_create(MLX5_L3T_TYPE_PTR); 1643 if (!priv->mtr_profile_tbl) 1644 goto error; 1645 /* Bring Ethernet device up. */ 1646 DRV_LOG(DEBUG, "port %u forcing Ethernet interface up", 1647 eth_dev->data->port_id); 1648 mlx5_set_link_up(eth_dev); 1649 /* 1650 * Even though the interrupt handler is not installed yet, 1651 * interrupts will still trigger on the async_fd from 1652 * Verbs context returned by ibv_open_device(). 1653 */ 1654 mlx5_link_update(eth_dev, 0); 1655 /* Detect minimal data bytes to inline. */ 1656 mlx5_set_min_inline(spawn, config); 1657 /* Store device configuration on private structure. */ 1658 priv->config = *config; 1659 for (i = 0; i < MLX5_FLOW_TYPE_MAXI; i++) { 1660 icfg[i].release_mem_en = !!config->reclaim_mode; 1661 if (config->reclaim_mode) 1662 icfg[i].per_core_cache = 0; 1663 priv->flows[i] = mlx5_ipool_create(&icfg[i]); 1664 if (!priv->flows[i]) 1665 goto error; 1666 } 1667 /* Create context for virtual machine VLAN workaround. */ 1668 priv->vmwa_context = mlx5_vlan_vmwa_init(eth_dev, spawn->ifindex); 1669 if (config->dv_flow_en) { 1670 err = mlx5_alloc_shared_dr(priv); 1671 if (err) 1672 goto error; 1673 if (mlx5_flex_item_port_init(eth_dev) < 0) 1674 goto error; 1675 } 1676 if (sh->cdev->config.devx && config->dv_flow_en && config->dest_tir) { 1677 priv->obj_ops = devx_obj_ops; 1678 mlx5_queue_counter_id_prepare(eth_dev); 1679 priv->obj_ops.lb_dummy_queue_create = 1680 mlx5_rxq_ibv_obj_dummy_lb_create; 1681 priv->obj_ops.lb_dummy_queue_release = 1682 mlx5_rxq_ibv_obj_dummy_lb_release; 1683 } else if (spawn->max_port > UINT8_MAX) { 1684 /* Verbs can't support ports larger than 255 by design. */ 1685 DRV_LOG(ERR, "must enable DV and ESW when RDMA link ports > 255"); 1686 err = ENOTSUP; 1687 goto error; 1688 } else { 1689 priv->obj_ops = ibv_obj_ops; 1690 } 1691 if (config->tx_pp && 1692 priv->obj_ops.txq_obj_new != mlx5_txq_devx_obj_new) { 1693 /* 1694 * HAVE_MLX5DV_DEVX_UAR_OFFSET is required to support 1695 * packet pacing and already checked above. 1696 * Hence, we should only make sure the SQs will be created 1697 * with DevX, not with Verbs. 1698 * Verbs allocates the SQ UAR on its own and it can't be shared 1699 * with Clock Queue UAR as required for Tx scheduling. 1700 */ 1701 DRV_LOG(ERR, "Verbs SQs, UAR can't be shared as required for packet pacing"); 1702 err = ENODEV; 1703 goto error; 1704 } 1705 priv->drop_queue.hrxq = mlx5_drop_action_create(eth_dev); 1706 if (!priv->drop_queue.hrxq) 1707 goto error; 1708 /* Port representor shares the same max priority with pf port. */ 1709 if (!priv->sh->flow_priority_check_flag) { 1710 /* Supported Verbs flow priority number detection. */ 1711 err = mlx5_flow_discover_priorities(eth_dev); 1712 priv->sh->flow_max_priority = err; 1713 priv->sh->flow_priority_check_flag = 1; 1714 } else { 1715 err = priv->sh->flow_max_priority; 1716 } 1717 if (err < 0) { 1718 err = -err; 1719 goto error; 1720 } 1721 mlx5_set_metadata_mask(eth_dev); 1722 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY && 1723 !priv->sh->dv_regc0_mask) { 1724 DRV_LOG(ERR, "metadata mode %u is not supported " 1725 "(no metadata reg_c[0] is available)", 1726 priv->config.dv_xmeta_en); 1727 err = ENOTSUP; 1728 goto error; 1729 } 1730 priv->hrxqs = mlx5_list_create("hrxq", eth_dev, true, 1731 mlx5_hrxq_create_cb, 1732 mlx5_hrxq_match_cb, 1733 mlx5_hrxq_remove_cb, 1734 mlx5_hrxq_clone_cb, 1735 mlx5_hrxq_clone_free_cb); 1736 if (!priv->hrxqs) 1737 goto error; 1738 rte_rwlock_init(&priv->ind_tbls_lock); 1739 /* Query availability of metadata reg_c's. */ 1740 if (!priv->sh->metadata_regc_check_flag) { 1741 err = mlx5_flow_discover_mreg_c(eth_dev); 1742 if (err < 0) { 1743 err = -err; 1744 goto error; 1745 } 1746 } 1747 if (!mlx5_flow_ext_mreg_supported(eth_dev)) { 1748 DRV_LOG(DEBUG, 1749 "port %u extensive metadata register is not supported", 1750 eth_dev->data->port_id); 1751 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) { 1752 DRV_LOG(ERR, "metadata mode %u is not supported " 1753 "(no metadata registers available)", 1754 priv->config.dv_xmeta_en); 1755 err = ENOTSUP; 1756 goto error; 1757 } 1758 } 1759 if (priv->config.dv_flow_en && 1760 priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY && 1761 mlx5_flow_ext_mreg_supported(eth_dev) && 1762 priv->sh->dv_regc0_mask) { 1763 priv->mreg_cp_tbl = mlx5_hlist_create(MLX5_FLOW_MREG_HNAME, 1764 MLX5_FLOW_MREG_HTABLE_SZ, 1765 false, true, eth_dev, 1766 flow_dv_mreg_create_cb, 1767 flow_dv_mreg_match_cb, 1768 flow_dv_mreg_remove_cb, 1769 flow_dv_mreg_clone_cb, 1770 flow_dv_mreg_clone_free_cb); 1771 if (!priv->mreg_cp_tbl) { 1772 err = ENOMEM; 1773 goto error; 1774 } 1775 } 1776 rte_spinlock_init(&priv->shared_act_sl); 1777 mlx5_flow_counter_mode_config(eth_dev); 1778 mlx5_flow_drop_action_config(eth_dev); 1779 if (priv->config.dv_flow_en) 1780 eth_dev->data->dev_flags |= RTE_ETH_DEV_FLOW_OPS_THREAD_SAFE; 1781 return eth_dev; 1782 error: 1783 if (priv) { 1784 if (priv->mreg_cp_tbl) 1785 mlx5_hlist_destroy(priv->mreg_cp_tbl); 1786 if (priv->sh) 1787 mlx5_os_free_shared_dr(priv); 1788 if (priv->nl_socket_route >= 0) 1789 close(priv->nl_socket_route); 1790 if (priv->vmwa_context) 1791 mlx5_vlan_vmwa_exit(priv->vmwa_context); 1792 if (eth_dev && priv->drop_queue.hrxq) 1793 mlx5_drop_action_destroy(eth_dev); 1794 if (priv->mtr_profile_tbl) 1795 mlx5_l3t_destroy(priv->mtr_profile_tbl); 1796 if (own_domain_id) 1797 claim_zero(rte_eth_switch_domain_free(priv->domain_id)); 1798 if (priv->hrxqs) 1799 mlx5_list_destroy(priv->hrxqs); 1800 if (eth_dev && priv->flex_item_map) 1801 mlx5_flex_item_port_cleanup(eth_dev); 1802 mlx5_free(priv); 1803 if (eth_dev != NULL) 1804 eth_dev->data->dev_private = NULL; 1805 } 1806 if (eth_dev != NULL) { 1807 /* mac_addrs must not be freed alone because part of 1808 * dev_private 1809 **/ 1810 eth_dev->data->mac_addrs = NULL; 1811 rte_eth_dev_release_port(eth_dev); 1812 } 1813 if (sh) 1814 mlx5_free_shared_dev_ctx(sh); 1815 if (nl_rdma >= 0) 1816 close(nl_rdma); 1817 MLX5_ASSERT(err > 0); 1818 rte_errno = err; 1819 return NULL; 1820 } 1821 1822 /** 1823 * Comparison callback to sort device data. 1824 * 1825 * This is meant to be used with qsort(). 1826 * 1827 * @param a[in] 1828 * Pointer to pointer to first data object. 1829 * @param b[in] 1830 * Pointer to pointer to second data object. 1831 * 1832 * @return 1833 * 0 if both objects are equal, less than 0 if the first argument is less 1834 * than the second, greater than 0 otherwise. 1835 */ 1836 static int 1837 mlx5_dev_spawn_data_cmp(const void *a, const void *b) 1838 { 1839 const struct mlx5_switch_info *si_a = 1840 &((const struct mlx5_dev_spawn_data *)a)->info; 1841 const struct mlx5_switch_info *si_b = 1842 &((const struct mlx5_dev_spawn_data *)b)->info; 1843 int ret; 1844 1845 /* Master device first. */ 1846 ret = si_b->master - si_a->master; 1847 if (ret) 1848 return ret; 1849 /* Then representor devices. */ 1850 ret = si_b->representor - si_a->representor; 1851 if (ret) 1852 return ret; 1853 /* Unidentified devices come last in no specific order. */ 1854 if (!si_a->representor) 1855 return 0; 1856 /* Order representors by name. */ 1857 return si_a->port_name - si_b->port_name; 1858 } 1859 1860 /** 1861 * Match PCI information for possible slaves of bonding device. 1862 * 1863 * @param[in] ibdev_name 1864 * Name of Infiniband device. 1865 * @param[in] pci_dev 1866 * Pointer to primary PCI address structure to match. 1867 * @param[in] nl_rdma 1868 * Netlink RDMA group socket handle. 1869 * @param[in] owner 1870 * Representor owner PF index. 1871 * @param[out] bond_info 1872 * Pointer to bonding information. 1873 * 1874 * @return 1875 * negative value if no bonding device found, otherwise 1876 * positive index of slave PF in bonding. 1877 */ 1878 static int 1879 mlx5_device_bond_pci_match(const char *ibdev_name, 1880 const struct rte_pci_addr *pci_dev, 1881 int nl_rdma, uint16_t owner, 1882 struct mlx5_bond_info *bond_info) 1883 { 1884 char ifname[IF_NAMESIZE + 1]; 1885 unsigned int ifindex; 1886 unsigned int np, i; 1887 FILE *bond_file = NULL, *file; 1888 int pf = -1; 1889 int ret; 1890 uint8_t cur_guid[32] = {0}; 1891 uint8_t guid[32] = {0}; 1892 1893 /* 1894 * Try to get master device name. If something goes wrong suppose 1895 * the lack of kernel support and no bonding devices. 1896 */ 1897 memset(bond_info, 0, sizeof(*bond_info)); 1898 if (nl_rdma < 0) 1899 return -1; 1900 if (!strstr(ibdev_name, "bond")) 1901 return -1; 1902 np = mlx5_nl_portnum(nl_rdma, ibdev_name); 1903 if (!np) 1904 return -1; 1905 if (mlx5_get_device_guid(pci_dev, cur_guid, sizeof(cur_guid)) < 0) 1906 return -1; 1907 /* 1908 * The master device might not be on the predefined port(not on port 1909 * index 1, it is not guaranteed), we have to scan all Infiniband 1910 * device ports and find master. 1911 */ 1912 for (i = 1; i <= np; ++i) { 1913 /* Check whether Infiniband port is populated. */ 1914 ifindex = mlx5_nl_ifindex(nl_rdma, ibdev_name, i); 1915 if (!ifindex) 1916 continue; 1917 if (!if_indextoname(ifindex, ifname)) 1918 continue; 1919 /* Try to read bonding slave names from sysfs. */ 1920 MKSTR(slaves, 1921 "/sys/class/net/%s/master/bonding/slaves", ifname); 1922 bond_file = fopen(slaves, "r"); 1923 if (bond_file) 1924 break; 1925 } 1926 if (!bond_file) 1927 return -1; 1928 /* Use safe format to check maximal buffer length. */ 1929 MLX5_ASSERT(atol(RTE_STR(IF_NAMESIZE)) == IF_NAMESIZE); 1930 while (fscanf(bond_file, "%" RTE_STR(IF_NAMESIZE) "s", ifname) == 1) { 1931 char tmp_str[IF_NAMESIZE + 32]; 1932 struct rte_pci_addr pci_addr; 1933 struct mlx5_switch_info info; 1934 int ret; 1935 1936 /* Process slave interface names in the loop. */ 1937 snprintf(tmp_str, sizeof(tmp_str), 1938 "/sys/class/net/%s", ifname); 1939 if (mlx5_get_pci_addr(tmp_str, &pci_addr)) { 1940 DRV_LOG(WARNING, 1941 "Cannot get PCI address for netdev \"%s\".", 1942 ifname); 1943 continue; 1944 } 1945 /* Slave interface PCI address match found. */ 1946 snprintf(tmp_str, sizeof(tmp_str), 1947 "/sys/class/net/%s/phys_port_name", ifname); 1948 file = fopen(tmp_str, "rb"); 1949 if (!file) 1950 break; 1951 info.name_type = MLX5_PHYS_PORT_NAME_TYPE_NOTSET; 1952 if (fscanf(file, "%32s", tmp_str) == 1) 1953 mlx5_translate_port_name(tmp_str, &info); 1954 fclose(file); 1955 /* Only process PF ports. */ 1956 if (info.name_type != MLX5_PHYS_PORT_NAME_TYPE_LEGACY && 1957 info.name_type != MLX5_PHYS_PORT_NAME_TYPE_UPLINK) 1958 continue; 1959 /* Check max bonding member. */ 1960 if (info.port_name >= MLX5_BOND_MAX_PORTS) { 1961 DRV_LOG(WARNING, "bonding index out of range, " 1962 "please increase MLX5_BOND_MAX_PORTS: %s", 1963 tmp_str); 1964 break; 1965 } 1966 /* Get ifindex. */ 1967 snprintf(tmp_str, sizeof(tmp_str), 1968 "/sys/class/net/%s/ifindex", ifname); 1969 file = fopen(tmp_str, "rb"); 1970 if (!file) 1971 break; 1972 ret = fscanf(file, "%u", &ifindex); 1973 fclose(file); 1974 if (ret != 1) 1975 break; 1976 /* Save bonding info. */ 1977 strncpy(bond_info->ports[info.port_name].ifname, ifname, 1978 sizeof(bond_info->ports[0].ifname)); 1979 bond_info->ports[info.port_name].pci_addr = pci_addr; 1980 bond_info->ports[info.port_name].ifindex = ifindex; 1981 bond_info->n_port++; 1982 /* 1983 * Under socket direct mode, bonding will use 1984 * system_image_guid as identification. 1985 * After OFED 5.4, guid is readable (ret >= 0) under sysfs. 1986 * All bonding members should have the same guid even if driver 1987 * is using PCIe BDF. 1988 */ 1989 ret = mlx5_get_device_guid(&pci_addr, guid, sizeof(guid)); 1990 if (ret < 0) 1991 break; 1992 else if (ret > 0) { 1993 if (!memcmp(guid, cur_guid, sizeof(guid)) && 1994 owner == info.port_name && 1995 (owner != 0 || (owner == 0 && 1996 !rte_pci_addr_cmp(pci_dev, &pci_addr)))) 1997 pf = info.port_name; 1998 } else if (pci_dev->domain == pci_addr.domain && 1999 pci_dev->bus == pci_addr.bus && 2000 pci_dev->devid == pci_addr.devid && 2001 ((pci_dev->function == 0 && 2002 pci_dev->function + owner == pci_addr.function) || 2003 (pci_dev->function == owner && 2004 pci_addr.function == owner))) 2005 pf = info.port_name; 2006 } 2007 if (pf >= 0) { 2008 /* Get bond interface info */ 2009 ret = mlx5_sysfs_bond_info(ifindex, &bond_info->ifindex, 2010 bond_info->ifname); 2011 if (ret) 2012 DRV_LOG(ERR, "unable to get bond info: %s", 2013 strerror(rte_errno)); 2014 else 2015 DRV_LOG(INFO, "PF device %u, bond device %u(%s)", 2016 ifindex, bond_info->ifindex, bond_info->ifname); 2017 } 2018 if (owner == 0 && pf != 0) { 2019 DRV_LOG(INFO, "PCIe instance %04x:%02x:%02x.%x isn't bonding owner", 2020 pci_dev->domain, pci_dev->bus, pci_dev->devid, 2021 pci_dev->function); 2022 } 2023 return pf; 2024 } 2025 2026 static void 2027 mlx5_os_config_default(struct mlx5_dev_config *config, 2028 struct mlx5_common_dev_config *cconf) 2029 { 2030 memset(config, 0, sizeof(*config)); 2031 config->mps = MLX5_ARG_UNSET; 2032 config->cqe_comp = 1; 2033 config->rx_vec_en = 1; 2034 config->txq_inline_max = MLX5_ARG_UNSET; 2035 config->txq_inline_min = MLX5_ARG_UNSET; 2036 config->txq_inline_mpw = MLX5_ARG_UNSET; 2037 config->txqs_inline = MLX5_ARG_UNSET; 2038 config->vf_nl_en = 1; 2039 config->mprq.max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN; 2040 config->mprq.min_rxqs_num = MLX5_MPRQ_MIN_RXQS; 2041 config->mprq.log_min_stride_wqe_size = cconf->devx ? 2042 cconf->hca_attr.log_min_stride_wqe_sz : 2043 MLX5_MPRQ_LOG_MIN_STRIDE_WQE_SIZE; 2044 config->mprq.log_stride_num = MLX5_MPRQ_DEFAULT_LOG_STRIDE_NUM; 2045 config->dv_esw_en = 1; 2046 config->dv_flow_en = 1; 2047 config->decap_en = 1; 2048 config->log_hp_size = MLX5_ARG_UNSET; 2049 config->allow_duplicate_pattern = 1; 2050 config->std_delay_drop = 0; 2051 config->hp_delay_drop = 0; 2052 } 2053 2054 /** 2055 * Register a PCI device within bonding. 2056 * 2057 * This function spawns Ethernet devices out of a given PCI device and 2058 * bonding owner PF index. 2059 * 2060 * @param[in] cdev 2061 * Pointer to common mlx5 device structure. 2062 * @param[in] req_eth_da 2063 * Requested ethdev device argument. 2064 * @param[in] owner_id 2065 * Requested owner PF port ID within bonding device, default to 0. 2066 * 2067 * @return 2068 * 0 on success, a negative errno value otherwise and rte_errno is set. 2069 */ 2070 static int 2071 mlx5_os_pci_probe_pf(struct mlx5_common_device *cdev, 2072 struct rte_eth_devargs *req_eth_da, 2073 uint16_t owner_id) 2074 { 2075 struct ibv_device **ibv_list; 2076 /* 2077 * Number of found IB Devices matching with requested PCI BDF. 2078 * nd != 1 means there are multiple IB devices over the same 2079 * PCI device and we have representors and master. 2080 */ 2081 unsigned int nd = 0; 2082 /* 2083 * Number of found IB device Ports. nd = 1 and np = 1..n means 2084 * we have the single multiport IB device, and there may be 2085 * representors attached to some of found ports. 2086 */ 2087 unsigned int np = 0; 2088 /* 2089 * Number of DPDK ethernet devices to Spawn - either over 2090 * multiple IB devices or multiple ports of single IB device. 2091 * Actually this is the number of iterations to spawn. 2092 */ 2093 unsigned int ns = 0; 2094 /* 2095 * Bonding device 2096 * < 0 - no bonding device (single one) 2097 * >= 0 - bonding device (value is slave PF index) 2098 */ 2099 int bd = -1; 2100 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(cdev->dev); 2101 struct mlx5_dev_spawn_data *list = NULL; 2102 struct mlx5_dev_config dev_config; 2103 struct rte_eth_devargs eth_da = *req_eth_da; 2104 struct rte_pci_addr owner_pci = pci_dev->addr; /* Owner PF. */ 2105 struct mlx5_bond_info bond_info; 2106 int ret = -1; 2107 2108 errno = 0; 2109 ibv_list = mlx5_glue->get_device_list(&ret); 2110 if (!ibv_list) { 2111 rte_errno = errno ? errno : ENOSYS; 2112 DRV_LOG(ERR, "Cannot list devices, is ib_uverbs loaded?"); 2113 return -rte_errno; 2114 } 2115 /* 2116 * First scan the list of all Infiniband devices to find 2117 * matching ones, gathering into the list. 2118 */ 2119 struct ibv_device *ibv_match[ret + 1]; 2120 int nl_route = mlx5_nl_init(NETLINK_ROUTE); 2121 int nl_rdma = mlx5_nl_init(NETLINK_RDMA); 2122 unsigned int i; 2123 2124 while (ret-- > 0) { 2125 struct rte_pci_addr pci_addr; 2126 2127 DRV_LOG(DEBUG, "Checking device \"%s\"", ibv_list[ret]->name); 2128 bd = mlx5_device_bond_pci_match(ibv_list[ret]->name, &owner_pci, 2129 nl_rdma, owner_id, &bond_info); 2130 if (bd >= 0) { 2131 /* 2132 * Bonding device detected. Only one match is allowed, 2133 * the bonding is supported over multi-port IB device, 2134 * there should be no matches on representor PCI 2135 * functions or non VF LAG bonding devices with 2136 * specified address. 2137 */ 2138 if (nd) { 2139 DRV_LOG(ERR, 2140 "multiple PCI match on bonding device" 2141 "\"%s\" found", ibv_list[ret]->name); 2142 rte_errno = ENOENT; 2143 ret = -rte_errno; 2144 goto exit; 2145 } 2146 /* Amend owner pci address if owner PF ID specified. */ 2147 if (eth_da.nb_representor_ports) 2148 owner_pci.function += owner_id; 2149 DRV_LOG(INFO, 2150 "PCI information matches for slave %d bonding device \"%s\"", 2151 bd, ibv_list[ret]->name); 2152 ibv_match[nd++] = ibv_list[ret]; 2153 break; 2154 } else { 2155 /* Bonding device not found. */ 2156 if (mlx5_get_pci_addr(ibv_list[ret]->ibdev_path, 2157 &pci_addr)) 2158 continue; 2159 if (owner_pci.domain != pci_addr.domain || 2160 owner_pci.bus != pci_addr.bus || 2161 owner_pci.devid != pci_addr.devid || 2162 owner_pci.function != pci_addr.function) 2163 continue; 2164 DRV_LOG(INFO, "PCI information matches for device \"%s\"", 2165 ibv_list[ret]->name); 2166 ibv_match[nd++] = ibv_list[ret]; 2167 } 2168 } 2169 ibv_match[nd] = NULL; 2170 if (!nd) { 2171 /* No device matches, just complain and bail out. */ 2172 DRV_LOG(WARNING, 2173 "No Verbs device matches PCI device " PCI_PRI_FMT "," 2174 " are kernel drivers loaded?", 2175 owner_pci.domain, owner_pci.bus, 2176 owner_pci.devid, owner_pci.function); 2177 rte_errno = ENOENT; 2178 ret = -rte_errno; 2179 goto exit; 2180 } 2181 if (nd == 1) { 2182 /* 2183 * Found single matching device may have multiple ports. 2184 * Each port may be representor, we have to check the port 2185 * number and check the representors existence. 2186 */ 2187 if (nl_rdma >= 0) 2188 np = mlx5_nl_portnum(nl_rdma, ibv_match[0]->name); 2189 if (!np) 2190 DRV_LOG(WARNING, 2191 "Cannot get IB device \"%s\" ports number.", 2192 ibv_match[0]->name); 2193 if (bd >= 0 && !np) { 2194 DRV_LOG(ERR, "Cannot get ports for bonding device."); 2195 rte_errno = ENOENT; 2196 ret = -rte_errno; 2197 goto exit; 2198 } 2199 } 2200 /* Now we can determine the maximal amount of devices to be spawned. */ 2201 list = mlx5_malloc(MLX5_MEM_ZERO, 2202 sizeof(struct mlx5_dev_spawn_data) * (np ? np : nd), 2203 RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY); 2204 if (!list) { 2205 DRV_LOG(ERR, "Spawn data array allocation failure."); 2206 rte_errno = ENOMEM; 2207 ret = -rte_errno; 2208 goto exit; 2209 } 2210 if (bd >= 0 || np > 1) { 2211 /* 2212 * Single IB device with multiple ports found, 2213 * it may be E-Switch master device and representors. 2214 * We have to perform identification through the ports. 2215 */ 2216 MLX5_ASSERT(nl_rdma >= 0); 2217 MLX5_ASSERT(ns == 0); 2218 MLX5_ASSERT(nd == 1); 2219 MLX5_ASSERT(np); 2220 for (i = 1; i <= np; ++i) { 2221 list[ns].bond_info = &bond_info; 2222 list[ns].max_port = np; 2223 list[ns].phys_port = i; 2224 list[ns].phys_dev_name = ibv_match[0]->name; 2225 list[ns].eth_dev = NULL; 2226 list[ns].pci_dev = pci_dev; 2227 list[ns].cdev = cdev; 2228 list[ns].pf_bond = bd; 2229 list[ns].ifindex = mlx5_nl_ifindex(nl_rdma, 2230 ibv_match[0]->name, 2231 i); 2232 if (!list[ns].ifindex) { 2233 /* 2234 * No network interface index found for the 2235 * specified port, it means there is no 2236 * representor on this port. It's OK, 2237 * there can be disabled ports, for example 2238 * if sriov_numvfs < sriov_totalvfs. 2239 */ 2240 continue; 2241 } 2242 ret = -1; 2243 if (nl_route >= 0) 2244 ret = mlx5_nl_switch_info(nl_route, 2245 list[ns].ifindex, 2246 &list[ns].info); 2247 if (ret || (!list[ns].info.representor && 2248 !list[ns].info.master)) { 2249 /* 2250 * We failed to recognize representors with 2251 * Netlink, let's try to perform the task 2252 * with sysfs. 2253 */ 2254 ret = mlx5_sysfs_switch_info(list[ns].ifindex, 2255 &list[ns].info); 2256 } 2257 if (!ret && bd >= 0) { 2258 switch (list[ns].info.name_type) { 2259 case MLX5_PHYS_PORT_NAME_TYPE_UPLINK: 2260 if (np == 1) { 2261 /* 2262 * Force standalone bonding 2263 * device for ROCE LAG 2264 * configurations. 2265 */ 2266 list[ns].info.master = 0; 2267 list[ns].info.representor = 0; 2268 } 2269 if (list[ns].info.port_name == bd) 2270 ns++; 2271 break; 2272 case MLX5_PHYS_PORT_NAME_TYPE_PFHPF: 2273 /* Fallthrough */ 2274 case MLX5_PHYS_PORT_NAME_TYPE_PFVF: 2275 /* Fallthrough */ 2276 case MLX5_PHYS_PORT_NAME_TYPE_PFSF: 2277 if (list[ns].info.pf_num == bd) 2278 ns++; 2279 break; 2280 default: 2281 break; 2282 } 2283 continue; 2284 } 2285 if (!ret && (list[ns].info.representor ^ 2286 list[ns].info.master)) 2287 ns++; 2288 } 2289 if (!ns) { 2290 DRV_LOG(ERR, 2291 "Unable to recognize master/representors on the IB device with multiple ports."); 2292 rte_errno = ENOENT; 2293 ret = -rte_errno; 2294 goto exit; 2295 } 2296 } else { 2297 /* 2298 * The existence of several matching entries (nd > 1) means 2299 * port representors have been instantiated. No existing Verbs 2300 * call nor sysfs entries can tell them apart, this can only 2301 * be done through Netlink calls assuming kernel drivers are 2302 * recent enough to support them. 2303 * 2304 * In the event of identification failure through Netlink, 2305 * try again through sysfs, then: 2306 * 2307 * 1. A single IB device matches (nd == 1) with single 2308 * port (np=0/1) and is not a representor, assume 2309 * no switch support. 2310 * 2311 * 2. Otherwise no safe assumptions can be made; 2312 * complain louder and bail out. 2313 */ 2314 for (i = 0; i != nd; ++i) { 2315 memset(&list[ns].info, 0, sizeof(list[ns].info)); 2316 list[ns].bond_info = NULL; 2317 list[ns].max_port = 1; 2318 list[ns].phys_port = 1; 2319 list[ns].phys_dev_name = ibv_match[i]->name; 2320 list[ns].eth_dev = NULL; 2321 list[ns].pci_dev = pci_dev; 2322 list[ns].cdev = cdev; 2323 list[ns].pf_bond = -1; 2324 list[ns].ifindex = 0; 2325 if (nl_rdma >= 0) 2326 list[ns].ifindex = mlx5_nl_ifindex 2327 (nl_rdma, 2328 ibv_match[i]->name, 2329 1); 2330 if (!list[ns].ifindex) { 2331 char ifname[IF_NAMESIZE]; 2332 2333 /* 2334 * Netlink failed, it may happen with old 2335 * ib_core kernel driver (before 4.16). 2336 * We can assume there is old driver because 2337 * here we are processing single ports IB 2338 * devices. Let's try sysfs to retrieve 2339 * the ifindex. The method works for 2340 * master device only. 2341 */ 2342 if (nd > 1) { 2343 /* 2344 * Multiple devices found, assume 2345 * representors, can not distinguish 2346 * master/representor and retrieve 2347 * ifindex via sysfs. 2348 */ 2349 continue; 2350 } 2351 ret = mlx5_get_ifname_sysfs 2352 (ibv_match[i]->ibdev_path, ifname); 2353 if (!ret) 2354 list[ns].ifindex = 2355 if_nametoindex(ifname); 2356 if (!list[ns].ifindex) { 2357 /* 2358 * No network interface index found 2359 * for the specified device, it means 2360 * there it is neither representor 2361 * nor master. 2362 */ 2363 continue; 2364 } 2365 } 2366 ret = -1; 2367 if (nl_route >= 0) 2368 ret = mlx5_nl_switch_info(nl_route, 2369 list[ns].ifindex, 2370 &list[ns].info); 2371 if (ret || (!list[ns].info.representor && 2372 !list[ns].info.master)) { 2373 /* 2374 * We failed to recognize representors with 2375 * Netlink, let's try to perform the task 2376 * with sysfs. 2377 */ 2378 ret = mlx5_sysfs_switch_info(list[ns].ifindex, 2379 &list[ns].info); 2380 } 2381 if (!ret && (list[ns].info.representor ^ 2382 list[ns].info.master)) { 2383 ns++; 2384 } else if ((nd == 1) && 2385 !list[ns].info.representor && 2386 !list[ns].info.master) { 2387 /* 2388 * Single IB device with one physical port and 2389 * attached network device. 2390 * May be SRIOV is not enabled or there is no 2391 * representors. 2392 */ 2393 DRV_LOG(INFO, "No E-Switch support detected."); 2394 ns++; 2395 break; 2396 } 2397 } 2398 if (!ns) { 2399 DRV_LOG(ERR, 2400 "Unable to recognize master/representors on the multiple IB devices."); 2401 rte_errno = ENOENT; 2402 ret = -rte_errno; 2403 goto exit; 2404 } 2405 /* 2406 * New kernels may add the switch_id attribute for the case 2407 * there is no E-Switch and we wrongly recognized the only 2408 * device as master. Override this if there is the single 2409 * device with single port and new device name format present. 2410 */ 2411 if (nd == 1 && 2412 list[0].info.name_type == MLX5_PHYS_PORT_NAME_TYPE_UPLINK) { 2413 list[0].info.master = 0; 2414 list[0].info.representor = 0; 2415 } 2416 } 2417 MLX5_ASSERT(ns); 2418 /* 2419 * Sort list to probe devices in natural order for users convenience 2420 * (i.e. master first, then representors from lowest to highest ID). 2421 */ 2422 qsort(list, ns, sizeof(*list), mlx5_dev_spawn_data_cmp); 2423 if (eth_da.type != RTE_ETH_REPRESENTOR_NONE) { 2424 /* Set devargs default values. */ 2425 if (eth_da.nb_mh_controllers == 0) { 2426 eth_da.nb_mh_controllers = 1; 2427 eth_da.mh_controllers[0] = 0; 2428 } 2429 if (eth_da.nb_ports == 0 && ns > 0) { 2430 if (list[0].pf_bond >= 0 && list[0].info.representor) 2431 DRV_LOG(WARNING, "Representor on Bonding device should use pf#vf# syntax: %s", 2432 pci_dev->device.devargs->args); 2433 eth_da.nb_ports = 1; 2434 eth_da.ports[0] = list[0].info.pf_num; 2435 } 2436 if (eth_da.nb_representor_ports == 0) { 2437 eth_da.nb_representor_ports = 1; 2438 eth_da.representor_ports[0] = 0; 2439 } 2440 } 2441 for (i = 0; i != ns; ++i) { 2442 uint32_t restore; 2443 2444 /* Default configuration. */ 2445 mlx5_os_config_default(&dev_config, &cdev->config); 2446 dev_config.vf = mlx5_dev_is_vf_pci(pci_dev); 2447 list[i].eth_dev = mlx5_dev_spawn(cdev->dev, &list[i], 2448 &dev_config, ð_da); 2449 if (!list[i].eth_dev) { 2450 if (rte_errno != EBUSY && rte_errno != EEXIST) 2451 break; 2452 /* Device is disabled or already spawned. Ignore it. */ 2453 continue; 2454 } 2455 restore = list[i].eth_dev->data->dev_flags; 2456 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev); 2457 /** 2458 * Each representor has a dedicated interrupts vector. 2459 * rte_eth_copy_pci_info() assigns PF interrupts handle to 2460 * representor eth_dev object because representor and PF 2461 * share the same PCI address. 2462 * Override representor device with a dedicated 2463 * interrupts handle here. 2464 * Representor interrupts handle is released in mlx5_dev_stop(). 2465 */ 2466 if (list[i].info.representor) { 2467 struct rte_intr_handle *intr_handle = 2468 rte_intr_instance_alloc(RTE_INTR_INSTANCE_F_SHARED); 2469 if (intr_handle == NULL) { 2470 DRV_LOG(ERR, 2471 "port %u failed to allocate memory for interrupt handler " 2472 "Rx interrupts will not be supported", 2473 i); 2474 rte_errno = ENOMEM; 2475 ret = -rte_errno; 2476 goto exit; 2477 } 2478 list[i].eth_dev->intr_handle = intr_handle; 2479 } 2480 /* Restore non-PCI flags cleared by the above call. */ 2481 list[i].eth_dev->data->dev_flags |= restore; 2482 rte_eth_dev_probing_finish(list[i].eth_dev); 2483 } 2484 if (i != ns) { 2485 DRV_LOG(ERR, 2486 "probe of PCI device " PCI_PRI_FMT " aborted after" 2487 " encountering an error: %s", 2488 owner_pci.domain, owner_pci.bus, 2489 owner_pci.devid, owner_pci.function, 2490 strerror(rte_errno)); 2491 ret = -rte_errno; 2492 /* Roll back. */ 2493 while (i--) { 2494 if (!list[i].eth_dev) 2495 continue; 2496 mlx5_dev_close(list[i].eth_dev); 2497 /* mac_addrs must not be freed because in dev_private */ 2498 list[i].eth_dev->data->mac_addrs = NULL; 2499 claim_zero(rte_eth_dev_release_port(list[i].eth_dev)); 2500 } 2501 /* Restore original error. */ 2502 rte_errno = -ret; 2503 } else { 2504 ret = 0; 2505 } 2506 exit: 2507 /* 2508 * Do the routine cleanup: 2509 * - close opened Netlink sockets 2510 * - free allocated spawn data array 2511 * - free the Infiniband device list 2512 */ 2513 if (nl_rdma >= 0) 2514 close(nl_rdma); 2515 if (nl_route >= 0) 2516 close(nl_route); 2517 if (list) 2518 mlx5_free(list); 2519 MLX5_ASSERT(ibv_list); 2520 mlx5_glue->free_device_list(ibv_list); 2521 return ret; 2522 } 2523 2524 static int 2525 mlx5_os_parse_eth_devargs(struct rte_device *dev, 2526 struct rte_eth_devargs *eth_da) 2527 { 2528 int ret = 0; 2529 2530 if (dev->devargs == NULL) 2531 return 0; 2532 memset(eth_da, 0, sizeof(*eth_da)); 2533 /* Parse representor information first from class argument. */ 2534 if (dev->devargs->cls_str) 2535 ret = rte_eth_devargs_parse(dev->devargs->cls_str, eth_da); 2536 if (ret != 0) { 2537 DRV_LOG(ERR, "failed to parse device arguments: %s", 2538 dev->devargs->cls_str); 2539 return -rte_errno; 2540 } 2541 if (eth_da->type == RTE_ETH_REPRESENTOR_NONE) { 2542 /* Parse legacy device argument */ 2543 ret = rte_eth_devargs_parse(dev->devargs->args, eth_da); 2544 if (ret) { 2545 DRV_LOG(ERR, "failed to parse device arguments: %s", 2546 dev->devargs->args); 2547 return -rte_errno; 2548 } 2549 } 2550 return 0; 2551 } 2552 2553 /** 2554 * Callback to register a PCI device. 2555 * 2556 * This function spawns Ethernet devices out of a given PCI device. 2557 * 2558 * @param[in] cdev 2559 * Pointer to common mlx5 device structure. 2560 * 2561 * @return 2562 * 0 on success, a negative errno value otherwise and rte_errno is set. 2563 */ 2564 static int 2565 mlx5_os_pci_probe(struct mlx5_common_device *cdev) 2566 { 2567 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(cdev->dev); 2568 struct rte_eth_devargs eth_da = { .nb_ports = 0 }; 2569 int ret = 0; 2570 uint16_t p; 2571 2572 ret = mlx5_os_parse_eth_devargs(cdev->dev, ð_da); 2573 if (ret != 0) 2574 return ret; 2575 2576 if (eth_da.nb_ports > 0) { 2577 /* Iterate all port if devargs pf is range: "pf[0-1]vf[...]". */ 2578 for (p = 0; p < eth_da.nb_ports; p++) { 2579 ret = mlx5_os_pci_probe_pf(cdev, ð_da, 2580 eth_da.ports[p]); 2581 if (ret) 2582 break; 2583 } 2584 if (ret) { 2585 DRV_LOG(ERR, "Probe of PCI device " PCI_PRI_FMT " " 2586 "aborted due to prodding failure of PF %u", 2587 pci_dev->addr.domain, pci_dev->addr.bus, 2588 pci_dev->addr.devid, pci_dev->addr.function, 2589 eth_da.ports[p]); 2590 mlx5_net_remove(cdev); 2591 } 2592 } else { 2593 ret = mlx5_os_pci_probe_pf(cdev, ð_da, 0); 2594 } 2595 return ret; 2596 } 2597 2598 /* Probe a single SF device on auxiliary bus, no representor support. */ 2599 static int 2600 mlx5_os_auxiliary_probe(struct mlx5_common_device *cdev) 2601 { 2602 struct rte_eth_devargs eth_da = { .nb_ports = 0 }; 2603 struct mlx5_dev_config config; 2604 struct mlx5_dev_spawn_data spawn = { .pf_bond = -1 }; 2605 struct rte_device *dev = cdev->dev; 2606 struct rte_auxiliary_device *adev = RTE_DEV_TO_AUXILIARY(dev); 2607 struct rte_eth_dev *eth_dev; 2608 int ret = 0; 2609 2610 /* Parse ethdev devargs. */ 2611 ret = mlx5_os_parse_eth_devargs(dev, ð_da); 2612 if (ret != 0) 2613 return ret; 2614 /* Set default config data. */ 2615 mlx5_os_config_default(&config, &cdev->config); 2616 config.sf = 1; 2617 /* Init spawn data. */ 2618 spawn.max_port = 1; 2619 spawn.phys_port = 1; 2620 spawn.phys_dev_name = mlx5_os_get_ctx_device_name(cdev->ctx); 2621 ret = mlx5_auxiliary_get_ifindex(dev->name); 2622 if (ret < 0) { 2623 DRV_LOG(ERR, "failed to get ethdev ifindex: %s", dev->name); 2624 return ret; 2625 } 2626 spawn.ifindex = ret; 2627 spawn.cdev = cdev; 2628 /* Spawn device. */ 2629 eth_dev = mlx5_dev_spawn(dev, &spawn, &config, ð_da); 2630 if (eth_dev == NULL) 2631 return -rte_errno; 2632 /* Post create. */ 2633 eth_dev->intr_handle = adev->intr_handle; 2634 if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 2635 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC; 2636 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_RMV; 2637 eth_dev->data->numa_node = dev->numa_node; 2638 } 2639 rte_eth_dev_probing_finish(eth_dev); 2640 return 0; 2641 } 2642 2643 /** 2644 * Net class driver callback to probe a device. 2645 * 2646 * This function probe PCI bus device(s) or a single SF on auxiliary bus. 2647 * 2648 * @param[in] cdev 2649 * Pointer to the common mlx5 device. 2650 * 2651 * @return 2652 * 0 on success, a negative errno value otherwise and rte_errno is set. 2653 */ 2654 int 2655 mlx5_os_net_probe(struct mlx5_common_device *cdev) 2656 { 2657 int ret; 2658 2659 if (rte_eal_process_type() == RTE_PROC_PRIMARY) 2660 mlx5_pmd_socket_init(); 2661 ret = mlx5_init_once(); 2662 if (ret) { 2663 DRV_LOG(ERR, "Unable to init PMD global data: %s", 2664 strerror(rte_errno)); 2665 return -rte_errno; 2666 } 2667 if (mlx5_dev_is_pci(cdev->dev)) 2668 return mlx5_os_pci_probe(cdev); 2669 else 2670 return mlx5_os_auxiliary_probe(cdev); 2671 } 2672 2673 /** 2674 * Cleanup resources when the last device is closed. 2675 */ 2676 void 2677 mlx5_os_net_cleanup(void) 2678 { 2679 mlx5_pmd_socket_uninit(); 2680 } 2681 2682 /** 2683 * Install shared asynchronous device events handler. 2684 * This function is implemented to support event sharing 2685 * between multiple ports of single IB device. 2686 * 2687 * @param sh 2688 * Pointer to mlx5_dev_ctx_shared object. 2689 */ 2690 void 2691 mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh) 2692 { 2693 int ret; 2694 int flags; 2695 struct ibv_context *ctx = sh->cdev->ctx; 2696 2697 sh->intr_handle = rte_intr_instance_alloc(RTE_INTR_INSTANCE_F_SHARED); 2698 if (sh->intr_handle == NULL) { 2699 DRV_LOG(ERR, "Fail to allocate intr_handle"); 2700 rte_errno = ENOMEM; 2701 return; 2702 } 2703 rte_intr_fd_set(sh->intr_handle, -1); 2704 2705 flags = fcntl(ctx->async_fd, F_GETFL); 2706 ret = fcntl(ctx->async_fd, F_SETFL, flags | O_NONBLOCK); 2707 if (ret) { 2708 DRV_LOG(INFO, "failed to change file descriptor async event" 2709 " queue"); 2710 } else { 2711 rte_intr_fd_set(sh->intr_handle, ctx->async_fd); 2712 rte_intr_type_set(sh->intr_handle, RTE_INTR_HANDLE_EXT); 2713 if (rte_intr_callback_register(sh->intr_handle, 2714 mlx5_dev_interrupt_handler, sh)) { 2715 DRV_LOG(INFO, "Fail to install the shared interrupt."); 2716 rte_intr_fd_set(sh->intr_handle, -1); 2717 } 2718 } 2719 if (sh->cdev->config.devx) { 2720 #ifdef HAVE_IBV_DEVX_ASYNC 2721 sh->intr_handle_devx = 2722 rte_intr_instance_alloc(RTE_INTR_INSTANCE_F_SHARED); 2723 if (!sh->intr_handle_devx) { 2724 DRV_LOG(ERR, "Fail to allocate intr_handle"); 2725 rte_errno = ENOMEM; 2726 return; 2727 } 2728 rte_intr_fd_set(sh->intr_handle_devx, -1); 2729 sh->devx_comp = (void *)mlx5_glue->devx_create_cmd_comp(ctx); 2730 struct mlx5dv_devx_cmd_comp *devx_comp = sh->devx_comp; 2731 if (!devx_comp) { 2732 DRV_LOG(INFO, "failed to allocate devx_comp."); 2733 return; 2734 } 2735 flags = fcntl(devx_comp->fd, F_GETFL); 2736 ret = fcntl(devx_comp->fd, F_SETFL, flags | O_NONBLOCK); 2737 if (ret) { 2738 DRV_LOG(INFO, "failed to change file descriptor" 2739 " devx comp"); 2740 return; 2741 } 2742 rte_intr_fd_set(sh->intr_handle_devx, devx_comp->fd); 2743 rte_intr_type_set(sh->intr_handle_devx, 2744 RTE_INTR_HANDLE_EXT); 2745 if (rte_intr_callback_register(sh->intr_handle_devx, 2746 mlx5_dev_interrupt_handler_devx, sh)) { 2747 DRV_LOG(INFO, "Fail to install the devx shared" 2748 " interrupt."); 2749 rte_intr_fd_set(sh->intr_handle_devx, -1); 2750 } 2751 #endif /* HAVE_IBV_DEVX_ASYNC */ 2752 } 2753 } 2754 2755 /** 2756 * Uninstall shared asynchronous device events handler. 2757 * This function is implemented to support event sharing 2758 * between multiple ports of single IB device. 2759 * 2760 * @param dev 2761 * Pointer to mlx5_dev_ctx_shared object. 2762 */ 2763 void 2764 mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh) 2765 { 2766 if (rte_intr_fd_get(sh->intr_handle) >= 0) 2767 mlx5_intr_callback_unregister(sh->intr_handle, 2768 mlx5_dev_interrupt_handler, sh); 2769 rte_intr_instance_free(sh->intr_handle); 2770 #ifdef HAVE_IBV_DEVX_ASYNC 2771 if (rte_intr_fd_get(sh->intr_handle_devx) >= 0) 2772 rte_intr_callback_unregister(sh->intr_handle_devx, 2773 mlx5_dev_interrupt_handler_devx, sh); 2774 rte_intr_instance_free(sh->intr_handle_devx); 2775 if (sh->devx_comp) 2776 mlx5_glue->devx_destroy_cmd_comp(sh->devx_comp); 2777 #endif 2778 } 2779 2780 /** 2781 * Read statistics by a named counter. 2782 * 2783 * @param[in] priv 2784 * Pointer to the private device data structure. 2785 * @param[in] ctr_name 2786 * Pointer to the name of the statistic counter to read 2787 * @param[out] stat 2788 * Pointer to read statistic value. 2789 * @return 2790 * 0 on success and stat is valud, 1 if failed to read the value 2791 * rte_errno is set. 2792 * 2793 */ 2794 int 2795 mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name, 2796 uint64_t *stat) 2797 { 2798 int fd; 2799 2800 if (priv->sh) { 2801 if (priv->q_counters != NULL && 2802 strcmp(ctr_name, "out_of_buffer") == 0) 2803 return mlx5_devx_cmd_queue_counter_query 2804 (priv->q_counters, 0, (uint32_t *)stat); 2805 MKSTR(path, "%s/ports/%d/hw_counters/%s", 2806 priv->sh->ibdev_path, 2807 priv->dev_port, 2808 ctr_name); 2809 fd = open(path, O_RDONLY); 2810 /* 2811 * in switchdev the file location is not per port 2812 * but rather in <ibdev_path>/hw_counters/<file_name>. 2813 */ 2814 if (fd == -1) { 2815 MKSTR(path1, "%s/hw_counters/%s", 2816 priv->sh->ibdev_path, 2817 ctr_name); 2818 fd = open(path1, O_RDONLY); 2819 } 2820 if (fd != -1) { 2821 char buf[21] = {'\0'}; 2822 ssize_t n = read(fd, buf, sizeof(buf)); 2823 2824 close(fd); 2825 if (n != -1) { 2826 *stat = strtoull(buf, NULL, 10); 2827 return 0; 2828 } 2829 } 2830 } 2831 *stat = 0; 2832 return 1; 2833 } 2834 2835 /** 2836 * Remove a MAC address from device 2837 * 2838 * @param dev 2839 * Pointer to Ethernet device structure. 2840 * @param index 2841 * MAC address index. 2842 */ 2843 void 2844 mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index) 2845 { 2846 struct mlx5_priv *priv = dev->data->dev_private; 2847 const int vf = priv->config.vf; 2848 2849 if (vf) 2850 mlx5_nl_mac_addr_remove(priv->nl_socket_route, 2851 mlx5_ifindex(dev), priv->mac_own, 2852 &dev->data->mac_addrs[index], index); 2853 } 2854 2855 /** 2856 * Adds a MAC address to the device 2857 * 2858 * @param dev 2859 * Pointer to Ethernet device structure. 2860 * @param mac_addr 2861 * MAC address to register. 2862 * @param index 2863 * MAC address index. 2864 * 2865 * @return 2866 * 0 on success, a negative errno value otherwise 2867 */ 2868 int 2869 mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac, 2870 uint32_t index) 2871 { 2872 struct mlx5_priv *priv = dev->data->dev_private; 2873 const int vf = priv->config.vf; 2874 int ret = 0; 2875 2876 if (vf) 2877 ret = mlx5_nl_mac_addr_add(priv->nl_socket_route, 2878 mlx5_ifindex(dev), priv->mac_own, 2879 mac, index); 2880 return ret; 2881 } 2882 2883 /** 2884 * Modify a VF MAC address 2885 * 2886 * @param priv 2887 * Pointer to device private data. 2888 * @param mac_addr 2889 * MAC address to modify into. 2890 * @param iface_idx 2891 * Net device interface index 2892 * @param vf_index 2893 * VF index 2894 * 2895 * @return 2896 * 0 on success, a negative errno value otherwise 2897 */ 2898 int 2899 mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv, 2900 unsigned int iface_idx, 2901 struct rte_ether_addr *mac_addr, 2902 int vf_index) 2903 { 2904 return mlx5_nl_vf_mac_addr_modify 2905 (priv->nl_socket_route, iface_idx, mac_addr, vf_index); 2906 } 2907 2908 /** 2909 * Set device promiscuous mode 2910 * 2911 * @param dev 2912 * Pointer to Ethernet device structure. 2913 * @param enable 2914 * 0 - promiscuous is disabled, otherwise - enabled 2915 * 2916 * @return 2917 * 0 on success, a negative error value otherwise 2918 */ 2919 int 2920 mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable) 2921 { 2922 struct mlx5_priv *priv = dev->data->dev_private; 2923 2924 return mlx5_nl_promisc(priv->nl_socket_route, 2925 mlx5_ifindex(dev), !!enable); 2926 } 2927 2928 /** 2929 * Set device promiscuous mode 2930 * 2931 * @param dev 2932 * Pointer to Ethernet device structure. 2933 * @param enable 2934 * 0 - all multicase is disabled, otherwise - enabled 2935 * 2936 * @return 2937 * 0 on success, a negative error value otherwise 2938 */ 2939 int 2940 mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable) 2941 { 2942 struct mlx5_priv *priv = dev->data->dev_private; 2943 2944 return mlx5_nl_allmulti(priv->nl_socket_route, 2945 mlx5_ifindex(dev), !!enable); 2946 } 2947 2948 /** 2949 * Flush device MAC addresses 2950 * 2951 * @param dev 2952 * Pointer to Ethernet device structure. 2953 * 2954 */ 2955 void 2956 mlx5_os_mac_addr_flush(struct rte_eth_dev *dev) 2957 { 2958 struct mlx5_priv *priv = dev->data->dev_private; 2959 2960 mlx5_nl_mac_addr_flush(priv->nl_socket_route, mlx5_ifindex(dev), 2961 dev->data->mac_addrs, 2962 MLX5_MAX_MAC_ADDRESSES, priv->mac_own); 2963 } 2964