net/mlx5: split MAC address add/remove code
[dpdk.git] / drivers / net / mlx5 / mlx5_defs.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2015 6WIND S.A.
3  * Copyright 2015 Mellanox Technologies, Ltd
4  */
5
6 #ifndef RTE_PMD_MLX5_DEFS_H_
7 #define RTE_PMD_MLX5_DEFS_H_
8
9 #include <rte_ethdev_driver.h>
10
11 #include "mlx5_autoconf.h"
12
13 /* Reported driver name. */
14 #define MLX5_DRIVER_NAME "net_mlx5"
15
16 /* Maximum number of simultaneous unicast MAC addresses. */
17 #define MLX5_MAX_UC_MAC_ADDRESSES 128
18 /* Maximum number of simultaneous MAC addresses. */
19 #define MLX5_MAX_MAC_ADDRESSES MLX5_MAX_UC_MAC_ADDRESSES
20
21 /* Maximum number of simultaneous VLAN filters. */
22 #define MLX5_MAX_VLAN_IDS 128
23
24 /*
25  * Request TX completion every time descriptors reach this threshold since
26  * the previous request. Must be a power of two for performance reasons.
27  */
28 #define MLX5_TX_COMP_THRESH 32
29
30 /*
31  * Request TX completion every time the total number of WQEBBs used for inlining
32  * packets exceeds the size of WQ divided by this divisor. Better to be power of
33  * two for performance.
34  */
35 #define MLX5_TX_COMP_THRESH_INLINE_DIV (1 << 3)
36
37 /*
38  * Maximum number of cached Memory Pools (MPs) per TX queue. Each RTE MP
39  * from which buffers are to be transmitted will have to be mapped by this
40  * driver to their own Memory Region (MR). This is a slow operation.
41  *
42  * This value is always 1 for RX queues.
43  */
44 #ifndef MLX5_PMD_TX_MP_CACHE
45 #define MLX5_PMD_TX_MP_CACHE 8
46 #endif
47
48 /*
49  * If defined, only use software counters. The PMD will never ask the hardware
50  * for these, and many of them won't be available.
51  */
52 #ifndef MLX5_PMD_SOFT_COUNTERS
53 #define MLX5_PMD_SOFT_COUNTERS 1
54 #endif
55
56 /* Alarm timeout. */
57 #define MLX5_ALARM_TIMEOUT_US 100000
58
59 /* Maximum number of extended statistics counters. */
60 #define MLX5_MAX_XSTATS 32
61
62 /* Maximum Packet headers size (L2+L3+L4) for TSO. */
63 #define MLX5_MAX_TSO_HEADER 128
64
65 /* Default minimum number of Tx queues for vectorized Tx. */
66 #define MLX5_VPMD_MIN_TXQS 4
67
68 /* Threshold of buffer replenishment for vectorized Rx. */
69 #define MLX5_VPMD_RXQ_RPLNSH_THRESH   64U
70
71 /* Maximum size of burst for vectorized Rx. */
72 #define MLX5_VPMD_RX_MAX_BURST        MLX5_VPMD_RXQ_RPLNSH_THRESH
73
74 /*
75  * Maximum size of burst for vectorized Tx. This is related to the maximum size
76  * of Enhanced MPW (eMPW) WQE as vectorized Tx is supported with eMPW.
77  * Careful when changing, large value can cause WQE DS to overlap.
78  */
79 #define MLX5_VPMD_TX_MAX_BURST        32U
80
81 /* Number of packets vectorized Rx can simultaneously process in a loop. */
82 #define MLX5_VPMD_DESCS_PER_LOOP      4
83
84 /* Supported RSS */
85 #define MLX5_RSS_HF_MASK (~(ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP))
86
87 /* Timeout in seconds to get a valid link status. */
88 #define MLX5_LINK_STATUS_TIMEOUT 10
89
90 /* Reserved address space for UAR mapping. */
91 #define MLX5_UAR_SIZE (1ULL << 32)
92
93 /* Offset of reserved UAR address space to hugepage memory. Offset is used here
94  * to minimize possibility of address next to hugepage being used by other code
95  * in either primary or secondary process, failing to map TX UAR would make TX
96  * packets invisible to HW.
97  */
98 #define MLX5_UAR_OFFSET (1ULL << 32)
99
100 #endif /* RTE_PMD_MLX5_DEFS_H_ */