1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2015 6WIND S.A. 3 * Copyright 2015 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 13 #include <rte_atomic.h> 14 #include <rte_ethdev_driver.h> 15 #include <rte_bus_pci.h> 16 #include <rte_mbuf.h> 17 #include <rte_common.h> 18 #include <rte_interrupts.h> 19 #include <rte_malloc.h> 20 #include <rte_string_fns.h> 21 #include <rte_rwlock.h> 22 #include <rte_cycles.h> 23 24 #include <mlx5_malloc.h> 25 26 #include "mlx5_rxtx.h" 27 #include "mlx5_autoconf.h" 28 29 /** 30 * Get the interface index from device name. 31 * 32 * @param[in] dev 33 * Pointer to Ethernet device. 34 * 35 * @return 36 * Nonzero interface index on success, zero otherwise and rte_errno is set. 37 */ 38 unsigned int 39 mlx5_ifindex(const struct rte_eth_dev *dev) 40 { 41 struct mlx5_priv *priv = dev->data->dev_private; 42 unsigned int ifindex; 43 44 MLX5_ASSERT(priv); 45 MLX5_ASSERT(priv->if_index); 46 ifindex = priv->bond_ifindex > 0 ? priv->bond_ifindex : priv->if_index; 47 if (!ifindex) 48 rte_errno = ENXIO; 49 return ifindex; 50 } 51 52 /** 53 * DPDK callback for Ethernet device configuration. 54 * 55 * @param dev 56 * Pointer to Ethernet device structure. 57 * 58 * @return 59 * 0 on success, a negative errno value otherwise and rte_errno is set. 60 */ 61 int 62 mlx5_dev_configure(struct rte_eth_dev *dev) 63 { 64 struct mlx5_priv *priv = dev->data->dev_private; 65 unsigned int rxqs_n = dev->data->nb_rx_queues; 66 unsigned int txqs_n = dev->data->nb_tx_queues; 67 const uint8_t use_app_rss_key = 68 !!dev->data->dev_conf.rx_adv_conf.rss_conf.rss_key; 69 int ret = 0; 70 71 if (use_app_rss_key && 72 (dev->data->dev_conf.rx_adv_conf.rss_conf.rss_key_len != 73 MLX5_RSS_HASH_KEY_LEN)) { 74 DRV_LOG(ERR, "port %u RSS key len must be %s Bytes long", 75 dev->data->port_id, RTE_STR(MLX5_RSS_HASH_KEY_LEN)); 76 rte_errno = EINVAL; 77 return -rte_errno; 78 } 79 priv->rss_conf.rss_key = 80 mlx5_realloc(priv->rss_conf.rss_key, MLX5_MEM_RTE, 81 MLX5_RSS_HASH_KEY_LEN, 0, SOCKET_ID_ANY); 82 if (!priv->rss_conf.rss_key) { 83 DRV_LOG(ERR, "port %u cannot allocate RSS hash key memory (%u)", 84 dev->data->port_id, rxqs_n); 85 rte_errno = ENOMEM; 86 return -rte_errno; 87 } 88 89 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) 90 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH; 91 if ((dev->data->dev_conf.txmode.offloads & 92 DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP) && 93 rte_mbuf_dyn_tx_timestamp_register(NULL, NULL) != 0) { 94 DRV_LOG(ERR, "port %u cannot register Tx timestamp field/flag", 95 dev->data->port_id); 96 return -rte_errno; 97 } 98 memcpy(priv->rss_conf.rss_key, 99 use_app_rss_key ? 100 dev->data->dev_conf.rx_adv_conf.rss_conf.rss_key : 101 rss_hash_default_key, 102 MLX5_RSS_HASH_KEY_LEN); 103 priv->rss_conf.rss_key_len = MLX5_RSS_HASH_KEY_LEN; 104 priv->rss_conf.rss_hf = dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf; 105 priv->rxqs = (void *)dev->data->rx_queues; 106 priv->txqs = (void *)dev->data->tx_queues; 107 if (txqs_n != priv->txqs_n) { 108 DRV_LOG(INFO, "port %u Tx queues number update: %u -> %u", 109 dev->data->port_id, priv->txqs_n, txqs_n); 110 priv->txqs_n = txqs_n; 111 } 112 if (rxqs_n > priv->config.ind_table_max_size) { 113 DRV_LOG(ERR, "port %u cannot handle this many Rx queues (%u)", 114 dev->data->port_id, rxqs_n); 115 rte_errno = EINVAL; 116 return -rte_errno; 117 } 118 if (rxqs_n != priv->rxqs_n) { 119 DRV_LOG(INFO, "port %u Rx queues number update: %u -> %u", 120 dev->data->port_id, priv->rxqs_n, rxqs_n); 121 priv->rxqs_n = rxqs_n; 122 } 123 priv->skip_default_rss_reta = 0; 124 ret = mlx5_proc_priv_init(dev); 125 if (ret) 126 return ret; 127 return 0; 128 } 129 130 /** 131 * Configure default RSS reta. 132 * 133 * @param dev 134 * Pointer to Ethernet device structure. 135 * 136 * @return 137 * 0 on success, a negative errno value otherwise and rte_errno is set. 138 */ 139 int 140 mlx5_dev_configure_rss_reta(struct rte_eth_dev *dev) 141 { 142 struct mlx5_priv *priv = dev->data->dev_private; 143 unsigned int rxqs_n = dev->data->nb_rx_queues; 144 unsigned int i; 145 unsigned int j; 146 unsigned int reta_idx_n; 147 int ret = 0; 148 unsigned int *rss_queue_arr = NULL; 149 unsigned int rss_queue_n = 0; 150 151 if (priv->skip_default_rss_reta) 152 return ret; 153 rss_queue_arr = mlx5_malloc(0, rxqs_n * sizeof(unsigned int), 0, 154 SOCKET_ID_ANY); 155 if (!rss_queue_arr) { 156 DRV_LOG(ERR, "port %u cannot allocate RSS queue list (%u)", 157 dev->data->port_id, rxqs_n); 158 rte_errno = ENOMEM; 159 return -rte_errno; 160 } 161 for (i = 0, j = 0; i < rxqs_n; i++) { 162 struct mlx5_rxq_data *rxq_data; 163 struct mlx5_rxq_ctrl *rxq_ctrl; 164 165 rxq_data = (*priv->rxqs)[i]; 166 rxq_ctrl = container_of(rxq_data, struct mlx5_rxq_ctrl, rxq); 167 if (rxq_ctrl && rxq_ctrl->type == MLX5_RXQ_TYPE_STANDARD) 168 rss_queue_arr[j++] = i; 169 } 170 rss_queue_n = j; 171 if (rss_queue_n > priv->config.ind_table_max_size) { 172 DRV_LOG(ERR, "port %u cannot handle this many Rx queues (%u)", 173 dev->data->port_id, rss_queue_n); 174 rte_errno = EINVAL; 175 mlx5_free(rss_queue_arr); 176 return -rte_errno; 177 } 178 DRV_LOG(INFO, "port %u Rx queues number update: %u -> %u", 179 dev->data->port_id, priv->rxqs_n, rxqs_n); 180 priv->rxqs_n = rxqs_n; 181 /* 182 * If the requested number of RX queues is not a power of two, 183 * use the maximum indirection table size for better balancing. 184 * The result is always rounded to the next power of two. 185 */ 186 reta_idx_n = (1 << log2above((rss_queue_n & (rss_queue_n - 1)) ? 187 priv->config.ind_table_max_size : 188 rss_queue_n)); 189 ret = mlx5_rss_reta_index_resize(dev, reta_idx_n); 190 if (ret) { 191 mlx5_free(rss_queue_arr); 192 return ret; 193 } 194 /* 195 * When the number of RX queues is not a power of two, 196 * the remaining table entries are padded with reused WQs 197 * and hashes are not spread uniformly. 198 */ 199 for (i = 0, j = 0; (i != reta_idx_n); ++i) { 200 (*priv->reta_idx)[i] = rss_queue_arr[j]; 201 if (++j == rss_queue_n) 202 j = 0; 203 } 204 mlx5_free(rss_queue_arr); 205 return ret; 206 } 207 208 /** 209 * Sets default tuning parameters. 210 * 211 * @param dev 212 * Pointer to Ethernet device. 213 * @param[out] info 214 * Info structure output buffer. 215 */ 216 static void 217 mlx5_set_default_params(struct rte_eth_dev *dev, struct rte_eth_dev_info *info) 218 { 219 struct mlx5_priv *priv = dev->data->dev_private; 220 221 /* Minimum CPU utilization. */ 222 info->default_rxportconf.ring_size = 256; 223 info->default_txportconf.ring_size = 256; 224 info->default_rxportconf.burst_size = MLX5_RX_DEFAULT_BURST; 225 info->default_txportconf.burst_size = MLX5_TX_DEFAULT_BURST; 226 if ((priv->link_speed_capa & ETH_LINK_SPEED_200G) | 227 (priv->link_speed_capa & ETH_LINK_SPEED_100G)) { 228 info->default_rxportconf.nb_queues = 16; 229 info->default_txportconf.nb_queues = 16; 230 if (dev->data->nb_rx_queues > 2 || 231 dev->data->nb_tx_queues > 2) { 232 /* Max Throughput. */ 233 info->default_rxportconf.ring_size = 2048; 234 info->default_txportconf.ring_size = 2048; 235 } 236 } else { 237 info->default_rxportconf.nb_queues = 8; 238 info->default_txportconf.nb_queues = 8; 239 if (dev->data->nb_rx_queues > 2 || 240 dev->data->nb_tx_queues > 2) { 241 /* Max Throughput. */ 242 info->default_rxportconf.ring_size = 4096; 243 info->default_txportconf.ring_size = 4096; 244 } 245 } 246 } 247 248 /** 249 * Sets tx mbuf limiting parameters. 250 * 251 * @param dev 252 * Pointer to Ethernet device. 253 * @param[out] info 254 * Info structure output buffer. 255 */ 256 static void 257 mlx5_set_txlimit_params(struct rte_eth_dev *dev, struct rte_eth_dev_info *info) 258 { 259 struct mlx5_priv *priv = dev->data->dev_private; 260 struct mlx5_dev_config *config = &priv->config; 261 unsigned int inlen; 262 uint16_t nb_max; 263 264 inlen = (config->txq_inline_max == MLX5_ARG_UNSET) ? 265 MLX5_SEND_DEF_INLINE_LEN : 266 (unsigned int)config->txq_inline_max; 267 MLX5_ASSERT(config->txq_inline_min >= 0); 268 inlen = RTE_MAX(inlen, (unsigned int)config->txq_inline_min); 269 inlen = RTE_MIN(inlen, MLX5_WQE_SIZE_MAX + 270 MLX5_ESEG_MIN_INLINE_SIZE - 271 MLX5_WQE_CSEG_SIZE - 272 MLX5_WQE_ESEG_SIZE - 273 MLX5_WQE_DSEG_SIZE * 2); 274 nb_max = (MLX5_WQE_SIZE_MAX + 275 MLX5_ESEG_MIN_INLINE_SIZE - 276 MLX5_WQE_CSEG_SIZE - 277 MLX5_WQE_ESEG_SIZE - 278 MLX5_WQE_DSEG_SIZE - 279 inlen) / MLX5_WSEG_SIZE; 280 info->tx_desc_lim.nb_seg_max = nb_max; 281 info->tx_desc_lim.nb_mtu_seg_max = nb_max; 282 } 283 284 /** 285 * DPDK callback to get information about the device. 286 * 287 * @param dev 288 * Pointer to Ethernet device structure. 289 * @param[out] info 290 * Info structure output buffer. 291 */ 292 int 293 mlx5_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info) 294 { 295 struct mlx5_priv *priv = dev->data->dev_private; 296 struct mlx5_dev_config *config = &priv->config; 297 unsigned int max; 298 299 /* FIXME: we should ask the device for these values. */ 300 info->min_rx_bufsize = 32; 301 info->max_rx_pktlen = 65536; 302 info->max_lro_pkt_size = MLX5_MAX_LRO_SIZE; 303 /* 304 * Since we need one CQ per QP, the limit is the minimum number 305 * between the two values. 306 */ 307 max = RTE_MIN(priv->sh->device_attr.max_cq, 308 priv->sh->device_attr.max_qp); 309 /* max_rx_queues is uint16_t. */ 310 max = RTE_MIN(max, (unsigned int)UINT16_MAX); 311 info->max_rx_queues = max; 312 info->max_tx_queues = max; 313 info->max_mac_addrs = MLX5_MAX_UC_MAC_ADDRESSES; 314 info->rx_queue_offload_capa = mlx5_get_rx_queue_offloads(dev); 315 info->rx_offload_capa = (mlx5_get_rx_port_offloads() | 316 info->rx_queue_offload_capa); 317 info->tx_offload_capa = mlx5_get_tx_port_offloads(dev); 318 info->if_index = mlx5_ifindex(dev); 319 info->reta_size = priv->reta_idx_n ? 320 priv->reta_idx_n : config->ind_table_max_size; 321 info->hash_key_size = MLX5_RSS_HASH_KEY_LEN; 322 info->speed_capa = priv->link_speed_capa; 323 info->flow_type_rss_offloads = ~MLX5_RSS_HF_MASK; 324 mlx5_set_default_params(dev, info); 325 mlx5_set_txlimit_params(dev, info); 326 info->switch_info.name = dev->data->name; 327 info->switch_info.domain_id = priv->domain_id; 328 info->switch_info.port_id = priv->representor_id; 329 if (priv->representor) { 330 uint16_t port_id; 331 332 if (priv->pf_bond >= 0) { 333 /* 334 * Switch port ID is opaque value with driver defined 335 * format. Push the PF index in bonding configurations 336 * in upper four bits of port ID. If we get too many 337 * representors (more than 4K) or PFs (more than 15) 338 * this approach must be reconsidered. 339 */ 340 if ((info->switch_info.port_id >> 341 MLX5_PORT_ID_BONDING_PF_SHIFT) || 342 priv->pf_bond > MLX5_PORT_ID_BONDING_PF_MASK) { 343 DRV_LOG(ERR, "can't update switch port ID" 344 " for bonding device"); 345 MLX5_ASSERT(false); 346 return -ENODEV; 347 } 348 info->switch_info.port_id |= 349 priv->pf_bond << MLX5_PORT_ID_BONDING_PF_SHIFT; 350 } 351 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) { 352 struct mlx5_priv *opriv = 353 rte_eth_devices[port_id].data->dev_private; 354 355 if (!opriv || 356 opriv->representor || 357 opriv->sh != priv->sh || 358 opriv->domain_id != priv->domain_id) 359 continue; 360 /* 361 * Override switch name with that of the master 362 * device. 363 */ 364 info->switch_info.name = opriv->dev_data->name; 365 break; 366 } 367 } 368 return 0; 369 } 370 371 /** 372 * Get firmware version of a device. 373 * 374 * @param dev 375 * Ethernet device port. 376 * @param fw_ver 377 * String output allocated by caller. 378 * @param fw_size 379 * Size of the output string, including terminating null byte. 380 * 381 * @return 382 * 0 on success, or the size of the non truncated string if too big. 383 */ 384 int 385 mlx5_fw_version_get(struct rte_eth_dev *dev, char *fw_ver, size_t fw_size) 386 { 387 struct mlx5_priv *priv = dev->data->dev_private; 388 struct mlx5_dev_attr *attr = &priv->sh->device_attr; 389 size_t size = strnlen(attr->fw_ver, sizeof(attr->fw_ver)) + 1; 390 391 if (fw_size < size) 392 return size; 393 if (fw_ver != NULL) 394 strlcpy(fw_ver, attr->fw_ver, fw_size); 395 return 0; 396 } 397 398 /** 399 * Get supported packet types. 400 * 401 * @param dev 402 * Pointer to Ethernet device structure. 403 * 404 * @return 405 * A pointer to the supported Packet types array. 406 */ 407 const uint32_t * 408 mlx5_dev_supported_ptypes_get(struct rte_eth_dev *dev) 409 { 410 static const uint32_t ptypes[] = { 411 /* refers to rxq_cq_to_pkt_type() */ 412 RTE_PTYPE_L2_ETHER, 413 RTE_PTYPE_L3_IPV4_EXT_UNKNOWN, 414 RTE_PTYPE_L3_IPV6_EXT_UNKNOWN, 415 RTE_PTYPE_L4_NONFRAG, 416 RTE_PTYPE_L4_FRAG, 417 RTE_PTYPE_L4_TCP, 418 RTE_PTYPE_L4_UDP, 419 RTE_PTYPE_INNER_L3_IPV4_EXT_UNKNOWN, 420 RTE_PTYPE_INNER_L3_IPV6_EXT_UNKNOWN, 421 RTE_PTYPE_INNER_L4_NONFRAG, 422 RTE_PTYPE_INNER_L4_FRAG, 423 RTE_PTYPE_INNER_L4_TCP, 424 RTE_PTYPE_INNER_L4_UDP, 425 RTE_PTYPE_UNKNOWN 426 }; 427 428 if (dev->rx_pkt_burst == mlx5_rx_burst || 429 dev->rx_pkt_burst == mlx5_rx_burst_mprq || 430 dev->rx_pkt_burst == mlx5_rx_burst_vec || 431 dev->rx_pkt_burst == mlx5_rx_burst_mprq_vec) 432 return ptypes; 433 return NULL; 434 } 435 436 /** 437 * DPDK callback to change the MTU. 438 * 439 * @param dev 440 * Pointer to Ethernet device structure. 441 * @param in_mtu 442 * New MTU. 443 * 444 * @return 445 * 0 on success, a negative errno value otherwise and rte_errno is set. 446 */ 447 int 448 mlx5_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu) 449 { 450 struct mlx5_priv *priv = dev->data->dev_private; 451 uint16_t kern_mtu = 0; 452 int ret; 453 454 ret = mlx5_get_mtu(dev, &kern_mtu); 455 if (ret) 456 return ret; 457 /* Set kernel interface MTU first. */ 458 ret = mlx5_set_mtu(dev, mtu); 459 if (ret) 460 return ret; 461 ret = mlx5_get_mtu(dev, &kern_mtu); 462 if (ret) 463 return ret; 464 if (kern_mtu == mtu) { 465 priv->mtu = mtu; 466 DRV_LOG(DEBUG, "port %u adapter MTU set to %u", 467 dev->data->port_id, mtu); 468 return 0; 469 } 470 rte_errno = EAGAIN; 471 return -rte_errno; 472 } 473 474 /** 475 * Configure the RX function to use. 476 * 477 * @param dev 478 * Pointer to private data structure. 479 * 480 * @return 481 * Pointer to selected Rx burst function. 482 */ 483 eth_rx_burst_t 484 mlx5_select_rx_function(struct rte_eth_dev *dev) 485 { 486 eth_rx_burst_t rx_pkt_burst = mlx5_rx_burst; 487 488 MLX5_ASSERT(dev != NULL); 489 if (mlx5_check_vec_rx_support(dev) > 0) { 490 if (mlx5_mprq_enabled(dev)) { 491 rx_pkt_burst = mlx5_rx_burst_mprq_vec; 492 DRV_LOG(DEBUG, "port %u selected vectorized" 493 " MPRQ Rx function", dev->data->port_id); 494 } else { 495 rx_pkt_burst = mlx5_rx_burst_vec; 496 DRV_LOG(DEBUG, "port %u selected vectorized" 497 " SPRQ Rx function", dev->data->port_id); 498 } 499 } else if (mlx5_mprq_enabled(dev)) { 500 rx_pkt_burst = mlx5_rx_burst_mprq; 501 DRV_LOG(DEBUG, "port %u selected MPRQ Rx function", 502 dev->data->port_id); 503 } else { 504 DRV_LOG(DEBUG, "port %u selected SPRQ Rx function", 505 dev->data->port_id); 506 } 507 return rx_pkt_burst; 508 } 509 510 /** 511 * Get the E-Switch parameters by port id. 512 * 513 * @param[in] port 514 * Device port id. 515 * @param[in] valid 516 * Device port id is valid, skip check. This flag is useful 517 * when trials are performed from probing and device is not 518 * flagged as valid yet (in attaching process). 519 * @param[out] es_domain_id 520 * E-Switch domain id. 521 * @param[out] es_port_id 522 * The port id of the port in the E-Switch. 523 * 524 * @return 525 * pointer to device private data structure containing data needed 526 * on success, NULL otherwise and rte_errno is set. 527 */ 528 struct mlx5_priv * 529 mlx5_port_to_eswitch_info(uint16_t port, bool valid) 530 { 531 struct rte_eth_dev *dev; 532 struct mlx5_priv *priv; 533 534 if (port >= RTE_MAX_ETHPORTS) { 535 rte_errno = EINVAL; 536 return NULL; 537 } 538 if (!valid && !rte_eth_dev_is_valid_port(port)) { 539 rte_errno = ENODEV; 540 return NULL; 541 } 542 dev = &rte_eth_devices[port]; 543 priv = dev->data->dev_private; 544 if (!(priv->representor || priv->master)) { 545 rte_errno = EINVAL; 546 return NULL; 547 } 548 return priv; 549 } 550 551 /** 552 * Get the E-Switch parameters by device instance. 553 * 554 * @param[in] port 555 * Device port id. 556 * @param[out] es_domain_id 557 * E-Switch domain id. 558 * @param[out] es_port_id 559 * The port id of the port in the E-Switch. 560 * 561 * @return 562 * pointer to device private data structure containing data needed 563 * on success, NULL otherwise and rte_errno is set. 564 */ 565 struct mlx5_priv * 566 mlx5_dev_to_eswitch_info(struct rte_eth_dev *dev) 567 { 568 struct mlx5_priv *priv; 569 570 priv = dev->data->dev_private; 571 if (!(priv->representor || priv->master)) { 572 rte_errno = EINVAL; 573 return NULL; 574 } 575 return priv; 576 } 577 578 /** 579 * DPDK callback to retrieve hairpin capabilities. 580 * 581 * @param dev 582 * Pointer to Ethernet device structure. 583 * @param[out] cap 584 * Storage for hairpin capability data. 585 * 586 * @return 587 * 0 on success, a negative errno value otherwise and rte_errno is set. 588 */ 589 int 590 mlx5_hairpin_cap_get(struct rte_eth_dev *dev, struct rte_eth_hairpin_cap *cap) 591 { 592 struct mlx5_priv *priv = dev->data->dev_private; 593 struct mlx5_dev_config *config = &priv->config; 594 595 if (!priv->sh->devx || !config->dest_tir || !config->dv_flow_en) { 596 rte_errno = ENOTSUP; 597 return -rte_errno; 598 } 599 cap->max_nb_queues = UINT16_MAX; 600 cap->max_rx_2_tx = 1; 601 cap->max_tx_2_rx = 1; 602 cap->max_nb_desc = 8192; 603 return 0; 604 } 605