net/mlx5: add log file procedure for debug data
[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/rtnetlink.h>
17
18 /* Verbs header. */
19 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
20 #ifdef PEDANTIC
21 #pragma GCC diagnostic ignored "-Wpedantic"
22 #endif
23 #include <infiniband/verbs.h>
24 #ifdef PEDANTIC
25 #pragma GCC diagnostic error "-Wpedantic"
26 #endif
27
28 #include <rte_malloc.h>
29 #include <rte_ethdev_driver.h>
30 #include <rte_ethdev_pci.h>
31 #include <rte_pci.h>
32 #include <rte_bus_pci.h>
33 #include <rte_common.h>
34 #include <rte_config.h>
35 #include <rte_eal_memconfig.h>
36 #include <rte_kvargs.h>
37 #include <rte_rwlock.h>
38 #include <rte_spinlock.h>
39 #include <rte_string_fns.h>
40
41 #include "mlx5.h"
42 #include "mlx5_utils.h"
43 #include "mlx5_rxtx.h"
44 #include "mlx5_autoconf.h"
45 #include "mlx5_defs.h"
46 #include "mlx5_glue.h"
47 #include "mlx5_mr.h"
48 #include "mlx5_flow.h"
49
50 /* Device parameter to enable RX completion queue compression. */
51 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
52
53 /* Device parameter to enable RX completion entry padding to 128B. */
54 #define MLX5_RXQ_CQE_PAD_EN "rxq_cqe_pad_en"
55
56 /* Device parameter to enable padding Rx packet to cacheline size. */
57 #define MLX5_RXQ_PKT_PAD_EN "rxq_pkt_pad_en"
58
59 /* Device parameter to enable Multi-Packet Rx queue. */
60 #define MLX5_RX_MPRQ_EN "mprq_en"
61
62 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
63 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
64
65 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
66 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
67
68 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
69 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
70
71 /* Device parameter to configure inline send. */
72 #define MLX5_TXQ_INLINE "txq_inline"
73
74 /*
75  * Device parameter to configure the number of TX queues threshold for
76  * enabling inline send.
77  */
78 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
79
80 /*
81  * Device parameter to configure the number of TX queues threshold for
82  * enabling vectorized Tx.
83  */
84 #define MLX5_TXQS_MAX_VEC "txqs_max_vec"
85
86 /* Device parameter to enable multi-packet send WQEs. */
87 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
88
89 /* Device parameter to include 2 dsegs in the title WQEBB. */
90 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
91
92 /* Device parameter to limit the size of inlining packet. */
93 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
94
95 /* Device parameter to enable hardware Tx vector. */
96 #define MLX5_TX_VEC_EN "tx_vec_en"
97
98 /* Device parameter to enable hardware Rx vector. */
99 #define MLX5_RX_VEC_EN "rx_vec_en"
100
101 /* Allow L3 VXLAN flow creation. */
102 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
103
104 /* Activate DV E-Switch flow steering. */
105 #define MLX5_DV_ESW_EN "dv_esw_en"
106
107 /* Activate DV flow steering. */
108 #define MLX5_DV_FLOW_EN "dv_flow_en"
109
110 /* Activate Netlink support in VF mode. */
111 #define MLX5_VF_NL_EN "vf_nl_en"
112
113 /* Enable extending memsegs when creating a MR. */
114 #define MLX5_MR_EXT_MEMSEG_EN "mr_ext_memseg_en"
115
116 /* Select port representors to instantiate. */
117 #define MLX5_REPRESENTOR "representor"
118
119 /* Device parameter to configure the maximum number of dump files per queue. */
120 #define MLX5_MAX_DUMP_FILES_NUM "max_dump_files_num"
121
122 #ifndef HAVE_IBV_MLX5_MOD_MPW
123 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
124 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
125 #endif
126
127 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
128 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
129 #endif
130
131 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
132
133 /* Shared memory between primary and secondary processes. */
134 struct mlx5_shared_data *mlx5_shared_data;
135
136 /* Spinlock for mlx5_shared_data allocation. */
137 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
138
139 /* Process local data for secondary processes. */
140 static struct mlx5_local_data mlx5_local_data;
141
142 /** Driver-specific log messages type. */
143 int mlx5_logtype;
144
145 /** Data associated with devices to spawn. */
146 struct mlx5_dev_spawn_data {
147         uint32_t ifindex; /**< Network interface index. */
148         uint32_t max_port; /**< IB device maximal port index. */
149         uint32_t ibv_port; /**< IB device physical port index. */
150         struct mlx5_switch_info info; /**< Switch information. */
151         struct ibv_device *ibv_dev; /**< Associated IB device. */
152         struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
153         struct rte_pci_device *pci_dev; /**< Backend PCI device. */
154 };
155
156 static LIST_HEAD(, mlx5_ibv_shared) mlx5_ibv_list = LIST_HEAD_INITIALIZER();
157 static pthread_mutex_t mlx5_ibv_list_mutex = PTHREAD_MUTEX_INITIALIZER;
158
159 /**
160  * Allocate shared IB device context. If there is multiport device the
161  * master and representors will share this context, if there is single
162  * port dedicated IB device, the context will be used by only given
163  * port due to unification.
164  *
165  * Routine first searches the context for the specified IB device name,
166  * if found the shared context assumed and reference counter is incremented.
167  * If no context found the new one is created and initialized with specified
168  * IB device context and parameters.
169  *
170  * @param[in] spawn
171  *   Pointer to the IB device attributes (name, port, etc).
172  *
173  * @return
174  *   Pointer to mlx5_ibv_shared object on success,
175  *   otherwise NULL and rte_errno is set.
176  */
177 static struct mlx5_ibv_shared *
178 mlx5_alloc_shared_ibctx(const struct mlx5_dev_spawn_data *spawn)
179 {
180         struct mlx5_ibv_shared *sh;
181         int err = 0;
182         uint32_t i;
183
184         assert(spawn);
185         /* Secondary process should not create the shared context. */
186         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
187         pthread_mutex_lock(&mlx5_ibv_list_mutex);
188         /* Search for IB context by device name. */
189         LIST_FOREACH(sh, &mlx5_ibv_list, next) {
190                 if (!strcmp(sh->ibdev_name, spawn->ibv_dev->name)) {
191                         sh->refcnt++;
192                         goto exit;
193                 }
194         }
195         /* No device found, we have to create new shared context. */
196         assert(spawn->max_port);
197         sh = rte_zmalloc("ethdev shared ib context",
198                          sizeof(struct mlx5_ibv_shared) +
199                          spawn->max_port *
200                          sizeof(struct mlx5_ibv_shared_port),
201                          RTE_CACHE_LINE_SIZE);
202         if (!sh) {
203                 DRV_LOG(ERR, "shared context allocation failure");
204                 rte_errno  = ENOMEM;
205                 goto exit;
206         }
207         /* Try to open IB device with DV first, then usual Verbs. */
208         errno = 0;
209         sh->ctx = mlx5_glue->dv_open_device(spawn->ibv_dev);
210         if (sh->ctx) {
211                 sh->devx = 1;
212                 DRV_LOG(DEBUG, "DevX is supported");
213         } else {
214                 sh->ctx = mlx5_glue->open_device(spawn->ibv_dev);
215                 if (!sh->ctx) {
216                         err = errno ? errno : ENODEV;
217                         goto error;
218                 }
219                 DRV_LOG(DEBUG, "DevX is NOT supported");
220         }
221         err = mlx5_glue->query_device_ex(sh->ctx, NULL, &sh->device_attr);
222         if (err) {
223                 DRV_LOG(DEBUG, "ibv_query_device_ex() failed");
224                 goto error;
225         }
226         sh->refcnt = 1;
227         sh->max_port = spawn->max_port;
228         strncpy(sh->ibdev_name, sh->ctx->device->name,
229                 sizeof(sh->ibdev_name));
230         strncpy(sh->ibdev_path, sh->ctx->device->ibdev_path,
231                 sizeof(sh->ibdev_path));
232         sh->pci_dev = spawn->pci_dev;
233         pthread_mutex_init(&sh->intr_mutex, NULL);
234         /*
235          * Setting port_id to max unallowed value means
236          * there is no interrupt subhandler installed for
237          * the given port index i.
238          */
239         for (i = 0; i < sh->max_port; i++)
240                 sh->port[i].ih_port_id = RTE_MAX_ETHPORTS;
241         sh->pd = mlx5_glue->alloc_pd(sh->ctx);
242         if (sh->pd == NULL) {
243                 DRV_LOG(ERR, "PD allocation failure");
244                 err = ENOMEM;
245                 goto error;
246         }
247         /*
248          * Once the device is added to the list of memory event
249          * callback, its global MR cache table cannot be expanded
250          * on the fly because of deadlock. If it overflows, lookup
251          * should be done by searching MR list linearly, which is slow.
252          *
253          * At this point the device is not added to the memory
254          * event list yet, context is just being created.
255          */
256         err = mlx5_mr_btree_init(&sh->mr.cache,
257                                  MLX5_MR_BTREE_CACHE_N * 2,
258                                  sh->pci_dev->device.numa_node);
259         if (err) {
260                 err = rte_errno;
261                 goto error;
262         }
263         LIST_INSERT_HEAD(&mlx5_ibv_list, sh, next);
264 exit:
265         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
266         return sh;
267 error:
268         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
269         assert(sh);
270         if (sh->pd)
271                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
272         if (sh->ctx)
273                 claim_zero(mlx5_glue->close_device(sh->ctx));
274         rte_free(sh);
275         assert(err > 0);
276         rte_errno = err;
277         return NULL;
278 }
279
280 /**
281  * Free shared IB device context. Decrement counter and if zero free
282  * all allocated resources and close handles.
283  *
284  * @param[in] sh
285  *   Pointer to mlx5_ibv_shared object to free
286  */
287 static void
288 mlx5_free_shared_ibctx(struct mlx5_ibv_shared *sh)
289 {
290         pthread_mutex_lock(&mlx5_ibv_list_mutex);
291 #ifndef NDEBUG
292         /* Check the object presence in the list. */
293         struct mlx5_ibv_shared *lctx;
294
295         LIST_FOREACH(lctx, &mlx5_ibv_list, next)
296                 if (lctx == sh)
297                         break;
298         assert(lctx);
299         if (lctx != sh) {
300                 DRV_LOG(ERR, "Freeing non-existing shared IB context");
301                 goto exit;
302         }
303 #endif
304         assert(sh);
305         assert(sh->refcnt);
306         /* Secondary process should not free the shared context. */
307         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
308         if (--sh->refcnt)
309                 goto exit;
310         /* Release created Memory Regions. */
311         mlx5_mr_release(sh);
312         LIST_REMOVE(sh, next);
313         /*
314          *  Ensure there is no async event handler installed.
315          *  Only primary process handles async device events.
316          **/
317         assert(!sh->intr_cnt);
318         if (sh->intr_cnt)
319                 mlx5_intr_callback_unregister
320                         (&sh->intr_handle, mlx5_dev_interrupt_handler, sh);
321         pthread_mutex_destroy(&sh->intr_mutex);
322         if (sh->pd)
323                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
324         if (sh->ctx)
325                 claim_zero(mlx5_glue->close_device(sh->ctx));
326         rte_free(sh);
327 exit:
328         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
329 }
330
331 /**
332  * Initialize DR related data within private structure.
333  * Routine checks the reference counter and does actual
334  * resources creation/initialization only if counter is zero.
335  *
336  * @param[in] priv
337  *   Pointer to the private device data structure.
338  *
339  * @return
340  *   Zero on success, positive error code otherwise.
341  */
342 static int
343 mlx5_alloc_shared_dr(struct mlx5_priv *priv)
344 {
345 #ifdef HAVE_MLX5DV_DR
346         struct mlx5_ibv_shared *sh = priv->sh;
347         int err = 0;
348         void *domain;
349
350         assert(sh);
351         if (sh->dv_refcnt) {
352                 /* Shared DV/DR structures is already initialized. */
353                 sh->dv_refcnt++;
354                 priv->dr_shared = 1;
355                 return 0;
356         }
357         /* Reference counter is zero, we should initialize structures. */
358         domain = mlx5_glue->dr_create_domain(sh->ctx,
359                                              MLX5DV_DR_DOMAIN_TYPE_NIC_RX);
360         if (!domain) {
361                 DRV_LOG(ERR, "ingress mlx5dv_dr_create_domain failed");
362                 err = errno;
363                 goto error;
364         }
365         sh->rx_domain = domain;
366         domain = mlx5_glue->dr_create_domain(sh->ctx,
367                                              MLX5DV_DR_DOMAIN_TYPE_NIC_TX);
368         if (!domain) {
369                 DRV_LOG(ERR, "egress mlx5dv_dr_create_domain failed");
370                 err = errno;
371                 goto error;
372         }
373         pthread_mutex_init(&sh->dv_mutex, NULL);
374         sh->tx_domain = domain;
375 #ifdef HAVE_MLX5DV_DR_ESWITCH
376         if (priv->config.dv_esw_en) {
377                 domain  = mlx5_glue->dr_create_domain
378                         (sh->ctx, MLX5DV_DR_DOMAIN_TYPE_FDB);
379                 if (!domain) {
380                         DRV_LOG(ERR, "FDB mlx5dv_dr_create_domain failed");
381                         err = errno;
382                         goto error;
383                 }
384                 sh->fdb_domain = domain;
385                 sh->esw_drop_action = mlx5_glue->dr_create_flow_action_drop();
386         }
387 #endif
388         sh->dv_refcnt++;
389         priv->dr_shared = 1;
390         return 0;
391
392 error:
393        /* Rollback the created objects. */
394         if (sh->rx_domain) {
395                 mlx5_glue->dr_destroy_domain(sh->rx_domain);
396                 sh->rx_domain = NULL;
397         }
398         if (sh->tx_domain) {
399                 mlx5_glue->dr_destroy_domain(sh->tx_domain);
400                 sh->tx_domain = NULL;
401         }
402         if (sh->fdb_domain) {
403                 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
404                 sh->fdb_domain = NULL;
405         }
406         if (sh->esw_drop_action) {
407                 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
408                 sh->esw_drop_action = NULL;
409         }
410         return err;
411 #else
412         (void)priv;
413         return 0;
414 #endif
415 }
416
417 /**
418  * Destroy DR related data within private structure.
419  *
420  * @param[in] priv
421  *   Pointer to the private device data structure.
422  */
423 static void
424 mlx5_free_shared_dr(struct mlx5_priv *priv)
425 {
426 #ifdef HAVE_MLX5DV_DR
427         struct mlx5_ibv_shared *sh;
428
429         if (!priv->dr_shared)
430                 return;
431         priv->dr_shared = 0;
432         sh = priv->sh;
433         assert(sh);
434         assert(sh->dv_refcnt);
435         if (sh->dv_refcnt && --sh->dv_refcnt)
436                 return;
437         if (sh->rx_domain) {
438                 mlx5_glue->dr_destroy_domain(sh->rx_domain);
439                 sh->rx_domain = NULL;
440         }
441         if (sh->tx_domain) {
442                 mlx5_glue->dr_destroy_domain(sh->tx_domain);
443                 sh->tx_domain = NULL;
444         }
445 #ifdef HAVE_MLX5DV_DR_ESWITCH
446         if (sh->fdb_domain) {
447                 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
448                 sh->fdb_domain = NULL;
449         }
450         if (sh->esw_drop_action) {
451                 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
452                 sh->esw_drop_action = NULL;
453         }
454 #endif
455         pthread_mutex_destroy(&sh->dv_mutex);
456 #else
457         (void)priv;
458 #endif
459 }
460
461 /**
462  * Initialize shared data between primary and secondary process.
463  *
464  * A memzone is reserved by primary process and secondary processes attach to
465  * the memzone.
466  *
467  * @return
468  *   0 on success, a negative errno value otherwise and rte_errno is set.
469  */
470 static int
471 mlx5_init_shared_data(void)
472 {
473         const struct rte_memzone *mz;
474         int ret = 0;
475
476         rte_spinlock_lock(&mlx5_shared_data_lock);
477         if (mlx5_shared_data == NULL) {
478                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
479                         /* Allocate shared memory. */
480                         mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
481                                                  sizeof(*mlx5_shared_data),
482                                                  SOCKET_ID_ANY, 0);
483                         if (mz == NULL) {
484                                 DRV_LOG(ERR,
485                                         "Cannot allocate mlx5 shared data\n");
486                                 ret = -rte_errno;
487                                 goto error;
488                         }
489                         mlx5_shared_data = mz->addr;
490                         memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data));
491                         rte_spinlock_init(&mlx5_shared_data->lock);
492                 } else {
493                         /* Lookup allocated shared memory. */
494                         mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
495                         if (mz == NULL) {
496                                 DRV_LOG(ERR,
497                                         "Cannot attach mlx5 shared data\n");
498                                 ret = -rte_errno;
499                                 goto error;
500                         }
501                         mlx5_shared_data = mz->addr;
502                         memset(&mlx5_local_data, 0, sizeof(mlx5_local_data));
503                 }
504         }
505 error:
506         rte_spinlock_unlock(&mlx5_shared_data_lock);
507         return ret;
508 }
509
510 /**
511  * Retrieve integer value from environment variable.
512  *
513  * @param[in] name
514  *   Environment variable name.
515  *
516  * @return
517  *   Integer value, 0 if the variable is not set.
518  */
519 int
520 mlx5_getenv_int(const char *name)
521 {
522         const char *val = getenv(name);
523
524         if (val == NULL)
525                 return 0;
526         return atoi(val);
527 }
528
529 /**
530  * Verbs callback to allocate a memory. This function should allocate the space
531  * according to the size provided residing inside a huge page.
532  * Please note that all allocation must respect the alignment from libmlx5
533  * (i.e. currently sysconf(_SC_PAGESIZE)).
534  *
535  * @param[in] size
536  *   The size in bytes of the memory to allocate.
537  * @param[in] data
538  *   A pointer to the callback data.
539  *
540  * @return
541  *   Allocated buffer, NULL otherwise and rte_errno is set.
542  */
543 static void *
544 mlx5_alloc_verbs_buf(size_t size, void *data)
545 {
546         struct mlx5_priv *priv = data;
547         void *ret;
548         size_t alignment = sysconf(_SC_PAGESIZE);
549         unsigned int socket = SOCKET_ID_ANY;
550
551         if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
552                 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
553
554                 socket = ctrl->socket;
555         } else if (priv->verbs_alloc_ctx.type ==
556                    MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
557                 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
558
559                 socket = ctrl->socket;
560         }
561         assert(data != NULL);
562         ret = rte_malloc_socket(__func__, size, alignment, socket);
563         if (!ret && size)
564                 rte_errno = ENOMEM;
565         return ret;
566 }
567
568 /**
569  * Verbs callback to free a memory.
570  *
571  * @param[in] ptr
572  *   A pointer to the memory to free.
573  * @param[in] data
574  *   A pointer to the callback data.
575  */
576 static void
577 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
578 {
579         assert(data != NULL);
580         rte_free(ptr);
581 }
582
583 /**
584  * Initialize process private data structure.
585  *
586  * @param dev
587  *   Pointer to Ethernet device structure.
588  *
589  * @return
590  *   0 on success, a negative errno value otherwise and rte_errno is set.
591  */
592 int
593 mlx5_proc_priv_init(struct rte_eth_dev *dev)
594 {
595         struct mlx5_priv *priv = dev->data->dev_private;
596         struct mlx5_proc_priv *ppriv;
597         size_t ppriv_size;
598
599         /*
600          * UAR register table follows the process private structure. BlueFlame
601          * registers for Tx queues are stored in the table.
602          */
603         ppriv_size =
604                 sizeof(struct mlx5_proc_priv) + priv->txqs_n * sizeof(void *);
605         ppriv = rte_malloc_socket("mlx5_proc_priv", ppriv_size,
606                                   RTE_CACHE_LINE_SIZE, dev->device->numa_node);
607         if (!ppriv) {
608                 rte_errno = ENOMEM;
609                 return -rte_errno;
610         }
611         ppriv->uar_table_sz = ppriv_size;
612         dev->process_private = ppriv;
613         return 0;
614 }
615
616 /**
617  * Un-initialize process private data structure.
618  *
619  * @param dev
620  *   Pointer to Ethernet device structure.
621  */
622 static void
623 mlx5_proc_priv_uninit(struct rte_eth_dev *dev)
624 {
625         if (!dev->process_private)
626                 return;
627         rte_free(dev->process_private);
628         dev->process_private = NULL;
629 }
630
631 /**
632  * DPDK callback to close the device.
633  *
634  * Destroy all queues and objects, free memory.
635  *
636  * @param dev
637  *   Pointer to Ethernet device structure.
638  */
639 static void
640 mlx5_dev_close(struct rte_eth_dev *dev)
641 {
642         struct mlx5_priv *priv = dev->data->dev_private;
643         unsigned int i;
644         int ret;
645
646         DRV_LOG(DEBUG, "port %u closing device \"%s\"",
647                 dev->data->port_id,
648                 ((priv->sh->ctx != NULL) ? priv->sh->ctx->device->name : ""));
649         /* In case mlx5_dev_stop() has not been called. */
650         mlx5_dev_interrupt_handler_uninstall(dev);
651         mlx5_traffic_disable(dev);
652         mlx5_flow_flush(dev, NULL);
653         /* Prevent crashes when queues are still in use. */
654         dev->rx_pkt_burst = removed_rx_burst;
655         dev->tx_pkt_burst = removed_tx_burst;
656         rte_wmb();
657         /* Disable datapath on secondary process. */
658         mlx5_mp_req_stop_rxtx(dev);
659         if (priv->rxqs != NULL) {
660                 /* XXX race condition if mlx5_rx_burst() is still running. */
661                 usleep(1000);
662                 for (i = 0; (i != priv->rxqs_n); ++i)
663                         mlx5_rxq_release(dev, i);
664                 priv->rxqs_n = 0;
665                 priv->rxqs = NULL;
666         }
667         if (priv->txqs != NULL) {
668                 /* XXX race condition if mlx5_tx_burst() is still running. */
669                 usleep(1000);
670                 for (i = 0; (i != priv->txqs_n); ++i)
671                         mlx5_txq_release(dev, i);
672                 priv->txqs_n = 0;
673                 priv->txqs = NULL;
674         }
675         mlx5_proc_priv_uninit(dev);
676         mlx5_mprq_free_mp(dev);
677         /* Remove from memory callback device list. */
678         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
679         assert(priv->sh);
680         LIST_REMOVE(priv->sh, mem_event_cb);
681         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
682         mlx5_free_shared_dr(priv);
683         if (priv->rss_conf.rss_key != NULL)
684                 rte_free(priv->rss_conf.rss_key);
685         if (priv->reta_idx != NULL)
686                 rte_free(priv->reta_idx);
687         if (priv->config.vf)
688                 mlx5_nl_mac_addr_flush(dev);
689         if (priv->nl_socket_route >= 0)
690                 close(priv->nl_socket_route);
691         if (priv->nl_socket_rdma >= 0)
692                 close(priv->nl_socket_rdma);
693         if (priv->tcf_context)
694                 mlx5_flow_tcf_context_destroy(priv->tcf_context);
695         if (priv->sh) {
696                 /*
697                  * Free the shared context in last turn, because the cleanup
698                  * routines above may use some shared fields, like
699                  * mlx5_nl_mac_addr_flush() uses ibdev_path for retrieveing
700                  * ifindex if Netlink fails.
701                  */
702                 mlx5_free_shared_ibctx(priv->sh);
703                 priv->sh = NULL;
704         }
705         ret = mlx5_hrxq_ibv_verify(dev);
706         if (ret)
707                 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
708                         dev->data->port_id);
709         ret = mlx5_ind_table_ibv_verify(dev);
710         if (ret)
711                 DRV_LOG(WARNING, "port %u some indirection table still remain",
712                         dev->data->port_id);
713         ret = mlx5_rxq_ibv_verify(dev);
714         if (ret)
715                 DRV_LOG(WARNING, "port %u some Verbs Rx queue still remain",
716                         dev->data->port_id);
717         ret = mlx5_rxq_verify(dev);
718         if (ret)
719                 DRV_LOG(WARNING, "port %u some Rx queues still remain",
720                         dev->data->port_id);
721         ret = mlx5_txq_ibv_verify(dev);
722         if (ret)
723                 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
724                         dev->data->port_id);
725         ret = mlx5_txq_verify(dev);
726         if (ret)
727                 DRV_LOG(WARNING, "port %u some Tx queues still remain",
728                         dev->data->port_id);
729         ret = mlx5_flow_verify(dev);
730         if (ret)
731                 DRV_LOG(WARNING, "port %u some flows still remain",
732                         dev->data->port_id);
733         if (priv->domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
734                 unsigned int c = 0;
735                 uint16_t port_id;
736
737                 RTE_ETH_FOREACH_DEV_OF(port_id, dev->device) {
738                         struct mlx5_priv *opriv =
739                                 rte_eth_devices[port_id].data->dev_private;
740
741                         if (!opriv ||
742                             opriv->domain_id != priv->domain_id ||
743                             &rte_eth_devices[port_id] == dev)
744                                 continue;
745                         ++c;
746                 }
747                 if (!c)
748                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
749         }
750         memset(priv, 0, sizeof(*priv));
751         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
752         /*
753          * Reset mac_addrs to NULL such that it is not freed as part of
754          * rte_eth_dev_release_port(). mac_addrs is part of dev_private so
755          * it is freed when dev_private is freed.
756          */
757         dev->data->mac_addrs = NULL;
758 }
759
760 const struct eth_dev_ops mlx5_dev_ops = {
761         .dev_configure = mlx5_dev_configure,
762         .dev_start = mlx5_dev_start,
763         .dev_stop = mlx5_dev_stop,
764         .dev_set_link_down = mlx5_set_link_down,
765         .dev_set_link_up = mlx5_set_link_up,
766         .dev_close = mlx5_dev_close,
767         .promiscuous_enable = mlx5_promiscuous_enable,
768         .promiscuous_disable = mlx5_promiscuous_disable,
769         .allmulticast_enable = mlx5_allmulticast_enable,
770         .allmulticast_disable = mlx5_allmulticast_disable,
771         .link_update = mlx5_link_update,
772         .stats_get = mlx5_stats_get,
773         .stats_reset = mlx5_stats_reset,
774         .xstats_get = mlx5_xstats_get,
775         .xstats_reset = mlx5_xstats_reset,
776         .xstats_get_names = mlx5_xstats_get_names,
777         .fw_version_get = mlx5_fw_version_get,
778         .dev_infos_get = mlx5_dev_infos_get,
779         .read_clock = mlx5_read_clock,
780         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
781         .vlan_filter_set = mlx5_vlan_filter_set,
782         .rx_queue_setup = mlx5_rx_queue_setup,
783         .tx_queue_setup = mlx5_tx_queue_setup,
784         .rx_queue_release = mlx5_rx_queue_release,
785         .tx_queue_release = mlx5_tx_queue_release,
786         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
787         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
788         .mac_addr_remove = mlx5_mac_addr_remove,
789         .mac_addr_add = mlx5_mac_addr_add,
790         .mac_addr_set = mlx5_mac_addr_set,
791         .set_mc_addr_list = mlx5_set_mc_addr_list,
792         .mtu_set = mlx5_dev_set_mtu,
793         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
794         .vlan_offload_set = mlx5_vlan_offload_set,
795         .reta_update = mlx5_dev_rss_reta_update,
796         .reta_query = mlx5_dev_rss_reta_query,
797         .rss_hash_update = mlx5_rss_hash_update,
798         .rss_hash_conf_get = mlx5_rss_hash_conf_get,
799         .filter_ctrl = mlx5_dev_filter_ctrl,
800         .rx_descriptor_status = mlx5_rx_descriptor_status,
801         .tx_descriptor_status = mlx5_tx_descriptor_status,
802         .rx_queue_count = mlx5_rx_queue_count,
803         .rx_queue_intr_enable = mlx5_rx_intr_enable,
804         .rx_queue_intr_disable = mlx5_rx_intr_disable,
805         .is_removed = mlx5_is_removed,
806 };
807
808 /* Available operations from secondary process. */
809 static const struct eth_dev_ops mlx5_dev_sec_ops = {
810         .stats_get = mlx5_stats_get,
811         .stats_reset = mlx5_stats_reset,
812         .xstats_get = mlx5_xstats_get,
813         .xstats_reset = mlx5_xstats_reset,
814         .xstats_get_names = mlx5_xstats_get_names,
815         .fw_version_get = mlx5_fw_version_get,
816         .dev_infos_get = mlx5_dev_infos_get,
817         .rx_descriptor_status = mlx5_rx_descriptor_status,
818         .tx_descriptor_status = mlx5_tx_descriptor_status,
819 };
820
821 /* Available operations in flow isolated mode. */
822 const struct eth_dev_ops mlx5_dev_ops_isolate = {
823         .dev_configure = mlx5_dev_configure,
824         .dev_start = mlx5_dev_start,
825         .dev_stop = mlx5_dev_stop,
826         .dev_set_link_down = mlx5_set_link_down,
827         .dev_set_link_up = mlx5_set_link_up,
828         .dev_close = mlx5_dev_close,
829         .promiscuous_enable = mlx5_promiscuous_enable,
830         .promiscuous_disable = mlx5_promiscuous_disable,
831         .allmulticast_enable = mlx5_allmulticast_enable,
832         .allmulticast_disable = mlx5_allmulticast_disable,
833         .link_update = mlx5_link_update,
834         .stats_get = mlx5_stats_get,
835         .stats_reset = mlx5_stats_reset,
836         .xstats_get = mlx5_xstats_get,
837         .xstats_reset = mlx5_xstats_reset,
838         .xstats_get_names = mlx5_xstats_get_names,
839         .fw_version_get = mlx5_fw_version_get,
840         .dev_infos_get = mlx5_dev_infos_get,
841         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
842         .vlan_filter_set = mlx5_vlan_filter_set,
843         .rx_queue_setup = mlx5_rx_queue_setup,
844         .tx_queue_setup = mlx5_tx_queue_setup,
845         .rx_queue_release = mlx5_rx_queue_release,
846         .tx_queue_release = mlx5_tx_queue_release,
847         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
848         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
849         .mac_addr_remove = mlx5_mac_addr_remove,
850         .mac_addr_add = mlx5_mac_addr_add,
851         .mac_addr_set = mlx5_mac_addr_set,
852         .set_mc_addr_list = mlx5_set_mc_addr_list,
853         .mtu_set = mlx5_dev_set_mtu,
854         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
855         .vlan_offload_set = mlx5_vlan_offload_set,
856         .filter_ctrl = mlx5_dev_filter_ctrl,
857         .rx_descriptor_status = mlx5_rx_descriptor_status,
858         .tx_descriptor_status = mlx5_tx_descriptor_status,
859         .rx_queue_intr_enable = mlx5_rx_intr_enable,
860         .rx_queue_intr_disable = mlx5_rx_intr_disable,
861         .is_removed = mlx5_is_removed,
862 };
863
864 /**
865  * Verify and store value for device argument.
866  *
867  * @param[in] key
868  *   Key argument to verify.
869  * @param[in] val
870  *   Value associated with key.
871  * @param opaque
872  *   User data.
873  *
874  * @return
875  *   0 on success, a negative errno value otherwise and rte_errno is set.
876  */
877 static int
878 mlx5_args_check(const char *key, const char *val, void *opaque)
879 {
880         struct mlx5_dev_config *config = opaque;
881         unsigned long tmp;
882
883         /* No-op, port representors are processed in mlx5_dev_spawn(). */
884         if (!strcmp(MLX5_REPRESENTOR, key))
885                 return 0;
886         errno = 0;
887         tmp = strtoul(val, NULL, 0);
888         if (errno) {
889                 rte_errno = errno;
890                 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
891                 return -rte_errno;
892         }
893         if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
894                 config->cqe_comp = !!tmp;
895         } else if (strcmp(MLX5_RXQ_CQE_PAD_EN, key) == 0) {
896                 config->cqe_pad = !!tmp;
897         } else if (strcmp(MLX5_RXQ_PKT_PAD_EN, key) == 0) {
898                 config->hw_padding = !!tmp;
899         } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
900                 config->mprq.enabled = !!tmp;
901         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
902                 config->mprq.stride_num_n = tmp;
903         } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
904                 config->mprq.max_memcpy_len = tmp;
905         } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
906                 config->mprq.min_rxqs_num = tmp;
907         } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
908                 config->txq_inline = tmp;
909         } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
910                 config->txqs_inline = tmp;
911         } else if (strcmp(MLX5_TXQS_MAX_VEC, key) == 0) {
912                 config->txqs_vec = tmp;
913         } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
914                 config->mps = !!tmp;
915         } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
916                 config->mpw_hdr_dseg = !!tmp;
917         } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
918                 config->inline_max_packet_sz = tmp;
919         } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
920                 config->tx_vec_en = !!tmp;
921         } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
922                 config->rx_vec_en = !!tmp;
923         } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
924                 config->l3_vxlan_en = !!tmp;
925         } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
926                 config->vf_nl_en = !!tmp;
927         } else if (strcmp(MLX5_DV_ESW_EN, key) == 0) {
928                 config->dv_esw_en = !!tmp;
929         } else if (strcmp(MLX5_DV_FLOW_EN, key) == 0) {
930                 config->dv_flow_en = !!tmp;
931         } else if (strcmp(MLX5_MR_EXT_MEMSEG_EN, key) == 0) {
932                 config->mr_ext_memseg_en = !!tmp;
933         } else if (strcmp(MLX5_MAX_DUMP_FILES_NUM, key) == 0) {
934                 config->max_dump_files_num = tmp;
935         } else {
936                 DRV_LOG(WARNING, "%s: unknown parameter", key);
937                 rte_errno = EINVAL;
938                 return -rte_errno;
939         }
940         return 0;
941 }
942
943 /**
944  * Parse device parameters.
945  *
946  * @param config
947  *   Pointer to device configuration structure.
948  * @param devargs
949  *   Device arguments structure.
950  *
951  * @return
952  *   0 on success, a negative errno value otherwise and rte_errno is set.
953  */
954 static int
955 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
956 {
957         const char **params = (const char *[]){
958                 MLX5_RXQ_CQE_COMP_EN,
959                 MLX5_RXQ_CQE_PAD_EN,
960                 MLX5_RXQ_PKT_PAD_EN,
961                 MLX5_RX_MPRQ_EN,
962                 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
963                 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
964                 MLX5_RXQS_MIN_MPRQ,
965                 MLX5_TXQ_INLINE,
966                 MLX5_TXQS_MIN_INLINE,
967                 MLX5_TXQS_MAX_VEC,
968                 MLX5_TXQ_MPW_EN,
969                 MLX5_TXQ_MPW_HDR_DSEG_EN,
970                 MLX5_TXQ_MAX_INLINE_LEN,
971                 MLX5_TX_VEC_EN,
972                 MLX5_RX_VEC_EN,
973                 MLX5_L3_VXLAN_EN,
974                 MLX5_VF_NL_EN,
975                 MLX5_DV_ESW_EN,
976                 MLX5_DV_FLOW_EN,
977                 MLX5_MR_EXT_MEMSEG_EN,
978                 MLX5_REPRESENTOR,
979                 MLX5_MAX_DUMP_FILES_NUM,
980                 NULL,
981         };
982         struct rte_kvargs *kvlist;
983         int ret = 0;
984         int i;
985
986         if (devargs == NULL)
987                 return 0;
988         /* Following UGLY cast is done to pass checkpatch. */
989         kvlist = rte_kvargs_parse(devargs->args, params);
990         if (kvlist == NULL)
991                 return 0;
992         /* Process parameters. */
993         for (i = 0; (params[i] != NULL); ++i) {
994                 if (rte_kvargs_count(kvlist, params[i])) {
995                         ret = rte_kvargs_process(kvlist, params[i],
996                                                  mlx5_args_check, config);
997                         if (ret) {
998                                 rte_errno = EINVAL;
999                                 rte_kvargs_free(kvlist);
1000                                 return -rte_errno;
1001                         }
1002                 }
1003         }
1004         rte_kvargs_free(kvlist);
1005         return 0;
1006 }
1007
1008 static struct rte_pci_driver mlx5_driver;
1009
1010 /**
1011  * PMD global initialization.
1012  *
1013  * Independent from individual device, this function initializes global
1014  * per-PMD data structures distinguishing primary and secondary processes.
1015  * Hence, each initialization is called once per a process.
1016  *
1017  * @return
1018  *   0 on success, a negative errno value otherwise and rte_errno is set.
1019  */
1020 static int
1021 mlx5_init_once(void)
1022 {
1023         struct mlx5_shared_data *sd;
1024         struct mlx5_local_data *ld = &mlx5_local_data;
1025         int ret = 0;
1026
1027         if (mlx5_init_shared_data())
1028                 return -rte_errno;
1029         sd = mlx5_shared_data;
1030         assert(sd);
1031         rte_spinlock_lock(&sd->lock);
1032         switch (rte_eal_process_type()) {
1033         case RTE_PROC_PRIMARY:
1034                 if (sd->init_done)
1035                         break;
1036                 LIST_INIT(&sd->mem_event_cb_list);
1037                 rte_rwlock_init(&sd->mem_event_rwlock);
1038                 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
1039                                                 mlx5_mr_mem_event_cb, NULL);
1040                 ret = mlx5_mp_init_primary();
1041                 if (ret)
1042                         goto out;
1043                 sd->init_done = true;
1044                 break;
1045         case RTE_PROC_SECONDARY:
1046                 if (ld->init_done)
1047                         break;
1048                 ret = mlx5_mp_init_secondary();
1049                 if (ret)
1050                         goto out;
1051                 ++sd->secondary_cnt;
1052                 ld->init_done = true;
1053                 break;
1054         default:
1055                 break;
1056         }
1057 out:
1058         rte_spinlock_unlock(&sd->lock);
1059         return ret;
1060 }
1061
1062 /**
1063  * Spawn an Ethernet device from Verbs information.
1064  *
1065  * @param dpdk_dev
1066  *   Backing DPDK device.
1067  * @param spawn
1068  *   Verbs device parameters (name, port, switch_info) to spawn.
1069  * @param config
1070  *   Device configuration parameters.
1071  *
1072  * @return
1073  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
1074  *   is set. The following errors are defined:
1075  *
1076  *   EBUSY: device is not supposed to be spawned.
1077  *   EEXIST: device is already spawned
1078  */
1079 static struct rte_eth_dev *
1080 mlx5_dev_spawn(struct rte_device *dpdk_dev,
1081                struct mlx5_dev_spawn_data *spawn,
1082                struct mlx5_dev_config config)
1083 {
1084         const struct mlx5_switch_info *switch_info = &spawn->info;
1085         struct mlx5_ibv_shared *sh = NULL;
1086         struct ibv_port_attr port_attr;
1087         struct mlx5dv_context dv_attr = { .comp_mask = 0 };
1088         struct rte_eth_dev *eth_dev = NULL;
1089         struct mlx5_priv *priv = NULL;
1090         int err = 0;
1091         unsigned int hw_padding = 0;
1092         unsigned int mps;
1093         unsigned int cqe_comp;
1094         unsigned int cqe_pad = 0;
1095         unsigned int tunnel_en = 0;
1096         unsigned int mpls_en = 0;
1097         unsigned int swp = 0;
1098         unsigned int mprq = 0;
1099         unsigned int mprq_min_stride_size_n = 0;
1100         unsigned int mprq_max_stride_size_n = 0;
1101         unsigned int mprq_min_stride_num_n = 0;
1102         unsigned int mprq_max_stride_num_n = 0;
1103         struct rte_ether_addr mac;
1104         char name[RTE_ETH_NAME_MAX_LEN];
1105         int own_domain_id = 0;
1106         uint16_t port_id;
1107         unsigned int i;
1108
1109         /* Determine if this port representor is supposed to be spawned. */
1110         if (switch_info->representor && dpdk_dev->devargs) {
1111                 struct rte_eth_devargs eth_da;
1112
1113                 err = rte_eth_devargs_parse(dpdk_dev->devargs->args, &eth_da);
1114                 if (err) {
1115                         rte_errno = -err;
1116                         DRV_LOG(ERR, "failed to process device arguments: %s",
1117                                 strerror(rte_errno));
1118                         return NULL;
1119                 }
1120                 for (i = 0; i < eth_da.nb_representor_ports; ++i)
1121                         if (eth_da.representor_ports[i] ==
1122                             (uint16_t)switch_info->port_name)
1123                                 break;
1124                 if (i == eth_da.nb_representor_ports) {
1125                         rte_errno = EBUSY;
1126                         return NULL;
1127                 }
1128         }
1129         /* Build device name. */
1130         if (!switch_info->representor)
1131                 strlcpy(name, dpdk_dev->name, sizeof(name));
1132         else
1133                 snprintf(name, sizeof(name), "%s_representor_%u",
1134                          dpdk_dev->name, switch_info->port_name);
1135         /* check if the device is already spawned */
1136         if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
1137                 rte_errno = EEXIST;
1138                 return NULL;
1139         }
1140         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
1141         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
1142                 eth_dev = rte_eth_dev_attach_secondary(name);
1143                 if (eth_dev == NULL) {
1144                         DRV_LOG(ERR, "can not attach rte ethdev");
1145                         rte_errno = ENOMEM;
1146                         return NULL;
1147                 }
1148                 eth_dev->device = dpdk_dev;
1149                 eth_dev->dev_ops = &mlx5_dev_sec_ops;
1150                 err = mlx5_proc_priv_init(eth_dev);
1151                 if (err)
1152                         return NULL;
1153                 /* Receive command fd from primary process */
1154                 err = mlx5_mp_req_verbs_cmd_fd(eth_dev);
1155                 if (err < 0)
1156                         return NULL;
1157                 /* Remap UAR for Tx queues. */
1158                 err = mlx5_tx_uar_init_secondary(eth_dev, err);
1159                 if (err)
1160                         return NULL;
1161                 /*
1162                  * Ethdev pointer is still required as input since
1163                  * the primary device is not accessible from the
1164                  * secondary process.
1165                  */
1166                 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev);
1167                 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev);
1168                 return eth_dev;
1169         }
1170         sh = mlx5_alloc_shared_ibctx(spawn);
1171         if (!sh)
1172                 return NULL;
1173         config.devx = sh->devx;
1174 #ifdef HAVE_IBV_MLX5_MOD_SWP
1175         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
1176 #endif
1177         /*
1178          * Multi-packet send is supported by ConnectX-4 Lx PF as well
1179          * as all ConnectX-5 devices.
1180          */
1181 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1182         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
1183 #endif
1184 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1185         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
1186 #endif
1187         mlx5_glue->dv_query_device(sh->ctx, &dv_attr);
1188         if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
1189                 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
1190                         DRV_LOG(DEBUG, "enhanced MPW is supported");
1191                         mps = MLX5_MPW_ENHANCED;
1192                 } else {
1193                         DRV_LOG(DEBUG, "MPW is supported");
1194                         mps = MLX5_MPW;
1195                 }
1196         } else {
1197                 DRV_LOG(DEBUG, "MPW isn't supported");
1198                 mps = MLX5_MPW_DISABLED;
1199         }
1200 #ifdef HAVE_IBV_MLX5_MOD_SWP
1201         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
1202                 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
1203         DRV_LOG(DEBUG, "SWP support: %u", swp);
1204 #endif
1205         config.swp = !!swp;
1206 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1207         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
1208                 struct mlx5dv_striding_rq_caps mprq_caps =
1209                         dv_attr.striding_rq_caps;
1210
1211                 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
1212                         mprq_caps.min_single_stride_log_num_of_bytes);
1213                 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
1214                         mprq_caps.max_single_stride_log_num_of_bytes);
1215                 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
1216                         mprq_caps.min_single_wqe_log_num_of_strides);
1217                 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
1218                         mprq_caps.max_single_wqe_log_num_of_strides);
1219                 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
1220                         mprq_caps.supported_qpts);
1221                 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
1222                 mprq = 1;
1223                 mprq_min_stride_size_n =
1224                         mprq_caps.min_single_stride_log_num_of_bytes;
1225                 mprq_max_stride_size_n =
1226                         mprq_caps.max_single_stride_log_num_of_bytes;
1227                 mprq_min_stride_num_n =
1228                         mprq_caps.min_single_wqe_log_num_of_strides;
1229                 mprq_max_stride_num_n =
1230                         mprq_caps.max_single_wqe_log_num_of_strides;
1231                 config.mprq.stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1232                                                    mprq_min_stride_num_n);
1233         }
1234 #endif
1235         if (RTE_CACHE_LINE_SIZE == 128 &&
1236             !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
1237                 cqe_comp = 0;
1238         else
1239                 cqe_comp = 1;
1240         config.cqe_comp = cqe_comp;
1241 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
1242         /* Whether device supports 128B Rx CQE padding. */
1243         cqe_pad = RTE_CACHE_LINE_SIZE == 128 &&
1244                   (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_PAD);
1245 #endif
1246 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1247         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
1248                 tunnel_en = ((dv_attr.tunnel_offloads_caps &
1249                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
1250                              (dv_attr.tunnel_offloads_caps &
1251                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
1252         }
1253         DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
1254                 tunnel_en ? "" : "not ");
1255 #else
1256         DRV_LOG(WARNING,
1257                 "tunnel offloading disabled due to old OFED/rdma-core version");
1258 #endif
1259         config.tunnel_en = tunnel_en;
1260 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
1261         mpls_en = ((dv_attr.tunnel_offloads_caps &
1262                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
1263                    (dv_attr.tunnel_offloads_caps &
1264                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
1265         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
1266                 mpls_en ? "" : "not ");
1267 #else
1268         DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
1269                 " old OFED/rdma-core version or firmware configuration");
1270 #endif
1271         config.mpls_en = mpls_en;
1272         /* Check port status. */
1273         err = mlx5_glue->query_port(sh->ctx, spawn->ibv_port, &port_attr);
1274         if (err) {
1275                 DRV_LOG(ERR, "port query failed: %s", strerror(err));
1276                 goto error;
1277         }
1278         if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
1279                 DRV_LOG(ERR, "port is not configured in Ethernet mode");
1280                 err = EINVAL;
1281                 goto error;
1282         }
1283         if (port_attr.state != IBV_PORT_ACTIVE)
1284                 DRV_LOG(DEBUG, "port is not active: \"%s\" (%d)",
1285                         mlx5_glue->port_state_str(port_attr.state),
1286                         port_attr.state);
1287         /* Allocate private eth device data. */
1288         priv = rte_zmalloc("ethdev private structure",
1289                            sizeof(*priv),
1290                            RTE_CACHE_LINE_SIZE);
1291         if (priv == NULL) {
1292                 DRV_LOG(ERR, "priv allocation failure");
1293                 err = ENOMEM;
1294                 goto error;
1295         }
1296         priv->sh = sh;
1297         priv->ibv_port = spawn->ibv_port;
1298         priv->mtu = RTE_ETHER_MTU;
1299 #ifndef RTE_ARCH_64
1300         /* Initialize UAR access locks for 32bit implementations. */
1301         rte_spinlock_init(&priv->uar_lock_cq);
1302         for (i = 0; i < MLX5_UAR_PAGE_NUM_MAX; i++)
1303                 rte_spinlock_init(&priv->uar_lock[i]);
1304 #endif
1305         /* Some internal functions rely on Netlink sockets, open them now. */
1306         priv->nl_socket_rdma = mlx5_nl_init(NETLINK_RDMA);
1307         priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE);
1308         priv->nl_sn = 0;
1309         priv->representor = !!switch_info->representor;
1310         priv->master = !!switch_info->master;
1311         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
1312         /*
1313          * Currently we support single E-Switch per PF configurations
1314          * only and vport_id field contains the vport index for
1315          * associated VF, which is deduced from representor port name.
1316          * For example, let's have the IB device port 10, it has
1317          * attached network device eth0, which has port name attribute
1318          * pf0vf2, we can deduce the VF number as 2, and set vport index
1319          * as 3 (2+1). This assigning schema should be changed if the
1320          * multiple E-Switch instances per PF configurations or/and PCI
1321          * subfunctions are added.
1322          */
1323         priv->vport_id = switch_info->representor ?
1324                          switch_info->port_name + 1 : -1;
1325         /* representor_id field keeps the unmodified port/VF index. */
1326         priv->representor_id = switch_info->representor ?
1327                                switch_info->port_name : -1;
1328         /*
1329          * Look for sibling devices in order to reuse their switch domain
1330          * if any, otherwise allocate one.
1331          */
1332         RTE_ETH_FOREACH_DEV_OF(port_id, dpdk_dev) {
1333                 const struct mlx5_priv *opriv =
1334                         rte_eth_devices[port_id].data->dev_private;
1335
1336                 if (!opriv ||
1337                         opriv->domain_id ==
1338                         RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
1339                         continue;
1340                 priv->domain_id = opriv->domain_id;
1341                 break;
1342         }
1343         if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
1344                 err = rte_eth_switch_domain_alloc(&priv->domain_id);
1345                 if (err) {
1346                         err = rte_errno;
1347                         DRV_LOG(ERR, "unable to allocate switch domain: %s",
1348                                 strerror(rte_errno));
1349                         goto error;
1350                 }
1351                 own_domain_id = 1;
1352         }
1353         err = mlx5_args(&config, dpdk_dev->devargs);
1354         if (err) {
1355                 err = rte_errno;
1356                 DRV_LOG(ERR, "failed to process device arguments: %s",
1357                         strerror(rte_errno));
1358                 goto error;
1359         }
1360         config.hw_csum = !!(sh->device_attr.device_cap_flags_ex &
1361                             IBV_DEVICE_RAW_IP_CSUM);
1362         DRV_LOG(DEBUG, "checksum offloading is %ssupported",
1363                 (config.hw_csum ? "" : "not "));
1364 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
1365         !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
1366         DRV_LOG(DEBUG, "counters are not supported");
1367 #endif
1368 #ifndef HAVE_IBV_FLOW_DV_SUPPORT
1369         if (config.dv_flow_en) {
1370                 DRV_LOG(WARNING, "DV flow is not supported");
1371                 config.dv_flow_en = 0;
1372         }
1373 #endif
1374         config.ind_table_max_size =
1375                 sh->device_attr.rss_caps.max_rwq_indirection_table_size;
1376         /*
1377          * Remove this check once DPDK supports larger/variable
1378          * indirection tables.
1379          */
1380         if (config.ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
1381                 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
1382         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
1383                 config.ind_table_max_size);
1384         config.hw_vlan_strip = !!(sh->device_attr.raw_packet_caps &
1385                                   IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
1386         DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
1387                 (config.hw_vlan_strip ? "" : "not "));
1388         config.hw_fcs_strip = !!(sh->device_attr.raw_packet_caps &
1389                                  IBV_RAW_PACKET_CAP_SCATTER_FCS);
1390         DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
1391                 (config.hw_fcs_strip ? "" : "not "));
1392 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
1393         hw_padding = !!sh->device_attr.rx_pad_end_addr_align;
1394 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
1395         hw_padding = !!(sh->device_attr.device_cap_flags_ex &
1396                         IBV_DEVICE_PCI_WRITE_END_PADDING);
1397 #endif
1398         if (config.hw_padding && !hw_padding) {
1399                 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
1400                 config.hw_padding = 0;
1401         } else if (config.hw_padding) {
1402                 DRV_LOG(DEBUG, "Rx end alignment padding is enabled");
1403         }
1404         config.tso = (sh->device_attr.tso_caps.max_tso > 0 &&
1405                       (sh->device_attr.tso_caps.supported_qpts &
1406                        (1 << IBV_QPT_RAW_PACKET)));
1407         if (config.tso)
1408                 config.tso_max_payload_sz = sh->device_attr.tso_caps.max_tso;
1409         /*
1410          * MPW is disabled by default, while the Enhanced MPW is enabled
1411          * by default.
1412          */
1413         if (config.mps == MLX5_ARG_UNSET)
1414                 config.mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED :
1415                                                           MLX5_MPW_DISABLED;
1416         else
1417                 config.mps = config.mps ? mps : MLX5_MPW_DISABLED;
1418         DRV_LOG(INFO, "%sMPS is %s",
1419                 config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
1420                 config.mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
1421         if (config.cqe_comp && !cqe_comp) {
1422                 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
1423                 config.cqe_comp = 0;
1424         }
1425         if (config.cqe_pad && !cqe_pad) {
1426                 DRV_LOG(WARNING, "Rx CQE padding isn't supported");
1427                 config.cqe_pad = 0;
1428         } else if (config.cqe_pad) {
1429                 DRV_LOG(INFO, "Rx CQE padding is enabled");
1430         }
1431         if (config.mprq.enabled && mprq) {
1432                 if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
1433                     config.mprq.stride_num_n < mprq_min_stride_num_n) {
1434                         config.mprq.stride_num_n =
1435                                 RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
1436                                         mprq_min_stride_num_n);
1437                         DRV_LOG(WARNING,
1438                                 "the number of strides"
1439                                 " for Multi-Packet RQ is out of range,"
1440                                 " setting default value (%u)",
1441                                 1 << config.mprq.stride_num_n);
1442                 }
1443                 config.mprq.min_stride_size_n = mprq_min_stride_size_n;
1444                 config.mprq.max_stride_size_n = mprq_max_stride_size_n;
1445         } else if (config.mprq.enabled && !mprq) {
1446                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
1447                 config.mprq.enabled = 0;
1448         }
1449         if (config.max_dump_files_num == 0)
1450                 config.max_dump_files_num = 128;
1451         eth_dev = rte_eth_dev_allocate(name);
1452         if (eth_dev == NULL) {
1453                 DRV_LOG(ERR, "can not allocate rte ethdev");
1454                 err = ENOMEM;
1455                 goto error;
1456         }
1457         /* Flag to call rte_eth_dev_release_port() in rte_eth_dev_close(). */
1458         eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1459         if (priv->representor) {
1460                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
1461                 eth_dev->data->representor_id = priv->representor_id;
1462         }
1463         eth_dev->data->dev_private = priv;
1464         priv->dev_data = eth_dev->data;
1465         eth_dev->data->mac_addrs = priv->mac;
1466         eth_dev->device = dpdk_dev;
1467         /* Configure the first MAC address by default. */
1468         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
1469                 DRV_LOG(ERR,
1470                         "port %u cannot get MAC address, is mlx5_en"
1471                         " loaded? (errno: %s)",
1472                         eth_dev->data->port_id, strerror(rte_errno));
1473                 err = ENODEV;
1474                 goto error;
1475         }
1476         DRV_LOG(INFO,
1477                 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
1478                 eth_dev->data->port_id,
1479                 mac.addr_bytes[0], mac.addr_bytes[1],
1480                 mac.addr_bytes[2], mac.addr_bytes[3],
1481                 mac.addr_bytes[4], mac.addr_bytes[5]);
1482 #ifndef NDEBUG
1483         {
1484                 char ifname[IF_NAMESIZE];
1485
1486                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
1487                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
1488                                 eth_dev->data->port_id, ifname);
1489                 else
1490                         DRV_LOG(DEBUG, "port %u ifname is unknown",
1491                                 eth_dev->data->port_id);
1492         }
1493 #endif
1494         /* Get actual MTU if possible. */
1495         err = mlx5_get_mtu(eth_dev, &priv->mtu);
1496         if (err) {
1497                 err = rte_errno;
1498                 goto error;
1499         }
1500         DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
1501                 priv->mtu);
1502         /* Initialize burst functions to prevent crashes before link-up. */
1503         eth_dev->rx_pkt_burst = removed_rx_burst;
1504         eth_dev->tx_pkt_burst = removed_tx_burst;
1505         eth_dev->dev_ops = &mlx5_dev_ops;
1506         /* Register MAC address. */
1507         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
1508         if (config.vf && config.vf_nl_en)
1509                 mlx5_nl_mac_addr_sync(eth_dev);
1510         priv->tcf_context = mlx5_flow_tcf_context_create();
1511         if (!priv->tcf_context) {
1512                 err = -rte_errno;
1513                 DRV_LOG(WARNING,
1514                         "flow rules relying on switch offloads will not be"
1515                         " supported: cannot open libmnl socket: %s",
1516                         strerror(rte_errno));
1517         } else {
1518                 struct rte_flow_error error;
1519                 unsigned int ifindex = mlx5_ifindex(eth_dev);
1520
1521                 if (!ifindex) {
1522                         err = -rte_errno;
1523                         error.message =
1524                                 "cannot retrieve network interface index";
1525                 } else {
1526                         err = mlx5_flow_tcf_init(priv->tcf_context,
1527                                                  ifindex, &error);
1528                 }
1529                 if (err) {
1530                         DRV_LOG(WARNING,
1531                                 "flow rules relying on switch offloads will"
1532                                 " not be supported: %s: %s",
1533                                 error.message, strerror(rte_errno));
1534                         mlx5_flow_tcf_context_destroy(priv->tcf_context);
1535                         priv->tcf_context = NULL;
1536                 }
1537         }
1538         TAILQ_INIT(&priv->flows);
1539         TAILQ_INIT(&priv->ctrl_flows);
1540         /* Hint libmlx5 to use PMD allocator for data plane resources */
1541         struct mlx5dv_ctx_allocators alctr = {
1542                 .alloc = &mlx5_alloc_verbs_buf,
1543                 .free = &mlx5_free_verbs_buf,
1544                 .data = priv,
1545         };
1546         mlx5_glue->dv_set_context_attr(sh->ctx,
1547                                        MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
1548                                        (void *)((uintptr_t)&alctr));
1549         /* Bring Ethernet device up. */
1550         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
1551                 eth_dev->data->port_id);
1552         mlx5_set_link_up(eth_dev);
1553         /*
1554          * Even though the interrupt handler is not installed yet,
1555          * interrupts will still trigger on the async_fd from
1556          * Verbs context returned by ibv_open_device().
1557          */
1558         mlx5_link_update(eth_dev, 0);
1559 #ifdef HAVE_IBV_DEVX_OBJ
1560         if (config.devx) {
1561                 err = mlx5_devx_cmd_query_hca_attr(sh->ctx, &config.hca_attr);
1562                 if (err) {
1563                         err = -err;
1564                         goto error;
1565                 }
1566         }
1567 #endif
1568 #ifdef HAVE_MLX5DV_DR_ESWITCH
1569         if (!(config.hca_attr.eswitch_manager && config.dv_flow_en &&
1570               (switch_info->representor || switch_info->master)))
1571                 config.dv_esw_en = 0;
1572 #else
1573         config.dv_esw_en = 0;
1574 #endif
1575         /* Store device configuration on private structure. */
1576         priv->config = config;
1577         if (config.dv_flow_en) {
1578                 err = mlx5_alloc_shared_dr(priv);
1579                 if (err)
1580                         goto error;
1581         }
1582         /* Supported Verbs flow priority number detection. */
1583         err = mlx5_flow_discover_priorities(eth_dev);
1584         if (err < 0) {
1585                 err = -err;
1586                 goto error;
1587         }
1588         priv->config.flow_prio = err;
1589         /* Add device to memory callback list. */
1590         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
1591         LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
1592                          sh, mem_event_cb);
1593         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
1594         return eth_dev;
1595 error:
1596         if (priv) {
1597                 if (priv->sh)
1598                         mlx5_free_shared_dr(priv);
1599                 if (priv->nl_socket_route >= 0)
1600                         close(priv->nl_socket_route);
1601                 if (priv->nl_socket_rdma >= 0)
1602                         close(priv->nl_socket_rdma);
1603                 if (priv->tcf_context)
1604                         mlx5_flow_tcf_context_destroy(priv->tcf_context);
1605                 if (own_domain_id)
1606                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1607                 rte_free(priv);
1608                 if (eth_dev != NULL)
1609                         eth_dev->data->dev_private = NULL;
1610         }
1611         if (eth_dev != NULL) {
1612                 /* mac_addrs must not be freed alone because part of dev_private */
1613                 eth_dev->data->mac_addrs = NULL;
1614                 rte_eth_dev_release_port(eth_dev);
1615         }
1616         if (sh)
1617                 mlx5_free_shared_ibctx(sh);
1618         assert(err > 0);
1619         rte_errno = err;
1620         return NULL;
1621 }
1622
1623 /**
1624  * Comparison callback to sort device data.
1625  *
1626  * This is meant to be used with qsort().
1627  *
1628  * @param a[in]
1629  *   Pointer to pointer to first data object.
1630  * @param b[in]
1631  *   Pointer to pointer to second data object.
1632  *
1633  * @return
1634  *   0 if both objects are equal, less than 0 if the first argument is less
1635  *   than the second, greater than 0 otherwise.
1636  */
1637 static int
1638 mlx5_dev_spawn_data_cmp(const void *a, const void *b)
1639 {
1640         const struct mlx5_switch_info *si_a =
1641                 &((const struct mlx5_dev_spawn_data *)a)->info;
1642         const struct mlx5_switch_info *si_b =
1643                 &((const struct mlx5_dev_spawn_data *)b)->info;
1644         int ret;
1645
1646         /* Master device first. */
1647         ret = si_b->master - si_a->master;
1648         if (ret)
1649                 return ret;
1650         /* Then representor devices. */
1651         ret = si_b->representor - si_a->representor;
1652         if (ret)
1653                 return ret;
1654         /* Unidentified devices come last in no specific order. */
1655         if (!si_a->representor)
1656                 return 0;
1657         /* Order representors by name. */
1658         return si_a->port_name - si_b->port_name;
1659 }
1660
1661 /**
1662  * DPDK callback to register a PCI device.
1663  *
1664  * This function spawns Ethernet devices out of a given PCI device.
1665  *
1666  * @param[in] pci_drv
1667  *   PCI driver structure (mlx5_driver).
1668  * @param[in] pci_dev
1669  *   PCI device information.
1670  *
1671  * @return
1672  *   0 on success, a negative errno value otherwise and rte_errno is set.
1673  */
1674 static int
1675 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1676                struct rte_pci_device *pci_dev)
1677 {
1678         struct ibv_device **ibv_list;
1679         /*
1680          * Number of found IB Devices matching with requested PCI BDF.
1681          * nd != 1 means there are multiple IB devices over the same
1682          * PCI device and we have representors and master.
1683          */
1684         unsigned int nd = 0;
1685         /*
1686          * Number of found IB device Ports. nd = 1 and np = 1..n means
1687          * we have the single multiport IB device, and there may be
1688          * representors attached to some of found ports.
1689          */
1690         unsigned int np = 0;
1691         /*
1692          * Number of DPDK ethernet devices to Spawn - either over
1693          * multiple IB devices or multiple ports of single IB device.
1694          * Actually this is the number of iterations to spawn.
1695          */
1696         unsigned int ns = 0;
1697         struct mlx5_dev_config dev_config;
1698         int ret;
1699
1700         ret = mlx5_init_once();
1701         if (ret) {
1702                 DRV_LOG(ERR, "unable to init PMD global data: %s",
1703                         strerror(rte_errno));
1704                 return -rte_errno;
1705         }
1706         assert(pci_drv == &mlx5_driver);
1707         errno = 0;
1708         ibv_list = mlx5_glue->get_device_list(&ret);
1709         if (!ibv_list) {
1710                 rte_errno = errno ? errno : ENOSYS;
1711                 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
1712                 return -rte_errno;
1713         }
1714         /*
1715          * First scan the list of all Infiniband devices to find
1716          * matching ones, gathering into the list.
1717          */
1718         struct ibv_device *ibv_match[ret + 1];
1719         int nl_route = -1;
1720         int nl_rdma = -1;
1721         unsigned int i;
1722
1723         while (ret-- > 0) {
1724                 struct rte_pci_addr pci_addr;
1725
1726                 DRV_LOG(DEBUG, "checking device \"%s\"", ibv_list[ret]->name);
1727                 if (mlx5_ibv_device_to_pci_addr(ibv_list[ret], &pci_addr))
1728                         continue;
1729                 if (pci_dev->addr.domain != pci_addr.domain ||
1730                     pci_dev->addr.bus != pci_addr.bus ||
1731                     pci_dev->addr.devid != pci_addr.devid ||
1732                     pci_dev->addr.function != pci_addr.function)
1733                         continue;
1734                 DRV_LOG(INFO, "PCI information matches for device \"%s\"",
1735                         ibv_list[ret]->name);
1736                 ibv_match[nd++] = ibv_list[ret];
1737         }
1738         ibv_match[nd] = NULL;
1739         if (!nd) {
1740                 /* No device matches, just complain and bail out. */
1741                 mlx5_glue->free_device_list(ibv_list);
1742                 DRV_LOG(WARNING,
1743                         "no Verbs device matches PCI device " PCI_PRI_FMT ","
1744                         " are kernel drivers loaded?",
1745                         pci_dev->addr.domain, pci_dev->addr.bus,
1746                         pci_dev->addr.devid, pci_dev->addr.function);
1747                 rte_errno = ENOENT;
1748                 ret = -rte_errno;
1749                 return ret;
1750         }
1751         nl_route = mlx5_nl_init(NETLINK_ROUTE);
1752         nl_rdma = mlx5_nl_init(NETLINK_RDMA);
1753         if (nd == 1) {
1754                 /*
1755                  * Found single matching device may have multiple ports.
1756                  * Each port may be representor, we have to check the port
1757                  * number and check the representors existence.
1758                  */
1759                 if (nl_rdma >= 0)
1760                         np = mlx5_nl_portnum(nl_rdma, ibv_match[0]->name);
1761                 if (!np)
1762                         DRV_LOG(WARNING, "can not get IB device \"%s\""
1763                                          " ports number", ibv_match[0]->name);
1764         }
1765         /*
1766          * Now we can determine the maximal
1767          * amount of devices to be spawned.
1768          */
1769         struct mlx5_dev_spawn_data list[np ? np : nd];
1770
1771         if (np > 1) {
1772                 /*
1773                  * Single IB device with multiple ports found,
1774                  * it may be E-Switch master device and representors.
1775                  * We have to perform identification trough the ports.
1776                  */
1777                 assert(nl_rdma >= 0);
1778                 assert(ns == 0);
1779                 assert(nd == 1);
1780                 for (i = 1; i <= np; ++i) {
1781                         list[ns].max_port = np;
1782                         list[ns].ibv_port = i;
1783                         list[ns].ibv_dev = ibv_match[0];
1784                         list[ns].eth_dev = NULL;
1785                         list[ns].pci_dev = pci_dev;
1786                         list[ns].ifindex = mlx5_nl_ifindex
1787                                         (nl_rdma, list[ns].ibv_dev->name, i);
1788                         if (!list[ns].ifindex) {
1789                                 /*
1790                                  * No network interface index found for the
1791                                  * specified port, it means there is no
1792                                  * representor on this port. It's OK,
1793                                  * there can be disabled ports, for example
1794                                  * if sriov_numvfs < sriov_totalvfs.
1795                                  */
1796                                 continue;
1797                         }
1798                         ret = -1;
1799                         if (nl_route >= 0)
1800                                 ret = mlx5_nl_switch_info
1801                                                (nl_route,
1802                                                 list[ns].ifindex,
1803                                                 &list[ns].info);
1804                         if (ret || (!list[ns].info.representor &&
1805                                     !list[ns].info.master)) {
1806                                 /*
1807                                  * We failed to recognize representors with
1808                                  * Netlink, let's try to perform the task
1809                                  * with sysfs.
1810                                  */
1811                                 ret =  mlx5_sysfs_switch_info
1812                                                 (list[ns].ifindex,
1813                                                  &list[ns].info);
1814                         }
1815                         if (!ret && (list[ns].info.representor ^
1816                                      list[ns].info.master))
1817                                 ns++;
1818                 }
1819                 if (!ns) {
1820                         DRV_LOG(ERR,
1821                                 "unable to recognize master/representors"
1822                                 " on the IB device with multiple ports");
1823                         rte_errno = ENOENT;
1824                         ret = -rte_errno;
1825                         goto exit;
1826                 }
1827         } else {
1828                 /*
1829                  * The existence of several matching entries (nd > 1) means
1830                  * port representors have been instantiated. No existing Verbs
1831                  * call nor sysfs entries can tell them apart, this can only
1832                  * be done through Netlink calls assuming kernel drivers are
1833                  * recent enough to support them.
1834                  *
1835                  * In the event of identification failure through Netlink,
1836                  * try again through sysfs, then:
1837                  *
1838                  * 1. A single IB device matches (nd == 1) with single
1839                  *    port (np=0/1) and is not a representor, assume
1840                  *    no switch support.
1841                  *
1842                  * 2. Otherwise no safe assumptions can be made;
1843                  *    complain louder and bail out.
1844                  */
1845                 np = 1;
1846                 for (i = 0; i != nd; ++i) {
1847                         memset(&list[ns].info, 0, sizeof(list[ns].info));
1848                         list[ns].max_port = 1;
1849                         list[ns].ibv_port = 1;
1850                         list[ns].ibv_dev = ibv_match[i];
1851                         list[ns].eth_dev = NULL;
1852                         list[ns].pci_dev = pci_dev;
1853                         list[ns].ifindex = 0;
1854                         if (nl_rdma >= 0)
1855                                 list[ns].ifindex = mlx5_nl_ifindex
1856                                         (nl_rdma, list[ns].ibv_dev->name, 1);
1857                         if (!list[ns].ifindex) {
1858                                 char ifname[IF_NAMESIZE];
1859
1860                                 /*
1861                                  * Netlink failed, it may happen with old
1862                                  * ib_core kernel driver (before 4.16).
1863                                  * We can assume there is old driver because
1864                                  * here we are processing single ports IB
1865                                  * devices. Let's try sysfs to retrieve
1866                                  * the ifindex. The method works for
1867                                  * master device only.
1868                                  */
1869                                 if (nd > 1) {
1870                                         /*
1871                                          * Multiple devices found, assume
1872                                          * representors, can not distinguish
1873                                          * master/representor and retrieve
1874                                          * ifindex via sysfs.
1875                                          */
1876                                         continue;
1877                                 }
1878                                 ret = mlx5_get_master_ifname
1879                                         (ibv_match[i]->ibdev_path, &ifname);
1880                                 if (!ret)
1881                                         list[ns].ifindex =
1882                                                 if_nametoindex(ifname);
1883                                 if (!list[ns].ifindex) {
1884                                         /*
1885                                          * No network interface index found
1886                                          * for the specified device, it means
1887                                          * there it is neither representor
1888                                          * nor master.
1889                                          */
1890                                         continue;
1891                                 }
1892                         }
1893                         ret = -1;
1894                         if (nl_route >= 0)
1895                                 ret = mlx5_nl_switch_info
1896                                                (nl_route,
1897                                                 list[ns].ifindex,
1898                                                 &list[ns].info);
1899                         if (ret || (!list[ns].info.representor &&
1900                                     !list[ns].info.master)) {
1901                                 /*
1902                                  * We failed to recognize representors with
1903                                  * Netlink, let's try to perform the task
1904                                  * with sysfs.
1905                                  */
1906                                 ret =  mlx5_sysfs_switch_info
1907                                                 (list[ns].ifindex,
1908                                                  &list[ns].info);
1909                         }
1910                         if (!ret && (list[ns].info.representor ^
1911                                      list[ns].info.master)) {
1912                                 ns++;
1913                         } else if ((nd == 1) &&
1914                                    !list[ns].info.representor &&
1915                                    !list[ns].info.master) {
1916                                 /*
1917                                  * Single IB device with
1918                                  * one physical port and
1919                                  * attached network device.
1920                                  * May be SRIOV is not enabled
1921                                  * or there is no representors.
1922                                  */
1923                                 DRV_LOG(INFO, "no E-Switch support detected");
1924                                 ns++;
1925                                 break;
1926                         }
1927                 }
1928                 if (!ns) {
1929                         DRV_LOG(ERR,
1930                                 "unable to recognize master/representors"
1931                                 " on the multiple IB devices");
1932                         rte_errno = ENOENT;
1933                         ret = -rte_errno;
1934                         goto exit;
1935                 }
1936         }
1937         assert(ns);
1938         /*
1939          * Sort list to probe devices in natural order for users convenience
1940          * (i.e. master first, then representors from lowest to highest ID).
1941          */
1942         qsort(list, ns, sizeof(*list), mlx5_dev_spawn_data_cmp);
1943         /* Default configuration. */
1944         dev_config = (struct mlx5_dev_config){
1945                 .hw_padding = 0,
1946                 .mps = MLX5_ARG_UNSET,
1947                 .tx_vec_en = 1,
1948                 .rx_vec_en = 1,
1949                 .txq_inline = MLX5_ARG_UNSET,
1950                 .txqs_inline = MLX5_ARG_UNSET,
1951                 .txqs_vec = MLX5_ARG_UNSET,
1952                 .inline_max_packet_sz = MLX5_ARG_UNSET,
1953                 .vf_nl_en = 1,
1954                 .mr_ext_memseg_en = 1,
1955                 .mprq = {
1956                         .enabled = 0, /* Disabled by default. */
1957                         .stride_num_n = MLX5_MPRQ_STRIDE_NUM_N,
1958                         .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
1959                         .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
1960                 },
1961                 .dv_esw_en = 1,
1962         };
1963         /* Device specific configuration. */
1964         switch (pci_dev->id.device_id) {
1965         case PCI_DEVICE_ID_MELLANOX_CONNECTX5BF:
1966                 dev_config.txqs_vec = MLX5_VPMD_MAX_TXQS_BLUEFIELD;
1967                 break;
1968         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1969         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1970         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1971         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1972                 dev_config.vf = 1;
1973                 break;
1974         default:
1975                 break;
1976         }
1977         /* Set architecture-dependent default value if unset. */
1978         if (dev_config.txqs_vec == MLX5_ARG_UNSET)
1979                 dev_config.txqs_vec = MLX5_VPMD_MAX_TXQS;
1980         for (i = 0; i != ns; ++i) {
1981                 uint32_t restore;
1982
1983                 list[i].eth_dev = mlx5_dev_spawn(&pci_dev->device,
1984                                                  &list[i],
1985                                                  dev_config);
1986                 if (!list[i].eth_dev) {
1987                         if (rte_errno != EBUSY && rte_errno != EEXIST)
1988                                 break;
1989                         /* Device is disabled or already spawned. Ignore it. */
1990                         continue;
1991                 }
1992                 restore = list[i].eth_dev->data->dev_flags;
1993                 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev);
1994                 /* Restore non-PCI flags cleared by the above call. */
1995                 list[i].eth_dev->data->dev_flags |= restore;
1996                 rte_eth_dev_probing_finish(list[i].eth_dev);
1997         }
1998         if (i != ns) {
1999                 DRV_LOG(ERR,
2000                         "probe of PCI device " PCI_PRI_FMT " aborted after"
2001                         " encountering an error: %s",
2002                         pci_dev->addr.domain, pci_dev->addr.bus,
2003                         pci_dev->addr.devid, pci_dev->addr.function,
2004                         strerror(rte_errno));
2005                 ret = -rte_errno;
2006                 /* Roll back. */
2007                 while (i--) {
2008                         if (!list[i].eth_dev)
2009                                 continue;
2010                         mlx5_dev_close(list[i].eth_dev);
2011                         /* mac_addrs must not be freed because in dev_private */
2012                         list[i].eth_dev->data->mac_addrs = NULL;
2013                         claim_zero(rte_eth_dev_release_port(list[i].eth_dev));
2014                 }
2015                 /* Restore original error. */
2016                 rte_errno = -ret;
2017         } else {
2018                 ret = 0;
2019         }
2020 exit:
2021         /*
2022          * Do the routine cleanup:
2023          * - close opened Netlink sockets
2024          * - free the Infiniband device list
2025          */
2026         if (nl_rdma >= 0)
2027                 close(nl_rdma);
2028         if (nl_route >= 0)
2029                 close(nl_route);
2030         assert(ibv_list);
2031         mlx5_glue->free_device_list(ibv_list);
2032         return ret;
2033 }
2034
2035 /**
2036  * DPDK callback to remove a PCI device.
2037  *
2038  * This function removes all Ethernet devices belong to a given PCI device.
2039  *
2040  * @param[in] pci_dev
2041  *   Pointer to the PCI device.
2042  *
2043  * @return
2044  *   0 on success, the function cannot fail.
2045  */
2046 static int
2047 mlx5_pci_remove(struct rte_pci_device *pci_dev)
2048 {
2049         uint16_t port_id;
2050
2051         RTE_ETH_FOREACH_DEV_OF(port_id, &pci_dev->device)
2052                 rte_eth_dev_close(port_id);
2053         return 0;
2054 }
2055
2056 static const struct rte_pci_id mlx5_pci_id_map[] = {
2057         {
2058                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2059                                PCI_DEVICE_ID_MELLANOX_CONNECTX4)
2060         },
2061         {
2062                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2063                                PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
2064         },
2065         {
2066                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2067                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
2068         },
2069         {
2070                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2071                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
2072         },
2073         {
2074                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2075                                PCI_DEVICE_ID_MELLANOX_CONNECTX5)
2076         },
2077         {
2078                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2079                                PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
2080         },
2081         {
2082                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2083                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
2084         },
2085         {
2086                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2087                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
2088         },
2089         {
2090                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2091                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
2092         },
2093         {
2094                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2095                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF)
2096         },
2097         {
2098                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2099                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6)
2100         },
2101         {
2102                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
2103                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6VF)
2104         },
2105         {
2106                 .vendor_id = 0
2107         }
2108 };
2109
2110 static struct rte_pci_driver mlx5_driver = {
2111         .driver = {
2112                 .name = MLX5_DRIVER_NAME
2113         },
2114         .id_table = mlx5_pci_id_map,
2115         .probe = mlx5_pci_probe,
2116         .remove = mlx5_pci_remove,
2117         .dma_map = mlx5_dma_map,
2118         .dma_unmap = mlx5_dma_unmap,
2119         .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV |
2120                      RTE_PCI_DRV_PROBE_AGAIN | RTE_PCI_DRV_IOVA_AS_VA,
2121 };
2122
2123 #ifdef RTE_IBVERBS_LINK_DLOPEN
2124
2125 /**
2126  * Suffix RTE_EAL_PMD_PATH with "-glue".
2127  *
2128  * This function performs a sanity check on RTE_EAL_PMD_PATH before
2129  * suffixing its last component.
2130  *
2131  * @param buf[out]
2132  *   Output buffer, should be large enough otherwise NULL is returned.
2133  * @param size
2134  *   Size of @p out.
2135  *
2136  * @return
2137  *   Pointer to @p buf or @p NULL in case suffix cannot be appended.
2138  */
2139 static char *
2140 mlx5_glue_path(char *buf, size_t size)
2141 {
2142         static const char *const bad[] = { "/", ".", "..", NULL };
2143         const char *path = RTE_EAL_PMD_PATH;
2144         size_t len = strlen(path);
2145         size_t off;
2146         int i;
2147
2148         while (len && path[len - 1] == '/')
2149                 --len;
2150         for (off = len; off && path[off - 1] != '/'; --off)
2151                 ;
2152         for (i = 0; bad[i]; ++i)
2153                 if (!strncmp(path + off, bad[i], (int)(len - off)))
2154                         goto error;
2155         i = snprintf(buf, size, "%.*s-glue", (int)len, path);
2156         if (i == -1 || (size_t)i >= size)
2157                 goto error;
2158         return buf;
2159 error:
2160         DRV_LOG(ERR,
2161                 "unable to append \"-glue\" to last component of"
2162                 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
2163                 " please re-configure DPDK");
2164         return NULL;
2165 }
2166
2167 /**
2168  * Initialization routine for run-time dependency on rdma-core.
2169  */
2170 static int
2171 mlx5_glue_init(void)
2172 {
2173         char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
2174         const char *path[] = {
2175                 /*
2176                  * A basic security check is necessary before trusting
2177                  * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
2178                  */
2179                 (geteuid() == getuid() && getegid() == getgid() ?
2180                  getenv("MLX5_GLUE_PATH") : NULL),
2181                 /*
2182                  * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
2183                  * variant, otherwise let dlopen() look up libraries on its
2184                  * own.
2185                  */
2186                 (*RTE_EAL_PMD_PATH ?
2187                  mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
2188         };
2189         unsigned int i = 0;
2190         void *handle = NULL;
2191         void **sym;
2192         const char *dlmsg;
2193
2194         while (!handle && i != RTE_DIM(path)) {
2195                 const char *end;
2196                 size_t len;
2197                 int ret;
2198
2199                 if (!path[i]) {
2200                         ++i;
2201                         continue;
2202                 }
2203                 end = strpbrk(path[i], ":;");
2204                 if (!end)
2205                         end = path[i] + strlen(path[i]);
2206                 len = end - path[i];
2207                 ret = 0;
2208                 do {
2209                         char name[ret + 1];
2210
2211                         ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
2212                                        (int)len, path[i],
2213                                        (!len || *(end - 1) == '/') ? "" : "/");
2214                         if (ret == -1)
2215                                 break;
2216                         if (sizeof(name) != (size_t)ret + 1)
2217                                 continue;
2218                         DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
2219                                 name);
2220                         handle = dlopen(name, RTLD_LAZY);
2221                         break;
2222                 } while (1);
2223                 path[i] = end + 1;
2224                 if (!*end)
2225                         ++i;
2226         }
2227         if (!handle) {
2228                 rte_errno = EINVAL;
2229                 dlmsg = dlerror();
2230                 if (dlmsg)
2231                         DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
2232                 goto glue_error;
2233         }
2234         sym = dlsym(handle, "mlx5_glue");
2235         if (!sym || !*sym) {
2236                 rte_errno = EINVAL;
2237                 dlmsg = dlerror();
2238                 if (dlmsg)
2239                         DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
2240                 goto glue_error;
2241         }
2242         mlx5_glue = *sym;
2243         return 0;
2244 glue_error:
2245         if (handle)
2246                 dlclose(handle);
2247         DRV_LOG(WARNING,
2248                 "cannot initialize PMD due to missing run-time dependency on"
2249                 " rdma-core libraries (libibverbs, libmlx5)");
2250         return -rte_errno;
2251 }
2252
2253 #endif
2254
2255 /**
2256  * Driver initialization routine.
2257  */
2258 RTE_INIT(rte_mlx5_pmd_init)
2259 {
2260         /* Initialize driver log type. */
2261         mlx5_logtype = rte_log_register("pmd.net.mlx5");
2262         if (mlx5_logtype >= 0)
2263                 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);
2264
2265         /* Build the static tables for Verbs conversion. */
2266         mlx5_set_ptype_table();
2267         mlx5_set_cksum_table();
2268         mlx5_set_swp_types_table();
2269         /*
2270          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
2271          * huge pages. Calling ibv_fork_init() during init allows
2272          * applications to use fork() safely for purposes other than
2273          * using this PMD, which is not supported in forked processes.
2274          */
2275         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
2276         /* Match the size of Rx completion entry to the size of a cacheline. */
2277         if (RTE_CACHE_LINE_SIZE == 128)
2278                 setenv("MLX5_CQE_SIZE", "128", 0);
2279         /*
2280          * MLX5_DEVICE_FATAL_CLEANUP tells ibv_destroy functions to
2281          * cleanup all the Verbs resources even when the device was removed.
2282          */
2283         setenv("MLX5_DEVICE_FATAL_CLEANUP", "1", 1);
2284 #ifdef RTE_IBVERBS_LINK_DLOPEN
2285         if (mlx5_glue_init())
2286                 return;
2287         assert(mlx5_glue);
2288 #endif
2289 #ifndef NDEBUG
2290         /* Glue structure must not contain any NULL pointers. */
2291         {
2292                 unsigned int i;
2293
2294                 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
2295                         assert(((const void *const *)mlx5_glue)[i]);
2296         }
2297 #endif
2298         if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
2299                 DRV_LOG(ERR,
2300                         "rdma-core glue \"%s\" mismatch: \"%s\" is required",
2301                         mlx5_glue->version, MLX5_GLUE_VERSION);
2302                 return;
2303         }
2304         mlx5_glue->fork_init();
2305         rte_pci_register(&mlx5_driver);
2306 }
2307
2308 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
2309 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
2310 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");