mlx5: refactor special flows handling
[dpdk.git] / drivers / net / mlx5 / mlx5_defs.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2015 6WIND S.A.
5  *   Copyright 2015 Mellanox.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef RTE_PMD_MLX5_DEFS_H_
35 #define RTE_PMD_MLX5_DEFS_H_
36
37 /* Reported driver name. */
38 #define MLX5_DRIVER_NAME "librte_pmd_mlx5"
39
40 /* Maximum number of simultaneous MAC addresses. */
41 #define MLX5_MAX_MAC_ADDRESSES 128
42
43 /* Maximum number of simultaneous VLAN filters. */
44 #define MLX5_MAX_VLAN_IDS 128
45
46 /* Maximum number of special flows. */
47 #define MLX5_MAX_SPECIAL_FLOWS 2
48
49 /* Request send completion once in every 64 sends, might be less. */
50 #define MLX5_PMD_TX_PER_COMP_REQ 64
51
52 /* RSS Indirection table size. */
53 #define RSS_INDIRECTION_TABLE_SIZE 512
54
55 /* Maximum number of Scatter/Gather Elements per Work Request. */
56 #ifndef MLX5_PMD_SGE_WR_N
57 #define MLX5_PMD_SGE_WR_N 4
58 #endif
59
60 /* Maximum size for inline data. */
61 #ifndef MLX5_PMD_MAX_INLINE
62 #define MLX5_PMD_MAX_INLINE 0
63 #endif
64
65 /*
66  * Maximum number of cached Memory Pools (MPs) per TX queue. Each RTE MP
67  * from which buffers are to be transmitted will have to be mapped by this
68  * driver to their own Memory Region (MR). This is a slow operation.
69  *
70  * This value is always 1 for RX queues.
71  */
72 #ifndef MLX5_PMD_TX_MP_CACHE
73 #define MLX5_PMD_TX_MP_CACHE 8
74 #endif
75
76 /*
77  * If defined, only use software counters. The PMD will never ask the hardware
78  * for these, and many of them won't be available.
79  */
80 #ifndef MLX5_PMD_SOFT_COUNTERS
81 #define MLX5_PMD_SOFT_COUNTERS 1
82 #endif
83
84 /* Alarm timeout. */
85 #define MLX5_ALARM_TIMEOUT_US 100000
86
87 #endif /* RTE_PMD_MLX5_DEFS_H_ */