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