net/mlx5: simplify flow counters support check
[dpdk.git] / drivers / net / mlx5 / mlx5.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox Technologies, Ltd
4  */
5
6 #include <stddef.h>
7 #include <unistd.h>
8 #include <string.h>
9 #include <assert.h>
10 #include <dlfcn.h>
11 #include <stdint.h>
12 #include <stdlib.h>
13 #include <errno.h>
14 #include <net/if.h>
15 #include <sys/mman.h>
16 #include <linux/netlink.h>
17 #include <linux/rtnetlink.h>
18
19 /* Verbs header. */
20 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
21 #ifdef PEDANTIC
22 #pragma GCC diagnostic ignored "-Wpedantic"
23 #endif
24 #include <infiniband/verbs.h>
25 #ifdef PEDANTIC
26 #pragma GCC diagnostic error "-Wpedantic"
27 #endif
28
29 #include <rte_malloc.h>
30 #include <rte_ethdev_driver.h>
31 #include <rte_ethdev_pci.h>
32 #include <rte_pci.h>
33 #include <rte_bus_pci.h>
34 #include <rte_common.h>
35 #include <rte_config.h>
36 #include <rte_eal_memconfig.h>
37 #include <rte_kvargs.h>
38 #include <rte_rwlock.h>
39 #include <rte_spinlock.h>
40 #include <rte_string_fns.h>
41
42 #include "mlx5.h"
43 #include "mlx5_utils.h"
44 #include "mlx5_rxtx.h"
45 #include "mlx5_autoconf.h"
46 #include "mlx5_defs.h"
47 #include "mlx5_glue.h"
48 #include "mlx5_mr.h"
49 #include "mlx5_flow.h"
50
51 /* Device parameter to enable RX completion queue compression. */
52 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
53
54 /* Device parameter to enable Multi-Packet Rx queue. */
55 #define MLX5_RX_MPRQ_EN "mprq_en"
56
57 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
58 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
59
60 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
61 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
62
63 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
64 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
65
66 /* Device parameter to configure inline send. */
67 #define MLX5_TXQ_INLINE "txq_inline"
68
69 /*
70  * Device parameter to configure the number of TX queues threshold for
71  * enabling inline send.
72  */
73 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
74
75 /* Device parameter to enable multi-packet send WQEs. */
76 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
77
78 /* Device parameter to include 2 dsegs in the title WQEBB. */
79 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
80
81 /* Device parameter to limit the size of inlining packet. */
82 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
83
84 /* Device parameter to enable hardware Tx vector. */
85 #define MLX5_TX_VEC_EN "tx_vec_en"
86
87 /* Device parameter to enable hardware Rx vector. */
88 #define MLX5_RX_VEC_EN "rx_vec_en"
89
90 /* Allow L3 VXLAN flow creation. */
91 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
92
93 /* Activate DV flow steering. */
94 #define MLX5_DV_FLOW_EN "dv_flow_en"
95
96 /* Activate Netlink support in VF mode. */
97 #define MLX5_VF_NL_EN "vf_nl_en"
98
99 /* Select port representors to instantiate. */
100 #define MLX5_REPRESENTOR "representor"
101
102 #ifndef HAVE_IBV_MLX5_MOD_MPW
103 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
104 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
105 #endif
106
107 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
108 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
109 #endif
110
111 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
112
113 /* Shared memory between primary and secondary processes. */
114 struct mlx5_shared_data *mlx5_shared_data;
115
116 /* Spinlock for mlx5_shared_data allocation. */
117 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
118
119 /** Driver-specific log messages type. */
120 int mlx5_logtype;
121
122 /**
123  * Prepare shared data between primary and secondary process.
124  */
125 static void
126 mlx5_prepare_shared_data(void)
127 {
128         const struct rte_memzone *mz;
129
130         rte_spinlock_lock(&mlx5_shared_data_lock);
131         if (mlx5_shared_data == NULL) {
132                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
133                         /* Allocate shared memory. */
134                         mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
135                                                  sizeof(*mlx5_shared_data),
136                                                  SOCKET_ID_ANY, 0);
137                 } else {
138                         /* Lookup allocated shared memory. */
139                         mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
140                 }
141                 if (mz == NULL)
142                         rte_panic("Cannot allocate mlx5 shared data\n");
143                 mlx5_shared_data = mz->addr;
144                 /* Initialize shared data. */
145                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
146                         LIST_INIT(&mlx5_shared_data->mem_event_cb_list);
147                         rte_rwlock_init(&mlx5_shared_data->mem_event_rwlock);
148                 }
149                 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
150                                                 mlx5_mr_mem_event_cb, NULL);
151         }
152         rte_spinlock_unlock(&mlx5_shared_data_lock);
153 }
154
155 /**
156  * Retrieve integer value from environment variable.
157  *
158  * @param[in] name
159  *   Environment variable name.
160  *
161  * @return
162  *   Integer value, 0 if the variable is not set.
163  */
164 int
165 mlx5_getenv_int(const char *name)
166 {
167         const char *val = getenv(name);
168
169         if (val == NULL)
170                 return 0;
171         return atoi(val);
172 }
173
174 /**
175  * Verbs callback to allocate a memory. This function should allocate the space
176  * according to the size provided residing inside a huge page.
177  * Please note that all allocation must respect the alignment from libmlx5
178  * (i.e. currently sysconf(_SC_PAGESIZE)).
179  *
180  * @param[in] size
181  *   The size in bytes of the memory to allocate.
182  * @param[in] data
183  *   A pointer to the callback data.
184  *
185  * @return
186  *   Allocated buffer, NULL otherwise and rte_errno is set.
187  */
188 static void *
189 mlx5_alloc_verbs_buf(size_t size, void *data)
190 {
191         struct priv *priv = data;
192         void *ret;
193         size_t alignment = sysconf(_SC_PAGESIZE);
194         unsigned int socket = SOCKET_ID_ANY;
195
196         if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
197                 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
198
199                 socket = ctrl->socket;
200         } else if (priv->verbs_alloc_ctx.type ==
201                    MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
202                 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
203
204                 socket = ctrl->socket;
205         }
206         assert(data != NULL);
207         ret = rte_malloc_socket(__func__, size, alignment, socket);
208         if (!ret && size)
209                 rte_errno = ENOMEM;
210         return ret;
211 }
212
213 /**
214  * Verbs callback to free a memory.
215  *
216  * @param[in] ptr
217  *   A pointer to the memory to free.
218  * @param[in] data
219  *   A pointer to the callback data.
220  */
221 static void
222 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
223 {
224         assert(data != NULL);
225         rte_free(ptr);
226 }
227
228 /**
229  * DPDK callback to close the device.
230  *
231  * Destroy all queues and objects, free memory.
232  *
233  * @param dev
234  *   Pointer to Ethernet device structure.
235  */
236 static void
237 mlx5_dev_close(struct rte_eth_dev *dev)
238 {
239         struct priv *priv = dev->data->dev_private;
240         unsigned int i;
241         int ret;
242
243         DRV_LOG(DEBUG, "port %u closing device \"%s\"",
244                 dev->data->port_id,
245                 ((priv->ctx != NULL) ? priv->ctx->device->name : ""));
246         /* In case mlx5_dev_stop() has not been called. */
247         mlx5_dev_interrupt_handler_uninstall(dev);
248         mlx5_traffic_disable(dev);
249         mlx5_flow_flush(dev, NULL);
250         /* Prevent crashes when queues are still in use. */
251         dev->rx_pkt_burst = removed_rx_burst;
252         dev->tx_pkt_burst = removed_tx_burst;
253         if (priv->rxqs != NULL) {
254                 /* XXX race condition if mlx5_rx_burst() is still running. */
255                 usleep(1000);
256                 for (i = 0; (i != priv->rxqs_n); ++i)
257                         mlx5_rxq_release(dev, i);
258                 priv->rxqs_n = 0;
259                 priv->rxqs = NULL;
260         }
261         if (priv->txqs != NULL) {
262                 /* XXX race condition if mlx5_tx_burst() is still running. */
263                 usleep(1000);
264                 for (i = 0; (i != priv->txqs_n); ++i)
265                         mlx5_txq_release(dev, i);
266                 priv->txqs_n = 0;
267                 priv->txqs = NULL;
268         }
269         mlx5_mprq_free_mp(dev);
270         mlx5_mr_release(dev);
271         if (priv->pd != NULL) {
272                 assert(priv->ctx != NULL);
273                 claim_zero(mlx5_glue->dealloc_pd(priv->pd));
274                 claim_zero(mlx5_glue->close_device(priv->ctx));
275         } else
276                 assert(priv->ctx == NULL);
277         if (priv->rss_conf.rss_key != NULL)
278                 rte_free(priv->rss_conf.rss_key);
279         if (priv->reta_idx != NULL)
280                 rte_free(priv->reta_idx);
281         if (priv->primary_socket)
282                 mlx5_socket_uninit(dev);
283         if (priv->config.vf)
284                 mlx5_nl_mac_addr_flush(dev);
285         if (priv->nl_socket_route >= 0)
286                 close(priv->nl_socket_route);
287         if (priv->nl_socket_rdma >= 0)
288                 close(priv->nl_socket_rdma);
289         if (priv->tcf_context)
290                 mlx5_flow_tcf_context_destroy(priv->tcf_context);
291         ret = mlx5_hrxq_ibv_verify(dev);
292         if (ret)
293                 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
294                         dev->data->port_id);
295         ret = mlx5_ind_table_ibv_verify(dev);
296         if (ret)
297                 DRV_LOG(WARNING, "port %u some indirection table still remain",
298                         dev->data->port_id);
299         ret = mlx5_rxq_ibv_verify(dev);
300         if (ret)
301                 DRV_LOG(WARNING, "port %u some Verbs Rx queue still remain",
302                         dev->data->port_id);
303         ret = mlx5_rxq_verify(dev);
304         if (ret)
305                 DRV_LOG(WARNING, "port %u some Rx queues still remain",
306                         dev->data->port_id);
307         ret = mlx5_txq_ibv_verify(dev);
308         if (ret)
309                 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
310                         dev->data->port_id);
311         ret = mlx5_txq_verify(dev);
312         if (ret)
313                 DRV_LOG(WARNING, "port %u some Tx queues still remain",
314                         dev->data->port_id);
315         ret = mlx5_flow_verify(dev);
316         if (ret)
317                 DRV_LOG(WARNING, "port %u some flows still remain",
318                         dev->data->port_id);
319         if (priv->domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
320                 unsigned int c = 0;
321                 unsigned int i = mlx5_dev_to_port_id(dev->device, NULL, 0);
322                 uint16_t port_id[i];
323
324                 i = RTE_MIN(mlx5_dev_to_port_id(dev->device, port_id, i), i);
325                 while (i--) {
326                         struct priv *opriv =
327                                 rte_eth_devices[port_id[i]].data->dev_private;
328
329                         if (!opriv ||
330                             opriv->domain_id != priv->domain_id ||
331                             &rte_eth_devices[port_id[i]] == dev)
332                                 continue;
333                         ++c;
334                 }
335                 if (!c)
336                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
337         }
338         memset(priv, 0, sizeof(*priv));
339         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
340 }
341
342 const struct eth_dev_ops mlx5_dev_ops = {
343         .dev_configure = mlx5_dev_configure,
344         .dev_start = mlx5_dev_start,
345         .dev_stop = mlx5_dev_stop,
346         .dev_set_link_down = mlx5_set_link_down,
347         .dev_set_link_up = mlx5_set_link_up,
348         .dev_close = mlx5_dev_close,
349         .promiscuous_enable = mlx5_promiscuous_enable,
350         .promiscuous_disable = mlx5_promiscuous_disable,
351         .allmulticast_enable = mlx5_allmulticast_enable,
352         .allmulticast_disable = mlx5_allmulticast_disable,
353         .link_update = mlx5_link_update,
354         .stats_get = mlx5_stats_get,
355         .stats_reset = mlx5_stats_reset,
356         .xstats_get = mlx5_xstats_get,
357         .xstats_reset = mlx5_xstats_reset,
358         .xstats_get_names = mlx5_xstats_get_names,
359         .dev_infos_get = mlx5_dev_infos_get,
360         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
361         .vlan_filter_set = mlx5_vlan_filter_set,
362         .rx_queue_setup = mlx5_rx_queue_setup,
363         .tx_queue_setup = mlx5_tx_queue_setup,
364         .rx_queue_release = mlx5_rx_queue_release,
365         .tx_queue_release = mlx5_tx_queue_release,
366         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
367         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
368         .mac_addr_remove = mlx5_mac_addr_remove,
369         .mac_addr_add = mlx5_mac_addr_add,
370         .mac_addr_set = mlx5_mac_addr_set,
371         .set_mc_addr_list = mlx5_set_mc_addr_list,
372         .mtu_set = mlx5_dev_set_mtu,
373         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
374         .vlan_offload_set = mlx5_vlan_offload_set,
375         .reta_update = mlx5_dev_rss_reta_update,
376         .reta_query = mlx5_dev_rss_reta_query,
377         .rss_hash_update = mlx5_rss_hash_update,
378         .rss_hash_conf_get = mlx5_rss_hash_conf_get,
379         .filter_ctrl = mlx5_dev_filter_ctrl,
380         .rx_descriptor_status = mlx5_rx_descriptor_status,
381         .tx_descriptor_status = mlx5_tx_descriptor_status,
382         .rx_queue_intr_enable = mlx5_rx_intr_enable,
383         .rx_queue_intr_disable = mlx5_rx_intr_disable,
384         .is_removed = mlx5_is_removed,
385 };
386
387 static const struct eth_dev_ops mlx5_dev_sec_ops = {
388         .stats_get = mlx5_stats_get,
389         .stats_reset = mlx5_stats_reset,
390         .xstats_get = mlx5_xstats_get,
391         .xstats_reset = mlx5_xstats_reset,
392         .xstats_get_names = mlx5_xstats_get_names,
393         .dev_infos_get = mlx5_dev_infos_get,
394         .rx_descriptor_status = mlx5_rx_descriptor_status,
395         .tx_descriptor_status = mlx5_tx_descriptor_status,
396 };
397
398 /* Available operators in flow isolated mode. */
399 const struct eth_dev_ops mlx5_dev_ops_isolate = {
400         .dev_configure = mlx5_dev_configure,
401         .dev_start = mlx5_dev_start,
402         .dev_stop = mlx5_dev_stop,
403         .dev_set_link_down = mlx5_set_link_down,
404         .dev_set_link_up = mlx5_set_link_up,
405         .dev_close = mlx5_dev_close,
406         .promiscuous_enable = mlx5_promiscuous_enable,
407         .promiscuous_disable = mlx5_promiscuous_disable,
408         .allmulticast_enable = mlx5_allmulticast_enable,
409         .allmulticast_disable = mlx5_allmulticast_disable,
410         .link_update = mlx5_link_update,
411         .stats_get = mlx5_stats_get,
412         .stats_reset = mlx5_stats_reset,
413         .xstats_get = mlx5_xstats_get,
414         .xstats_reset = mlx5_xstats_reset,
415         .xstats_get_names = mlx5_xstats_get_names,
416         .dev_infos_get = mlx5_dev_infos_get,
417         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
418         .vlan_filter_set = mlx5_vlan_filter_set,
419         .rx_queue_setup = mlx5_rx_queue_setup,
420         .tx_queue_setup = mlx5_tx_queue_setup,
421         .rx_queue_release = mlx5_rx_queue_release,
422         .tx_queue_release = mlx5_tx_queue_release,
423         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
424         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
425         .mac_addr_remove = mlx5_mac_addr_remove,
426         .mac_addr_add = mlx5_mac_addr_add,
427         .mac_addr_set = mlx5_mac_addr_set,
428         .set_mc_addr_list = mlx5_set_mc_addr_list,
429         .mtu_set = mlx5_dev_set_mtu,
430         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
431         .vlan_offload_set = mlx5_vlan_offload_set,
432         .filter_ctrl = mlx5_dev_filter_ctrl,
433         .rx_descriptor_status = mlx5_rx_descriptor_status,
434         .tx_descriptor_status = mlx5_tx_descriptor_status,
435         .rx_queue_intr_enable = mlx5_rx_intr_enable,
436         .rx_queue_intr_disable = mlx5_rx_intr_disable,
437         .is_removed = mlx5_is_removed,
438 };
439
440 /**
441  * Verify and store value for device argument.
442  *
443  * @param[in] key
444  *   Key argument to verify.
445  * @param[in] val
446  *   Value associated with key.
447  * @param opaque
448  *   User data.
449  *
450  * @return
451  *   0 on success, a negative errno value otherwise and rte_errno is set.
452  */
453 static int
454 mlx5_args_check(const char *key, const char *val, void *opaque)
455 {
456         struct mlx5_dev_config *config = opaque;
457         unsigned long tmp;
458
459         /* No-op, port representors are processed in mlx5_dev_spawn(). */
460         if (!strcmp(MLX5_REPRESENTOR, key))
461                 return 0;
462         errno = 0;
463         tmp = strtoul(val, NULL, 0);
464         if (errno) {
465                 rte_errno = errno;
466                 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
467                 return -rte_errno;
468         }
469         if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
470                 config->cqe_comp = !!tmp;
471         } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
472                 config->mprq.enabled = !!tmp;
473         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
474                 config->mprq.stride_num_n = tmp;
475         } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
476                 config->mprq.max_memcpy_len = tmp;
477         } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
478                 config->mprq.min_rxqs_num = tmp;
479         } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
480                 config->txq_inline = tmp;
481         } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
482                 config->txqs_inline = tmp;
483         } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
484                 config->mps = !!tmp;
485         } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
486                 config->mpw_hdr_dseg = !!tmp;
487         } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
488                 config->inline_max_packet_sz = tmp;
489         } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
490                 config->tx_vec_en = !!tmp;
491         } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
492                 config->rx_vec_en = !!tmp;
493         } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
494                 config->l3_vxlan_en = !!tmp;
495         } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
496                 config->vf_nl_en = !!tmp;
497         } else if (strcmp(MLX5_DV_FLOW_EN, key) == 0) {
498                 config->dv_flow_en = !!tmp;
499         } else {
500                 DRV_LOG(WARNING, "%s: unknown parameter", key);
501                 rte_errno = EINVAL;
502                 return -rte_errno;
503         }
504         return 0;
505 }
506
507 /**
508  * Parse device parameters.
509  *
510  * @param config
511  *   Pointer to device configuration structure.
512  * @param devargs
513  *   Device arguments structure.
514  *
515  * @return
516  *   0 on success, a negative errno value otherwise and rte_errno is set.
517  */
518 static int
519 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
520 {
521         const char **params = (const char *[]){
522                 MLX5_RXQ_CQE_COMP_EN,
523                 MLX5_RX_MPRQ_EN,
524                 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
525                 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
526                 MLX5_RXQS_MIN_MPRQ,
527                 MLX5_TXQ_INLINE,
528                 MLX5_TXQS_MIN_INLINE,
529                 MLX5_TXQ_MPW_EN,
530                 MLX5_TXQ_MPW_HDR_DSEG_EN,
531                 MLX5_TXQ_MAX_INLINE_LEN,
532                 MLX5_TX_VEC_EN,
533                 MLX5_RX_VEC_EN,
534                 MLX5_L3_VXLAN_EN,
535                 MLX5_VF_NL_EN,
536                 MLX5_DV_FLOW_EN,
537                 MLX5_REPRESENTOR,
538                 NULL,
539         };
540         struct rte_kvargs *kvlist;
541         int ret = 0;
542         int i;
543
544         if (devargs == NULL)
545                 return 0;
546         /* Following UGLY cast is done to pass checkpatch. */
547         kvlist = rte_kvargs_parse(devargs->args, params);
548         if (kvlist == NULL)
549                 return 0;
550         /* Process parameters. */
551         for (i = 0; (params[i] != NULL); ++i) {
552                 if (rte_kvargs_count(kvlist, params[i])) {
553                         ret = rte_kvargs_process(kvlist, params[i],
554                                                  mlx5_args_check, config);
555                         if (ret) {
556                                 rte_errno = EINVAL;
557                                 rte_kvargs_free(kvlist);
558                                 return -rte_errno;
559                         }
560                 }
561         }
562         rte_kvargs_free(kvlist);
563         return 0;
564 }
565
566 static struct rte_pci_driver mlx5_driver;
567
568 /*
569  * Reserved UAR address space for TXQ UAR(hw doorbell) mapping, process
570  * local resource used by both primary and secondary to avoid duplicate
571  * reservation.
572  * The space has to be available on both primary and secondary process,
573  * TXQ UAR maps to this area using fixed mmap w/o double check.
574  */
575 static void *uar_base;
576
577 static int
578 find_lower_va_bound(const struct rte_memseg_list *msl,
579                 const struct rte_memseg *ms, void *arg)
580 {
581         void **addr = arg;
582
583         if (msl->external)
584                 return 0;
585         if (*addr == NULL)
586                 *addr = ms->addr;
587         else
588                 *addr = RTE_MIN(*addr, ms->addr);
589
590         return 0;
591 }
592
593 /**
594  * Reserve UAR address space for primary process.
595  *
596  * @param[in] dev
597  *   Pointer to Ethernet device.
598  *
599  * @return
600  *   0 on success, a negative errno value otherwise and rte_errno is set.
601  */
602 static int
603 mlx5_uar_init_primary(struct rte_eth_dev *dev)
604 {
605         struct priv *priv = dev->data->dev_private;
606         void *addr = (void *)0;
607
608         if (uar_base) { /* UAR address space mapped. */
609                 priv->uar_base = uar_base;
610                 return 0;
611         }
612         /* find out lower bound of hugepage segments */
613         rte_memseg_walk(find_lower_va_bound, &addr);
614
615         /* keep distance to hugepages to minimize potential conflicts. */
616         addr = RTE_PTR_SUB(addr, (uintptr_t)(MLX5_UAR_OFFSET + MLX5_UAR_SIZE));
617         /* anonymous mmap, no real memory consumption. */
618         addr = mmap(addr, MLX5_UAR_SIZE,
619                     PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
620         if (addr == MAP_FAILED) {
621                 DRV_LOG(ERR,
622                         "port %u failed to reserve UAR address space, please"
623                         " adjust MLX5_UAR_SIZE or try --base-virtaddr",
624                         dev->data->port_id);
625                 rte_errno = ENOMEM;
626                 return -rte_errno;
627         }
628         /* Accept either same addr or a new addr returned from mmap if target
629          * range occupied.
630          */
631         DRV_LOG(INFO, "port %u reserved UAR address space: %p",
632                 dev->data->port_id, addr);
633         priv->uar_base = addr; /* for primary and secondary UAR re-mmap. */
634         uar_base = addr; /* process local, don't reserve again. */
635         return 0;
636 }
637
638 /**
639  * Reserve UAR address space for secondary process, align with
640  * primary process.
641  *
642  * @param[in] dev
643  *   Pointer to Ethernet device.
644  *
645  * @return
646  *   0 on success, a negative errno value otherwise and rte_errno is set.
647  */
648 static int
649 mlx5_uar_init_secondary(struct rte_eth_dev *dev)
650 {
651         struct priv *priv = dev->data->dev_private;
652         void *addr;
653
654         assert(priv->uar_base);
655         if (uar_base) { /* already reserved. */
656                 assert(uar_base == priv->uar_base);
657                 return 0;
658         }
659         /* anonymous mmap, no real memory consumption. */
660         addr = mmap(priv->uar_base, MLX5_UAR_SIZE,
661                     PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
662         if (addr == MAP_FAILED) {
663                 DRV_LOG(ERR, "port %u UAR mmap failed: %p size: %llu",
664                         dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
665                 rte_errno = ENXIO;
666                 return -rte_errno;
667         }
668         if (priv->uar_base != addr) {
669                 DRV_LOG(ERR,
670                         "port %u UAR address %p size %llu occupied, please"
671                         " adjust MLX5_UAR_OFFSET or try EAL parameter"
672                         " --base-virtaddr",
673                         dev->data->port_id, priv->uar_base, MLX5_UAR_SIZE);
674                 rte_errno = ENXIO;
675                 return -rte_errno;
676         }
677         uar_base = addr; /* process local, don't reserve again */
678         DRV_LOG(INFO, "port %u reserved UAR address space: %p",
679                 dev->data->port_id, addr);
680         return 0;
681 }
682
683 /**
684  * Spawn an Ethernet device from Verbs information.
685  *
686  * @param dpdk_dev
687  *   Backing DPDK device.
688  * @param ibv_dev
689  *   Verbs device.
690  * @param vf
691  *   If nonzero, enable VF-specific features.
692  * @param[in] switch_info
693  *   Switch properties of Ethernet device.
694  *
695  * @return
696  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
697  *   is set. The following error is defined:
698  *
699  *   EBUSY: device is not supposed to be spawned.
700  */
701 static struct rte_eth_dev *
702 mlx5_dev_spawn(struct rte_device *dpdk_dev,
703                struct ibv_device *ibv_dev,
704                int vf,
705                const struct mlx5_switch_info *switch_info)
706 {
707         struct ibv_context *ctx;
708         struct ibv_device_attr_ex attr;
709         struct ibv_port_attr port_attr;
710         struct ibv_pd *pd = NULL;
711         struct mlx5dv_context dv_attr = { .comp_mask = 0 };
712         struct mlx5_dev_config config = {
713                 .vf = !!vf,
714                 .mps = MLX5_ARG_UNSET,
715                 .tx_vec_en = 1,
716                 .rx_vec_en = 1,
717                 .mpw_hdr_dseg = 0,
718                 .txq_inline = MLX5_ARG_UNSET,
719                 .txqs_inline = MLX5_ARG_UNSET,
720                 .inline_max_packet_sz = MLX5_ARG_UNSET,
721                 .vf_nl_en = 1,
722                 .mprq = {
723                         .enabled = 0,
724                         .stride_num_n = MLX5_MPRQ_STRIDE_NUM_N,
725                         .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
726                         .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
727                 },
728         };
729         struct rte_eth_dev *eth_dev = NULL;
730         struct priv *priv = NULL;
731         int err = 0;
732         unsigned int mps;
733         unsigned int cqe_comp;
734         unsigned int tunnel_en = 0;
735         unsigned int mpls_en = 0;
736         unsigned int swp = 0;
737         unsigned int mprq = 0;
738         unsigned int mprq_min_stride_size_n = 0;
739         unsigned int mprq_max_stride_size_n = 0;
740         unsigned int mprq_min_stride_num_n = 0;
741         unsigned int mprq_max_stride_num_n = 0;
742         struct ether_addr mac;
743         char name[RTE_ETH_NAME_MAX_LEN];
744         int own_domain_id = 0;
745         unsigned int i;
746
747         /* Determine if this port representor is supposed to be spawned. */
748         if (switch_info->representor && dpdk_dev->devargs) {
749                 struct rte_eth_devargs eth_da;
750
751                 err = rte_eth_devargs_parse(dpdk_dev->devargs->args, &eth_da);
752                 if (err) {
753                         rte_errno = -err;
754                         DRV_LOG(ERR, "failed to process device arguments: %s",
755                                 strerror(rte_errno));
756                         return NULL;
757                 }
758                 for (i = 0; i < eth_da.nb_representor_ports; ++i)
759                         if (eth_da.representor_ports[i] ==
760                             (uint16_t)switch_info->port_name)
761                                 break;
762                 if (i == eth_da.nb_representor_ports) {
763                         rte_errno = EBUSY;
764                         return NULL;
765                 }
766         }
767         /* Prepare shared data between primary and secondary process. */
768         mlx5_prepare_shared_data();
769         errno = 0;
770         ctx = mlx5_glue->open_device(ibv_dev);
771         if (!ctx) {
772                 rte_errno = errno ? errno : ENODEV;
773                 return NULL;
774         }
775 #ifdef HAVE_IBV_MLX5_MOD_SWP
776         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
777 #endif
778         /*
779          * Multi-packet send is supported by ConnectX-4 Lx PF as well
780          * as all ConnectX-5 devices.
781          */
782 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
783         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
784 #endif
785 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
786         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
787 #endif
788         mlx5_glue->dv_query_device(ctx, &dv_attr);
789         if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
790                 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
791                         DRV_LOG(DEBUG, "enhanced MPW is supported");
792                         mps = MLX5_MPW_ENHANCED;
793                 } else {
794                         DRV_LOG(DEBUG, "MPW is supported");
795                         mps = MLX5_MPW;
796                 }
797         } else {
798                 DRV_LOG(DEBUG, "MPW isn't supported");
799                 mps = MLX5_MPW_DISABLED;
800         }
801 #ifdef HAVE_IBV_MLX5_MOD_SWP
802         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
803                 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
804         DRV_LOG(DEBUG, "SWP support: %u", swp);
805 #endif
806         config.swp = !!swp;
807 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
808         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
809                 struct mlx5dv_striding_rq_caps mprq_caps =
810                         dv_attr.striding_rq_caps;
811
812                 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
813                         mprq_caps.min_single_stride_log_num_of_bytes);
814                 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
815                         mprq_caps.max_single_stride_log_num_of_bytes);
816                 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
817                         mprq_caps.min_single_wqe_log_num_of_strides);
818                 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
819                         mprq_caps.max_single_wqe_log_num_of_strides);
820                 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
821                         mprq_caps.supported_qpts);
822                 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
823                 mprq = 1;
824                 mprq_min_stride_size_n =
825                         mprq_caps.min_single_stride_log_num_of_bytes;
826                 mprq_max_stride_size_n =
827                         mprq_caps.max_single_stride_log_num_of_bytes;
828                 mprq_min_stride_num_n =
829                         mprq_caps.min_single_wqe_log_num_of_strides;
830                 mprq_max_stride_num_n =
831                         mprq_caps.max_single_wqe_log_num_of_strides;
832                 config.mprq.stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
833                                                    mprq_min_stride_num_n);
834         }
835 #endif
836         if (RTE_CACHE_LINE_SIZE == 128 &&
837             !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
838                 cqe_comp = 0;
839         else
840                 cqe_comp = 1;
841         config.cqe_comp = cqe_comp;
842 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
843         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
844                 tunnel_en = ((dv_attr.tunnel_offloads_caps &
845                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
846                              (dv_attr.tunnel_offloads_caps &
847                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
848         }
849         DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
850                 tunnel_en ? "" : "not ");
851 #else
852         DRV_LOG(WARNING,
853                 "tunnel offloading disabled due to old OFED/rdma-core version");
854 #endif
855         config.tunnel_en = tunnel_en;
856 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
857         mpls_en = ((dv_attr.tunnel_offloads_caps &
858                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
859                    (dv_attr.tunnel_offloads_caps &
860                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
861         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
862                 mpls_en ? "" : "not ");
863 #else
864         DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
865                 " old OFED/rdma-core version or firmware configuration");
866 #endif
867         config.mpls_en = mpls_en;
868         err = mlx5_glue->query_device_ex(ctx, NULL, &attr);
869         if (err) {
870                 DEBUG("ibv_query_device_ex() failed");
871                 goto error;
872         }
873         if (!switch_info->representor)
874                 rte_strlcpy(name, dpdk_dev->name, sizeof(name));
875         else
876                 snprintf(name, sizeof(name), "%s_representor_%u",
877                          dpdk_dev->name, switch_info->port_name);
878         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
879         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
880                 eth_dev = rte_eth_dev_attach_secondary(name);
881                 if (eth_dev == NULL) {
882                         DRV_LOG(ERR, "can not attach rte ethdev");
883                         rte_errno = ENOMEM;
884                         err = rte_errno;
885                         goto error;
886                 }
887                 eth_dev->device = dpdk_dev;
888                 eth_dev->dev_ops = &mlx5_dev_sec_ops;
889                 err = mlx5_uar_init_secondary(eth_dev);
890                 if (err) {
891                         err = rte_errno;
892                         goto error;
893                 }
894                 /* Receive command fd from primary process */
895                 err = mlx5_socket_connect(eth_dev);
896                 if (err < 0) {
897                         err = rte_errno;
898                         goto error;
899                 }
900                 /* Remap UAR for Tx queues. */
901                 err = mlx5_tx_uar_remap(eth_dev, err);
902                 if (err) {
903                         err = rte_errno;
904                         goto error;
905                 }
906                 /*
907                  * Ethdev pointer is still required as input since
908                  * the primary device is not accessible from the
909                  * secondary process.
910                  */
911                 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev);
912                 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev);
913                 claim_zero(mlx5_glue->close_device(ctx));
914                 return eth_dev;
915         }
916         /* Check port status. */
917         err = mlx5_glue->query_port(ctx, 1, &port_attr);
918         if (err) {
919                 DRV_LOG(ERR, "port query failed: %s", strerror(err));
920                 goto error;
921         }
922         if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
923                 DRV_LOG(ERR, "port is not configured in Ethernet mode");
924                 err = EINVAL;
925                 goto error;
926         }
927         if (port_attr.state != IBV_PORT_ACTIVE)
928                 DRV_LOG(DEBUG, "port is not active: \"%s\" (%d)",
929                         mlx5_glue->port_state_str(port_attr.state),
930                         port_attr.state);
931         /* Allocate protection domain. */
932         pd = mlx5_glue->alloc_pd(ctx);
933         if (pd == NULL) {
934                 DRV_LOG(ERR, "PD allocation failure");
935                 err = ENOMEM;
936                 goto error;
937         }
938         priv = rte_zmalloc("ethdev private structure",
939                            sizeof(*priv),
940                            RTE_CACHE_LINE_SIZE);
941         if (priv == NULL) {
942                 DRV_LOG(ERR, "priv allocation failure");
943                 err = ENOMEM;
944                 goto error;
945         }
946         priv->ctx = ctx;
947         strncpy(priv->ibdev_name, priv->ctx->device->name,
948                 sizeof(priv->ibdev_name));
949         strncpy(priv->ibdev_path, priv->ctx->device->ibdev_path,
950                 sizeof(priv->ibdev_path));
951         priv->device_attr = attr;
952         priv->pd = pd;
953         priv->mtu = ETHER_MTU;
954 #ifndef RTE_ARCH_64
955         /* Initialize UAR access locks for 32bit implementations. */
956         rte_spinlock_init(&priv->uar_lock_cq);
957         for (i = 0; i < MLX5_UAR_PAGE_NUM_MAX; i++)
958                 rte_spinlock_init(&priv->uar_lock[i]);
959 #endif
960         /* Some internal functions rely on Netlink sockets, open them now. */
961         priv->nl_socket_rdma = mlx5_nl_init(NETLINK_RDMA);
962         priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE);
963         priv->nl_sn = 0;
964         priv->representor = !!switch_info->representor;
965         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
966         priv->representor_id =
967                 switch_info->representor ? switch_info->port_name : -1;
968         /*
969          * Look for sibling devices in order to reuse their switch domain
970          * if any, otherwise allocate one.
971          */
972         i = mlx5_dev_to_port_id(dpdk_dev, NULL, 0);
973         if (i > 0) {
974                 uint16_t port_id[i];
975
976                 i = RTE_MIN(mlx5_dev_to_port_id(dpdk_dev, port_id, i), i);
977                 while (i--) {
978                         const struct priv *opriv =
979                                 rte_eth_devices[port_id[i]].data->dev_private;
980
981                         if (!opriv ||
982                             opriv->domain_id ==
983                             RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
984                                 continue;
985                         priv->domain_id = opriv->domain_id;
986                         break;
987                 }
988         }
989         if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
990                 err = rte_eth_switch_domain_alloc(&priv->domain_id);
991                 if (err) {
992                         err = rte_errno;
993                         DRV_LOG(ERR, "unable to allocate switch domain: %s",
994                                 strerror(rte_errno));
995                         goto error;
996                 }
997                 own_domain_id = 1;
998         }
999         err = mlx5_args(&config, dpdk_dev->devargs);
1000         if (err) {
1001                 err = rte_errno;
1002                 DRV_LOG(ERR, "failed to process device arguments: %s",
1003                         strerror(rte_errno));
1004                 goto error;
1005         }
1006         config.hw_csum = !!(attr.device_cap_flags_ex & IBV_DEVICE_RAW_IP_CSUM);
1007         DRV_LOG(DEBUG, "checksum offloading is %ssupported",
1008                 (config.hw_csum ? "" : "not "));
1009 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
1010         !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
1011         DRV_LOG(DEBUG, "counters are not supported");
1012 #endif
1013         config.ind_table_max_size =
1014                 attr.rss_caps.max_rwq_indirection_table_size;
1015         /*
1016          * Remove this check once DPDK supports larger/variable
1017          * indirection tables.
1018          */
1019         if (config.ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
1020                 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
1021         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
1022                 config.ind_table_max_size);
1023         config.hw_vlan_strip = !!(attr.raw_packet_caps &
1024                                   IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
1025         DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
1026                 (config.hw_vlan_strip ? "" : "not "));
1027         config.hw_fcs_strip = !!(attr.raw_packet_caps &
1028                                  IBV_RAW_PACKET_CAP_SCATTER_FCS);
1029         DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
1030                 (config.hw_fcs_strip ? "" : "not "));
1031 #ifdef HAVE_IBV_WQ_FLAG_RX_END_PADDING
1032         config.hw_padding = !!attr.rx_pad_end_addr_align;
1033 #endif
1034         DRV_LOG(DEBUG, "hardware Rx end alignment padding is %ssupported",
1035                 (config.hw_padding ? "" : "not "));
1036         config.tso = (attr.tso_caps.max_tso > 0 &&
1037                       (attr.tso_caps.supported_qpts &
1038                        (1 << IBV_QPT_RAW_PACKET)));
1039         if (config.tso)
1040                 config.tso_max_payload_sz = attr.tso_caps.max_tso;
1041         /*
1042          * MPW is disabled by default, while the Enhanced MPW is enabled
1043          * by default.
1044          */
1045         if (config.mps == MLX5_ARG_UNSET)
1046                 config.mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED :
1047                                                           MLX5_MPW_DISABLED;
1048         else
1049                 config.mps = config.mps ? mps : MLX5_MPW_DISABLED;
1050         DRV_LOG(INFO, "%sMPS is %s",
1051                 config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
1052                 config.mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
1053         if (config.cqe_comp && !cqe_comp) {
1054                 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
1055                 config.cqe_comp = 0;
1056         }
1057         if (config.mprq.enabled && mprq) {
1058                 if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
1059                     config.mprq.stride_num_n < mprq_min_stride_num_n) {
1060                         config.mprq.stride_num_n =
1061                                 RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1062                                         mprq_min_stride_num_n);
1063                         DRV_LOG(WARNING,
1064                                 "the number of strides"
1065                                 " for Multi-Packet RQ is out of range,"
1066                                 " setting default value (%u)",
1067                                 1 << config.mprq.stride_num_n);
1068                 }
1069                 config.mprq.min_stride_size_n = mprq_min_stride_size_n;
1070                 config.mprq.max_stride_size_n = mprq_max_stride_size_n;
1071         } else if (config.mprq.enabled && !mprq) {
1072                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
1073                 config.mprq.enabled = 0;
1074         }
1075         eth_dev = rte_eth_dev_allocate(name);
1076         if (eth_dev == NULL) {
1077                 DRV_LOG(ERR, "can not allocate rte ethdev");
1078                 err = ENOMEM;
1079                 goto error;
1080         }
1081         if (priv->representor) {
1082                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
1083                 eth_dev->data->representor_id = priv->representor_id;
1084         }
1085         eth_dev->data->dev_private = priv;
1086         priv->dev_data = eth_dev->data;
1087         eth_dev->data->mac_addrs = priv->mac;
1088         eth_dev->device = dpdk_dev;
1089         err = mlx5_uar_init_primary(eth_dev);
1090         if (err) {
1091                 err = rte_errno;
1092                 goto error;
1093         }
1094         /* Configure the first MAC address by default. */
1095         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
1096                 DRV_LOG(ERR,
1097                         "port %u cannot get MAC address, is mlx5_en"
1098                         " loaded? (errno: %s)",
1099                         eth_dev->data->port_id, strerror(rte_errno));
1100                 err = ENODEV;
1101                 goto error;
1102         }
1103         DRV_LOG(INFO,
1104                 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
1105                 eth_dev->data->port_id,
1106                 mac.addr_bytes[0], mac.addr_bytes[1],
1107                 mac.addr_bytes[2], mac.addr_bytes[3],
1108                 mac.addr_bytes[4], mac.addr_bytes[5]);
1109 #ifndef NDEBUG
1110         {
1111                 char ifname[IF_NAMESIZE];
1112
1113                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
1114                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
1115                                 eth_dev->data->port_id, ifname);
1116                 else
1117                         DRV_LOG(DEBUG, "port %u ifname is unknown",
1118                                 eth_dev->data->port_id);
1119         }
1120 #endif
1121         /* Get actual MTU if possible. */
1122         err = mlx5_get_mtu(eth_dev, &priv->mtu);
1123         if (err) {
1124                 err = rte_errno;
1125                 goto error;
1126         }
1127         DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1128                 priv->mtu);
1129         /* Initialize burst functions to prevent crashes before link-up. */
1130         eth_dev->rx_pkt_burst = removed_rx_burst;
1131         eth_dev->tx_pkt_burst = removed_tx_burst;
1132         eth_dev->dev_ops = &mlx5_dev_ops;
1133         /* Register MAC address. */
1134         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1135         if (vf && config.vf_nl_en)
1136                 mlx5_nl_mac_addr_sync(eth_dev);
1137         priv->tcf_context = mlx5_flow_tcf_context_create();
1138         if (!priv->tcf_context) {
1139                 err = -rte_errno;
1140                 DRV_LOG(WARNING,
1141                         "flow rules relying on switch offloads will not be"
1142                         " supported: cannot open libmnl socket: %s",
1143                         strerror(rte_errno));
1144         } else {
1145                 struct rte_flow_error error;
1146                 unsigned int ifindex = mlx5_ifindex(eth_dev);
1147
1148                 if (!ifindex) {
1149                         err = -rte_errno;
1150                         error.message =
1151                                 "cannot retrieve network interface index";
1152                 } else {
1153                         err = mlx5_flow_tcf_init(priv->tcf_context,
1154                                                  ifindex, &error);
1155                 }
1156                 if (err) {
1157                         DRV_LOG(WARNING,
1158                                 "flow rules relying on switch offloads will"
1159                                 " not be supported: %s: %s",
1160                                 error.message, strerror(rte_errno));
1161                         mlx5_flow_tcf_context_destroy(priv->tcf_context);
1162                         priv->tcf_context = NULL;
1163                 }
1164         }
1165         TAILQ_INIT(&priv->flows);
1166         TAILQ_INIT(&priv->ctrl_flows);
1167         /* Hint libmlx5 to use PMD allocator for data plane resources */
1168         struct mlx5dv_ctx_allocators alctr = {
1169                 .alloc = &mlx5_alloc_verbs_buf,
1170                 .free = &mlx5_free_verbs_buf,
1171                 .data = priv,
1172         };
1173         mlx5_glue->dv_set_context_attr(ctx, MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1174                                        (void *)((uintptr_t)&alctr));
1175         /* Bring Ethernet device up. */
1176         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1177                 eth_dev->data->port_id);
1178         mlx5_set_link_up(eth_dev);
1179         /*
1180          * Even though the interrupt handler is not installed yet,
1181          * interrupts will still trigger on the asyn_fd from
1182          * Verbs context returned by ibv_open_device().
1183          */
1184         mlx5_link_update(eth_dev, 0);
1185         /* Store device configuration on private structure. */
1186         priv->config = config;
1187         /* Supported Verbs flow priority number detection. */
1188         err = mlx5_flow_discover_priorities(eth_dev);
1189         if (err < 0)
1190                 goto error;
1191         priv->config.flow_prio = err;
1192         /*
1193          * Once the device is added to the list of memory event
1194          * callback, its global MR cache table cannot be expanded
1195          * on the fly because of deadlock. If it overflows, lookup
1196          * should be done by searching MR list linearly, which is slow.
1197          */
1198         err = mlx5_mr_btree_init(&priv->mr.cache,
1199                                  MLX5_MR_BTREE_CACHE_N * 2,
1200                                  eth_dev->device->numa_node);
1201         if (err) {
1202                 err = rte_errno;
1203                 goto error;
1204         }
1205         /* Add device to memory callback list. */
1206         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
1207         LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
1208                          priv, mem_event_cb);
1209         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
1210         return eth_dev;
1211 error:
1212         if (priv) {
1213                 if (priv->nl_socket_route >= 0)
1214                         close(priv->nl_socket_route);
1215                 if (priv->nl_socket_rdma >= 0)
1216                         close(priv->nl_socket_rdma);
1217                 if (priv->tcf_context)
1218                         mlx5_flow_tcf_context_destroy(priv->tcf_context);
1219                 if (own_domain_id)
1220                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1221                 rte_free(priv);
1222                 if (eth_dev != NULL)
1223                         eth_dev->data->dev_private = NULL;
1224         }
1225         if (pd)
1226                 claim_zero(mlx5_glue->dealloc_pd(pd));
1227         if (eth_dev != NULL) {
1228                 /* mac_addrs must not be freed alone because part of dev_private */
1229                 eth_dev->data->mac_addrs = NULL;
1230                 rte_eth_dev_release_port(eth_dev);
1231         }
1232         if (ctx)
1233                 claim_zero(mlx5_glue->close_device(ctx));
1234         assert(err > 0);
1235         rte_errno = err;
1236         return NULL;
1237 }
1238
1239 /** Data associated with devices to spawn. */
1240 struct mlx5_dev_spawn_data {
1241         unsigned int ifindex; /**< Network interface index. */
1242         struct mlx5_switch_info info; /**< Switch information. */
1243         struct ibv_device *ibv_dev; /**< Associated IB device. */
1244         struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
1245 };
1246
1247 /**
1248  * Comparison callback to sort device data.
1249  *
1250  * This is meant to be used with qsort().
1251  *
1252  * @param a[in]
1253  *   Pointer to pointer to first data object.
1254  * @param b[in]
1255  *   Pointer to pointer to second data object.
1256  *
1257  * @return
1258  *   0 if both objects are equal, less than 0 if the first argument is less
1259  *   than the second, greater than 0 otherwise.
1260  */
1261 static int
1262 mlx5_dev_spawn_data_cmp(const void *a, const void *b)
1263 {
1264         const struct mlx5_switch_info *si_a =
1265                 &((const struct mlx5_dev_spawn_data *)a)->info;
1266         const struct mlx5_switch_info *si_b =
1267                 &((const struct mlx5_dev_spawn_data *)b)->info;
1268         int ret;
1269
1270         /* Master device first. */
1271         ret = si_b->master - si_a->master;
1272         if (ret)
1273                 return ret;
1274         /* Then representor devices. */
1275         ret = si_b->representor - si_a->representor;
1276         if (ret)
1277                 return ret;
1278         /* Unidentified devices come last in no specific order. */
1279         if (!si_a->representor)
1280                 return 0;
1281         /* Order representors by name. */
1282         return si_a->port_name - si_b->port_name;
1283 }
1284
1285 /**
1286  * DPDK callback to register a PCI device.
1287  *
1288  * This function spawns Ethernet devices out of a given PCI device.
1289  *
1290  * @param[in] pci_drv
1291  *   PCI driver structure (mlx5_driver).
1292  * @param[in] pci_dev
1293  *   PCI device information.
1294  *
1295  * @return
1296  *   0 on success, a negative errno value otherwise and rte_errno is set.
1297  */
1298 static int
1299 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1300                struct rte_pci_device *pci_dev)
1301 {
1302         struct ibv_device **ibv_list;
1303         unsigned int n = 0;
1304         int vf;
1305         int ret;
1306
1307         assert(pci_drv == &mlx5_driver);
1308         errno = 0;
1309         ibv_list = mlx5_glue->get_device_list(&ret);
1310         if (!ibv_list) {
1311                 rte_errno = errno ? errno : ENOSYS;
1312                 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
1313                 return -rte_errno;
1314         }
1315
1316         struct ibv_device *ibv_match[ret + 1];
1317
1318         while (ret-- > 0) {
1319                 struct rte_pci_addr pci_addr;
1320
1321                 DRV_LOG(DEBUG, "checking device \"%s\"", ibv_list[ret]->name);
1322                 if (mlx5_ibv_device_to_pci_addr(ibv_list[ret], &pci_addr))
1323                         continue;
1324                 if (pci_dev->addr.domain != pci_addr.domain ||
1325                     pci_dev->addr.bus != pci_addr.bus ||
1326                     pci_dev->addr.devid != pci_addr.devid ||
1327                     pci_dev->addr.function != pci_addr.function)
1328                         continue;
1329                 DRV_LOG(INFO, "PCI information matches for device \"%s\"",
1330                         ibv_list[ret]->name);
1331                 ibv_match[n++] = ibv_list[ret];
1332         }
1333         ibv_match[n] = NULL;
1334
1335         struct mlx5_dev_spawn_data list[n];
1336         int nl_route = n ? mlx5_nl_init(NETLINK_ROUTE) : -1;
1337         int nl_rdma = n ? mlx5_nl_init(NETLINK_RDMA) : -1;
1338         unsigned int i;
1339         unsigned int u;
1340
1341         /*
1342          * The existence of several matching entries (n > 1) means port
1343          * representors have been instantiated. No existing Verbs call nor
1344          * /sys entries can tell them apart, this can only be done through
1345          * Netlink calls assuming kernel drivers are recent enough to
1346          * support them.
1347          *
1348          * In the event of identification failure through Netlink, try again
1349          * through sysfs, then either:
1350          *
1351          * 1. No device matches (n == 0), complain and bail out.
1352          * 2. A single IB device matches (n == 1) and is not a representor,
1353          *    assume no switch support.
1354          * 3. Otherwise no safe assumptions can be made; complain louder and
1355          *    bail out.
1356          */
1357         for (i = 0; i != n; ++i) {
1358                 list[i].ibv_dev = ibv_match[i];
1359                 list[i].eth_dev = NULL;
1360                 if (nl_rdma < 0)
1361                         list[i].ifindex = 0;
1362                 else
1363                         list[i].ifindex = mlx5_nl_ifindex
1364                                 (nl_rdma, list[i].ibv_dev->name);
1365                 if (nl_route < 0 ||
1366                     !list[i].ifindex ||
1367                     mlx5_nl_switch_info(nl_route, list[i].ifindex,
1368                                         &list[i].info) ||
1369                     ((!list[i].info.representor && !list[i].info.master) &&
1370                      mlx5_sysfs_switch_info(list[i].ifindex, &list[i].info))) {
1371                         list[i].ifindex = 0;
1372                         memset(&list[i].info, 0, sizeof(list[i].info));
1373                         continue;
1374                 }
1375         }
1376         if (nl_rdma >= 0)
1377                 close(nl_rdma);
1378         if (nl_route >= 0)
1379                 close(nl_route);
1380         /* Count unidentified devices. */
1381         for (u = 0, i = 0; i != n; ++i)
1382                 if (!list[i].info.master && !list[i].info.representor)
1383                         ++u;
1384         if (u) {
1385                 if (n == 1 && u == 1) {
1386                         /* Case #2. */
1387                         DRV_LOG(INFO, "no switch support detected");
1388                 } else {
1389                         /* Case #3. */
1390                         DRV_LOG(ERR,
1391                                 "unable to tell which of the matching devices"
1392                                 " is the master (lack of kernel support?)");
1393                         n = 0;
1394                 }
1395         }
1396         /*
1397          * Sort list to probe devices in natural order for users convenience
1398          * (i.e. master first, then representors from lowest to highest ID).
1399          */
1400         if (n)
1401                 qsort(list, n, sizeof(*list), mlx5_dev_spawn_data_cmp);
1402         switch (pci_dev->id.device_id) {
1403         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1404         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1405         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1406         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1407                 vf = 1;
1408                 break;
1409         default:
1410                 vf = 0;
1411         }
1412         for (i = 0; i != n; ++i) {
1413                 uint32_t restore;
1414
1415                 list[i].eth_dev = mlx5_dev_spawn
1416                         (&pci_dev->device, list[i].ibv_dev, vf, &list[i].info);
1417                 if (!list[i].eth_dev) {
1418                         if (rte_errno != EBUSY)
1419                                 break;
1420                         /* Device is disabled, ignore it. */
1421                         continue;
1422                 }
1423                 restore = list[i].eth_dev->data->dev_flags;
1424                 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev);
1425                 /* Restore non-PCI flags cleared by the above call. */
1426                 list[i].eth_dev->data->dev_flags |= restore;
1427                 rte_eth_dev_probing_finish(list[i].eth_dev);
1428         }
1429         mlx5_glue->free_device_list(ibv_list);
1430         if (!n) {
1431                 DRV_LOG(WARNING,
1432                         "no Verbs device matches PCI device " PCI_PRI_FMT ","
1433                         " are kernel drivers loaded?",
1434                         pci_dev->addr.domain, pci_dev->addr.bus,
1435                         pci_dev->addr.devid, pci_dev->addr.function);
1436                 rte_errno = ENOENT;
1437                 ret = -rte_errno;
1438         } else if (i != n) {
1439                 DRV_LOG(ERR,
1440                         "probe of PCI device " PCI_PRI_FMT " aborted after"
1441                         " encountering an error: %s",
1442                         pci_dev->addr.domain, pci_dev->addr.bus,
1443                         pci_dev->addr.devid, pci_dev->addr.function,
1444                         strerror(rte_errno));
1445                 ret = -rte_errno;
1446                 /* Roll back. */
1447                 while (i--) {
1448                         if (!list[i].eth_dev)
1449                                 continue;
1450                         mlx5_dev_close(list[i].eth_dev);
1451                         /* mac_addrs must not be freed because in dev_private */
1452                         list[i].eth_dev->data->mac_addrs = NULL;
1453                         claim_zero(rte_eth_dev_release_port(list[i].eth_dev));
1454                 }
1455                 /* Restore original error. */
1456                 rte_errno = -ret;
1457         } else {
1458                 ret = 0;
1459         }
1460         return ret;
1461 }
1462
1463 static const struct rte_pci_id mlx5_pci_id_map[] = {
1464         {
1465                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1466                                PCI_DEVICE_ID_MELLANOX_CONNECTX4)
1467         },
1468         {
1469                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1470                                PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
1471         },
1472         {
1473                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1474                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
1475         },
1476         {
1477                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1478                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
1479         },
1480         {
1481                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1482                                PCI_DEVICE_ID_MELLANOX_CONNECTX5)
1483         },
1484         {
1485                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1486                                PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
1487         },
1488         {
1489                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1490                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
1491         },
1492         {
1493                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1494                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
1495         },
1496         {
1497                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1498                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
1499         },
1500         {
1501                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1502                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF)
1503         },
1504         {
1505                 .vendor_id = 0
1506         }
1507 };
1508
1509 static struct rte_pci_driver mlx5_driver = {
1510         .driver = {
1511                 .name = MLX5_DRIVER_NAME
1512         },
1513         .id_table = mlx5_pci_id_map,
1514         .probe = mlx5_pci_probe,
1515         .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV,
1516 };
1517
1518 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1519
1520 /**
1521  * Suffix RTE_EAL_PMD_PATH with "-glue".
1522  *
1523  * This function performs a sanity check on RTE_EAL_PMD_PATH before
1524  * suffixing its last component.
1525  *
1526  * @param buf[out]
1527  *   Output buffer, should be large enough otherwise NULL is returned.
1528  * @param size
1529  *   Size of @p out.
1530  *
1531  * @return
1532  *   Pointer to @p buf or @p NULL in case suffix cannot be appended.
1533  */
1534 static char *
1535 mlx5_glue_path(char *buf, size_t size)
1536 {
1537         static const char *const bad[] = { "/", ".", "..", NULL };
1538         const char *path = RTE_EAL_PMD_PATH;
1539         size_t len = strlen(path);
1540         size_t off;
1541         int i;
1542
1543         while (len && path[len - 1] == '/')
1544                 --len;
1545         for (off = len; off && path[off - 1] != '/'; --off)
1546                 ;
1547         for (i = 0; bad[i]; ++i)
1548                 if (!strncmp(path + off, bad[i], (int)(len - off)))
1549                         goto error;
1550         i = snprintf(buf, size, "%.*s-glue", (int)len, path);
1551         if (i == -1 || (size_t)i >= size)
1552                 goto error;
1553         return buf;
1554 error:
1555         DRV_LOG(ERR,
1556                 "unable to append \"-glue\" to last component of"
1557                 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
1558                 " please re-configure DPDK");
1559         return NULL;
1560 }
1561
1562 /**
1563  * Initialization routine for run-time dependency on rdma-core.
1564  */
1565 static int
1566 mlx5_glue_init(void)
1567 {
1568         char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
1569         const char *path[] = {
1570                 /*
1571                  * A basic security check is necessary before trusting
1572                  * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
1573                  */
1574                 (geteuid() == getuid() && getegid() == getgid() ?
1575                  getenv("MLX5_GLUE_PATH") : NULL),
1576                 /*
1577                  * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
1578                  * variant, otherwise let dlopen() look up libraries on its
1579                  * own.
1580                  */
1581                 (*RTE_EAL_PMD_PATH ?
1582                  mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
1583         };
1584         unsigned int i = 0;
1585         void *handle = NULL;
1586         void **sym;
1587         const char *dlmsg;
1588
1589         while (!handle && i != RTE_DIM(path)) {
1590                 const char *end;
1591                 size_t len;
1592                 int ret;
1593
1594                 if (!path[i]) {
1595                         ++i;
1596                         continue;
1597                 }
1598                 end = strpbrk(path[i], ":;");
1599                 if (!end)
1600                         end = path[i] + strlen(path[i]);
1601                 len = end - path[i];
1602                 ret = 0;
1603                 do {
1604                         char name[ret + 1];
1605
1606                         ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
1607                                        (int)len, path[i],
1608                                        (!len || *(end - 1) == '/') ? "" : "/");
1609                         if (ret == -1)
1610                                 break;
1611                         if (sizeof(name) != (size_t)ret + 1)
1612                                 continue;
1613                         DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
1614                                 name);
1615                         handle = dlopen(name, RTLD_LAZY);
1616                         break;
1617                 } while (1);
1618                 path[i] = end + 1;
1619                 if (!*end)
1620                         ++i;
1621         }
1622         if (!handle) {
1623                 rte_errno = EINVAL;
1624                 dlmsg = dlerror();
1625                 if (dlmsg)
1626                         DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
1627                 goto glue_error;
1628         }
1629         sym = dlsym(handle, "mlx5_glue");
1630         if (!sym || !*sym) {
1631                 rte_errno = EINVAL;
1632                 dlmsg = dlerror();
1633                 if (dlmsg)
1634                         DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
1635                 goto glue_error;
1636         }
1637         mlx5_glue = *sym;
1638         return 0;
1639 glue_error:
1640         if (handle)
1641                 dlclose(handle);
1642         DRV_LOG(WARNING,
1643                 "cannot initialize PMD due to missing run-time dependency on"
1644                 " rdma-core libraries (libibverbs, libmlx5)");
1645         return -rte_errno;
1646 }
1647
1648 #endif
1649
1650 /**
1651  * Driver initialization routine.
1652  */
1653 RTE_INIT(rte_mlx5_pmd_init)
1654 {
1655         /* Initialize driver log type. */
1656         mlx5_logtype = rte_log_register("pmd.net.mlx5");
1657         if (mlx5_logtype >= 0)
1658                 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);
1659
1660         /* Build the static tables for Verbs conversion. */
1661         mlx5_set_ptype_table();
1662         mlx5_set_cksum_table();
1663         mlx5_set_swp_types_table();
1664         /*
1665          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
1666          * huge pages. Calling ibv_fork_init() during init allows
1667          * applications to use fork() safely for purposes other than
1668          * using this PMD, which is not supported in forked processes.
1669          */
1670         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
1671         /* Match the size of Rx completion entry to the size of a cacheline. */
1672         if (RTE_CACHE_LINE_SIZE == 128)
1673                 setenv("MLX5_CQE_SIZE", "128", 0);
1674         /*
1675          * MLX5_DEVICE_FATAL_CLEANUP tells ibv_destroy functions to
1676          * cleanup all the Verbs resources even when the device was removed.
1677          */
1678         setenv("MLX5_DEVICE_FATAL_CLEANUP", "1", 1);
1679 #ifdef RTE_LIBRTE_MLX5_DLOPEN_DEPS
1680         if (mlx5_glue_init())
1681                 return;
1682         assert(mlx5_glue);
1683 #endif
1684 #ifndef NDEBUG
1685         /* Glue structure must not contain any NULL pointers. */
1686         {
1687                 unsigned int i;
1688
1689                 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
1690                         assert(((const void *const *)mlx5_glue)[i]);
1691         }
1692 #endif
1693         if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
1694                 DRV_LOG(ERR,
1695                         "rdma-core glue \"%s\" mismatch: \"%s\" is required",
1696                         mlx5_glue->version, MLX5_GLUE_VERSION);
1697                 return;
1698         }
1699         mlx5_glue->fork_init();
1700         rte_pci_register(&mlx5_driver);
1701 }
1702
1703 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
1704 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
1705 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");