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