net/mlx5: fill meter capabilities using DevX
[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_kvargs.h>
36 #include <rte_rwlock.h>
37 #include <rte_spinlock.h>
38 #include <rte_string_fns.h>
39 #include <rte_alarm.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. Deprecated, ignored.*/
72 #define MLX5_TXQ_INLINE "txq_inline"
73
74 /* Device parameter to limit packet size to inline with ordinary SEND. */
75 #define MLX5_TXQ_INLINE_MAX "txq_inline_max"
76
77 /* Device parameter to configure minimal data size to inline. */
78 #define MLX5_TXQ_INLINE_MIN "txq_inline_min"
79
80 /* Device parameter to limit packet size to inline with Enhanced MPW. */
81 #define MLX5_TXQ_INLINE_MPW "txq_inline_mpw"
82
83 /*
84  * Device parameter to configure the number of TX queues threshold for
85  * enabling inline send.
86  */
87 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
88
89 /*
90  * Device parameter to configure the number of TX queues threshold for
91  * enabling vectorized Tx, deprecated, ignored (no vectorized Tx routines).
92  */
93 #define MLX5_TXQS_MAX_VEC "txqs_max_vec"
94
95 /* Device parameter to enable multi-packet send WQEs. */
96 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
97
98 /*
99  * Device parameter to include 2 dsegs in the title WQEBB.
100  * Deprecated, ignored.
101  */
102 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
103
104 /*
105  * Device parameter to limit the size of inlining packet.
106  * Deprecated, ignored.
107  */
108 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
109
110 /*
111  * Device parameter to enable hardware Tx vector.
112  * Deprecated, ignored (no vectorized Tx routines anymore).
113  */
114 #define MLX5_TX_VEC_EN "tx_vec_en"
115
116 /* Device parameter to enable hardware Rx vector. */
117 #define MLX5_RX_VEC_EN "rx_vec_en"
118
119 /* Allow L3 VXLAN flow creation. */
120 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
121
122 /* Activate DV E-Switch flow steering. */
123 #define MLX5_DV_ESW_EN "dv_esw_en"
124
125 /* Activate DV flow steering. */
126 #define MLX5_DV_FLOW_EN "dv_flow_en"
127
128 /* Enable extensive flow metadata support. */
129 #define MLX5_DV_XMETA_EN "dv_xmeta_en"
130
131 /* Activate Netlink support in VF mode. */
132 #define MLX5_VF_NL_EN "vf_nl_en"
133
134 /* Enable extending memsegs when creating a MR. */
135 #define MLX5_MR_EXT_MEMSEG_EN "mr_ext_memseg_en"
136
137 /* Select port representors to instantiate. */
138 #define MLX5_REPRESENTOR "representor"
139
140 /* Device parameter to configure the maximum number of dump files per queue. */
141 #define MLX5_MAX_DUMP_FILES_NUM "max_dump_files_num"
142
143 /* Configure timeout of LRO session (in microseconds). */
144 #define MLX5_LRO_TIMEOUT_USEC "lro_timeout_usec"
145
146 #ifndef HAVE_IBV_MLX5_MOD_MPW
147 #define MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED (1 << 2)
148 #define MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW (1 << 3)
149 #endif
150
151 #ifndef HAVE_IBV_MLX5_MOD_CQE_128B_COMP
152 #define MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP (1 << 4)
153 #endif
154
155 static const char *MZ_MLX5_PMD_SHARED_DATA = "mlx5_pmd_shared_data";
156
157 /* Shared memory between primary and secondary processes. */
158 struct mlx5_shared_data *mlx5_shared_data;
159
160 /* Spinlock for mlx5_shared_data allocation. */
161 static rte_spinlock_t mlx5_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
162
163 /* Process local data for secondary processes. */
164 static struct mlx5_local_data mlx5_local_data;
165
166 /** Driver-specific log messages type. */
167 int mlx5_logtype;
168
169 /** Data associated with devices to spawn. */
170 struct mlx5_dev_spawn_data {
171         uint32_t ifindex; /**< Network interface index. */
172         uint32_t max_port; /**< IB device maximal port index. */
173         uint32_t ibv_port; /**< IB device physical port index. */
174         int pf_bond; /**< bonding device PF index. < 0 - no bonding */
175         struct mlx5_switch_info info; /**< Switch information. */
176         struct ibv_device *ibv_dev; /**< Associated IB device. */
177         struct rte_eth_dev *eth_dev; /**< Associated Ethernet device. */
178         struct rte_pci_device *pci_dev; /**< Backend PCI device. */
179 };
180
181 static LIST_HEAD(, mlx5_ibv_shared) mlx5_ibv_list = LIST_HEAD_INITIALIZER();
182 static pthread_mutex_t mlx5_ibv_list_mutex = PTHREAD_MUTEX_INITIALIZER;
183
184 #define MLX5_FLOW_MIN_ID_POOL_SIZE 512
185 #define MLX5_ID_GENERATION_ARRAY_FACTOR 16
186
187 /**
188  * Allocate ID pool structure.
189  *
190  * @return
191  *   Pointer to pool object, NULL value otherwise.
192  */
193 struct mlx5_flow_id_pool *
194 mlx5_flow_id_pool_alloc(void)
195 {
196         struct mlx5_flow_id_pool *pool;
197         void *mem;
198
199         pool = rte_zmalloc("id pool allocation", sizeof(*pool),
200                            RTE_CACHE_LINE_SIZE);
201         if (!pool) {
202                 DRV_LOG(ERR, "can't allocate id pool");
203                 rte_errno  = ENOMEM;
204                 return NULL;
205         }
206         mem = rte_zmalloc("", MLX5_FLOW_MIN_ID_POOL_SIZE * sizeof(uint32_t),
207                           RTE_CACHE_LINE_SIZE);
208         if (!mem) {
209                 DRV_LOG(ERR, "can't allocate mem for id pool");
210                 rte_errno  = ENOMEM;
211                 goto error;
212         }
213         pool->free_arr = mem;
214         pool->curr = pool->free_arr;
215         pool->last = pool->free_arr + MLX5_FLOW_MIN_ID_POOL_SIZE;
216         pool->base_index = 0;
217         return pool;
218 error:
219         rte_free(pool);
220         return NULL;
221 }
222
223 /**
224  * Release ID pool structure.
225  *
226  * @param[in] pool
227  *   Pointer to flow id pool object to free.
228  */
229 void
230 mlx5_flow_id_pool_release(struct mlx5_flow_id_pool *pool)
231 {
232         rte_free(pool->free_arr);
233         rte_free(pool);
234 }
235
236 /**
237  * Generate ID.
238  *
239  * @param[in] pool
240  *   Pointer to flow id pool.
241  * @param[out] id
242  *   The generated ID.
243  *
244  * @return
245  *   0 on success, error value otherwise.
246  */
247 uint32_t
248 mlx5_flow_id_get(struct mlx5_flow_id_pool *pool, uint32_t *id)
249 {
250         if (pool->curr == pool->free_arr) {
251                 if (pool->base_index == UINT32_MAX) {
252                         rte_errno  = ENOMEM;
253                         DRV_LOG(ERR, "no free id");
254                         return -rte_errno;
255                 }
256                 *id = ++pool->base_index;
257                 return 0;
258         }
259         *id = *(--pool->curr);
260         return 0;
261 }
262
263 /**
264  * Release ID.
265  *
266  * @param[in] pool
267  *   Pointer to flow id pool.
268  * @param[out] id
269  *   The generated ID.
270  *
271  * @return
272  *   0 on success, error value otherwise.
273  */
274 uint32_t
275 mlx5_flow_id_release(struct mlx5_flow_id_pool *pool, uint32_t id)
276 {
277         uint32_t size;
278         uint32_t size2;
279         void *mem;
280
281         if (pool->curr == pool->last) {
282                 size = pool->curr - pool->free_arr;
283                 size2 = size * MLX5_ID_GENERATION_ARRAY_FACTOR;
284                 assert(size2 > size);
285                 mem = rte_malloc("", size2 * sizeof(uint32_t), 0);
286                 if (!mem) {
287                         DRV_LOG(ERR, "can't allocate mem for id pool");
288                         rte_errno  = ENOMEM;
289                         return -rte_errno;
290                 }
291                 memcpy(mem, pool->free_arr, size * sizeof(uint32_t));
292                 rte_free(pool->free_arr);
293                 pool->free_arr = mem;
294                 pool->curr = pool->free_arr + size;
295                 pool->last = pool->free_arr + size2;
296         }
297         *pool->curr = id;
298         pool->curr++;
299         return 0;
300 }
301
302 /**
303  * Initialize the counters management structure.
304  *
305  * @param[in] sh
306  *   Pointer to mlx5_ibv_shared object to free
307  */
308 static void
309 mlx5_flow_counters_mng_init(struct mlx5_ibv_shared *sh)
310 {
311         uint8_t i;
312
313         TAILQ_INIT(&sh->cmng.flow_counters);
314         for (i = 0; i < RTE_DIM(sh->cmng.ccont); ++i)
315                 TAILQ_INIT(&sh->cmng.ccont[i].pool_list);
316 }
317
318 /**
319  * Destroy all the resources allocated for a counter memory management.
320  *
321  * @param[in] mng
322  *   Pointer to the memory management structure.
323  */
324 static void
325 mlx5_flow_destroy_counter_stat_mem_mng(struct mlx5_counter_stats_mem_mng *mng)
326 {
327         uint8_t *mem = (uint8_t *)(uintptr_t)mng->raws[0].data;
328
329         LIST_REMOVE(mng, next);
330         claim_zero(mlx5_devx_cmd_destroy(mng->dm));
331         claim_zero(mlx5_glue->devx_umem_dereg(mng->umem));
332         rte_free(mem);
333 }
334
335 /**
336  * Close and release all the resources of the counters management.
337  *
338  * @param[in] sh
339  *   Pointer to mlx5_ibv_shared object to free.
340  */
341 static void
342 mlx5_flow_counters_mng_close(struct mlx5_ibv_shared *sh)
343 {
344         struct mlx5_counter_stats_mem_mng *mng;
345         uint8_t i;
346         int j;
347         int retries = 1024;
348
349         rte_errno = 0;
350         while (--retries) {
351                 rte_eal_alarm_cancel(mlx5_flow_query_alarm, sh);
352                 if (rte_errno != EINPROGRESS)
353                         break;
354                 rte_pause();
355         }
356         for (i = 0; i < RTE_DIM(sh->cmng.ccont); ++i) {
357                 struct mlx5_flow_counter_pool *pool;
358                 uint32_t batch = !!(i % 2);
359
360                 if (!sh->cmng.ccont[i].pools)
361                         continue;
362                 pool = TAILQ_FIRST(&sh->cmng.ccont[i].pool_list);
363                 while (pool) {
364                         if (batch) {
365                                 if (pool->min_dcs)
366                                         claim_zero
367                                         (mlx5_devx_cmd_destroy(pool->min_dcs));
368                         }
369                         for (j = 0; j < MLX5_COUNTERS_PER_POOL; ++j) {
370                                 if (pool->counters_raw[j].action)
371                                         claim_zero
372                                         (mlx5_glue->destroy_flow_action
373                                                (pool->counters_raw[j].action));
374                                 if (!batch && pool->counters_raw[j].dcs)
375                                         claim_zero(mlx5_devx_cmd_destroy
376                                                   (pool->counters_raw[j].dcs));
377                         }
378                         TAILQ_REMOVE(&sh->cmng.ccont[i].pool_list, pool,
379                                      next);
380                         rte_free(pool);
381                         pool = TAILQ_FIRST(&sh->cmng.ccont[i].pool_list);
382                 }
383                 rte_free(sh->cmng.ccont[i].pools);
384         }
385         mng = LIST_FIRST(&sh->cmng.mem_mngs);
386         while (mng) {
387                 mlx5_flow_destroy_counter_stat_mem_mng(mng);
388                 mng = LIST_FIRST(&sh->cmng.mem_mngs);
389         }
390         memset(&sh->cmng, 0, sizeof(sh->cmng));
391 }
392
393 /**
394  * Extract pdn of PD object using DV API.
395  *
396  * @param[in] pd
397  *   Pointer to the verbs PD object.
398  * @param[out] pdn
399  *   Pointer to the PD object number variable.
400  *
401  * @return
402  *   0 on success, error value otherwise.
403  */
404 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
405 static int
406 mlx5_get_pdn(struct ibv_pd *pd __rte_unused, uint32_t *pdn __rte_unused)
407 {
408         struct mlx5dv_obj obj;
409         struct mlx5dv_pd pd_info;
410         int ret = 0;
411
412         obj.pd.in = pd;
413         obj.pd.out = &pd_info;
414         ret = mlx5_glue->dv_init_obj(&obj, MLX5DV_OBJ_PD);
415         if (ret) {
416                 DRV_LOG(DEBUG, "Fail to get PD object info");
417                 return ret;
418         }
419         *pdn = pd_info.pdn;
420         return 0;
421 }
422 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */
423
424 /**
425  * Allocate shared IB device context. If there is multiport device the
426  * master and representors will share this context, if there is single
427  * port dedicated IB device, the context will be used by only given
428  * port due to unification.
429  *
430  * Routine first searches the context for the specified IB device name,
431  * if found the shared context assumed and reference counter is incremented.
432  * If no context found the new one is created and initialized with specified
433  * IB device context and parameters.
434  *
435  * @param[in] spawn
436  *   Pointer to the IB device attributes (name, port, etc).
437  *
438  * @return
439  *   Pointer to mlx5_ibv_shared object on success,
440  *   otherwise NULL and rte_errno is set.
441  */
442 static struct mlx5_ibv_shared *
443 mlx5_alloc_shared_ibctx(const struct mlx5_dev_spawn_data *spawn)
444 {
445         struct mlx5_ibv_shared *sh;
446         int err = 0;
447         uint32_t i;
448 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
449         struct mlx5_devx_tis_attr tis_attr = { 0 };
450 #endif
451
452 assert(spawn);
453         /* Secondary process should not create the shared context. */
454         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
455         pthread_mutex_lock(&mlx5_ibv_list_mutex);
456         /* Search for IB context by device name. */
457         LIST_FOREACH(sh, &mlx5_ibv_list, next) {
458                 if (!strcmp(sh->ibdev_name, spawn->ibv_dev->name)) {
459                         sh->refcnt++;
460                         goto exit;
461                 }
462         }
463         /* No device found, we have to create new shared context. */
464         assert(spawn->max_port);
465         sh = rte_zmalloc("ethdev shared ib context",
466                          sizeof(struct mlx5_ibv_shared) +
467                          spawn->max_port *
468                          sizeof(struct mlx5_ibv_shared_port),
469                          RTE_CACHE_LINE_SIZE);
470         if (!sh) {
471                 DRV_LOG(ERR, "shared context allocation failure");
472                 rte_errno  = ENOMEM;
473                 goto exit;
474         }
475         /* Try to open IB device with DV first, then usual Verbs. */
476         errno = 0;
477         sh->ctx = mlx5_glue->dv_open_device(spawn->ibv_dev);
478         if (sh->ctx) {
479                 sh->devx = 1;
480                 DRV_LOG(DEBUG, "DevX is supported");
481         } else {
482                 sh->ctx = mlx5_glue->open_device(spawn->ibv_dev);
483                 if (!sh->ctx) {
484                         err = errno ? errno : ENODEV;
485                         goto error;
486                 }
487                 DRV_LOG(DEBUG, "DevX is NOT supported");
488         }
489         err = mlx5_glue->query_device_ex(sh->ctx, NULL, &sh->device_attr);
490         if (err) {
491                 DRV_LOG(DEBUG, "ibv_query_device_ex() failed");
492                 goto error;
493         }
494         sh->refcnt = 1;
495         sh->max_port = spawn->max_port;
496         strncpy(sh->ibdev_name, sh->ctx->device->name,
497                 sizeof(sh->ibdev_name));
498         strncpy(sh->ibdev_path, sh->ctx->device->ibdev_path,
499                 sizeof(sh->ibdev_path));
500         pthread_mutex_init(&sh->intr_mutex, NULL);
501         /*
502          * Setting port_id to max unallowed value means
503          * there is no interrupt subhandler installed for
504          * the given port index i.
505          */
506         for (i = 0; i < sh->max_port; i++) {
507                 sh->port[i].ih_port_id = RTE_MAX_ETHPORTS;
508                 sh->port[i].devx_ih_port_id = RTE_MAX_ETHPORTS;
509         }
510         sh->pd = mlx5_glue->alloc_pd(sh->ctx);
511         if (sh->pd == NULL) {
512                 DRV_LOG(ERR, "PD allocation failure");
513                 err = ENOMEM;
514                 goto error;
515         }
516 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
517         if (sh->devx) {
518                 err = mlx5_get_pdn(sh->pd, &sh->pdn);
519                 if (err) {
520                         DRV_LOG(ERR, "Fail to extract pdn from PD");
521                         goto error;
522                 }
523                 sh->td = mlx5_devx_cmd_create_td(sh->ctx);
524                 if (!sh->td) {
525                         DRV_LOG(ERR, "TD allocation failure");
526                         err = ENOMEM;
527                         goto error;
528                 }
529                 tis_attr.transport_domain = sh->td->id;
530                 sh->tis = mlx5_devx_cmd_create_tis(sh->ctx, &tis_attr);
531                 if (!sh->tis) {
532                         DRV_LOG(ERR, "TIS allocation failure");
533                         err = ENOMEM;
534                         goto error;
535                 }
536         }
537         sh->flow_id_pool = mlx5_flow_id_pool_alloc();
538         if (!sh->flow_id_pool) {
539                 DRV_LOG(ERR, "can't create flow id pool");
540                 err = ENOMEM;
541                 goto error;
542         }
543 #endif /* HAVE_IBV_FLOW_DV_SUPPORT */
544         /*
545          * Once the device is added to the list of memory event
546          * callback, its global MR cache table cannot be expanded
547          * on the fly because of deadlock. If it overflows, lookup
548          * should be done by searching MR list linearly, which is slow.
549          *
550          * At this point the device is not added to the memory
551          * event list yet, context is just being created.
552          */
553         err = mlx5_mr_btree_init(&sh->mr.cache,
554                                  MLX5_MR_BTREE_CACHE_N * 2,
555                                  spawn->pci_dev->device.numa_node);
556         if (err) {
557                 err = rte_errno;
558                 goto error;
559         }
560         mlx5_flow_counters_mng_init(sh);
561         /* Add device to memory callback list. */
562         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
563         LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
564                          sh, mem_event_cb);
565         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
566         /* Add context to the global device list. */
567         LIST_INSERT_HEAD(&mlx5_ibv_list, sh, next);
568 exit:
569         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
570         return sh;
571 error:
572         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
573         assert(sh);
574         if (sh->tis)
575                 claim_zero(mlx5_devx_cmd_destroy(sh->tis));
576         if (sh->td)
577                 claim_zero(mlx5_devx_cmd_destroy(sh->td));
578         if (sh->pd)
579                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
580         if (sh->ctx)
581                 claim_zero(mlx5_glue->close_device(sh->ctx));
582         if (sh->flow_id_pool)
583                 mlx5_flow_id_pool_release(sh->flow_id_pool);
584         rte_free(sh);
585         assert(err > 0);
586         rte_errno = err;
587         return NULL;
588 }
589
590 /**
591  * Free shared IB device context. Decrement counter and if zero free
592  * all allocated resources and close handles.
593  *
594  * @param[in] sh
595  *   Pointer to mlx5_ibv_shared object to free
596  */
597 static void
598 mlx5_free_shared_ibctx(struct mlx5_ibv_shared *sh)
599 {
600         pthread_mutex_lock(&mlx5_ibv_list_mutex);
601 #ifndef NDEBUG
602         /* Check the object presence in the list. */
603         struct mlx5_ibv_shared *lctx;
604
605         LIST_FOREACH(lctx, &mlx5_ibv_list, next)
606                 if (lctx == sh)
607                         break;
608         assert(lctx);
609         if (lctx != sh) {
610                 DRV_LOG(ERR, "Freeing non-existing shared IB context");
611                 goto exit;
612         }
613 #endif
614         assert(sh);
615         assert(sh->refcnt);
616         /* Secondary process should not free the shared context. */
617         assert(rte_eal_process_type() == RTE_PROC_PRIMARY);
618         if (--sh->refcnt)
619                 goto exit;
620         /* Release created Memory Regions. */
621         mlx5_mr_release(sh);
622         /* Remove from memory callback device list. */
623         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
624         LIST_REMOVE(sh, mem_event_cb);
625         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
626         /* Remove context from the global device list. */
627         LIST_REMOVE(sh, next);
628         /*
629          *  Ensure there is no async event handler installed.
630          *  Only primary process handles async device events.
631          **/
632         mlx5_flow_counters_mng_close(sh);
633         assert(!sh->intr_cnt);
634         if (sh->intr_cnt)
635                 mlx5_intr_callback_unregister
636                         (&sh->intr_handle, mlx5_dev_interrupt_handler, sh);
637 #ifdef HAVE_MLX5_DEVX_ASYNC_SUPPORT
638         if (sh->devx_intr_cnt) {
639                 if (sh->intr_handle_devx.fd)
640                         rte_intr_callback_unregister(&sh->intr_handle_devx,
641                                           mlx5_dev_interrupt_handler_devx, sh);
642                 if (sh->devx_comp)
643                         mlx5dv_devx_destroy_cmd_comp(sh->devx_comp);
644         }
645 #endif
646         pthread_mutex_destroy(&sh->intr_mutex);
647         if (sh->pd)
648                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
649         if (sh->tis)
650                 claim_zero(mlx5_devx_cmd_destroy(sh->tis));
651         if (sh->td)
652                 claim_zero(mlx5_devx_cmd_destroy(sh->td));
653         if (sh->ctx)
654                 claim_zero(mlx5_glue->close_device(sh->ctx));
655         if (sh->flow_id_pool)
656                 mlx5_flow_id_pool_release(sh->flow_id_pool);
657         rte_free(sh);
658 exit:
659         pthread_mutex_unlock(&mlx5_ibv_list_mutex);
660 }
661
662 /**
663  * Initialize DR related data within private structure.
664  * Routine checks the reference counter and does actual
665  * resources creation/initialization only if counter is zero.
666  *
667  * @param[in] priv
668  *   Pointer to the private device data structure.
669  *
670  * @return
671  *   Zero on success, positive error code otherwise.
672  */
673 static int
674 mlx5_alloc_shared_dr(struct mlx5_priv *priv)
675 {
676 #ifdef HAVE_MLX5DV_DR
677         struct mlx5_ibv_shared *sh = priv->sh;
678         int err = 0;
679         void *domain;
680
681         assert(sh);
682         if (sh->dv_refcnt) {
683                 /* Shared DV/DR structures is already initialized. */
684                 sh->dv_refcnt++;
685                 priv->dr_shared = 1;
686                 return 0;
687         }
688         /* Reference counter is zero, we should initialize structures. */
689         domain = mlx5_glue->dr_create_domain(sh->ctx,
690                                              MLX5DV_DR_DOMAIN_TYPE_NIC_RX);
691         if (!domain) {
692                 DRV_LOG(ERR, "ingress mlx5dv_dr_create_domain failed");
693                 err = errno;
694                 goto error;
695         }
696         sh->rx_domain = domain;
697         domain = mlx5_glue->dr_create_domain(sh->ctx,
698                                              MLX5DV_DR_DOMAIN_TYPE_NIC_TX);
699         if (!domain) {
700                 DRV_LOG(ERR, "egress mlx5dv_dr_create_domain failed");
701                 err = errno;
702                 goto error;
703         }
704         pthread_mutex_init(&sh->dv_mutex, NULL);
705         sh->tx_domain = domain;
706 #ifdef HAVE_MLX5DV_DR_ESWITCH
707         if (priv->config.dv_esw_en) {
708                 domain  = mlx5_glue->dr_create_domain
709                         (sh->ctx, MLX5DV_DR_DOMAIN_TYPE_FDB);
710                 if (!domain) {
711                         DRV_LOG(ERR, "FDB mlx5dv_dr_create_domain failed");
712                         err = errno;
713                         goto error;
714                 }
715                 sh->fdb_domain = domain;
716                 sh->esw_drop_action = mlx5_glue->dr_create_flow_action_drop();
717         }
718 #endif
719         sh->pop_vlan_action = mlx5_glue->dr_create_flow_action_pop_vlan();
720         sh->dv_refcnt++;
721         priv->dr_shared = 1;
722         return 0;
723
724 error:
725        /* Rollback the created objects. */
726         if (sh->rx_domain) {
727                 mlx5_glue->dr_destroy_domain(sh->rx_domain);
728                 sh->rx_domain = NULL;
729         }
730         if (sh->tx_domain) {
731                 mlx5_glue->dr_destroy_domain(sh->tx_domain);
732                 sh->tx_domain = NULL;
733         }
734         if (sh->fdb_domain) {
735                 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
736                 sh->fdb_domain = NULL;
737         }
738         if (sh->esw_drop_action) {
739                 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
740                 sh->esw_drop_action = NULL;
741         }
742         if (sh->pop_vlan_action) {
743                 mlx5_glue->destroy_flow_action(sh->pop_vlan_action);
744                 sh->pop_vlan_action = NULL;
745         }
746         return err;
747 #else
748         (void)priv;
749         return 0;
750 #endif
751 }
752
753 /**
754  * Destroy DR related data within private structure.
755  *
756  * @param[in] priv
757  *   Pointer to the private device data structure.
758  */
759 static void
760 mlx5_free_shared_dr(struct mlx5_priv *priv)
761 {
762 #ifdef HAVE_MLX5DV_DR
763         struct mlx5_ibv_shared *sh;
764
765         if (!priv->dr_shared)
766                 return;
767         priv->dr_shared = 0;
768         sh = priv->sh;
769         assert(sh);
770         assert(sh->dv_refcnt);
771         if (sh->dv_refcnt && --sh->dv_refcnt)
772                 return;
773         if (sh->rx_domain) {
774                 mlx5_glue->dr_destroy_domain(sh->rx_domain);
775                 sh->rx_domain = NULL;
776         }
777         if (sh->tx_domain) {
778                 mlx5_glue->dr_destroy_domain(sh->tx_domain);
779                 sh->tx_domain = NULL;
780         }
781 #ifdef HAVE_MLX5DV_DR_ESWITCH
782         if (sh->fdb_domain) {
783                 mlx5_glue->dr_destroy_domain(sh->fdb_domain);
784                 sh->fdb_domain = NULL;
785         }
786         if (sh->esw_drop_action) {
787                 mlx5_glue->destroy_flow_action(sh->esw_drop_action);
788                 sh->esw_drop_action = NULL;
789         }
790 #endif
791         if (sh->pop_vlan_action) {
792                 mlx5_glue->destroy_flow_action(sh->pop_vlan_action);
793                 sh->pop_vlan_action = NULL;
794         }
795         pthread_mutex_destroy(&sh->dv_mutex);
796 #else
797         (void)priv;
798 #endif
799 }
800
801 /**
802  * Initialize shared data between primary and secondary process.
803  *
804  * A memzone is reserved by primary process and secondary processes attach to
805  * the memzone.
806  *
807  * @return
808  *   0 on success, a negative errno value otherwise and rte_errno is set.
809  */
810 static int
811 mlx5_init_shared_data(void)
812 {
813         const struct rte_memzone *mz;
814         int ret = 0;
815
816         rte_spinlock_lock(&mlx5_shared_data_lock);
817         if (mlx5_shared_data == NULL) {
818                 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
819                         /* Allocate shared memory. */
820                         mz = rte_memzone_reserve(MZ_MLX5_PMD_SHARED_DATA,
821                                                  sizeof(*mlx5_shared_data),
822                                                  SOCKET_ID_ANY, 0);
823                         if (mz == NULL) {
824                                 DRV_LOG(ERR,
825                                         "Cannot allocate mlx5 shared data");
826                                 ret = -rte_errno;
827                                 goto error;
828                         }
829                         mlx5_shared_data = mz->addr;
830                         memset(mlx5_shared_data, 0, sizeof(*mlx5_shared_data));
831                         rte_spinlock_init(&mlx5_shared_data->lock);
832                 } else {
833                         /* Lookup allocated shared memory. */
834                         mz = rte_memzone_lookup(MZ_MLX5_PMD_SHARED_DATA);
835                         if (mz == NULL) {
836                                 DRV_LOG(ERR,
837                                         "Cannot attach mlx5 shared data");
838                                 ret = -rte_errno;
839                                 goto error;
840                         }
841                         mlx5_shared_data = mz->addr;
842                         memset(&mlx5_local_data, 0, sizeof(mlx5_local_data));
843                 }
844         }
845 error:
846         rte_spinlock_unlock(&mlx5_shared_data_lock);
847         return ret;
848 }
849
850 /**
851  * Retrieve integer value from environment variable.
852  *
853  * @param[in] name
854  *   Environment variable name.
855  *
856  * @return
857  *   Integer value, 0 if the variable is not set.
858  */
859 int
860 mlx5_getenv_int(const char *name)
861 {
862         const char *val = getenv(name);
863
864         if (val == NULL)
865                 return 0;
866         return atoi(val);
867 }
868
869 /**
870  * Verbs callback to allocate a memory. This function should allocate the space
871  * according to the size provided residing inside a huge page.
872  * Please note that all allocation must respect the alignment from libmlx5
873  * (i.e. currently sysconf(_SC_PAGESIZE)).
874  *
875  * @param[in] size
876  *   The size in bytes of the memory to allocate.
877  * @param[in] data
878  *   A pointer to the callback data.
879  *
880  * @return
881  *   Allocated buffer, NULL otherwise and rte_errno is set.
882  */
883 static void *
884 mlx5_alloc_verbs_buf(size_t size, void *data)
885 {
886         struct mlx5_priv *priv = data;
887         void *ret;
888         size_t alignment = sysconf(_SC_PAGESIZE);
889         unsigned int socket = SOCKET_ID_ANY;
890
891         if (priv->verbs_alloc_ctx.type == MLX5_VERBS_ALLOC_TYPE_TX_QUEUE) {
892                 const struct mlx5_txq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
893
894                 socket = ctrl->socket;
895         } else if (priv->verbs_alloc_ctx.type ==
896                    MLX5_VERBS_ALLOC_TYPE_RX_QUEUE) {
897                 const struct mlx5_rxq_ctrl *ctrl = priv->verbs_alloc_ctx.obj;
898
899                 socket = ctrl->socket;
900         }
901         assert(data != NULL);
902         ret = rte_malloc_socket(__func__, size, alignment, socket);
903         if (!ret && size)
904                 rte_errno = ENOMEM;
905         return ret;
906 }
907
908 /**
909  * Verbs callback to free a memory.
910  *
911  * @param[in] ptr
912  *   A pointer to the memory to free.
913  * @param[in] data
914  *   A pointer to the callback data.
915  */
916 static void
917 mlx5_free_verbs_buf(void *ptr, void *data __rte_unused)
918 {
919         assert(data != NULL);
920         rte_free(ptr);
921 }
922
923 /**
924  * DPDK callback to add udp tunnel port
925  *
926  * @param[in] dev
927  *   A pointer to eth_dev
928  * @param[in] udp_tunnel
929  *   A pointer to udp tunnel
930  *
931  * @return
932  *   0 on valid udp ports and tunnels, -ENOTSUP otherwise.
933  */
934 int
935 mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev __rte_unused,
936                          struct rte_eth_udp_tunnel *udp_tunnel)
937 {
938         assert(udp_tunnel != NULL);
939         if (udp_tunnel->prot_type == RTE_TUNNEL_TYPE_VXLAN &&
940             udp_tunnel->udp_port == 4789)
941                 return 0;
942         if (udp_tunnel->prot_type == RTE_TUNNEL_TYPE_VXLAN_GPE &&
943             udp_tunnel->udp_port == 4790)
944                 return 0;
945         return -ENOTSUP;
946 }
947
948 /**
949  * Initialize process private data structure.
950  *
951  * @param dev
952  *   Pointer to Ethernet device structure.
953  *
954  * @return
955  *   0 on success, a negative errno value otherwise and rte_errno is set.
956  */
957 int
958 mlx5_proc_priv_init(struct rte_eth_dev *dev)
959 {
960         struct mlx5_priv *priv = dev->data->dev_private;
961         struct mlx5_proc_priv *ppriv;
962         size_t ppriv_size;
963
964         /*
965          * UAR register table follows the process private structure. BlueFlame
966          * registers for Tx queues are stored in the table.
967          */
968         ppriv_size =
969                 sizeof(struct mlx5_proc_priv) + priv->txqs_n * sizeof(void *);
970         ppriv = rte_malloc_socket("mlx5_proc_priv", ppriv_size,
971                                   RTE_CACHE_LINE_SIZE, dev->device->numa_node);
972         if (!ppriv) {
973                 rte_errno = ENOMEM;
974                 return -rte_errno;
975         }
976         ppriv->uar_table_sz = ppriv_size;
977         dev->process_private = ppriv;
978         return 0;
979 }
980
981 /**
982  * Un-initialize process private data structure.
983  *
984  * @param dev
985  *   Pointer to Ethernet device structure.
986  */
987 static void
988 mlx5_proc_priv_uninit(struct rte_eth_dev *dev)
989 {
990         if (!dev->process_private)
991                 return;
992         rte_free(dev->process_private);
993         dev->process_private = NULL;
994 }
995
996 /**
997  * DPDK callback to close the device.
998  *
999  * Destroy all queues and objects, free memory.
1000  *
1001  * @param dev
1002  *   Pointer to Ethernet device structure.
1003  */
1004 static void
1005 mlx5_dev_close(struct rte_eth_dev *dev)
1006 {
1007         struct mlx5_priv *priv = dev->data->dev_private;
1008         unsigned int i;
1009         int ret;
1010
1011         DRV_LOG(DEBUG, "port %u closing device \"%s\"",
1012                 dev->data->port_id,
1013                 ((priv->sh->ctx != NULL) ? priv->sh->ctx->device->name : ""));
1014         /* In case mlx5_dev_stop() has not been called. */
1015         mlx5_dev_interrupt_handler_uninstall(dev);
1016         mlx5_dev_interrupt_handler_devx_uninstall(dev);
1017         mlx5_traffic_disable(dev);
1018         mlx5_flow_flush(dev, NULL);
1019         /* Prevent crashes when queues are still in use. */
1020         dev->rx_pkt_burst = removed_rx_burst;
1021         dev->tx_pkt_burst = removed_tx_burst;
1022         rte_wmb();
1023         /* Disable datapath on secondary process. */
1024         mlx5_mp_req_stop_rxtx(dev);
1025         if (priv->rxqs != NULL) {
1026                 /* XXX race condition if mlx5_rx_burst() is still running. */
1027                 usleep(1000);
1028                 for (i = 0; (i != priv->rxqs_n); ++i)
1029                         mlx5_rxq_release(dev, i);
1030                 priv->rxqs_n = 0;
1031                 priv->rxqs = NULL;
1032         }
1033         if (priv->txqs != NULL) {
1034                 /* XXX race condition if mlx5_tx_burst() is still running. */
1035                 usleep(1000);
1036                 for (i = 0; (i != priv->txqs_n); ++i)
1037                         mlx5_txq_release(dev, i);
1038                 priv->txqs_n = 0;
1039                 priv->txqs = NULL;
1040         }
1041         mlx5_proc_priv_uninit(dev);
1042         if (priv->mreg_cp_tbl)
1043                 mlx5_hlist_destroy(priv->mreg_cp_tbl, NULL, NULL);
1044         mlx5_mprq_free_mp(dev);
1045         mlx5_free_shared_dr(priv);
1046         if (priv->rss_conf.rss_key != NULL)
1047                 rte_free(priv->rss_conf.rss_key);
1048         if (priv->reta_idx != NULL)
1049                 rte_free(priv->reta_idx);
1050         if (priv->config.vf)
1051                 mlx5_nl_mac_addr_flush(dev);
1052         if (priv->nl_socket_route >= 0)
1053                 close(priv->nl_socket_route);
1054         if (priv->nl_socket_rdma >= 0)
1055                 close(priv->nl_socket_rdma);
1056         if (priv->vmwa_context)
1057                 mlx5_vlan_vmwa_exit(priv->vmwa_context);
1058         if (priv->sh) {
1059                 /*
1060                  * Free the shared context in last turn, because the cleanup
1061                  * routines above may use some shared fields, like
1062                  * mlx5_nl_mac_addr_flush() uses ibdev_path for retrieveing
1063                  * ifindex if Netlink fails.
1064                  */
1065                 mlx5_free_shared_ibctx(priv->sh);
1066                 priv->sh = NULL;
1067         }
1068         ret = mlx5_hrxq_verify(dev);
1069         if (ret)
1070                 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
1071                         dev->data->port_id);
1072         ret = mlx5_ind_table_obj_verify(dev);
1073         if (ret)
1074                 DRV_LOG(WARNING, "port %u some indirection table still remain",
1075                         dev->data->port_id);
1076         ret = mlx5_rxq_obj_verify(dev);
1077         if (ret)
1078                 DRV_LOG(WARNING, "port %u some Rx queue objects still remain",
1079                         dev->data->port_id);
1080         ret = mlx5_rxq_verify(dev);
1081         if (ret)
1082                 DRV_LOG(WARNING, "port %u some Rx queues still remain",
1083                         dev->data->port_id);
1084         ret = mlx5_txq_obj_verify(dev);
1085         if (ret)
1086                 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
1087                         dev->data->port_id);
1088         ret = mlx5_txq_verify(dev);
1089         if (ret)
1090                 DRV_LOG(WARNING, "port %u some Tx queues still remain",
1091                         dev->data->port_id);
1092         ret = mlx5_flow_verify(dev);
1093         if (ret)
1094                 DRV_LOG(WARNING, "port %u some flows still remain",
1095                         dev->data->port_id);
1096         if (priv->domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
1097                 unsigned int c = 0;
1098                 uint16_t port_id;
1099
1100                 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
1101                         struct mlx5_priv *opriv =
1102                                 rte_eth_devices[port_id].data->dev_private;
1103
1104                         if (!opriv ||
1105                             opriv->domain_id != priv->domain_id ||
1106                             &rte_eth_devices[port_id] == dev)
1107                                 continue;
1108                         ++c;
1109                         break;
1110                 }
1111                 if (!c)
1112                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1113         }
1114         memset(priv, 0, sizeof(*priv));
1115         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
1116         /*
1117          * Reset mac_addrs to NULL such that it is not freed as part of
1118          * rte_eth_dev_release_port(). mac_addrs is part of dev_private so
1119          * it is freed when dev_private is freed.
1120          */
1121         dev->data->mac_addrs = NULL;
1122 }
1123
1124 const struct eth_dev_ops mlx5_dev_ops = {
1125         .dev_configure = mlx5_dev_configure,
1126         .dev_start = mlx5_dev_start,
1127         .dev_stop = mlx5_dev_stop,
1128         .dev_set_link_down = mlx5_set_link_down,
1129         .dev_set_link_up = mlx5_set_link_up,
1130         .dev_close = mlx5_dev_close,
1131         .promiscuous_enable = mlx5_promiscuous_enable,
1132         .promiscuous_disable = mlx5_promiscuous_disable,
1133         .allmulticast_enable = mlx5_allmulticast_enable,
1134         .allmulticast_disable = mlx5_allmulticast_disable,
1135         .link_update = mlx5_link_update,
1136         .stats_get = mlx5_stats_get,
1137         .stats_reset = mlx5_stats_reset,
1138         .xstats_get = mlx5_xstats_get,
1139         .xstats_reset = mlx5_xstats_reset,
1140         .xstats_get_names = mlx5_xstats_get_names,
1141         .fw_version_get = mlx5_fw_version_get,
1142         .dev_infos_get = mlx5_dev_infos_get,
1143         .read_clock = mlx5_read_clock,
1144         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
1145         .vlan_filter_set = mlx5_vlan_filter_set,
1146         .rx_queue_setup = mlx5_rx_queue_setup,
1147         .rx_hairpin_queue_setup = mlx5_rx_hairpin_queue_setup,
1148         .tx_queue_setup = mlx5_tx_queue_setup,
1149         .tx_hairpin_queue_setup = mlx5_tx_hairpin_queue_setup,
1150         .rx_queue_release = mlx5_rx_queue_release,
1151         .tx_queue_release = mlx5_tx_queue_release,
1152         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
1153         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
1154         .mac_addr_remove = mlx5_mac_addr_remove,
1155         .mac_addr_add = mlx5_mac_addr_add,
1156         .mac_addr_set = mlx5_mac_addr_set,
1157         .set_mc_addr_list = mlx5_set_mc_addr_list,
1158         .mtu_set = mlx5_dev_set_mtu,
1159         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
1160         .vlan_offload_set = mlx5_vlan_offload_set,
1161         .reta_update = mlx5_dev_rss_reta_update,
1162         .reta_query = mlx5_dev_rss_reta_query,
1163         .rss_hash_update = mlx5_rss_hash_update,
1164         .rss_hash_conf_get = mlx5_rss_hash_conf_get,
1165         .filter_ctrl = mlx5_dev_filter_ctrl,
1166         .rx_descriptor_status = mlx5_rx_descriptor_status,
1167         .tx_descriptor_status = mlx5_tx_descriptor_status,
1168         .rx_queue_count = mlx5_rx_queue_count,
1169         .rx_queue_intr_enable = mlx5_rx_intr_enable,
1170         .rx_queue_intr_disable = mlx5_rx_intr_disable,
1171         .is_removed = mlx5_is_removed,
1172         .udp_tunnel_port_add  = mlx5_udp_tunnel_port_add,
1173         .get_module_info = mlx5_get_module_info,
1174         .get_module_eeprom = mlx5_get_module_eeprom,
1175         .hairpin_cap_get = mlx5_hairpin_cap_get,
1176         .mtr_ops_get = mlx5_flow_meter_ops_get,
1177 };
1178
1179 /* Available operations from secondary process. */
1180 static const struct eth_dev_ops mlx5_dev_sec_ops = {
1181         .stats_get = mlx5_stats_get,
1182         .stats_reset = mlx5_stats_reset,
1183         .xstats_get = mlx5_xstats_get,
1184         .xstats_reset = mlx5_xstats_reset,
1185         .xstats_get_names = mlx5_xstats_get_names,
1186         .fw_version_get = mlx5_fw_version_get,
1187         .dev_infos_get = mlx5_dev_infos_get,
1188         .rx_descriptor_status = mlx5_rx_descriptor_status,
1189         .tx_descriptor_status = mlx5_tx_descriptor_status,
1190         .get_module_info = mlx5_get_module_info,
1191         .get_module_eeprom = mlx5_get_module_eeprom,
1192 };
1193
1194 /* Available operations in flow isolated mode. */
1195 const struct eth_dev_ops mlx5_dev_ops_isolate = {
1196         .dev_configure = mlx5_dev_configure,
1197         .dev_start = mlx5_dev_start,
1198         .dev_stop = mlx5_dev_stop,
1199         .dev_set_link_down = mlx5_set_link_down,
1200         .dev_set_link_up = mlx5_set_link_up,
1201         .dev_close = mlx5_dev_close,
1202         .promiscuous_enable = mlx5_promiscuous_enable,
1203         .promiscuous_disable = mlx5_promiscuous_disable,
1204         .allmulticast_enable = mlx5_allmulticast_enable,
1205         .allmulticast_disable = mlx5_allmulticast_disable,
1206         .link_update = mlx5_link_update,
1207         .stats_get = mlx5_stats_get,
1208         .stats_reset = mlx5_stats_reset,
1209         .xstats_get = mlx5_xstats_get,
1210         .xstats_reset = mlx5_xstats_reset,
1211         .xstats_get_names = mlx5_xstats_get_names,
1212         .fw_version_get = mlx5_fw_version_get,
1213         .dev_infos_get = mlx5_dev_infos_get,
1214         .dev_supported_ptypes_get = mlx5_dev_supported_ptypes_get,
1215         .vlan_filter_set = mlx5_vlan_filter_set,
1216         .rx_queue_setup = mlx5_rx_queue_setup,
1217         .rx_hairpin_queue_setup = mlx5_rx_hairpin_queue_setup,
1218         .tx_queue_setup = mlx5_tx_queue_setup,
1219         .tx_hairpin_queue_setup = mlx5_tx_hairpin_queue_setup,
1220         .rx_queue_release = mlx5_rx_queue_release,
1221         .tx_queue_release = mlx5_tx_queue_release,
1222         .flow_ctrl_get = mlx5_dev_get_flow_ctrl,
1223         .flow_ctrl_set = mlx5_dev_set_flow_ctrl,
1224         .mac_addr_remove = mlx5_mac_addr_remove,
1225         .mac_addr_add = mlx5_mac_addr_add,
1226         .mac_addr_set = mlx5_mac_addr_set,
1227         .set_mc_addr_list = mlx5_set_mc_addr_list,
1228         .mtu_set = mlx5_dev_set_mtu,
1229         .vlan_strip_queue_set = mlx5_vlan_strip_queue_set,
1230         .vlan_offload_set = mlx5_vlan_offload_set,
1231         .filter_ctrl = mlx5_dev_filter_ctrl,
1232         .rx_descriptor_status = mlx5_rx_descriptor_status,
1233         .tx_descriptor_status = mlx5_tx_descriptor_status,
1234         .rx_queue_intr_enable = mlx5_rx_intr_enable,
1235         .rx_queue_intr_disable = mlx5_rx_intr_disable,
1236         .is_removed = mlx5_is_removed,
1237         .get_module_info = mlx5_get_module_info,
1238         .get_module_eeprom = mlx5_get_module_eeprom,
1239         .hairpin_cap_get = mlx5_hairpin_cap_get,
1240         .mtr_ops_get = mlx5_flow_meter_ops_get,
1241 };
1242
1243 /**
1244  * Verify and store value for device argument.
1245  *
1246  * @param[in] key
1247  *   Key argument to verify.
1248  * @param[in] val
1249  *   Value associated with key.
1250  * @param opaque
1251  *   User data.
1252  *
1253  * @return
1254  *   0 on success, a negative errno value otherwise and rte_errno is set.
1255  */
1256 static int
1257 mlx5_args_check(const char *key, const char *val, void *opaque)
1258 {
1259         struct mlx5_dev_config *config = opaque;
1260         unsigned long tmp;
1261
1262         /* No-op, port representors are processed in mlx5_dev_spawn(). */
1263         if (!strcmp(MLX5_REPRESENTOR, key))
1264                 return 0;
1265         errno = 0;
1266         tmp = strtoul(val, NULL, 0);
1267         if (errno) {
1268                 rte_errno = errno;
1269                 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
1270                 return -rte_errno;
1271         }
1272         if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
1273                 config->cqe_comp = !!tmp;
1274         } else if (strcmp(MLX5_RXQ_CQE_PAD_EN, key) == 0) {
1275                 config->cqe_pad = !!tmp;
1276         } else if (strcmp(MLX5_RXQ_PKT_PAD_EN, key) == 0) {
1277                 config->hw_padding = !!tmp;
1278         } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
1279                 config->mprq.enabled = !!tmp;
1280         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
1281                 config->mprq.stride_num_n = tmp;
1282         } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
1283                 config->mprq.max_memcpy_len = tmp;
1284         } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
1285                 config->mprq.min_rxqs_num = tmp;
1286         } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
1287                 DRV_LOG(WARNING, "%s: deprecated parameter,"
1288                                  " converted to txq_inline_max", key);
1289                 config->txq_inline_max = tmp;
1290         } else if (strcmp(MLX5_TXQ_INLINE_MAX, key) == 0) {
1291                 config->txq_inline_max = tmp;
1292         } else if (strcmp(MLX5_TXQ_INLINE_MIN, key) == 0) {
1293                 config->txq_inline_min = tmp;
1294         } else if (strcmp(MLX5_TXQ_INLINE_MPW, key) == 0) {
1295                 config->txq_inline_mpw = tmp;
1296         } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
1297                 config->txqs_inline = tmp;
1298         } else if (strcmp(MLX5_TXQS_MAX_VEC, key) == 0) {
1299                 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1300         } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
1301                 config->mps = !!tmp;
1302         } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
1303                 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1304         } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
1305                 DRV_LOG(WARNING, "%s: deprecated parameter,"
1306                                  " converted to txq_inline_mpw", key);
1307                 config->txq_inline_mpw = tmp;
1308         } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
1309                 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1310         } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
1311                 config->rx_vec_en = !!tmp;
1312         } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
1313                 config->l3_vxlan_en = !!tmp;
1314         } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
1315                 config->vf_nl_en = !!tmp;
1316         } else if (strcmp(MLX5_DV_ESW_EN, key) == 0) {
1317                 config->dv_esw_en = !!tmp;
1318         } else if (strcmp(MLX5_DV_FLOW_EN, key) == 0) {
1319                 config->dv_flow_en = !!tmp;
1320         } else if (strcmp(MLX5_DV_XMETA_EN, key) == 0) {
1321                 if (tmp != MLX5_XMETA_MODE_LEGACY &&
1322                     tmp != MLX5_XMETA_MODE_META16 &&
1323                     tmp != MLX5_XMETA_MODE_META32) {
1324                         DRV_LOG(WARNING, "invalid extensive "
1325                                          "metadata parameter");
1326                         rte_errno = EINVAL;
1327                         return -rte_errno;
1328                 }
1329                 config->dv_xmeta_en = tmp;
1330         } else if (strcmp(MLX5_MR_EXT_MEMSEG_EN, key) == 0) {
1331                 config->mr_ext_memseg_en = !!tmp;
1332         } else if (strcmp(MLX5_MAX_DUMP_FILES_NUM, key) == 0) {
1333                 config->max_dump_files_num = tmp;
1334         } else if (strcmp(MLX5_LRO_TIMEOUT_USEC, key) == 0) {
1335                 config->lro.timeout = tmp;
1336         } else {
1337                 DRV_LOG(WARNING, "%s: unknown parameter", key);
1338                 rte_errno = EINVAL;
1339                 return -rte_errno;
1340         }
1341         return 0;
1342 }
1343
1344 /**
1345  * Parse device parameters.
1346  *
1347  * @param config
1348  *   Pointer to device configuration structure.
1349  * @param devargs
1350  *   Device arguments structure.
1351  *
1352  * @return
1353  *   0 on success, a negative errno value otherwise and rte_errno is set.
1354  */
1355 static int
1356 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
1357 {
1358         const char **params = (const char *[]){
1359                 MLX5_RXQ_CQE_COMP_EN,
1360                 MLX5_RXQ_CQE_PAD_EN,
1361                 MLX5_RXQ_PKT_PAD_EN,
1362                 MLX5_RX_MPRQ_EN,
1363                 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
1364                 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
1365                 MLX5_RXQS_MIN_MPRQ,
1366                 MLX5_TXQ_INLINE,
1367                 MLX5_TXQ_INLINE_MIN,
1368                 MLX5_TXQ_INLINE_MAX,
1369                 MLX5_TXQ_INLINE_MPW,
1370                 MLX5_TXQS_MIN_INLINE,
1371                 MLX5_TXQS_MAX_VEC,
1372                 MLX5_TXQ_MPW_EN,
1373                 MLX5_TXQ_MPW_HDR_DSEG_EN,
1374                 MLX5_TXQ_MAX_INLINE_LEN,
1375                 MLX5_TX_VEC_EN,
1376                 MLX5_RX_VEC_EN,
1377                 MLX5_L3_VXLAN_EN,
1378                 MLX5_VF_NL_EN,
1379                 MLX5_DV_ESW_EN,
1380                 MLX5_DV_FLOW_EN,
1381                 MLX5_DV_XMETA_EN,
1382                 MLX5_MR_EXT_MEMSEG_EN,
1383                 MLX5_REPRESENTOR,
1384                 MLX5_MAX_DUMP_FILES_NUM,
1385                 MLX5_LRO_TIMEOUT_USEC,
1386                 NULL,
1387         };
1388         struct rte_kvargs *kvlist;
1389         int ret = 0;
1390         int i;
1391
1392         if (devargs == NULL)
1393                 return 0;
1394         /* Following UGLY cast is done to pass checkpatch. */
1395         kvlist = rte_kvargs_parse(devargs->args, params);
1396         if (kvlist == NULL) {
1397                 rte_errno = EINVAL;
1398                 return -rte_errno;
1399         }
1400         /* Process parameters. */
1401         for (i = 0; (params[i] != NULL); ++i) {
1402                 if (rte_kvargs_count(kvlist, params[i])) {
1403                         ret = rte_kvargs_process(kvlist, params[i],
1404                                                  mlx5_args_check, config);
1405                         if (ret) {
1406                                 rte_errno = EINVAL;
1407                                 rte_kvargs_free(kvlist);
1408                                 return -rte_errno;
1409                         }
1410                 }
1411         }
1412         rte_kvargs_free(kvlist);
1413         return 0;
1414 }
1415
1416 static struct rte_pci_driver mlx5_driver;
1417
1418 /**
1419  * PMD global initialization.
1420  *
1421  * Independent from individual device, this function initializes global
1422  * per-PMD data structures distinguishing primary and secondary processes.
1423  * Hence, each initialization is called once per a process.
1424  *
1425  * @return
1426  *   0 on success, a negative errno value otherwise and rte_errno is set.
1427  */
1428 static int
1429 mlx5_init_once(void)
1430 {
1431         struct mlx5_shared_data *sd;
1432         struct mlx5_local_data *ld = &mlx5_local_data;
1433         int ret = 0;
1434
1435         if (mlx5_init_shared_data())
1436                 return -rte_errno;
1437         sd = mlx5_shared_data;
1438         assert(sd);
1439         rte_spinlock_lock(&sd->lock);
1440         switch (rte_eal_process_type()) {
1441         case RTE_PROC_PRIMARY:
1442                 if (sd->init_done)
1443                         break;
1444                 LIST_INIT(&sd->mem_event_cb_list);
1445                 rte_rwlock_init(&sd->mem_event_rwlock);
1446                 rte_mem_event_callback_register("MLX5_MEM_EVENT_CB",
1447                                                 mlx5_mr_mem_event_cb, NULL);
1448                 ret = mlx5_mp_init_primary();
1449                 if (ret)
1450                         goto out;
1451                 sd->init_done = true;
1452                 break;
1453         case RTE_PROC_SECONDARY:
1454                 if (ld->init_done)
1455                         break;
1456                 ret = mlx5_mp_init_secondary();
1457                 if (ret)
1458                         goto out;
1459                 ++sd->secondary_cnt;
1460                 ld->init_done = true;
1461                 break;
1462         default:
1463                 break;
1464         }
1465 out:
1466         rte_spinlock_unlock(&sd->lock);
1467         return ret;
1468 }
1469
1470 /**
1471  * Configures the minimal amount of data to inline into WQE
1472  * while sending packets.
1473  *
1474  * - the txq_inline_min has the maximal priority, if this
1475  *   key is specified in devargs
1476  * - if DevX is enabled the inline mode is queried from the
1477  *   device (HCA attributes and NIC vport context if needed).
1478  * - otherwise L2 mode (18 bytes) is assumed for ConnectX-4/4LX
1479  *   and none (0 bytes) for other NICs
1480  *
1481  * @param spawn
1482  *   Verbs device parameters (name, port, switch_info) to spawn.
1483  * @param config
1484  *   Device configuration parameters.
1485  */
1486 static void
1487 mlx5_set_min_inline(struct mlx5_dev_spawn_data *spawn,
1488                     struct mlx5_dev_config *config)
1489 {
1490         if (config->txq_inline_min != MLX5_ARG_UNSET) {
1491                 /* Application defines size of inlined data explicitly. */
1492                 switch (spawn->pci_dev->id.device_id) {
1493                 case PCI_DEVICE_ID_MELLANOX_CONNECTX4:
1494                 case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1495                         if (config->txq_inline_min <
1496                                        (int)MLX5_INLINE_HSIZE_L2) {
1497                                 DRV_LOG(DEBUG,
1498                                         "txq_inline_mix aligned to minimal"
1499                                         " ConnectX-4 required value %d",
1500                                         (int)MLX5_INLINE_HSIZE_L2);
1501                                 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1502                         }
1503                         break;
1504                 }
1505                 goto exit;
1506         }
1507         if (config->hca_attr.eth_net_offloads) {
1508                 /* We have DevX enabled, inline mode queried successfully. */
1509                 switch (config->hca_attr.wqe_inline_mode) {
1510                 case MLX5_CAP_INLINE_MODE_L2:
1511                         /* outer L2 header must be inlined. */
1512                         config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1513                         goto exit;
1514                 case MLX5_CAP_INLINE_MODE_NOT_REQUIRED:
1515                         /* No inline data are required by NIC. */
1516                         config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1517                         config->hw_vlan_insert =
1518                                 config->hca_attr.wqe_vlan_insert;
1519                         DRV_LOG(DEBUG, "Tx VLAN insertion is supported");
1520                         goto exit;
1521                 case MLX5_CAP_INLINE_MODE_VPORT_CONTEXT:
1522                         /* inline mode is defined by NIC vport context. */
1523                         if (!config->hca_attr.eth_virt)
1524                                 break;
1525                         switch (config->hca_attr.vport_inline_mode) {
1526                         case MLX5_INLINE_MODE_NONE:
1527                                 config->txq_inline_min =
1528                                         MLX5_INLINE_HSIZE_NONE;
1529                                 goto exit;
1530                         case MLX5_INLINE_MODE_L2:
1531                                 config->txq_inline_min =
1532                                         MLX5_INLINE_HSIZE_L2;
1533                                 goto exit;
1534                         case MLX5_INLINE_MODE_IP:
1535                                 config->txq_inline_min =
1536                                         MLX5_INLINE_HSIZE_L3;
1537                                 goto exit;
1538                         case MLX5_INLINE_MODE_TCP_UDP:
1539                                 config->txq_inline_min =
1540                                         MLX5_INLINE_HSIZE_L4;
1541                                 goto exit;
1542                         case MLX5_INLINE_MODE_INNER_L2:
1543                                 config->txq_inline_min =
1544                                         MLX5_INLINE_HSIZE_INNER_L2;
1545                                 goto exit;
1546                         case MLX5_INLINE_MODE_INNER_IP:
1547                                 config->txq_inline_min =
1548                                         MLX5_INLINE_HSIZE_INNER_L3;
1549                                 goto exit;
1550                         case MLX5_INLINE_MODE_INNER_TCP_UDP:
1551                                 config->txq_inline_min =
1552                                         MLX5_INLINE_HSIZE_INNER_L4;
1553                                 goto exit;
1554                         }
1555                 }
1556         }
1557         /*
1558          * We get here if we are unable to deduce
1559          * inline data size with DevX. Try PCI ID
1560          * to determine old NICs.
1561          */
1562         switch (spawn->pci_dev->id.device_id) {
1563         case PCI_DEVICE_ID_MELLANOX_CONNECTX4:
1564         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1565         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LX:
1566         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1567                 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1568                 config->hw_vlan_insert = 0;
1569                 break;
1570         case PCI_DEVICE_ID_MELLANOX_CONNECTX5:
1571         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1572         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EX:
1573         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1574                 /*
1575                  * These NICs support VLAN insertion from WQE and
1576                  * report the wqe_vlan_insert flag. But there is the bug
1577                  * and PFC control may be broken, so disable feature.
1578                  */
1579                 config->hw_vlan_insert = 0;
1580                 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1581                 break;
1582         default:
1583                 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1584                 break;
1585         }
1586 exit:
1587         DRV_LOG(DEBUG, "min tx inline configured: %d", config->txq_inline_min);
1588 }
1589
1590 /**
1591  * Configures the metadata mask fields in the shared context.
1592  *
1593  * @param [in] dev
1594  *   Pointer to Ethernet device.
1595  */
1596 static void
1597 mlx5_set_metadata_mask(struct rte_eth_dev *dev)
1598 {
1599         struct mlx5_priv *priv = dev->data->dev_private;
1600         struct mlx5_ibv_shared *sh = priv->sh;
1601         uint32_t meta, mark, reg_c0;
1602
1603         reg_c0 = ~priv->vport_meta_mask;
1604         switch (priv->config.dv_xmeta_en) {
1605         case MLX5_XMETA_MODE_LEGACY:
1606                 meta = UINT32_MAX;
1607                 mark = MLX5_FLOW_MARK_MASK;
1608                 break;
1609         case MLX5_XMETA_MODE_META16:
1610                 meta = reg_c0 >> rte_bsf32(reg_c0);
1611                 mark = MLX5_FLOW_MARK_MASK;
1612                 break;
1613         case MLX5_XMETA_MODE_META32:
1614                 meta = UINT32_MAX;
1615                 mark = (reg_c0 >> rte_bsf32(reg_c0)) & MLX5_FLOW_MARK_MASK;
1616                 break;
1617         default:
1618                 meta = 0;
1619                 mark = 0;
1620                 assert(false);
1621                 break;
1622         }
1623         if (sh->dv_mark_mask && sh->dv_mark_mask != mark)
1624                 DRV_LOG(WARNING, "metadata MARK mask mismatche %08X:%08X",
1625                                  sh->dv_mark_mask, mark);
1626         else
1627                 sh->dv_mark_mask = mark;
1628         if (sh->dv_meta_mask && sh->dv_meta_mask != meta)
1629                 DRV_LOG(WARNING, "metadata META mask mismatche %08X:%08X",
1630                                  sh->dv_meta_mask, meta);
1631         else
1632                 sh->dv_meta_mask = meta;
1633         if (sh->dv_regc0_mask && sh->dv_regc0_mask != reg_c0)
1634                 DRV_LOG(WARNING, "metadata reg_c0 mask mismatche %08X:%08X",
1635                                  sh->dv_meta_mask, reg_c0);
1636         else
1637                 sh->dv_regc0_mask = reg_c0;
1638         DRV_LOG(DEBUG, "metadata mode %u", priv->config.dv_xmeta_en);
1639         DRV_LOG(DEBUG, "metadata MARK mask %08X", sh->dv_mark_mask);
1640         DRV_LOG(DEBUG, "metadata META mask %08X", sh->dv_meta_mask);
1641         DRV_LOG(DEBUG, "metadata reg_c0 mask %08X", sh->dv_regc0_mask);
1642 }
1643
1644 /**
1645  * Allocate page of door-bells and register it using DevX API.
1646  *
1647  * @param [in] dev
1648  *   Pointer to Ethernet device.
1649  *
1650  * @return
1651  *   Pointer to new page on success, NULL otherwise.
1652  */
1653 static struct mlx5_devx_dbr_page *
1654 mlx5_alloc_dbr_page(struct rte_eth_dev *dev)
1655 {
1656         struct mlx5_priv *priv = dev->data->dev_private;
1657         struct mlx5_devx_dbr_page *page;
1658
1659         /* Allocate space for door-bell page and management data. */
1660         page = rte_calloc_socket(__func__, 1, sizeof(struct mlx5_devx_dbr_page),
1661                                  RTE_CACHE_LINE_SIZE, dev->device->numa_node);
1662         if (!page) {
1663                 DRV_LOG(ERR, "port %u cannot allocate dbr page",
1664                         dev->data->port_id);
1665                 return NULL;
1666         }
1667         /* Register allocated memory. */
1668         page->umem = mlx5_glue->devx_umem_reg(priv->sh->ctx, page->dbrs,
1669                                               MLX5_DBR_PAGE_SIZE, 0);
1670         if (!page->umem) {
1671                 DRV_LOG(ERR, "port %u cannot umem reg dbr page",
1672                         dev->data->port_id);
1673                 rte_free(page);
1674                 return NULL;
1675         }
1676         return page;
1677 }
1678
1679 /**
1680  * Find the next available door-bell, allocate new page if needed.
1681  *
1682  * @param [in] dev
1683  *   Pointer to Ethernet device.
1684  * @param [out] dbr_page
1685  *   Door-bell page containing the page data.
1686  *
1687  * @return
1688  *   Door-bell address offset on success, a negative error value otherwise.
1689  */
1690 int64_t
1691 mlx5_get_dbr(struct rte_eth_dev *dev, struct mlx5_devx_dbr_page **dbr_page)
1692 {
1693         struct mlx5_priv *priv = dev->data->dev_private;
1694         struct mlx5_devx_dbr_page *page = NULL;
1695         uint32_t i, j;
1696
1697         LIST_FOREACH(page, &priv->dbrpgs, next)
1698                 if (page->dbr_count < MLX5_DBR_PER_PAGE)
1699                         break;
1700         if (!page) { /* No page with free door-bell exists. */
1701                 page = mlx5_alloc_dbr_page(dev);
1702                 if (!page) /* Failed to allocate new page. */
1703                         return (-1);
1704                 LIST_INSERT_HEAD(&priv->dbrpgs, page, next);
1705         }
1706         /* Loop to find bitmap part with clear bit. */
1707         for (i = 0;
1708              i < MLX5_DBR_BITMAP_SIZE && page->dbr_bitmap[i] == UINT64_MAX;
1709              i++)
1710                 ; /* Empty. */
1711         /* Find the first clear bit. */
1712         j = rte_bsf64(~page->dbr_bitmap[i]);
1713         assert(i < (MLX5_DBR_PER_PAGE / 64));
1714         page->dbr_bitmap[i] |= (1 << j);
1715         page->dbr_count++;
1716         *dbr_page = page;
1717         return (((i * 64) + j) * sizeof(uint64_t));
1718 }
1719
1720 /**
1721  * Release a door-bell record.
1722  *
1723  * @param [in] dev
1724  *   Pointer to Ethernet device.
1725  * @param [in] umem_id
1726  *   UMEM ID of page containing the door-bell record to release.
1727  * @param [in] offset
1728  *   Offset of door-bell record in page.
1729  *
1730  * @return
1731  *   0 on success, a negative error value otherwise.
1732  */
1733 int32_t
1734 mlx5_release_dbr(struct rte_eth_dev *dev, uint32_t umem_id, uint64_t offset)
1735 {
1736         struct mlx5_priv *priv = dev->data->dev_private;
1737         struct mlx5_devx_dbr_page *page = NULL;
1738         int ret = 0;
1739
1740         LIST_FOREACH(page, &priv->dbrpgs, next)
1741                 /* Find the page this address belongs to. */
1742                 if (page->umem->umem_id == umem_id)
1743                         break;
1744         if (!page)
1745                 return -EINVAL;
1746         page->dbr_count--;
1747         if (!page->dbr_count) {
1748                 /* Page not used, free it and remove from list. */
1749                 LIST_REMOVE(page, next);
1750                 if (page->umem)
1751                         ret = -mlx5_glue->devx_umem_dereg(page->umem);
1752                 rte_free(page);
1753         } else {
1754                 /* Mark in bitmap that this door-bell is not in use. */
1755                 offset /= MLX5_DBR_SIZE;
1756                 int i = offset / 64;
1757                 int j = offset % 64;
1758
1759                 page->dbr_bitmap[i] &= ~(1 << j);
1760         }
1761         return ret;
1762 }
1763
1764 /**
1765  * Check sibling device configurations.
1766  *
1767  * Sibling devices sharing the Infiniband device context
1768  * should have compatible configurations. This regards
1769  * representors and bonding slaves.
1770  *
1771  * @param priv
1772  *   Private device descriptor.
1773  * @param config
1774  *   Configuration of the device is going to be created.
1775  *
1776  * @return
1777  *   0 on success, EINVAL otherwise
1778  */
1779 static int
1780 mlx5_dev_check_sibling_config(struct mlx5_priv *priv,
1781                               struct mlx5_dev_config *config)
1782 {
1783         struct mlx5_ibv_shared *sh = priv->sh;
1784         struct mlx5_dev_config *sh_conf = NULL;
1785         uint16_t port_id;
1786
1787         assert(sh);
1788         /* Nothing to compare for the single/first device. */
1789         if (sh->refcnt == 1)
1790                 return 0;
1791         /* Find the device with shared context. */
1792         MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
1793                 struct mlx5_priv *opriv =
1794                         rte_eth_devices[port_id].data->dev_private;
1795
1796                 if (opriv && opriv != priv && opriv->sh == sh) {
1797                         sh_conf = &opriv->config;
1798                         break;
1799                 }
1800         }
1801         if (!sh_conf)
1802                 return 0;
1803         if (sh_conf->dv_flow_en ^ config->dv_flow_en) {
1804                 DRV_LOG(ERR, "\"dv_flow_en\" configuration mismatch"
1805                              " for shared %s context", sh->ibdev_name);
1806                 rte_errno = EINVAL;
1807                 return rte_errno;
1808         }
1809         if (sh_conf->dv_xmeta_en ^ config->dv_xmeta_en) {
1810                 DRV_LOG(ERR, "\"dv_xmeta_en\" configuration mismatch"
1811                              " for shared %s context", sh->ibdev_name);
1812                 rte_errno = EINVAL;
1813                 return rte_errno;
1814         }
1815         return 0;
1816 }
1817 /**
1818  * Spawn an Ethernet device from Verbs information.
1819  *
1820  * @param dpdk_dev
1821  *   Backing DPDK device.
1822  * @param spawn
1823  *   Verbs device parameters (name, port, switch_info) to spawn.
1824  * @param config
1825  *   Device configuration parameters.
1826  *
1827  * @return
1828  *   A valid Ethernet device object on success, NULL otherwise and rte_errno
1829  *   is set. The following errors are defined:
1830  *
1831  *   EBUSY: device is not supposed to be spawned.
1832  *   EEXIST: device is already spawned
1833  */
1834 static struct rte_eth_dev *
1835 mlx5_dev_spawn(struct rte_device *dpdk_dev,
1836                struct mlx5_dev_spawn_data *spawn,
1837                struct mlx5_dev_config config)
1838 {
1839         const struct mlx5_switch_info *switch_info = &spawn->info;
1840         struct mlx5_ibv_shared *sh = NULL;
1841         struct ibv_port_attr port_attr;
1842         struct mlx5dv_context dv_attr = { .comp_mask = 0 };
1843         struct rte_eth_dev *eth_dev = NULL;
1844         struct mlx5_priv *priv = NULL;
1845         int err = 0;
1846         unsigned int hw_padding = 0;
1847         unsigned int mps;
1848         unsigned int cqe_comp;
1849         unsigned int cqe_pad = 0;
1850         unsigned int tunnel_en = 0;
1851         unsigned int mpls_en = 0;
1852         unsigned int swp = 0;
1853         unsigned int mprq = 0;
1854         unsigned int mprq_min_stride_size_n = 0;
1855         unsigned int mprq_max_stride_size_n = 0;
1856         unsigned int mprq_min_stride_num_n = 0;
1857         unsigned int mprq_max_stride_num_n = 0;
1858         struct rte_ether_addr mac;
1859         char name[RTE_ETH_NAME_MAX_LEN];
1860         int own_domain_id = 0;
1861         uint16_t port_id;
1862         unsigned int i;
1863 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
1864         struct mlx5dv_devx_port devx_port = { .comp_mask = 0 };
1865 #endif
1866
1867         /* Determine if this port representor is supposed to be spawned. */
1868         if (switch_info->representor && dpdk_dev->devargs) {
1869                 struct rte_eth_devargs eth_da;
1870
1871                 err = rte_eth_devargs_parse(dpdk_dev->devargs->args, &eth_da);
1872                 if (err) {
1873                         rte_errno = -err;
1874                         DRV_LOG(ERR, "failed to process device arguments: %s",
1875                                 strerror(rte_errno));
1876                         return NULL;
1877                 }
1878                 for (i = 0; i < eth_da.nb_representor_ports; ++i)
1879                         if (eth_da.representor_ports[i] ==
1880                             (uint16_t)switch_info->port_name)
1881                                 break;
1882                 if (i == eth_da.nb_representor_ports) {
1883                         rte_errno = EBUSY;
1884                         return NULL;
1885                 }
1886         }
1887         /* Build device name. */
1888         if (spawn->pf_bond <  0) {
1889                 /* Single device. */
1890                 if (!switch_info->representor)
1891                         strlcpy(name, dpdk_dev->name, sizeof(name));
1892                 else
1893                         snprintf(name, sizeof(name), "%s_representor_%u",
1894                                  dpdk_dev->name, switch_info->port_name);
1895         } else {
1896                 /* Bonding device. */
1897                 if (!switch_info->representor)
1898                         snprintf(name, sizeof(name), "%s_%s",
1899                                  dpdk_dev->name, spawn->ibv_dev->name);
1900                 else
1901                         snprintf(name, sizeof(name), "%s_%s_representor_%u",
1902                                  dpdk_dev->name, spawn->ibv_dev->name,
1903                                  switch_info->port_name);
1904         }
1905         /* check if the device is already spawned */
1906         if (rte_eth_dev_get_port_by_name(name, &port_id) == 0) {
1907                 rte_errno = EEXIST;
1908                 return NULL;
1909         }
1910         DRV_LOG(DEBUG, "naming Ethernet device \"%s\"", name);
1911         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
1912                 eth_dev = rte_eth_dev_attach_secondary(name);
1913                 if (eth_dev == NULL) {
1914                         DRV_LOG(ERR, "can not attach rte ethdev");
1915                         rte_errno = ENOMEM;
1916                         return NULL;
1917                 }
1918                 eth_dev->device = dpdk_dev;
1919                 eth_dev->dev_ops = &mlx5_dev_sec_ops;
1920                 err = mlx5_proc_priv_init(eth_dev);
1921                 if (err)
1922                         return NULL;
1923                 /* Receive command fd from primary process */
1924                 err = mlx5_mp_req_verbs_cmd_fd(eth_dev);
1925                 if (err < 0)
1926                         return NULL;
1927                 /* Remap UAR for Tx queues. */
1928                 err = mlx5_tx_uar_init_secondary(eth_dev, err);
1929                 if (err)
1930                         return NULL;
1931                 /*
1932                  * Ethdev pointer is still required as input since
1933                  * the primary device is not accessible from the
1934                  * secondary process.
1935                  */
1936                 eth_dev->rx_pkt_burst = mlx5_select_rx_function(eth_dev);
1937                 eth_dev->tx_pkt_burst = mlx5_select_tx_function(eth_dev);
1938                 return eth_dev;
1939         }
1940         sh = mlx5_alloc_shared_ibctx(spawn);
1941         if (!sh)
1942                 return NULL;
1943         config.devx = sh->devx;
1944 #ifdef HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR
1945         config.dest_tir = 1;
1946 #endif
1947 #ifdef HAVE_IBV_MLX5_MOD_SWP
1948         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_SWP;
1949 #endif
1950         /*
1951          * Multi-packet send is supported by ConnectX-4 Lx PF as well
1952          * as all ConnectX-5 devices.
1953          */
1954 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
1955         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS;
1956 #endif
1957 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1958         dv_attr.comp_mask |= MLX5DV_CONTEXT_MASK_STRIDING_RQ;
1959 #endif
1960         mlx5_glue->dv_query_device(sh->ctx, &dv_attr);
1961         if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_MPW_ALLOWED) {
1962                 if (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_ENHANCED_MPW) {
1963                         DRV_LOG(DEBUG, "enhanced MPW is supported");
1964                         mps = MLX5_MPW_ENHANCED;
1965                 } else {
1966                         DRV_LOG(DEBUG, "MPW is supported");
1967                         mps = MLX5_MPW;
1968                 }
1969         } else {
1970                 DRV_LOG(DEBUG, "MPW isn't supported");
1971                 mps = MLX5_MPW_DISABLED;
1972         }
1973 #ifdef HAVE_IBV_MLX5_MOD_SWP
1974         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_SWP)
1975                 swp = dv_attr.sw_parsing_caps.sw_parsing_offloads;
1976         DRV_LOG(DEBUG, "SWP support: %u", swp);
1977 #endif
1978         config.swp = !!swp;
1979 #ifdef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
1980         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_STRIDING_RQ) {
1981                 struct mlx5dv_striding_rq_caps mprq_caps =
1982                         dv_attr.striding_rq_caps;
1983
1984                 DRV_LOG(DEBUG, "\tmin_single_stride_log_num_of_bytes: %d",
1985                         mprq_caps.min_single_stride_log_num_of_bytes);
1986                 DRV_LOG(DEBUG, "\tmax_single_stride_log_num_of_bytes: %d",
1987                         mprq_caps.max_single_stride_log_num_of_bytes);
1988                 DRV_LOG(DEBUG, "\tmin_single_wqe_log_num_of_strides: %d",
1989                         mprq_caps.min_single_wqe_log_num_of_strides);
1990                 DRV_LOG(DEBUG, "\tmax_single_wqe_log_num_of_strides: %d",
1991                         mprq_caps.max_single_wqe_log_num_of_strides);
1992                 DRV_LOG(DEBUG, "\tsupported_qpts: %d",
1993                         mprq_caps.supported_qpts);
1994                 DRV_LOG(DEBUG, "device supports Multi-Packet RQ");
1995                 mprq = 1;
1996                 mprq_min_stride_size_n =
1997                         mprq_caps.min_single_stride_log_num_of_bytes;
1998                 mprq_max_stride_size_n =
1999                         mprq_caps.max_single_stride_log_num_of_bytes;
2000                 mprq_min_stride_num_n =
2001                         mprq_caps.min_single_wqe_log_num_of_strides;
2002                 mprq_max_stride_num_n =
2003                         mprq_caps.max_single_wqe_log_num_of_strides;
2004                 config.mprq.stride_num_n = RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
2005                                                    mprq_min_stride_num_n);
2006         }
2007 #endif
2008         if (RTE_CACHE_LINE_SIZE == 128 &&
2009             !(dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_COMP))
2010                 cqe_comp = 0;
2011         else
2012                 cqe_comp = 1;
2013         config.cqe_comp = cqe_comp;
2014 #ifdef HAVE_IBV_MLX5_MOD_CQE_128B_PAD
2015         /* Whether device supports 128B Rx CQE padding. */
2016         cqe_pad = RTE_CACHE_LINE_SIZE == 128 &&
2017                   (dv_attr.flags & MLX5DV_CONTEXT_FLAGS_CQE_128B_PAD);
2018 #endif
2019 #ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
2020         if (dv_attr.comp_mask & MLX5DV_CONTEXT_MASK_TUNNEL_OFFLOADS) {
2021                 tunnel_en = ((dv_attr.tunnel_offloads_caps &
2022                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_VXLAN) &&
2023                              (dv_attr.tunnel_offloads_caps &
2024                               MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_GRE));
2025         }
2026         DRV_LOG(DEBUG, "tunnel offloading is %ssupported",
2027                 tunnel_en ? "" : "not ");
2028 #else
2029         DRV_LOG(WARNING,
2030                 "tunnel offloading disabled due to old OFED/rdma-core version");
2031 #endif
2032         config.tunnel_en = tunnel_en;
2033 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
2034         mpls_en = ((dv_attr.tunnel_offloads_caps &
2035                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_GRE) &&
2036                    (dv_attr.tunnel_offloads_caps &
2037                     MLX5DV_RAW_PACKET_CAP_TUNNELED_OFFLOAD_CW_MPLS_OVER_UDP));
2038         DRV_LOG(DEBUG, "MPLS over GRE/UDP tunnel offloading is %ssupported",
2039                 mpls_en ? "" : "not ");
2040 #else
2041         DRV_LOG(WARNING, "MPLS over GRE/UDP tunnel offloading disabled due to"
2042                 " old OFED/rdma-core version or firmware configuration");
2043 #endif
2044         config.mpls_en = mpls_en;
2045         /* Check port status. */
2046         err = mlx5_glue->query_port(sh->ctx, spawn->ibv_port, &port_attr);
2047         if (err) {
2048                 DRV_LOG(ERR, "port query failed: %s", strerror(err));
2049                 goto error;
2050         }
2051         if (port_attr.link_layer != IBV_LINK_LAYER_ETHERNET) {
2052                 DRV_LOG(ERR, "port is not configured in Ethernet mode");
2053                 err = EINVAL;
2054                 goto error;
2055         }
2056         if (port_attr.state != IBV_PORT_ACTIVE)
2057                 DRV_LOG(DEBUG, "port is not active: \"%s\" (%d)",
2058                         mlx5_glue->port_state_str(port_attr.state),
2059                         port_attr.state);
2060         /* Allocate private eth device data. */
2061         priv = rte_zmalloc("ethdev private structure",
2062                            sizeof(*priv),
2063                            RTE_CACHE_LINE_SIZE);
2064         if (priv == NULL) {
2065                 DRV_LOG(ERR, "priv allocation failure");
2066                 err = ENOMEM;
2067                 goto error;
2068         }
2069         priv->sh = sh;
2070         priv->ibv_port = spawn->ibv_port;
2071         priv->pci_dev = spawn->pci_dev;
2072         priv->mtu = RTE_ETHER_MTU;
2073 #ifndef RTE_ARCH_64
2074         /* Initialize UAR access locks for 32bit implementations. */
2075         rte_spinlock_init(&priv->uar_lock_cq);
2076         for (i = 0; i < MLX5_UAR_PAGE_NUM_MAX; i++)
2077                 rte_spinlock_init(&priv->uar_lock[i]);
2078 #endif
2079         /* Some internal functions rely on Netlink sockets, open them now. */
2080         priv->nl_socket_rdma = mlx5_nl_init(NETLINK_RDMA);
2081         priv->nl_socket_route = mlx5_nl_init(NETLINK_ROUTE);
2082         priv->nl_sn = 0;
2083         priv->representor = !!switch_info->representor;
2084         priv->master = !!switch_info->master;
2085         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
2086         priv->vport_meta_tag = 0;
2087         priv->vport_meta_mask = 0;
2088         priv->pf_bond = spawn->pf_bond;
2089 #ifdef HAVE_MLX5DV_DR_DEVX_PORT
2090         /*
2091          * The DevX port query API is implemented. E-Switch may use
2092          * either vport or reg_c[0] metadata register to match on
2093          * vport index. The engaged part of metadata register is
2094          * defined by mask.
2095          */
2096         if (switch_info->representor || switch_info->master) {
2097                 devx_port.comp_mask = MLX5DV_DEVX_PORT_VPORT |
2098                                       MLX5DV_DEVX_PORT_MATCH_REG_C_0;
2099                 err = mlx5_glue->devx_port_query(sh->ctx, spawn->ibv_port,
2100                                                  &devx_port);
2101                 if (err) {
2102                         DRV_LOG(WARNING,
2103                                 "can't query devx port %d on device %s",
2104                                 spawn->ibv_port, spawn->ibv_dev->name);
2105                         devx_port.comp_mask = 0;
2106                 }
2107         }
2108         if (devx_port.comp_mask & MLX5DV_DEVX_PORT_MATCH_REG_C_0) {
2109                 priv->vport_meta_tag = devx_port.reg_c_0.value;
2110                 priv->vport_meta_mask = devx_port.reg_c_0.mask;
2111                 if (!priv->vport_meta_mask) {
2112                         DRV_LOG(ERR, "vport zero mask for port %d"
2113                                      " on bonding device %s",
2114                                      spawn->ibv_port, spawn->ibv_dev->name);
2115                         err = ENOTSUP;
2116                         goto error;
2117                 }
2118                 if (priv->vport_meta_tag & ~priv->vport_meta_mask) {
2119                         DRV_LOG(ERR, "invalid vport tag for port %d"
2120                                      " on bonding device %s",
2121                                      spawn->ibv_port, spawn->ibv_dev->name);
2122                         err = ENOTSUP;
2123                         goto error;
2124                 }
2125         } else if (devx_port.comp_mask & MLX5DV_DEVX_PORT_VPORT) {
2126                 priv->vport_id = devx_port.vport_num;
2127         } else if (spawn->pf_bond >= 0) {
2128                 DRV_LOG(ERR, "can't deduce vport index for port %d"
2129                              " on bonding device %s",
2130                              spawn->ibv_port, spawn->ibv_dev->name);
2131                 err = ENOTSUP;
2132                 goto error;
2133         } else {
2134                 /* Suppose vport index in compatible way. */
2135                 priv->vport_id = switch_info->representor ?
2136                                  switch_info->port_name + 1 : -1;
2137         }
2138 #else
2139         /*
2140          * Kernel/rdma_core support single E-Switch per PF configurations
2141          * only and vport_id field contains the vport index for
2142          * associated VF, which is deduced from representor port name.
2143          * For example, let's have the IB device port 10, it has
2144          * attached network device eth0, which has port name attribute
2145          * pf0vf2, we can deduce the VF number as 2, and set vport index
2146          * as 3 (2+1). This assigning schema should be changed if the
2147          * multiple E-Switch instances per PF configurations or/and PCI
2148          * subfunctions are added.
2149          */
2150         priv->vport_id = switch_info->representor ?
2151                          switch_info->port_name + 1 : -1;
2152 #endif
2153         /* representor_id field keeps the unmodified VF index. */
2154         priv->representor_id = switch_info->representor ?
2155                                switch_info->port_name : -1;
2156         /*
2157          * Look for sibling devices in order to reuse their switch domain
2158          * if any, otherwise allocate one.
2159          */
2160         MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
2161                 const struct mlx5_priv *opriv =
2162                         rte_eth_devices[port_id].data->dev_private;
2163
2164                 if (!opriv ||
2165                     opriv->sh != priv->sh ||
2166                         opriv->domain_id ==
2167                         RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID)
2168                         continue;
2169                 priv->domain_id = opriv->domain_id;
2170                 break;
2171         }
2172         if (priv->domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
2173                 err = rte_eth_switch_domain_alloc(&priv->domain_id);
2174                 if (err) {
2175                         err = rte_errno;
2176                         DRV_LOG(ERR, "unable to allocate switch domain: %s",
2177                                 strerror(rte_errno));
2178                         goto error;
2179                 }
2180                 own_domain_id = 1;
2181         }
2182         err = mlx5_args(&config, dpdk_dev->devargs);
2183         if (err) {
2184                 err = rte_errno;
2185                 DRV_LOG(ERR, "failed to process device arguments: %s",
2186                         strerror(rte_errno));
2187                 goto error;
2188         }
2189         err = mlx5_dev_check_sibling_config(priv, &config);
2190         if (err)
2191                 goto error;
2192         config.hw_csum = !!(sh->device_attr.device_cap_flags_ex &
2193                             IBV_DEVICE_RAW_IP_CSUM);
2194         DRV_LOG(DEBUG, "checksum offloading is %ssupported",
2195                 (config.hw_csum ? "" : "not "));
2196 #if !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) && \
2197         !defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
2198         DRV_LOG(DEBUG, "counters are not supported");
2199 #endif
2200 #ifndef HAVE_IBV_FLOW_DV_SUPPORT
2201         if (config.dv_flow_en) {
2202                 DRV_LOG(WARNING, "DV flow is not supported");
2203                 config.dv_flow_en = 0;
2204         }
2205 #endif
2206         config.ind_table_max_size =
2207                 sh->device_attr.rss_caps.max_rwq_indirection_table_size;
2208         /*
2209          * Remove this check once DPDK supports larger/variable
2210          * indirection tables.
2211          */
2212         if (config.ind_table_max_size > (unsigned int)ETH_RSS_RETA_SIZE_512)
2213                 config.ind_table_max_size = ETH_RSS_RETA_SIZE_512;
2214         DRV_LOG(DEBUG, "maximum Rx indirection table size is %u",
2215                 config.ind_table_max_size);
2216         config.hw_vlan_strip = !!(sh->device_attr.raw_packet_caps &
2217                                   IBV_RAW_PACKET_CAP_CVLAN_STRIPPING);
2218         DRV_LOG(DEBUG, "VLAN stripping is %ssupported",
2219                 (config.hw_vlan_strip ? "" : "not "));
2220         config.hw_fcs_strip = !!(sh->device_attr.raw_packet_caps &
2221                                  IBV_RAW_PACKET_CAP_SCATTER_FCS);
2222         DRV_LOG(DEBUG, "FCS stripping configuration is %ssupported",
2223                 (config.hw_fcs_strip ? "" : "not "));
2224 #if defined(HAVE_IBV_WQ_FLAG_RX_END_PADDING)
2225         hw_padding = !!sh->device_attr.rx_pad_end_addr_align;
2226 #elif defined(HAVE_IBV_WQ_FLAGS_PCI_WRITE_END_PADDING)
2227         hw_padding = !!(sh->device_attr.device_cap_flags_ex &
2228                         IBV_DEVICE_PCI_WRITE_END_PADDING);
2229 #endif
2230         if (config.hw_padding && !hw_padding) {
2231                 DRV_LOG(DEBUG, "Rx end alignment padding isn't supported");
2232                 config.hw_padding = 0;
2233         } else if (config.hw_padding) {
2234                 DRV_LOG(DEBUG, "Rx end alignment padding is enabled");
2235         }
2236         config.tso = (sh->device_attr.tso_caps.max_tso > 0 &&
2237                       (sh->device_attr.tso_caps.supported_qpts &
2238                        (1 << IBV_QPT_RAW_PACKET)));
2239         if (config.tso)
2240                 config.tso_max_payload_sz = sh->device_attr.tso_caps.max_tso;
2241         /*
2242          * MPW is disabled by default, while the Enhanced MPW is enabled
2243          * by default.
2244          */
2245         if (config.mps == MLX5_ARG_UNSET)
2246                 config.mps = (mps == MLX5_MPW_ENHANCED) ? MLX5_MPW_ENHANCED :
2247                                                           MLX5_MPW_DISABLED;
2248         else
2249                 config.mps = config.mps ? mps : MLX5_MPW_DISABLED;
2250         DRV_LOG(INFO, "%sMPS is %s",
2251                 config.mps == MLX5_MPW_ENHANCED ? "enhanced " : "",
2252                 config.mps != MLX5_MPW_DISABLED ? "enabled" : "disabled");
2253         if (config.cqe_comp && !cqe_comp) {
2254                 DRV_LOG(WARNING, "Rx CQE compression isn't supported");
2255                 config.cqe_comp = 0;
2256         }
2257         if (config.cqe_pad && !cqe_pad) {
2258                 DRV_LOG(WARNING, "Rx CQE padding isn't supported");
2259                 config.cqe_pad = 0;
2260         } else if (config.cqe_pad) {
2261                 DRV_LOG(INFO, "Rx CQE padding is enabled");
2262         }
2263         if (config.devx) {
2264                 priv->counter_fallback = 0;
2265                 err = mlx5_devx_cmd_query_hca_attr(sh->ctx, &config.hca_attr);
2266                 if (err) {
2267                         err = -err;
2268                         goto error;
2269                 }
2270                 if (!config.hca_attr.flow_counters_dump)
2271                         priv->counter_fallback = 1;
2272 #ifndef HAVE_IBV_DEVX_ASYNC
2273                 priv->counter_fallback = 1;
2274 #endif
2275                 if (priv->counter_fallback)
2276                         DRV_LOG(INFO, "Use fall-back DV counter management");
2277                 /* Check for LRO support. */
2278                 if (config.dest_tir && config.hca_attr.lro_cap &&
2279                     config.dv_flow_en) {
2280                         /* TBD check tunnel lro caps. */
2281                         config.lro.supported = config.hca_attr.lro_cap;
2282                         DRV_LOG(DEBUG, "Device supports LRO");
2283                         /*
2284                          * If LRO timeout is not configured by application,
2285                          * use the minimal supported value.
2286                          */
2287                         if (!config.lro.timeout)
2288                                 config.lro.timeout =
2289                                 config.hca_attr.lro_timer_supported_periods[0];
2290                         DRV_LOG(DEBUG, "LRO session timeout set to %d usec",
2291                                 config.lro.timeout);
2292                 }
2293 #if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER)
2294                 if (config.hca_attr.qos.sup && config.hca_attr.qos.srtcm_sup &&
2295                     config.dv_flow_en) {
2296                         priv->mtr_en = 1;
2297                 }
2298 #endif
2299         }
2300         if (config.mprq.enabled && mprq) {
2301                 if (config.mprq.stride_num_n > mprq_max_stride_num_n ||
2302                     config.mprq.stride_num_n < mprq_min_stride_num_n) {
2303                         config.mprq.stride_num_n =
2304                                 RTE_MAX(MLX5_MPRQ_STRIDE_NUM_N,
2305                                         mprq_min_stride_num_n);
2306                         DRV_LOG(WARNING,
2307                                 "the number of strides"
2308                                 " for Multi-Packet RQ is out of range,"
2309                                 " setting default value (%u)",
2310                                 1 << config.mprq.stride_num_n);
2311                 }
2312                 config.mprq.min_stride_size_n = mprq_min_stride_size_n;
2313                 config.mprq.max_stride_size_n = mprq_max_stride_size_n;
2314         } else if (config.mprq.enabled && !mprq) {
2315                 DRV_LOG(WARNING, "Multi-Packet RQ isn't supported");
2316                 config.mprq.enabled = 0;
2317         }
2318         if (config.max_dump_files_num == 0)
2319                 config.max_dump_files_num = 128;
2320         eth_dev = rte_eth_dev_allocate(name);
2321         if (eth_dev == NULL) {
2322                 DRV_LOG(ERR, "can not allocate rte ethdev");
2323                 err = ENOMEM;
2324                 goto error;
2325         }
2326         /* Flag to call rte_eth_dev_release_port() in rte_eth_dev_close(). */
2327         eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
2328         if (priv->representor) {
2329                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
2330                 eth_dev->data->representor_id = priv->representor_id;
2331         }
2332         /*
2333          * Store associated network device interface index. This index
2334          * is permanent throughout the lifetime of device. So, we may store
2335          * the ifindex here and use the cached value further.
2336          */
2337         assert(spawn->ifindex);
2338         priv->if_index = spawn->ifindex;
2339         eth_dev->data->dev_private = priv;
2340         priv->dev_data = eth_dev->data;
2341         eth_dev->data->mac_addrs = priv->mac;
2342         eth_dev->device = dpdk_dev;
2343         /* Configure the first MAC address by default. */
2344         if (mlx5_get_mac(eth_dev, &mac.addr_bytes)) {
2345                 DRV_LOG(ERR,
2346                         "port %u cannot get MAC address, is mlx5_en"
2347                         " loaded? (errno: %s)",
2348                         eth_dev->data->port_id, strerror(rte_errno));
2349                 err = ENODEV;
2350                 goto error;
2351         }
2352         DRV_LOG(INFO,
2353                 "port %u MAC address is %02x:%02x:%02x:%02x:%02x:%02x",
2354                 eth_dev->data->port_id,
2355                 mac.addr_bytes[0], mac.addr_bytes[1],
2356                 mac.addr_bytes[2], mac.addr_bytes[3],
2357                 mac.addr_bytes[4], mac.addr_bytes[5]);
2358 #ifndef NDEBUG
2359         {
2360                 char ifname[IF_NAMESIZE];
2361
2362                 if (mlx5_get_ifname(eth_dev, &ifname) == 0)
2363                         DRV_LOG(DEBUG, "port %u ifname is \"%s\"",
2364                                 eth_dev->data->port_id, ifname);
2365                 else
2366                         DRV_LOG(DEBUG, "port %u ifname is unknown",
2367                                 eth_dev->data->port_id);
2368         }
2369 #endif
2370         /* Get actual MTU if possible. */
2371         err = mlx5_get_mtu(eth_dev, &priv->mtu);
2372         if (err) {
2373                 err = rte_errno;
2374                 goto error;
2375         }
2376         DRV_LOG(DEBUG, "port %u MTU is %u", eth_dev->data->port_id,
2377                 priv->mtu);
2378         /* Initialize burst functions to prevent crashes before link-up. */
2379         eth_dev->rx_pkt_burst = removed_rx_burst;
2380         eth_dev->tx_pkt_burst = removed_tx_burst;
2381         eth_dev->dev_ops = &mlx5_dev_ops;
2382         /* Register MAC address. */
2383         claim_zero(mlx5_mac_addr_add(eth_dev, &mac, 0, 0));
2384         if (config.vf && config.vf_nl_en)
2385                 mlx5_nl_mac_addr_sync(eth_dev);
2386         TAILQ_INIT(&priv->flows);
2387         TAILQ_INIT(&priv->ctrl_flows);
2388         /* Hint libmlx5 to use PMD allocator for data plane resources */
2389         struct mlx5dv_ctx_allocators alctr = {
2390                 .alloc = &mlx5_alloc_verbs_buf,
2391                 .free = &mlx5_free_verbs_buf,
2392                 .data = priv,
2393         };
2394         mlx5_glue->dv_set_context_attr(sh->ctx,
2395                                        MLX5DV_CTX_ATTR_BUF_ALLOCATORS,
2396                                        (void *)((uintptr_t)&alctr));
2397         /* Bring Ethernet device up. */
2398         DRV_LOG(DEBUG, "port %u forcing Ethernet interface up",
2399                 eth_dev->data->port_id);
2400         mlx5_set_link_up(eth_dev);
2401         /*
2402          * Even though the interrupt handler is not installed yet,
2403          * interrupts will still trigger on the async_fd from
2404          * Verbs context returned by ibv_open_device().
2405          */
2406         mlx5_link_update(eth_dev, 0);
2407 #ifdef HAVE_MLX5DV_DR_ESWITCH
2408         if (!(config.hca_attr.eswitch_manager && config.dv_flow_en &&
2409               (switch_info->representor || switch_info->master)))
2410                 config.dv_esw_en = 0;
2411 #else
2412         config.dv_esw_en = 0;
2413 #endif
2414         /* Detect minimal data bytes to inline. */
2415         mlx5_set_min_inline(spawn, &config);
2416         /* Store device configuration on private structure. */
2417         priv->config = config;
2418         /* Create context for virtual machine VLAN workaround. */
2419         priv->vmwa_context = mlx5_vlan_vmwa_init(eth_dev, spawn->ifindex);
2420         if (config.dv_flow_en) {
2421                 err = mlx5_alloc_shared_dr(priv);
2422                 if (err)
2423                         goto error;
2424                 priv->qrss_id_pool = mlx5_flow_id_pool_alloc();
2425                 if (!priv->qrss_id_pool) {
2426                         DRV_LOG(ERR, "can't create flow id pool");
2427                         err = ENOMEM;
2428                         goto error;
2429                 }
2430         }
2431         /* Supported Verbs flow priority number detection. */
2432         err = mlx5_flow_discover_priorities(eth_dev);
2433         if (err < 0) {
2434                 err = -err;
2435                 goto error;
2436         }
2437         priv->config.flow_prio = err;
2438         if (!priv->config.dv_esw_en &&
2439             priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
2440                 DRV_LOG(WARNING, "metadata mode %u is not supported "
2441                                  "(no E-Switch)", priv->config.dv_xmeta_en);
2442                 priv->config.dv_xmeta_en = MLX5_XMETA_MODE_LEGACY;
2443         }
2444         mlx5_set_metadata_mask(eth_dev);
2445         if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
2446             !priv->sh->dv_regc0_mask) {
2447                 DRV_LOG(ERR, "metadata mode %u is not supported "
2448                              "(no metadata reg_c[0] is available)",
2449                              priv->config.dv_xmeta_en);
2450                         err = ENOTSUP;
2451                         goto error;
2452         }
2453         /* Query availibility of metadata reg_c's. */
2454         err = mlx5_flow_discover_mreg_c(eth_dev);
2455         if (err < 0) {
2456                 err = -err;
2457                 goto error;
2458         }
2459         if (!mlx5_flow_ext_mreg_supported(eth_dev)) {
2460                 DRV_LOG(DEBUG,
2461                         "port %u extensive metadata register is not supported",
2462                         eth_dev->data->port_id);
2463                 if (priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY) {
2464                         DRV_LOG(ERR, "metadata mode %u is not supported "
2465                                      "(no metadata registers available)",
2466                                      priv->config.dv_xmeta_en);
2467                         err = ENOTSUP;
2468                         goto error;
2469                 }
2470         }
2471         if (priv->config.dv_flow_en &&
2472             priv->config.dv_xmeta_en != MLX5_XMETA_MODE_LEGACY &&
2473             mlx5_flow_ext_mreg_supported(eth_dev) &&
2474             priv->sh->dv_regc0_mask) {
2475                 priv->mreg_cp_tbl = mlx5_hlist_create(MLX5_FLOW_MREG_HNAME,
2476                                                       MLX5_FLOW_MREG_HTABLE_SZ);
2477                 if (!priv->mreg_cp_tbl) {
2478                         err = ENOMEM;
2479                         goto error;
2480                 }
2481         }
2482         return eth_dev;
2483 error:
2484         if (priv) {
2485                 if (priv->mreg_cp_tbl)
2486                         mlx5_hlist_destroy(priv->mreg_cp_tbl, NULL, NULL);
2487                 if (priv->sh)
2488                         mlx5_free_shared_dr(priv);
2489                 if (priv->nl_socket_route >= 0)
2490                         close(priv->nl_socket_route);
2491                 if (priv->nl_socket_rdma >= 0)
2492                         close(priv->nl_socket_rdma);
2493                 if (priv->vmwa_context)
2494                         mlx5_vlan_vmwa_exit(priv->vmwa_context);
2495                 if (priv->qrss_id_pool)
2496                         mlx5_flow_id_pool_release(priv->qrss_id_pool);
2497                 if (own_domain_id)
2498                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
2499                 rte_free(priv);
2500                 if (eth_dev != NULL)
2501                         eth_dev->data->dev_private = NULL;
2502         }
2503         if (eth_dev != NULL) {
2504                 /* mac_addrs must not be freed alone because part of dev_private */
2505                 eth_dev->data->mac_addrs = NULL;
2506                 rte_eth_dev_release_port(eth_dev);
2507         }
2508         if (sh)
2509                 mlx5_free_shared_ibctx(sh);
2510         assert(err > 0);
2511         rte_errno = err;
2512         return NULL;
2513 }
2514
2515 /**
2516  * Comparison callback to sort device data.
2517  *
2518  * This is meant to be used with qsort().
2519  *
2520  * @param a[in]
2521  *   Pointer to pointer to first data object.
2522  * @param b[in]
2523  *   Pointer to pointer to second data object.
2524  *
2525  * @return
2526  *   0 if both objects are equal, less than 0 if the first argument is less
2527  *   than the second, greater than 0 otherwise.
2528  */
2529 static int
2530 mlx5_dev_spawn_data_cmp(const void *a, const void *b)
2531 {
2532         const struct mlx5_switch_info *si_a =
2533                 &((const struct mlx5_dev_spawn_data *)a)->info;
2534         const struct mlx5_switch_info *si_b =
2535                 &((const struct mlx5_dev_spawn_data *)b)->info;
2536         int ret;
2537
2538         /* Master device first. */
2539         ret = si_b->master - si_a->master;
2540         if (ret)
2541                 return ret;
2542         /* Then representor devices. */
2543         ret = si_b->representor - si_a->representor;
2544         if (ret)
2545                 return ret;
2546         /* Unidentified devices come last in no specific order. */
2547         if (!si_a->representor)
2548                 return 0;
2549         /* Order representors by name. */
2550         return si_a->port_name - si_b->port_name;
2551 }
2552
2553 /**
2554  * Match PCI information for possible slaves of bonding device.
2555  *
2556  * @param[in] ibv_dev
2557  *   Pointer to Infiniband device structure.
2558  * @param[in] pci_dev
2559  *   Pointer to PCI device structure to match PCI address.
2560  * @param[in] nl_rdma
2561  *   Netlink RDMA group socket handle.
2562  *
2563  * @return
2564  *   negative value if no bonding device found, otherwise
2565  *   positive index of slave PF in bonding.
2566  */
2567 static int
2568 mlx5_device_bond_pci_match(const struct ibv_device *ibv_dev,
2569                            const struct rte_pci_device *pci_dev,
2570                            int nl_rdma)
2571 {
2572         char ifname[IF_NAMESIZE + 1];
2573         unsigned int ifindex;
2574         unsigned int np, i;
2575         FILE *file = NULL;
2576         int pf = -1;
2577
2578         /*
2579          * Try to get master device name. If something goes
2580          * wrong suppose the lack of kernel support and no
2581          * bonding devices.
2582          */
2583         if (nl_rdma < 0)
2584                 return -1;
2585         if (!strstr(ibv_dev->name, "bond"))
2586                 return -1;
2587         np = mlx5_nl_portnum(nl_rdma, ibv_dev->name);
2588         if (!np)
2589                 return -1;
2590         /*
2591          * The Master device might not be on the predefined
2592          * port (not on port index 1, it is not garanted),
2593          * we have to scan all Infiniband device port and
2594          * find master.
2595          */
2596         for (i = 1; i <= np; ++i) {
2597                 /* Check whether Infiniband port is populated. */
2598                 ifindex = mlx5_nl_ifindex(nl_rdma, ibv_dev->name, i);
2599                 if (!ifindex)
2600                         continue;
2601                 if (!if_indextoname(ifindex, ifname))
2602                         continue;
2603                 /* Try to read bonding slave names from sysfs. */
2604                 MKSTR(slaves,
2605                       "/sys/class/net/%s/master/bonding/slaves", ifname);
2606                 file = fopen(slaves, "r");
2607                 if (file)
2608                         break;
2609         }
2610         if (!file)
2611                 return -1;
2612         /* Use safe format to check maximal buffer length. */
2613         assert(atol(RTE_STR(IF_NAMESIZE)) == IF_NAMESIZE);
2614         while (fscanf(file, "%" RTE_STR(IF_NAMESIZE) "s", ifname) == 1) {
2615                 char tmp_str[IF_NAMESIZE + 32];
2616                 struct rte_pci_addr pci_addr;
2617                 struct mlx5_switch_info info;
2618
2619                 /* Process slave interface names in the loop. */
2620                 snprintf(tmp_str, sizeof(tmp_str),
2621                          "/sys/class/net/%s", ifname);
2622                 if (mlx5_dev_to_pci_addr(tmp_str, &pci_addr)) {
2623                         DRV_LOG(WARNING, "can not get PCI address"
2624                                          " for netdev \"%s\"", ifname);
2625                         continue;
2626                 }
2627                 if (pci_dev->addr.domain != pci_addr.domain ||
2628                     pci_dev->addr.bus != pci_addr.bus ||
2629                     pci_dev->addr.devid != pci_addr.devid ||
2630                     pci_dev->addr.function != pci_addr.function)
2631                         continue;
2632                 /* Slave interface PCI address match found. */
2633                 fclose(file);
2634                 snprintf(tmp_str, sizeof(tmp_str),
2635                          "/sys/class/net/%s/phys_port_name", ifname);
2636                 file = fopen(tmp_str, "rb");
2637                 if (!file)
2638                         break;
2639                 info.name_type = MLX5_PHYS_PORT_NAME_TYPE_NOTSET;
2640                 if (fscanf(file, "%32s", tmp_str) == 1)
2641                         mlx5_translate_port_name(tmp_str, &info);
2642                 if (info.name_type == MLX5_PHYS_PORT_NAME_TYPE_LEGACY ||
2643                     info.name_type == MLX5_PHYS_PORT_NAME_TYPE_UPLINK)
2644                         pf = info.port_name;
2645                 break;
2646         }
2647         if (file)
2648                 fclose(file);
2649         return pf;
2650 }
2651
2652 /**
2653  * DPDK callback to register a PCI device.
2654  *
2655  * This function spawns Ethernet devices out of a given PCI device.
2656  *
2657  * @param[in] pci_drv
2658  *   PCI driver structure (mlx5_driver).
2659  * @param[in] pci_dev
2660  *   PCI device information.
2661  *
2662  * @return
2663  *   0 on success, a negative errno value otherwise and rte_errno is set.
2664  */
2665 static int
2666 mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2667                struct rte_pci_device *pci_dev)
2668 {
2669         struct ibv_device **ibv_list;
2670         /*
2671          * Number of found IB Devices matching with requested PCI BDF.
2672          * nd != 1 means there are multiple IB devices over the same
2673          * PCI device and we have representors and master.
2674          */
2675         unsigned int nd = 0;
2676         /*
2677          * Number of found IB device Ports. nd = 1 and np = 1..n means
2678          * we have the single multiport IB device, and there may be
2679          * representors attached to some of found ports.
2680          */
2681         unsigned int np = 0;
2682         /*
2683          * Number of DPDK ethernet devices to Spawn - either over
2684          * multiple IB devices or multiple ports of single IB device.
2685          * Actually this is the number of iterations to spawn.
2686          */
2687         unsigned int ns = 0;
2688         /*
2689          * Bonding device
2690          *   < 0 - no bonding device (single one)
2691          *  >= 0 - bonding device (value is slave PF index)
2692          */
2693         int bd = -1;
2694         struct mlx5_dev_spawn_data *list = NULL;
2695         struct mlx5_dev_config dev_config;
2696         int ret;
2697
2698         ret = mlx5_init_once();
2699         if (ret) {
2700                 DRV_LOG(ERR, "unable to init PMD global data: %s",
2701                         strerror(rte_errno));
2702                 return -rte_errno;
2703         }
2704         assert(pci_drv == &mlx5_driver);
2705         errno = 0;
2706         ibv_list = mlx5_glue->get_device_list(&ret);
2707         if (!ibv_list) {
2708                 rte_errno = errno ? errno : ENOSYS;
2709                 DRV_LOG(ERR, "cannot list devices, is ib_uverbs loaded?");
2710                 return -rte_errno;
2711         }
2712         /*
2713          * First scan the list of all Infiniband devices to find
2714          * matching ones, gathering into the list.
2715          */
2716         struct ibv_device *ibv_match[ret + 1];
2717         int nl_route = mlx5_nl_init(NETLINK_ROUTE);
2718         int nl_rdma = mlx5_nl_init(NETLINK_RDMA);
2719         unsigned int i;
2720
2721         while (ret-- > 0) {
2722                 struct rte_pci_addr pci_addr;
2723
2724                 DRV_LOG(DEBUG, "checking device \"%s\"", ibv_list[ret]->name);
2725                 bd = mlx5_device_bond_pci_match
2726                                 (ibv_list[ret], pci_dev, nl_rdma);
2727                 if (bd >= 0) {
2728                         /*
2729                          * Bonding device detected. Only one match is allowed,
2730                          * the bonding is supported over multi-port IB device,
2731                          * there should be no matches on representor PCI
2732                          * functions or non VF LAG bonding devices with
2733                          * specified address.
2734                          */
2735                         if (nd) {
2736                                 DRV_LOG(ERR,
2737                                         "multiple PCI match on bonding device"
2738                                         "\"%s\" found", ibv_list[ret]->name);
2739                                 rte_errno = ENOENT;
2740                                 ret = -rte_errno;
2741                                 goto exit;
2742                         }
2743                         DRV_LOG(INFO, "PCI information matches for"
2744                                       " slave %d bonding device \"%s\"",
2745                                       bd, ibv_list[ret]->name);
2746                         ibv_match[nd++] = ibv_list[ret];
2747                         break;
2748                 }
2749                 if (mlx5_dev_to_pci_addr
2750                         (ibv_list[ret]->ibdev_path, &pci_addr))
2751                         continue;
2752                 if (pci_dev->addr.domain != pci_addr.domain ||
2753                     pci_dev->addr.bus != pci_addr.bus ||
2754                     pci_dev->addr.devid != pci_addr.devid ||
2755                     pci_dev->addr.function != pci_addr.function)
2756                         continue;
2757                 DRV_LOG(INFO, "PCI information matches for device \"%s\"",
2758                         ibv_list[ret]->name);
2759                 ibv_match[nd++] = ibv_list[ret];
2760         }
2761         ibv_match[nd] = NULL;
2762         if (!nd) {
2763                 /* No device matches, just complain and bail out. */
2764                 DRV_LOG(WARNING,
2765                         "no Verbs device matches PCI device " PCI_PRI_FMT ","
2766                         " are kernel drivers loaded?",
2767                         pci_dev->addr.domain, pci_dev->addr.bus,
2768                         pci_dev->addr.devid, pci_dev->addr.function);
2769                 rte_errno = ENOENT;
2770                 ret = -rte_errno;
2771                 goto exit;
2772         }
2773         if (nd == 1) {
2774                 /*
2775                  * Found single matching device may have multiple ports.
2776                  * Each port may be representor, we have to check the port
2777                  * number and check the representors existence.
2778                  */
2779                 if (nl_rdma >= 0)
2780                         np = mlx5_nl_portnum(nl_rdma, ibv_match[0]->name);
2781                 if (!np)
2782                         DRV_LOG(WARNING, "can not get IB device \"%s\""
2783                                          " ports number", ibv_match[0]->name);
2784                 if (bd >= 0 && !np) {
2785                         DRV_LOG(ERR, "can not get ports"
2786                                      " for bonding device");
2787                         rte_errno = ENOENT;
2788                         ret = -rte_errno;
2789                         goto exit;
2790                 }
2791         }
2792 #ifndef HAVE_MLX5DV_DR_DEVX_PORT
2793         if (bd >= 0) {
2794                 /*
2795                  * This may happen if there is VF LAG kernel support and
2796                  * application is compiled with older rdma_core library.
2797                  */
2798                 DRV_LOG(ERR,
2799                         "No kernel/verbs support for VF LAG bonding found.");
2800                 rte_errno = ENOTSUP;
2801                 ret = -rte_errno;
2802                 goto exit;
2803         }
2804 #endif
2805         /*
2806          * Now we can determine the maximal
2807          * amount of devices to be spawned.
2808          */
2809         list = rte_zmalloc("device spawn data",
2810                          sizeof(struct mlx5_dev_spawn_data) *
2811                          (np ? np : nd),
2812                          RTE_CACHE_LINE_SIZE);
2813         if (!list) {
2814                 DRV_LOG(ERR, "spawn data array allocation failure");
2815                 rte_errno = ENOMEM;
2816                 ret = -rte_errno;
2817                 goto exit;
2818         }
2819         if (bd >= 0 || np > 1) {
2820                 /*
2821                  * Single IB device with multiple ports found,
2822                  * it may be E-Switch master device and representors.
2823                  * We have to perform identification trough the ports.
2824                  */
2825                 assert(nl_rdma >= 0);
2826                 assert(ns == 0);
2827                 assert(nd == 1);
2828                 assert(np);
2829                 for (i = 1; i <= np; ++i) {
2830                         list[ns].max_port = np;
2831                         list[ns].ibv_port = i;
2832                         list[ns].ibv_dev = ibv_match[0];
2833                         list[ns].eth_dev = NULL;
2834                         list[ns].pci_dev = pci_dev;
2835                         list[ns].pf_bond = bd;
2836                         list[ns].ifindex = mlx5_nl_ifindex
2837                                         (nl_rdma, list[ns].ibv_dev->name, i);
2838                         if (!list[ns].ifindex) {
2839                                 /*
2840                                  * No network interface index found for the
2841                                  * specified port, it means there is no
2842                                  * representor on this port. It's OK,
2843                                  * there can be disabled ports, for example
2844                                  * if sriov_numvfs < sriov_totalvfs.
2845                                  */
2846                                 continue;
2847                         }
2848                         ret = -1;
2849                         if (nl_route >= 0)
2850                                 ret = mlx5_nl_switch_info
2851                                                (nl_route,
2852                                                 list[ns].ifindex,
2853                                                 &list[ns].info);
2854                         if (ret || (!list[ns].info.representor &&
2855                                     !list[ns].info.master)) {
2856                                 /*
2857                                  * We failed to recognize representors with
2858                                  * Netlink, let's try to perform the task
2859                                  * with sysfs.
2860                                  */
2861                                 ret =  mlx5_sysfs_switch_info
2862                                                 (list[ns].ifindex,
2863                                                  &list[ns].info);
2864                         }
2865                         if (!ret && bd >= 0) {
2866                                 switch (list[ns].info.name_type) {
2867                                 case MLX5_PHYS_PORT_NAME_TYPE_UPLINK:
2868                                         if (list[ns].info.port_name == bd)
2869                                                 ns++;
2870                                         break;
2871                                 case MLX5_PHYS_PORT_NAME_TYPE_PFVF:
2872                                         if (list[ns].info.pf_num == bd)
2873                                                 ns++;
2874                                         break;
2875                                 default:
2876                                         break;
2877                                 }
2878                                 continue;
2879                         }
2880                         if (!ret && (list[ns].info.representor ^
2881                                      list[ns].info.master))
2882                                 ns++;
2883                 }
2884                 if (!ns) {
2885                         DRV_LOG(ERR,
2886                                 "unable to recognize master/representors"
2887                                 " on the IB device with multiple ports");
2888                         rte_errno = ENOENT;
2889                         ret = -rte_errno;
2890                         goto exit;
2891                 }
2892         } else {
2893                 /*
2894                  * The existence of several matching entries (nd > 1) means
2895                  * port representors have been instantiated. No existing Verbs
2896                  * call nor sysfs entries can tell them apart, this can only
2897                  * be done through Netlink calls assuming kernel drivers are
2898                  * recent enough to support them.
2899                  *
2900                  * In the event of identification failure through Netlink,
2901                  * try again through sysfs, then:
2902                  *
2903                  * 1. A single IB device matches (nd == 1) with single
2904                  *    port (np=0/1) and is not a representor, assume
2905                  *    no switch support.
2906                  *
2907                  * 2. Otherwise no safe assumptions can be made;
2908                  *    complain louder and bail out.
2909                  */
2910                 np = 1;
2911                 for (i = 0; i != nd; ++i) {
2912                         memset(&list[ns].info, 0, sizeof(list[ns].info));
2913                         list[ns].max_port = 1;
2914                         list[ns].ibv_port = 1;
2915                         list[ns].ibv_dev = ibv_match[i];
2916                         list[ns].eth_dev = NULL;
2917                         list[ns].pci_dev = pci_dev;
2918                         list[ns].pf_bond = -1;
2919                         list[ns].ifindex = 0;
2920                         if (nl_rdma >= 0)
2921                                 list[ns].ifindex = mlx5_nl_ifindex
2922                                         (nl_rdma, list[ns].ibv_dev->name, 1);
2923                         if (!list[ns].ifindex) {
2924                                 char ifname[IF_NAMESIZE];
2925
2926                                 /*
2927                                  * Netlink failed, it may happen with old
2928                                  * ib_core kernel driver (before 4.16).
2929                                  * We can assume there is old driver because
2930                                  * here we are processing single ports IB
2931                                  * devices. Let's try sysfs to retrieve
2932                                  * the ifindex. The method works for
2933                                  * master device only.
2934                                  */
2935                                 if (nd > 1) {
2936                                         /*
2937                                          * Multiple devices found, assume
2938                                          * representors, can not distinguish
2939                                          * master/representor and retrieve
2940                                          * ifindex via sysfs.
2941                                          */
2942                                         continue;
2943                                 }
2944                                 ret = mlx5_get_master_ifname
2945                                         (ibv_match[i]->ibdev_path, &ifname);
2946                                 if (!ret)
2947                                         list[ns].ifindex =
2948                                                 if_nametoindex(ifname);
2949                                 if (!list[ns].ifindex) {
2950                                         /*
2951                                          * No network interface index found
2952                                          * for the specified device, it means
2953                                          * there it is neither representor
2954                                          * nor master.
2955                                          */
2956                                         continue;
2957                                 }
2958                         }
2959                         ret = -1;
2960                         if (nl_route >= 0)
2961                                 ret = mlx5_nl_switch_info
2962                                                (nl_route,
2963                                                 list[ns].ifindex,
2964                                                 &list[ns].info);
2965                         if (ret || (!list[ns].info.representor &&
2966                                     !list[ns].info.master)) {
2967                                 /*
2968                                  * We failed to recognize representors with
2969                                  * Netlink, let's try to perform the task
2970                                  * with sysfs.
2971                                  */
2972                                 ret =  mlx5_sysfs_switch_info
2973                                                 (list[ns].ifindex,
2974                                                  &list[ns].info);
2975                         }
2976                         if (!ret && (list[ns].info.representor ^
2977                                      list[ns].info.master)) {
2978                                 ns++;
2979                         } else if ((nd == 1) &&
2980                                    !list[ns].info.representor &&
2981                                    !list[ns].info.master) {
2982                                 /*
2983                                  * Single IB device with
2984                                  * one physical port and
2985                                  * attached network device.
2986                                  * May be SRIOV is not enabled
2987                                  * or there is no representors.
2988                                  */
2989                                 DRV_LOG(INFO, "no E-Switch support detected");
2990                                 ns++;
2991                                 break;
2992                         }
2993                 }
2994                 if (!ns) {
2995                         DRV_LOG(ERR,
2996                                 "unable to recognize master/representors"
2997                                 " on the multiple IB devices");
2998                         rte_errno = ENOENT;
2999                         ret = -rte_errno;
3000                         goto exit;
3001                 }
3002         }
3003         assert(ns);
3004         /*
3005          * Sort list to probe devices in natural order for users convenience
3006          * (i.e. master first, then representors from lowest to highest ID).
3007          */
3008         qsort(list, ns, sizeof(*list), mlx5_dev_spawn_data_cmp);
3009         /* Default configuration. */
3010         dev_config = (struct mlx5_dev_config){
3011                 .hw_padding = 0,
3012                 .mps = MLX5_ARG_UNSET,
3013                 .rx_vec_en = 1,
3014                 .txq_inline_max = MLX5_ARG_UNSET,
3015                 .txq_inline_min = MLX5_ARG_UNSET,
3016                 .txq_inline_mpw = MLX5_ARG_UNSET,
3017                 .txqs_inline = MLX5_ARG_UNSET,
3018                 .vf_nl_en = 1,
3019                 .mr_ext_memseg_en = 1,
3020                 .mprq = {
3021                         .enabled = 0, /* Disabled by default. */
3022                         .stride_num_n = MLX5_MPRQ_STRIDE_NUM_N,
3023                         .max_memcpy_len = MLX5_MPRQ_MEMCPY_DEFAULT_LEN,
3024                         .min_rxqs_num = MLX5_MPRQ_MIN_RXQS,
3025                 },
3026                 .dv_esw_en = 1,
3027         };
3028         /* Device specific configuration. */
3029         switch (pci_dev->id.device_id) {
3030         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
3031         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
3032         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
3033         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
3034         case PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF:
3035         case PCI_DEVICE_ID_MELLANOX_CONNECTX6VF:
3036         case PCI_DEVICE_ID_MELLANOX_CONNECTX6DXVF:
3037                 dev_config.vf = 1;
3038                 break;
3039         default:
3040                 break;
3041         }
3042         for (i = 0; i != ns; ++i) {
3043                 uint32_t restore;
3044
3045                 list[i].eth_dev = mlx5_dev_spawn(&pci_dev->device,
3046                                                  &list[i],
3047                                                  dev_config);
3048                 if (!list[i].eth_dev) {
3049                         if (rte_errno != EBUSY && rte_errno != EEXIST)
3050                                 break;
3051                         /* Device is disabled or already spawned. Ignore it. */
3052                         continue;
3053                 }
3054                 restore = list[i].eth_dev->data->dev_flags;
3055                 rte_eth_copy_pci_info(list[i].eth_dev, pci_dev);
3056                 /* Restore non-PCI flags cleared by the above call. */
3057                 list[i].eth_dev->data->dev_flags |= restore;
3058                 mlx5_dev_interrupt_handler_devx_install(list[i].eth_dev);
3059                 rte_eth_dev_probing_finish(list[i].eth_dev);
3060         }
3061         if (i != ns) {
3062                 DRV_LOG(ERR,
3063                         "probe of PCI device " PCI_PRI_FMT " aborted after"
3064                         " encountering an error: %s",
3065                         pci_dev->addr.domain, pci_dev->addr.bus,
3066                         pci_dev->addr.devid, pci_dev->addr.function,
3067                         strerror(rte_errno));
3068                 ret = -rte_errno;
3069                 /* Roll back. */
3070                 while (i--) {
3071                         if (!list[i].eth_dev)
3072                                 continue;
3073                         mlx5_dev_close(list[i].eth_dev);
3074                         /* mac_addrs must not be freed because in dev_private */
3075                         list[i].eth_dev->data->mac_addrs = NULL;
3076                         claim_zero(rte_eth_dev_release_port(list[i].eth_dev));
3077                 }
3078                 /* Restore original error. */
3079                 rte_errno = -ret;
3080         } else {
3081                 ret = 0;
3082         }
3083 exit:
3084         /*
3085          * Do the routine cleanup:
3086          * - close opened Netlink sockets
3087          * - free allocated spawn data array
3088          * - free the Infiniband device list
3089          */
3090         if (nl_rdma >= 0)
3091                 close(nl_rdma);
3092         if (nl_route >= 0)
3093                 close(nl_route);
3094         if (list)
3095                 rte_free(list);
3096         assert(ibv_list);
3097         mlx5_glue->free_device_list(ibv_list);
3098         return ret;
3099 }
3100
3101 /**
3102  * Look for the ethernet device belonging to mlx5 driver.
3103  *
3104  * @param[in] port_id
3105  *   port_id to start looking for device.
3106  * @param[in] pci_dev
3107  *   Pointer to the hint PCI device. When device is being probed
3108  *   the its siblings (master and preceding representors might
3109  *   not have assigned driver yet (because the mlx5_pci_probe()
3110  *   is not completed yet, for this case match on hint PCI
3111  *   device may be used to detect sibling device.
3112  *
3113  * @return
3114  *   port_id of found device, RTE_MAX_ETHPORT if not found.
3115  */
3116 uint16_t
3117 mlx5_eth_find_next(uint16_t port_id, struct rte_pci_device *pci_dev)
3118 {
3119         while (port_id < RTE_MAX_ETHPORTS) {
3120                 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3121
3122                 if (dev->state != RTE_ETH_DEV_UNUSED &&
3123                     dev->device &&
3124                     (dev->device == &pci_dev->device ||
3125                      (dev->device->driver &&
3126                      dev->device->driver->name &&
3127                      !strcmp(dev->device->driver->name, MLX5_DRIVER_NAME))))
3128                         break;
3129                 port_id++;
3130         }
3131         if (port_id >= RTE_MAX_ETHPORTS)
3132                 return RTE_MAX_ETHPORTS;
3133         return port_id;
3134 }
3135
3136 /**
3137  * DPDK callback to remove a PCI device.
3138  *
3139  * This function removes all Ethernet devices belong to a given PCI device.
3140  *
3141  * @param[in] pci_dev
3142  *   Pointer to the PCI device.
3143  *
3144  * @return
3145  *   0 on success, the function cannot fail.
3146  */
3147 static int
3148 mlx5_pci_remove(struct rte_pci_device *pci_dev)
3149 {
3150         uint16_t port_id;
3151
3152         RTE_ETH_FOREACH_DEV_OF(port_id, &pci_dev->device)
3153                 rte_eth_dev_close(port_id);
3154         return 0;
3155 }
3156
3157 static const struct rte_pci_id mlx5_pci_id_map[] = {
3158         {
3159                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3160                                PCI_DEVICE_ID_MELLANOX_CONNECTX4)
3161         },
3162         {
3163                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3164                                PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
3165         },
3166         {
3167                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3168                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
3169         },
3170         {
3171                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3172                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
3173         },
3174         {
3175                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3176                                PCI_DEVICE_ID_MELLANOX_CONNECTX5)
3177         },
3178         {
3179                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3180                                PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
3181         },
3182         {
3183                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3184                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
3185         },
3186         {
3187                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3188                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
3189         },
3190         {
3191                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3192                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
3193         },
3194         {
3195                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3196                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF)
3197         },
3198         {
3199                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3200                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6)
3201         },
3202         {
3203                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3204                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6VF)
3205         },
3206         {
3207                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3208                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6DX)
3209         },
3210         {
3211                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
3212                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXVF)
3213         },
3214         {
3215                 .vendor_id = 0
3216         }
3217 };
3218
3219 static struct rte_pci_driver mlx5_driver = {
3220         .driver = {
3221                 .name = MLX5_DRIVER_NAME
3222         },
3223         .id_table = mlx5_pci_id_map,
3224         .probe = mlx5_pci_probe,
3225         .remove = mlx5_pci_remove,
3226         .dma_map = mlx5_dma_map,
3227         .dma_unmap = mlx5_dma_unmap,
3228         .drv_flags = RTE_PCI_DRV_INTR_LSC | RTE_PCI_DRV_INTR_RMV |
3229                      RTE_PCI_DRV_PROBE_AGAIN,
3230 };
3231
3232 #ifdef RTE_IBVERBS_LINK_DLOPEN
3233
3234 /**
3235  * Suffix RTE_EAL_PMD_PATH with "-glue".
3236  *
3237  * This function performs a sanity check on RTE_EAL_PMD_PATH before
3238  * suffixing its last component.
3239  *
3240  * @param buf[out]
3241  *   Output buffer, should be large enough otherwise NULL is returned.
3242  * @param size
3243  *   Size of @p out.
3244  *
3245  * @return
3246  *   Pointer to @p buf or @p NULL in case suffix cannot be appended.
3247  */
3248 static char *
3249 mlx5_glue_path(char *buf, size_t size)
3250 {
3251         static const char *const bad[] = { "/", ".", "..", NULL };
3252         const char *path = RTE_EAL_PMD_PATH;
3253         size_t len = strlen(path);
3254         size_t off;
3255         int i;
3256
3257         while (len && path[len - 1] == '/')
3258                 --len;
3259         for (off = len; off && path[off - 1] != '/'; --off)
3260                 ;
3261         for (i = 0; bad[i]; ++i)
3262                 if (!strncmp(path + off, bad[i], (int)(len - off)))
3263                         goto error;
3264         i = snprintf(buf, size, "%.*s-glue", (int)len, path);
3265         if (i == -1 || (size_t)i >= size)
3266                 goto error;
3267         return buf;
3268 error:
3269         DRV_LOG(ERR,
3270                 "unable to append \"-glue\" to last component of"
3271                 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"),"
3272                 " please re-configure DPDK");
3273         return NULL;
3274 }
3275
3276 /**
3277  * Initialization routine for run-time dependency on rdma-core.
3278  */
3279 static int
3280 mlx5_glue_init(void)
3281 {
3282         char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
3283         const char *path[] = {
3284                 /*
3285                  * A basic security check is necessary before trusting
3286                  * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
3287                  */
3288                 (geteuid() == getuid() && getegid() == getgid() ?
3289                  getenv("MLX5_GLUE_PATH") : NULL),
3290                 /*
3291                  * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
3292                  * variant, otherwise let dlopen() look up libraries on its
3293                  * own.
3294                  */
3295                 (*RTE_EAL_PMD_PATH ?
3296                  mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
3297         };
3298         unsigned int i = 0;
3299         void *handle = NULL;
3300         void **sym;
3301         const char *dlmsg;
3302
3303         while (!handle && i != RTE_DIM(path)) {
3304                 const char *end;
3305                 size_t len;
3306                 int ret;
3307
3308                 if (!path[i]) {
3309                         ++i;
3310                         continue;
3311                 }
3312                 end = strpbrk(path[i], ":;");
3313                 if (!end)
3314                         end = path[i] + strlen(path[i]);
3315                 len = end - path[i];
3316                 ret = 0;
3317                 do {
3318                         char name[ret + 1];
3319
3320                         ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
3321                                        (int)len, path[i],
3322                                        (!len || *(end - 1) == '/') ? "" : "/");
3323                         if (ret == -1)
3324                                 break;
3325                         if (sizeof(name) != (size_t)ret + 1)
3326                                 continue;
3327                         DRV_LOG(DEBUG, "looking for rdma-core glue as \"%s\"",
3328                                 name);
3329                         handle = dlopen(name, RTLD_LAZY);
3330                         break;
3331                 } while (1);
3332                 path[i] = end + 1;
3333                 if (!*end)
3334                         ++i;
3335         }
3336         if (!handle) {
3337                 rte_errno = EINVAL;
3338                 dlmsg = dlerror();
3339                 if (dlmsg)
3340                         DRV_LOG(WARNING, "cannot load glue library: %s", dlmsg);
3341                 goto glue_error;
3342         }
3343         sym = dlsym(handle, "mlx5_glue");
3344         if (!sym || !*sym) {
3345                 rte_errno = EINVAL;
3346                 dlmsg = dlerror();
3347                 if (dlmsg)
3348                         DRV_LOG(ERR, "cannot resolve glue symbol: %s", dlmsg);
3349                 goto glue_error;
3350         }
3351         mlx5_glue = *sym;
3352         return 0;
3353 glue_error:
3354         if (handle)
3355                 dlclose(handle);
3356         DRV_LOG(WARNING,
3357                 "cannot initialize PMD due to missing run-time dependency on"
3358                 " rdma-core libraries (libibverbs, libmlx5)");
3359         return -rte_errno;
3360 }
3361
3362 #endif
3363
3364 /**
3365  * Driver initialization routine.
3366  */
3367 RTE_INIT(rte_mlx5_pmd_init)
3368 {
3369         /* Initialize driver log type. */
3370         mlx5_logtype = rte_log_register("pmd.net.mlx5");
3371         if (mlx5_logtype >= 0)
3372                 rte_log_set_level(mlx5_logtype, RTE_LOG_NOTICE);
3373
3374         /* Build the static tables for Verbs conversion. */
3375         mlx5_set_ptype_table();
3376         mlx5_set_cksum_table();
3377         mlx5_set_swp_types_table();
3378         /*
3379          * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
3380          * huge pages. Calling ibv_fork_init() during init allows
3381          * applications to use fork() safely for purposes other than
3382          * using this PMD, which is not supported in forked processes.
3383          */
3384         setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
3385         /* Match the size of Rx completion entry to the size of a cacheline. */
3386         if (RTE_CACHE_LINE_SIZE == 128)
3387                 setenv("MLX5_CQE_SIZE", "128", 0);
3388         /*
3389          * MLX5_DEVICE_FATAL_CLEANUP tells ibv_destroy functions to
3390          * cleanup all the Verbs resources even when the device was removed.
3391          */
3392         setenv("MLX5_DEVICE_FATAL_CLEANUP", "1", 1);
3393 #ifdef RTE_IBVERBS_LINK_DLOPEN
3394         if (mlx5_glue_init())
3395                 return;
3396         assert(mlx5_glue);
3397 #endif
3398 #ifndef NDEBUG
3399         /* Glue structure must not contain any NULL pointers. */
3400         {
3401                 unsigned int i;
3402
3403                 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
3404                         assert(((const void *const *)mlx5_glue)[i]);
3405         }
3406 #endif
3407         if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
3408                 DRV_LOG(ERR,
3409                         "rdma-core glue \"%s\" mismatch: \"%s\" is required",
3410                         mlx5_glue->version, MLX5_GLUE_VERSION);
3411                 return;
3412         }
3413         mlx5_glue->fork_init();
3414         rte_pci_register(&mlx5_driver);
3415 }
3416
3417 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
3418 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
3419 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");