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