1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2015 6WIND S.A.
3 * Copyright 2015 Mellanox Technologies, Ltd
16 #include <linux/rtnetlink.h>
19 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
21 #pragma GCC diagnostic ignored "-Wpedantic"
23 #include <infiniband/verbs.h>
25 #pragma GCC diagnostic error "-Wpedantic"
28 #include <rte_malloc.h>
29 #include <rte_ethdev_driver.h>
30 #include <rte_ethdev_pci.h>
32 #include <rte_bus_pci.h>
33 #include <rte_common.h>
34 #include <rte_config.h>
35 #include <rte_eal_memconfig.h>
36 #include <rte_kvargs.h>
37 #include <rte_rwlock.h>
38 #include <rte_spinlock.h>
41 #include "mlx5_utils.h"
42 #include "mlx5_rxtx.h"
43 #include "mlx5_autoconf.h"
44 #include "mlx5_defs.h"
45 #include "mlx5_glue.h"
48 /* Device parameter to enable RX completion queue compression. */
49 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
51 /* Device parameter to enable Multi-Packet Rx queue. */
52 #define MLX5_RX_MPRQ_EN "mprq_en"
54 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
55 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
57 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
58 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
60 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
61 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
63 /* Device parameter to configure inline send. */
64 #define MLX5_TXQ_INLINE "txq_inline"
67 * Device parameter to configure the number of TX queues threshold for
68 * enabling inline send.
70 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
72 /* Device parameter to enable multi-packet send WQEs. */
73 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
75 /* Device parameter to include 2 dsegs in the title WQEBB. */
76 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
78 /* Device parameter to limit the size of inlining packet. */
79 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
81 /* Device parameter to enable hardware Tx vector. */
82 #define MLX5_TX_VEC_EN "tx_vec_en"
84 /* Device parameter to enable hardware Rx vector. */
85 #define MLX5_RX_VEC_EN "rx_vec_en"
87 /* Allow L3 VXLAN flow creation. */
88 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
90 /* Activate Netlink support in VF mode. */
91 #define MLX5_VF_NL_EN "vf_nl_en"
93 #ifndef HAVE_IBV_MLX5_MOD_MPW
94 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
95 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
98 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
99 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
102 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
104 /* Shared memory between primary and secondary processes. */
105 struct mlx5_shared_data *mlx5_shared_data;
107 /* Spinlock for mlx5_shared_data allocation. */
108 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
110 /** Driver-specific log messages type. */
114 * Prepare shared data between primary and secondary process.
117 mlx5_prepare_shared_data(void)
119 const struct rte_memzone *mz;
121 rte_spinlock_lock(&mlx5_shared_data_lock);
122 if (mlx5_shared_data == NULL) {
123 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
124 /* Allocate shared memory. */
125 mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
126 sizeof(*mlx5_shared_data),
129 /* Lookup allocated shared memory. */
130 mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
133 rte_panic("Cannot allocate mlx5 shared data\n");
134 mlx5_shared_data = mz->addr;
135 /* Initialize shared data. */
136 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
137 LIST_INIT(&mlx5_shared_data->mem_event_cb_list);
138 rte_rwlock_init(&mlx5_shared_data->mem_event_rwlock);
140 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
141 mlx5_mr_mem_event_cb, NULL);
143 rte_spinlock_unlock(&mlx5_shared_data_lock);
147 * Retrieve integer value from environment variable.
150 * Environment variable name.
153 * Integer value, 0 if the variable is not set.
156 mlx5_getenv_int(const char *name)
158 const char *val = getenv(name);
166 * Verbs callback to allocate a memory. This function should allocate the space
167 * according to the size provided residing inside a huge page.
168 * Please note that all allocation must respect the alignment from libmlx5
169 * (i.e. currently sysconf(_SC_PAGESIZE)).
172 * The size in bytes of the memory to allocate.
174 * A pointer to the callback data.
177 * Allocated buffer, NULL otherwise and rte_errno is set.
180 mlx5_alloc_verbs_buf(size_t size, void *data)
182 struct priv *priv = data;
184 size_t alignment = sysconf(_SC_PAGESIZE);
185 unsigned int socket = SOCKET_ID_ANY;
187 if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
188 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
190 socket = ctrl->socket;
191 } else if (priv->verbs_alloc_ctx.type ==
192 MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
193 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
195 socket = ctrl->socket;
197 assert(data != NULL);
198 ret = rte_malloc_socket(__func__, size, alignment, socket);
205 * Verbs callback to free a memory.
208 * A pointer to the memory to free.
210 * A pointer to the callback data.
213 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
215 assert(data != NULL);
220 * DPDK callback to close the device.
222 * Destroy all queues and objects, free memory.
225 * Pointer to Ethernet device structure.
228 mlx5_dev_close(struct rte_eth_dev *dev)
230 struct priv *priv = dev->data->dev_private;
234 DRV_LOG(DEBUG, "port %u closing device \"%s\"",
236 ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
237 /* In case mlx5_dev_stop() has not been called. */
238 mlx5_dev_interrupt_handler_uninstall(dev);
239 mlx5_traffic_disable(dev);
240 /* Prevent crashes when queues are still in use. */
241 dev->rx_pkt_burst = removed_rx_burst;
242 dev->tx_pkt_burst = removed_tx_burst;
243 if (priv->rxqs != NULL) {
244 /* XXX race condition if mlx5_rx_burst() is still running. */
246 for (i = 0; (i != priv->rxqs_n); ++i)
247 mlx5_rxq_release(dev, i);
251 if (priv->txqs != NULL) {
252 /* XXX race condition if mlx5_tx_burst() is still running. */
254 for (i = 0; (i != priv->txqs_n); ++i)
255 mlx5_txq_release(dev, i);
259 mlx5_flow_delete_drop_queue(dev);
260 mlx5_mprq_free_mp(dev);
261 mlx5_mr_release(dev);
262 if (priv->pd != NULL) {
263 assert(priv->ctx != NULL);
264 claim_zero(mlx5_glue->dealloc_pd(priv->pd));
265 claim_zero(mlx5_glue->close_device(priv->ctx));
267 assert(priv->ctx == NULL);
268 if (priv->rss_conf.rss_key != NULL)
269 rte_free(priv->rss_conf.rss_key);
270 if (priv->reta_idx != NULL)
271 rte_free(priv->reta_idx);
272 if (priv->primary_socket)
273 mlx5_socket_uninit(dev);
275 mlx5_nl_mac_addr_flush(dev);
276 if (priv->nl_socket >= 0)
277 close(priv->nl_socket);
278 ret = mlx5_hrxq_ibv_verify(dev);
280 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
282 ret = mlx5_ind_table_ibv_verify(dev);
284 DRV_LOG(WARNING, "port %u some indirection table still remain",
286 ret = mlx5_rxq_ibv_verify(dev);
288 DRV_LOG(WARNING, "port %u some Verbs Rx queue still remain",
290 ret = mlx5_rxq_verify(dev);
292 DRV_LOG(WARNING, "port %u some Rx queues still remain",
294 ret = mlx5_txq_ibv_verify(dev);
296 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
298 ret = mlx5_txq_verify(dev);
300 DRV_LOG(WARNING, "port %u some Tx queues still remain",
302 ret = mlx5_flow_verify(dev);
304 DRV_LOG(WARNING, "port %u some flows still remain",
306 memset(priv, 0, sizeof(*priv));
309 const struct eth_dev_ops mlx5_dev_ops = {
310 .dev_configure = mlx5_dev_configure,
311 .dev_start = mlx5_dev_start,
312 .dev_stop = mlx5_dev_stop,
313 .dev_set_link_down = mlx5_set_link_down,
314 .dev_set_link_up = mlx5_set_link_up,
315 .dev_close = mlx5_dev_close,
316 .promiscuous_enable = mlx5_promiscuous_enable,
317 .promiscuous_disable = mlx5_promiscuous_disable,
318 .allmulticast_enable = mlx5_allmulticast_enable,
319 .allmulticast_disable = mlx5_allmulticast_disable,
320 .link_update = mlx5_link_update,
321 .stats_get = mlx5_stats_get,
322 .stats_reset = mlx5_stats_reset,
323 .xstats_get = mlx5_xstats_get,
324 .xstats_reset = mlx5_xstats_reset,
325 .xstats_get_names = mlx5_xstats_get_names,
326 .dev_infos_get = mlx5_dev_infos_get,
327 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
328 .vlan_filter_set = mlx5_vlan_filter_set,
329 .rx_queue_setup = mlx5_rx_queue_setup,
330 .tx_queue_setup = mlx5_tx_queue_setup,
331 .rx_queue_release = mlx5_rx_queue_release,
332 .tx_queue_release = mlx5_tx_queue_release,
333 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
334 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
335 .mac_addr_remove = mlx5_mac_addr_remove,
336 .mac_addr_add = mlx5_mac_addr_add,
337 .mac_addr_set = mlx5_mac_addr_set,
338 .set_mc_addr_list = mlx5_set_mc_addr_list,
339 .mtu_set = mlx5_dev_set_mtu,
340 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
341 .vlan_offload_set = mlx5_vlan_offload_set,
342 .reta_update = mlx5_dev_rss_reta_update,
343 .reta_query = mlx5_dev_rss_reta_query,
344 .rss_hash_update = mlx5_rss_hash_update,
345 .rss_hash_conf_get = mlx5_rss_hash_conf_get,
346 .filter_ctrl = mlx5_dev_filter_ctrl,
347 .rx_descriptor_status = mlx5_rx_descriptor_status,
348 .tx_descriptor_status = mlx5_tx_descriptor_status,
349 .rx_queue_intr_enable = mlx5_rx_intr_enable,
350 .rx_queue_intr_disable = mlx5_rx_intr_disable,
351 .is_removed = mlx5_is_removed,
354 static const struct eth_dev_ops mlx5_dev_sec_ops = {
355 .stats_get = mlx5_stats_get,
356 .stats_reset = mlx5_stats_reset,
357 .xstats_get = mlx5_xstats_get,
358 .xstats_reset = mlx5_xstats_reset,
359 .xstats_get_names = mlx5_xstats_get_names,
360 .dev_infos_get = mlx5_dev_infos_get,
361 .rx_descriptor_status = mlx5_rx_descriptor_status,
362 .tx_descriptor_status = mlx5_tx_descriptor_status,
365 /* Available operators in flow isolated mode. */
366 const struct eth_dev_ops mlx5_dev_ops_isolate = {
367 .dev_configure = mlx5_dev_configure,
368 .dev_start = mlx5_dev_start,
369 .dev_stop = mlx5_dev_stop,
370 .dev_set_link_down = mlx5_set_link_down,
371 .dev_set_link_up = mlx5_set_link_up,
372 .dev_close = mlx5_dev_close,
373 .link_update = mlx5_link_update,
374 .stats_get = mlx5_stats_get,
375 .stats_reset = mlx5_stats_reset,
376 .xstats_get = mlx5_xstats_get,
377 .xstats_reset = mlx5_xstats_reset,
378 .xstats_get_names = mlx5_xstats_get_names,
379 .dev_infos_get = mlx5_dev_infos_get,
380 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
381 .vlan_filter_set = mlx5_vlan_filter_set,
382 .rx_queue_setup = mlx5_rx_queue_setup,
383 .tx_queue_setup = mlx5_tx_queue_setup,
384 .rx_queue_release = mlx5_rx_queue_release,
385 .tx_queue_release = mlx5_tx_queue_release,
386 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
387 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
388 .mac_addr_remove = mlx5_mac_addr_remove,
389 .mac_addr_add = mlx5_mac_addr_add,
390 .mac_addr_set = mlx5_mac_addr_set,
391 .set_mc_addr_list = mlx5_set_mc_addr_list,
392 .mtu_set = mlx5_dev_set_mtu,
393 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
394 .vlan_offload_set = mlx5_vlan_offload_set,
395 .filter_ctrl = mlx5_dev_filter_ctrl,
396 .rx_descriptor_status = mlx5_rx_descriptor_status,
397 .tx_descriptor_status = mlx5_tx_descriptor_status,
398 .rx_queue_intr_enable = mlx5_rx_intr_enable,
399 .rx_queue_intr_disable = mlx5_rx_intr_disable,
400 .is_removed = mlx5_is_removed,
404 * Verify and store value for device argument.
407 * Key argument to verify.
409 * Value associated with key.
414 * 0 on success, a negative errno value otherwise and rte_errno is set.
417 mlx5_args_check(const char *key, const char *val, void *opaque)
419 struct mlx5_dev_config *config = opaque;
423 tmp = strtoul(val, NULL, 0);
426 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
429 if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
430 config->cqe_comp = !!tmp;
431 } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
432 config->mprq.enabled = !!tmp;
433 } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
434 config->mprq.stride_num_n = tmp;
435 } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
436 config->mprq.max_memcpy_len = tmp;
437 } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
438 config->mprq.min_rxqs_num = tmp;
439 } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
440 config->txq_inline = tmp;
441 } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
442 config->txqs_inline = tmp;
443 } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
444 config->mps = !!tmp ? config->mps : 0;
445 } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
446 config->mpw_hdr_dseg = !!tmp;
447 } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
448 config->inline_max_packet_sz = tmp;
449 } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
450 config->tx_vec_en = !!tmp;
451 } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
452 config->rx_vec_en = !!tmp;
453 } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
454 config->l3_vxlan_en = !!tmp;
455 } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
456 config->vf_nl_en = !!tmp;
458 DRV_LOG(WARNING, "%s: unknown parameter", key);
466 * Parse device parameters.
469 * Pointer to device configuration structure.
471 * Device arguments structure.
474 * 0 on success, a negative errno value otherwise and rte_errno is set.
477 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
479 const char **params = (const char *[]){
480 MLX5_RXQ_CQE_COMP_EN,
482 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
483 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
486 MLX5_TXQS_MIN_INLINE,
488 MLX5_TXQ_MPW_HDR_DSEG_EN,
489 MLX5_TXQ_MAX_INLINE_LEN,
496 struct rte_kvargs *kvlist;
502 /* Following UGLY cast is done to pass checkpatch. */
503 kvlist = rte_kvargs_parse(devargs->args, params);
506 /* Process parameters. */
507 for (i = 0; (params[i] != NULL); ++i) {
508 if (rte_kvargs_count(kvlist, params[i])) {
509 ret = rte_kvargs_process(kvlist, params[i],
510 mlx5_args_check, config);
513 rte_kvargs_free(kvlist);
518 rte_kvargs_free(kvlist);
522 static struct rte_pci_driver mlx5_driver;
525 * Reserved UAR address space for TXQ UAR(hw doorbell) mapping, process
526 * local resource used by both primary and secondary to avoid duplicate
528 * The space has to be available on both primary and secondary process,
529 * TXQ UAR maps to this area using fixed mmap w/o double check.
531 static void *uar_base;
534 find_lower_va_bound(const struct rte_memseg_list *msl __rte_unused,
535 const struct rte_memseg *ms, void *arg)
542 *addr = RTE_MIN(*addr, ms->addr);
548 * Reserve UAR address space for primary process.
551 * Pointer to Ethernet device.
554 * 0 on success, a negative errno value otherwise and rte_errno is set.
557 mlx5_uar_init_primary(struct rte_eth_dev *dev)
559 struct priv *priv = dev->data->dev_private;
560 void *addr = (void *)0;
562 if (uar_base) { /* UAR address space mapped. */
563 priv->uar_base = uar_base;
566 /* find out lower bound of hugepage segments */
567 rte_memseg_walk(find_lower_va_bound, &addr);
569 /* keep distance to hugepages to minimize potential conflicts. */
570 addr = RTE_PTR_SUB(addr, MLX5_UAR_OFFSET + MLX5_UAR_SIZE);
571 /* anonymous mmap, no real memory consumption. */
572 addr = mmap(addr, MLX5_UAR_SIZE,
573 PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
574 if (addr == MAP_FAILED) {
576 "port %u failed to reserve UAR address space, please"
577 " adjust MLX5_UAR_SIZE or try --base-virtaddr",
582 /* Accept either same addr or a new addr returned from mmap if target
585 DRV_LOG(INFO, "port %u reserved UAR address space: %p",
586 dev->data->port_id, addr);
587 priv->uar_base = addr; /* for primary and secondary UAR re-mmap. */
588 uar_base = addr; /* process local, don't reserve again. */
593 * Reserve UAR address space for secondary process, align with
597 * Pointer to Ethernet device.
600 * 0 on success, a negative errno value otherwise and rte_errno is set.
603 mlx5_uar_init_secondary(struct rte_eth_dev *dev)
605 struct priv *priv = dev->data->dev_private;
608 assert(priv->uar_base);
609 if (uar_base) { /* already reserved. */
610 assert(uar_base == priv->uar_base);
613 /* anonymous mmap, no real memory consumption. */
614 addr = mmap(priv->uar_base, MLX5_UAR_SIZE,
615 PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
616 if (addr == MAP_FAILED) {
617 DRV_LOG(ERR, "port %u UAR mmap failed: %p size: %llu",
618 dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
622 if (priv->uar_base != addr) {
624 "port %u UAR address %p size %llu occupied, please"
625 " adjust MLX5_UAR_OFFSET or try EAL parameter"
627 dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
631 uar_base = addr; /* process local, don't reserve again */
632 DRV_LOG(INFO, "port %u reserved UAR address space: %p",
633 dev->data->port_id, addr);
638 * DPDK callback to register a PCI device.
640 * This function creates an Ethernet device for each port of a given
644 * PCI driver structure (mlx5_driver).
646 * PCI device information.
649 * 0 on success, a negative errno value otherwise and rte_errno is set.
652 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
653 struct rte_pci_device *pci_dev)
655 struct ibv_device **list = NULL;
656 struct ibv_device *ibv_dev;
658 struct ibv_context *attr_ctx = NULL;
659 struct ibv_device_attr_ex device_attr;
662 unsigned int cqe_comp;
663 unsigned int tunnel_en = 0;
664 unsigned int mpls_en = 0;
665 unsigned int swp = 0;
666 unsigned int verb_priorities = 0;
667 unsigned int mprq = 0;
668 unsigned int mprq_min_stride_size_n = 0;
669 unsigned int mprq_max_stride_size_n = 0;
670 unsigned int mprq_min_stride_num_n = 0;
671 unsigned int mprq_max_stride_num_n = 0;
673 struct mlx5dv_context attrs_out = {0};
674 #ifdef HAVE_IBV_DEVICE_COUNTERS_SET_SUPPORT
675 struct ibv_counter_set_description cs_desc;
678 /* Prepare shared data between primary and secondary process. */
679 mlx5_prepare_shared_data();
680 assert(pci_drv == &mlx5_driver);
681 list = mlx5_glue->get_device_list(&i);
687 "cannot list devices, is ib_uverbs loaded?");
692 * For each listed device, check related sysfs entry against
693 * the provided PCI ID.
696 struct rte_pci_addr pci_addr;
699 DRV_LOG(DEBUG, "checking device \"%s\"", list[i]->name);
700 if (mlx5_ibv_device_to_pci_addr(list[i], &pci_addr))
702 if ((pci_dev->addr.domain != pci_addr.domain) ||
703 (pci_dev->addr.bus != pci_addr.bus) ||
704 (pci_dev->addr.devid != pci_addr.devid) ||
705 (pci_dev->addr.function != pci_addr.function))
707 DRV_LOG(INFO, "PCI information matches, using device \"%s\"",
709 vf = ((pci_dev->id.device_id ==
710 PCI_DEVICE_ID_MELLANOX_CONNECTX4VF) ||
711 (pci_dev->id.device_id ==
712 PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF) ||
713 (pci_dev->id.device_id ==
714 PCI_DEVICE_ID_MELLANOX_CONNECTX5VF) ||
715 (pci_dev->id.device_id ==
716 PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF));
717 attr_ctx = mlx5_glue->open_device(list[i]);
722 if (attr_ctx == NULL) {
726 "cannot access device, is mlx5_ib loaded?");
731 "cannot use device, are drivers up to date?");
737 DRV_LOG(DEBUG, "device opened");
738 #ifdef HAVE_IBV_MLX5_MOD_SWP
739 attrs_out.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
742 * Multi-packet send is supported by ConnectX-4 Lx PF as well
743 * as all ConnectX-5 devices.
745 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
746 attrs_out.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
748 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
749 attrs_out.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
751 mlx5_glue->dv_query_device(attr_ctx, &attrs_out);
752 if (attrs_out.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
753 if (attrs_out.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
754 DRV_LOG(DEBUG, "enhanced MPW is supported");
755 mps = MLX5_MPW_ENHANCED;
757 DRV_LOG(DEBUG, "MPW is supported");
761 DRV_LOG(DEBUG, "MPW isn't supported");
762 mps = MLX5_MPW_DISABLED;
764 #ifdef HAVE_IBV_MLX5_MOD_SWP
765 if (attrs_out.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
766 swp = attrs_out.sw_parsing_caps.sw_parsing_offloads;
767 DRV_LOG(DEBUG, "SWP support: %u", swp);
769 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
770 if (attrs_out.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
771 struct mlx5dv_striding_rq_caps mprq_caps =
772 attrs_out.striding_rq_caps;
774 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
775 mprq_caps.min_single_stride_log_num_of_bytes);
776 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
777 mprq_caps.max_single_stride_log_num_of_bytes);
778 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
779 mprq_caps.min_single_wqe_log_num_of_strides);
780 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
781 mprq_caps.max_single_wqe_log_num_of_strides);
782 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
783 mprq_caps.supported_qpts);
784 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
786 mprq_min_stride_size_n =
787 mprq_caps.min_single_stride_log_num_of_bytes;
788 mprq_max_stride_size_n =
789 mprq_caps.max_single_stride_log_num_of_bytes;
790 mprq_min_stride_num_n =
791 mprq_caps.min_single_wqe_log_num_of_strides;
792 mprq_max_stride_num_n =
793 mprq_caps.max_single_wqe_log_num_of_strides;
796 if (RTE_CACHE_LINE_SIZE == 128 &&
797 !(attrs_out.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
801 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
802 if (attrs_out.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
803 tunnel_en = ((attrs_out.tunnel_offloads_caps &
804 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
805 (attrs_out.tunnel_offloads_caps &
806 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
808 DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
809 tunnel_en ? "" : "not ");
812 "tunnel offloading disabled due to old OFED/rdma-core version");
814 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
815 mpls_en = ((attrs_out.tunnel_offloads_caps &
816 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
817 (attrs_out.tunnel_offloads_caps &
818 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
819 DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
820 mpls_en ? "" : "not ");
822 DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
823 " old OFED/rdma-core version or firmware configuration");
825 err = mlx5_glue->query_device_ex(attr_ctx, NULL, &device_attr);
827 DEBUG("ibv_query_device_ex() failed");
830 DRV_LOG(INFO, "%u port(s) detected",
831 device_attr.orig_attr.phys_port_cnt);
832 for (i = 0; i < device_attr.orig_attr.phys_port_cnt; i++) {
833 char name[RTE_ETH_NAME_MAX_LEN];
835 uint32_t port = i + 1; /* ports are indexed from one */
836 struct ibv_context *ctx = NULL;
837 struct ibv_port_attr port_attr;
838 struct ibv_pd *pd = NULL;
839 struct priv *priv = NULL;
840 struct rte_eth_dev *eth_dev = NULL;
841 struct ibv_device_attr_ex device_attr_ex;
842 struct ether_addr mac;
843 struct mlx5_dev_config config = {
844 .cqe_comp = cqe_comp,
846 .tunnel_en = tunnel_en,
851 .txq_inline = MLX5_ARG_UNSET,
852 .txqs_inline = MLX5_ARG_UNSET,
853 .inline_max_packet_sz = MLX5_ARG_UNSET,
857 .enabled = 0, /* Disabled by default. */
858 .stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
859 mprq_min_stride_num_n),
860 .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
861 .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
865 len = snprintf(name, sizeof(name), PCI_PRI_FMT,
866 pci_dev->addr.domain, pci_dev->addr.bus,
867 pci_dev->addr.devid, pci_dev->addr.function);
868 if (device_attr.orig_attr.phys_port_cnt > 1)
869 snprintf(name + len, sizeof(name), " port %u", i);
870 if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
871 eth_dev = rte_eth_dev_attach_secondary(name);
872 if (eth_dev == NULL) {
873 DRV_LOG(ERR, "can not attach rte ethdev");
878 eth_dev->device = &pci_dev->device;
879 eth_dev->dev_ops = &mlx5_dev_sec_ops;
880 err = mlx5_uar_init_secondary(eth_dev);
885 /* Receive command fd from primary process */
886 err = mlx5_socket_connect(eth_dev);
891 /* Remap UAR for Tx queues. */
892 err = mlx5_tx_uar_remap(eth_dev, err);
898 * Ethdev pointer is still required as input since
899 * the primary device is not accessible from the
902 eth_dev->rx_pkt_burst =
903 mlx5_select_rx_function(eth_dev);
904 eth_dev->tx_pkt_burst =
905 mlx5_select_tx_function(eth_dev);
906 rte_eth_dev_probing_finish(eth_dev);
909 DRV_LOG(DEBUG, "using port %u", port);
910 ctx = mlx5_glue->open_device(ibv_dev);
915 /* Check port status. */
916 err = mlx5_glue->query_port(ctx, port, &port_attr);
918 DRV_LOG(ERR, "port query failed: %s", strerror(err));
921 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
923 "port %d is not configured in Ethernet mode",
928 if (port_attr.state != IBV_PORT_ACTIVE)
929 DRV_LOG(DEBUG, "port %d is not active: \"%s\" (%d)",
931 mlx5_glue->port_state_str(port_attr.state),
933 /* Allocate protection domain. */
934 pd = mlx5_glue->alloc_pd(ctx);
936 DRV_LOG(ERR, "PD allocation failure");
940 /* from rte_ethdev.c */
941 priv = rte_zmalloc("ethdev private structure",
943 RTE_CACHE_LINE_SIZE);
945 DRV_LOG(ERR, "priv allocation failure");
950 strncpy(priv->ibdev_path, priv->ctx->device->ibdev_path,
951 sizeof(priv->ibdev_path));
952 priv->device_attr = device_attr;
955 priv->mtu = ETHER_MTU;
956 err = mlx5_args(&config, pci_dev->device.devargs);
958 DRV_LOG(ERR, "failed to process device arguments: %s",
963 err = mlx5_glue->query_device_ex(ctx, NULL, &device_attr_ex);
965 DRV_LOG(ERR, "ibv_query_device_ex() failed");
968 config.hw_csum = !!(device_attr_ex.device_cap_flags_ex &
969 IBV_DEVICE_RAW_IP_CSUM);
970 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
971 (config.hw_csum ? "" : "not "));
972 #ifdef HAVE_IBV_DEVICE_COUNTERS_SET_SUPPORT
973 config.flow_counter_en = !!(device_attr.max_counter_sets);
974 mlx5_glue->describe_counter_set(ctx, 0, &cs_desc);
976 "counter type = %d, num of cs = %ld, attributes = %d",
977 cs_desc.counter_type, cs_desc.num_of_cs,
980 config.ind_table_max_size =
981 device_attr_ex.rss_caps.max_rwq_indirection_table_size;
982 /* Remove this check once DPDK supports larger/variable
983 * indirection tables. */
984 if (config.ind_table_max_size >
985 (unsigned int)ETH_RSS_RETA_SIZE_512)
986 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
987 DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
988 config.ind_table_max_size);
989 config.hw_vlan_strip = !!(device_attr_ex.raw_packet_caps &
990 IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
991 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
992 (config.hw_vlan_strip ? "" : "not "));
994 config.hw_fcs_strip = !!(device_attr_ex.raw_packet_caps &
995 IBV_RAW_PACKET_CAP_SCATTER_FCS);
996 DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
997 (config.hw_fcs_strip ? "" : "not "));
999 #ifdef HAVE_IBV_WQ_FLAG_RX_END_PADDING
1000 config.hw_padding = !!device_attr_ex.rx_pad_end_addr_align;
1003 "hardware Rx end alignment padding is %ssupported",
1004 (config.hw_padding ? "" : "not "));
1006 config.tso = ((device_attr_ex.tso_caps.max_tso > 0) &&
1007 (device_attr_ex.tso_caps.supported_qpts &
1008 (1 << IBV_QPT_RAW_PACKET)));
1010 config.tso_max_payload_sz =
1011 device_attr_ex.tso_caps.max_tso;
1012 if (config.mps && !mps) {
1014 "multi-packet send not supported on this device"
1015 " (" MLX5_TXQ_MPW_EN ")");
1019 DRV_LOG(INFO, "%s MPS is %s",
1020 config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
1021 config.mps != MLX5_MPW_DISABLED ? "enabled" :
1023 if (config.cqe_comp && !cqe_comp) {
1024 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
1025 config.cqe_comp = 0;
1027 config.mprq.enabled = config.mprq.enabled && mprq;
1028 if (config.mprq.enabled) {
1029 if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
1030 config.mprq.stride_num_n < mprq_min_stride_num_n) {
1031 config.mprq.stride_num_n =
1032 RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1033 mprq_min_stride_num_n);
1035 "the number of strides"
1036 " for Multi-Packet RQ is out of range,"
1037 " setting default value (%u)",
1038 1 << config.mprq.stride_num_n);
1040 config.mprq.min_stride_size_n = mprq_min_stride_size_n;
1041 config.mprq.max_stride_size_n = mprq_max_stride_size_n;
1043 eth_dev = rte_eth_dev_allocate(name);
1044 if (eth_dev == NULL) {
1045 DRV_LOG(ERR, "can not allocate rte ethdev");
1049 eth_dev->data->dev_private = priv;
1050 priv->dev_data = eth_dev->data;
1051 eth_dev->data->mac_addrs = priv->mac;
1052 eth_dev->device = &pci_dev->device;
1053 rte_eth_copy_pci_info(eth_dev, pci_dev);
1054 eth_dev->device->driver = &mlx5_driver.driver;
1055 err = mlx5_uar_init_primary(eth_dev);
1060 /* Configure the first MAC address by default. */
1061 if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
1063 "port %u cannot get MAC address, is mlx5_en"
1064 " loaded? (errno: %s)",
1065 eth_dev->data->port_id, strerror(rte_errno));
1070 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
1071 eth_dev->data->port_id,
1072 mac.addr_bytes[0], mac.addr_bytes[1],
1073 mac.addr_bytes[2], mac.addr_bytes[3],
1074 mac.addr_bytes[4], mac.addr_bytes[5]);
1077 char ifname[IF_NAMESIZE];
1079 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
1080 DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
1081 eth_dev->data->port_id, ifname);
1083 DRV_LOG(DEBUG, "port %u ifname is unknown",
1084 eth_dev->data->port_id);
1087 /* Get actual MTU if possible. */
1088 err = mlx5_get_mtu(eth_dev, &priv->mtu);
1093 DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1096 * Initialize burst functions to prevent crashes before link-up.
1098 eth_dev->rx_pkt_burst = removed_rx_burst;
1099 eth_dev->tx_pkt_burst = removed_tx_burst;
1100 eth_dev->dev_ops = &mlx5_dev_ops;
1101 /* Register MAC address. */
1102 claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1103 priv->nl_socket = -1;
1105 if (vf && config.vf_nl_en) {
1106 priv->nl_socket = mlx5_nl_init(RTMGRP_LINK);
1107 if (priv->nl_socket < 0)
1108 priv->nl_socket = -1;
1109 mlx5_nl_mac_addr_sync(eth_dev);
1111 TAILQ_INIT(&priv->flows);
1112 TAILQ_INIT(&priv->ctrl_flows);
1113 /* Hint libmlx5 to use PMD allocator for data plane resources */
1114 struct mlx5dv_ctx_allocators alctr = {
1115 .alloc = &mlx5_alloc_verbs_buf,
1116 .free = &mlx5_free_verbs_buf,
1119 mlx5_glue->dv_set_context_attr(ctx,
1120 MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1121 (void *)((uintptr_t)&alctr));
1122 /* Bring Ethernet device up. */
1123 DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1124 eth_dev->data->port_id);
1125 mlx5_set_link_up(eth_dev);
1127 * Even though the interrupt handler is not installed yet,
1128 * interrupts will still trigger on the asyn_fd from
1129 * Verbs context returned by ibv_open_device().
1131 mlx5_link_update(eth_dev, 0);
1132 /* Store device configuration on private structure. */
1133 priv->config = config;
1134 /* Create drop queue. */
1135 err = mlx5_flow_create_drop_queue(eth_dev);
1137 DRV_LOG(ERR, "port %u drop queue allocation failed: %s",
1138 eth_dev->data->port_id, strerror(rte_errno));
1142 /* Supported Verbs flow priority number detection. */
1143 if (verb_priorities == 0)
1144 verb_priorities = mlx5_get_max_verbs_prio(eth_dev);
1145 if (verb_priorities < MLX5_VERBS_FLOW_PRIO_8) {
1146 DRV_LOG(ERR, "port %u wrong Verbs flow priorities: %u",
1147 eth_dev->data->port_id, verb_priorities);
1150 priv->config.max_verbs_prio = verb_priorities;
1152 * Once the device is added to the list of memory event
1153 * callback, its global MR cache table cannot be expanded
1154 * on the fly because of deadlock. If it overflows, lookup
1155 * should be done by searching MR list linearly, which is slow.
1157 err = mlx5_mr_btree_init(&priv->mr.cache,
1158 MLX5_MR_BTREE_CACHE_N * 2,
1159 eth_dev->device->numa_node);
1164 /* Add device to memory callback list. */
1165 rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
1166 LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
1167 priv, mem_event_cb);
1168 rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
1169 rte_eth_dev_probing_finish(eth_dev);
1175 claim_zero(mlx5_glue->dealloc_pd(pd));
1177 claim_zero(mlx5_glue->close_device(ctx));
1178 if (eth_dev && rte_eal_process_type() == RTE_PROC_PRIMARY)
1179 rte_eth_dev_release_port(eth_dev);
1183 * XXX if something went wrong in the loop above, there is a resource
1184 * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
1185 * long as the dpdk does not provide a way to deallocate a ethdev and a
1186 * way to enumerate the registered ethdevs to free the previous ones.
1190 claim_zero(mlx5_glue->close_device(attr_ctx));
1192 mlx5_glue->free_device_list(list);
1200 static const struct rte_pci_id mlx5_pci_id_map[] = {
1202 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1203 PCI_DEVICE_ID_MELLANOX_CONNECTX4)
1206 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1207 PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
1210 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1211 PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
1214 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1215 PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
1218 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1219 PCI_DEVICE_ID_MELLANOX_CONNECTX5)
1222 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1223 PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
1226 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1227 PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
1230 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1231 PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
1234 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1235 PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
1242 static struct rte_pci_driver mlx5_driver = {
1244 .name = MLX5_DRIVER_NAME
1246 .id_table = mlx5_pci_id_map,
1247 .probe = mlx5_pci_probe,
1248 .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV,
1251 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1254 * Suffix RTE_EAL_PMD_PATH with "-glue".
1256 * This function performs a sanity check on RTE_EAL_PMD_PATH before
1257 * suffixing its last component.
1260 * Output buffer, should be large enough otherwise NULL is returned.
1265 * Pointer to @p buf or @p NULL in case suffix cannot be appended.
1268 mlx5_glue_path(char *buf, size_t size)
1270 static const char *const bad[] = { "/", ".", "..", NULL };
1271 const char *path = RTE_EAL_PMD_PATH;
1272 size_t len = strlen(path);
1276 while (len && path[len - 1] == '/')
1278 for (off = len; off && path[off - 1] != '/'; --off)
1280 for (i = 0; bad[i]; ++i)
1281 if (!strncmp(path + off, bad[i], (int)(len - off)))
1283 i = snprintf(buf, size, "%.*s-glue", (int)len, path);
1284 if (i == -1 || (size_t)i >= size)
1289 "unable to append \"-glue\" to last component of"
1290 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
1291 " please re-configure DPDK");
1296 * Initialization routine for run-time dependency on rdma-core.
1299 mlx5_glue_init(void)
1301 char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
1302 const char *path[] = {
1304 * A basic security check is necessary before trusting
1305 * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
1307 (geteuid() == getuid() && getegid() == getgid() ?
1308 getenv("MLX5_GLUE_PATH") : NULL),
1310 * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
1311 * variant, otherwise let dlopen() look up libraries on its
1314 (*RTE_EAL_PMD_PATH ?
1315 mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
1318 void *handle = NULL;
1322 while (!handle && i != RTE_DIM(path)) {
1331 end = strpbrk(path[i], ":;");
1333 end = path[i] + strlen(path[i]);
1334 len = end - path[i];
1339 ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
1341 (!len || *(end - 1) == '/') ? "" : "/");
1344 if (sizeof(name) != (size_t)ret + 1)
1346 DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
1348 handle = dlopen(name, RTLD_LAZY);
1359 DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
1362 sym = dlsym(handle, "mlx5_glue");
1363 if (!sym || !*sym) {
1367 DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
1376 "cannot initialize PMD due to missing run-time dependency on"
1377 " rdma-core libraries (libibverbs, libmlx5)");
1384 * Driver initialization routine.
1386 RTE_INIT(rte_mlx5_pmd_init);
1388 rte_mlx5_pmd_init(void)
1390 /* Build the static tables for Verbs conversion. */
1391 mlx5_set_ptype_table();
1392 mlx5_set_cksum_table();
1393 mlx5_set_swp_types_table();
1395 * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
1396 * huge pages. Calling ibv_fork_init() during init allows
1397 * applications to use fork() safely for purposes other than
1398 * using this PMD, which is not supported in forked processes.
1400 setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
1401 /* Match the size of Rx completion entry to the size of a cacheline. */
1402 if (RTE_CACHE_LINE_SIZE == 128)
1403 setenv("MLX5_CQE_SIZE", "128", 0);
1404 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1405 if (mlx5_glue_init())
1410 /* Glue structure must not contain any NULL pointers. */
1414 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
1415 assert(((const void *const *)mlx5_glue)[i]);
1418 if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
1420 "rdma-core glue \"%s\" mismatch: \"%s\" is required",
1421 mlx5_glue->version, MLX5_GLUE_VERSION);
1424 mlx5_glue->fork_init();
1425 rte_pci_register(&mlx5_driver);
1428 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
1429 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
1430 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");
1432 /** Initialize driver log type. */
1433 RTE_INIT(vdev_netvsc_init_log)
1435 mlx5_logtype = rte_log_register("pmd.net.mlx5");
1436 if (mlx5_logtype >= 0)
1437 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);