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