1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2015 Mellanox Technologies, Ltd
14 #include <linux/rtnetlink.h>
17 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
19 #pragma GCC diagnostic ignored "-Wpedantic"
21 #include <infiniband/verbs.h>
23 #pragma GCC diagnostic error "-Wpedantic"
26 #include <rte_malloc.h>
27 #include <rte_ethdev_driver.h>
28 #include <rte_ethdev_pci.h>
30 #include <rte_bus_pci.h>
31 #include <rte_common.h>
32 #include <rte_kvargs.h>
33 #include <rte_rwlock.h>
34 #include <rte_spinlock.h>
35 #include <rte_string_fns.h>
36 #include <rte_alarm.h>
38 #include <mlx5_glue.h>
39 #include <mlx5_devx_cmds.h>
40 #include <mlx5_common.h>
42 #include "mlx5_defs.h"
44 #include "mlx5_utils.h"
45 #include "mlx5_rxtx.h"
46 #include "mlx5_autoconf.h"
48 #include "mlx5_flow.h"
49 #include "rte_pmd_mlx5.h"
51 /* Device parameter to enable RX completion queue compression. */
52 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
54 /* Device parameter to enable RX completion entry padding to 128B. */
55 #define MLX5_RXQ_CQE_PAD_EN "rxq_cqe_pad_en"
57 /* Device parameter to enable padding Rx packet to cacheline size. */
58 #define MLX5_RXQ_PKT_PAD_EN "rxq_pkt_pad_en"
60 /* Device parameter to enable Multi-Packet Rx queue. */
61 #define MLX5_RX_MPRQ_EN "mprq_en"
63 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
64 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
66 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
67 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
69 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
70 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
72 /* Device parameter to configure inline send. Deprecated, ignored.*/
73 #define MLX5_TXQ_INLINE "txq_inline"
75 /* Device parameter to limit packet size to inline with ordinary SEND. */
76 #define MLX5_TXQ_INLINE_MAX "txq_inline_max"
78 /* Device parameter to configure minimal data size to inline. */
79 #define MLX5_TXQ_INLINE_MIN "txq_inline_min"
81 /* Device parameter to limit packet size to inline with Enhanced MPW. */
82 #define MLX5_TXQ_INLINE_MPW "txq_inline_mpw"
85 * Device parameter to configure the number of TX queues threshold for
86 * enabling inline send.
88 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
91 * Device parameter to configure the number of TX queues threshold for
92 * enabling vectorized Tx, deprecated, ignored (no vectorized Tx routines).
94 #define MLX5_TXQS_MAX_VEC "txqs_max_vec"
96 /* Device parameter to enable multi-packet send WQEs. */
97 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
100 * Device parameter to force doorbell register mapping
101 * to non-cahed region eliminating the extra write memory barrier.
103 #define MLX5_TX_DB_NC "tx_db_nc"
106 * Device parameter to include 2 dsegs in the title WQEBB.
107 * Deprecated, ignored.
109 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
112 * Device parameter to limit the size of inlining packet.
113 * Deprecated, ignored.
115 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
118 * Device parameter to enable hardware Tx vector.
119 * Deprecated, ignored (no vectorized Tx routines anymore).
121 #define MLX5_TX_VEC_EN "tx_vec_en"
123 /* Device parameter to enable hardware Rx vector. */
124 #define MLX5_RX_VEC_EN "rx_vec_en"
126 /* Allow L3 VXLAN flow creation. */
127 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
129 /* Activate DV E-Switch flow steering. */
130 #define MLX5_DV_ESW_EN "dv_esw_en"
132 /* Activate DV flow steering. */
133 #define MLX5_DV_FLOW_EN "dv_flow_en"
135 /* Enable extensive flow metadata support. */
136 #define MLX5_DV_XMETA_EN "dv_xmeta_en"
138 /* Activate Netlink support in VF mode. */
139 #define MLX5_VF_NL_EN "vf_nl_en"
141 /* Enable extending memsegs when creating a MR. */
142 #define MLX5_MR_EXT_MEMSEG_EN "mr_ext_memseg_en"
144 /* Select port representors to instantiate. */
145 #define MLX5_REPRESENTOR "representor"
147 /* Device parameter to configure the maximum number of dump files per queue. */
148 #define MLX5_MAX_DUMP_FILES_NUM "max_dump_files_num"
150 /* Configure timeout of LRO session (in microseconds). */
151 #define MLX5_LRO_TIMEOUT_USEC "lro_timeout_usec"
153 #ifndef HAVE_IBV_MLX5_MOD_MPW
154 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
155 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
158 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
159 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
162 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
164 /* Shared memory between primary and secondary processes. */
165 struct mlx5_shared_data *mlx5_shared_data;
167 /* Spinlock for mlx5_shared_data allocation. */
168 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
170 /* Process local data for secondary processes. */
171 static struct mlx5_local_data mlx5_local_data;
173 /** Driver-specific log messages type. */
176 /** Data associated with devices to spawn. */
177 struct mlx5_dev_spawn_data {
178 uint32_t ifindex; /**< Network interface index. */
179 uint32_t max_port; /**< IB device maximal port index. */
180 uint32_t ibv_port; /**< IB device physical port index. */
181 int pf_bond; /**< bonding device PF index. < 0 - no bonding */
182 struct mlx5_switch_info info; /**< Switch information. */
183 struct ibv_device *ibv_dev; /**< Associated IB device. */
184 struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
185 struct rte_pci_device *pci_dev; /**< Backend PCI device. */
188 static LIST_HEAD(, mlx5_ibv_shared) mlx5_ibv_list = LIST_HEAD_INITIALIZER();
189 static pthread_mutex_t mlx5_ibv_list_mutex = PTHREAD_MUTEX_INITIALIZER;
191 #define MLX5_FLOW_MIN_ID_POOL_SIZE 512
192 #define MLX5_ID_GENERATION_ARRAY_FACTOR 16
194 #define MLX5_FLOW_TABLE_HLIST_ARRAY_SIZE 4096
195 #define MLX5_TAGS_HLIST_ARRAY_SIZE 8192
198 * Allocate ID pool structure.
201 * The maximum id can be allocated from the pool.
204 * Pointer to pool object, NULL value otherwise.
206 struct mlx5_flow_id_pool *
207 mlx5_flow_id_pool_alloc(uint32_t max_id)
209 struct mlx5_flow_id_pool *pool;
212 pool = rte_zmalloc("id pool allocation", sizeof(*pool),
213 RTE_CACHE_LINE_SIZE);
215 DRV_LOG(ERR, "can't allocate id pool");
219 mem = rte_zmalloc("", MLX5_FLOW_MIN_ID_POOL_SIZE * sizeof(uint32_t),
220 RTE_CACHE_LINE_SIZE);
222 DRV_LOG(ERR, "can't allocate mem for id pool");
226 pool->free_arr = mem;
227 pool->curr = pool->free_arr;
228 pool->last = pool->free_arr + MLX5_FLOW_MIN_ID_POOL_SIZE;
229 pool->base_index = 0;
230 pool->max_id = max_id;
238 * Release ID pool structure.
241 * Pointer to flow id pool object to free.
244 mlx5_flow_id_pool_release(struct mlx5_flow_id_pool *pool)
246 rte_free(pool->free_arr);
254 * Pointer to flow id pool.
259 * 0 on success, error value otherwise.
262 mlx5_flow_id_get(struct mlx5_flow_id_pool *pool, uint32_t *id)
264 if (pool->curr == pool->free_arr) {
265 if (pool->base_index == pool->max_id) {
267 DRV_LOG(ERR, "no free id");
270 *id = ++pool->base_index;
273 *id = *(--pool->curr);
281 * Pointer to flow id pool.
286 * 0 on success, error value otherwise.
289 mlx5_flow_id_release(struct mlx5_flow_id_pool *pool, uint32_t id)
295 if (pool->curr == pool->last) {
296 size = pool->curr - pool->free_arr;
297 size2 = size * MLX5_ID_GENERATION_ARRAY_FACTOR;
298 MLX5_ASSERT(size2 > size);
299 mem = rte_malloc("", size2 * sizeof(uint32_t), 0);
301 DRV_LOG(ERR, "can't allocate mem for id pool");
305 memcpy(mem, pool->free_arr, size * sizeof(uint32_t));
306 rte_free(pool->free_arr);
307 pool->free_arr = mem;
308 pool->curr = pool->free_arr + size;
309 pool->last = pool->free_arr + size2;
317 * Initialize the counters management structure.
320 * Pointer to mlx5_ibv_shared object to free
323 mlx5_flow_counters_mng_init(struct mlx5_ibv_shared *sh)
327 TAILQ_INIT(&sh->cmng.flow_counters);
328 for (i = 0; i < RTE_DIM(sh->cmng.ccont); ++i)
329 TAILQ_INIT(&sh->cmng.ccont[i].pool_list);
333 * Destroy all the resources allocated for a counter memory management.
336 * Pointer to the memory management structure.
339 mlx5_flow_destroy_counter_stat_mem_mng(struct mlx5_counter_stats_mem_mng *mng)
341 uint8_t *mem = (uint8_t *)(uintptr_t)mng->raws[0].data;
343 LIST_REMOVE(mng, next);
344 claim_zero(mlx5_devx_cmd_destroy(mng->dm));
345 claim_zero(mlx5_glue->devx_umem_dereg(mng->umem));
350 * Close and release all the resources of the counters management.
353 * Pointer to mlx5_ibv_shared object to free.
356 mlx5_flow_counters_mng_close(struct mlx5_ibv_shared *sh)
358 struct mlx5_counter_stats_mem_mng *mng;
365 rte_eal_alarm_cancel(mlx5_flow_query_alarm, sh);
366 if (rte_errno != EINPROGRESS)
370 for (i = 0; i < RTE_DIM(sh->cmng.ccont); ++i) {
371 struct mlx5_flow_counter_pool *pool;
372 uint32_t batch = !!(i % 2);
374 if (!sh->cmng.ccont[i].pools)
376 pool = TAILQ_FIRST(&sh->cmng.ccont[i].pool_list);
381 (mlx5_devx_cmd_destroy(pool->min_dcs));
383 for (j = 0; j < MLX5_COUNTERS_PER_POOL; ++j) {
384 if (pool->counters_raw[j].action)
386 (mlx5_glue->destroy_flow_action
387 (pool->counters_raw[j].action));
388 if (!batch && pool->counters_raw[j].dcs)
389 claim_zero(mlx5_devx_cmd_destroy
390 (pool->counters_raw[j].dcs));
392 TAILQ_REMOVE(&sh->cmng.ccont[i].pool_list, pool,
395 pool = TAILQ_FIRST(&sh->cmng.ccont[i].pool_list);
397 rte_free(sh->cmng.ccont[i].pools);
399 mng = LIST_FIRST(&sh->cmng.mem_mngs);
401 mlx5_flow_destroy_counter_stat_mem_mng(mng);
402 mng = LIST_FIRST(&sh->cmng.mem_mngs);
404 memset(&sh->cmng, 0, sizeof(sh->cmng));
408 * Extract pdn of PD object using DV API.
411 * Pointer to the verbs PD object.
413 * Pointer to the PD object number variable.
416 * 0 on success, error value otherwise.
418 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
420 mlx5_get_pdn(struct ibv_pd *pd __rte_unused, uint32_t *pdn __rte_unused)
422 struct mlx5dv_obj obj;
423 struct mlx5dv_pd pd_info;
427 obj.pd.out = &pd_info;
428 ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_PD);
430 DRV_LOG(DEBUG, "Fail to get PD object info");
436 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */
439 mlx5_config_doorbell_mapping_env(const struct mlx5_dev_config *config)
444 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
445 /* Get environment variable to store. */
446 env = getenv(MLX5_SHUT_UP_BF);
447 value = env ? !!strcmp(env, "0") : MLX5_ARG_UNSET;
448 if (config->dbnc == MLX5_ARG_UNSET)
449 setenv(MLX5_SHUT_UP_BF, MLX5_SHUT_UP_BF_DEFAULT, 1);
451 setenv(MLX5_SHUT_UP_BF,
452 config->dbnc == MLX5_TXDB_NCACHED ? "1" : "0", 1);
457 mlx5_restore_doorbell_mapping_env(int value)
459 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
460 /* Restore the original environment variable state. */
461 if (value == MLX5_ARG_UNSET)
462 unsetenv(MLX5_SHUT_UP_BF);
464 setenv(MLX5_SHUT_UP_BF, value ? "1" : "0", 1);
468 * Allocate shared IB device context. If there is multiport device the
469 * master and representors will share this context, if there is single
470 * port dedicated IB device, the context will be used by only given
471 * port due to unification.
473 * Routine first searches the context for the specified IB device name,
474 * if found the shared context assumed and reference counter is incremented.
475 * If no context found the new one is created and initialized with specified
476 * IB device context and parameters.
479 * Pointer to the IB device attributes (name, port, etc).
481 * Pointer to device configuration structure.
484 * Pointer to mlx5_ibv_shared object on success,
485 * otherwise NULL and rte_errno is set.
487 static struct mlx5_ibv_shared *
488 mlx5_alloc_shared_ibctx(const struct mlx5_dev_spawn_data *spawn,
489 const struct mlx5_dev_config *config)
491 struct mlx5_ibv_shared *sh;
495 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
496 struct mlx5_devx_tis_attr tis_attr = { 0 };
500 /* Secondary process should not create the shared context. */
501 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
502 pthread_mutex_lock(&mlx5_ibv_list_mutex);
503 /* Search for IB context by device name. */
504 LIST_FOREACH(sh, &mlx5_ibv_list, next) {
505 if (!strcmp(sh->ibdev_name, spawn->ibv_dev->name)) {
510 /* No device found, we have to create new shared context. */
511 MLX5_ASSERT(spawn->max_port);
512 sh = rte_zmalloc("ethdev shared ib context",
513 sizeof(struct mlx5_ibv_shared) +
515 sizeof(struct mlx5_ibv_shared_port),
516 RTE_CACHE_LINE_SIZE);
518 DRV_LOG(ERR, "shared context allocation failure");
523 * Configure environment variable "MLX5_BF_SHUT_UP"
524 * before the device creation. The rdma_core library
525 * checks the variable at device creation and
526 * stores the result internally.
528 dbmap_env = mlx5_config_doorbell_mapping_env(config);
529 /* Try to open IB device with DV first, then usual Verbs. */
531 sh->ctx = mlx5_glue->dv_open_device(spawn->ibv_dev);
534 DRV_LOG(DEBUG, "DevX is supported");
535 /* The device is created, no need for environment. */
536 mlx5_restore_doorbell_mapping_env(dbmap_env);
538 /* The environment variable is still configured. */
539 sh->ctx = mlx5_glue->open_device(spawn->ibv_dev);
540 err = errno ? errno : ENODEV;
542 * The environment variable is not needed anymore,
543 * all device creation attempts are completed.
545 mlx5_restore_doorbell_mapping_env(dbmap_env);
548 DRV_LOG(DEBUG, "DevX is NOT supported");
550 err = mlx5_glue->query_device_ex(sh->ctx, NULL, &sh->device_attr);
552 DRV_LOG(DEBUG, "ibv_query_device_ex() failed");
556 sh->max_port = spawn->max_port;
557 strncpy(sh->ibdev_name, sh->ctx->device->name,
558 sizeof(sh->ibdev_name));
559 strncpy(sh->ibdev_path, sh->ctx->device->ibdev_path,
560 sizeof(sh->ibdev_path));
561 pthread_mutex_init(&sh->intr_mutex, NULL);
563 * Setting port_id to max unallowed value means
564 * there is no interrupt subhandler installed for
565 * the given port index i.
567 for (i = 0; i < sh->max_port; i++) {
568 sh->port[i].ih_port_id = RTE_MAX_ETHPORTS;
569 sh->port[i].devx_ih_port_id = RTE_MAX_ETHPORTS;
571 sh->pd = mlx5_glue->alloc_pd(sh->ctx);
572 if (sh->pd == NULL) {
573 DRV_LOG(ERR, "PD allocation failure");
577 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
579 err = mlx5_get_pdn(sh->pd, &sh->pdn);
581 DRV_LOG(ERR, "Fail to extract pdn from PD");
584 sh->td = mlx5_devx_cmd_create_td(sh->ctx);
586 DRV_LOG(ERR, "TD allocation failure");
590 tis_attr.transport_domain = sh->td->id;
591 sh->tis = mlx5_devx_cmd_create_tis(sh->ctx, &tis_attr);
593 DRV_LOG(ERR, "TIS allocation failure");
598 sh->flow_id_pool = mlx5_flow_id_pool_alloc(UINT32_MAX);
599 if (!sh->flow_id_pool) {
600 DRV_LOG(ERR, "can't create flow id pool");
604 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */
606 * Once the device is added to the list of memory event
607 * callback, its global MR cache table cannot be expanded
608 * on the fly because of deadlock. If it overflows, lookup
609 * should be done by searching MR list linearly, which is slow.
611 * At this point the device is not added to the memory
612 * event list yet, context is just being created.
614 err = mlx5_mr_btree_init(&sh->mr.cache,
615 MLX5_MR_BTREE_CACHE_N * 2,
616 spawn->pci_dev->device.numa_node);
621 mlx5_flow_counters_mng_init(sh);
622 /* Add device to memory callback list. */
623 rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
624 LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
626 rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
627 /* Add context to the global device list. */
628 LIST_INSERT_HEAD(&mlx5_ibv_list, sh, next);
630 pthread_mutex_unlock(&mlx5_ibv_list_mutex);
633 pthread_mutex_unlock(&mlx5_ibv_list_mutex);
636 claim_zero(mlx5_devx_cmd_destroy(sh->tis));
638 claim_zero(mlx5_devx_cmd_destroy(sh->td));
640 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
642 claim_zero(mlx5_glue->close_device(sh->ctx));
643 if (sh->flow_id_pool)
644 mlx5_flow_id_pool_release(sh->flow_id_pool);
646 MLX5_ASSERT(err > 0);
652 * Free shared IB device context. Decrement counter and if zero free
653 * all allocated resources and close handles.
656 * Pointer to mlx5_ibv_shared object to free
659 mlx5_free_shared_ibctx(struct mlx5_ibv_shared *sh)
661 pthread_mutex_lock(&mlx5_ibv_list_mutex);
662 #ifdef RTE_LIBRTE_MLX5_DEBUG
663 /* Check the object presence in the list. */
664 struct mlx5_ibv_shared *lctx;
666 LIST_FOREACH(lctx, &mlx5_ibv_list, next)
671 DRV_LOG(ERR, "Freeing non-existing shared IB context");
676 MLX5_ASSERT(sh->refcnt);
677 /* Secondary process should not free the shared context. */
678 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
681 /* Remove from memory callback device list. */
682 rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
683 LIST_REMOVE(sh, mem_event_cb);
684 rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
685 /* Release created Memory Regions. */
687 /* Remove context from the global device list. */
688 LIST_REMOVE(sh, next);
690 * Ensure there is no async event handler installed.
691 * Only primary process handles async device events.
693 mlx5_flow_counters_mng_close(sh);
694 MLX5_ASSERT(!sh->intr_cnt);
696 mlx5_intr_callback_unregister
697 (&sh->intr_handle, mlx5_dev_interrupt_handler, sh);
698 #ifdef HAVE_MLX5_DEVX_ASYNC_SUPPORT
699 if (sh->devx_intr_cnt) {
700 if (sh->intr_handle_devx.fd)
701 rte_intr_callback_unregister(&sh->intr_handle_devx,
702 mlx5_dev_interrupt_handler_devx, sh);
704 mlx5dv_devx_destroy_cmd_comp(sh->devx_comp);
707 pthread_mutex_destroy(&sh->intr_mutex);
709 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
711 claim_zero(mlx5_devx_cmd_destroy(sh->tis));
713 claim_zero(mlx5_devx_cmd_destroy(sh->td));
715 claim_zero(mlx5_glue->close_device(sh->ctx));
716 if (sh->flow_id_pool)
717 mlx5_flow_id_pool_release(sh->flow_id_pool);
720 pthread_mutex_unlock(&mlx5_ibv_list_mutex);
724 * Destroy table hash list and all the root entries per domain.
727 * Pointer to the private device data structure.
730 mlx5_free_table_hash_list(struct mlx5_priv *priv)
732 struct mlx5_ibv_shared *sh = priv->sh;
733 struct mlx5_flow_tbl_data_entry *tbl_data;
734 union mlx5_flow_tbl_key table_key = {
742 struct mlx5_hlist_entry *pos;
746 pos = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64);
748 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
750 MLX5_ASSERT(tbl_data);
751 mlx5_hlist_remove(sh->flow_tbls, pos);
754 table_key.direction = 1;
755 pos = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64);
757 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
759 MLX5_ASSERT(tbl_data);
760 mlx5_hlist_remove(sh->flow_tbls, pos);
763 table_key.direction = 0;
764 table_key.domain = 1;
765 pos = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64);
767 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
769 MLX5_ASSERT(tbl_data);
770 mlx5_hlist_remove(sh->flow_tbls, pos);
773 mlx5_hlist_destroy(sh->flow_tbls, NULL, NULL);
777 * Initialize flow table hash list and create the root tables entry
781 * Pointer to the private device data structure.
784 * Zero on success, positive error code otherwise.
787 mlx5_alloc_table_hash_list(struct mlx5_priv *priv)
789 struct mlx5_ibv_shared *sh = priv->sh;
790 char s[MLX5_HLIST_NAMESIZE];
794 snprintf(s, sizeof(s), "%s_flow_table", priv->sh->ibdev_name);
795 sh->flow_tbls = mlx5_hlist_create(s, MLX5_FLOW_TABLE_HLIST_ARRAY_SIZE);
796 if (!sh->flow_tbls) {
797 DRV_LOG(ERR, "flow tables with hash creation failed.\n");
801 #ifndef HAVE_MLX5DV_DR
803 * In case we have not DR support, the zero tables should be created
804 * because DV expect to see them even if they cannot be created by
807 union mlx5_flow_tbl_key table_key = {
815 struct mlx5_flow_tbl_data_entry *tbl_data = rte_zmalloc(NULL,
816 sizeof(*tbl_data), 0);
822 tbl_data->entry.key = table_key.v64;
823 err = mlx5_hlist_insert(sh->flow_tbls, &tbl_data->entry);
826 rte_atomic32_init(&tbl_data->tbl.refcnt);
827 rte_atomic32_inc(&tbl_data->tbl.refcnt);
828 table_key.direction = 1;
829 tbl_data = rte_zmalloc(NULL, sizeof(*tbl_data), 0);
834 tbl_data->entry.key = table_key.v64;
835 err = mlx5_hlist_insert(sh->flow_tbls, &tbl_data->entry);
838 rte_atomic32_init(&tbl_data->tbl.refcnt);
839 rte_atomic32_inc(&tbl_data->tbl.refcnt);
840 table_key.direction = 0;
841 table_key.domain = 1;
842 tbl_data = rte_zmalloc(NULL, sizeof(*tbl_data), 0);
847 tbl_data->entry.key = table_key.v64;
848 err = mlx5_hlist_insert(sh->flow_tbls, &tbl_data->entry);
851 rte_atomic32_init(&tbl_data->tbl.refcnt);
852 rte_atomic32_inc(&tbl_data->tbl.refcnt);
855 mlx5_free_table_hash_list(priv);
856 #endif /* HAVE_MLX5DV_DR */
861 * Initialize DR related data within private structure.
862 * Routine checks the reference counter and does actual
863 * resources creation/initialization only if counter is zero.
866 * Pointer to the private device data structure.
869 * Zero on success, positive error code otherwise.
872 mlx5_alloc_shared_dr(struct mlx5_priv *priv)
874 struct mlx5_ibv_shared *sh = priv->sh;
875 char s[MLX5_HLIST_NAMESIZE];
879 err = mlx5_alloc_table_hash_list(priv);
881 DRV_LOG(DEBUG, "sh->flow_tbls[%p] already created, reuse\n",
882 (void *)sh->flow_tbls);
885 /* Create tags hash list table. */
886 snprintf(s, sizeof(s), "%s_tags", sh->ibdev_name);
887 sh->tag_table = mlx5_hlist_create(s, MLX5_TAGS_HLIST_ARRAY_SIZE);
888 if (!sh->tag_table) {
889 DRV_LOG(ERR, "tags with hash creation failed.\n");
893 #ifdef HAVE_MLX5DV_DR
897 /* Shared DV/DR structures is already initialized. */
902 /* Reference counter is zero, we should initialize structures. */
903 domain = mlx5_glue->dr_create_domain(sh->ctx,
904 MLX5DV_DR_DOMAIN_TYPE_NIC_RX);
906 DRV_LOG(ERR, "ingress mlx5dv_dr_create_domain failed");
910 sh->rx_domain = domain;
911 domain = mlx5_glue->dr_create_domain(sh->ctx,
912 MLX5DV_DR_DOMAIN_TYPE_NIC_TX);
914 DRV_LOG(ERR, "egress mlx5dv_dr_create_domain failed");
918 pthread_mutex_init(&sh->dv_mutex, NULL);
919 sh->tx_domain = domain;
920 #ifdef HAVE_MLX5DV_DR_ESWITCH
921 if (priv->config.dv_esw_en) {
922 domain = mlx5_glue->dr_create_domain
923 (sh->ctx, MLX5DV_DR_DOMAIN_TYPE_FDB);
925 DRV_LOG(ERR, "FDB mlx5dv_dr_create_domain failed");
929 sh->fdb_domain = domain;
930 sh->esw_drop_action = mlx5_glue->dr_create_flow_action_drop();
933 sh->pop_vlan_action = mlx5_glue->dr_create_flow_action_pop_vlan();
934 #endif /* HAVE_MLX5DV_DR */
939 /* Rollback the created objects. */
941 mlx5_glue->dr_destroy_domain(sh->rx_domain);
942 sh->rx_domain = NULL;
945 mlx5_glue->dr_destroy_domain(sh->tx_domain);
946 sh->tx_domain = NULL;
948 if (sh->fdb_domain) {
949 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
950 sh->fdb_domain = NULL;
952 if (sh->esw_drop_action) {
953 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
954 sh->esw_drop_action = NULL;
956 if (sh->pop_vlan_action) {
957 mlx5_glue->destroy_flow_action(sh->pop_vlan_action);
958 sh->pop_vlan_action = NULL;
961 /* tags should be destroyed with flow before. */
962 mlx5_hlist_destroy(sh->tag_table, NULL, NULL);
963 sh->tag_table = NULL;
965 mlx5_free_table_hash_list(priv);
970 * Destroy DR related data within private structure.
973 * Pointer to the private device data structure.
976 mlx5_free_shared_dr(struct mlx5_priv *priv)
978 struct mlx5_ibv_shared *sh;
980 if (!priv->dr_shared)
985 #ifdef HAVE_MLX5DV_DR
986 MLX5_ASSERT(sh->dv_refcnt);
987 if (sh->dv_refcnt && --sh->dv_refcnt)
990 mlx5_glue->dr_destroy_domain(sh->rx_domain);
991 sh->rx_domain = NULL;
994 mlx5_glue->dr_destroy_domain(sh->tx_domain);
995 sh->tx_domain = NULL;
997 #ifdef HAVE_MLX5DV_DR_ESWITCH
998 if (sh->fdb_domain) {
999 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
1000 sh->fdb_domain = NULL;
1002 if (sh->esw_drop_action) {
1003 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
1004 sh->esw_drop_action = NULL;
1007 if (sh->pop_vlan_action) {
1008 mlx5_glue->destroy_flow_action(sh->pop_vlan_action);
1009 sh->pop_vlan_action = NULL;
1011 pthread_mutex_destroy(&sh->dv_mutex);
1012 #endif /* HAVE_MLX5DV_DR */
1013 if (sh->tag_table) {
1014 /* tags should be destroyed with flow before. */
1015 mlx5_hlist_destroy(sh->tag_table, NULL, NULL);
1016 sh->tag_table = NULL;
1018 mlx5_free_table_hash_list(priv);
1022 * Initialize shared data between primary and secondary process.
1024 * A memzone is reserved by primary process and secondary processes attach to
1028 * 0 on success, a negative errno value otherwise and rte_errno is set.
1031 mlx5_init_shared_data(void)
1033 const struct rte_memzone *mz;
1036 rte_spinlock_lock(&mlx5_shared_data_lock);
1037 if (mlx5_shared_data == NULL) {
1038 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
1039 /* Allocate shared memory. */
1040 mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
1041 sizeof(*mlx5_shared_data),
1045 "Cannot allocate mlx5 shared data");
1049 mlx5_shared_data = mz->addr;
1050 memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data));
1051 rte_spinlock_init(&mlx5_shared_data->lock);
1053 /* Lookup allocated shared memory. */
1054 mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
1057 "Cannot attach mlx5 shared data");
1061 mlx5_shared_data = mz->addr;
1062 memset(&mlx5_local_data, 0, sizeof(mlx5_local_data));
1066 rte_spinlock_unlock(&mlx5_shared_data_lock);
1071 * Retrieve integer value from environment variable.
1074 * Environment variable name.
1077 * Integer value, 0 if the variable is not set.
1080 mlx5_getenv_int(const char *name)
1082 const char *val = getenv(name);
1090 * Verbs callback to allocate a memory. This function should allocate the space
1091 * according to the size provided residing inside a huge page.
1092 * Please note that all allocation must respect the alignment from libmlx5
1093 * (i.e. currently sysconf(_SC_PAGESIZE)).
1096 * The size in bytes of the memory to allocate.
1098 * A pointer to the callback data.
1101 * Allocated buffer, NULL otherwise and rte_errno is set.
1104 mlx5_alloc_verbs_buf(size_t size, void *data)
1106 struct mlx5_priv *priv = data;
1108 size_t alignment = sysconf(_SC_PAGESIZE);
1109 unsigned int socket = SOCKET_ID_ANY;
1111 if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
1112 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
1114 socket = ctrl->socket;
1115 } else if (priv->verbs_alloc_ctx.type ==
1116 MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
1117 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
1119 socket = ctrl->socket;
1121 MLX5_ASSERT(data != NULL);
1122 ret = rte_malloc_socket(__func__, size, alignment, socket);
1129 * Verbs callback to free a memory.
1132 * A pointer to the memory to free.
1134 * A pointer to the callback data.
1137 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
1139 MLX5_ASSERT(data != NULL);
1144 * DPDK callback to add udp tunnel port
1147 * A pointer to eth_dev
1148 * @param[in] udp_tunnel
1149 * A pointer to udp tunnel
1152 * 0 on valid udp ports and tunnels, -ENOTSUP otherwise.
1155 mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev __rte_unused,
1156 struct rte_eth_udp_tunnel *udp_tunnel)
1158 MLX5_ASSERT(udp_tunnel != NULL);
1159 if (udp_tunnel->prot_type == RTE_TUNNEL_TYPE_VXLAN &&
1160 udp_tunnel->udp_port == 4789)
1162 if (udp_tunnel->prot_type == RTE_TUNNEL_TYPE_VXLAN_GPE &&
1163 udp_tunnel->udp_port == 4790)
1169 * Initialize process private data structure.
1172 * Pointer to Ethernet device structure.
1175 * 0 on success, a negative errno value otherwise and rte_errno is set.
1178 mlx5_proc_priv_init(struct rte_eth_dev *dev)
1180 struct mlx5_priv *priv = dev->data->dev_private;
1181 struct mlx5_proc_priv *ppriv;
1185 * UAR register table follows the process private structure. BlueFlame
1186 * registers for Tx queues are stored in the table.
1189 sizeof(struct mlx5_proc_priv) + priv->txqs_n * sizeof(void *);
1190 ppriv = rte_malloc_socket("mlx5_proc_priv", ppriv_size,
1191 RTE_CACHE_LINE_SIZE, dev->device->numa_node);
1196 ppriv->uar_table_sz = ppriv_size;
1197 dev->process_private = ppriv;
1202 * Un-initialize process private data structure.
1205 * Pointer to Ethernet device structure.
1208 mlx5_proc_priv_uninit(struct rte_eth_dev *dev)
1210 if (!dev->process_private)
1212 rte_free(dev->process_private);
1213 dev->process_private = NULL;
1217 * DPDK callback to close the device.
1219 * Destroy all queues and objects, free memory.
1222 * Pointer to Ethernet device structure.
1225 mlx5_dev_close(struct rte_eth_dev *dev)
1227 struct mlx5_priv *priv = dev->data->dev_private;
1231 DRV_LOG(DEBUG, "port %u closing device \"%s\"",
1233 ((priv->sh->ctx != NULL) ? priv->sh->ctx->device->name : ""));
1234 /* In case mlx5_dev_stop() has not been called. */
1235 mlx5_dev_interrupt_handler_uninstall(dev);
1236 mlx5_dev_interrupt_handler_devx_uninstall(dev);
1237 mlx5_traffic_disable(dev);
1238 mlx5_flow_flush(dev, NULL);
1239 mlx5_flow_meter_flush(dev, NULL);
1240 /* Prevent crashes when queues are still in use. */
1241 dev->rx_pkt_burst = removed_rx_burst;
1242 dev->tx_pkt_burst = removed_tx_burst;
1244 /* Disable datapath on secondary process. */
1245 mlx5_mp_req_stop_rxtx(dev);
1246 if (priv->rxqs != NULL) {
1247 /* XXX race condition if mlx5_rx_burst() is still running. */
1249 for (i = 0; (i != priv->rxqs_n); ++i)
1250 mlx5_rxq_release(dev, i);
1254 if (priv->txqs != NULL) {
1255 /* XXX race condition if mlx5_tx_burst() is still running. */
1257 for (i = 0; (i != priv->txqs_n); ++i)
1258 mlx5_txq_release(dev, i);
1262 mlx5_proc_priv_uninit(dev);
1263 if (priv->mreg_cp_tbl)
1264 mlx5_hlist_destroy(priv->mreg_cp_tbl, NULL, NULL);
1265 mlx5_mprq_free_mp(dev);
1266 mlx5_free_shared_dr(priv);
1267 if (priv->rss_conf.rss_key != NULL)
1268 rte_free(priv->rss_conf.rss_key);
1269 if (priv->reta_idx != NULL)
1270 rte_free(priv->reta_idx);
1271 if (priv->config.vf)
1272 mlx5_nl_mac_addr_flush(priv->nl_socket_route, mlx5_ifindex(dev),
1273 dev->data->mac_addrs,
1274 MLX5_MAX_MAC_ADDRESSES, priv->mac_own);
1275 if (priv->nl_socket_route >= 0)
1276 close(priv->nl_socket_route);
1277 if (priv->nl_socket_rdma >= 0)
1278 close(priv->nl_socket_rdma);
1279 if (priv->vmwa_context)
1280 mlx5_vlan_vmwa_exit(priv->vmwa_context);
1283 * Free the shared context in last turn, because the cleanup
1284 * routines above may use some shared fields, like
1285 * mlx5_nl_mac_addr_flush() uses ibdev_path for retrieveing
1286 * ifindex if Netlink fails.
1288 mlx5_free_shared_ibctx(priv->sh);
1291 ret = mlx5_hrxq_verify(dev);
1293 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
1294 dev->data->port_id);
1295 ret = mlx5_ind_table_obj_verify(dev);
1297 DRV_LOG(WARNING, "port %u some indirection table still remain",
1298 dev->data->port_id);
1299 ret = mlx5_rxq_obj_verify(dev);
1301 DRV_LOG(WARNING, "port %u some Rx queue objects still remain",
1302 dev->data->port_id);
1303 ret = mlx5_rxq_verify(dev);
1305 DRV_LOG(WARNING, "port %u some Rx queues still remain",
1306 dev->data->port_id);
1307 ret = mlx5_txq_obj_verify(dev);
1309 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
1310 dev->data->port_id);
1311 ret = mlx5_txq_verify(dev);
1313 DRV_LOG(WARNING, "port %u some Tx queues still remain",
1314 dev->data->port_id);
1315 ret = mlx5_flow_verify(dev);
1317 DRV_LOG(WARNING, "port %u some flows still remain",
1318 dev->data->port_id);
1319 if (priv->domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
1323 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
1324 struct mlx5_priv *opriv =
1325 rte_eth_devices[port_id].data->dev_private;
1328 opriv->domain_id != priv->domain_id ||
1329 &rte_eth_devices[port_id] == dev)
1335 claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1337 memset(priv, 0, sizeof(*priv));
1338 priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
1340 * Reset mac_addrs to NULL such that it is not freed as part of
1341 * rte_eth_dev_release_port(). mac_addrs is part of dev_private so
1342 * it is freed when dev_private is freed.
1344 dev->data->mac_addrs = NULL;
1347 const struct eth_dev_ops mlx5_dev_ops = {
1348 .dev_configure = mlx5_dev_configure,
1349 .dev_start = mlx5_dev_start,
1350 .dev_stop = mlx5_dev_stop,
1351 .dev_set_link_down = mlx5_set_link_down,
1352 .dev_set_link_up = mlx5_set_link_up,
1353 .dev_close = mlx5_dev_close,
1354 .promiscuous_enable = mlx5_promiscuous_enable,
1355 .promiscuous_disable = mlx5_promiscuous_disable,
1356 .allmulticast_enable = mlx5_allmulticast_enable,
1357 .allmulticast_disable = mlx5_allmulticast_disable,
1358 .link_update = mlx5_link_update,
1359 .stats_get = mlx5_stats_get,
1360 .stats_reset = mlx5_stats_reset,
1361 .xstats_get = mlx5_xstats_get,
1362 .xstats_reset = mlx5_xstats_reset,
1363 .xstats_get_names = mlx5_xstats_get_names,
1364 .fw_version_get = mlx5_fw_version_get,
1365 .dev_infos_get = mlx5_dev_infos_get,
1366 .read_clock = mlx5_read_clock,
1367 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
1368 .vlan_filter_set = mlx5_vlan_filter_set,
1369 .rx_queue_setup = mlx5_rx_queue_setup,
1370 .rx_hairpin_queue_setup = mlx5_rx_hairpin_queue_setup,
1371 .tx_queue_setup = mlx5_tx_queue_setup,
1372 .tx_hairpin_queue_setup = mlx5_tx_hairpin_queue_setup,
1373 .rx_queue_release = mlx5_rx_queue_release,
1374 .tx_queue_release = mlx5_tx_queue_release,
1375 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
1376 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
1377 .mac_addr_remove = mlx5_mac_addr_remove,
1378 .mac_addr_add = mlx5_mac_addr_add,
1379 .mac_addr_set = mlx5_mac_addr_set,
1380 .set_mc_addr_list = mlx5_set_mc_addr_list,
1381 .mtu_set = mlx5_dev_set_mtu,
1382 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
1383 .vlan_offload_set = mlx5_vlan_offload_set,
1384 .reta_update = mlx5_dev_rss_reta_update,
1385 .reta_query = mlx5_dev_rss_reta_query,
1386 .rss_hash_update = mlx5_rss_hash_update,
1387 .rss_hash_conf_get = mlx5_rss_hash_conf_get,
1388 .filter_ctrl = mlx5_dev_filter_ctrl,
1389 .rx_descriptor_status = mlx5_rx_descriptor_status,
1390 .tx_descriptor_status = mlx5_tx_descriptor_status,
1391 .rxq_info_get = mlx5_rxq_info_get,
1392 .txq_info_get = mlx5_txq_info_get,
1393 .rx_burst_mode_get = mlx5_rx_burst_mode_get,
1394 .tx_burst_mode_get = mlx5_tx_burst_mode_get,
1395 .rx_queue_count = mlx5_rx_queue_count,
1396 .rx_queue_intr_enable = mlx5_rx_intr_enable,
1397 .rx_queue_intr_disable = mlx5_rx_intr_disable,
1398 .is_removed = mlx5_is_removed,
1399 .udp_tunnel_port_add = mlx5_udp_tunnel_port_add,
1400 .get_module_info = mlx5_get_module_info,
1401 .get_module_eeprom = mlx5_get_module_eeprom,
1402 .hairpin_cap_get = mlx5_hairpin_cap_get,
1403 .mtr_ops_get = mlx5_flow_meter_ops_get,
1406 /* Available operations from secondary process. */
1407 static const struct eth_dev_ops mlx5_dev_sec_ops = {
1408 .stats_get = mlx5_stats_get,
1409 .stats_reset = mlx5_stats_reset,
1410 .xstats_get = mlx5_xstats_get,
1411 .xstats_reset = mlx5_xstats_reset,
1412 .xstats_get_names = mlx5_xstats_get_names,
1413 .fw_version_get = mlx5_fw_version_get,
1414 .dev_infos_get = mlx5_dev_infos_get,
1415 .rx_descriptor_status = mlx5_rx_descriptor_status,
1416 .tx_descriptor_status = mlx5_tx_descriptor_status,
1417 .rxq_info_get = mlx5_rxq_info_get,
1418 .txq_info_get = mlx5_txq_info_get,
1419 .rx_burst_mode_get = mlx5_rx_burst_mode_get,
1420 .tx_burst_mode_get = mlx5_tx_burst_mode_get,
1421 .get_module_info = mlx5_get_module_info,
1422 .get_module_eeprom = mlx5_get_module_eeprom,
1425 /* Available operations in flow isolated mode. */
1426 const struct eth_dev_ops mlx5_dev_ops_isolate = {
1427 .dev_configure = mlx5_dev_configure,
1428 .dev_start = mlx5_dev_start,
1429 .dev_stop = mlx5_dev_stop,
1430 .dev_set_link_down = mlx5_set_link_down,
1431 .dev_set_link_up = mlx5_set_link_up,
1432 .dev_close = mlx5_dev_close,
1433 .promiscuous_enable = mlx5_promiscuous_enable,
1434 .promiscuous_disable = mlx5_promiscuous_disable,
1435 .allmulticast_enable = mlx5_allmulticast_enable,
1436 .allmulticast_disable = mlx5_allmulticast_disable,
1437 .link_update = mlx5_link_update,
1438 .stats_get = mlx5_stats_get,
1439 .stats_reset = mlx5_stats_reset,
1440 .xstats_get = mlx5_xstats_get,
1441 .xstats_reset = mlx5_xstats_reset,
1442 .xstats_get_names = mlx5_xstats_get_names,
1443 .fw_version_get = mlx5_fw_version_get,
1444 .dev_infos_get = mlx5_dev_infos_get,
1445 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
1446 .vlan_filter_set = mlx5_vlan_filter_set,
1447 .rx_queue_setup = mlx5_rx_queue_setup,
1448 .rx_hairpin_queue_setup = mlx5_rx_hairpin_queue_setup,
1449 .tx_queue_setup = mlx5_tx_queue_setup,
1450 .tx_hairpin_queue_setup = mlx5_tx_hairpin_queue_setup,
1451 .rx_queue_release = mlx5_rx_queue_release,
1452 .tx_queue_release = mlx5_tx_queue_release,
1453 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
1454 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
1455 .mac_addr_remove = mlx5_mac_addr_remove,
1456 .mac_addr_add = mlx5_mac_addr_add,
1457 .mac_addr_set = mlx5_mac_addr_set,
1458 .set_mc_addr_list = mlx5_set_mc_addr_list,
1459 .mtu_set = mlx5_dev_set_mtu,
1460 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
1461 .vlan_offload_set = mlx5_vlan_offload_set,
1462 .filter_ctrl = mlx5_dev_filter_ctrl,
1463 .rx_descriptor_status = mlx5_rx_descriptor_status,
1464 .tx_descriptor_status = mlx5_tx_descriptor_status,
1465 .rxq_info_get = mlx5_rxq_info_get,
1466 .txq_info_get = mlx5_txq_info_get,
1467 .rx_burst_mode_get = mlx5_rx_burst_mode_get,
1468 .tx_burst_mode_get = mlx5_tx_burst_mode_get,
1469 .rx_queue_intr_enable = mlx5_rx_intr_enable,
1470 .rx_queue_intr_disable = mlx5_rx_intr_disable,
1471 .is_removed = mlx5_is_removed,
1472 .get_module_info = mlx5_get_module_info,
1473 .get_module_eeprom = mlx5_get_module_eeprom,
1474 .hairpin_cap_get = mlx5_hairpin_cap_get,
1475 .mtr_ops_get = mlx5_flow_meter_ops_get,
1479 * Verify and store value for device argument.
1482 * Key argument to verify.
1484 * Value associated with key.
1489 * 0 on success, a negative errno value otherwise and rte_errno is set.
1492 mlx5_args_check(const char *key, const char *val, void *opaque)
1494 struct mlx5_dev_config *config = opaque;
1497 /* No-op, port representors are processed in mlx5_dev_spawn(). */
1498 if (!strcmp(MLX5_REPRESENTOR, key))
1501 tmp = strtoul(val, NULL, 0);
1504 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
1507 if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
1508 config->cqe_comp = !!tmp;
1509 } else if (strcmp(MLX5_RXQ_CQE_PAD_EN, key) == 0) {
1510 config->cqe_pad = !!tmp;
1511 } else if (strcmp(MLX5_RXQ_PKT_PAD_EN, key) == 0) {
1512 config->hw_padding = !!tmp;
1513 } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
1514 config->mprq.enabled = !!tmp;
1515 } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
1516 config->mprq.stride_num_n = tmp;
1517 } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
1518 config->mprq.max_memcpy_len = tmp;
1519 } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
1520 config->mprq.min_rxqs_num = tmp;
1521 } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
1522 DRV_LOG(WARNING, "%s: deprecated parameter,"
1523 " converted to txq_inline_max", key);
1524 config->txq_inline_max = tmp;
1525 } else if (strcmp(MLX5_TXQ_INLINE_MAX, key) == 0) {
1526 config->txq_inline_max = tmp;
1527 } else if (strcmp(MLX5_TXQ_INLINE_MIN, key) == 0) {
1528 config->txq_inline_min = tmp;
1529 } else if (strcmp(MLX5_TXQ_INLINE_MPW, key) == 0) {
1530 config->txq_inline_mpw = tmp;
1531 } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
1532 config->txqs_inline = tmp;
1533 } else if (strcmp(MLX5_TXQS_MAX_VEC, key) == 0) {
1534 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1535 } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
1536 config->mps = !!tmp;
1537 } else if (strcmp(MLX5_TX_DB_NC, key) == 0) {
1538 if (tmp != MLX5_TXDB_CACHED &&
1539 tmp != MLX5_TXDB_NCACHED &&
1540 tmp != MLX5_TXDB_HEURISTIC) {
1541 DRV_LOG(ERR, "invalid Tx doorbell "
1542 "mapping parameter");
1547 } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
1548 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1549 } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
1550 DRV_LOG(WARNING, "%s: deprecated parameter,"
1551 " converted to txq_inline_mpw", key);
1552 config->txq_inline_mpw = tmp;
1553 } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
1554 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1555 } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
1556 config->rx_vec_en = !!tmp;
1557 } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
1558 config->l3_vxlan_en = !!tmp;
1559 } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
1560 config->vf_nl_en = !!tmp;
1561 } else if (strcmp(MLX5_DV_ESW_EN, key) == 0) {
1562 config->dv_esw_en = !!tmp;
1563 } else if (strcmp(MLX5_DV_FLOW_EN, key) == 0) {
1564 config->dv_flow_en = !!tmp;
1565 } else if (strcmp(MLX5_DV_XMETA_EN, key) == 0) {
1566 if (tmp != MLX5_XMETA_MODE_LEGACY &&
1567 tmp != MLX5_XMETA_MODE_META16 &&
1568 tmp != MLX5_XMETA_MODE_META32) {
1569 DRV_LOG(ERR, "invalid extensive "
1570 "metadata parameter");
1574 config->dv_xmeta_en = tmp;
1575 } else if (strcmp(MLX5_MR_EXT_MEMSEG_EN, key) == 0) {
1576 config->mr_ext_memseg_en = !!tmp;
1577 } else if (strcmp(MLX5_MAX_DUMP_FILES_NUM, key) == 0) {
1578 config->max_dump_files_num = tmp;
1579 } else if (strcmp(MLX5_LRO_TIMEOUT_USEC, key) == 0) {
1580 config->lro.timeout = tmp;
1581 } else if (strcmp(MLX5_CLASS_ARG_NAME, key) == 0) {
1582 DRV_LOG(DEBUG, "class argument is %s.", val);
1584 DRV_LOG(WARNING, "%s: unknown parameter", key);
1592 * Parse device parameters.
1595 * Pointer to device configuration structure.
1597 * Device arguments structure.
1600 * 0 on success, a negative errno value otherwise and rte_errno is set.
1603 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
1605 const char **params = (const char *[]){
1606 MLX5_RXQ_CQE_COMP_EN,
1607 MLX5_RXQ_CQE_PAD_EN,
1608 MLX5_RXQ_PKT_PAD_EN,
1610 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
1611 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
1614 MLX5_TXQ_INLINE_MIN,
1615 MLX5_TXQ_INLINE_MAX,
1616 MLX5_TXQ_INLINE_MPW,
1617 MLX5_TXQS_MIN_INLINE,
1620 MLX5_TXQ_MPW_HDR_DSEG_EN,
1621 MLX5_TXQ_MAX_INLINE_LEN,
1630 MLX5_MR_EXT_MEMSEG_EN,
1632 MLX5_MAX_DUMP_FILES_NUM,
1633 MLX5_LRO_TIMEOUT_USEC,
1634 MLX5_CLASS_ARG_NAME,
1637 struct rte_kvargs *kvlist;
1641 if (devargs == NULL)
1643 /* Following UGLY cast is done to pass checkpatch. */
1644 kvlist = rte_kvargs_parse(devargs->args, params);
1645 if (kvlist == NULL) {
1649 /* Process parameters. */
1650 for (i = 0; (params[i] != NULL); ++i) {
1651 if (rte_kvargs_count(kvlist, params[i])) {
1652 ret = rte_kvargs_process(kvlist, params[i],
1653 mlx5_args_check, config);
1656 rte_kvargs_free(kvlist);
1661 rte_kvargs_free(kvlist);
1665 static struct rte_pci_driver mlx5_driver;
1668 * PMD global initialization.
1670 * Independent from individual device, this function initializes global
1671 * per-PMD data structures distinguishing primary and secondary processes.
1672 * Hence, each initialization is called once per a process.
1675 * 0 on success, a negative errno value otherwise and rte_errno is set.
1678 mlx5_init_once(void)
1680 struct mlx5_shared_data *sd;
1681 struct mlx5_local_data *ld = &mlx5_local_data;
1684 if (mlx5_init_shared_data())
1686 sd = mlx5_shared_data;
1688 rte_spinlock_lock(&sd->lock);
1689 switch (rte_eal_process_type()) {
1690 case RTE_PROC_PRIMARY:
1693 LIST_INIT(&sd->mem_event_cb_list);
1694 rte_rwlock_init(&sd->mem_event_rwlock);
1695 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
1696 mlx5_mr_mem_event_cb, NULL);
1697 ret = mlx5_mp_init_primary();
1700 sd->init_done = true;
1702 case RTE_PROC_SECONDARY:
1705 ret = mlx5_mp_init_secondary();
1708 ++sd->secondary_cnt;
1709 ld->init_done = true;
1715 rte_spinlock_unlock(&sd->lock);
1720 * Configures the minimal amount of data to inline into WQE
1721 * while sending packets.
1723 * - the txq_inline_min has the maximal priority, if this
1724 * key is specified in devargs
1725 * - if DevX is enabled the inline mode is queried from the
1726 * device (HCA attributes and NIC vport context if needed).
1727 * - otherwise L2 mode (18 bytes) is assumed for ConnectX-4/4 Lx
1728 * and none (0 bytes) for other NICs
1731 * Verbs device parameters (name, port, switch_info) to spawn.
1733 * Device configuration parameters.
1736 mlx5_set_min_inline(struct mlx5_dev_spawn_data *spawn,
1737 struct mlx5_dev_config *config)
1739 if (config->txq_inline_min != MLX5_ARG_UNSET) {
1740 /* Application defines size of inlined data explicitly. */
1741 switch (spawn->pci_dev->id.device_id) {
1742 case PCI_DEVICE_ID_MELLANOX_CONNECTX4:
1743 case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1744 if (config->txq_inline_min <
1745 (int)MLX5_INLINE_HSIZE_L2) {
1747 "txq_inline_mix aligned to minimal"
1748 " ConnectX-4 required value %d",
1749 (int)MLX5_INLINE_HSIZE_L2);
1750 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1756 if (config->hca_attr.eth_net_offloads) {
1757 /* We have DevX enabled, inline mode queried successfully. */
1758 switch (config->hca_attr.wqe_inline_mode) {
1759 case MLX5_CAP_INLINE_MODE_L2:
1760 /* outer L2 header must be inlined. */
1761 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1763 case MLX5_CAP_INLINE_MODE_NOT_REQUIRED:
1764 /* No inline data are required by NIC. */
1765 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1766 config->hw_vlan_insert =
1767 config->hca_attr.wqe_vlan_insert;
1768 DRV_LOG(DEBUG, "Tx VLAN insertion is supported");
1770 case MLX5_CAP_INLINE_MODE_VPORT_CONTEXT:
1771 /* inline mode is defined by NIC vport context. */
1772 if (!config->hca_attr.eth_virt)
1774 switch (config->hca_attr.vport_inline_mode) {
1775 case MLX5_INLINE_MODE_NONE:
1776 config->txq_inline_min =
1777 MLX5_INLINE_HSIZE_NONE;
1779 case MLX5_INLINE_MODE_L2:
1780 config->txq_inline_min =
1781 MLX5_INLINE_HSIZE_L2;
1783 case MLX5_INLINE_MODE_IP:
1784 config->txq_inline_min =
1785 MLX5_INLINE_HSIZE_L3;
1787 case MLX5_INLINE_MODE_TCP_UDP:
1788 config->txq_inline_min =
1789 MLX5_INLINE_HSIZE_L4;
1791 case MLX5_INLINE_MODE_INNER_L2:
1792 config->txq_inline_min =
1793 MLX5_INLINE_HSIZE_INNER_L2;
1795 case MLX5_INLINE_MODE_INNER_IP:
1796 config->txq_inline_min =
1797 MLX5_INLINE_HSIZE_INNER_L3;
1799 case MLX5_INLINE_MODE_INNER_TCP_UDP:
1800 config->txq_inline_min =
1801 MLX5_INLINE_HSIZE_INNER_L4;
1807 * We get here if we are unable to deduce
1808 * inline data size with DevX. Try PCI ID
1809 * to determine old NICs.
1811 switch (spawn->pci_dev->id.device_id) {
1812 case PCI_DEVICE_ID_MELLANOX_CONNECTX4:
1813 case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1814 case PCI_DEVICE_ID_MELLANOX_CONNECTX4LX:
1815 case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1816 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1817 config->hw_vlan_insert = 0;
1819 case PCI_DEVICE_ID_MELLANOX_CONNECTX5:
1820 case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1821 case PCI_DEVICE_ID_MELLANOX_CONNECTX5EX:
1822 case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1824 * These NICs support VLAN insertion from WQE and
1825 * report the wqe_vlan_insert flag. But there is the bug
1826 * and PFC control may be broken, so disable feature.
1828 config->hw_vlan_insert = 0;
1829 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1832 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1836 DRV_LOG(DEBUG, "min tx inline configured: %d", config->txq_inline_min);
1840 * Configures the metadata mask fields in the shared context.
1843 * Pointer to Ethernet device.
1846 mlx5_set_metadata_mask(struct rte_eth_dev *dev)
1848 struct mlx5_priv *priv = dev->data->dev_private;
1849 struct mlx5_ibv_shared *sh = priv->sh;
1850 uint32_t meta, mark, reg_c0;
1852 reg_c0 = ~priv->vport_meta_mask;
1853 switch (priv->config.dv_xmeta_en) {
1854 case MLX5_XMETA_MODE_LEGACY:
1856 mark = MLX5_FLOW_MARK_MASK;
1858 case MLX5_XMETA_MODE_META16:
1859 meta = reg_c0 >> rte_bsf32(reg_c0);
1860 mark = MLX5_FLOW_MARK_MASK;
1862 case MLX5_XMETA_MODE_META32:
1864 mark = (reg_c0 >> rte_bsf32(reg_c0)) & MLX5_FLOW_MARK_MASK;
1872 if (sh->dv_mark_mask && sh->dv_mark_mask != mark)
1873 DRV_LOG(WARNING, "metadata MARK mask mismatche %08X:%08X",
1874 sh->dv_mark_mask, mark);
1876 sh->dv_mark_mask = mark;
1877 if (sh->dv_meta_mask && sh->dv_meta_mask != meta)
1878 DRV_LOG(WARNING, "metadata META mask mismatche %08X:%08X",
1879 sh->dv_meta_mask, meta);
1881 sh->dv_meta_mask = meta;
1882 if (sh->dv_regc0_mask && sh->dv_regc0_mask != reg_c0)
1883 DRV_LOG(WARNING, "metadata reg_c0 mask mismatche %08X:%08X",
1884 sh->dv_meta_mask, reg_c0);
1886 sh->dv_regc0_mask = reg_c0;
1887 DRV_LOG(DEBUG, "metadata mode %u", priv->config.dv_xmeta_en);
1888 DRV_LOG(DEBUG, "metadata MARK mask %08X", sh->dv_mark_mask);
1889 DRV_LOG(DEBUG, "metadata META mask %08X", sh->dv_meta_mask);
1890 DRV_LOG(DEBUG, "metadata reg_c0 mask %08X", sh->dv_regc0_mask);
1894 * Allocate page of door-bells and register it using DevX API.
1897 * Pointer to Ethernet device.
1900 * Pointer to new page on success, NULL otherwise.
1902 static struct mlx5_devx_dbr_page *
1903 mlx5_alloc_dbr_page(struct rte_eth_dev *dev)
1905 struct mlx5_priv *priv = dev->data->dev_private;
1906 struct mlx5_devx_dbr_page *page;
1908 /* Allocate space for door-bell page and management data. */
1909 page = rte_calloc_socket(__func__, 1, sizeof(struct mlx5_devx_dbr_page),
1910 RTE_CACHE_LINE_SIZE, dev->device->numa_node);
1912 DRV_LOG(ERR, "port %u cannot allocate dbr page",
1913 dev->data->port_id);
1916 /* Register allocated memory. */
1917 page->umem = mlx5_glue->devx_umem_reg(priv->sh->ctx, page->dbrs,
1918 MLX5_DBR_PAGE_SIZE, 0);
1920 DRV_LOG(ERR, "port %u cannot umem reg dbr page",
1921 dev->data->port_id);
1929 * Find the next available door-bell, allocate new page if needed.
1932 * Pointer to Ethernet device.
1933 * @param [out] dbr_page
1934 * Door-bell page containing the page data.
1937 * Door-bell address offset on success, a negative error value otherwise.
1940 mlx5_get_dbr(struct rte_eth_dev *dev, struct mlx5_devx_dbr_page **dbr_page)
1942 struct mlx5_priv *priv = dev->data->dev_private;
1943 struct mlx5_devx_dbr_page *page = NULL;
1946 LIST_FOREACH(page, &priv->dbrpgs, next)
1947 if (page->dbr_count < MLX5_DBR_PER_PAGE)
1949 if (!page) { /* No page with free door-bell exists. */
1950 page = mlx5_alloc_dbr_page(dev);
1951 if (!page) /* Failed to allocate new page. */
1953 LIST_INSERT_HEAD(&priv->dbrpgs, page, next);
1955 /* Loop to find bitmap part with clear bit. */
1957 i < MLX5_DBR_BITMAP_SIZE && page->dbr_bitmap[i] == UINT64_MAX;
1960 /* Find the first clear bit. */
1961 j = rte_bsf64(~page->dbr_bitmap[i]);
1962 MLX5_ASSERT(i < (MLX5_DBR_PER_PAGE / 64));
1963 page->dbr_bitmap[i] |= (1 << j);
1966 return (((i * 64) + j) * sizeof(uint64_t));
1970 * Release a door-bell record.
1973 * Pointer to Ethernet device.
1974 * @param [in] umem_id
1975 * UMEM ID of page containing the door-bell record to release.
1976 * @param [in] offset
1977 * Offset of door-bell record in page.
1980 * 0 on success, a negative error value otherwise.
1983 mlx5_release_dbr(struct rte_eth_dev *dev, uint32_t umem_id, uint64_t offset)
1985 struct mlx5_priv *priv = dev->data->dev_private;
1986 struct mlx5_devx_dbr_page *page = NULL;
1989 LIST_FOREACH(page, &priv->dbrpgs, next)
1990 /* Find the page this address belongs to. */
1991 if (page->umem->umem_id == umem_id)
1996 if (!page->dbr_count) {
1997 /* Page not used, free it and remove from list. */
1998 LIST_REMOVE(page, next);
2000 ret = -mlx5_glue->devx_umem_dereg(page->umem);
2003 /* Mark in bitmap that this door-bell is not in use. */
2004 offset /= MLX5_DBR_SIZE;
2005 int i = offset / 64;
2006 int j = offset % 64;
2008 page->dbr_bitmap[i] &= ~(1 << j);
2014 rte_pmd_mlx5_get_dyn_flag_names(char *names[], unsigned int n)
2016 static const char *const dynf_names[] = {
2017 RTE_PMD_MLX5_FINE_GRANULARITY_INLINE,
2018 RTE_MBUF_DYNFLAG_METADATA_NAME
2022 if (n < RTE_DIM(dynf_names))
2024 for (i = 0; i < RTE_DIM(dynf_names); i++) {
2025 if (names[i] == NULL)
2027 strcpy(names[i], dynf_names[i]);
2029 return RTE_DIM(dynf_names);
2033 * Check sibling device configurations.
2035 * Sibling devices sharing the Infiniband device context
2036 * should have compatible configurations. This regards
2037 * representors and bonding slaves.
2040 * Private device descriptor.
2042 * Configuration of the device is going to be created.
2045 * 0 on success, EINVAL otherwise
2048 mlx5_dev_check_sibling_config(struct mlx5_priv *priv,
2049 struct mlx5_dev_config *config)
2051 struct mlx5_ibv_shared *sh = priv->sh;
2052 struct mlx5_dev_config *sh_conf = NULL;
2056 /* Nothing to compare for the single/first device. */
2057 if (sh->refcnt == 1)
2059 /* Find the device with shared context. */
2060 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
2061 struct mlx5_priv *opriv =
2062 rte_eth_devices[port_id].data->dev_private;
2064 if (opriv && opriv != priv && opriv->sh == sh) {
2065 sh_conf = &opriv->config;
2071 if (sh_conf->dv_flow_en ^ config->dv_flow_en) {
2072 DRV_LOG(ERR, "\"dv_flow_en\" configuration mismatch"
2073 " for shared %s context", sh->ibdev_name);
2077 if (sh_conf->dv_xmeta_en ^ config->dv_xmeta_en) {
2078 DRV_LOG(ERR, "\"dv_xmeta_en\" configuration mismatch"
2079 " for shared %s context", sh->ibdev_name);
2086 * Spawn an Ethernet device from Verbs information.
2089 * Backing DPDK device.
2091 * Verbs device parameters (name, port, switch_info) to spawn.
2093 * Device configuration parameters.
2096 * A valid Ethernet device object on success, NULL otherwise and rte_errno
2097 * is set. The following errors are defined:
2099 * EBUSY: device is not supposed to be spawned.
2100 * EEXIST: device is already spawned
2102 static struct rte_eth_dev *
2103 mlx5_dev_spawn(struct rte_device *dpdk_dev,
2104 struct mlx5_dev_spawn_data *spawn,
2105 struct mlx5_dev_config config)
2107 const struct mlx5_switch_info *switch_info = &spawn->info;
2108 struct mlx5_ibv_shared *sh = NULL;
2109 struct ibv_port_attr port_attr;
2110 struct mlx5dv_context dv_attr = { .comp_mask = 0 };
2111 struct rte_eth_dev *eth_dev = NULL;
2112 struct mlx5_priv *priv = NULL;
2114 unsigned int hw_padding = 0;
2116 unsigned int cqe_comp;
2117 unsigned int cqe_pad = 0;
2118 unsigned int tunnel_en = 0;
2119 unsigned int mpls_en = 0;
2120 unsigned int swp = 0;
2121 unsigned int mprq = 0;
2122 unsigned int mprq_min_stride_size_n = 0;
2123 unsigned int mprq_max_stride_size_n = 0;
2124 unsigned int mprq_min_stride_num_n = 0;
2125 unsigned int mprq_max_stride_num_n = 0;
2126 struct rte_ether_addr mac;
2127 char name[RTE_ETH_NAME_MAX_LEN];
2128 int own_domain_id = 0;
2131 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
2132 struct mlx5dv_devx_port devx_port = { .comp_mask = 0 };
2135 /* Determine if this port representor is supposed to be spawned. */
2136 if (switch_info->representor && dpdk_dev->devargs) {
2137 struct rte_eth_devargs eth_da;
2139 err = rte_eth_devargs_parse(dpdk_dev->devargs->args, ð_da);
2142 DRV_LOG(ERR, "failed to process device arguments: %s",
2143 strerror(rte_errno));
2146 for (i = 0; i < eth_da.nb_representor_ports; ++i)
2147 if (eth_da.representor_ports[i] ==
2148 (uint16_t)switch_info->port_name)
2150 if (i == eth_da.nb_representor_ports) {
2155 /* Build device name. */
2156 if (spawn->pf_bond < 0) {
2157 /* Single device. */
2158 if (!switch_info->representor)
2159 strlcpy(name, dpdk_dev->name, sizeof(name));
2161 snprintf(name, sizeof(name), "%s_representor_%u",
2162 dpdk_dev->name, switch_info->port_name);
2164 /* Bonding device. */
2165 if (!switch_info->representor)
2166 snprintf(name, sizeof(name), "%s_%s",
2167 dpdk_dev->name, spawn->ibv_dev->name);
2169 snprintf(name, sizeof(name), "%s_%s_representor_%u",
2170 dpdk_dev->name, spawn->ibv_dev->name,
2171 switch_info->port_name);
2173 /* check if the device is already spawned */
2174 if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
2178 DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
2179 if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
2180 eth_dev = rte_eth_dev_attach_secondary(name);
2181 if (eth_dev == NULL) {
2182 DRV_LOG(ERR, "can not attach rte ethdev");
2186 eth_dev->device = dpdk_dev;
2187 eth_dev->dev_ops = &mlx5_dev_sec_ops;
2188 err = mlx5_proc_priv_init(eth_dev);
2191 /* Receive command fd from primary process */
2192 err = mlx5_mp_req_verbs_cmd_fd(eth_dev);
2195 /* Remap UAR for Tx queues. */
2196 err = mlx5_tx_uar_init_secondary(eth_dev, err);
2200 * Ethdev pointer is still required as input since
2201 * the primary device is not accessible from the
2202 * secondary process.
2204 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev);
2205 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev);
2209 * Some parameters ("tx_db_nc" in particularly) are needed in
2210 * advance to create dv/verbs device context. We proceed the
2211 * devargs here to get ones, and later proceed devargs again
2212 * to override some hardware settings.
2214 err = mlx5_args(&config, dpdk_dev->devargs);
2217 DRV_LOG(ERR, "failed to process device arguments: %s",
2218 strerror(rte_errno));
2221 sh = mlx5_alloc_shared_ibctx(spawn, &config);
2224 config.devx = sh->devx;
2225 #ifdef HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR
2226 config.dest_tir = 1;
2228 #ifdef HAVE_IBV_MLX5_MOD_SWP
2229 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
2232 * Multi-packet send is supported by ConnectX-4 Lx PF as well
2233 * as all ConnectX-5 devices.
2235 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2236 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
2238 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
2239 dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
2241 mlx5_glue->dv_query_device(sh->ctx, &dv_attr);
2242 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
2243 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
2244 DRV_LOG(DEBUG, "enhanced MPW is supported");
2245 mps = MLX5_MPW_ENHANCED;
2247 DRV_LOG(DEBUG, "MPW is supported");
2251 DRV_LOG(DEBUG, "MPW isn't supported");
2252 mps = MLX5_MPW_DISABLED;
2254 #ifdef HAVE_IBV_MLX5_MOD_SWP
2255 if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
2256 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
2257 DRV_LOG(DEBUG, "SWP support: %u", swp);
2260 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
2261 if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
2262 struct mlx5dv_striding_rq_caps mprq_caps =
2263 dv_attr.striding_rq_caps;
2265 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
2266 mprq_caps.min_single_stride_log_num_of_bytes);
2267 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
2268 mprq_caps.max_single_stride_log_num_of_bytes);
2269 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
2270 mprq_caps.min_single_wqe_log_num_of_strides);
2271 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
2272 mprq_caps.max_single_wqe_log_num_of_strides);
2273 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
2274 mprq_caps.supported_qpts);
2275 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
2277 mprq_min_stride_size_n =
2278 mprq_caps.min_single_stride_log_num_of_bytes;
2279 mprq_max_stride_size_n =
2280 mprq_caps.max_single_stride_log_num_of_bytes;
2281 mprq_min_stride_num_n =
2282 mprq_caps.min_single_wqe_log_num_of_strides;
2283 mprq_max_stride_num_n =
2284 mprq_caps.max_single_wqe_log_num_of_strides;
2285 config.mprq.stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
2286 mprq_min_stride_num_n);
2289 if (RTE_CACHE_LINE_SIZE == 128 &&
2290 !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
2294 config.cqe_comp = cqe_comp;
2295 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
2296 /* Whether device supports 128B Rx CQE padding. */
2297 cqe_pad = RTE_CACHE_LINE_SIZE == 128 &&
2298 (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_PAD);
2300 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2301 if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
2302 tunnel_en = ((dv_attr.tunnel_offloads_caps &
2303 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
2304 (dv_attr.tunnel_offloads_caps &
2305 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE) &&
2306 (dv_attr.tunnel_offloads_caps &
2307 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GENEVE));
2309 DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
2310 tunnel_en ? "" : "not ");
2313 "tunnel offloading disabled due to old OFED/rdma-core version");
2315 config.tunnel_en = tunnel_en;
2316 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
2317 mpls_en = ((dv_attr.tunnel_offloads_caps &
2318 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
2319 (dv_attr.tunnel_offloads_caps &
2320 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
2321 DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
2322 mpls_en ? "" : "not ");
2324 DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
2325 " old OFED/rdma-core version or firmware configuration");
2327 config.mpls_en = mpls_en;
2328 /* Check port status. */
2329 err = mlx5_glue->query_port(sh->ctx, spawn->ibv_port, &port_attr);
2331 DRV_LOG(ERR, "port query failed: %s", strerror(err));
2334 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
2335 DRV_LOG(ERR, "port is not configured in Ethernet mode");
2339 if (port_attr.state != IBV_PORT_ACTIVE)
2340 DRV_LOG(DEBUG, "port is not active: \"%s\" (%d)",
2341 mlx5_glue->port_state_str(port_attr.state),
2343 /* Allocate private eth device data. */
2344 priv = rte_zmalloc("ethdev private structure",
2346 RTE_CACHE_LINE_SIZE);
2348 DRV_LOG(ERR, "priv allocation failure");
2353 priv->ibv_port = spawn->ibv_port;
2354 priv->pci_dev = spawn->pci_dev;
2355 priv->mtu = RTE_ETHER_MTU;
2357 /* Initialize UAR access locks for 32bit implementations. */
2358 rte_spinlock_init(&priv->uar_lock_cq);
2359 for (i = 0; i < MLX5_UAR_PAGE_NUM_MAX; i++)
2360 rte_spinlock_init(&priv->uar_lock[i]);
2362 /* Some internal functions rely on Netlink sockets, open them now. */
2363 priv->nl_socket_rdma = mlx5_nl_init(NETLINK_RDMA);
2364 priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE);
2365 priv->representor = !!switch_info->representor;
2366 priv->master = !!switch_info->master;
2367 priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
2368 priv->vport_meta_tag = 0;
2369 priv->vport_meta_mask = 0;
2370 priv->pf_bond = spawn->pf_bond;
2371 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
2373 * The DevX port query API is implemented. E-Switch may use
2374 * either vport or reg_c[0] metadata register to match on
2375 * vport index. The engaged part of metadata register is
2378 if (switch_info->representor || switch_info->master) {
2379 devx_port.comp_mask = MLX5DV_DEVX_PORT_VPORT |
2380 MLX5DV_DEVX_PORT_MATCH_REG_C_0;
2381 err = mlx5_glue->devx_port_query(sh->ctx, spawn->ibv_port,
2385 "can't query devx port %d on device %s",
2386 spawn->ibv_port, spawn->ibv_dev->name);
2387 devx_port.comp_mask = 0;
2390 if (devx_port.comp_mask & MLX5DV_DEVX_PORT_MATCH_REG_C_0) {
2391 priv->vport_meta_tag = devx_port.reg_c_0.value;
2392 priv->vport_meta_mask = devx_port.reg_c_0.mask;
2393 if (!priv->vport_meta_mask) {
2394 DRV_LOG(ERR, "vport zero mask for port %d"
2395 " on bonding device %s",
2396 spawn->ibv_port, spawn->ibv_dev->name);
2400 if (priv->vport_meta_tag & ~priv->vport_meta_mask) {
2401 DRV_LOG(ERR, "invalid vport tag for port %d"
2402 " on bonding device %s",
2403 spawn->ibv_port, spawn->ibv_dev->name);
2408 if (devx_port.comp_mask & MLX5DV_DEVX_PORT_VPORT) {
2409 priv->vport_id = devx_port.vport_num;
2410 } else if (spawn->pf_bond >= 0) {
2411 DRV_LOG(ERR, "can't deduce vport index for port %d"
2412 " on bonding device %s",
2413 spawn->ibv_port, spawn->ibv_dev->name);
2417 /* Suppose vport index in compatible way. */
2418 priv->vport_id = switch_info->representor ?
2419 switch_info->port_name + 1 : -1;
2423 * Kernel/rdma_core support single E-Switch per PF configurations
2424 * only and vport_id field contains the vport index for
2425 * associated VF, which is deduced from representor port name.
2426 * For example, let's have the IB device port 10, it has
2427 * attached network device eth0, which has port name attribute
2428 * pf0vf2, we can deduce the VF number as 2, and set vport index
2429 * as 3 (2+1). This assigning schema should be changed if the
2430 * multiple E-Switch instances per PF configurations or/and PCI
2431 * subfunctions are added.
2433 priv->vport_id = switch_info->representor ?
2434 switch_info->port_name + 1 : -1;
2436 /* representor_id field keeps the unmodified VF index. */
2437 priv->representor_id = switch_info->representor ?
2438 switch_info->port_name : -1;
2440 * Look for sibling devices in order to reuse their switch domain
2441 * if any, otherwise allocate one.
2443 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
2444 const struct mlx5_priv *opriv =
2445 rte_eth_devices[port_id].data->dev_private;
2448 opriv->sh != priv->sh ||
2450 RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
2452 priv->domain_id = opriv->domain_id;
2455 if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
2456 err = rte_eth_switch_domain_alloc(&priv->domain_id);
2459 DRV_LOG(ERR, "unable to allocate switch domain: %s",
2460 strerror(rte_errno));
2465 /* Override some values set by hardware configuration. */
2466 mlx5_args(&config, dpdk_dev->devargs);
2467 err = mlx5_dev_check_sibling_config(priv, &config);
2470 config.hw_csum = !!(sh->device_attr.device_cap_flags_ex &
2471 IBV_DEVICE_RAW_IP_CSUM);
2472 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
2473 (config.hw_csum ? "" : "not "));
2474 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
2475 !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
2476 DRV_LOG(DEBUG, "counters are not supported");
2478 #if !defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_MLX5DV_DR)
2479 if (config.dv_flow_en) {
2480 DRV_LOG(WARNING, "DV flow is not supported");
2481 config.dv_flow_en = 0;
2484 config.ind_table_max_size =
2485 sh->device_attr.rss_caps.max_rwq_indirection_table_size;
2487 * Remove this check once DPDK supports larger/variable
2488 * indirection tables.
2490 if (config.ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
2491 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
2492 DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
2493 config.ind_table_max_size);
2494 config.hw_vlan_strip = !!(sh->device_attr.raw_packet_caps &
2495 IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
2496 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
2497 (config.hw_vlan_strip ? "" : "not "));
2498 config.hw_fcs_strip = !!(sh->device_attr.raw_packet_caps &
2499 IBV_RAW_PACKET_CAP_SCATTER_FCS);
2500 DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
2501 (config.hw_fcs_strip ? "" : "not "));
2502 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
2503 hw_padding = !!sh->device_attr.rx_pad_end_addr_align;
2504 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
2505 hw_padding = !!(sh->device_attr.device_cap_flags_ex &
2506 IBV_DEVICE_PCI_WRITE_END_PADDING);
2508 if (config.hw_padding && !hw_padding) {
2509 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
2510 config.hw_padding = 0;
2511 } else if (config.hw_padding) {
2512 DRV_LOG(DEBUG, "Rx end alignment padding is enabled");
2514 config.tso = (sh->device_attr.tso_caps.max_tso > 0 &&
2515 (sh->device_attr.tso_caps.supported_qpts &
2516 (1 << IBV_QPT_RAW_PACKET)));
2518 config.tso_max_payload_sz = sh->device_attr.tso_caps.max_tso;
2520 * MPW is disabled by default, while the Enhanced MPW is enabled
2523 if (config.mps == MLX5_ARG_UNSET)
2524 config.mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED :
2527 config.mps = config.mps ? mps : MLX5_MPW_DISABLED;
2528 DRV_LOG(INFO, "%sMPS is %s",
2529 config.mps == MLX5_MPW_ENHANCED ? "enhanced " :
2530 config.mps == MLX5_MPW ? "legacy " : "",
2531 config.mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
2532 if (config.cqe_comp && !cqe_comp) {
2533 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
2534 config.cqe_comp = 0;
2536 if (config.cqe_pad && !cqe_pad) {
2537 DRV_LOG(WARNING, "Rx CQE padding isn't supported");
2539 } else if (config.cqe_pad) {
2540 DRV_LOG(INFO, "Rx CQE padding is enabled");
2543 priv->counter_fallback = 0;
2544 err = mlx5_devx_cmd_query_hca_attr(sh->ctx, &config.hca_attr);
2549 if (!config.hca_attr.flow_counters_dump)
2550 priv->counter_fallback = 1;
2551 #ifndef HAVE_IBV_DEVX_ASYNC
2552 priv->counter_fallback = 1;
2554 if (priv->counter_fallback)
2555 DRV_LOG(INFO, "Use fall-back DV counter management");
2556 /* Check for LRO support. */
2557 if (config.dest_tir && config.hca_attr.lro_cap &&
2558 config.dv_flow_en) {
2559 /* TBD check tunnel lro caps. */
2560 config.lro.supported = config.hca_attr.lro_cap;
2561 DRV_LOG(DEBUG, "Device supports LRO");
2563 * If LRO timeout is not configured by application,
2564 * use the minimal supported value.
2566 if (!config.lro.timeout)
2567 config.lro.timeout =
2568 config.hca_attr.lro_timer_supported_periods[0];
2569 DRV_LOG(DEBUG, "LRO session timeout set to %d usec",
2570 config.lro.timeout);
2572 #if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER)
2573 if (config.hca_attr.qos.sup && config.hca_attr.qos.srtcm_sup &&
2574 config.dv_flow_en) {
2575 uint8_t reg_c_mask =
2576 config.hca_attr.qos.flow_meter_reg_c_ids;
2578 * Meter needs two REG_C's for color match and pre-sfx
2579 * flow match. Here get the REG_C for color match.
2580 * REG_C_0 and REG_C_1 is reserved for metadata feature.
2583 if (__builtin_popcount(reg_c_mask) < 1) {
2585 DRV_LOG(WARNING, "No available register for"
2588 priv->mtr_color_reg = ffs(reg_c_mask) - 1 +
2591 priv->mtr_reg_share =
2592 config.hca_attr.qos.flow_meter_reg_share;
2593 DRV_LOG(DEBUG, "The REG_C meter uses is %d",
2594 priv->mtr_color_reg);
2599 if (config.mprq.enabled && mprq) {
2600 if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
2601 config.mprq.stride_num_n < mprq_min_stride_num_n) {
2602 config.mprq.stride_num_n =
2603 RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
2604 mprq_min_stride_num_n);
2606 "the number of strides"
2607 " for Multi-Packet RQ is out of range,"
2608 " setting default value (%u)",
2609 1 << config.mprq.stride_num_n);
2611 config.mprq.min_stride_size_n = mprq_min_stride_size_n;
2612 config.mprq.max_stride_size_n = mprq_max_stride_size_n;
2613 } else if (config.mprq.enabled && !mprq) {
2614 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
2615 config.mprq.enabled = 0;
2617 if (config.max_dump_files_num == 0)
2618 config.max_dump_files_num = 128;
2619 eth_dev = rte_eth_dev_allocate(name);
2620 if (eth_dev == NULL) {
2621 DRV_LOG(ERR, "can not allocate rte ethdev");
2625 /* Flag to call rte_eth_dev_release_port() in rte_eth_dev_close(). */
2626 eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
2627 if (priv->representor) {
2628 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
2629 eth_dev->data->representor_id = priv->representor_id;
2632 * Store associated network device interface index. This index
2633 * is permanent throughout the lifetime of device. So, we may store
2634 * the ifindex here and use the cached value further.
2636 MLX5_ASSERT(spawn->ifindex);
2637 priv->if_index = spawn->ifindex;
2638 eth_dev->data->dev_private = priv;
2639 priv->dev_data = eth_dev->data;
2640 eth_dev->data->mac_addrs = priv->mac;
2641 eth_dev->device = dpdk_dev;
2642 /* Configure the first MAC address by default. */
2643 if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
2645 "port %u cannot get MAC address, is mlx5_en"
2646 " loaded? (errno: %s)",
2647 eth_dev->data->port_id, strerror(rte_errno));
2652 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
2653 eth_dev->data->port_id,
2654 mac.addr_bytes[0], mac.addr_bytes[1],
2655 mac.addr_bytes[2], mac.addr_bytes[3],
2656 mac.addr_bytes[4], mac.addr_bytes[5]);
2657 #ifdef RTE_LIBRTE_MLX5_DEBUG
2659 char ifname[IF_NAMESIZE];
2661 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
2662 DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
2663 eth_dev->data->port_id, ifname);
2665 DRV_LOG(DEBUG, "port %u ifname is unknown",
2666 eth_dev->data->port_id);
2669 /* Get actual MTU if possible. */
2670 err = mlx5_get_mtu(eth_dev, &priv->mtu);
2675 DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
2677 /* Initialize burst functions to prevent crashes before link-up. */
2678 eth_dev->rx_pkt_burst = removed_rx_burst;
2679 eth_dev->tx_pkt_burst = removed_tx_burst;
2680 eth_dev->dev_ops = &mlx5_dev_ops;
2681 /* Register MAC address. */
2682 claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
2683 if (config.vf && config.vf_nl_en)
2684 mlx5_nl_mac_addr_sync(priv->nl_socket_route,
2685 mlx5_ifindex(eth_dev),
2686 eth_dev->data->mac_addrs,
2687 MLX5_MAX_MAC_ADDRESSES);
2688 TAILQ_INIT(&priv->flows);
2689 TAILQ_INIT(&priv->ctrl_flows);
2690 TAILQ_INIT(&priv->flow_meters);
2691 TAILQ_INIT(&priv->flow_meter_profiles);
2692 /* Hint libmlx5 to use PMD allocator for data plane resources */
2693 struct mlx5dv_ctx_allocators alctr = {
2694 .alloc = &mlx5_alloc_verbs_buf,
2695 .free = &mlx5_free_verbs_buf,
2698 mlx5_glue->dv_set_context_attr(sh->ctx,
2699 MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
2700 (void *)((uintptr_t)&alctr));
2701 /* Bring Ethernet device up. */
2702 DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
2703 eth_dev->data->port_id);
2704 mlx5_set_link_up(eth_dev);
2706 * Even though the interrupt handler is not installed yet,
2707 * interrupts will still trigger on the async_fd from
2708 * Verbs context returned by ibv_open_device().
2710 mlx5_link_update(eth_dev, 0);
2711 #ifdef HAVE_MLX5DV_DR_ESWITCH
2712 if (!(config.hca_attr.eswitch_manager && config.dv_flow_en &&
2713 (switch_info->representor || switch_info->master)))
2714 config.dv_esw_en = 0;
2716 config.dv_esw_en = 0;
2718 /* Detect minimal data bytes to inline. */
2719 mlx5_set_min_inline(spawn, &config);
2720 /* Store device configuration on private structure. */
2721 priv->config = config;
2722 /* Create context for virtual machine VLAN workaround. */
2723 priv->vmwa_context = mlx5_vlan_vmwa_init(eth_dev, spawn->ifindex);
2724 if (config.dv_flow_en) {
2725 err = mlx5_alloc_shared_dr(priv);
2729 * RSS id is shared with meter flow id. Meter flow id can only
2730 * use the 24 MSB of the register.
2732 priv->qrss_id_pool = mlx5_flow_id_pool_alloc(UINT32_MAX >>
2733 MLX5_MTR_COLOR_BITS);
2734 if (!priv->qrss_id_pool) {
2735 DRV_LOG(ERR, "can't create flow id pool");
2740 /* Supported Verbs flow priority number detection. */
2741 err = mlx5_flow_discover_priorities(eth_dev);
2746 priv->config.flow_prio = err;
2747 if (!priv->config.dv_esw_en &&
2748 priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
2749 DRV_LOG(WARNING, "metadata mode %u is not supported "
2750 "(no E-Switch)", priv->config.dv_xmeta_en);
2751 priv->config.dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
2753 mlx5_set_metadata_mask(eth_dev);
2754 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
2755 !priv->sh->dv_regc0_mask) {
2756 DRV_LOG(ERR, "metadata mode %u is not supported "
2757 "(no metadata reg_c[0] is available)",
2758 priv->config.dv_xmeta_en);
2762 /* Query availibility of metadata reg_c's. */
2763 err = mlx5_flow_discover_mreg_c(eth_dev);
2768 if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
2770 "port %u extensive metadata register is not supported",
2771 eth_dev->data->port_id);
2772 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
2773 DRV_LOG(ERR, "metadata mode %u is not supported "
2774 "(no metadata registers available)",
2775 priv->config.dv_xmeta_en);
2780 if (priv->config.dv_flow_en &&
2781 priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
2782 mlx5_flow_ext_mreg_supported(eth_dev) &&
2783 priv->sh->dv_regc0_mask) {
2784 priv->mreg_cp_tbl = mlx5_hlist_create(MLX5_FLOW_MREG_HNAME,
2785 MLX5_FLOW_MREG_HTABLE_SZ);
2786 if (!priv->mreg_cp_tbl) {
2794 if (priv->mreg_cp_tbl)
2795 mlx5_hlist_destroy(priv->mreg_cp_tbl, NULL, NULL);
2797 mlx5_free_shared_dr(priv);
2798 if (priv->nl_socket_route >= 0)
2799 close(priv->nl_socket_route);
2800 if (priv->nl_socket_rdma >= 0)
2801 close(priv->nl_socket_rdma);
2802 if (priv->vmwa_context)
2803 mlx5_vlan_vmwa_exit(priv->vmwa_context);
2804 if (priv->qrss_id_pool)
2805 mlx5_flow_id_pool_release(priv->qrss_id_pool);
2807 claim_zero(rte_eth_switch_domain_free(priv->domain_id));
2809 if (eth_dev != NULL)
2810 eth_dev->data->dev_private = NULL;
2812 if (eth_dev != NULL) {
2813 /* mac_addrs must not be freed alone because part of dev_private */
2814 eth_dev->data->mac_addrs = NULL;
2815 rte_eth_dev_release_port(eth_dev);
2818 mlx5_free_shared_ibctx(sh);
2819 MLX5_ASSERT(err > 0);
2825 * Comparison callback to sort device data.
2827 * This is meant to be used with qsort().
2830 * Pointer to pointer to first data object.
2832 * Pointer to pointer to second data object.
2835 * 0 if both objects are equal, less than 0 if the first argument is less
2836 * than the second, greater than 0 otherwise.
2839 mlx5_dev_spawn_data_cmp(const void *a, const void *b)
2841 const struct mlx5_switch_info *si_a =
2842 &((const struct mlx5_dev_spawn_data *)a)->info;
2843 const struct mlx5_switch_info *si_b =
2844 &((const struct mlx5_dev_spawn_data *)b)->info;
2847 /* Master device first. */
2848 ret = si_b->master - si_a->master;
2851 /* Then representor devices. */
2852 ret = si_b->representor - si_a->representor;
2855 /* Unidentified devices come last in no specific order. */
2856 if (!si_a->representor)
2858 /* Order representors by name. */
2859 return si_a->port_name - si_b->port_name;
2863 * Match PCI information for possible slaves of bonding device.
2865 * @param[in] ibv_dev
2866 * Pointer to Infiniband device structure.
2867 * @param[in] pci_dev
2868 * Pointer to PCI device structure to match PCI address.
2869 * @param[in] nl_rdma
2870 * Netlink RDMA group socket handle.
2873 * negative value if no bonding device found, otherwise
2874 * positive index of slave PF in bonding.
2877 mlx5_device_bond_pci_match(const struct ibv_device *ibv_dev,
2878 const struct rte_pci_device *pci_dev,
2881 char ifname[IF_NAMESIZE + 1];
2882 unsigned int ifindex;
2888 * Try to get master device name. If something goes
2889 * wrong suppose the lack of kernel support and no
2894 if (!strstr(ibv_dev->name, "bond"))
2896 np = mlx5_nl_portnum(nl_rdma, ibv_dev->name);
2900 * The Master device might not be on the predefined
2901 * port (not on port index 1, it is not garanted),
2902 * we have to scan all Infiniband device port and
2905 for (i = 1; i <= np; ++i) {
2906 /* Check whether Infiniband port is populated. */
2907 ifindex = mlx5_nl_ifindex(nl_rdma, ibv_dev->name, i);
2910 if (!if_indextoname(ifindex, ifname))
2912 /* Try to read bonding slave names from sysfs. */
2914 "/sys/class/net/%s/master/bonding/slaves", ifname);
2915 file = fopen(slaves, "r");
2921 /* Use safe format to check maximal buffer length. */
2922 MLX5_ASSERT(atol(RTE_STR(IF_NAMESIZE)) == IF_NAMESIZE);
2923 while (fscanf(file, "%" RTE_STR(IF_NAMESIZE) "s", ifname) == 1) {
2924 char tmp_str[IF_NAMESIZE + 32];
2925 struct rte_pci_addr pci_addr;
2926 struct mlx5_switch_info info;
2928 /* Process slave interface names in the loop. */
2929 snprintf(tmp_str, sizeof(tmp_str),
2930 "/sys/class/net/%s", ifname);
2931 if (mlx5_dev_to_pci_addr(tmp_str, &pci_addr)) {
2932 DRV_LOG(WARNING, "can not get PCI address"
2933 " for netdev \"%s\"", ifname);
2936 if (pci_dev->addr.domain != pci_addr.domain ||
2937 pci_dev->addr.bus != pci_addr.bus ||
2938 pci_dev->addr.devid != pci_addr.devid ||
2939 pci_dev->addr.function != pci_addr.function)
2941 /* Slave interface PCI address match found. */
2943 snprintf(tmp_str, sizeof(tmp_str),
2944 "/sys/class/net/%s/phys_port_name", ifname);
2945 file = fopen(tmp_str, "rb");
2948 info.name_type = MLX5_PHYS_PORT_NAME_TYPE_NOTSET;
2949 if (fscanf(file, "%32s", tmp_str) == 1)
2950 mlx5_translate_port_name(tmp_str, &info);
2951 if (info.name_type == MLX5_PHYS_PORT_NAME_TYPE_LEGACY ||
2952 info.name_type == MLX5_PHYS_PORT_NAME_TYPE_UPLINK)
2953 pf = info.port_name;
2962 * DPDK callback to register a PCI device.
2964 * This function spawns Ethernet devices out of a given PCI device.
2966 * @param[in] pci_drv
2967 * PCI driver structure (mlx5_driver).
2968 * @param[in] pci_dev
2969 * PCI device information.
2972 * 0 on success, a negative errno value otherwise and rte_errno is set.
2975 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2976 struct rte_pci_device *pci_dev)
2978 struct ibv_device **ibv_list;
2980 * Number of found IB Devices matching with requested PCI BDF.
2981 * nd != 1 means there are multiple IB devices over the same
2982 * PCI device and we have representors and master.
2984 unsigned int nd = 0;
2986 * Number of found IB device Ports. nd = 1 and np = 1..n means
2987 * we have the single multiport IB device, and there may be
2988 * representors attached to some of found ports.
2990 unsigned int np = 0;
2992 * Number of DPDK ethernet devices to Spawn - either over
2993 * multiple IB devices or multiple ports of single IB device.
2994 * Actually this is the number of iterations to spawn.
2996 unsigned int ns = 0;
2999 * < 0 - no bonding device (single one)
3000 * >= 0 - bonding device (value is slave PF index)
3003 struct mlx5_dev_spawn_data *list = NULL;
3004 struct mlx5_dev_config dev_config;
3007 if (mlx5_class_get(pci_dev->device.devargs) != MLX5_CLASS_NET) {
3008 DRV_LOG(DEBUG, "Skip probing - should be probed by other mlx5"
3012 if (rte_eal_process_type() == RTE_PROC_PRIMARY)
3013 mlx5_pmd_socket_init();
3014 ret = mlx5_init_once();
3016 DRV_LOG(ERR, "unable to init PMD global data: %s",
3017 strerror(rte_errno));
3020 MLX5_ASSERT(pci_drv == &mlx5_driver);
3022 ibv_list = mlx5_glue->get_device_list(&ret);
3024 rte_errno = errno ? errno : ENOSYS;
3025 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
3029 * First scan the list of all Infiniband devices to find
3030 * matching ones, gathering into the list.
3032 struct ibv_device *ibv_match[ret + 1];
3033 int nl_route = mlx5_nl_init(NETLINK_ROUTE);
3034 int nl_rdma = mlx5_nl_init(NETLINK_RDMA);
3038 struct rte_pci_addr pci_addr;
3040 DRV_LOG(DEBUG, "checking device \"%s\"", ibv_list[ret]->name);
3041 bd = mlx5_device_bond_pci_match
3042 (ibv_list[ret], pci_dev, nl_rdma);
3045 * Bonding device detected. Only one match is allowed,
3046 * the bonding is supported over multi-port IB device,
3047 * there should be no matches on representor PCI
3048 * functions or non VF LAG bonding devices with
3049 * specified address.
3053 "multiple PCI match on bonding device"
3054 "\"%s\" found", ibv_list[ret]->name);
3059 DRV_LOG(INFO, "PCI information matches for"
3060 " slave %d bonding device \"%s\"",
3061 bd, ibv_list[ret]->name);
3062 ibv_match[nd++] = ibv_list[ret];
3065 if (mlx5_dev_to_pci_addr
3066 (ibv_list[ret]->ibdev_path, &pci_addr))
3068 if (pci_dev->addr.domain != pci_addr.domain ||
3069 pci_dev->addr.bus != pci_addr.bus ||
3070 pci_dev->addr.devid != pci_addr.devid ||
3071 pci_dev->addr.function != pci_addr.function)
3073 DRV_LOG(INFO, "PCI information matches for device \"%s\"",
3074 ibv_list[ret]->name);
3075 ibv_match[nd++] = ibv_list[ret];
3077 ibv_match[nd] = NULL;
3079 /* No device matches, just complain and bail out. */
3081 "no Verbs device matches PCI device " PCI_PRI_FMT ","
3082 " are kernel drivers loaded?",
3083 pci_dev->addr.domain, pci_dev->addr.bus,
3084 pci_dev->addr.devid, pci_dev->addr.function);
3091 * Found single matching device may have multiple ports.
3092 * Each port may be representor, we have to check the port
3093 * number and check the representors existence.
3096 np = mlx5_nl_portnum(nl_rdma, ibv_match[0]->name);
3098 DRV_LOG(WARNING, "can not get IB device \"%s\""
3099 " ports number", ibv_match[0]->name);
3100 if (bd >= 0 && !np) {
3101 DRV_LOG(ERR, "can not get ports"
3102 " for bonding device");
3108 #ifndef HAVE_MLX5DV_DR_DEVX_PORT
3111 * This may happen if there is VF LAG kernel support and
3112 * application is compiled with older rdma_core library.
3115 "No kernel/verbs support for VF LAG bonding found.");
3116 rte_errno = ENOTSUP;
3122 * Now we can determine the maximal
3123 * amount of devices to be spawned.
3125 list = rte_zmalloc("device spawn data",
3126 sizeof(struct mlx5_dev_spawn_data) *
3128 RTE_CACHE_LINE_SIZE);
3130 DRV_LOG(ERR, "spawn data array allocation failure");
3135 if (bd >= 0 || np > 1) {
3137 * Single IB device with multiple ports found,
3138 * it may be E-Switch master device and representors.
3139 * We have to perform identification trough the ports.
3141 MLX5_ASSERT(nl_rdma >= 0);
3142 MLX5_ASSERT(ns == 0);
3143 MLX5_ASSERT(nd == 1);
3145 for (i = 1; i <= np; ++i) {
3146 list[ns].max_port = np;
3147 list[ns].ibv_port = i;
3148 list[ns].ibv_dev = ibv_match[0];
3149 list[ns].eth_dev = NULL;
3150 list[ns].pci_dev = pci_dev;
3151 list[ns].pf_bond = bd;
3152 list[ns].ifindex = mlx5_nl_ifindex
3153 (nl_rdma, list[ns].ibv_dev->name, i);
3154 if (!list[ns].ifindex) {
3156 * No network interface index found for the
3157 * specified port, it means there is no
3158 * representor on this port. It's OK,
3159 * there can be disabled ports, for example
3160 * if sriov_numvfs < sriov_totalvfs.
3166 ret = mlx5_nl_switch_info
3170 if (ret || (!list[ns].info.representor &&
3171 !list[ns].info.master)) {
3173 * We failed to recognize representors with
3174 * Netlink, let's try to perform the task
3177 ret = mlx5_sysfs_switch_info
3181 if (!ret && bd >= 0) {
3182 switch (list[ns].info.name_type) {
3183 case MLX5_PHYS_PORT_NAME_TYPE_UPLINK:
3184 if (list[ns].info.port_name == bd)
3187 case MLX5_PHYS_PORT_NAME_TYPE_PFVF:
3188 if (list[ns].info.pf_num == bd)
3196 if (!ret && (list[ns].info.representor ^
3197 list[ns].info.master))
3202 "unable to recognize master/representors"
3203 " on the IB device with multiple ports");
3210 * The existence of several matching entries (nd > 1) means
3211 * port representors have been instantiated. No existing Verbs
3212 * call nor sysfs entries can tell them apart, this can only
3213 * be done through Netlink calls assuming kernel drivers are
3214 * recent enough to support them.
3216 * In the event of identification failure through Netlink,
3217 * try again through sysfs, then:
3219 * 1. A single IB device matches (nd == 1) with single
3220 * port (np=0/1) and is not a representor, assume
3221 * no switch support.
3223 * 2. Otherwise no safe assumptions can be made;
3224 * complain louder and bail out.
3227 for (i = 0; i != nd; ++i) {
3228 memset(&list[ns].info, 0, sizeof(list[ns].info));
3229 list[ns].max_port = 1;
3230 list[ns].ibv_port = 1;
3231 list[ns].ibv_dev = ibv_match[i];
3232 list[ns].eth_dev = NULL;
3233 list[ns].pci_dev = pci_dev;
3234 list[ns].pf_bond = -1;
3235 list[ns].ifindex = 0;
3237 list[ns].ifindex = mlx5_nl_ifindex
3238 (nl_rdma, list[ns].ibv_dev->name, 1);
3239 if (!list[ns].ifindex) {
3240 char ifname[IF_NAMESIZE];
3243 * Netlink failed, it may happen with old
3244 * ib_core kernel driver (before 4.16).
3245 * We can assume there is old driver because
3246 * here we are processing single ports IB
3247 * devices. Let's try sysfs to retrieve
3248 * the ifindex. The method works for
3249 * master device only.
3253 * Multiple devices found, assume
3254 * representors, can not distinguish
3255 * master/representor and retrieve
3256 * ifindex via sysfs.
3260 ret = mlx5_get_master_ifname
3261 (ibv_match[i]->ibdev_path, &ifname);
3264 if_nametoindex(ifname);
3265 if (!list[ns].ifindex) {
3267 * No network interface index found
3268 * for the specified device, it means
3269 * there it is neither representor
3277 ret = mlx5_nl_switch_info
3281 if (ret || (!list[ns].info.representor &&
3282 !list[ns].info.master)) {
3284 * We failed to recognize representors with
3285 * Netlink, let's try to perform the task
3288 ret = mlx5_sysfs_switch_info
3292 if (!ret && (list[ns].info.representor ^
3293 list[ns].info.master)) {
3295 } else if ((nd == 1) &&
3296 !list[ns].info.representor &&
3297 !list[ns].info.master) {
3299 * Single IB device with
3300 * one physical port and
3301 * attached network device.
3302 * May be SRIOV is not enabled
3303 * or there is no representors.
3305 DRV_LOG(INFO, "no E-Switch support detected");
3312 "unable to recognize master/representors"
3313 " on the multiple IB devices");
3321 * Sort list to probe devices in natural order for users convenience
3322 * (i.e. master first, then representors from lowest to highest ID).
3324 qsort(list, ns, sizeof(*list), mlx5_dev_spawn_data_cmp);
3325 /* Default configuration. */
3326 dev_config = (struct mlx5_dev_config){
3328 .mps = MLX5_ARG_UNSET,
3329 .dbnc = MLX5_ARG_UNSET,
3331 .txq_inline_max = MLX5_ARG_UNSET,
3332 .txq_inline_min = MLX5_ARG_UNSET,
3333 .txq_inline_mpw = MLX5_ARG_UNSET,
3334 .txqs_inline = MLX5_ARG_UNSET,
3336 .mr_ext_memseg_en = 1,
3338 .enabled = 0, /* Disabled by default. */
3339 .stride_num_n = MLX5_MPRQ_STRIDE_NUM_N,
3340 .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
3341 .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
3346 /* Device specific configuration. */
3347 switch (pci_dev->id.device_id) {
3348 case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
3349 case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
3350 case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
3351 case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
3352 case PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF:
3353 case PCI_DEVICE_ID_MELLANOX_CONNECTX6VF:
3354 case PCI_DEVICE_ID_MELLANOX_CONNECTX6DXVF:
3360 for (i = 0; i != ns; ++i) {
3363 list[i].eth_dev = mlx5_dev_spawn(&pci_dev->device,
3366 if (!list[i].eth_dev) {
3367 if (rte_errno != EBUSY && rte_errno != EEXIST)
3369 /* Device is disabled or already spawned. Ignore it. */
3372 restore = list[i].eth_dev->data->dev_flags;
3373 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev);
3374 /* Restore non-PCI flags cleared by the above call. */
3375 list[i].eth_dev->data->dev_flags |= restore;
3376 mlx5_dev_interrupt_handler_devx_install(list[i].eth_dev);
3377 rte_eth_dev_probing_finish(list[i].eth_dev);
3381 "probe of PCI device " PCI_PRI_FMT " aborted after"
3382 " encountering an error: %s",
3383 pci_dev->addr.domain, pci_dev->addr.bus,
3384 pci_dev->addr.devid, pci_dev->addr.function,
3385 strerror(rte_errno));
3389 if (!list[i].eth_dev)
3391 mlx5_dev_close(list[i].eth_dev);
3392 /* mac_addrs must not be freed because in dev_private */
3393 list[i].eth_dev->data->mac_addrs = NULL;
3394 claim_zero(rte_eth_dev_release_port(list[i].eth_dev));
3396 /* Restore original error. */
3403 * Do the routine cleanup:
3404 * - close opened Netlink sockets
3405 * - free allocated spawn data array
3406 * - free the Infiniband device list
3414 MLX5_ASSERT(ibv_list);
3415 mlx5_glue->free_device_list(ibv_list);
3420 * Look for the ethernet device belonging to mlx5 driver.
3422 * @param[in] port_id
3423 * port_id to start looking for device.
3424 * @param[in] pci_dev
3425 * Pointer to the hint PCI device. When device is being probed
3426 * the its siblings (master and preceding representors might
3427 * not have assigned driver yet (because the mlx5_pci_probe()
3428 * is not completed yet, for this case match on hint PCI
3429 * device may be used to detect sibling device.
3432 * port_id of found device, RTE_MAX_ETHPORT if not found.
3435 mlx5_eth_find_next(uint16_t port_id, struct rte_pci_device *pci_dev)
3437 while (port_id < RTE_MAX_ETHPORTS) {
3438 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3440 if (dev->state != RTE_ETH_DEV_UNUSED &&
3442 (dev->device == &pci_dev->device ||
3443 (dev->device->driver &&
3444 dev->device->driver->name &&
3445 !strcmp(dev->device->driver->name, MLX5_DRIVER_NAME))))
3449 if (port_id >= RTE_MAX_ETHPORTS)
3450 return RTE_MAX_ETHPORTS;
3455 * DPDK callback to remove a PCI device.
3457 * This function removes all Ethernet devices belong to a given PCI device.
3459 * @param[in] pci_dev
3460 * Pointer to the PCI device.
3463 * 0 on success, the function cannot fail.
3466 mlx5_pci_remove(struct rte_pci_device *pci_dev)
3470 RTE_ETH_FOREACH_DEV_OF(port_id, &pci_dev->device)
3471 rte_eth_dev_close(port_id);
3475 static const struct rte_pci_id mlx5_pci_id_map[] = {
3477 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3478 PCI_DEVICE_ID_MELLANOX_CONNECTX4)
3481 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3482 PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
3485 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3486 PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
3489 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3490 PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
3493 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3494 PCI_DEVICE_ID_MELLANOX_CONNECTX5)
3497 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3498 PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
3501 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3502 PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
3505 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3506 PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
3509 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3510 PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
3513 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3514 PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF)
3517 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3518 PCI_DEVICE_ID_MELLANOX_CONNECTX6)
3521 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3522 PCI_DEVICE_ID_MELLANOX_CONNECTX6VF)
3525 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3526 PCI_DEVICE_ID_MELLANOX_CONNECTX6DX)
3529 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3530 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXVF)
3533 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3534 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXBF)
3541 static struct rte_pci_driver mlx5_driver = {
3543 .name = MLX5_DRIVER_NAME
3545 .id_table = mlx5_pci_id_map,
3546 .probe = mlx5_pci_probe,
3547 .remove = mlx5_pci_remove,
3548 .dma_map = mlx5_dma_map,
3549 .dma_unmap = mlx5_dma_unmap,
3550 .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV |
3551 RTE_PCI_DRV_PROBE_AGAIN,
3555 * Driver initialization routine.
3557 RTE_INIT(rte_mlx5_pmd_init)
3559 /* Initialize driver log type. */
3560 mlx5_logtype = rte_log_register("pmd.net.mlx5");
3561 if (mlx5_logtype >= 0)
3562 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);
3564 /* Build the static tables for Verbs conversion. */
3565 mlx5_set_ptype_table();
3566 mlx5_set_cksum_table();
3567 mlx5_set_swp_types_table();
3569 rte_pci_register(&mlx5_driver);
3572 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
3573 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
3574 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");