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