81476e2d96a6ecc255561f38dbfd6f4f2cec859d
[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 <stdint.h>
10 #include <stdlib.h>
11 #include <errno.h>
12 #include <net/if.h>
13 #include <sys/mman.h>
14 #include <linux/rtnetlink.h>
15
16 #include <rte_malloc.h>
17 #include <rte_ethdev_driver.h>
18 #include <rte_ethdev_pci.h>
19 #include <rte_pci.h>
20 #include <rte_bus_pci.h>
21 #include <rte_common.h>
22 #include <rte_kvargs.h>
23 #include <rte_rwlock.h>
24 #include <rte_spinlock.h>
25 #include <rte_string_fns.h>
26 #include <rte_alarm.h>
27
28 #include <mlx5_glue.h>
29 #include <mlx5_devx_cmds.h>
30 #include <mlx5_common.h>
31 #include <mlx5_common_os.h>
32 #include <mlx5_common_mp.h>
33 #include <mlx5_common_pci.h>
34 #include <mlx5_malloc.h>
35
36 #include "mlx5_defs.h"
37 #include "mlx5.h"
38 #include "mlx5_utils.h"
39 #include "mlx5_rxtx.h"
40 #include "mlx5_autoconf.h"
41 #include "mlx5_mr.h"
42 #include "mlx5_flow.h"
43 #include "rte_pmd_mlx5.h"
44
45 /* Device parameter to enable RX completion queue compression. */
46 #define MLX5_RXQ_CQE_COMP_EN "rxq_cqe_comp_en"
47
48 /* Device parameter to enable RX completion entry padding to 128B. */
49 #define MLX5_RXQ_CQE_PAD_EN "rxq_cqe_pad_en"
50
51 /* Device parameter to enable padding Rx packet to cacheline size. */
52 #define MLX5_RXQ_PKT_PAD_EN "rxq_pkt_pad_en"
53
54 /* Device parameter to enable Multi-Packet Rx queue. */
55 #define MLX5_RX_MPRQ_EN "mprq_en"
56
57 /* Device parameter to configure log 2 of the number of strides for MPRQ. */
58 #define MLX5_RX_MPRQ_LOG_STRIDE_NUM "mprq_log_stride_num"
59
60 /* Device parameter to configure log 2 of the stride size for MPRQ. */
61 #define MLX5_RX_MPRQ_LOG_STRIDE_SIZE "mprq_log_stride_size"
62
63 /* Device parameter to limit the size of memcpy'd packet for MPRQ. */
64 #define MLX5_RX_MPRQ_MAX_MEMCPY_LEN "mprq_max_memcpy_len"
65
66 /* Device parameter to set the minimum number of Rx queues to enable MPRQ. */
67 #define MLX5_RXQS_MIN_MPRQ "rxqs_min_mprq"
68
69 /* Device parameter to configure inline send. Deprecated, ignored.*/
70 #define MLX5_TXQ_INLINE "txq_inline"
71
72 /* Device parameter to limit packet size to inline with ordinary SEND. */
73 #define MLX5_TXQ_INLINE_MAX "txq_inline_max"
74
75 /* Device parameter to configure minimal data size to inline. */
76 #define MLX5_TXQ_INLINE_MIN "txq_inline_min"
77
78 /* Device parameter to limit packet size to inline with Enhanced MPW. */
79 #define MLX5_TXQ_INLINE_MPW "txq_inline_mpw"
80
81 /*
82  * Device parameter to configure the number of TX queues threshold for
83  * enabling inline send.
84  */
85 #define MLX5_TXQS_MIN_INLINE "txqs_min_inline"
86
87 /*
88  * Device parameter to configure the number of TX queues threshold for
89  * enabling vectorized Tx, deprecated, ignored (no vectorized Tx routines).
90  */
91 #define MLX5_TXQS_MAX_VEC "txqs_max_vec"
92
93 /* Device parameter to enable multi-packet send WQEs. */
94 #define MLX5_TXQ_MPW_EN "txq_mpw_en"
95
96 /*
97  * Device parameter to force doorbell register mapping
98  * to non-cahed region eliminating the extra write memory barrier.
99  */
100 #define MLX5_TX_DB_NC "tx_db_nc"
101
102 /*
103  * Device parameter to include 2 dsegs in the title WQEBB.
104  * Deprecated, ignored.
105  */
106 #define MLX5_TXQ_MPW_HDR_DSEG_EN "txq_mpw_hdr_dseg_en"
107
108 /*
109  * Device parameter to limit the size of inlining packet.
110  * Deprecated, ignored.
111  */
112 #define MLX5_TXQ_MAX_INLINE_LEN "txq_max_inline_len"
113
114 /*
115  * Device parameter to enable Tx scheduling on timestamps
116  * and specify the packet pacing granularity in nanoseconds.
117  */
118 #define MLX5_TX_PP "tx_pp"
119
120 /*
121  * Device parameter to specify skew in nanoseconds on Tx datapath,
122  * it represents the time between SQ start WQE processing and
123  * appearing actual packet data on the wire.
124  */
125 #define MLX5_TX_SKEW "tx_skew"
126
127 /*
128  * Device parameter to enable hardware Tx vector.
129  * Deprecated, ignored (no vectorized Tx routines anymore).
130  */
131 #define MLX5_TX_VEC_EN "tx_vec_en"
132
133 /* Device parameter to enable hardware Rx vector. */
134 #define MLX5_RX_VEC_EN "rx_vec_en"
135
136 /* Allow L3 VXLAN flow creation. */
137 #define MLX5_L3_VXLAN_EN "l3_vxlan_en"
138
139 /* Activate DV E-Switch flow steering. */
140 #define MLX5_DV_ESW_EN "dv_esw_en"
141
142 /* Activate DV flow steering. */
143 #define MLX5_DV_FLOW_EN "dv_flow_en"
144
145 /* Enable extensive flow metadata support. */
146 #define MLX5_DV_XMETA_EN "dv_xmeta_en"
147
148 /* Device parameter to let the user manage the lacp traffic of bonded device */
149 #define MLX5_LACP_BY_USER "lacp_by_user"
150
151 /* Activate Netlink support in VF mode. */
152 #define MLX5_VF_NL_EN "vf_nl_en"
153
154 /* Enable extending memsegs when creating a MR. */
155 #define MLX5_MR_EXT_MEMSEG_EN "mr_ext_memseg_en"
156
157 /* Select port representors to instantiate. */
158 #define MLX5_REPRESENTOR "representor"
159
160 /* Device parameter to configure the maximum number of dump files per queue. */
161 #define MLX5_MAX_DUMP_FILES_NUM "max_dump_files_num"
162
163 /* Configure timeout of LRO session (in microseconds). */
164 #define MLX5_LRO_TIMEOUT_USEC "lro_timeout_usec"
165
166 /*
167  * Device parameter to configure the total data buffer size for a single
168  * hairpin queue (logarithm value).
169  */
170 #define MLX5_HP_BUF_SIZE "hp_buf_log_sz"
171
172 /* Flow memory reclaim mode. */
173 #define MLX5_RECLAIM_MEM "reclaim_mem_mode"
174
175 /* The default memory allocator used in PMD. */
176 #define MLX5_SYS_MEM_EN "sys_mem_en"
177 /* Decap will be used or not. */
178 #define MLX5_DECAP_EN "decap_en"
179
180 /* Shared memory between primary and secondary processes. */
181 struct mlx5_shared_data *mlx5_shared_data;
182
183 /** Driver-specific log messages type. */
184 int mlx5_logtype;
185
186 static LIST_HEAD(, mlx5_dev_ctx_shared) mlx5_dev_ctx_list =
187                                                 LIST_HEAD_INITIALIZER();
188 static pthread_mutex_t mlx5_dev_ctx_list_mutex = PTHREAD_MUTEX_INITIALIZER;
189
190 static const struct mlx5_indexed_pool_config mlx5_ipool_cfg[] = {
191 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
192         {
193                 .size = sizeof(struct mlx5_flow_dv_encap_decap_resource),
194                 .trunk_size = 64,
195                 .grow_trunk = 3,
196                 .grow_shift = 2,
197                 .need_lock = 0,
198                 .release_mem_en = 1,
199                 .malloc = mlx5_malloc,
200                 .free = mlx5_free,
201                 .type = "mlx5_encap_decap_ipool",
202         },
203         {
204                 .size = sizeof(struct mlx5_flow_dv_push_vlan_action_resource),
205                 .trunk_size = 64,
206                 .grow_trunk = 3,
207                 .grow_shift = 2,
208                 .need_lock = 0,
209                 .release_mem_en = 1,
210                 .malloc = mlx5_malloc,
211                 .free = mlx5_free,
212                 .type = "mlx5_push_vlan_ipool",
213         },
214         {
215                 .size = sizeof(struct mlx5_flow_dv_tag_resource),
216                 .trunk_size = 64,
217                 .grow_trunk = 3,
218                 .grow_shift = 2,
219                 .need_lock = 0,
220                 .release_mem_en = 1,
221                 .malloc = mlx5_malloc,
222                 .free = mlx5_free,
223                 .type = "mlx5_tag_ipool",
224         },
225         {
226                 .size = sizeof(struct mlx5_flow_dv_port_id_action_resource),
227                 .trunk_size = 64,
228                 .grow_trunk = 3,
229                 .grow_shift = 2,
230                 .need_lock = 0,
231                 .release_mem_en = 1,
232                 .malloc = mlx5_malloc,
233                 .free = mlx5_free,
234                 .type = "mlx5_port_id_ipool",
235         },
236         {
237                 .size = sizeof(struct mlx5_flow_tbl_data_entry),
238                 .trunk_size = 64,
239                 .grow_trunk = 3,
240                 .grow_shift = 2,
241                 .need_lock = 0,
242                 .release_mem_en = 1,
243                 .malloc = mlx5_malloc,
244                 .free = mlx5_free,
245                 .type = "mlx5_jump_ipool",
246         },
247 #endif
248         {
249                 .size = sizeof(struct mlx5_flow_meter),
250                 .trunk_size = 64,
251                 .grow_trunk = 3,
252                 .grow_shift = 2,
253                 .need_lock = 0,
254                 .release_mem_en = 1,
255                 .malloc = mlx5_malloc,
256                 .free = mlx5_free,
257                 .type = "mlx5_meter_ipool",
258         },
259         {
260                 .size = sizeof(struct mlx5_flow_mreg_copy_resource),
261                 .trunk_size = 64,
262                 .grow_trunk = 3,
263                 .grow_shift = 2,
264                 .need_lock = 0,
265                 .release_mem_en = 1,
266                 .malloc = mlx5_malloc,
267                 .free = mlx5_free,
268                 .type = "mlx5_mcp_ipool",
269         },
270         {
271                 .size = (sizeof(struct mlx5_hrxq) + MLX5_RSS_HASH_KEY_LEN),
272                 .trunk_size = 64,
273                 .grow_trunk = 3,
274                 .grow_shift = 2,
275                 .need_lock = 0,
276                 .release_mem_en = 1,
277                 .malloc = mlx5_malloc,
278                 .free = mlx5_free,
279                 .type = "mlx5_hrxq_ipool",
280         },
281         {
282                 /*
283                  * MLX5_IPOOL_MLX5_FLOW size varies for DV and VERBS flows.
284                  * It set in run time according to PCI function configuration.
285                  */
286                 .size = 0,
287                 .trunk_size = 64,
288                 .grow_trunk = 3,
289                 .grow_shift = 2,
290                 .need_lock = 0,
291                 .release_mem_en = 1,
292                 .malloc = mlx5_malloc,
293                 .free = mlx5_free,
294                 .type = "mlx5_flow_handle_ipool",
295         },
296         {
297                 .size = sizeof(struct rte_flow),
298                 .trunk_size = 4096,
299                 .need_lock = 1,
300                 .release_mem_en = 1,
301                 .malloc = mlx5_malloc,
302                 .free = mlx5_free,
303                 .type = "rte_flow_ipool",
304         },
305 };
306
307
308 #define MLX5_FLOW_MIN_ID_POOL_SIZE 512
309 #define MLX5_ID_GENERATION_ARRAY_FACTOR 16
310
311 #define MLX5_FLOW_TABLE_HLIST_ARRAY_SIZE 4096
312
313 /**
314  * Allocate ID pool structure.
315  *
316  * @param[in] max_id
317  *   The maximum id can be allocated from the pool.
318  *
319  * @return
320  *   Pointer to pool object, NULL value otherwise.
321  */
322 struct mlx5_flow_id_pool *
323 mlx5_flow_id_pool_alloc(uint32_t max_id)
324 {
325         struct mlx5_flow_id_pool *pool;
326         void *mem;
327
328         pool = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*pool),
329                            RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
330         if (!pool) {
331                 DRV_LOG(ERR, "can't allocate id pool");
332                 rte_errno  = ENOMEM;
333                 return NULL;
334         }
335         mem = mlx5_malloc(MLX5_MEM_ZERO,
336                           MLX5_FLOW_MIN_ID_POOL_SIZE * sizeof(uint32_t),
337                           RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
338         if (!mem) {
339                 DRV_LOG(ERR, "can't allocate mem for id pool");
340                 rte_errno  = ENOMEM;
341                 goto error;
342         }
343         pool->free_arr = mem;
344         pool->curr = pool->free_arr;
345         pool->last = pool->free_arr + MLX5_FLOW_MIN_ID_POOL_SIZE;
346         pool->base_index = 0;
347         pool->max_id = max_id;
348         return pool;
349 error:
350         mlx5_free(pool);
351         return NULL;
352 }
353
354 /**
355  * Release ID pool structure.
356  *
357  * @param[in] pool
358  *   Pointer to flow id pool object to free.
359  */
360 void
361 mlx5_flow_id_pool_release(struct mlx5_flow_id_pool *pool)
362 {
363         mlx5_free(pool->free_arr);
364         mlx5_free(pool);
365 }
366
367 /**
368  * Generate ID.
369  *
370  * @param[in] pool
371  *   Pointer to flow id pool.
372  * @param[out] id
373  *   The generated ID.
374  *
375  * @return
376  *   0 on success, error value otherwise.
377  */
378 uint32_t
379 mlx5_flow_id_get(struct mlx5_flow_id_pool *pool, uint32_t *id)
380 {
381         if (pool->curr == pool->free_arr) {
382                 if (pool->base_index == pool->max_id) {
383                         rte_errno  = ENOMEM;
384                         DRV_LOG(ERR, "no free id");
385                         return -rte_errno;
386                 }
387                 *id = ++pool->base_index;
388                 return 0;
389         }
390         *id = *(--pool->curr);
391         return 0;
392 }
393
394 /**
395  * Release ID.
396  *
397  * @param[in] pool
398  *   Pointer to flow id pool.
399  * @param[out] id
400  *   The generated ID.
401  *
402  * @return
403  *   0 on success, error value otherwise.
404  */
405 uint32_t
406 mlx5_flow_id_release(struct mlx5_flow_id_pool *pool, uint32_t id)
407 {
408         uint32_t size;
409         uint32_t size2;
410         void *mem;
411
412         if (pool->curr == pool->last) {
413                 size = pool->curr - pool->free_arr;
414                 size2 = size * MLX5_ID_GENERATION_ARRAY_FACTOR;
415                 MLX5_ASSERT(size2 > size);
416                 mem = mlx5_malloc(0, size2 * sizeof(uint32_t), 0,
417                                   SOCKET_ID_ANY);
418                 if (!mem) {
419                         DRV_LOG(ERR, "can't allocate mem for id pool");
420                         rte_errno  = ENOMEM;
421                         return -rte_errno;
422                 }
423                 memcpy(mem, pool->free_arr, size * sizeof(uint32_t));
424                 mlx5_free(pool->free_arr);
425                 pool->free_arr = mem;
426                 pool->curr = pool->free_arr + size;
427                 pool->last = pool->free_arr + size2;
428         }
429         *pool->curr = id;
430         pool->curr++;
431         return 0;
432 }
433
434 /**
435  * Initialize the shared aging list information per port.
436  *
437  * @param[in] sh
438  *   Pointer to mlx5_dev_ctx_shared object.
439  */
440 static void
441 mlx5_flow_aging_init(struct mlx5_dev_ctx_shared *sh)
442 {
443         uint32_t i;
444         struct mlx5_age_info *age_info;
445
446         for (i = 0; i < sh->max_port; i++) {
447                 age_info = &sh->port[i].age_info;
448                 age_info->flags = 0;
449                 TAILQ_INIT(&age_info->aged_counters);
450                 rte_spinlock_init(&age_info->aged_sl);
451                 MLX5_AGE_SET(age_info, MLX5_AGE_TRIGGER);
452         }
453 }
454
455 /**
456  * Initialize the counters management structure.
457  *
458  * @param[in] sh
459  *   Pointer to mlx5_dev_ctx_shared object to free
460  */
461 static void
462 mlx5_flow_counters_mng_init(struct mlx5_dev_ctx_shared *sh)
463 {
464         int i;
465
466         memset(&sh->cmng, 0, sizeof(sh->cmng));
467         TAILQ_INIT(&sh->cmng.flow_counters);
468         for (i = 0; i < MLX5_CCONT_TYPE_MAX; ++i) {
469                 sh->cmng.ccont[i].min_id = MLX5_CNT_BATCH_OFFSET;
470                 sh->cmng.ccont[i].max_id = -1;
471                 sh->cmng.ccont[i].last_pool_idx = POOL_IDX_INVALID;
472                 TAILQ_INIT(&sh->cmng.ccont[i].pool_list);
473                 rte_spinlock_init(&sh->cmng.ccont[i].resize_sl);
474                 TAILQ_INIT(&sh->cmng.ccont[i].counters);
475                 rte_spinlock_init(&sh->cmng.ccont[i].csl);
476         }
477 }
478
479 /**
480  * Destroy all the resources allocated for a counter memory management.
481  *
482  * @param[in] mng
483  *   Pointer to the memory management structure.
484  */
485 static void
486 mlx5_flow_destroy_counter_stat_mem_mng(struct mlx5_counter_stats_mem_mng *mng)
487 {
488         uint8_t *mem = (uint8_t *)(uintptr_t)mng->raws[0].data;
489
490         LIST_REMOVE(mng, next);
491         claim_zero(mlx5_devx_cmd_destroy(mng->dm));
492         claim_zero(mlx5_glue->devx_umem_dereg(mng->umem));
493         mlx5_free(mem);
494 }
495
496 /**
497  * Close and release all the resources of the counters management.
498  *
499  * @param[in] sh
500  *   Pointer to mlx5_dev_ctx_shared object to free.
501  */
502 static void
503 mlx5_flow_counters_mng_close(struct mlx5_dev_ctx_shared *sh)
504 {
505         struct mlx5_counter_stats_mem_mng *mng;
506         int i;
507         int j;
508         int retries = 1024;
509
510         rte_errno = 0;
511         while (--retries) {
512                 rte_eal_alarm_cancel(mlx5_flow_query_alarm, sh);
513                 if (rte_errno != EINPROGRESS)
514                         break;
515                 rte_pause();
516         }
517         for (i = 0; i < MLX5_CCONT_TYPE_MAX; ++i) {
518                 struct mlx5_flow_counter_pool *pool;
519                 uint32_t batch = !!(i > 1);
520
521                 if (!sh->cmng.ccont[i].pools)
522                         continue;
523                 pool = TAILQ_FIRST(&sh->cmng.ccont[i].pool_list);
524                 while (pool) {
525                         if (batch && pool->min_dcs)
526                                 claim_zero(mlx5_devx_cmd_destroy
527                                                                (pool->min_dcs));
528                         for (j = 0; j < MLX5_COUNTERS_PER_POOL; ++j) {
529                                 if (MLX5_POOL_GET_CNT(pool, j)->action)
530                                         claim_zero
531                                          (mlx5_glue->destroy_flow_action
532                                           (MLX5_POOL_GET_CNT
533                                           (pool, j)->action));
534                                 if (!batch && MLX5_GET_POOL_CNT_EXT
535                                     (pool, j)->dcs)
536                                         claim_zero(mlx5_devx_cmd_destroy
537                                                    (MLX5_GET_POOL_CNT_EXT
538                                                     (pool, j)->dcs));
539                         }
540                         TAILQ_REMOVE(&sh->cmng.ccont[i].pool_list, pool, next);
541                         mlx5_free(pool);
542                         pool = TAILQ_FIRST(&sh->cmng.ccont[i].pool_list);
543                 }
544                 mlx5_free(sh->cmng.ccont[i].pools);
545         }
546         mng = LIST_FIRST(&sh->cmng.mem_mngs);
547         while (mng) {
548                 mlx5_flow_destroy_counter_stat_mem_mng(mng);
549                 mng = LIST_FIRST(&sh->cmng.mem_mngs);
550         }
551         memset(&sh->cmng, 0, sizeof(sh->cmng));
552 }
553
554 /**
555  * Initialize the flow resources' indexed mempool.
556  *
557  * @param[in] sh
558  *   Pointer to mlx5_dev_ctx_shared object.
559  * @param[in] sh
560  *   Pointer to user dev config.
561  */
562 static void
563 mlx5_flow_ipool_create(struct mlx5_dev_ctx_shared *sh,
564                        const struct mlx5_dev_config *config)
565 {
566         uint8_t i;
567         struct mlx5_indexed_pool_config cfg;
568
569         for (i = 0; i < MLX5_IPOOL_MAX; ++i) {
570                 cfg = mlx5_ipool_cfg[i];
571                 switch (i) {
572                 default:
573                         break;
574                 /*
575                  * Set MLX5_IPOOL_MLX5_FLOW ipool size
576                  * according to PCI function flow configuration.
577                  */
578                 case MLX5_IPOOL_MLX5_FLOW:
579                         cfg.size = config->dv_flow_en ?
580                                 sizeof(struct mlx5_flow_handle) :
581                                 MLX5_FLOW_HANDLE_VERBS_SIZE;
582                         break;
583                 }
584                 if (config->reclaim_mode)
585                         cfg.release_mem_en = 1;
586                 sh->ipool[i] = mlx5_ipool_create(&cfg);
587         }
588 }
589
590 /**
591  * Release the flow resources' indexed mempool.
592  *
593  * @param[in] sh
594  *   Pointer to mlx5_dev_ctx_shared object.
595  */
596 static void
597 mlx5_flow_ipool_destroy(struct mlx5_dev_ctx_shared *sh)
598 {
599         uint8_t i;
600
601         for (i = 0; i < MLX5_IPOOL_MAX; ++i)
602                 mlx5_ipool_destroy(sh->ipool[i]);
603 }
604
605 /*
606  * Check if dynamic flex parser for eCPRI already exists.
607  *
608  * @param dev
609  *   Pointer to Ethernet device structure.
610  *
611  * @return
612  *   true on exists, false on not.
613  */
614 bool
615 mlx5_flex_parser_ecpri_exist(struct rte_eth_dev *dev)
616 {
617         struct mlx5_priv *priv = dev->data->dev_private;
618         struct mlx5_flex_parser_profiles *prf =
619                                 &priv->sh->fp[MLX5_FLEX_PARSER_ECPRI_0];
620
621         return !!prf->obj;
622 }
623
624 /*
625  * Allocation of a flex parser for eCPRI. Once created, this parser related
626  * resources will be held until the device is closed.
627  *
628  * @param dev
629  *   Pointer to Ethernet device structure.
630  *
631  * @return
632  *   0 on success, a negative errno value otherwise and rte_errno is set.
633  */
634 int
635 mlx5_flex_parser_ecpri_alloc(struct rte_eth_dev *dev)
636 {
637         struct mlx5_priv *priv = dev->data->dev_private;
638         struct mlx5_flex_parser_profiles *prf =
639                                 &priv->sh->fp[MLX5_FLEX_PARSER_ECPRI_0];
640         struct mlx5_devx_graph_node_attr node = {
641                 .modify_field_select = 0,
642         };
643         uint32_t ids[8];
644         int ret;
645
646         if (!priv->config.hca_attr.parse_graph_flex_node) {
647                 DRV_LOG(ERR, "Dynamic flex parser is not supported "
648                         "for device %s.", priv->dev_data->name);
649                 return -ENOTSUP;
650         }
651         node.header_length_mode = MLX5_GRAPH_NODE_LEN_FIXED;
652         /* 8 bytes now: 4B common header + 4B message body header. */
653         node.header_length_base_value = 0x8;
654         /* After MAC layer: Ether / VLAN. */
655         node.in[0].arc_parse_graph_node = MLX5_GRAPH_ARC_NODE_MAC;
656         /* Type of compared condition should be 0xAEFE in the L2 layer. */
657         node.in[0].compare_condition_value = RTE_ETHER_TYPE_ECPRI;
658         /* Sample #0: type in common header. */
659         node.sample[0].flow_match_sample_en = 1;
660         /* Fixed offset. */
661         node.sample[0].flow_match_sample_offset_mode = 0x0;
662         /* Only the 2nd byte will be used. */
663         node.sample[0].flow_match_sample_field_base_offset = 0x0;
664         /* Sample #1: message payload. */
665         node.sample[1].flow_match_sample_en = 1;
666         /* Fixed offset. */
667         node.sample[1].flow_match_sample_offset_mode = 0x0;
668         /*
669          * Only the first two bytes will be used right now, and its offset will
670          * start after the common header that with the length of a DW(u32).
671          */
672         node.sample[1].flow_match_sample_field_base_offset = sizeof(uint32_t);
673         prf->obj = mlx5_devx_cmd_create_flex_parser(priv->sh->ctx, &node);
674         if (!prf->obj) {
675                 DRV_LOG(ERR, "Failed to create flex parser node object.");
676                 return (rte_errno == 0) ? -ENODEV : -rte_errno;
677         }
678         prf->num = 2;
679         ret = mlx5_devx_cmd_query_parse_samples(prf->obj, ids, prf->num);
680         if (ret) {
681                 DRV_LOG(ERR, "Failed to query sample IDs.");
682                 return (rte_errno == 0) ? -ENODEV : -rte_errno;
683         }
684         prf->offset[0] = 0x0;
685         prf->offset[1] = sizeof(uint32_t);
686         prf->ids[0] = ids[0];
687         prf->ids[1] = ids[1];
688         return 0;
689 }
690
691 /*
692  * Destroy the flex parser node, including the parser itself, input / output
693  * arcs and DW samples. Resources could be reused then.
694  *
695  * @param dev
696  *   Pointer to Ethernet device structure.
697  */
698 static void
699 mlx5_flex_parser_ecpri_release(struct rte_eth_dev *dev)
700 {
701         struct mlx5_priv *priv = dev->data->dev_private;
702         struct mlx5_flex_parser_profiles *prf =
703                                 &priv->sh->fp[MLX5_FLEX_PARSER_ECPRI_0];
704
705         if (prf->obj)
706                 mlx5_devx_cmd_destroy(prf->obj);
707         prf->obj = NULL;
708 }
709
710 /**
711  * Allocate shared device context. If there is multiport device the
712  * master and representors will share this context, if there is single
713  * port dedicated device, the context will be used by only given
714  * port due to unification.
715  *
716  * Routine first searches the context for the specified device name,
717  * if found the shared context assumed and reference counter is incremented.
718  * If no context found the new one is created and initialized with specified
719  * device context and parameters.
720  *
721  * @param[in] spawn
722  *   Pointer to the device attributes (name, port, etc).
723  * @param[in] config
724  *   Pointer to device configuration structure.
725  *
726  * @return
727  *   Pointer to mlx5_dev_ctx_shared object on success,
728  *   otherwise NULL and rte_errno is set.
729  */
730 struct mlx5_dev_ctx_shared *
731 mlx5_alloc_shared_dev_ctx(const struct mlx5_dev_spawn_data *spawn,
732                            const struct mlx5_dev_config *config)
733 {
734         struct mlx5_dev_ctx_shared *sh;
735         int err = 0;
736         uint32_t i;
737         struct mlx5_devx_tis_attr tis_attr = { 0 };
738
739         MLX5_ASSERT(spawn);
740         /* Secondary process should not create the shared context. */
741         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
742         pthread_mutex_lock(&mlx5_dev_ctx_list_mutex);
743         /* Search for IB context by device name. */
744         LIST_FOREACH(sh, &mlx5_dev_ctx_list, next) {
745                 if (!strcmp(sh->ibdev_name,
746                         mlx5_os_get_dev_device_name(spawn->phys_dev))) {
747                         sh->refcnt++;
748                         goto exit;
749                 }
750         }
751         /* No device found, we have to create new shared context. */
752         MLX5_ASSERT(spawn->max_port);
753         sh = mlx5_malloc(MLX5_MEM_ZERO | MLX5_MEM_RTE,
754                          sizeof(struct mlx5_dev_ctx_shared) +
755                          spawn->max_port *
756                          sizeof(struct mlx5_dev_shared_port),
757                          RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
758         if (!sh) {
759                 DRV_LOG(ERR, "shared context allocation failure");
760                 rte_errno  = ENOMEM;
761                 goto exit;
762         }
763         err = mlx5_os_open_device(spawn, config, sh);
764         if (!sh->ctx)
765                 goto error;
766         err = mlx5_os_get_dev_attr(sh->ctx, &sh->device_attr);
767         if (err) {
768                 DRV_LOG(DEBUG, "mlx5_os_get_dev_attr() failed");
769                 goto error;
770         }
771         sh->refcnt = 1;
772         sh->max_port = spawn->max_port;
773         strncpy(sh->ibdev_name, mlx5_os_get_ctx_device_name(sh->ctx),
774                 sizeof(sh->ibdev_name) - 1);
775         strncpy(sh->ibdev_path, mlx5_os_get_ctx_device_path(sh->ctx),
776                 sizeof(sh->ibdev_path) - 1);
777         /*
778          * Setting port_id to max unallowed value means
779          * there is no interrupt subhandler installed for
780          * the given port index i.
781          */
782         for (i = 0; i < sh->max_port; i++) {
783                 sh->port[i].ih_port_id = RTE_MAX_ETHPORTS;
784                 sh->port[i].devx_ih_port_id = RTE_MAX_ETHPORTS;
785         }
786         sh->pd = mlx5_glue->alloc_pd(sh->ctx);
787         if (sh->pd == NULL) {
788                 DRV_LOG(ERR, "PD allocation failure");
789                 err = ENOMEM;
790                 goto error;
791         }
792         if (sh->devx) {
793                 err = mlx5_os_get_pdn(sh->pd, &sh->pdn);
794                 if (err) {
795                         DRV_LOG(ERR, "Fail to extract pdn from PD");
796                         goto error;
797                 }
798                 sh->td = mlx5_devx_cmd_create_td(sh->ctx);
799                 if (!sh->td) {
800                         DRV_LOG(ERR, "TD allocation failure");
801                         err = ENOMEM;
802                         goto error;
803                 }
804                 tis_attr.transport_domain = sh->td->id;
805                 sh->tis = mlx5_devx_cmd_create_tis(sh->ctx, &tis_attr);
806                 if (!sh->tis) {
807                         DRV_LOG(ERR, "TIS allocation failure");
808                         err = ENOMEM;
809                         goto error;
810                 }
811                 sh->tx_uar = mlx5_glue->devx_alloc_uar(sh->ctx, 0);
812                 if (!sh->tx_uar) {
813                         DRV_LOG(ERR, "Failed to allocate DevX UAR.");
814                         err = ENOMEM;
815                         goto error;
816                 }
817                 sh->devx_rx_uar = mlx5_glue->devx_alloc_uar(sh->ctx, 0);
818                 if (!sh->devx_rx_uar) {
819                         DRV_LOG(ERR, "Failed to allocate Rx DevX UAR.");
820                         err = ENOMEM;
821                         goto error;
822                 }
823         }
824         sh->flow_id_pool = mlx5_flow_id_pool_alloc
825                                         ((1 << HAIRPIN_FLOW_ID_BITS) - 1);
826         if (!sh->flow_id_pool) {
827                 DRV_LOG(ERR, "can't create flow id pool");
828                 err = ENOMEM;
829                 goto error;
830         }
831 #ifndef RTE_ARCH_64
832         /* Initialize UAR access locks for 32bit implementations. */
833         rte_spinlock_init(&sh->uar_lock_cq);
834         for (i = 0; i < MLX5_UAR_PAGE_NUM_MAX; i++)
835                 rte_spinlock_init(&sh->uar_lock[i]);
836 #endif
837         /*
838          * Once the device is added to the list of memory event
839          * callback, its global MR cache table cannot be expanded
840          * on the fly because of deadlock. If it overflows, lookup
841          * should be done by searching MR list linearly, which is slow.
842          *
843          * At this point the device is not added to the memory
844          * event list yet, context is just being created.
845          */
846         err = mlx5_mr_btree_init(&sh->share_cache.cache,
847                                  MLX5_MR_BTREE_CACHE_N * 2,
848                                  spawn->pci_dev->device.numa_node);
849         if (err) {
850                 err = rte_errno;
851                 goto error;
852         }
853         mlx5_os_set_reg_mr_cb(&sh->share_cache.reg_mr_cb,
854                               &sh->share_cache.dereg_mr_cb);
855         mlx5_os_dev_shared_handler_install(sh);
856         sh->cnt_id_tbl = mlx5_l3t_create(MLX5_L3T_TYPE_DWORD);
857         if (!sh->cnt_id_tbl) {
858                 err = rte_errno;
859                 goto error;
860         }
861         mlx5_flow_aging_init(sh);
862         mlx5_flow_counters_mng_init(sh);
863         mlx5_flow_ipool_create(sh, config);
864         /* Add device to memory callback list. */
865         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
866         LIST_INSERT_HEAD(&mlx5_shared_data->mem_event_cb_list,
867                          sh, mem_event_cb);
868         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
869         /* Add context to the global device list. */
870         LIST_INSERT_HEAD(&mlx5_dev_ctx_list, sh, next);
871 exit:
872         pthread_mutex_unlock(&mlx5_dev_ctx_list_mutex);
873         return sh;
874 error:
875         pthread_mutex_destroy(&sh->txpp.mutex);
876         pthread_mutex_unlock(&mlx5_dev_ctx_list_mutex);
877         MLX5_ASSERT(sh);
878         if (sh->cnt_id_tbl) {
879                 mlx5_l3t_destroy(sh->cnt_id_tbl);
880                 sh->cnt_id_tbl = NULL;
881         }
882         if (sh->tx_uar) {
883                 mlx5_glue->devx_free_uar(sh->tx_uar);
884                 sh->tx_uar = NULL;
885         }
886         if (sh->tis)
887                 claim_zero(mlx5_devx_cmd_destroy(sh->tis));
888         if (sh->td)
889                 claim_zero(mlx5_devx_cmd_destroy(sh->td));
890         if (sh->devx_rx_uar)
891                 mlx5_glue->devx_free_uar(sh->devx_rx_uar);
892         if (sh->pd)
893                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
894         if (sh->ctx)
895                 claim_zero(mlx5_glue->close_device(sh->ctx));
896         if (sh->flow_id_pool)
897                 mlx5_flow_id_pool_release(sh->flow_id_pool);
898         mlx5_free(sh);
899         MLX5_ASSERT(err > 0);
900         rte_errno = err;
901         return NULL;
902 }
903
904 /**
905  * Free shared IB device context. Decrement counter and if zero free
906  * all allocated resources and close handles.
907  *
908  * @param[in] sh
909  *   Pointer to mlx5_dev_ctx_shared object to free
910  */
911 void
912 mlx5_free_shared_dev_ctx(struct mlx5_dev_ctx_shared *sh)
913 {
914         pthread_mutex_lock(&mlx5_dev_ctx_list_mutex);
915 #ifdef RTE_LIBRTE_MLX5_DEBUG
916         /* Check the object presence in the list. */
917         struct mlx5_dev_ctx_shared *lctx;
918
919         LIST_FOREACH(lctx, &mlx5_dev_ctx_list, next)
920                 if (lctx == sh)
921                         break;
922         MLX5_ASSERT(lctx);
923         if (lctx != sh) {
924                 DRV_LOG(ERR, "Freeing non-existing shared IB context");
925                 goto exit;
926         }
927 #endif
928         MLX5_ASSERT(sh);
929         MLX5_ASSERT(sh->refcnt);
930         /* Secondary process should not free the shared context. */
931         MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
932         if (--sh->refcnt)
933                 goto exit;
934         /* Remove from memory callback device list. */
935         rte_rwlock_write_lock(&mlx5_shared_data->mem_event_rwlock);
936         LIST_REMOVE(sh, mem_event_cb);
937         rte_rwlock_write_unlock(&mlx5_shared_data->mem_event_rwlock);
938         /* Release created Memory Regions. */
939         mlx5_mr_release_cache(&sh->share_cache);
940         /* Remove context from the global device list. */
941         LIST_REMOVE(sh, next);
942         pthread_mutex_unlock(&mlx5_dev_ctx_list_mutex);
943         /*
944          *  Ensure there is no async event handler installed.
945          *  Only primary process handles async device events.
946          **/
947         mlx5_flow_counters_mng_close(sh);
948         mlx5_flow_ipool_destroy(sh);
949         mlx5_os_dev_shared_handler_uninstall(sh);
950         if (sh->cnt_id_tbl) {
951                 mlx5_l3t_destroy(sh->cnt_id_tbl);
952                 sh->cnt_id_tbl = NULL;
953         }
954         if (sh->tx_uar) {
955                 mlx5_glue->devx_free_uar(sh->tx_uar);
956                 sh->tx_uar = NULL;
957         }
958         if (sh->pd)
959                 claim_zero(mlx5_glue->dealloc_pd(sh->pd));
960         if (sh->tis)
961                 claim_zero(mlx5_devx_cmd_destroy(sh->tis));
962         if (sh->td)
963                 claim_zero(mlx5_devx_cmd_destroy(sh->td));
964         if (sh->devx_rx_uar)
965                 mlx5_glue->devx_free_uar(sh->devx_rx_uar);
966         if (sh->ctx)
967                 claim_zero(mlx5_glue->close_device(sh->ctx));
968         if (sh->flow_id_pool)
969                 mlx5_flow_id_pool_release(sh->flow_id_pool);
970         pthread_mutex_destroy(&sh->txpp.mutex);
971         mlx5_free(sh);
972         return;
973 exit:
974         pthread_mutex_unlock(&mlx5_dev_ctx_list_mutex);
975 }
976
977 /**
978  * Destroy table hash list and all the root entries per domain.
979  *
980  * @param[in] priv
981  *   Pointer to the private device data structure.
982  */
983 void
984 mlx5_free_table_hash_list(struct mlx5_priv *priv)
985 {
986         struct mlx5_dev_ctx_shared *sh = priv->sh;
987         struct mlx5_flow_tbl_data_entry *tbl_data;
988         union mlx5_flow_tbl_key table_key = {
989                 {
990                         .table_id = 0,
991                         .reserved = 0,
992                         .domain = 0,
993                         .direction = 0,
994                 }
995         };
996         struct mlx5_hlist_entry *pos;
997
998         if (!sh->flow_tbls)
999                 return;
1000         pos = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64);
1001         if (pos) {
1002                 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
1003                                         entry);
1004                 MLX5_ASSERT(tbl_data);
1005                 mlx5_hlist_remove(sh->flow_tbls, pos);
1006                 mlx5_free(tbl_data);
1007         }
1008         table_key.direction = 1;
1009         pos = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64);
1010         if (pos) {
1011                 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
1012                                         entry);
1013                 MLX5_ASSERT(tbl_data);
1014                 mlx5_hlist_remove(sh->flow_tbls, pos);
1015                 mlx5_free(tbl_data);
1016         }
1017         table_key.direction = 0;
1018         table_key.domain = 1;
1019         pos = mlx5_hlist_lookup(sh->flow_tbls, table_key.v64);
1020         if (pos) {
1021                 tbl_data = container_of(pos, struct mlx5_flow_tbl_data_entry,
1022                                         entry);
1023                 MLX5_ASSERT(tbl_data);
1024                 mlx5_hlist_remove(sh->flow_tbls, pos);
1025                 mlx5_free(tbl_data);
1026         }
1027         mlx5_hlist_destroy(sh->flow_tbls, NULL, NULL);
1028 }
1029
1030 /**
1031  * Initialize flow table hash list and create the root tables entry
1032  * for each domain.
1033  *
1034  * @param[in] priv
1035  *   Pointer to the private device data structure.
1036  *
1037  * @return
1038  *   Zero on success, positive error code otherwise.
1039  */
1040 int
1041 mlx5_alloc_table_hash_list(struct mlx5_priv *priv)
1042 {
1043         struct mlx5_dev_ctx_shared *sh = priv->sh;
1044         char s[MLX5_HLIST_NAMESIZE];
1045         int err = 0;
1046
1047         MLX5_ASSERT(sh);
1048         snprintf(s, sizeof(s), "%s_flow_table", priv->sh->ibdev_name);
1049         sh->flow_tbls = mlx5_hlist_create(s, MLX5_FLOW_TABLE_HLIST_ARRAY_SIZE);
1050         if (!sh->flow_tbls) {
1051                 DRV_LOG(ERR, "flow tables with hash creation failed.");
1052                 err = ENOMEM;
1053                 return err;
1054         }
1055 #ifndef HAVE_MLX5DV_DR
1056         /*
1057          * In case we have not DR support, the zero tables should be created
1058          * because DV expect to see them even if they cannot be created by
1059          * RDMA-CORE.
1060          */
1061         union mlx5_flow_tbl_key table_key = {
1062                 {
1063                         .table_id = 0,
1064                         .reserved = 0,
1065                         .domain = 0,
1066                         .direction = 0,
1067                 }
1068         };
1069         struct mlx5_flow_tbl_data_entry *tbl_data = mlx5_malloc(MLX5_MEM_ZERO,
1070                                                           sizeof(*tbl_data), 0,
1071                                                           SOCKET_ID_ANY);
1072
1073         if (!tbl_data) {
1074                 err = ENOMEM;
1075                 goto error;
1076         }
1077         tbl_data->entry.key = table_key.v64;
1078         err = mlx5_hlist_insert(sh->flow_tbls, &tbl_data->entry);
1079         if (err)
1080                 goto error;
1081         rte_atomic32_init(&tbl_data->tbl.refcnt);
1082         rte_atomic32_inc(&tbl_data->tbl.refcnt);
1083         table_key.direction = 1;
1084         tbl_data = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*tbl_data), 0,
1085                                SOCKET_ID_ANY);
1086         if (!tbl_data) {
1087                 err = ENOMEM;
1088                 goto error;
1089         }
1090         tbl_data->entry.key = table_key.v64;
1091         err = mlx5_hlist_insert(sh->flow_tbls, &tbl_data->entry);
1092         if (err)
1093                 goto error;
1094         rte_atomic32_init(&tbl_data->tbl.refcnt);
1095         rte_atomic32_inc(&tbl_data->tbl.refcnt);
1096         table_key.direction = 0;
1097         table_key.domain = 1;
1098         tbl_data = mlx5_malloc(MLX5_MEM_ZERO, sizeof(*tbl_data), 0,
1099                                SOCKET_ID_ANY);
1100         if (!tbl_data) {
1101                 err = ENOMEM;
1102                 goto error;
1103         }
1104         tbl_data->entry.key = table_key.v64;
1105         err = mlx5_hlist_insert(sh->flow_tbls, &tbl_data->entry);
1106         if (err)
1107                 goto error;
1108         rte_atomic32_init(&tbl_data->tbl.refcnt);
1109         rte_atomic32_inc(&tbl_data->tbl.refcnt);
1110         return err;
1111 error:
1112         mlx5_free_table_hash_list(priv);
1113 #endif /* HAVE_MLX5DV_DR */
1114         return err;
1115 }
1116
1117 /**
1118  * Retrieve integer value from environment variable.
1119  *
1120  * @param[in] name
1121  *   Environment variable name.
1122  *
1123  * @return
1124  *   Integer value, 0 if the variable is not set.
1125  */
1126 int
1127 mlx5_getenv_int(const char *name)
1128 {
1129         const char *val = getenv(name);
1130
1131         if (val == NULL)
1132                 return 0;
1133         return atoi(val);
1134 }
1135
1136 /**
1137  * DPDK callback to add udp tunnel port
1138  *
1139  * @param[in] dev
1140  *   A pointer to eth_dev
1141  * @param[in] udp_tunnel
1142  *   A pointer to udp tunnel
1143  *
1144  * @return
1145  *   0 on valid udp ports and tunnels, -ENOTSUP otherwise.
1146  */
1147 int
1148 mlx5_udp_tunnel_port_add(struct rte_eth_dev *dev __rte_unused,
1149                          struct rte_eth_udp_tunnel *udp_tunnel)
1150 {
1151         MLX5_ASSERT(udp_tunnel != NULL);
1152         if (udp_tunnel->prot_type == RTE_TUNNEL_TYPE_VXLAN &&
1153             udp_tunnel->udp_port == 4789)
1154                 return 0;
1155         if (udp_tunnel->prot_type == RTE_TUNNEL_TYPE_VXLAN_GPE &&
1156             udp_tunnel->udp_port == 4790)
1157                 return 0;
1158         return -ENOTSUP;
1159 }
1160
1161 /**
1162  * Initialize process private data structure.
1163  *
1164  * @param dev
1165  *   Pointer to Ethernet device structure.
1166  *
1167  * @return
1168  *   0 on success, a negative errno value otherwise and rte_errno is set.
1169  */
1170 int
1171 mlx5_proc_priv_init(struct rte_eth_dev *dev)
1172 {
1173         struct mlx5_priv *priv = dev->data->dev_private;
1174         struct mlx5_proc_priv *ppriv;
1175         size_t ppriv_size;
1176
1177         /*
1178          * UAR register table follows the process private structure. BlueFlame
1179          * registers for Tx queues are stored in the table.
1180          */
1181         ppriv_size =
1182                 sizeof(struct mlx5_proc_priv) + priv->txqs_n * sizeof(void *);
1183         ppriv = mlx5_malloc(MLX5_MEM_RTE, ppriv_size, RTE_CACHE_LINE_SIZE,
1184                             dev->device->numa_node);
1185         if (!ppriv) {
1186                 rte_errno = ENOMEM;
1187                 return -rte_errno;
1188         }
1189         ppriv->uar_table_sz = ppriv_size;
1190         dev->process_private = ppriv;
1191         return 0;
1192 }
1193
1194 /**
1195  * Un-initialize process private data structure.
1196  *
1197  * @param dev
1198  *   Pointer to Ethernet device structure.
1199  */
1200 static void
1201 mlx5_proc_priv_uninit(struct rte_eth_dev *dev)
1202 {
1203         if (!dev->process_private)
1204                 return;
1205         mlx5_free(dev->process_private);
1206         dev->process_private = NULL;
1207 }
1208
1209 /**
1210  * DPDK callback to close the device.
1211  *
1212  * Destroy all queues and objects, free memory.
1213  *
1214  * @param dev
1215  *   Pointer to Ethernet device structure.
1216  */
1217 void
1218 mlx5_dev_close(struct rte_eth_dev *dev)
1219 {
1220         struct mlx5_priv *priv = dev->data->dev_private;
1221         unsigned int i;
1222         int ret;
1223
1224         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
1225                 /* Check if process_private released. */
1226                 if (!dev->process_private)
1227                         return;
1228                 mlx5_tx_uar_uninit_secondary(dev);
1229                 mlx5_proc_priv_uninit(dev);
1230                 rte_eth_dev_release_port(dev);
1231                 return;
1232         }
1233         if (!priv->sh)
1234                 return;
1235         DRV_LOG(DEBUG, "port %u closing device \"%s\"",
1236                 dev->data->port_id,
1237                 ((priv->sh->ctx != NULL) ?
1238                 mlx5_os_get_ctx_device_name(priv->sh->ctx) : ""));
1239         /*
1240          * If default mreg copy action is removed at the stop stage,
1241          * the search will return none and nothing will be done anymore.
1242          */
1243         mlx5_flow_stop_default(dev);
1244         mlx5_traffic_disable(dev);
1245         /*
1246          * If all the flows are already flushed in the device stop stage,
1247          * then this will return directly without any action.
1248          */
1249         mlx5_flow_list_flush(dev, &priv->flows, true);
1250         mlx5_flow_meter_flush(dev, NULL);
1251         /* Free the intermediate buffers for flow creation. */
1252         mlx5_flow_free_intermediate(dev);
1253         /* Prevent crashes when queues are still in use. */
1254         dev->rx_pkt_burst = removed_rx_burst;
1255         dev->tx_pkt_burst = removed_tx_burst;
1256         rte_wmb();
1257         /* Disable datapath on secondary process. */
1258         mlx5_mp_os_req_stop_rxtx(dev);
1259         /* Free the eCPRI flex parser resource. */
1260         mlx5_flex_parser_ecpri_release(dev);
1261         if (priv->rxqs != NULL) {
1262                 /* XXX race condition if mlx5_rx_burst() is still running. */
1263                 usleep(1000);
1264                 for (i = 0; (i != priv->rxqs_n); ++i)
1265                         mlx5_rxq_release(dev, i);
1266                 priv->rxqs_n = 0;
1267                 priv->rxqs = NULL;
1268         }
1269         if (priv->txqs != NULL) {
1270                 /* XXX race condition if mlx5_tx_burst() is still running. */
1271                 usleep(1000);
1272                 for (i = 0; (i != priv->txqs_n); ++i)
1273                         mlx5_txq_release(dev, i);
1274                 priv->txqs_n = 0;
1275                 priv->txqs = NULL;
1276         }
1277         mlx5_proc_priv_uninit(dev);
1278         if (priv->mreg_cp_tbl)
1279                 mlx5_hlist_destroy(priv->mreg_cp_tbl, NULL, NULL);
1280         mlx5_mprq_free_mp(dev);
1281         mlx5_os_free_shared_dr(priv);
1282         if (priv->rss_conf.rss_key != NULL)
1283                 mlx5_free(priv->rss_conf.rss_key);
1284         if (priv->reta_idx != NULL)
1285                 mlx5_free(priv->reta_idx);
1286         if (priv->config.vf)
1287                 mlx5_nl_mac_addr_flush(priv->nl_socket_route, mlx5_ifindex(dev),
1288                                        dev->data->mac_addrs,
1289                                        MLX5_MAX_MAC_ADDRESSES, priv->mac_own);
1290         if (priv->nl_socket_route >= 0)
1291                 close(priv->nl_socket_route);
1292         if (priv->nl_socket_rdma >= 0)
1293                 close(priv->nl_socket_rdma);
1294         if (priv->vmwa_context)
1295                 mlx5_vlan_vmwa_exit(priv->vmwa_context);
1296         ret = mlx5_hrxq_verify(dev);
1297         if (ret)
1298                 DRV_LOG(WARNING, "port %u some hash Rx queue still remain",
1299                         dev->data->port_id);
1300         ret = mlx5_ind_table_obj_verify(dev);
1301         if (ret)
1302                 DRV_LOG(WARNING, "port %u some indirection table still remain",
1303                         dev->data->port_id);
1304         ret = mlx5_rxq_obj_verify(dev);
1305         if (ret)
1306                 DRV_LOG(WARNING, "port %u some Rx queue objects still remain",
1307                         dev->data->port_id);
1308         ret = mlx5_rxq_verify(dev);
1309         if (ret)
1310                 DRV_LOG(WARNING, "port %u some Rx queues still remain",
1311                         dev->data->port_id);
1312         ret = mlx5_txq_obj_verify(dev);
1313         if (ret)
1314                 DRV_LOG(WARNING, "port %u some Verbs Tx queue still remain",
1315                         dev->data->port_id);
1316         ret = mlx5_txq_verify(dev);
1317         if (ret)
1318                 DRV_LOG(WARNING, "port %u some Tx queues still remain",
1319                         dev->data->port_id);
1320         ret = mlx5_flow_verify(dev);
1321         if (ret)
1322                 DRV_LOG(WARNING, "port %u some flows still remain",
1323                         dev->data->port_id);
1324         /*
1325          * Free the shared context in last turn, because the cleanup
1326          * routines above may use some shared fields, like
1327          * mlx5_nl_mac_addr_flush() uses ibdev_path for retrieveing
1328          * ifindex if Netlink fails.
1329          */
1330         mlx5_free_shared_dev_ctx(priv->sh);
1331         if (priv->domain_id != RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
1332                 unsigned int c = 0;
1333                 uint16_t port_id;
1334
1335                 MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
1336                         struct mlx5_priv *opriv =
1337                                 rte_eth_devices[port_id].data->dev_private;
1338
1339                         if (!opriv ||
1340                             opriv->domain_id != priv->domain_id ||
1341                             &rte_eth_devices[port_id] == dev)
1342                                 continue;
1343                         ++c;
1344                         break;
1345                 }
1346                 if (!c)
1347                         claim_zero(rte_eth_switch_domain_free(priv->domain_id));
1348         }
1349         memset(priv, 0, sizeof(*priv));
1350         priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
1351         /*
1352          * Reset mac_addrs to NULL such that it is not freed as part of
1353          * rte_eth_dev_release_port(). mac_addrs is part of dev_private so
1354          * it is freed when dev_private is freed.
1355          */
1356         dev->data->mac_addrs = NULL;
1357 }
1358
1359 /**
1360  * Verify and store value for device argument.
1361  *
1362  * @param[in] key
1363  *   Key argument to verify.
1364  * @param[in] val
1365  *   Value associated with key.
1366  * @param opaque
1367  *   User data.
1368  *
1369  * @return
1370  *   0 on success, a negative errno value otherwise and rte_errno is set.
1371  */
1372 static int
1373 mlx5_args_check(const char *key, const char *val, void *opaque)
1374 {
1375         struct mlx5_dev_config *config = opaque;
1376         unsigned long mod;
1377         signed long tmp;
1378
1379         /* No-op, port representors are processed in mlx5_dev_spawn(). */
1380         if (!strcmp(MLX5_REPRESENTOR, key))
1381                 return 0;
1382         errno = 0;
1383         tmp = strtol(val, NULL, 0);
1384         if (errno) {
1385                 rte_errno = errno;
1386                 DRV_LOG(WARNING, "%s: \"%s\" is not a valid integer", key, val);
1387                 return -rte_errno;
1388         }
1389         if (tmp < 0 && strcmp(MLX5_TX_PP, key) && strcmp(MLX5_TX_SKEW, key)) {
1390                 /* Negative values are acceptable for some keys only. */
1391                 rte_errno = EINVAL;
1392                 DRV_LOG(WARNING, "%s: invalid negative value \"%s\"", key, val);
1393                 return -rte_errno;
1394         }
1395         mod = tmp >= 0 ? tmp : -tmp;
1396         if (strcmp(MLX5_RXQ_CQE_COMP_EN, key) == 0) {
1397                 config->cqe_comp = !!tmp;
1398         } else if (strcmp(MLX5_RXQ_CQE_PAD_EN, key) == 0) {
1399                 config->cqe_pad = !!tmp;
1400         } else if (strcmp(MLX5_RXQ_PKT_PAD_EN, key) == 0) {
1401                 config->hw_padding = !!tmp;
1402         } else if (strcmp(MLX5_RX_MPRQ_EN, key) == 0) {
1403                 config->mprq.enabled = !!tmp;
1404         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_NUM, key) == 0) {
1405                 config->mprq.stride_num_n = tmp;
1406         } else if (strcmp(MLX5_RX_MPRQ_LOG_STRIDE_SIZE, key) == 0) {
1407                 config->mprq.stride_size_n = tmp;
1408         } else if (strcmp(MLX5_RX_MPRQ_MAX_MEMCPY_LEN, key) == 0) {
1409                 config->mprq.max_memcpy_len = tmp;
1410         } else if (strcmp(MLX5_RXQS_MIN_MPRQ, key) == 0) {
1411                 config->mprq.min_rxqs_num = tmp;
1412         } else if (strcmp(MLX5_TXQ_INLINE, key) == 0) {
1413                 DRV_LOG(WARNING, "%s: deprecated parameter,"
1414                                  " converted to txq_inline_max", key);
1415                 config->txq_inline_max = tmp;
1416         } else if (strcmp(MLX5_TXQ_INLINE_MAX, key) == 0) {
1417                 config->txq_inline_max = tmp;
1418         } else if (strcmp(MLX5_TXQ_INLINE_MIN, key) == 0) {
1419                 config->txq_inline_min = tmp;
1420         } else if (strcmp(MLX5_TXQ_INLINE_MPW, key) == 0) {
1421                 config->txq_inline_mpw = tmp;
1422         } else if (strcmp(MLX5_TXQS_MIN_INLINE, key) == 0) {
1423                 config->txqs_inline = tmp;
1424         } else if (strcmp(MLX5_TXQS_MAX_VEC, key) == 0) {
1425                 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1426         } else if (strcmp(MLX5_TXQ_MPW_EN, key) == 0) {
1427                 config->mps = !!tmp;
1428         } else if (strcmp(MLX5_TX_DB_NC, key) == 0) {
1429                 if (tmp != MLX5_TXDB_CACHED &&
1430                     tmp != MLX5_TXDB_NCACHED &&
1431                     tmp != MLX5_TXDB_HEURISTIC) {
1432                         DRV_LOG(ERR, "invalid Tx doorbell "
1433                                      "mapping parameter");
1434                         rte_errno = EINVAL;
1435                         return -rte_errno;
1436                 }
1437                 config->dbnc = tmp;
1438         } else if (strcmp(MLX5_TXQ_MPW_HDR_DSEG_EN, key) == 0) {
1439                 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1440         } else if (strcmp(MLX5_TXQ_MAX_INLINE_LEN, key) == 0) {
1441                 DRV_LOG(WARNING, "%s: deprecated parameter,"
1442                                  " converted to txq_inline_mpw", key);
1443                 config->txq_inline_mpw = tmp;
1444         } else if (strcmp(MLX5_TX_VEC_EN, key) == 0) {
1445                 DRV_LOG(WARNING, "%s: deprecated parameter, ignored", key);
1446         } else if (strcmp(MLX5_TX_PP, key) == 0) {
1447                 if (!mod) {
1448                         DRV_LOG(ERR, "Zero Tx packet pacing parameter");
1449                         rte_errno = EINVAL;
1450                         return -rte_errno;
1451                 }
1452                 config->tx_pp = tmp;
1453         } else if (strcmp(MLX5_TX_SKEW, key) == 0) {
1454                 config->tx_skew = tmp;
1455         } else if (strcmp(MLX5_RX_VEC_EN, key) == 0) {
1456                 config->rx_vec_en = !!tmp;
1457         } else if (strcmp(MLX5_L3_VXLAN_EN, key) == 0) {
1458                 config->l3_vxlan_en = !!tmp;
1459         } else if (strcmp(MLX5_VF_NL_EN, key) == 0) {
1460                 config->vf_nl_en = !!tmp;
1461         } else if (strcmp(MLX5_DV_ESW_EN, key) == 0) {
1462                 config->dv_esw_en = !!tmp;
1463         } else if (strcmp(MLX5_DV_FLOW_EN, key) == 0) {
1464                 config->dv_flow_en = !!tmp;
1465         } else if (strcmp(MLX5_DV_XMETA_EN, key) == 0) {
1466                 if (tmp != MLX5_XMETA_MODE_LEGACY &&
1467                     tmp != MLX5_XMETA_MODE_META16 &&
1468                     tmp != MLX5_XMETA_MODE_META32) {
1469                         DRV_LOG(ERR, "invalid extensive "
1470                                      "metadata parameter");
1471                         rte_errno = EINVAL;
1472                         return -rte_errno;
1473                 }
1474                 config->dv_xmeta_en = tmp;
1475         } else if (strcmp(MLX5_LACP_BY_USER, key) == 0) {
1476                 config->lacp_by_user = !!tmp;
1477         } else if (strcmp(MLX5_MR_EXT_MEMSEG_EN, key) == 0) {
1478                 config->mr_ext_memseg_en = !!tmp;
1479         } else if (strcmp(MLX5_MAX_DUMP_FILES_NUM, key) == 0) {
1480                 config->max_dump_files_num = tmp;
1481         } else if (strcmp(MLX5_LRO_TIMEOUT_USEC, key) == 0) {
1482                 config->lro.timeout = tmp;
1483         } else if (strcmp(MLX5_CLASS_ARG_NAME, key) == 0) {
1484                 DRV_LOG(DEBUG, "class argument is %s.", val);
1485         } else if (strcmp(MLX5_HP_BUF_SIZE, key) == 0) {
1486                 config->log_hp_size = tmp;
1487         } else if (strcmp(MLX5_RECLAIM_MEM, key) == 0) {
1488                 if (tmp != MLX5_RCM_NONE &&
1489                     tmp != MLX5_RCM_LIGHT &&
1490                     tmp != MLX5_RCM_AGGR) {
1491                         DRV_LOG(ERR, "Unrecognize %s: \"%s\"", key, val);
1492                         rte_errno = EINVAL;
1493                         return -rte_errno;
1494                 }
1495                 config->reclaim_mode = tmp;
1496         } else if (strcmp(MLX5_SYS_MEM_EN, key) == 0) {
1497                 config->sys_mem_en = !!tmp;
1498         } else if (strcmp(MLX5_DECAP_EN, key) == 0) {
1499                 config->decap_en = !!tmp;
1500         } else {
1501                 DRV_LOG(WARNING, "%s: unknown parameter", key);
1502                 rte_errno = EINVAL;
1503                 return -rte_errno;
1504         }
1505         return 0;
1506 }
1507
1508 /**
1509  * Parse device parameters.
1510  *
1511  * @param config
1512  *   Pointer to device configuration structure.
1513  * @param devargs
1514  *   Device arguments structure.
1515  *
1516  * @return
1517  *   0 on success, a negative errno value otherwise and rte_errno is set.
1518  */
1519 int
1520 mlx5_args(struct mlx5_dev_config *config, struct rte_devargs *devargs)
1521 {
1522         const char **params = (const char *[]){
1523                 MLX5_RXQ_CQE_COMP_EN,
1524                 MLX5_RXQ_CQE_PAD_EN,
1525                 MLX5_RXQ_PKT_PAD_EN,
1526                 MLX5_RX_MPRQ_EN,
1527                 MLX5_RX_MPRQ_LOG_STRIDE_NUM,
1528                 MLX5_RX_MPRQ_LOG_STRIDE_SIZE,
1529                 MLX5_RX_MPRQ_MAX_MEMCPY_LEN,
1530                 MLX5_RXQS_MIN_MPRQ,
1531                 MLX5_TXQ_INLINE,
1532                 MLX5_TXQ_INLINE_MIN,
1533                 MLX5_TXQ_INLINE_MAX,
1534                 MLX5_TXQ_INLINE_MPW,
1535                 MLX5_TXQS_MIN_INLINE,
1536                 MLX5_TXQS_MAX_VEC,
1537                 MLX5_TXQ_MPW_EN,
1538                 MLX5_TXQ_MPW_HDR_DSEG_EN,
1539                 MLX5_TXQ_MAX_INLINE_LEN,
1540                 MLX5_TX_DB_NC,
1541                 MLX5_TX_PP,
1542                 MLX5_TX_SKEW,
1543                 MLX5_TX_VEC_EN,
1544                 MLX5_RX_VEC_EN,
1545                 MLX5_L3_VXLAN_EN,
1546                 MLX5_VF_NL_EN,
1547                 MLX5_DV_ESW_EN,
1548                 MLX5_DV_FLOW_EN,
1549                 MLX5_DV_XMETA_EN,
1550                 MLX5_LACP_BY_USER,
1551                 MLX5_MR_EXT_MEMSEG_EN,
1552                 MLX5_REPRESENTOR,
1553                 MLX5_MAX_DUMP_FILES_NUM,
1554                 MLX5_LRO_TIMEOUT_USEC,
1555                 MLX5_CLASS_ARG_NAME,
1556                 MLX5_HP_BUF_SIZE,
1557                 MLX5_RECLAIM_MEM,
1558                 MLX5_SYS_MEM_EN,
1559                 MLX5_DECAP_EN,
1560                 NULL,
1561         };
1562         struct rte_kvargs *kvlist;
1563         int ret = 0;
1564         int i;
1565
1566         if (devargs == NULL)
1567                 return 0;
1568         /* Following UGLY cast is done to pass checkpatch. */
1569         kvlist = rte_kvargs_parse(devargs->args, params);
1570         if (kvlist == NULL) {
1571                 rte_errno = EINVAL;
1572                 return -rte_errno;
1573         }
1574         /* Process parameters. */
1575         for (i = 0; (params[i] != NULL); ++i) {
1576                 if (rte_kvargs_count(kvlist, params[i])) {
1577                         ret = rte_kvargs_process(kvlist, params[i],
1578                                                  mlx5_args_check, config);
1579                         if (ret) {
1580                                 rte_errno = EINVAL;
1581                                 rte_kvargs_free(kvlist);
1582                                 return -rte_errno;
1583                         }
1584                 }
1585         }
1586         rte_kvargs_free(kvlist);
1587         return 0;
1588 }
1589
1590 /**
1591  * Configures the minimal amount of data to inline into WQE
1592  * while sending packets.
1593  *
1594  * - the txq_inline_min has the maximal priority, if this
1595  *   key is specified in devargs
1596  * - if DevX is enabled the inline mode is queried from the
1597  *   device (HCA attributes and NIC vport context if needed).
1598  * - otherwise L2 mode (18 bytes) is assumed for ConnectX-4/4 Lx
1599  *   and none (0 bytes) for other NICs
1600  *
1601  * @param spawn
1602  *   Verbs device parameters (name, port, switch_info) to spawn.
1603  * @param config
1604  *   Device configuration parameters.
1605  */
1606 void
1607 mlx5_set_min_inline(struct mlx5_dev_spawn_data *spawn,
1608                     struct mlx5_dev_config *config)
1609 {
1610         if (config->txq_inline_min != MLX5_ARG_UNSET) {
1611                 /* Application defines size of inlined data explicitly. */
1612                 switch (spawn->pci_dev->id.device_id) {
1613                 case PCI_DEVICE_ID_MELLANOX_CONNECTX4:
1614                 case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1615                         if (config->txq_inline_min <
1616                                        (int)MLX5_INLINE_HSIZE_L2) {
1617                                 DRV_LOG(DEBUG,
1618                                         "txq_inline_mix aligned to minimal"
1619                                         " ConnectX-4 required value %d",
1620                                         (int)MLX5_INLINE_HSIZE_L2);
1621                                 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1622                         }
1623                         break;
1624                 }
1625                 goto exit;
1626         }
1627         if (config->hca_attr.eth_net_offloads) {
1628                 /* We have DevX enabled, inline mode queried successfully. */
1629                 switch (config->hca_attr.wqe_inline_mode) {
1630                 case MLX5_CAP_INLINE_MODE_L2:
1631                         /* outer L2 header must be inlined. */
1632                         config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1633                         goto exit;
1634                 case MLX5_CAP_INLINE_MODE_NOT_REQUIRED:
1635                         /* No inline data are required by NIC. */
1636                         config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1637                         config->hw_vlan_insert =
1638                                 config->hca_attr.wqe_vlan_insert;
1639                         DRV_LOG(DEBUG, "Tx VLAN insertion is supported");
1640                         goto exit;
1641                 case MLX5_CAP_INLINE_MODE_VPORT_CONTEXT:
1642                         /* inline mode is defined by NIC vport context. */
1643                         if (!config->hca_attr.eth_virt)
1644                                 break;
1645                         switch (config->hca_attr.vport_inline_mode) {
1646                         case MLX5_INLINE_MODE_NONE:
1647                                 config->txq_inline_min =
1648                                         MLX5_INLINE_HSIZE_NONE;
1649                                 goto exit;
1650                         case MLX5_INLINE_MODE_L2:
1651                                 config->txq_inline_min =
1652                                         MLX5_INLINE_HSIZE_L2;
1653                                 goto exit;
1654                         case MLX5_INLINE_MODE_IP:
1655                                 config->txq_inline_min =
1656                                         MLX5_INLINE_HSIZE_L3;
1657                                 goto exit;
1658                         case MLX5_INLINE_MODE_TCP_UDP:
1659                                 config->txq_inline_min =
1660                                         MLX5_INLINE_HSIZE_L4;
1661                                 goto exit;
1662                         case MLX5_INLINE_MODE_INNER_L2:
1663                                 config->txq_inline_min =
1664                                         MLX5_INLINE_HSIZE_INNER_L2;
1665                                 goto exit;
1666                         case MLX5_INLINE_MODE_INNER_IP:
1667                                 config->txq_inline_min =
1668                                         MLX5_INLINE_HSIZE_INNER_L3;
1669                                 goto exit;
1670                         case MLX5_INLINE_MODE_INNER_TCP_UDP:
1671                                 config->txq_inline_min =
1672                                         MLX5_INLINE_HSIZE_INNER_L4;
1673                                 goto exit;
1674                         }
1675                 }
1676         }
1677         /*
1678          * We get here if we are unable to deduce
1679          * inline data size with DevX. Try PCI ID
1680          * to determine old NICs.
1681          */
1682         switch (spawn->pci_dev->id.device_id) {
1683         case PCI_DEVICE_ID_MELLANOX_CONNECTX4:
1684         case PCI_DEVICE_ID_MELLANOX_CONNECTX4VF:
1685         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LX:
1686         case PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF:
1687                 config->txq_inline_min = MLX5_INLINE_HSIZE_L2;
1688                 config->hw_vlan_insert = 0;
1689                 break;
1690         case PCI_DEVICE_ID_MELLANOX_CONNECTX5:
1691         case PCI_DEVICE_ID_MELLANOX_CONNECTX5VF:
1692         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EX:
1693         case PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF:
1694                 /*
1695                  * These NICs support VLAN insertion from WQE and
1696                  * report the wqe_vlan_insert flag. But there is the bug
1697                  * and PFC control may be broken, so disable feature.
1698                  */
1699                 config->hw_vlan_insert = 0;
1700                 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1701                 break;
1702         default:
1703                 config->txq_inline_min = MLX5_INLINE_HSIZE_NONE;
1704                 break;
1705         }
1706 exit:
1707         DRV_LOG(DEBUG, "min tx inline configured: %d", config->txq_inline_min);
1708 }
1709
1710 /**
1711  * Configures the metadata mask fields in the shared context.
1712  *
1713  * @param [in] dev
1714  *   Pointer to Ethernet device.
1715  */
1716 void
1717 mlx5_set_metadata_mask(struct rte_eth_dev *dev)
1718 {
1719         struct mlx5_priv *priv = dev->data->dev_private;
1720         struct mlx5_dev_ctx_shared *sh = priv->sh;
1721         uint32_t meta, mark, reg_c0;
1722
1723         reg_c0 = ~priv->vport_meta_mask;
1724         switch (priv->config.dv_xmeta_en) {
1725         case MLX5_XMETA_MODE_LEGACY:
1726                 meta = UINT32_MAX;
1727                 mark = MLX5_FLOW_MARK_MASK;
1728                 break;
1729         case MLX5_XMETA_MODE_META16:
1730                 meta = reg_c0 >> rte_bsf32(reg_c0);
1731                 mark = MLX5_FLOW_MARK_MASK;
1732                 break;
1733         case MLX5_XMETA_MODE_META32:
1734                 meta = UINT32_MAX;
1735                 mark = (reg_c0 >> rte_bsf32(reg_c0)) & MLX5_FLOW_MARK_MASK;
1736                 break;
1737         default:
1738                 meta = 0;
1739                 mark = 0;
1740                 MLX5_ASSERT(false);
1741                 break;
1742         }
1743         if (sh->dv_mark_mask && sh->dv_mark_mask != mark)
1744                 DRV_LOG(WARNING, "metadata MARK mask mismatche %08X:%08X",
1745                                  sh->dv_mark_mask, mark);
1746         else
1747                 sh->dv_mark_mask = mark;
1748         if (sh->dv_meta_mask && sh->dv_meta_mask != meta)
1749                 DRV_LOG(WARNING, "metadata META mask mismatche %08X:%08X",
1750                                  sh->dv_meta_mask, meta);
1751         else
1752                 sh->dv_meta_mask = meta;
1753         if (sh->dv_regc0_mask && sh->dv_regc0_mask != reg_c0)
1754                 DRV_LOG(WARNING, "metadata reg_c0 mask mismatche %08X:%08X",
1755                                  sh->dv_meta_mask, reg_c0);
1756         else
1757                 sh->dv_regc0_mask = reg_c0;
1758         DRV_LOG(DEBUG, "metadata mode %u", priv->config.dv_xmeta_en);
1759         DRV_LOG(DEBUG, "metadata MARK mask %08X", sh->dv_mark_mask);
1760         DRV_LOG(DEBUG, "metadata META mask %08X", sh->dv_meta_mask);
1761         DRV_LOG(DEBUG, "metadata reg_c0 mask %08X", sh->dv_regc0_mask);
1762 }
1763
1764 int
1765 rte_pmd_mlx5_get_dyn_flag_names(char *names[], unsigned int n)
1766 {
1767         static const char *const dynf_names[] = {
1768                 RTE_PMD_MLX5_FINE_GRANULARITY_INLINE,
1769                 RTE_MBUF_DYNFLAG_METADATA_NAME,
1770                 RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME
1771         };
1772         unsigned int i;
1773
1774         if (n < RTE_DIM(dynf_names))
1775                 return -ENOMEM;
1776         for (i = 0; i < RTE_DIM(dynf_names); i++) {
1777                 if (names[i] == NULL)
1778                         return -EINVAL;
1779                 strcpy(names[i], dynf_names[i]);
1780         }
1781         return RTE_DIM(dynf_names);
1782 }
1783
1784 /**
1785  * Comparison callback to sort device data.
1786  *
1787  * This is meant to be used with qsort().
1788  *
1789  * @param a[in]
1790  *   Pointer to pointer to first data object.
1791  * @param b[in]
1792  *   Pointer to pointer to second data object.
1793  *
1794  * @return
1795  *   0 if both objects are equal, less than 0 if the first argument is less
1796  *   than the second, greater than 0 otherwise.
1797  */
1798 int
1799 mlx5_dev_check_sibling_config(struct mlx5_priv *priv,
1800                               struct mlx5_dev_config *config)
1801 {
1802         struct mlx5_dev_ctx_shared *sh = priv->sh;
1803         struct mlx5_dev_config *sh_conf = NULL;
1804         uint16_t port_id;
1805
1806         MLX5_ASSERT(sh);
1807         /* Nothing to compare for the single/first device. */
1808         if (sh->refcnt == 1)
1809                 return 0;
1810         /* Find the device with shared context. */
1811         MLX5_ETH_FOREACH_DEV(port_id, priv->pci_dev) {
1812                 struct mlx5_priv *opriv =
1813                         rte_eth_devices[port_id].data->dev_private;
1814
1815                 if (opriv && opriv != priv && opriv->sh == sh) {
1816                         sh_conf = &opriv->config;
1817                         break;
1818                 }
1819         }
1820         if (!sh_conf)
1821                 return 0;
1822         if (sh_conf->dv_flow_en ^ config->dv_flow_en) {
1823                 DRV_LOG(ERR, "\"dv_flow_en\" configuration mismatch"
1824                              " for shared %s context", sh->ibdev_name);
1825                 rte_errno = EINVAL;
1826                 return rte_errno;
1827         }
1828         if (sh_conf->dv_xmeta_en ^ config->dv_xmeta_en) {
1829                 DRV_LOG(ERR, "\"dv_xmeta_en\" configuration mismatch"
1830                              " for shared %s context", sh->ibdev_name);
1831                 rte_errno = EINVAL;
1832                 return rte_errno;
1833         }
1834         return 0;
1835 }
1836
1837 /**
1838  * Look for the ethernet device belonging to mlx5 driver.
1839  *
1840  * @param[in] port_id
1841  *   port_id to start looking for device.
1842  * @param[in] pci_dev
1843  *   Pointer to the hint PCI device. When device is being probed
1844  *   the its siblings (master and preceding representors might
1845  *   not have assigned driver yet (because the mlx5_os_pci_probe()
1846  *   is not completed yet, for this case match on hint PCI
1847  *   device may be used to detect sibling device.
1848  *
1849  * @return
1850  *   port_id of found device, RTE_MAX_ETHPORT if not found.
1851  */
1852 uint16_t
1853 mlx5_eth_find_next(uint16_t port_id, struct rte_pci_device *pci_dev)
1854 {
1855         while (port_id < RTE_MAX_ETHPORTS) {
1856                 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
1857
1858                 if (dev->state != RTE_ETH_DEV_UNUSED &&
1859                     dev->device &&
1860                     (dev->device == &pci_dev->device ||
1861                      (dev->device->driver &&
1862                      dev->device->driver->name &&
1863                      !strcmp(dev->device->driver->name, MLX5_DRIVER_NAME))))
1864                         break;
1865                 port_id++;
1866         }
1867         if (port_id >= RTE_MAX_ETHPORTS)
1868                 return RTE_MAX_ETHPORTS;
1869         return port_id;
1870 }
1871
1872 /**
1873  * DPDK callback to remove a PCI device.
1874  *
1875  * This function removes all Ethernet devices belong to a given PCI device.
1876  *
1877  * @param[in] pci_dev
1878  *   Pointer to the PCI device.
1879  *
1880  * @return
1881  *   0 on success, the function cannot fail.
1882  */
1883 static int
1884 mlx5_pci_remove(struct rte_pci_device *pci_dev)
1885 {
1886         uint16_t port_id;
1887
1888         RTE_ETH_FOREACH_DEV_OF(port_id, &pci_dev->device) {
1889                 /*
1890                  * mlx5_dev_close() is not registered to secondary process,
1891                  * call the close function explicitly for secondary process.
1892                  */
1893                 if (rte_eal_process_type() == RTE_PROC_SECONDARY)
1894                         mlx5_dev_close(&rte_eth_devices[port_id]);
1895                 else
1896                         rte_eth_dev_close(port_id);
1897         }
1898         return 0;
1899 }
1900
1901 static const struct rte_pci_id mlx5_pci_id_map[] = {
1902         {
1903                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1904                                PCI_DEVICE_ID_MELLANOX_CONNECTX4)
1905         },
1906         {
1907                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1908                                PCI_DEVICE_ID_MELLANOX_CONNECTX4VF)
1909         },
1910         {
1911                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1912                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LX)
1913         },
1914         {
1915                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1916                                PCI_DEVICE_ID_MELLANOX_CONNECTX4LXVF)
1917         },
1918         {
1919                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1920                                PCI_DEVICE_ID_MELLANOX_CONNECTX5)
1921         },
1922         {
1923                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1924                                PCI_DEVICE_ID_MELLANOX_CONNECTX5VF)
1925         },
1926         {
1927                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1928                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EX)
1929         },
1930         {
1931                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1932                                PCI_DEVICE_ID_MELLANOX_CONNECTX5EXVF)
1933         },
1934         {
1935                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1936                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BF)
1937         },
1938         {
1939                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1940                                PCI_DEVICE_ID_MELLANOX_CONNECTX5BFVF)
1941         },
1942         {
1943                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1944                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6)
1945         },
1946         {
1947                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1948                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6VF)
1949         },
1950         {
1951                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1952                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6DX)
1953         },
1954         {
1955                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1956                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXVF)
1957         },
1958         {
1959                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1960                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6DXBF)
1961         },
1962         {
1963                 RTE_PCI_DEVICE(PCI_VENDOR_ID_MELLANOX,
1964                                 PCI_DEVICE_ID_MELLANOX_CONNECTX6LX)
1965         },
1966         {
1967                 .vendor_id = 0
1968         }
1969 };
1970
1971 static struct mlx5_pci_driver mlx5_driver = {
1972         .driver_class = MLX5_CLASS_NET,
1973         .pci_driver = {
1974                 .driver = {
1975                         .name = MLX5_DRIVER_NAME,
1976                 },
1977                 .id_table = mlx5_pci_id_map,
1978                 .probe = mlx5_os_pci_probe,
1979                 .remove = mlx5_pci_remove,
1980                 .dma_map = mlx5_dma_map,
1981                 .dma_unmap = mlx5_dma_unmap,
1982                 .drv_flags = PCI_DRV_FLAGS,
1983         },
1984 };
1985
1986 /* Initialize driver log type. */
1987 RTE_LOG_REGISTER(mlx5_logtype, pmd.net.mlx5, NOTICE)
1988
1989 /**
1990  * Driver initialization routine.
1991  */
1992 RTE_INIT(rte_mlx5_pmd_init)
1993 {
1994         mlx5_common_init();
1995         /* Build the static tables for Verbs conversion. */
1996         mlx5_set_ptype_table();
1997         mlx5_set_cksum_table();
1998         mlx5_set_swp_types_table();
1999         if (mlx5_glue)
2000                 mlx5_pci_driver_register(&mlx5_driver);
2001 }
2002
2003 RTE_PMD_EXPORT_NAME(net_mlx5, __COUNTER__);
2004 RTE_PMD_REGISTER_PCI_TABLE(net_mlx5, mlx5_pci_id_map);
2005 RTE_PMD_REGISTER_KMOD_DEP(net_mlx5, "* ib_uverbs & mlx5_core & mlx5_ib");