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>
39 #include "mlx5_utils.h"
40 #include "mlx5_rxtx.h"
41 #include "mlx5_autoconf.h"
42 #include "mlx5_defs.h"
43 #include "mlx5_glue.h"
45 /* Device parameter to enable RX completion queue compression. */
46 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
48 /* Device parameter to configure inline send. */
49 #define MLX5_TXQ_INLINE "txq_inline"
52 * Device parameter to configure the number of TX queues threshold for
53 * enabling inline send.
55 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
57 /* Device parameter to enable multi-packet send WQEs. */
58 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
60 /* Device parameter to include 2 dsegs in the title WQEBB. */
61 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
63 /* Device parameter to limit the size of inlining packet. */
64 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
66 /* Device parameter to enable hardware Tx vector. */
67 #define MLX5_TX_VEC_EN "tx_vec_en"
69 /* Device parameter to enable hardware Rx vector. */
70 #define MLX5_RX_VEC_EN "rx_vec_en"
72 /* Allow L3 VXLAN flow creation. */
73 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
75 /* Activate Netlink support in VF mode. */
76 #define MLX5_VF_NL_EN "vf_nl_en"
78 #ifndef HAVE_IBV_MLX5_MOD_MPW
79 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
80 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
83 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
84 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
87 /** Driver-specific log messages type. */
91 * Retrieve integer value from environment variable.
94 * Environment variable name.
97 * Integer value, 0 if the variable is not set.
100 mlx5_getenv_int(const char *name)
102 const char *val = getenv(name);
110 * Verbs callback to allocate a memory. This function should allocate the space
111 * according to the size provided residing inside a huge page.
112 * Please note that all allocation must respect the alignment from libmlx5
113 * (i.e. currently sysconf(_SC_PAGESIZE)).
116 * The size in bytes of the memory to allocate.
118 * A pointer to the callback data.
121 * Allocated buffer, NULL otherwise and rte_errno is set.
124 mlx5_alloc_verbs_buf(size_t size, void *data)
126 struct priv *priv = data;
128 size_t alignment = sysconf(_SC_PAGESIZE);
129 unsigned int socket = SOCKET_ID_ANY;
131 if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
132 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
134 socket = ctrl->socket;
135 } else if (priv->verbs_alloc_ctx.type ==
136 MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
137 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
139 socket = ctrl->socket;
141 assert(data != NULL);
142 ret = rte_malloc_socket(__func__, size, alignment, socket);
149 * Verbs callback to free a memory.
152 * A pointer to the memory to free.
154 * A pointer to the callback data.
157 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
159 assert(data != NULL);
164 * DPDK callback to close the device.
166 * Destroy all queues and objects, free memory.
169 * Pointer to Ethernet device structure.
172 mlx5_dev_close(struct rte_eth_dev *dev)
174 struct priv *priv = dev->data->dev_private;
178 DRV_LOG(DEBUG, "port %u closing device \"%s\"",
180 ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
181 /* In case mlx5_dev_stop() has not been called. */
182 mlx5_dev_interrupt_handler_uninstall(dev);
183 mlx5_traffic_disable(dev);
184 /* Prevent crashes when queues are still in use. */
185 dev->rx_pkt_burst = removed_rx_burst;
186 dev->tx_pkt_burst = removed_tx_burst;
187 if (priv->rxqs != NULL) {
188 /* XXX race condition if mlx5_rx_burst() is still running. */
190 for (i = 0; (i != priv->rxqs_n); ++i)
191 mlx5_rxq_release(dev, i);
195 if (priv->txqs != NULL) {
196 /* XXX race condition if mlx5_tx_burst() is still running. */
198 for (i = 0; (i != priv->txqs_n); ++i)
199 mlx5_txq_release(dev, i);
203 mlx5_flow_delete_drop_queue(dev);
204 if (priv->pd != NULL) {
205 assert(priv->ctx != NULL);
206 claim_zero(mlx5_glue->dealloc_pd(priv->pd));
207 claim_zero(mlx5_glue->close_device(priv->ctx));
209 assert(priv->ctx == NULL);
210 if (priv->rss_conf.rss_key != NULL)
211 rte_free(priv->rss_conf.rss_key);
212 if (priv->reta_idx != NULL)
213 rte_free(priv->reta_idx);
214 if (priv->primary_socket)
215 mlx5_socket_uninit(dev);
217 mlx5_nl_mac_addr_flush(dev);
218 if (priv->nl_socket >= 0)
219 close(priv->nl_socket);
220 ret = mlx5_hrxq_ibv_verify(dev);
222 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
224 ret = mlx5_ind_table_ibv_verify(dev);
226 DRV_LOG(WARNING, "port %u some indirection table still remain",
228 ret = mlx5_rxq_ibv_verify(dev);
230 DRV_LOG(WARNING, "port %u some Verbs Rx queue still remain",
232 ret = mlx5_rxq_verify(dev);
234 DRV_LOG(WARNING, "port %u some Rx queues still remain",
236 ret = mlx5_txq_ibv_verify(dev);
238 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
240 ret = mlx5_txq_verify(dev);
242 DRV_LOG(WARNING, "port %u some Tx queues still remain",
244 ret = mlx5_flow_verify(dev);
246 DRV_LOG(WARNING, "port %u some flows still remain",
248 ret = mlx5_mr_verify(dev);
250 DRV_LOG(WARNING, "port %u some memory region still remain",
252 memset(priv, 0, sizeof(*priv));
255 const struct eth_dev_ops mlx5_dev_ops = {
256 .dev_configure = mlx5_dev_configure,
257 .dev_start = mlx5_dev_start,
258 .dev_stop = mlx5_dev_stop,
259 .dev_set_link_down = mlx5_set_link_down,
260 .dev_set_link_up = mlx5_set_link_up,
261 .dev_close = mlx5_dev_close,
262 .promiscuous_enable = mlx5_promiscuous_enable,
263 .promiscuous_disable = mlx5_promiscuous_disable,
264 .allmulticast_enable = mlx5_allmulticast_enable,
265 .allmulticast_disable = mlx5_allmulticast_disable,
266 .link_update = mlx5_link_update,
267 .stats_get = mlx5_stats_get,
268 .stats_reset = mlx5_stats_reset,
269 .xstats_get = mlx5_xstats_get,
270 .xstats_reset = mlx5_xstats_reset,
271 .xstats_get_names = mlx5_xstats_get_names,
272 .dev_infos_get = mlx5_dev_infos_get,
273 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
274 .vlan_filter_set = mlx5_vlan_filter_set,
275 .rx_queue_setup = mlx5_rx_queue_setup,
276 .tx_queue_setup = mlx5_tx_queue_setup,
277 .rx_queue_release = mlx5_rx_queue_release,
278 .tx_queue_release = mlx5_tx_queue_release,
279 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
280 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
281 .mac_addr_remove = mlx5_mac_addr_remove,
282 .mac_addr_add = mlx5_mac_addr_add,
283 .mac_addr_set = mlx5_mac_addr_set,
284 .set_mc_addr_list = mlx5_set_mc_addr_list,
285 .mtu_set = mlx5_dev_set_mtu,
286 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
287 .vlan_offload_set = mlx5_vlan_offload_set,
288 .reta_update = mlx5_dev_rss_reta_update,
289 .reta_query = mlx5_dev_rss_reta_query,
290 .rss_hash_update = mlx5_rss_hash_update,
291 .rss_hash_conf_get = mlx5_rss_hash_conf_get,
292 .filter_ctrl = mlx5_dev_filter_ctrl,
293 .rx_descriptor_status = mlx5_rx_descriptor_status,
294 .tx_descriptor_status = mlx5_tx_descriptor_status,
295 .rx_queue_intr_enable = mlx5_rx_intr_enable,
296 .rx_queue_intr_disable = mlx5_rx_intr_disable,
297 .is_removed = mlx5_is_removed,
300 static const struct eth_dev_ops mlx5_dev_sec_ops = {
301 .stats_get = mlx5_stats_get,
302 .stats_reset = mlx5_stats_reset,
303 .xstats_get = mlx5_xstats_get,
304 .xstats_reset = mlx5_xstats_reset,
305 .xstats_get_names = mlx5_xstats_get_names,
306 .dev_infos_get = mlx5_dev_infos_get,
307 .rx_descriptor_status = mlx5_rx_descriptor_status,
308 .tx_descriptor_status = mlx5_tx_descriptor_status,
311 /* Available operators in flow isolated mode. */
312 const struct eth_dev_ops mlx5_dev_ops_isolate = {
313 .dev_configure = mlx5_dev_configure,
314 .dev_start = mlx5_dev_start,
315 .dev_stop = mlx5_dev_stop,
316 .dev_set_link_down = mlx5_set_link_down,
317 .dev_set_link_up = mlx5_set_link_up,
318 .dev_close = mlx5_dev_close,
319 .link_update = mlx5_link_update,
320 .stats_get = mlx5_stats_get,
321 .stats_reset = mlx5_stats_reset,
322 .xstats_get = mlx5_xstats_get,
323 .xstats_reset = mlx5_xstats_reset,
324 .xstats_get_names = mlx5_xstats_get_names,
325 .dev_infos_get = mlx5_dev_infos_get,
326 .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
327 .vlan_filter_set = mlx5_vlan_filter_set,
328 .rx_queue_setup = mlx5_rx_queue_setup,
329 .tx_queue_setup = mlx5_tx_queue_setup,
330 .rx_queue_release = mlx5_rx_queue_release,
331 .tx_queue_release = mlx5_tx_queue_release,
332 .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
333 .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
334 .mac_addr_remove = mlx5_mac_addr_remove,
335 .mac_addr_add = mlx5_mac_addr_add,
336 .mac_addr_set = mlx5_mac_addr_set,
337 .set_mc_addr_list = mlx5_set_mc_addr_list,
338 .mtu_set = mlx5_dev_set_mtu,
339 .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
340 .vlan_offload_set = mlx5_vlan_offload_set,
341 .filter_ctrl = mlx5_dev_filter_ctrl,
342 .rx_descriptor_status = mlx5_rx_descriptor_status,
343 .tx_descriptor_status = mlx5_tx_descriptor_status,
344 .rx_queue_intr_enable = mlx5_rx_intr_enable,
345 .rx_queue_intr_disable = mlx5_rx_intr_disable,
346 .is_removed = mlx5_is_removed,
350 struct rte_pci_addr pci_addr; /* associated PCI address */
351 uint32_t ports; /* physical ports bitfield. */
355 * Get device index in mlx5_dev[] from PCI bus address.
357 * @param[in] pci_addr
358 * PCI bus address to look for.
361 * mlx5_dev[] index on success, -1 on failure.
364 mlx5_dev_idx(struct rte_pci_addr *pci_addr)
369 assert(pci_addr != NULL);
370 for (i = 0; (i != RTE_DIM(mlx5_dev)); ++i) {
371 if ((mlx5_dev[i].pci_addr.domain == pci_addr->domain) &&
372 (mlx5_dev[i].pci_addr.bus == pci_addr->bus) &&
373 (mlx5_dev[i].pci_addr.devid == pci_addr->devid) &&
374 (mlx5_dev[i].pci_addr.function == pci_addr->function))
376 if ((mlx5_dev[i].ports == 0) && (ret == -1))
383 * Verify and store value for device argument.
386 * Key argument to verify.
388 * Value associated with key.
393 * 0 on success, a negative errno value otherwise and rte_errno is set.
396 mlx5_args_check(const char *key, const char *val, void *opaque)
398 struct mlx5_dev_config *config = opaque;
402 tmp = strtoul(val, NULL, 0);
405 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
408 if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
409 config->cqe_comp = !!tmp;
410 } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
411 config->txq_inline = tmp;
412 } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
413 config->txqs_inline = tmp;
414 } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
415 config->mps = !!tmp ? config->mps : 0;
416 } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
417 config->mpw_hdr_dseg = !!tmp;
418 } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
419 config->inline_max_packet_sz = tmp;
420 } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
421 config->tx_vec_en = !!tmp;
422 } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
423 config->rx_vec_en = !!tmp;
424 } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
425 config->l3_vxlan_en = !!tmp;
426 } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
427 config->vf_nl_en = !!tmp;
429 DRV_LOG(WARNING, "%s: unknown parameter", key);
437 * Parse device parameters.
440 * Pointer to device configuration structure.
442 * Device arguments structure.
445 * 0 on success, a negative errno value otherwise and rte_errno is set.
448 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
450 const char **params = (const char *[]){
451 MLX5_RXQ_CQE_COMP_EN,
453 MLX5_TXQS_MIN_INLINE,
455 MLX5_TXQ_MPW_HDR_DSEG_EN,
456 MLX5_TXQ_MAX_INLINE_LEN,
463 struct rte_kvargs *kvlist;
469 /* Following UGLY cast is done to pass checkpatch. */
470 kvlist = rte_kvargs_parse(devargs->args, params);
473 /* Process parameters. */
474 for (i = 0; (params[i] != NULL); ++i) {
475 if (rte_kvargs_count(kvlist, params[i])) {
476 ret = rte_kvargs_process(kvlist, params[i],
477 mlx5_args_check, config);
480 rte_kvargs_free(kvlist);
485 rte_kvargs_free(kvlist);
489 static struct rte_pci_driver mlx5_driver;
492 * Reserved UAR address space for TXQ UAR(hw doorbell) mapping, process
493 * local resource used by both primary and secondary to avoid duplicate
495 * The space has to be available on both primary and secondary process,
496 * TXQ UAR maps to this area using fixed mmap w/o double check.
498 static void *uar_base;
501 find_lower_va_bound(const struct rte_memseg_list *msl __rte_unused,
502 const struct rte_memseg *ms, void *arg)
509 *addr = RTE_MIN(*addr, ms->addr);
515 * Reserve UAR address space for primary process.
518 * Pointer to Ethernet device.
521 * 0 on success, a negative errno value otherwise and rte_errno is set.
524 mlx5_uar_init_primary(struct rte_eth_dev *dev)
526 struct priv *priv = dev->data->dev_private;
527 void *addr = (void *)0;
529 if (uar_base) { /* UAR address space mapped. */
530 priv->uar_base = uar_base;
533 /* find out lower bound of hugepage segments */
534 rte_memseg_walk(find_lower_va_bound, &addr);
536 /* keep distance to hugepages to minimize potential conflicts. */
537 addr = RTE_PTR_SUB(addr, MLX5_UAR_OFFSET + MLX5_UAR_SIZE);
538 /* anonymous mmap, no real memory consumption. */
539 addr = mmap(addr, MLX5_UAR_SIZE,
540 PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
541 if (addr == MAP_FAILED) {
543 "port %u failed to reserve UAR address space, please"
544 " adjust MLX5_UAR_SIZE or try --base-virtaddr",
549 /* Accept either same addr or a new addr returned from mmap if target
552 DRV_LOG(INFO, "port %u reserved UAR address space: %p",
553 dev->data->port_id, addr);
554 priv->uar_base = addr; /* for primary and secondary UAR re-mmap. */
555 uar_base = addr; /* process local, don't reserve again. */
560 * Reserve UAR address space for secondary process, align with
564 * Pointer to Ethernet device.
567 * 0 on success, a negative errno value otherwise and rte_errno is set.
570 mlx5_uar_init_secondary(struct rte_eth_dev *dev)
572 struct priv *priv = dev->data->dev_private;
575 assert(priv->uar_base);
576 if (uar_base) { /* already reserved. */
577 assert(uar_base == priv->uar_base);
580 /* anonymous mmap, no real memory consumption. */
581 addr = mmap(priv->uar_base, MLX5_UAR_SIZE,
582 PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
583 if (addr == MAP_FAILED) {
584 DRV_LOG(ERR, "port %u UAR mmap failed: %p size: %llu",
585 dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
589 if (priv->uar_base != addr) {
591 "port %u UAR address %p size %llu occupied, please"
592 " adjust MLX5_UAR_OFFSET or try EAL parameter"
594 dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
598 uar_base = addr; /* process local, don't reserve again */
599 DRV_LOG(INFO, "port %u reserved UAR address space: %p",
600 dev->data->port_id, addr);
605 * DPDK callback to register a PCI device.
607 * This function creates an Ethernet device for each port of a given
611 * PCI driver structure (mlx5_driver).
613 * PCI device information.
616 * 0 on success, a negative errno value otherwise and rte_errno is set.
619 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
620 struct rte_pci_device *pci_dev)
622 struct ibv_device **list = NULL;
623 struct ibv_device *ibv_dev;
625 struct ibv_context *attr_ctx = NULL;
626 struct ibv_device_attr_ex device_attr;
629 unsigned int cqe_comp;
630 unsigned int tunnel_en = 0;
631 unsigned int swp = 0;
632 unsigned int verb_priorities = 0;
635 struct mlx5dv_context attrs_out = {0};
636 #ifdef HAVE_IBV_DEVICE_COUNTERS_SET_SUPPORT
637 struct ibv_counter_set_description cs_desc;
640 assert(pci_drv == &mlx5_driver);
641 /* Get mlx5_dev[] index. */
642 idx = mlx5_dev_idx(&pci_dev->addr);
644 DRV_LOG(ERR, "this driver cannot support any more adapters");
648 DRV_LOG(DEBUG, "using driver device index %d", idx);
649 /* Save PCI address. */
650 mlx5_dev[idx].pci_addr = pci_dev->addr;
651 list = mlx5_glue->get_device_list(&i);
657 "cannot list devices, is ib_uverbs loaded?");
662 * For each listed device, check related sysfs entry against
663 * the provided PCI ID.
666 struct rte_pci_addr pci_addr;
669 DRV_LOG(DEBUG, "checking device \"%s\"", list[i]->name);
670 if (mlx5_ibv_device_to_pci_addr(list[i], &pci_addr))
672 if ((pci_dev->addr.domain != pci_addr.domain) ||
673 (pci_dev->addr.bus != pci_addr.bus) ||
674 (pci_dev->addr.devid != pci_addr.devid) ||
675 (pci_dev->addr.function != pci_addr.function))
677 DRV_LOG(INFO, "PCI information matches, using device \"%s\"",
679 vf = ((pci_dev->id.device_id ==
680 PCI_DEVICE_ID_MELLANOX_CONNECTX4VF) ||
681 (pci_dev->id.device_id ==
682 PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF) ||
683 (pci_dev->id.device_id ==
684 PCI_DEVICE_ID_MELLANOX_CONNECTX5VF) ||
685 (pci_dev->id.device_id ==
686 PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF));
687 attr_ctx = mlx5_glue->open_device(list[i]);
692 if (attr_ctx == NULL) {
693 mlx5_glue->free_device_list(list);
697 "cannot access device, is mlx5_ib loaded?");
702 "cannot use device, are drivers up to date?");
707 DRV_LOG(DEBUG, "device opened");
708 #ifdef HAVE_IBV_MLX5_MOD_SWP
709 attrs_out.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
712 * Multi-packet send is supported by ConnectX-4 Lx PF as well
713 * as all ConnectX-5 devices.
715 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
716 attrs_out.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
718 mlx5_glue->dv_query_device(attr_ctx, &attrs_out);
719 if (attrs_out.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
720 if (attrs_out.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
721 DRV_LOG(DEBUG, "enhanced MPW is supported");
722 mps = MLX5_MPW_ENHANCED;
724 DRV_LOG(DEBUG, "MPW is supported");
728 DRV_LOG(DEBUG, "MPW isn't supported");
729 mps = MLX5_MPW_DISABLED;
731 #ifdef HAVE_IBV_MLX5_MOD_SWP
732 if (attrs_out.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
733 swp = attrs_out.sw_parsing_caps.sw_parsing_offloads;
734 DRV_LOG(DEBUG, "SWP support: %u", swp);
736 if (RTE_CACHE_LINE_SIZE == 128 &&
737 !(attrs_out.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
741 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
742 if (attrs_out.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
743 tunnel_en = ((attrs_out.tunnel_offloads_caps &
744 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
745 (attrs_out.tunnel_offloads_caps &
746 MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
748 DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
749 tunnel_en ? "" : "not ");
752 "tunnel offloading disabled due to old OFED/rdma-core version");
754 err = mlx5_glue->query_device_ex(attr_ctx, NULL, &device_attr);
756 DEBUG("ibv_query_device_ex() failed");
759 DRV_LOG(INFO, "%u port(s) detected",
760 device_attr.orig_attr.phys_port_cnt);
761 for (i = 0; i < device_attr.orig_attr.phys_port_cnt; i++) {
762 char name[RTE_ETH_NAME_MAX_LEN];
764 uint32_t port = i + 1; /* ports are indexed from one */
765 uint32_t test = (1 << i);
766 struct ibv_context *ctx = NULL;
767 struct ibv_port_attr port_attr;
768 struct ibv_pd *pd = NULL;
769 struct priv *priv = NULL;
770 struct rte_eth_dev *eth_dev = NULL;
771 struct ibv_device_attr_ex device_attr_ex;
772 struct ether_addr mac;
773 struct mlx5_dev_config config = {
774 .cqe_comp = cqe_comp,
776 .tunnel_en = tunnel_en,
780 .txq_inline = MLX5_ARG_UNSET,
781 .txqs_inline = MLX5_ARG_UNSET,
782 .inline_max_packet_sz = MLX5_ARG_UNSET,
787 len = snprintf(name, sizeof(name), PCI_PRI_FMT,
788 pci_dev->addr.domain, pci_dev->addr.bus,
789 pci_dev->addr.devid, pci_dev->addr.function);
790 if (device_attr.orig_attr.phys_port_cnt > 1)
791 snprintf(name + len, sizeof(name), " port %u", i);
792 mlx5_dev[idx].ports |= test;
793 if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
794 eth_dev = rte_eth_dev_attach_secondary(name);
795 if (eth_dev == NULL) {
796 DRV_LOG(ERR, "can not attach rte ethdev");
801 eth_dev->device = &pci_dev->device;
802 eth_dev->dev_ops = &mlx5_dev_sec_ops;
803 err = mlx5_uar_init_secondary(eth_dev);
808 /* Receive command fd from primary process */
809 err = mlx5_socket_connect(eth_dev);
814 /* Remap UAR for Tx queues. */
815 err = mlx5_tx_uar_remap(eth_dev, err);
821 * Ethdev pointer is still required as input since
822 * the primary device is not accessible from the
825 eth_dev->rx_pkt_burst =
826 mlx5_select_rx_function(eth_dev);
827 eth_dev->tx_pkt_burst =
828 mlx5_select_tx_function(eth_dev);
831 DRV_LOG(DEBUG, "using port %u (%08" PRIx32 ")", port, test);
832 ctx = mlx5_glue->open_device(ibv_dev);
837 /* Check port status. */
838 err = mlx5_glue->query_port(ctx, port, &port_attr);
840 DRV_LOG(ERR, "port query failed: %s", strerror(err));
843 if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
845 "port %d is not configured in Ethernet mode",
850 if (port_attr.state != IBV_PORT_ACTIVE)
851 DRV_LOG(DEBUG, "port %d is not active: \"%s\" (%d)",
853 mlx5_glue->port_state_str(port_attr.state),
855 /* Allocate protection domain. */
856 pd = mlx5_glue->alloc_pd(ctx);
858 DRV_LOG(ERR, "PD allocation failure");
862 mlx5_dev[idx].ports |= test;
863 /* from rte_ethdev.c */
864 priv = rte_zmalloc("ethdev private structure",
866 RTE_CACHE_LINE_SIZE);
868 DRV_LOG(ERR, "priv allocation failure");
873 strncpy(priv->ibdev_path, priv->ctx->device->ibdev_path,
874 sizeof(priv->ibdev_path));
875 priv->device_attr = device_attr;
878 priv->mtu = ETHER_MTU;
879 err = mlx5_args(&config, pci_dev->device.devargs);
881 DRV_LOG(ERR, "failed to process device arguments: %s",
886 err = mlx5_glue->query_device_ex(ctx, NULL, &device_attr_ex);
888 DRV_LOG(ERR, "ibv_query_device_ex() failed");
891 config.hw_csum = !!(device_attr_ex.device_cap_flags_ex &
892 IBV_DEVICE_RAW_IP_CSUM);
893 DRV_LOG(DEBUG, "checksum offloading is %ssupported",
894 (config.hw_csum ? "" : "not "));
895 #ifdef HAVE_IBV_DEVICE_COUNTERS_SET_SUPPORT
896 config.flow_counter_en = !!(device_attr.max_counter_sets);
897 mlx5_glue->describe_counter_set(ctx, 0, &cs_desc);
899 "counter type = %d, num of cs = %ld, attributes = %d",
900 cs_desc.counter_type, cs_desc.num_of_cs,
903 config.ind_table_max_size =
904 device_attr_ex.rss_caps.max_rwq_indirection_table_size;
905 /* Remove this check once DPDK supports larger/variable
906 * indirection tables. */
907 if (config.ind_table_max_size >
908 (unsigned int)ETH_RSS_RETA_SIZE_512)
909 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
910 DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
911 config.ind_table_max_size);
912 config.hw_vlan_strip = !!(device_attr_ex.raw_packet_caps &
913 IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
914 DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
915 (config.hw_vlan_strip ? "" : "not "));
917 config.hw_fcs_strip = !!(device_attr_ex.raw_packet_caps &
918 IBV_RAW_PACKET_CAP_SCATTER_FCS);
919 DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
920 (config.hw_fcs_strip ? "" : "not "));
922 #ifdef HAVE_IBV_WQ_FLAG_RX_END_PADDING
923 config.hw_padding = !!device_attr_ex.rx_pad_end_addr_align;
926 "hardware Rx end alignment padding is %ssupported",
927 (config.hw_padding ? "" : "not "));
929 config.tso = ((device_attr_ex.tso_caps.max_tso > 0) &&
930 (device_attr_ex.tso_caps.supported_qpts &
931 (1 << IBV_QPT_RAW_PACKET)));
933 config.tso_max_payload_sz =
934 device_attr_ex.tso_caps.max_tso;
935 if (config.mps && !mps) {
937 "multi-packet send not supported on this device"
938 " (" MLX5_TXQ_MPW_EN ")");
942 DRV_LOG(INFO, "%s MPS is %s",
943 config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
944 config.mps != MLX5_MPW_DISABLED ? "enabled" :
946 if (config.cqe_comp && !cqe_comp) {
947 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
950 eth_dev = rte_eth_dev_allocate(name);
951 if (eth_dev == NULL) {
952 DRV_LOG(ERR, "can not allocate rte ethdev");
956 eth_dev->data->dev_private = priv;
958 eth_dev->data->mac_addrs = priv->mac;
959 eth_dev->device = &pci_dev->device;
960 rte_eth_copy_pci_info(eth_dev, pci_dev);
961 eth_dev->device->driver = &mlx5_driver.driver;
962 err = mlx5_uar_init_primary(eth_dev);
967 /* Configure the first MAC address by default. */
968 if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
970 "port %u cannot get MAC address, is mlx5_en"
971 " loaded? (errno: %s)",
972 eth_dev->data->port_id, strerror(errno));
977 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
978 eth_dev->data->port_id,
979 mac.addr_bytes[0], mac.addr_bytes[1],
980 mac.addr_bytes[2], mac.addr_bytes[3],
981 mac.addr_bytes[4], mac.addr_bytes[5]);
984 char ifname[IF_NAMESIZE];
986 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
987 DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
988 eth_dev->data->port_id, ifname);
990 DRV_LOG(DEBUG, "port %u ifname is unknown",
991 eth_dev->data->port_id);
994 /* Get actual MTU if possible. */
995 err = mlx5_get_mtu(eth_dev, &priv->mtu);
1000 DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1003 * Initialize burst functions to prevent crashes before link-up.
1005 eth_dev->rx_pkt_burst = removed_rx_burst;
1006 eth_dev->tx_pkt_burst = removed_tx_burst;
1007 eth_dev->dev_ops = &mlx5_dev_ops;
1008 /* Register MAC address. */
1009 claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1010 priv->nl_socket = -1;
1012 if (vf && config.vf_nl_en) {
1013 priv->nl_socket = mlx5_nl_init(RTMGRP_LINK);
1014 if (priv->nl_socket < 0)
1015 priv->nl_socket = -1;
1016 mlx5_nl_mac_addr_sync(eth_dev);
1018 TAILQ_INIT(&priv->flows);
1019 TAILQ_INIT(&priv->ctrl_flows);
1020 /* Hint libmlx5 to use PMD allocator for data plane resources */
1021 struct mlx5dv_ctx_allocators alctr = {
1022 .alloc = &mlx5_alloc_verbs_buf,
1023 .free = &mlx5_free_verbs_buf,
1026 mlx5_glue->dv_set_context_attr(ctx,
1027 MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1028 (void *)((uintptr_t)&alctr));
1029 /* Bring Ethernet device up. */
1030 DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1031 eth_dev->data->port_id);
1032 mlx5_set_link_up(eth_dev);
1034 * Even though the interrupt handler is not installed yet,
1035 * interrupts will still trigger on the asyn_fd from
1036 * Verbs context returned by ibv_open_device().
1038 mlx5_link_update(eth_dev, 0);
1039 /* Store device configuration on private structure. */
1040 priv->config = config;
1041 /* Create drop queue. */
1042 err = mlx5_flow_create_drop_queue(eth_dev);
1044 DRV_LOG(ERR, "port %u drop queue allocation failed: %s",
1045 eth_dev->data->port_id, strerror(rte_errno));
1049 /* Supported Verbs flow priority number detection. */
1050 if (verb_priorities == 0)
1051 verb_priorities = mlx5_get_max_verbs_prio(eth_dev);
1052 if (verb_priorities < MLX5_VERBS_FLOW_PRIO_8) {
1053 DRV_LOG(ERR, "port %u wrong Verbs flow priorities: %u",
1054 eth_dev->data->port_id, verb_priorities);
1057 priv->config.max_verbs_prio = verb_priorities;
1063 claim_zero(mlx5_glue->dealloc_pd(pd));
1065 claim_zero(mlx5_glue->close_device(ctx));
1069 * XXX if something went wrong in the loop above, there is a resource
1070 * leak (ctx, pd, priv, dpdk ethdev) but we can do nothing about it as
1071 * long as the dpdk does not provide a way to deallocate a ethdev and a
1072 * way to enumerate the registered ethdevs to free the previous ones.
1074 /* no port found, complain */
1075 if (!mlx5_dev[idx].ports) {
1081 claim_zero(mlx5_glue->close_device(attr_ctx));
1083 mlx5_glue->free_device_list(list);
1091 static const struct rte_pci_id mlx5_pci_id_map[] = {
1093 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1094 PCI_DEVICE_ID_MELLANOX_CONNECTX4)
1097 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1098 PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
1101 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1102 PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
1105 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1106 PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
1109 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1110 PCI_DEVICE_ID_MELLANOX_CONNECTX5)
1113 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1114 PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
1117 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1118 PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
1121 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1122 PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
1129 static struct rte_pci_driver mlx5_driver = {
1131 .name = MLX5_DRIVER_NAME
1133 .id_table = mlx5_pci_id_map,
1134 .probe = mlx5_pci_probe,
1135 .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV,
1138 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1141 * Suffix RTE_EAL_PMD_PATH with "-glue".
1143 * This function performs a sanity check on RTE_EAL_PMD_PATH before
1144 * suffixing its last component.
1147 * Output buffer, should be large enough otherwise NULL is returned.
1152 * Pointer to @p buf or @p NULL in case suffix cannot be appended.
1155 mlx5_glue_path(char *buf, size_t size)
1157 static const char *const bad[] = { "/", ".", "..", NULL };
1158 const char *path = RTE_EAL_PMD_PATH;
1159 size_t len = strlen(path);
1163 while (len && path[len - 1] == '/')
1165 for (off = len; off && path[off - 1] != '/'; --off)
1167 for (i = 0; bad[i]; ++i)
1168 if (!strncmp(path + off, bad[i], (int)(len - off)))
1170 i = snprintf(buf, size, "%.*s-glue", (int)len, path);
1171 if (i == -1 || (size_t)i >= size)
1176 "unable to append \"-glue\" to last component of"
1177 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
1178 " please re-configure DPDK");
1183 * Initialization routine for run-time dependency on rdma-core.
1186 mlx5_glue_init(void)
1188 char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
1189 const char *path[] = {
1191 * A basic security check is necessary before trusting
1192 * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
1194 (geteuid() == getuid() && getegid() == getgid() ?
1195 getenv("MLX5_GLUE_PATH") : NULL),
1197 * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
1198 * variant, otherwise let dlopen() look up libraries on its
1201 (*RTE_EAL_PMD_PATH ?
1202 mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
1205 void *handle = NULL;
1209 while (!handle && i != RTE_DIM(path)) {
1218 end = strpbrk(path[i], ":;");
1220 end = path[i] + strlen(path[i]);
1221 len = end - path[i];
1226 ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
1228 (!len || *(end - 1) == '/') ? "" : "/");
1231 if (sizeof(name) != (size_t)ret + 1)
1233 DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
1235 handle = dlopen(name, RTLD_LAZY);
1246 DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
1249 sym = dlsym(handle, "mlx5_glue");
1250 if (!sym || !*sym) {
1254 DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
1263 "cannot initialize PMD due to missing run-time dependency on"
1264 " rdma-core libraries (libibverbs, libmlx5)");
1271 * Driver initialization routine.
1273 RTE_INIT(rte_mlx5_pmd_init);
1275 rte_mlx5_pmd_init(void)
1277 /* Build the static tables for Verbs conversion. */
1278 mlx5_set_ptype_table();
1279 mlx5_set_cksum_table();
1280 mlx5_set_swp_types_table();
1282 * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
1283 * huge pages. Calling ibv_fork_init() during init allows
1284 * applications to use fork() safely for purposes other than
1285 * using this PMD, which is not supported in forked processes.
1287 setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
1288 /* Match the size of Rx completion entry to the size of a cacheline. */
1289 if (RTE_CACHE_LINE_SIZE == 128)
1290 setenv("MLX5_CQE_SIZE", "128", 0);
1291 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1292 if (mlx5_glue_init())
1297 /* Glue structure must not contain any NULL pointers. */
1301 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
1302 assert(((const void *const *)mlx5_glue)[i]);
1305 if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
1307 "rdma-core glue \"%s\" mismatch: \"%s\" is required",
1308 mlx5_glue->version, MLX5_GLUE_VERSION);
1311 mlx5_glue->fork_init();
1312 rte_pci_register(&mlx5_driver);
1315 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
1316 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
1317 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");
1319 /** Initialize driver log type. */
1320 RTE_INIT(vdev_netvsc_init_log)
1322 mlx5_logtype = rte_log_register("pmd.net.mlx5");
1323 if (mlx5_logtype >= 0)
1324 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);