1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2020 Mellanox Technologies, Ltd
13 #include <linux/rtnetlink.h>
14 #include <linux/sockios.h>
15 #include <linux/ethtool.h>
18 #include <rte_malloc.h>
19 #include <rte_ethdev_driver.h>
20 #include <rte_ethdev_pci.h>
22 #include <rte_bus_pci.h>
23 #include <rte_common.h>
24 #include <rte_kvargs.h>
25 #include <rte_rwlock.h>
26 #include <rte_spinlock.h>
27 #include <rte_string_fns.h>
28 #include <rte_alarm.h>
29 #include <rte_eal_paging.h>
31 #include <mlx5_glue.h>
32 #include <mlx5_devx_cmds.h>
33 #include <mlx5_common.h>
34 #include <mlx5_common_mp.h>
35 #include <mlx5_common_mr.h>
36 #include <mlx5_malloc.h>
38 #include "mlx5_defs.h"
40 #include "mlx5_common_os.h"
41 #include "mlx5_utils.h"
42 #include "mlx5_rxtx.h"
43 #include "mlx5_autoconf.h"
45 #include "mlx5_flow.h"
46 #include "rte_pmd_mlx5.h"
47 #include "mlx5_verbs.h"
49 #include "mlx5_devx.h"
51 #define MLX5_TAGS_HLIST_ARRAY_SIZE 8192
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)
58 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
59 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
62 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
64 /* Spinlock for mlx5_shared_data allocation. */
65 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
67 /* Process local data for secondary processes. */
68 static struct mlx5_local_data mlx5_local_data;
71 * Set the completion channel file descriptor interrupt as non-blocking.
74 * Pointer to RQ channel object, which includes the channel fd
77 * The file descriptor (representing the intetrrupt) used in this channel.
80 * 0 on successfully setting the fd to non-blocking, non-zero otherwise.
83 mlx5_os_set_nonblock_channel_fd(int fd)
87 flags = fcntl(fd, F_GETFL);
88 return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
92 * Get mlx5 device attributes. The glue function query_device_ex() is called
93 * with out parameter of type 'struct ibv_device_attr_ex *'. Then fill in mlx5
94 * device attributes from the glue out parameter.
97 * Pointer to ibv context.
100 * Pointer to mlx5 device attributes.
103 * 0 on success, non zero error number otherwise
106 mlx5_os_get_dev_attr(void *ctx, struct mlx5_dev_attr *device_attr)
109 struct ibv_device_attr_ex attr_ex;
110 memset(device_attr, 0, sizeof(*device_attr));
111 err = mlx5_glue->query_device_ex(ctx, NULL, &attr_ex);
115 device_attr->device_cap_flags_ex = attr_ex.device_cap_flags_ex;
116 device_attr->max_qp_wr = attr_ex.orig_attr.max_qp_wr;
117 device_attr->max_sge = attr_ex.orig_attr.max_sge;
118 device_attr->max_cq = attr_ex.orig_attr.max_cq;
119 device_attr->max_qp = attr_ex.orig_attr.max_qp;
120 device_attr->raw_packet_caps = attr_ex.raw_packet_caps;
121 device_attr->max_rwq_indirection_table_size =
122 attr_ex.rss_caps.max_rwq_indirection_table_size;
123 device_attr->max_tso = attr_ex.tso_caps.max_tso;
124 device_attr->tso_supported_qpts = attr_ex.tso_caps.supported_qpts;
126 struct mlx5dv_context dv_attr = { .comp_mask = 0 };
127 err = mlx5_glue->dv_query_device(ctx, &dv_attr);
131 device_attr->flags = dv_attr.flags;
132 device_attr->comp_mask = dv_attr.comp_mask;
133 #ifdef HAVE_IBV_MLX5_MOD_SWP
134 device_attr->sw_parsing_offloads =
135 dv_attr.sw_parsing_caps.sw_parsing_offloads;
137 device_attr->min_single_stride_log_num_of_bytes =
138 dv_attr.striding_rq_caps.min_single_stride_log_num_of_bytes;
139 device_attr->max_single_stride_log_num_of_bytes =
140 dv_attr.striding_rq_caps.max_single_stride_log_num_of_bytes;
141 device_attr->min_single_wqe_log_num_of_strides =
142 dv_attr.striding_rq_caps.min_single_wqe_log_num_of_strides;
143 device_attr->max_single_wqe_log_num_of_strides =
144 dv_attr.striding_rq_caps.max_single_wqe_log_num_of_strides;
145 device_attr->stride_supported_qpts =
146 dv_attr.striding_rq_caps.supported_qpts;
147 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
148 device_attr->tunnel_offloads_caps = dv_attr.tunnel_offloads_caps;
155 * Verbs callback to allocate a memory. This function should allocate the space
156 * according to the size provided residing inside a huge page.
157 * Please note that all allocation must respect the alignment from libmlx5
158 * (i.e. currently rte_mem_page_size()).
161 * The size in bytes of the memory to allocate.
163 * A pointer to the callback data.
166 * Allocated buffer, NULL otherwise and rte_errno is set.
169 mlx5_alloc_verbs_buf(size_t size, void *data)
171 struct mlx5_priv *priv = data;
173 unsigned int socket = SOCKET_ID_ANY;
174 size_t alignment = rte_mem_page_size();
175 if (alignment == (size_t)-1) {
176 DRV_LOG(ERR, "Failed to get mem page size");
181 if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
182 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
184 socket = ctrl->socket;
185 } else if (priv->verbs_alloc_ctx.type ==
186 MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
187 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
189 socket = ctrl->socket;
191 MLX5_ASSERT(data != NULL);
192 ret = mlx5_malloc(0, size, alignment, socket);
199 * Verbs callback to free a memory.
202 * A pointer to the memory to free.
204 * A pointer to the callback data.
207 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
209 MLX5_ASSERT(data != NULL);
214 * Initialize DR related data within private structure.
215 * Routine checks the reference counter and does actual
216 * resources creation/initialization only if counter is zero.
219 * Pointer to the private device data structure.
222 * Zero on success, positive error code otherwise.
225 mlx5_alloc_shared_dr(struct mlx5_priv *priv)
227 struct mlx5_dev_ctx_shared *sh = priv->sh;
228 char s[MLX5_HLIST_NAMESIZE] __rte_unused;
231 MLX5_ASSERT(sh && sh->refcnt);
234 err = mlx5_alloc_table_hash_list(priv);
237 /* The resources below are only valid with DV support. */
238 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
239 /* Create tags hash list table. */
240 snprintf(s, sizeof(s), "%s_tags", sh->ibdev_name);
241 sh->tag_table = mlx5_hlist_create(s, MLX5_TAGS_HLIST_ARRAY_SIZE, 0,
242 MLX5_HLIST_WRITE_MOST,
243 flow_dv_tag_create_cb, NULL,
244 flow_dv_tag_remove_cb);
245 if (!sh->tag_table) {
246 DRV_LOG(ERR, "tags with hash creation failed.");
250 sh->tag_table->ctx = sh;
251 snprintf(s, sizeof(s), "%s_hdr_modify", sh->ibdev_name);
252 sh->modify_cmds = mlx5_hlist_create(s, MLX5_FLOW_HDR_MODIFY_HTABLE_SZ,
253 0, 0, NULL, NULL, NULL);
254 if (!sh->modify_cmds) {
255 DRV_LOG(ERR, "hdr modify hash creation failed");
259 snprintf(s, sizeof(s), "%s_encaps_decaps", sh->ibdev_name);
260 sh->encaps_decaps = mlx5_hlist_create(s,
261 MLX5_FLOW_ENCAP_DECAP_HTABLE_SZ,
262 0, 0, NULL, NULL, NULL);
263 if (!sh->encaps_decaps) {
264 DRV_LOG(ERR, "encap decap hash creation failed");
269 #ifdef HAVE_MLX5DV_DR
272 /* Reference counter is zero, we should initialize structures. */
273 domain = mlx5_glue->dr_create_domain(sh->ctx,
274 MLX5DV_DR_DOMAIN_TYPE_NIC_RX);
276 DRV_LOG(ERR, "ingress mlx5dv_dr_create_domain failed");
280 sh->rx_domain = domain;
281 domain = mlx5_glue->dr_create_domain(sh->ctx,
282 MLX5DV_DR_DOMAIN_TYPE_NIC_TX);
284 DRV_LOG(ERR, "egress mlx5dv_dr_create_domain failed");
288 pthread_mutex_init(&sh->dv_mutex, NULL);
289 sh->tx_domain = domain;
290 #ifdef HAVE_MLX5DV_DR_ESWITCH
291 if (priv->config.dv_esw_en) {
292 domain = mlx5_glue->dr_create_domain
293 (sh->ctx, MLX5DV_DR_DOMAIN_TYPE_FDB);
295 DRV_LOG(ERR, "FDB mlx5dv_dr_create_domain failed");
299 sh->fdb_domain = domain;
300 sh->esw_drop_action = mlx5_glue->dr_create_flow_action_drop();
304 err = mlx5_alloc_tunnel_hub(sh);
306 DRV_LOG(ERR, "mlx5_alloc_tunnel_hub failed err=%d", err);
309 if (priv->config.reclaim_mode == MLX5_RCM_AGGR) {
310 mlx5_glue->dr_reclaim_domain_memory(sh->rx_domain, 1);
311 mlx5_glue->dr_reclaim_domain_memory(sh->tx_domain, 1);
313 mlx5_glue->dr_reclaim_domain_memory(sh->fdb_domain, 1);
315 sh->pop_vlan_action = mlx5_glue->dr_create_flow_action_pop_vlan();
316 #endif /* HAVE_MLX5DV_DR */
317 sh->default_miss_action =
318 mlx5_glue->dr_create_flow_action_default_miss();
319 if (!sh->default_miss_action)
320 DRV_LOG(WARNING, "Default miss action is not supported.");
323 /* Rollback the created objects. */
325 mlx5_glue->dr_destroy_domain(sh->rx_domain);
326 sh->rx_domain = NULL;
329 mlx5_glue->dr_destroy_domain(sh->tx_domain);
330 sh->tx_domain = NULL;
332 if (sh->fdb_domain) {
333 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
334 sh->fdb_domain = NULL;
336 if (sh->esw_drop_action) {
337 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
338 sh->esw_drop_action = NULL;
340 if (sh->pop_vlan_action) {
341 mlx5_glue->destroy_flow_action(sh->pop_vlan_action);
342 sh->pop_vlan_action = NULL;
344 if (sh->encaps_decaps) {
345 mlx5_hlist_destroy(sh->encaps_decaps);
346 sh->encaps_decaps = NULL;
348 if (sh->modify_cmds) {
349 mlx5_hlist_destroy(sh->modify_cmds);
350 sh->modify_cmds = NULL;
353 /* tags should be destroyed with flow before. */
354 mlx5_hlist_destroy(sh->tag_table);
355 sh->tag_table = NULL;
357 if (sh->tunnel_hub) {
358 mlx5_release_tunnel_hub(sh, priv->dev_port);
359 sh->tunnel_hub = NULL;
361 mlx5_free_table_hash_list(priv);
366 * Destroy DR related data within private structure.
369 * Pointer to the private device data structure.
372 mlx5_os_free_shared_dr(struct mlx5_priv *priv)
374 struct mlx5_dev_ctx_shared *sh = priv->sh;
376 MLX5_ASSERT(sh && sh->refcnt);
379 #ifdef HAVE_MLX5DV_DR
381 mlx5_glue->dr_destroy_domain(sh->rx_domain);
382 sh->rx_domain = NULL;
385 mlx5_glue->dr_destroy_domain(sh->tx_domain);
386 sh->tx_domain = NULL;
388 #ifdef HAVE_MLX5DV_DR_ESWITCH
389 if (sh->fdb_domain) {
390 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
391 sh->fdb_domain = NULL;
393 if (sh->esw_drop_action) {
394 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
395 sh->esw_drop_action = NULL;
398 if (sh->pop_vlan_action) {
399 mlx5_glue->destroy_flow_action(sh->pop_vlan_action);
400 sh->pop_vlan_action = NULL;
402 pthread_mutex_destroy(&sh->dv_mutex);
403 #endif /* HAVE_MLX5DV_DR */
404 if (sh->default_miss_action)
405 mlx5_glue->destroy_flow_action
406 (sh->default_miss_action);
407 if (sh->encaps_decaps) {
408 mlx5_hlist_destroy(sh->encaps_decaps);
409 sh->encaps_decaps = NULL;
411 if (sh->modify_cmds) {
412 mlx5_hlist_destroy(sh->modify_cmds);
413 sh->modify_cmds = NULL;
416 /* tags should be destroyed with flow before. */
417 mlx5_hlist_destroy(sh->tag_table);
418 sh->tag_table = NULL;
420 if (sh->tunnel_hub) {
421 mlx5_release_tunnel_hub(sh, priv->dev_port);
422 sh->tunnel_hub = NULL;
424 mlx5_free_table_hash_list(priv);
428 * Initialize shared data between primary and secondary process.
430 * A memzone is reserved by primary process and secondary processes attach to
434 * 0 on success, a negative errno value otherwise and rte_errno is set.
437 mlx5_init_shared_data(void)
439 const struct rte_memzone *mz;
442 rte_spinlock_lock(&mlx5_shared_data_lock);
443 if (mlx5_shared_data == NULL) {
444 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
445 /* Allocate shared memory. */
446 mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
447 sizeof(*mlx5_shared_data),
451 "Cannot allocate mlx5 shared data");
455 mlx5_shared_data = mz->addr;
456 memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data));
457 rte_spinlock_init(&mlx5_shared_data->lock);
459 /* Lookup allocated shared memory. */
460 mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
463 "Cannot attach mlx5 shared data");
467 mlx5_shared_data = mz->addr;
468 memset(&mlx5_local_data, 0, sizeof(mlx5_local_data));
472 rte_spinlock_unlock(&mlx5_shared_data_lock);
477 * PMD global initialization.
479 * Independent from individual device, this function initializes global
480 * per-PMD data structures distinguishing primary and secondary processes.
481 * Hence, each initialization is called once per a process.
484 * 0 on success, a negative errno value otherwise and rte_errno is set.
489 struct mlx5_shared_data *sd;
490 struct mlx5_local_data *ld = &mlx5_local_data;
493 if (mlx5_init_shared_data())
495 sd = mlx5_shared_data;
497 rte_spinlock_lock(&sd->lock);
498 switch (rte_eal_process_type()) {
499 case RTE_PROC_PRIMARY:
502 LIST_INIT(&sd->mem_event_cb_list);
503 rte_rwlock_init(&sd->mem_event_rwlock);
504 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
505 mlx5_mr_mem_event_cb, NULL);
506 ret = mlx5_mp_init_primary(MLX5_MP_NAME,
507 mlx5_mp_os_primary_handle);
510 sd->init_done = true;
512 case RTE_PROC_SECONDARY:
515 ret = mlx5_mp_init_secondary(MLX5_MP_NAME,
516 mlx5_mp_os_secondary_handle);
520 ld->init_done = true;
526 rte_spinlock_unlock(&sd->lock);
531 * Create the Tx queue DevX/Verbs object.
534 * Pointer to Ethernet device.
536 * Queue index in DPDK Tx queue array.
539 * 0 on success, a negative errno value otherwise and rte_errno is set.
542 mlx5_os_txq_obj_new(struct rte_eth_dev *dev, uint16_t idx)
544 struct mlx5_priv *priv = dev->data->dev_private;
545 struct mlx5_txq_data *txq_data = (*priv->txqs)[idx];
546 struct mlx5_txq_ctrl *txq_ctrl =
547 container_of(txq_data, struct mlx5_txq_ctrl, txq);
549 if (txq_ctrl->type == MLX5_TXQ_TYPE_HAIRPIN)
550 return mlx5_txq_devx_obj_new(dev, idx);
551 #ifdef HAVE_MLX5DV_DEVX_UAR_OFFSET
552 if (!priv->config.dv_esw_en)
553 return mlx5_txq_devx_obj_new(dev, idx);
555 return mlx5_txq_ibv_obj_new(dev, idx);
559 * Release an Tx DevX/verbs queue object.
562 * DevX/Verbs Tx queue object.
565 mlx5_os_txq_obj_release(struct mlx5_txq_obj *txq_obj)
567 if (txq_obj->txq_ctrl->type == MLX5_TXQ_TYPE_HAIRPIN) {
568 mlx5_txq_devx_obj_release(txq_obj);
571 #ifdef HAVE_MLX5DV_DEVX_UAR_OFFSET
572 if (!txq_obj->txq_ctrl->priv->config.dv_esw_en) {
573 mlx5_txq_devx_obj_release(txq_obj);
577 mlx5_txq_ibv_obj_release(txq_obj);
581 * DV flow counter mode detect and config.
584 * Pointer to rte_eth_dev structure.
588 mlx5_flow_counter_mode_config(struct rte_eth_dev *dev __rte_unused)
590 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
591 struct mlx5_priv *priv = dev->data->dev_private;
592 struct mlx5_dev_ctx_shared *sh = priv->sh;
595 #ifndef HAVE_IBV_DEVX_ASYNC
599 if (!priv->config.devx || !priv->config.dv_flow_en ||
600 !priv->config.hca_attr.flow_counters_dump ||
601 !(priv->config.hca_attr.flow_counter_bulk_alloc_bitmap & 0x4) ||
602 (mlx5_flow_dv_discover_counter_offset_support(dev) == -ENOTSUP))
606 DRV_LOG(INFO, "Use fall-back DV counter management. Flow "
607 "counter dump:%d, bulk_alloc_bitmap:0x%hhx.",
608 priv->config.hca_attr.flow_counters_dump,
609 priv->config.hca_attr.flow_counter_bulk_alloc_bitmap);
610 /* Initialize fallback mode only on the port initializes sh. */
612 sh->cmng.counter_fallback = fallback;
613 else if (fallback != sh->cmng.counter_fallback)
614 DRV_LOG(WARNING, "Port %d in sh has different fallback mode "
615 "with others:%d.", PORT_ID(priv), fallback);
620 * Spawn an Ethernet device from Verbs information.
623 * Backing DPDK device.
625 * Verbs device parameters (name, port, switch_info) to spawn.
627 * Device configuration parameters.
630 * A valid Ethernet device object on success, NULL otherwise and rte_errno
631 * is set. The following errors are defined:
633 * EBUSY: device is not supposed to be spawned.
634 * EEXIST: device is already spawned
636 static struct rte_eth_dev *
637 mlx5_dev_spawn(struct rte_device *dpdk_dev,
638 struct mlx5_dev_spawn_data *spawn,
639 struct mlx5_dev_config *config)
641 const struct mlx5_switch_info *switch_info = &spawn->info;
642 struct mlx5_dev_ctx_shared *sh = NULL;
643 struct ibv_port_attr port_attr;
644 struct mlx5dv_context dv_attr = { .comp_mask = 0 };
645 struct rte_eth_dev *eth_dev = NULL;
646 struct mlx5_priv *priv = NULL;
648 unsigned int hw_padding = 0;
650 unsigned int cqe_comp;
651 unsigned int cqe_pad = 0;
652 unsigned int tunnel_en = 0;
653 unsigned int mpls_en = 0;
654 unsigned int swp = 0;
655 unsigned int mprq = 0;
656 unsigned int mprq_min_stride_size_n = 0;
657 unsigned int mprq_max_stride_size_n = 0;
658 unsigned int mprq_min_stride_num_n = 0;
659 unsigned int mprq_max_stride_num_n = 0;
660 struct rte_ether_addr mac;
661 char name[RTE_ETH_NAME_MAX_LEN];
662 int own_domain_id = 0;
665 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
666 struct mlx5dv_devx_port devx_port = { .comp_mask = 0 };
669 /* Determine if this port representor is supposed to be spawned. */
670 if (switch_info->representor && dpdk_dev->devargs) {
671 struct rte_eth_devargs eth_da;
673 err = rte_eth_devargs_parse(dpdk_dev->devargs->args, ð_da);
676 DRV_LOG(ERR, "failed to process device arguments: %s",
677 strerror(rte_errno));
680 for (i = 0; i < eth_da.nb_representor_ports; ++i)
681 if (eth_da.representor_ports[i] ==
682 (uint16_t)switch_info->port_name)
684 if (i == eth_da.nb_representor_ports) {
689 /* Build device name. */
690 if (spawn->pf_bond < 0) {
692 if (!switch_info->representor)
693 strlcpy(name, dpdk_dev->name, sizeof(name));
695 snprintf(name, sizeof(name), "%s_representor_%u",
696 dpdk_dev->name, switch_info->port_name);
698 /* Bonding device. */
699 if (!switch_info->representor)
700 snprintf(name, sizeof(name), "%s_%s",
702 mlx5_os_get_dev_device_name(spawn->phys_dev));
704 snprintf(name, sizeof(name), "%s_%s_representor_%u",
706 mlx5_os_get_dev_device_name(spawn->phys_dev),
707 switch_info->port_name);
709 /* check if the device is already spawned */
710 if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
714 DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
715 if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
716 struct mlx5_mp_id mp_id;
718 eth_dev = rte_eth_dev_attach_secondary(name);
719 if (eth_dev == NULL) {
720 DRV_LOG(ERR, "can not attach rte ethdev");
724 eth_dev->device = dpdk_dev;
725 eth_dev->dev_ops = &mlx5_os_dev_sec_ops;
726 eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
727 eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
728 err = mlx5_proc_priv_init(eth_dev);
731 mp_id.port_id = eth_dev->data->port_id;
732 strlcpy(mp_id.name, MLX5_MP_NAME, RTE_MP_MAX_NAME_LEN);
733 /* Receive command fd from primary process */
734 err = mlx5_mp_req_verbs_cmd_fd(&mp_id);
737 /* Remap UAR for Tx queues. */
738 err = mlx5_tx_uar_init_secondary(eth_dev, err);
742 * Ethdev pointer is still required as input since
743 * the primary device is not accessible from the
746 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev);
747 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev);
750 mlx5_dev_close(eth_dev);
754 * Some parameters ("tx_db_nc" in particularly) are needed in
755 * advance to create dv/verbs device context. We proceed the
756 * devargs here to get ones, and later proceed devargs again
757 * to override some hardware settings.
759 err = mlx5_args(config, dpdk_dev->devargs);
762 DRV_LOG(ERR, "failed to process device arguments: %s",
763 strerror(rte_errno));
766 if (config->dv_miss_info) {
767 if (switch_info->master || switch_info->representor)
768 config->dv_xmeta_en = MLX5_XMETA_MODE_META16;
770 mlx5_malloc_mem_select(config->sys_mem_en);
771 sh = mlx5_alloc_shared_dev_ctx(spawn, config);
774 config->devx = sh->devx;
775 #ifdef HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR
776 config->dest_tir = 1;
778 #ifdef HAVE_IBV_MLX5_MOD_SWP
779 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
782 * Multi-packet send is supported by ConnectX-4 Lx PF as well
783 * as all ConnectX-5 devices.
785 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
786 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
788 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
789 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
791 mlx5_glue->dv_query_device(sh->ctx, &dv_attr);
792 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
793 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
794 DRV_LOG(DEBUG, "enhanced MPW is supported");
795 mps = MLX5_MPW_ENHANCED;
797 DRV_LOG(DEBUG, "MPW is supported");
801 DRV_LOG(DEBUG, "MPW isn't supported");
802 mps = MLX5_MPW_DISABLED;
804 #ifdef HAVE_IBV_MLX5_MOD_SWP
805 if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
806 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
807 DRV_LOG(DEBUG, "SWP support: %u", swp);
810 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
811 if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
812 struct mlx5dv_striding_rq_caps mprq_caps =
813 dv_attr.striding_rq_caps;
815 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
816 mprq_caps.min_single_stride_log_num_of_bytes);
817 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
818 mprq_caps.max_single_stride_log_num_of_bytes);
819 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
820 mprq_caps.min_single_wqe_log_num_of_strides);
821 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
822 mprq_caps.max_single_wqe_log_num_of_strides);
823 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
824 mprq_caps.supported_qpts);
825 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
827 mprq_min_stride_size_n =
828 mprq_caps.min_single_stride_log_num_of_bytes;
829 mprq_max_stride_size_n =
830 mprq_caps.max_single_stride_log_num_of_bytes;
831 mprq_min_stride_num_n =
832 mprq_caps.min_single_wqe_log_num_of_strides;
833 mprq_max_stride_num_n =
834 mprq_caps.max_single_wqe_log_num_of_strides;
837 if (RTE_CACHE_LINE_SIZE == 128 &&
838 !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
842 config->cqe_comp = cqe_comp;
843 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
844 /* Whether device supports 128B Rx CQE padding. */
845 cqe_pad = RTE_CACHE_LINE_SIZE == 128 &&
846 (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_PAD);
848 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
849 if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
850 tunnel_en = ((dv_attr.tunnel_offloads_caps &
851 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
852 (dv_attr.tunnel_offloads_caps &
853 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE) &&
854 (dv_attr.tunnel_offloads_caps &
855 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GENEVE));
857 DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
858 tunnel_en ? "" : "not ");
861 "tunnel offloading disabled due to old OFED/rdma-core version");
863 config->tunnel_en = tunnel_en;
864 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
865 mpls_en = ((dv_attr.tunnel_offloads_caps &
866 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
867 (dv_attr.tunnel_offloads_caps &
868 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
869 DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
870 mpls_en ? "" : "not ");
872 DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
873 " old OFED/rdma-core version or firmware configuration");
875 config->mpls_en = mpls_en;
876 /* Check port status. */
877 err = mlx5_glue->query_port(sh->ctx, spawn->phys_port, &port_attr);
879 DRV_LOG(ERR, "port query failed: %s", strerror(err));
882 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
883 DRV_LOG(ERR, "port is not configured in Ethernet mode");
887 if (port_attr.state != IBV_PORT_ACTIVE)
888 DRV_LOG(DEBUG, "port is not active: \"%s\" (%d)",
889 mlx5_glue->port_state_str(port_attr.state),
891 /* Allocate private eth device data. */
892 priv = mlx5_malloc(MLX5_MEM_ZERO | MLX5_MEM_RTE,
894 RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
896 DRV_LOG(ERR, "priv allocation failure");
901 priv->dev_port = spawn->phys_port;
902 priv->pci_dev = spawn->pci_dev;
903 priv->mtu = RTE_ETHER_MTU;
904 priv->mp_id.port_id = port_id;
905 strlcpy(priv->mp_id.name, MLX5_MP_NAME, RTE_MP_MAX_NAME_LEN);
906 /* Some internal functions rely on Netlink sockets, open them now. */
907 priv->nl_socket_rdma = mlx5_nl_init(NETLINK_RDMA);
908 priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE);
909 priv->representor = !!switch_info->representor;
910 priv->master = !!switch_info->master;
911 priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
912 priv->vport_meta_tag = 0;
913 priv->vport_meta_mask = 0;
914 priv->pf_bond = spawn->pf_bond;
915 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
917 * The DevX port query API is implemented. E-Switch may use
918 * either vport or reg_c[0] metadata register to match on
919 * vport index. The engaged part of metadata register is
922 if (switch_info->representor || switch_info->master) {
923 devx_port.comp_mask = MLX5DV_DEVX_PORT_VPORT |
924 MLX5DV_DEVX_PORT_MATCH_REG_C_0;
925 err = mlx5_glue->devx_port_query(sh->ctx, spawn->phys_port,
929 "can't query devx port %d on device %s",
931 mlx5_os_get_dev_device_name(spawn->phys_dev));
932 devx_port.comp_mask = 0;
935 if (devx_port.comp_mask & MLX5DV_DEVX_PORT_MATCH_REG_C_0) {
936 priv->vport_meta_tag = devx_port.reg_c_0.value;
937 priv->vport_meta_mask = devx_port.reg_c_0.mask;
938 if (!priv->vport_meta_mask) {
939 DRV_LOG(ERR, "vport zero mask for port %d"
940 " on bonding device %s",
942 mlx5_os_get_dev_device_name
947 if (priv->vport_meta_tag & ~priv->vport_meta_mask) {
948 DRV_LOG(ERR, "invalid vport tag for port %d"
949 " on bonding device %s",
951 mlx5_os_get_dev_device_name
957 if (devx_port.comp_mask & MLX5DV_DEVX_PORT_VPORT) {
958 priv->vport_id = devx_port.vport_num;
959 } else if (spawn->pf_bond >= 0) {
960 DRV_LOG(ERR, "can't deduce vport index for port %d"
961 " on bonding device %s",
963 mlx5_os_get_dev_device_name(spawn->phys_dev));
967 /* Suppose vport index in compatible way. */
968 priv->vport_id = switch_info->representor ?
969 switch_info->port_name + 1 : -1;
973 * Kernel/rdma_core support single E-Switch per PF configurations
974 * only and vport_id field contains the vport index for
975 * associated VF, which is deduced from representor port name.
976 * For example, let's have the IB device port 10, it has
977 * attached network device eth0, which has port name attribute
978 * pf0vf2, we can deduce the VF number as 2, and set vport index
979 * as 3 (2+1). This assigning schema should be changed if the
980 * multiple E-Switch instances per PF configurations or/and PCI
981 * subfunctions are added.
983 priv->vport_id = switch_info->representor ?
984 switch_info->port_name + 1 : -1;
986 /* representor_id field keeps the unmodified VF index. */
987 priv->representor_id = switch_info->representor ?
988 switch_info->port_name : -1;
990 * Look for sibling devices in order to reuse their switch domain
991 * if any, otherwise allocate one.
993 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
994 const struct mlx5_priv *opriv =
995 rte_eth_devices[port_id].data->dev_private;
998 opriv->sh != priv->sh ||
1000 RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
1002 priv->domain_id = opriv->domain_id;
1005 if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
1006 err = rte_eth_switch_domain_alloc(&priv->domain_id);
1009 DRV_LOG(ERR, "unable to allocate switch domain: %s",
1010 strerror(rte_errno));
1015 /* Override some values set by hardware configuration. */
1016 mlx5_args(config, dpdk_dev->devargs);
1017 err = mlx5_dev_check_sibling_config(priv, config);
1020 config->hw_csum = !!(sh->device_attr.device_cap_flags_ex &
1021 IBV_DEVICE_RAW_IP_CSUM);
1022 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
1023 (config->hw_csum ? "" : "not "));
1024 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
1025 !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
1026 DRV_LOG(DEBUG, "counters are not supported");
1028 #if !defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_MLX5DV_DR)
1029 if (config->dv_flow_en) {
1030 DRV_LOG(WARNING, "DV flow is not supported");
1031 config->dv_flow_en = 0;
1034 config->ind_table_max_size =
1035 sh->device_attr.max_rwq_indirection_table_size;
1037 * Remove this check once DPDK supports larger/variable
1038 * indirection tables.
1040 if (config->ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
1041 config->ind_table_max_size = ETH_RSS_RETA_SIZE_512;
1042 DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
1043 config->ind_table_max_size);
1044 config->hw_vlan_strip = !!(sh->device_attr.raw_packet_caps &
1045 IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
1046 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
1047 (config->hw_vlan_strip ? "" : "not "));
1048 config->hw_fcs_strip = !!(sh->device_attr.raw_packet_caps &
1049 IBV_RAW_PACKET_CAP_SCATTER_FCS);
1050 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
1051 hw_padding = !!sh->device_attr.rx_pad_end_addr_align;
1052 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
1053 hw_padding = !!(sh->device_attr.device_cap_flags_ex &
1054 IBV_DEVICE_PCI_WRITE_END_PADDING);
1056 if (config->hw_padding && !hw_padding) {
1057 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
1058 config->hw_padding = 0;
1059 } else if (config->hw_padding) {
1060 DRV_LOG(DEBUG, "Rx end alignment padding is enabled");
1062 config->tso = (sh->device_attr.max_tso > 0 &&
1063 (sh->device_attr.tso_supported_qpts &
1064 (1 << IBV_QPT_RAW_PACKET)));
1066 config->tso_max_payload_sz = sh->device_attr.max_tso;
1068 * MPW is disabled by default, while the Enhanced MPW is enabled
1071 if (config->mps == MLX5_ARG_UNSET)
1072 config->mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED :
1075 config->mps = config->mps ? mps : MLX5_MPW_DISABLED;
1076 DRV_LOG(INFO, "%sMPS is %s",
1077 config->mps == MLX5_MPW_ENHANCED ? "enhanced " :
1078 config->mps == MLX5_MPW ? "legacy " : "",
1079 config->mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
1080 if (config->cqe_comp && !cqe_comp) {
1081 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
1082 config->cqe_comp = 0;
1084 if (config->cqe_pad && !cqe_pad) {
1085 DRV_LOG(WARNING, "Rx CQE padding isn't supported");
1086 config->cqe_pad = 0;
1087 } else if (config->cqe_pad) {
1088 DRV_LOG(INFO, "Rx CQE padding is enabled");
1091 err = mlx5_devx_cmd_query_hca_attr(sh->ctx, &config->hca_attr);
1096 /* Check relax ordering support. */
1097 if (config->hca_attr.relaxed_ordering_write &&
1098 config->hca_attr.relaxed_ordering_read &&
1099 !haswell_broadwell_cpu)
1100 sh->cmng.relaxed_ordering = 1;
1101 /* Check for LRO support. */
1102 if (config->dest_tir && config->hca_attr.lro_cap &&
1103 config->dv_flow_en) {
1104 /* TBD check tunnel lro caps. */
1105 config->lro.supported = config->hca_attr.lro_cap;
1106 DRV_LOG(DEBUG, "Device supports LRO");
1108 * If LRO timeout is not configured by application,
1109 * use the minimal supported value.
1111 if (!config->lro.timeout)
1112 config->lro.timeout =
1113 config->hca_attr.lro_timer_supported_periods[0];
1114 DRV_LOG(DEBUG, "LRO session timeout set to %d usec",
1115 config->lro.timeout);
1116 DRV_LOG(DEBUG, "LRO minimal size of TCP segment "
1117 "required for coalescing is %d bytes",
1118 config->hca_attr.lro_min_mss_size);
1120 #if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER)
1121 if (config->hca_attr.qos.sup &&
1122 config->hca_attr.qos.srtcm_sup &&
1123 config->dv_flow_en) {
1124 uint8_t reg_c_mask =
1125 config->hca_attr.qos.flow_meter_reg_c_ids;
1127 * Meter needs two REG_C's for color match and pre-sfx
1128 * flow match. Here get the REG_C for color match.
1129 * REG_C_0 and REG_C_1 is reserved for metadata feature.
1132 if (__builtin_popcount(reg_c_mask) < 1) {
1134 DRV_LOG(WARNING, "No available register for"
1137 priv->mtr_color_reg = ffs(reg_c_mask) - 1 +
1140 priv->mtr_reg_share =
1141 config->hca_attr.qos.flow_meter_reg_share;
1142 DRV_LOG(DEBUG, "The REG_C meter uses is %d",
1143 priv->mtr_color_reg);
1147 #if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_SAMPLE)
1148 if (config->hca_attr.log_max_ft_sampler_num > 0 &&
1149 config->dv_flow_en) {
1150 priv->sampler_en = 1;
1151 DRV_LOG(DEBUG, "The Sampler enabled!\n");
1153 priv->sampler_en = 0;
1154 if (!config->hca_attr.log_max_ft_sampler_num)
1155 DRV_LOG(WARNING, "No available register for"
1158 DRV_LOG(DEBUG, "DV flow is not supported!\n");
1162 if (config->tx_pp) {
1163 DRV_LOG(DEBUG, "Timestamp counter frequency %u kHz",
1164 config->hca_attr.dev_freq_khz);
1165 DRV_LOG(DEBUG, "Packet pacing is %ssupported",
1166 config->hca_attr.qos.packet_pacing ? "" : "not ");
1167 DRV_LOG(DEBUG, "Cross channel ops are %ssupported",
1168 config->hca_attr.cross_channel ? "" : "not ");
1169 DRV_LOG(DEBUG, "WQE index ignore is %ssupported",
1170 config->hca_attr.wqe_index_ignore ? "" : "not ");
1171 DRV_LOG(DEBUG, "Non-wire SQ feature is %ssupported",
1172 config->hca_attr.non_wire_sq ? "" : "not ");
1173 DRV_LOG(DEBUG, "Static WQE SQ feature is %ssupported (%d)",
1174 config->hca_attr.log_max_static_sq_wq ? "" : "not ",
1175 config->hca_attr.log_max_static_sq_wq);
1176 DRV_LOG(DEBUG, "WQE rate PP mode is %ssupported",
1177 config->hca_attr.qos.wqe_rate_pp ? "" : "not ");
1178 if (!config->devx) {
1179 DRV_LOG(ERR, "DevX is required for packet pacing");
1183 if (!config->hca_attr.qos.packet_pacing) {
1184 DRV_LOG(ERR, "Packet pacing is not supported");
1188 if (!config->hca_attr.cross_channel) {
1189 DRV_LOG(ERR, "Cross channel operations are"
1190 " required for packet pacing");
1194 if (!config->hca_attr.wqe_index_ignore) {
1195 DRV_LOG(ERR, "WQE index ignore feature is"
1196 " required for packet pacing");
1200 if (!config->hca_attr.non_wire_sq) {
1201 DRV_LOG(ERR, "Non-wire SQ feature is"
1202 " required for packet pacing");
1206 if (!config->hca_attr.log_max_static_sq_wq) {
1207 DRV_LOG(ERR, "Static WQE SQ feature is"
1208 " required for packet pacing");
1212 if (!config->hca_attr.qos.wqe_rate_pp) {
1213 DRV_LOG(ERR, "WQE rate mode is required"
1214 " for packet pacing");
1218 #ifndef HAVE_MLX5DV_DEVX_UAR_OFFSET
1219 DRV_LOG(ERR, "DevX does not provide UAR offset,"
1220 " can't create queues for packet pacing");
1226 uint32_t reg[MLX5_ST_SZ_DW(register_mtutc)];
1228 err = config->hca_attr.access_register_user ?
1229 mlx5_devx_cmd_register_read
1230 (sh->ctx, MLX5_REGISTER_ID_MTUTC, 0,
1231 reg, MLX5_ST_SZ_DW(register_mtutc)) : ENOTSUP;
1235 /* MTUTC register is read successfully. */
1236 ts_mode = MLX5_GET(register_mtutc, reg,
1238 if (ts_mode == MLX5_MTUTC_TIMESTAMP_MODE_REAL_TIME)
1239 config->rt_timestamp = 1;
1241 /* Kernel does not support register reading. */
1242 if (config->hca_attr.dev_freq_khz ==
1243 (NS_PER_S / MS_PER_S))
1244 config->rt_timestamp = 1;
1248 * If HW has bug working with tunnel packet decapsulation and
1249 * scatter FCS, and decapsulation is needed, clear the hw_fcs_strip
1250 * bit. Then DEV_RX_OFFLOAD_KEEP_CRC bit will not be set anymore.
1252 if (config->hca_attr.scatter_fcs_w_decap_disable && config->decap_en)
1253 config->hw_fcs_strip = 0;
1254 DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
1255 (config->hw_fcs_strip ? "" : "not "));
1256 if (config->mprq.enabled && mprq) {
1257 if (config->mprq.stride_num_n &&
1258 (config->mprq.stride_num_n > mprq_max_stride_num_n ||
1259 config->mprq.stride_num_n < mprq_min_stride_num_n)) {
1260 config->mprq.stride_num_n =
1261 RTE_MIN(RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1262 mprq_min_stride_num_n),
1263 mprq_max_stride_num_n);
1265 "the number of strides"
1266 " for Multi-Packet RQ is out of range,"
1267 " setting default value (%u)",
1268 1 << config->mprq.stride_num_n);
1270 if (config->mprq.stride_size_n &&
1271 (config->mprq.stride_size_n > mprq_max_stride_size_n ||
1272 config->mprq.stride_size_n < mprq_min_stride_size_n)) {
1273 config->mprq.stride_size_n =
1274 RTE_MIN(RTE_MAX(MLX5_MPRQ_STRIDE_SIZE_N,
1275 mprq_min_stride_size_n),
1276 mprq_max_stride_size_n);
1278 "the size of a stride"
1279 " for Multi-Packet RQ is out of range,"
1280 " setting default value (%u)",
1281 1 << config->mprq.stride_size_n);
1283 config->mprq.min_stride_size_n = mprq_min_stride_size_n;
1284 config->mprq.max_stride_size_n = mprq_max_stride_size_n;
1285 } else if (config->mprq.enabled && !mprq) {
1286 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
1287 config->mprq.enabled = 0;
1289 if (config->max_dump_files_num == 0)
1290 config->max_dump_files_num = 128;
1291 eth_dev = rte_eth_dev_allocate(name);
1292 if (eth_dev == NULL) {
1293 DRV_LOG(ERR, "can not allocate rte ethdev");
1297 if (priv->representor) {
1298 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
1299 eth_dev->data->representor_id = priv->representor_id;
1302 * Store associated network device interface index. This index
1303 * is permanent throughout the lifetime of device. So, we may store
1304 * the ifindex here and use the cached value further.
1306 MLX5_ASSERT(spawn->ifindex);
1307 priv->if_index = spawn->ifindex;
1308 if (priv->pf_bond >= 0 && priv->master) {
1309 /* Get bond interface info */
1310 err = mlx5_sysfs_bond_info(priv->if_index,
1311 &priv->bond_ifindex,
1314 DRV_LOG(ERR, "unable to get bond info: %s",
1315 strerror(rte_errno));
1317 DRV_LOG(INFO, "PF device %u, bond device %u(%s)",
1318 priv->if_index, priv->bond_ifindex,
1321 eth_dev->data->dev_private = priv;
1322 priv->dev_data = eth_dev->data;
1323 eth_dev->data->mac_addrs = priv->mac;
1324 eth_dev->device = dpdk_dev;
1325 eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
1326 /* Configure the first MAC address by default. */
1327 if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
1329 "port %u cannot get MAC address, is mlx5_en"
1330 " loaded? (errno: %s)",
1331 eth_dev->data->port_id, strerror(rte_errno));
1336 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
1337 eth_dev->data->port_id,
1338 mac.addr_bytes[0], mac.addr_bytes[1],
1339 mac.addr_bytes[2], mac.addr_bytes[3],
1340 mac.addr_bytes[4], mac.addr_bytes[5]);
1341 #ifdef RTE_LIBRTE_MLX5_DEBUG
1343 char ifname[IF_NAMESIZE];
1345 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
1346 DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
1347 eth_dev->data->port_id, ifname);
1349 DRV_LOG(DEBUG, "port %u ifname is unknown",
1350 eth_dev->data->port_id);
1353 /* Get actual MTU if possible. */
1354 err = mlx5_get_mtu(eth_dev, &priv->mtu);
1359 DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1361 /* Initialize burst functions to prevent crashes before link-up. */
1362 eth_dev->rx_pkt_burst = removed_rx_burst;
1363 eth_dev->tx_pkt_burst = removed_tx_burst;
1364 eth_dev->dev_ops = &mlx5_os_dev_ops;
1365 eth_dev->rx_descriptor_status = mlx5_rx_descriptor_status;
1366 eth_dev->tx_descriptor_status = mlx5_tx_descriptor_status;
1367 eth_dev->rx_queue_count = mlx5_rx_queue_count;
1368 /* Register MAC address. */
1369 claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1370 if (config->vf && config->vf_nl_en)
1371 mlx5_nl_mac_addr_sync(priv->nl_socket_route,
1372 mlx5_ifindex(eth_dev),
1373 eth_dev->data->mac_addrs,
1374 MLX5_MAX_MAC_ADDRESSES);
1376 priv->ctrl_flows = 0;
1377 rte_spinlock_init(&priv->flow_list_lock);
1378 TAILQ_INIT(&priv->flow_meters);
1379 TAILQ_INIT(&priv->flow_meter_profiles);
1380 /* Hint libmlx5 to use PMD allocator for data plane resources */
1381 mlx5_glue->dv_set_context_attr(sh->ctx,
1382 MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1383 (void *)((uintptr_t)&(struct mlx5dv_ctx_allocators){
1384 .alloc = &mlx5_alloc_verbs_buf,
1385 .free = &mlx5_free_verbs_buf,
1388 /* Bring Ethernet device up. */
1389 DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1390 eth_dev->data->port_id);
1391 mlx5_set_link_up(eth_dev);
1393 * Even though the interrupt handler is not installed yet,
1394 * interrupts will still trigger on the async_fd from
1395 * Verbs context returned by ibv_open_device().
1397 mlx5_link_update(eth_dev, 0);
1398 #ifdef HAVE_MLX5DV_DR_ESWITCH
1399 if (!(config->hca_attr.eswitch_manager && config->dv_flow_en &&
1400 (switch_info->representor || switch_info->master)))
1401 config->dv_esw_en = 0;
1403 config->dv_esw_en = 0;
1405 /* Detect minimal data bytes to inline. */
1406 mlx5_set_min_inline(spawn, config);
1407 /* Store device configuration on private structure. */
1408 priv->config = *config;
1409 /* Create context for virtual machine VLAN workaround. */
1410 priv->vmwa_context = mlx5_vlan_vmwa_init(eth_dev, spawn->ifindex);
1411 if (config->dv_flow_en) {
1412 err = mlx5_alloc_shared_dr(priv);
1416 if (config->devx && config->dv_flow_en && config->dest_tir) {
1417 priv->obj_ops = devx_obj_ops;
1418 priv->obj_ops.drop_action_create =
1419 ibv_obj_ops.drop_action_create;
1420 priv->obj_ops.drop_action_destroy =
1421 ibv_obj_ops.drop_action_destroy;
1422 #ifndef HAVE_MLX5DV_DEVX_UAR_OFFSET
1423 priv->obj_ops.txq_obj_modify = ibv_obj_ops.txq_obj_modify;
1425 if (config->dv_esw_en)
1426 priv->obj_ops.txq_obj_modify =
1427 ibv_obj_ops.txq_obj_modify;
1429 /* Use specific wrappers for Tx object. */
1430 priv->obj_ops.txq_obj_new = mlx5_os_txq_obj_new;
1431 priv->obj_ops.txq_obj_release = mlx5_os_txq_obj_release;
1434 priv->obj_ops = ibv_obj_ops;
1436 priv->drop_queue.hrxq = mlx5_drop_action_create(eth_dev);
1437 if (!priv->drop_queue.hrxq)
1439 /* Supported Verbs flow priority number detection. */
1440 err = mlx5_flow_discover_priorities(eth_dev);
1445 priv->config.flow_prio = err;
1446 if (!priv->config.dv_esw_en &&
1447 priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
1448 DRV_LOG(WARNING, "metadata mode %u is not supported "
1449 "(no E-Switch)", priv->config.dv_xmeta_en);
1450 priv->config.dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
1452 mlx5_set_metadata_mask(eth_dev);
1453 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
1454 !priv->sh->dv_regc0_mask) {
1455 DRV_LOG(ERR, "metadata mode %u is not supported "
1456 "(no metadata reg_c[0] is available)",
1457 priv->config.dv_xmeta_en);
1461 /* Query availability of metadata reg_c's. */
1462 err = mlx5_flow_discover_mreg_c(eth_dev);
1467 if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
1469 "port %u extensive metadata register is not supported",
1470 eth_dev->data->port_id);
1471 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
1472 DRV_LOG(ERR, "metadata mode %u is not supported "
1473 "(no metadata registers available)",
1474 priv->config.dv_xmeta_en);
1479 if (priv->config.dv_flow_en &&
1480 priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
1481 mlx5_flow_ext_mreg_supported(eth_dev) &&
1482 priv->sh->dv_regc0_mask) {
1483 priv->mreg_cp_tbl = mlx5_hlist_create(MLX5_FLOW_MREG_HNAME,
1484 MLX5_FLOW_MREG_HTABLE_SZ,
1487 if (!priv->mreg_cp_tbl) {
1492 mlx5_flow_counter_mode_config(eth_dev);
1496 if (priv->mreg_cp_tbl)
1497 mlx5_hlist_destroy(priv->mreg_cp_tbl);
1499 mlx5_os_free_shared_dr(priv);
1500 if (priv->nl_socket_route >= 0)
1501 close(priv->nl_socket_route);
1502 if (priv->nl_socket_rdma >= 0)
1503 close(priv->nl_socket_rdma);
1504 if (priv->vmwa_context)
1505 mlx5_vlan_vmwa_exit(priv->vmwa_context);
1506 if (eth_dev && priv->drop_queue.hrxq)
1507 mlx5_drop_action_destroy(eth_dev);
1509 claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1511 if (eth_dev != NULL)
1512 eth_dev->data->dev_private = NULL;
1514 if (eth_dev != NULL) {
1515 /* mac_addrs must not be freed alone because part of
1518 eth_dev->data->mac_addrs = NULL;
1519 rte_eth_dev_release_port(eth_dev);
1522 mlx5_free_shared_dev_ctx(sh);
1523 MLX5_ASSERT(err > 0);
1529 * Comparison callback to sort device data.
1531 * This is meant to be used with qsort().
1534 * Pointer to pointer to first data object.
1536 * Pointer to pointer to second data object.
1539 * 0 if both objects are equal, less than 0 if the first argument is less
1540 * than the second, greater than 0 otherwise.
1543 mlx5_dev_spawn_data_cmp(const void *a, const void *b)
1545 const struct mlx5_switch_info *si_a =
1546 &((const struct mlx5_dev_spawn_data *)a)->info;
1547 const struct mlx5_switch_info *si_b =
1548 &((const struct mlx5_dev_spawn_data *)b)->info;
1551 /* Master device first. */
1552 ret = si_b->master - si_a->master;
1555 /* Then representor devices. */
1556 ret = si_b->representor - si_a->representor;
1559 /* Unidentified devices come last in no specific order. */
1560 if (!si_a->representor)
1562 /* Order representors by name. */
1563 return si_a->port_name - si_b->port_name;
1567 * Match PCI information for possible slaves of bonding device.
1569 * @param[in] ibv_dev
1570 * Pointer to Infiniband device structure.
1571 * @param[in] pci_dev
1572 * Pointer to PCI device structure to match PCI address.
1573 * @param[in] nl_rdma
1574 * Netlink RDMA group socket handle.
1577 * negative value if no bonding device found, otherwise
1578 * positive index of slave PF in bonding.
1581 mlx5_device_bond_pci_match(const struct ibv_device *ibv_dev,
1582 const struct rte_pci_device *pci_dev,
1585 char ifname[IF_NAMESIZE + 1];
1586 unsigned int ifindex;
1592 * Try to get master device name. If something goes
1593 * wrong suppose the lack of kernel support and no
1598 if (!strstr(ibv_dev->name, "bond"))
1600 np = mlx5_nl_portnum(nl_rdma, ibv_dev->name);
1604 * The Master device might not be on the predefined
1605 * port (not on port index 1, it is not garanted),
1606 * we have to scan all Infiniband device port and
1609 for (i = 1; i <= np; ++i) {
1610 /* Check whether Infiniband port is populated. */
1611 ifindex = mlx5_nl_ifindex(nl_rdma, ibv_dev->name, i);
1614 if (!if_indextoname(ifindex, ifname))
1616 /* Try to read bonding slave names from sysfs. */
1618 "/sys/class/net/%s/master/bonding/slaves", ifname);
1619 file = fopen(slaves, "r");
1625 /* Use safe format to check maximal buffer length. */
1626 MLX5_ASSERT(atol(RTE_STR(IF_NAMESIZE)) == IF_NAMESIZE);
1627 while (fscanf(file, "%" RTE_STR(IF_NAMESIZE) "s", ifname) == 1) {
1628 char tmp_str[IF_NAMESIZE + 32];
1629 struct rte_pci_addr pci_addr;
1630 struct mlx5_switch_info info;
1632 /* Process slave interface names in the loop. */
1633 snprintf(tmp_str, sizeof(tmp_str),
1634 "/sys/class/net/%s", ifname);
1635 if (mlx5_dev_to_pci_addr(tmp_str, &pci_addr)) {
1636 DRV_LOG(WARNING, "can not get PCI address"
1637 " for netdev \"%s\"", ifname);
1640 if (pci_dev->addr.domain != pci_addr.domain ||
1641 pci_dev->addr.bus != pci_addr.bus ||
1642 pci_dev->addr.devid != pci_addr.devid ||
1643 pci_dev->addr.function != pci_addr.function)
1645 /* Slave interface PCI address match found. */
1647 snprintf(tmp_str, sizeof(tmp_str),
1648 "/sys/class/net/%s/phys_port_name", ifname);
1649 file = fopen(tmp_str, "rb");
1652 info.name_type = MLX5_PHYS_PORT_NAME_TYPE_NOTSET;
1653 if (fscanf(file, "%32s", tmp_str) == 1)
1654 mlx5_translate_port_name(tmp_str, &info);
1655 if (info.name_type == MLX5_PHYS_PORT_NAME_TYPE_LEGACY ||
1656 info.name_type == MLX5_PHYS_PORT_NAME_TYPE_UPLINK)
1657 pf = info.port_name;
1666 * DPDK callback to register a PCI device.
1668 * This function spawns Ethernet devices out of a given PCI device.
1670 * @param[in] pci_drv
1671 * PCI driver structure (mlx5_driver).
1672 * @param[in] pci_dev
1673 * PCI device information.
1676 * 0 on success, a negative errno value otherwise and rte_errno is set.
1679 mlx5_os_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1680 struct rte_pci_device *pci_dev)
1682 struct ibv_device **ibv_list;
1684 * Number of found IB Devices matching with requested PCI BDF.
1685 * nd != 1 means there are multiple IB devices over the same
1686 * PCI device and we have representors and master.
1688 unsigned int nd = 0;
1690 * Number of found IB device Ports. nd = 1 and np = 1..n means
1691 * we have the single multiport IB device, and there may be
1692 * representors attached to some of found ports.
1694 unsigned int np = 0;
1696 * Number of DPDK ethernet devices to Spawn - either over
1697 * multiple IB devices or multiple ports of single IB device.
1698 * Actually this is the number of iterations to spawn.
1700 unsigned int ns = 0;
1703 * < 0 - no bonding device (single one)
1704 * >= 0 - bonding device (value is slave PF index)
1707 struct mlx5_dev_spawn_data *list = NULL;
1708 struct mlx5_dev_config dev_config;
1709 unsigned int dev_config_vf;
1712 if (rte_eal_process_type() == RTE_PROC_PRIMARY)
1713 mlx5_pmd_socket_init();
1714 ret = mlx5_init_once();
1716 DRV_LOG(ERR, "unable to init PMD global data: %s",
1717 strerror(rte_errno));
1721 ibv_list = mlx5_glue->get_device_list(&ret);
1723 rte_errno = errno ? errno : ENOSYS;
1724 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
1728 * First scan the list of all Infiniband devices to find
1729 * matching ones, gathering into the list.
1731 struct ibv_device *ibv_match[ret + 1];
1732 int nl_route = mlx5_nl_init(NETLINK_ROUTE);
1733 int nl_rdma = mlx5_nl_init(NETLINK_RDMA);
1737 struct rte_pci_addr pci_addr;
1739 DRV_LOG(DEBUG, "checking device \"%s\"", ibv_list[ret]->name);
1740 bd = mlx5_device_bond_pci_match
1741 (ibv_list[ret], pci_dev, nl_rdma);
1744 * Bonding device detected. Only one match is allowed,
1745 * the bonding is supported over multi-port IB device,
1746 * there should be no matches on representor PCI
1747 * functions or non VF LAG bonding devices with
1748 * specified address.
1752 "multiple PCI match on bonding device"
1753 "\"%s\" found", ibv_list[ret]->name);
1758 DRV_LOG(INFO, "PCI information matches for"
1759 " slave %d bonding device \"%s\"",
1760 bd, ibv_list[ret]->name);
1761 ibv_match[nd++] = ibv_list[ret];
1764 if (mlx5_dev_to_pci_addr
1765 (ibv_list[ret]->ibdev_path, &pci_addr))
1767 if (pci_dev->addr.domain != pci_addr.domain ||
1768 pci_dev->addr.bus != pci_addr.bus ||
1769 pci_dev->addr.devid != pci_addr.devid ||
1770 pci_dev->addr.function != pci_addr.function)
1772 DRV_LOG(INFO, "PCI information matches for device \"%s\"",
1773 ibv_list[ret]->name);
1774 ibv_match[nd++] = ibv_list[ret];
1776 ibv_match[nd] = NULL;
1778 /* No device matches, just complain and bail out. */
1780 "no Verbs device matches PCI device " PCI_PRI_FMT ","
1781 " are kernel drivers loaded?",
1782 pci_dev->addr.domain, pci_dev->addr.bus,
1783 pci_dev->addr.devid, pci_dev->addr.function);
1790 * Found single matching device may have multiple ports.
1791 * Each port may be representor, we have to check the port
1792 * number and check the representors existence.
1795 np = mlx5_nl_portnum(nl_rdma, ibv_match[0]->name);
1797 DRV_LOG(WARNING, "can not get IB device \"%s\""
1798 " ports number", ibv_match[0]->name);
1799 if (bd >= 0 && !np) {
1800 DRV_LOG(ERR, "can not get ports"
1801 " for bonding device");
1807 #ifndef HAVE_MLX5DV_DR_DEVX_PORT
1810 * This may happen if there is VF LAG kernel support and
1811 * application is compiled with older rdma_core library.
1814 "No kernel/verbs support for VF LAG bonding found.");
1815 rte_errno = ENOTSUP;
1821 * Now we can determine the maximal
1822 * amount of devices to be spawned.
1824 list = mlx5_malloc(MLX5_MEM_ZERO,
1825 sizeof(struct mlx5_dev_spawn_data) *
1827 RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
1829 DRV_LOG(ERR, "spawn data array allocation failure");
1834 if (bd >= 0 || np > 1) {
1836 * Single IB device with multiple ports found,
1837 * it may be E-Switch master device and representors.
1838 * We have to perform identification through the ports.
1840 MLX5_ASSERT(nl_rdma >= 0);
1841 MLX5_ASSERT(ns == 0);
1842 MLX5_ASSERT(nd == 1);
1844 for (i = 1; i <= np; ++i) {
1845 list[ns].max_port = np;
1846 list[ns].phys_port = i;
1847 list[ns].phys_dev = ibv_match[0];
1848 list[ns].eth_dev = NULL;
1849 list[ns].pci_dev = pci_dev;
1850 list[ns].pf_bond = bd;
1851 list[ns].ifindex = mlx5_nl_ifindex
1853 mlx5_os_get_dev_device_name
1854 (list[ns].phys_dev), i);
1855 if (!list[ns].ifindex) {
1857 * No network interface index found for the
1858 * specified port, it means there is no
1859 * representor on this port. It's OK,
1860 * there can be disabled ports, for example
1861 * if sriov_numvfs < sriov_totalvfs.
1867 ret = mlx5_nl_switch_info
1871 if (ret || (!list[ns].info.representor &&
1872 !list[ns].info.master)) {
1874 * We failed to recognize representors with
1875 * Netlink, let's try to perform the task
1878 ret = mlx5_sysfs_switch_info
1882 if (!ret && bd >= 0) {
1883 switch (list[ns].info.name_type) {
1884 case MLX5_PHYS_PORT_NAME_TYPE_UPLINK:
1885 if (list[ns].info.port_name == bd)
1888 case MLX5_PHYS_PORT_NAME_TYPE_PFHPF:
1890 case MLX5_PHYS_PORT_NAME_TYPE_PFVF:
1891 if (list[ns].info.pf_num == bd)
1899 if (!ret && (list[ns].info.representor ^
1900 list[ns].info.master))
1905 "unable to recognize master/representors"
1906 " on the IB device with multiple ports");
1913 * The existence of several matching entries (nd > 1) means
1914 * port representors have been instantiated. No existing Verbs
1915 * call nor sysfs entries can tell them apart, this can only
1916 * be done through Netlink calls assuming kernel drivers are
1917 * recent enough to support them.
1919 * In the event of identification failure through Netlink,
1920 * try again through sysfs, then:
1922 * 1. A single IB device matches (nd == 1) with single
1923 * port (np=0/1) and is not a representor, assume
1924 * no switch support.
1926 * 2. Otherwise no safe assumptions can be made;
1927 * complain louder and bail out.
1929 for (i = 0; i != nd; ++i) {
1930 memset(&list[ns].info, 0, sizeof(list[ns].info));
1931 list[ns].max_port = 1;
1932 list[ns].phys_port = 1;
1933 list[ns].phys_dev = ibv_match[i];
1934 list[ns].eth_dev = NULL;
1935 list[ns].pci_dev = pci_dev;
1936 list[ns].pf_bond = -1;
1937 list[ns].ifindex = 0;
1939 list[ns].ifindex = mlx5_nl_ifindex
1941 mlx5_os_get_dev_device_name
1942 (list[ns].phys_dev), 1);
1943 if (!list[ns].ifindex) {
1944 char ifname[IF_NAMESIZE];
1947 * Netlink failed, it may happen with old
1948 * ib_core kernel driver (before 4.16).
1949 * We can assume there is old driver because
1950 * here we are processing single ports IB
1951 * devices. Let's try sysfs to retrieve
1952 * the ifindex. The method works for
1953 * master device only.
1957 * Multiple devices found, assume
1958 * representors, can not distinguish
1959 * master/representor and retrieve
1960 * ifindex via sysfs.
1964 ret = mlx5_get_ifname_sysfs
1965 (ibv_match[i]->ibdev_path, ifname);
1968 if_nametoindex(ifname);
1969 if (!list[ns].ifindex) {
1971 * No network interface index found
1972 * for the specified device, it means
1973 * there it is neither representor
1981 ret = mlx5_nl_switch_info
1985 if (ret || (!list[ns].info.representor &&
1986 !list[ns].info.master)) {
1988 * We failed to recognize representors with
1989 * Netlink, let's try to perform the task
1992 ret = mlx5_sysfs_switch_info
1996 if (!ret && (list[ns].info.representor ^
1997 list[ns].info.master)) {
1999 } else if ((nd == 1) &&
2000 !list[ns].info.representor &&
2001 !list[ns].info.master) {
2003 * Single IB device with
2004 * one physical port and
2005 * attached network device.
2006 * May be SRIOV is not enabled
2007 * or there is no representors.
2009 DRV_LOG(INFO, "no E-Switch support detected");
2016 "unable to recognize master/representors"
2017 " on the multiple IB devices");
2025 * Sort list to probe devices in natural order for users convenience
2026 * (i.e. master first, then representors from lowest to highest ID).
2028 qsort(list, ns, sizeof(*list), mlx5_dev_spawn_data_cmp);
2029 /* Device specific configuration. */
2030 switch (pci_dev->id.device_id) {
2031 case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
2032 case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
2033 case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
2034 case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
2035 case PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF:
2036 case PCI_DEVICE_ID_MELLANOX_CONNECTX6VF:
2037 case PCI_DEVICE_ID_MELLANOX_CONNECTX6DXVF:
2044 for (i = 0; i != ns; ++i) {
2047 /* Default configuration. */
2048 memset(&dev_config, 0, sizeof(struct mlx5_dev_config));
2049 dev_config.vf = dev_config_vf;
2050 dev_config.mps = MLX5_ARG_UNSET;
2051 dev_config.dbnc = MLX5_ARG_UNSET;
2052 dev_config.rx_vec_en = 1;
2053 dev_config.txq_inline_max = MLX5_ARG_UNSET;
2054 dev_config.txq_inline_min = MLX5_ARG_UNSET;
2055 dev_config.txq_inline_mpw = MLX5_ARG_UNSET;
2056 dev_config.txqs_inline = MLX5_ARG_UNSET;
2057 dev_config.vf_nl_en = 1;
2058 dev_config.mr_ext_memseg_en = 1;
2059 dev_config.mprq.max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN;
2060 dev_config.mprq.min_rxqs_num = MLX5_MPRQ_MIN_RXQS;
2061 dev_config.dv_esw_en = 1;
2062 dev_config.dv_flow_en = 1;
2063 dev_config.decap_en = 1;
2064 dev_config.log_hp_size = MLX5_ARG_UNSET;
2065 list[i].eth_dev = mlx5_dev_spawn(&pci_dev->device,
2068 if (!list[i].eth_dev) {
2069 if (rte_errno != EBUSY && rte_errno != EEXIST)
2071 /* Device is disabled or already spawned. Ignore it. */
2074 restore = list[i].eth_dev->data->dev_flags;
2075 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev);
2076 /* Restore non-PCI flags cleared by the above call. */
2077 list[i].eth_dev->data->dev_flags |= restore;
2078 rte_eth_dev_probing_finish(list[i].eth_dev);
2082 "probe of PCI device " PCI_PRI_FMT " aborted after"
2083 " encountering an error: %s",
2084 pci_dev->addr.domain, pci_dev->addr.bus,
2085 pci_dev->addr.devid, pci_dev->addr.function,
2086 strerror(rte_errno));
2090 if (!list[i].eth_dev)
2092 mlx5_dev_close(list[i].eth_dev);
2093 /* mac_addrs must not be freed because in dev_private */
2094 list[i].eth_dev->data->mac_addrs = NULL;
2095 claim_zero(rte_eth_dev_release_port(list[i].eth_dev));
2097 /* Restore original error. */
2104 * Do the routine cleanup:
2105 * - close opened Netlink sockets
2106 * - free allocated spawn data array
2107 * - free the Infiniband device list
2115 MLX5_ASSERT(ibv_list);
2116 mlx5_glue->free_device_list(ibv_list);
2121 mlx5_config_doorbell_mapping_env(const struct mlx5_dev_config *config)
2126 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
2127 /* Get environment variable to store. */
2128 env = getenv(MLX5_SHUT_UP_BF);
2129 value = env ? !!strcmp(env, "0") : MLX5_ARG_UNSET;
2130 if (config->dbnc == MLX5_ARG_UNSET)
2131 setenv(MLX5_SHUT_UP_BF, MLX5_SHUT_UP_BF_DEFAULT, 1);
2133 setenv(MLX5_SHUT_UP_BF,
2134 config->dbnc == MLX5_TXDB_NCACHED ? "1" : "0", 1);
2139 mlx5_restore_doorbell_mapping_env(int value)
2141 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
2142 /* Restore the original environment variable state. */
2143 if (value == MLX5_ARG_UNSET)
2144 unsetenv(MLX5_SHUT_UP_BF);
2146 setenv(MLX5_SHUT_UP_BF, value ? "1" : "0", 1);
2150 * Extract pdn of PD object using DV API.
2153 * Pointer to the verbs PD object.
2155 * Pointer to the PD object number variable.
2158 * 0 on success, error value otherwise.
2161 mlx5_os_get_pdn(void *pd, uint32_t *pdn)
2163 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
2164 struct mlx5dv_obj obj;
2165 struct mlx5dv_pd pd_info;
2169 obj.pd.out = &pd_info;
2170 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_PD);
2172 DRV_LOG(DEBUG, "Fail to get PD object info");
2181 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */
2185 * Function API to open IB device.
2187 * This function calls the Linux glue APIs to open a device.
2190 * Pointer to the IB device attributes (name, port, etc).
2191 * @param[out] config
2192 * Pointer to device configuration structure.
2194 * Pointer to shared context structure.
2197 * 0 on success, a positive error value otherwise.
2200 mlx5_os_open_device(const struct mlx5_dev_spawn_data *spawn,
2201 const struct mlx5_dev_config *config,
2202 struct mlx5_dev_ctx_shared *sh)
2207 sh->numa_node = spawn->pci_dev->device.numa_node;
2208 pthread_mutex_init(&sh->txpp.mutex, NULL);
2210 * Configure environment variable "MLX5_BF_SHUT_UP"
2211 * before the device creation. The rdma_core library
2212 * checks the variable at device creation and
2213 * stores the result internally.
2215 dbmap_env = mlx5_config_doorbell_mapping_env(config);
2216 /* Try to open IB device with DV first, then usual Verbs. */
2218 sh->ctx = mlx5_glue->dv_open_device(spawn->phys_dev);
2221 DRV_LOG(DEBUG, "DevX is supported");
2222 /* The device is created, no need for environment. */
2223 mlx5_restore_doorbell_mapping_env(dbmap_env);
2225 /* The environment variable is still configured. */
2226 sh->ctx = mlx5_glue->open_device(spawn->phys_dev);
2227 err = errno ? errno : ENODEV;
2229 * The environment variable is not needed anymore,
2230 * all device creation attempts are completed.
2232 mlx5_restore_doorbell_mapping_env(dbmap_env);
2235 DRV_LOG(DEBUG, "DevX is NOT supported");
2242 * Install shared asynchronous device events handler.
2243 * This function is implemented to support event sharing
2244 * between multiple ports of single IB device.
2247 * Pointer to mlx5_dev_ctx_shared object.
2250 mlx5_os_dev_shared_handler_install(struct mlx5_dev_ctx_shared *sh)
2255 sh->intr_handle.fd = -1;
2256 flags = fcntl(((struct ibv_context *)sh->ctx)->async_fd, F_GETFL);
2257 ret = fcntl(((struct ibv_context *)sh->ctx)->async_fd,
2258 F_SETFL, flags | O_NONBLOCK);
2260 DRV_LOG(INFO, "failed to change file descriptor async event"
2263 sh->intr_handle.fd = ((struct ibv_context *)sh->ctx)->async_fd;
2264 sh->intr_handle.type = RTE_INTR_HANDLE_EXT;
2265 if (rte_intr_callback_register(&sh->intr_handle,
2266 mlx5_dev_interrupt_handler, sh)) {
2267 DRV_LOG(INFO, "Fail to install the shared interrupt.");
2268 sh->intr_handle.fd = -1;
2272 #ifdef HAVE_IBV_DEVX_ASYNC
2273 sh->intr_handle_devx.fd = -1;
2275 (void *)mlx5_glue->devx_create_cmd_comp(sh->ctx);
2276 struct mlx5dv_devx_cmd_comp *devx_comp = sh->devx_comp;
2278 DRV_LOG(INFO, "failed to allocate devx_comp.");
2281 flags = fcntl(devx_comp->fd, F_GETFL);
2282 ret = fcntl(devx_comp->fd, F_SETFL, flags | O_NONBLOCK);
2284 DRV_LOG(INFO, "failed to change file descriptor"
2288 sh->intr_handle_devx.fd = devx_comp->fd;
2289 sh->intr_handle_devx.type = RTE_INTR_HANDLE_EXT;
2290 if (rte_intr_callback_register(&sh->intr_handle_devx,
2291 mlx5_dev_interrupt_handler_devx, sh)) {
2292 DRV_LOG(INFO, "Fail to install the devx shared"
2294 sh->intr_handle_devx.fd = -1;
2296 #endif /* HAVE_IBV_DEVX_ASYNC */
2301 * Uninstall shared asynchronous device events handler.
2302 * This function is implemented to support event sharing
2303 * between multiple ports of single IB device.
2306 * Pointer to mlx5_dev_ctx_shared object.
2309 mlx5_os_dev_shared_handler_uninstall(struct mlx5_dev_ctx_shared *sh)
2311 if (sh->intr_handle.fd >= 0)
2312 mlx5_intr_callback_unregister(&sh->intr_handle,
2313 mlx5_dev_interrupt_handler, sh);
2314 #ifdef HAVE_IBV_DEVX_ASYNC
2315 if (sh->intr_handle_devx.fd >= 0)
2316 rte_intr_callback_unregister(&sh->intr_handle_devx,
2317 mlx5_dev_interrupt_handler_devx, sh);
2319 mlx5_glue->devx_destroy_cmd_comp(sh->devx_comp);
2324 * Read statistics by a named counter.
2327 * Pointer to the private device data structure.
2328 * @param[in] ctr_name
2329 * Pointer to the name of the statistic counter to read
2331 * Pointer to read statistic value.
2333 * 0 on success and stat is valud, 1 if failed to read the value
2338 mlx5_os_read_dev_stat(struct mlx5_priv *priv, const char *ctr_name,
2344 MKSTR(path, "%s/ports/%d/hw_counters/%s",
2345 priv->sh->ibdev_path,
2348 fd = open(path, O_RDONLY);
2350 * in switchdev the file location is not per port
2351 * but rather in <ibdev_path>/hw_counters/<file_name>.
2354 MKSTR(path1, "%s/hw_counters/%s",
2355 priv->sh->ibdev_path,
2357 fd = open(path1, O_RDONLY);
2360 char buf[21] = {'\0'};
2361 ssize_t n = read(fd, buf, sizeof(buf));
2365 *stat = strtoull(buf, NULL, 10);
2375 * Set the reg_mr and dereg_mr call backs
2377 * @param reg_mr_cb[out]
2378 * Pointer to reg_mr func
2379 * @param dereg_mr_cb[out]
2380 * Pointer to dereg_mr func
2384 mlx5_os_set_reg_mr_cb(mlx5_reg_mr_t *reg_mr_cb,
2385 mlx5_dereg_mr_t *dereg_mr_cb)
2387 *reg_mr_cb = mlx5_verbs_ops.reg_mr;
2388 *dereg_mr_cb = mlx5_verbs_ops.dereg_mr;
2392 * Remove a MAC address from device
2395 * Pointer to Ethernet device structure.
2397 * MAC address index.
2400 mlx5_os_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
2402 struct mlx5_priv *priv = dev->data->dev_private;
2403 const int vf = priv->config.vf;
2406 mlx5_nl_mac_addr_remove(priv->nl_socket_route,
2407 mlx5_ifindex(dev), priv->mac_own,
2408 &dev->data->mac_addrs[index], index);
2412 * Adds a MAC address to the device
2415 * Pointer to Ethernet device structure.
2417 * MAC address to register.
2419 * MAC address index.
2422 * 0 on success, a negative errno value otherwise
2425 mlx5_os_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac,
2428 struct mlx5_priv *priv = dev->data->dev_private;
2429 const int vf = priv->config.vf;
2433 ret = mlx5_nl_mac_addr_add(priv->nl_socket_route,
2434 mlx5_ifindex(dev), priv->mac_own,
2440 * Modify a VF MAC address
2443 * Pointer to device private data.
2445 * MAC address to modify into.
2447 * Net device interface index
2452 * 0 on success, a negative errno value otherwise
2455 mlx5_os_vf_mac_addr_modify(struct mlx5_priv *priv,
2456 unsigned int iface_idx,
2457 struct rte_ether_addr *mac_addr,
2460 return mlx5_nl_vf_mac_addr_modify
2461 (priv->nl_socket_route, iface_idx, mac_addr, vf_index);
2465 * Set device promiscuous mode
2468 * Pointer to Ethernet device structure.
2470 * 0 - promiscuous is disabled, otherwise - enabled
2473 * 0 on success, a negative error value otherwise
2476 mlx5_os_set_promisc(struct rte_eth_dev *dev, int enable)
2478 struct mlx5_priv *priv = dev->data->dev_private;
2480 return mlx5_nl_promisc(priv->nl_socket_route,
2481 mlx5_ifindex(dev), !!enable);
2485 * Set device promiscuous mode
2488 * Pointer to Ethernet device structure.
2490 * 0 - all multicase is disabled, otherwise - enabled
2493 * 0 on success, a negative error value otherwise
2496 mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable)
2498 struct mlx5_priv *priv = dev->data->dev_private;
2500 return mlx5_nl_allmulti(priv->nl_socket_route,
2501 mlx5_ifindex(dev), !!enable);
2505 * Flush device MAC addresses
2508 * Pointer to Ethernet device structure.
2512 mlx5_os_mac_addr_flush(struct rte_eth_dev *dev)
2514 struct mlx5_priv *priv = dev->data->dev_private;
2516 mlx5_nl_mac_addr_flush(priv->nl_socket_route, mlx5_ifindex(dev),
2517 dev->data->mac_addrs,
2518 MLX5_MAX_MAC_ADDRESSES, priv->mac_own);
2521 const struct eth_dev_ops mlx5_os_dev_ops = {
2522 .dev_configure = mlx5_dev_configure,
2523 .dev_start = mlx5_dev_start,
2524 .dev_stop = mlx5_dev_stop,
2525 .dev_set_link_down = mlx5_set_link_down,
2526 .dev_set_link_up = mlx5_set_link_up,
2527 .dev_close = mlx5_dev_close,
2528 .promiscuous_enable = mlx5_promiscuous_enable,
2529 .promiscuous_disable = mlx5_promiscuous_disable,
2530 .allmulticast_enable = mlx5_allmulticast_enable,
2531 .allmulticast_disable = mlx5_allmulticast_disable,
2532 .link_update = mlx5_link_update,
2533 .stats_get = mlx5_stats_get,
2534 .stats_reset = mlx5_stats_reset,
2535 .xstats_get = mlx5_xstats_get,
2536 .xstats_reset = mlx5_xstats_reset,
2537 .xstats_get_names = mlx5_xstats_get_names,
2538 .fw_version_get = mlx5_fw_version_get,
2539 .dev_infos_get = mlx5_dev_infos_get,
2540 .read_clock = mlx5_txpp_read_clock,
2541 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
2542 .vlan_filter_set = mlx5_vlan_filter_set,
2543 .rx_queue_setup = mlx5_rx_queue_setup,
2544 .rx_hairpin_queue_setup = mlx5_rx_hairpin_queue_setup,
2545 .tx_queue_setup = mlx5_tx_queue_setup,
2546 .tx_hairpin_queue_setup = mlx5_tx_hairpin_queue_setup,
2547 .rx_queue_release = mlx5_rx_queue_release,
2548 .tx_queue_release = mlx5_tx_queue_release,
2549 .rx_queue_start = mlx5_rx_queue_start,
2550 .rx_queue_stop = mlx5_rx_queue_stop,
2551 .tx_queue_start = mlx5_tx_queue_start,
2552 .tx_queue_stop = mlx5_tx_queue_stop,
2553 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
2554 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
2555 .mac_addr_remove = mlx5_mac_addr_remove,
2556 .mac_addr_add = mlx5_mac_addr_add,
2557 .mac_addr_set = mlx5_mac_addr_set,
2558 .set_mc_addr_list = mlx5_set_mc_addr_list,
2559 .mtu_set = mlx5_dev_set_mtu,
2560 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
2561 .vlan_offload_set = mlx5_vlan_offload_set,
2562 .reta_update = mlx5_dev_rss_reta_update,
2563 .reta_query = mlx5_dev_rss_reta_query,
2564 .rss_hash_update = mlx5_rss_hash_update,
2565 .rss_hash_conf_get = mlx5_rss_hash_conf_get,
2566 .filter_ctrl = mlx5_dev_filter_ctrl,
2567 .rxq_info_get = mlx5_rxq_info_get,
2568 .txq_info_get = mlx5_txq_info_get,
2569 .rx_burst_mode_get = mlx5_rx_burst_mode_get,
2570 .tx_burst_mode_get = mlx5_tx_burst_mode_get,
2571 .rx_queue_intr_enable = mlx5_rx_intr_enable,
2572 .rx_queue_intr_disable = mlx5_rx_intr_disable,
2573 .is_removed = mlx5_is_removed,
2574 .udp_tunnel_port_add = mlx5_udp_tunnel_port_add,
2575 .get_module_info = mlx5_get_module_info,
2576 .get_module_eeprom = mlx5_get_module_eeprom,
2577 .hairpin_cap_get = mlx5_hairpin_cap_get,
2578 .mtr_ops_get = mlx5_flow_meter_ops_get,
2579 .hairpin_bind = mlx5_hairpin_bind,
2580 .hairpin_unbind = mlx5_hairpin_unbind,
2581 .hairpin_get_peer_ports = mlx5_hairpin_get_peer_ports,
2582 .hairpin_queue_peer_update = mlx5_hairpin_queue_peer_update,
2583 .hairpin_queue_peer_bind = mlx5_hairpin_queue_peer_bind,
2584 .hairpin_queue_peer_unbind = mlx5_hairpin_queue_peer_unbind,
2587 /* Available operations from secondary process. */
2588 const struct eth_dev_ops mlx5_os_dev_sec_ops = {
2589 .stats_get = mlx5_stats_get,
2590 .stats_reset = mlx5_stats_reset,
2591 .xstats_get = mlx5_xstats_get,
2592 .xstats_reset = mlx5_xstats_reset,
2593 .xstats_get_names = mlx5_xstats_get_names,
2594 .fw_version_get = mlx5_fw_version_get,
2595 .dev_infos_get = mlx5_dev_infos_get,
2596 .read_clock = mlx5_txpp_read_clock,
2597 .rx_queue_start = mlx5_rx_queue_start,
2598 .rx_queue_stop = mlx5_rx_queue_stop,
2599 .tx_queue_start = mlx5_tx_queue_start,
2600 .tx_queue_stop = mlx5_tx_queue_stop,
2601 .rxq_info_get = mlx5_rxq_info_get,
2602 .txq_info_get = mlx5_txq_info_get,
2603 .rx_burst_mode_get = mlx5_rx_burst_mode_get,
2604 .tx_burst_mode_get = mlx5_tx_burst_mode_get,
2605 .get_module_info = mlx5_get_module_info,
2606 .get_module_eeprom = mlx5_get_module_eeprom,
2609 /* Available operations in flow isolated mode. */
2610 const struct eth_dev_ops mlx5_os_dev_ops_isolate = {
2611 .dev_configure = mlx5_dev_configure,
2612 .dev_start = mlx5_dev_start,
2613 .dev_stop = mlx5_dev_stop,
2614 .dev_set_link_down = mlx5_set_link_down,
2615 .dev_set_link_up = mlx5_set_link_up,
2616 .dev_close = mlx5_dev_close,
2617 .promiscuous_enable = mlx5_promiscuous_enable,
2618 .promiscuous_disable = mlx5_promiscuous_disable,
2619 .allmulticast_enable = mlx5_allmulticast_enable,
2620 .allmulticast_disable = mlx5_allmulticast_disable,
2621 .link_update = mlx5_link_update,
2622 .stats_get = mlx5_stats_get,
2623 .stats_reset = mlx5_stats_reset,
2624 .xstats_get = mlx5_xstats_get,
2625 .xstats_reset = mlx5_xstats_reset,
2626 .xstats_get_names = mlx5_xstats_get_names,
2627 .fw_version_get = mlx5_fw_version_get,
2628 .dev_infos_get = mlx5_dev_infos_get,
2629 .read_clock = mlx5_txpp_read_clock,
2630 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
2631 .vlan_filter_set = mlx5_vlan_filter_set,
2632 .rx_queue_setup = mlx5_rx_queue_setup,
2633 .rx_hairpin_queue_setup = mlx5_rx_hairpin_queue_setup,
2634 .tx_queue_setup = mlx5_tx_queue_setup,
2635 .tx_hairpin_queue_setup = mlx5_tx_hairpin_queue_setup,
2636 .rx_queue_release = mlx5_rx_queue_release,
2637 .tx_queue_release = mlx5_tx_queue_release,
2638 .rx_queue_start = mlx5_rx_queue_start,
2639 .rx_queue_stop = mlx5_rx_queue_stop,
2640 .tx_queue_start = mlx5_tx_queue_start,
2641 .tx_queue_stop = mlx5_tx_queue_stop,
2642 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
2643 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
2644 .mac_addr_remove = mlx5_mac_addr_remove,
2645 .mac_addr_add = mlx5_mac_addr_add,
2646 .mac_addr_set = mlx5_mac_addr_set,
2647 .set_mc_addr_list = mlx5_set_mc_addr_list,
2648 .mtu_set = mlx5_dev_set_mtu,
2649 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
2650 .vlan_offload_set = mlx5_vlan_offload_set,
2651 .filter_ctrl = mlx5_dev_filter_ctrl,
2652 .rxq_info_get = mlx5_rxq_info_get,
2653 .txq_info_get = mlx5_txq_info_get,
2654 .rx_burst_mode_get = mlx5_rx_burst_mode_get,
2655 .tx_burst_mode_get = mlx5_tx_burst_mode_get,
2656 .rx_queue_intr_enable = mlx5_rx_intr_enable,
2657 .rx_queue_intr_disable = mlx5_rx_intr_disable,
2658 .is_removed = mlx5_is_removed,
2659 .get_module_info = mlx5_get_module_info,
2660 .get_module_eeprom = mlx5_get_module_eeprom,
2661 .hairpin_cap_get = mlx5_hairpin_cap_get,
2662 .mtr_ops_get = mlx5_flow_meter_ops_get,
2663 .hairpin_bind = mlx5_hairpin_bind,
2664 .hairpin_unbind = mlx5_hairpin_unbind,
2665 .hairpin_get_peer_ports = mlx5_hairpin_get_peer_ports,
2666 .hairpin_queue_peer_update = mlx5_hairpin_queue_peer_update,
2667 .hairpin_queue_peer_bind = mlx5_hairpin_queue_peer_bind,
2668 .hairpin_queue_peer_unbind = mlx5_hairpin_queue_peer_unbind,