0806407b0a1e2229d6345d6bdf8e949468ebdf1b
[dpdk.git] / drivers / net / mlx5 / mlx5_flow.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2018 Mellanox Technologies, Ltd
3  */
4
5 #ifndef RTE_PMD_MLX5_FLOW_H_
6 #define RTE_PMD_MLX5_FLOW_H_
7
8 #include <stdalign.h>
9 #include <stdint.h>
10 #include <string.h>
11 #include <sys/queue.h>
12
13 #include <rte_alarm.h>
14 #include <rte_mtr.h>
15
16 #include <mlx5_glue.h>
17 #include <mlx5_prm.h>
18
19 #include "mlx5.h"
20
21 /* Private rte flow items. */
22 enum mlx5_rte_flow_item_type {
23         MLX5_RTE_FLOW_ITEM_TYPE_END = INT_MIN,
24         MLX5_RTE_FLOW_ITEM_TYPE_TAG,
25         MLX5_RTE_FLOW_ITEM_TYPE_TX_QUEUE,
26         MLX5_RTE_FLOW_ITEM_TYPE_VLAN,
27         MLX5_RTE_FLOW_ITEM_TYPE_TUNNEL,
28 };
29
30 /* Private (internal) rte flow actions. */
31 enum mlx5_rte_flow_action_type {
32         MLX5_RTE_FLOW_ACTION_TYPE_END = INT_MIN,
33         MLX5_RTE_FLOW_ACTION_TYPE_TAG,
34         MLX5_RTE_FLOW_ACTION_TYPE_MARK,
35         MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
36         MLX5_RTE_FLOW_ACTION_TYPE_DEFAULT_MISS,
37         MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET,
38         MLX5_RTE_FLOW_ACTION_TYPE_AGE,
39 };
40
41 #define MLX5_INDIRECT_ACTION_TYPE_OFFSET 30
42
43 enum {
44         MLX5_INDIRECT_ACTION_TYPE_RSS,
45         MLX5_INDIRECT_ACTION_TYPE_AGE,
46 };
47
48 /* Matches on selected register. */
49 struct mlx5_rte_flow_item_tag {
50         enum modify_reg id;
51         uint32_t data;
52 };
53
54 /* Modify selected register. */
55 struct mlx5_rte_flow_action_set_tag {
56         enum modify_reg id;
57         uint8_t offset;
58         uint8_t length;
59         uint32_t data;
60 };
61
62 struct mlx5_flow_action_copy_mreg {
63         enum modify_reg dst;
64         enum modify_reg src;
65 };
66
67 /* Matches on source queue. */
68 struct mlx5_rte_flow_item_tx_queue {
69         uint32_t queue;
70 };
71
72 /* Feature name to allocate metadata register. */
73 enum mlx5_feature_name {
74         MLX5_HAIRPIN_RX,
75         MLX5_HAIRPIN_TX,
76         MLX5_METADATA_RX,
77         MLX5_METADATA_TX,
78         MLX5_METADATA_FDB,
79         MLX5_FLOW_MARK,
80         MLX5_APP_TAG,
81         MLX5_COPY_MARK,
82         MLX5_MTR_COLOR,
83         MLX5_MTR_ID,
84         MLX5_ASO_FLOW_HIT,
85 };
86
87 /* Default queue number. */
88 #define MLX5_RSSQ_DEFAULT_NUM 16
89
90 #define MLX5_FLOW_LAYER_OUTER_L2 (1u << 0)
91 #define MLX5_FLOW_LAYER_OUTER_L3_IPV4 (1u << 1)
92 #define MLX5_FLOW_LAYER_OUTER_L3_IPV6 (1u << 2)
93 #define MLX5_FLOW_LAYER_OUTER_L4_UDP (1u << 3)
94 #define MLX5_FLOW_LAYER_OUTER_L4_TCP (1u << 4)
95 #define MLX5_FLOW_LAYER_OUTER_VLAN (1u << 5)
96
97 /* Pattern inner Layer bits. */
98 #define MLX5_FLOW_LAYER_INNER_L2 (1u << 6)
99 #define MLX5_FLOW_LAYER_INNER_L3_IPV4 (1u << 7)
100 #define MLX5_FLOW_LAYER_INNER_L3_IPV6 (1u << 8)
101 #define MLX5_FLOW_LAYER_INNER_L4_UDP (1u << 9)
102 #define MLX5_FLOW_LAYER_INNER_L4_TCP (1u << 10)
103 #define MLX5_FLOW_LAYER_INNER_VLAN (1u << 11)
104
105 /* Pattern tunnel Layer bits. */
106 #define MLX5_FLOW_LAYER_VXLAN (1u << 12)
107 #define MLX5_FLOW_LAYER_VXLAN_GPE (1u << 13)
108 #define MLX5_FLOW_LAYER_GRE (1u << 14)
109 #define MLX5_FLOW_LAYER_MPLS (1u << 15)
110 /* List of tunnel Layer bits continued below. */
111
112 /* General pattern items bits. */
113 #define MLX5_FLOW_ITEM_METADATA (1u << 16)
114 #define MLX5_FLOW_ITEM_PORT_ID (1u << 17)
115 #define MLX5_FLOW_ITEM_TAG (1u << 18)
116 #define MLX5_FLOW_ITEM_MARK (1u << 19)
117
118 /* Pattern MISC bits. */
119 #define MLX5_FLOW_LAYER_ICMP (1u << 20)
120 #define MLX5_FLOW_LAYER_ICMP6 (1u << 21)
121 #define MLX5_FLOW_LAYER_GRE_KEY (1u << 22)
122
123 /* Pattern tunnel Layer bits (continued). */
124 #define MLX5_FLOW_LAYER_IPIP (1u << 23)
125 #define MLX5_FLOW_LAYER_IPV6_ENCAP (1u << 24)
126 #define MLX5_FLOW_LAYER_NVGRE (1u << 25)
127 #define MLX5_FLOW_LAYER_GENEVE (1u << 26)
128
129 /* Queue items. */
130 #define MLX5_FLOW_ITEM_TX_QUEUE (1u << 27)
131
132 /* Pattern tunnel Layer bits (continued). */
133 #define MLX5_FLOW_LAYER_GTP (1u << 28)
134
135 /* Pattern eCPRI Layer bit. */
136 #define MLX5_FLOW_LAYER_ECPRI (UINT64_C(1) << 29)
137
138 /* IPv6 Fragment Extension Header bit. */
139 #define MLX5_FLOW_LAYER_OUTER_L3_IPV6_FRAG_EXT (1u << 30)
140 #define MLX5_FLOW_LAYER_INNER_L3_IPV6_FRAG_EXT (1u << 31)
141
142 /* Pattern tunnel Layer bits (continued). */
143 #define MLX5_FLOW_LAYER_GENEVE_OPT (UINT64_C(1) << 32)
144 #define MLX5_FLOW_LAYER_GTP_PSC (UINT64_C(1) << 33)
145
146 /* Outer Masks. */
147 #define MLX5_FLOW_LAYER_OUTER_L3 \
148         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_OUTER_L3_IPV6)
149 #define MLX5_FLOW_LAYER_OUTER_L4 \
150         (MLX5_FLOW_LAYER_OUTER_L4_UDP | MLX5_FLOW_LAYER_OUTER_L4_TCP)
151 #define MLX5_FLOW_LAYER_OUTER \
152         (MLX5_FLOW_LAYER_OUTER_L2 | MLX5_FLOW_LAYER_OUTER_L3 | \
153          MLX5_FLOW_LAYER_OUTER_L4)
154
155 /* Tunnel Masks. */
156 #define MLX5_FLOW_LAYER_TUNNEL \
157         (MLX5_FLOW_LAYER_VXLAN | MLX5_FLOW_LAYER_VXLAN_GPE | \
158          MLX5_FLOW_LAYER_GRE | MLX5_FLOW_LAYER_NVGRE | MLX5_FLOW_LAYER_MPLS | \
159          MLX5_FLOW_LAYER_IPIP | MLX5_FLOW_LAYER_IPV6_ENCAP | \
160          MLX5_FLOW_LAYER_GENEVE | MLX5_FLOW_LAYER_GTP)
161
162 /* Inner Masks. */
163 #define MLX5_FLOW_LAYER_INNER_L3 \
164         (MLX5_FLOW_LAYER_INNER_L3_IPV4 | MLX5_FLOW_LAYER_INNER_L3_IPV6)
165 #define MLX5_FLOW_LAYER_INNER_L4 \
166         (MLX5_FLOW_LAYER_INNER_L4_UDP | MLX5_FLOW_LAYER_INNER_L4_TCP)
167 #define MLX5_FLOW_LAYER_INNER \
168         (MLX5_FLOW_LAYER_INNER_L2 | MLX5_FLOW_LAYER_INNER_L3 | \
169          MLX5_FLOW_LAYER_INNER_L4)
170
171 /* Layer Masks. */
172 #define MLX5_FLOW_LAYER_L2 \
173         (MLX5_FLOW_LAYER_OUTER_L2 | MLX5_FLOW_LAYER_INNER_L2)
174 #define MLX5_FLOW_LAYER_L3_IPV4 \
175         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_INNER_L3_IPV4)
176 #define MLX5_FLOW_LAYER_L3_IPV6 \
177         (MLX5_FLOW_LAYER_OUTER_L3_IPV6 | MLX5_FLOW_LAYER_INNER_L3_IPV6)
178 #define MLX5_FLOW_LAYER_L3 \
179         (MLX5_FLOW_LAYER_L3_IPV4 | MLX5_FLOW_LAYER_L3_IPV6)
180 #define MLX5_FLOW_LAYER_L4 \
181         (MLX5_FLOW_LAYER_OUTER_L4 | MLX5_FLOW_LAYER_INNER_L4)
182
183 /* Actions */
184 #define MLX5_FLOW_ACTION_DROP (1u << 0)
185 #define MLX5_FLOW_ACTION_QUEUE (1u << 1)
186 #define MLX5_FLOW_ACTION_RSS (1u << 2)
187 #define MLX5_FLOW_ACTION_FLAG (1u << 3)
188 #define MLX5_FLOW_ACTION_MARK (1u << 4)
189 #define MLX5_FLOW_ACTION_COUNT (1u << 5)
190 #define MLX5_FLOW_ACTION_PORT_ID (1u << 6)
191 #define MLX5_FLOW_ACTION_OF_POP_VLAN (1u << 7)
192 #define MLX5_FLOW_ACTION_OF_PUSH_VLAN (1u << 8)
193 #define MLX5_FLOW_ACTION_OF_SET_VLAN_VID (1u << 9)
194 #define MLX5_FLOW_ACTION_OF_SET_VLAN_PCP (1u << 10)
195 #define MLX5_FLOW_ACTION_SET_IPV4_SRC (1u << 11)
196 #define MLX5_FLOW_ACTION_SET_IPV4_DST (1u << 12)
197 #define MLX5_FLOW_ACTION_SET_IPV6_SRC (1u << 13)
198 #define MLX5_FLOW_ACTION_SET_IPV6_DST (1u << 14)
199 #define MLX5_FLOW_ACTION_SET_TP_SRC (1u << 15)
200 #define MLX5_FLOW_ACTION_SET_TP_DST (1u << 16)
201 #define MLX5_FLOW_ACTION_JUMP (1u << 17)
202 #define MLX5_FLOW_ACTION_SET_TTL (1u << 18)
203 #define MLX5_FLOW_ACTION_DEC_TTL (1u << 19)
204 #define MLX5_FLOW_ACTION_SET_MAC_SRC (1u << 20)
205 #define MLX5_FLOW_ACTION_SET_MAC_DST (1u << 21)
206 #define MLX5_FLOW_ACTION_ENCAP (1u << 22)
207 #define MLX5_FLOW_ACTION_DECAP (1u << 23)
208 #define MLX5_FLOW_ACTION_INC_TCP_SEQ (1u << 24)
209 #define MLX5_FLOW_ACTION_DEC_TCP_SEQ (1u << 25)
210 #define MLX5_FLOW_ACTION_INC_TCP_ACK (1u << 26)
211 #define MLX5_FLOW_ACTION_DEC_TCP_ACK (1u << 27)
212 #define MLX5_FLOW_ACTION_SET_TAG (1ull << 28)
213 #define MLX5_FLOW_ACTION_MARK_EXT (1ull << 29)
214 #define MLX5_FLOW_ACTION_SET_META (1ull << 30)
215 #define MLX5_FLOW_ACTION_METER (1ull << 31)
216 #define MLX5_FLOW_ACTION_SET_IPV4_DSCP (1ull << 32)
217 #define MLX5_FLOW_ACTION_SET_IPV6_DSCP (1ull << 33)
218 #define MLX5_FLOW_ACTION_AGE (1ull << 34)
219 #define MLX5_FLOW_ACTION_DEFAULT_MISS (1ull << 35)
220 #define MLX5_FLOW_ACTION_SAMPLE (1ull << 36)
221 #define MLX5_FLOW_ACTION_TUNNEL_SET (1ull << 37)
222 #define MLX5_FLOW_ACTION_TUNNEL_MATCH (1ull << 38)
223 #define MLX5_FLOW_ACTION_MODIFY_FIELD (1ull << 39)
224
225 #define MLX5_FLOW_FATE_ACTIONS \
226         (MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_QUEUE | \
227          MLX5_FLOW_ACTION_RSS | MLX5_FLOW_ACTION_JUMP | \
228          MLX5_FLOW_ACTION_DEFAULT_MISS)
229
230 #define MLX5_FLOW_FATE_ESWITCH_ACTIONS \
231         (MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_PORT_ID | \
232          MLX5_FLOW_ACTION_JUMP)
233
234
235 #define MLX5_FLOW_MODIFY_HDR_ACTIONS (MLX5_FLOW_ACTION_SET_IPV4_SRC | \
236                                       MLX5_FLOW_ACTION_SET_IPV4_DST | \
237                                       MLX5_FLOW_ACTION_SET_IPV6_SRC | \
238                                       MLX5_FLOW_ACTION_SET_IPV6_DST | \
239                                       MLX5_FLOW_ACTION_SET_TP_SRC | \
240                                       MLX5_FLOW_ACTION_SET_TP_DST | \
241                                       MLX5_FLOW_ACTION_SET_TTL | \
242                                       MLX5_FLOW_ACTION_DEC_TTL | \
243                                       MLX5_FLOW_ACTION_SET_MAC_SRC | \
244                                       MLX5_FLOW_ACTION_SET_MAC_DST | \
245                                       MLX5_FLOW_ACTION_INC_TCP_SEQ | \
246                                       MLX5_FLOW_ACTION_DEC_TCP_SEQ | \
247                                       MLX5_FLOW_ACTION_INC_TCP_ACK | \
248                                       MLX5_FLOW_ACTION_DEC_TCP_ACK | \
249                                       MLX5_FLOW_ACTION_OF_SET_VLAN_VID | \
250                                       MLX5_FLOW_ACTION_SET_TAG | \
251                                       MLX5_FLOW_ACTION_MARK_EXT | \
252                                       MLX5_FLOW_ACTION_SET_META | \
253                                       MLX5_FLOW_ACTION_SET_IPV4_DSCP | \
254                                       MLX5_FLOW_ACTION_SET_IPV6_DSCP | \
255                                       MLX5_FLOW_ACTION_MODIFY_FIELD)
256
257 #define MLX5_FLOW_VLAN_ACTIONS (MLX5_FLOW_ACTION_OF_POP_VLAN | \
258                                 MLX5_FLOW_ACTION_OF_PUSH_VLAN)
259
260 #define MLX5_FLOW_XCAP_ACTIONS (MLX5_FLOW_ACTION_ENCAP | MLX5_FLOW_ACTION_DECAP)
261
262 #ifndef IPPROTO_MPLS
263 #define IPPROTO_MPLS 137
264 #endif
265
266 /* UDP port number for MPLS */
267 #define MLX5_UDP_PORT_MPLS 6635
268
269 /* UDP port numbers for VxLAN. */
270 #define MLX5_UDP_PORT_VXLAN 4789
271 #define MLX5_UDP_PORT_VXLAN_GPE 4790
272
273 /* UDP port numbers for GENEVE. */
274 #define MLX5_UDP_PORT_GENEVE 6081
275
276 /* Lowest priority indicator. */
277 #define MLX5_FLOW_LOWEST_PRIO_INDICATOR ((uint32_t)-1)
278
279 /*
280  * Max priority for ingress\egress flow groups
281  * greater than 0 and for any transfer flow group.
282  * From user configation: 0 - 21843.
283  */
284 #define MLX5_NON_ROOT_FLOW_MAX_PRIO     (21843 + 1)
285
286 /*
287  * Number of sub priorities.
288  * For each kind of pattern matching i.e. L2, L3, L4 to have a correct
289  * matching on the NIC (firmware dependent) L4 most have the higher priority
290  * followed by L3 and ending with L2.
291  */
292 #define MLX5_PRIORITY_MAP_L2 2
293 #define MLX5_PRIORITY_MAP_L3 1
294 #define MLX5_PRIORITY_MAP_L4 0
295 #define MLX5_PRIORITY_MAP_MAX 3
296
297 /* Valid layer type for IPV4 RSS. */
298 #define MLX5_IPV4_LAYER_TYPES \
299         (ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4 | \
300          ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_NONFRAG_IPV4_UDP | \
301          ETH_RSS_NONFRAG_IPV4_OTHER)
302
303 /* IBV hash source bits  for IPV4. */
304 #define MLX5_IPV4_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_DST_IPV4)
305
306 /* Valid layer type for IPV6 RSS. */
307 #define MLX5_IPV6_LAYER_TYPES \
308         (ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6 | ETH_RSS_NONFRAG_IPV6_TCP | \
309          ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_IPV6_EX  | ETH_RSS_IPV6_TCP_EX | \
310          ETH_RSS_IPV6_UDP_EX | ETH_RSS_NONFRAG_IPV6_OTHER)
311
312 /* IBV hash source bits  for IPV6. */
313 #define MLX5_IPV6_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV6 | IBV_RX_HASH_DST_IPV6)
314
315 /* IBV hash bits for L3 SRC. */
316 #define MLX5_L3_SRC_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_SRC_IPV6)
317
318 /* IBV hash bits for L3 DST. */
319 #define MLX5_L3_DST_IBV_RX_HASH (IBV_RX_HASH_DST_IPV4 | IBV_RX_HASH_DST_IPV6)
320
321 /* IBV hash bits for TCP. */
322 #define MLX5_TCP_IBV_RX_HASH (IBV_RX_HASH_SRC_PORT_TCP | \
323                               IBV_RX_HASH_DST_PORT_TCP)
324
325 /* IBV hash bits for UDP. */
326 #define MLX5_UDP_IBV_RX_HASH (IBV_RX_HASH_SRC_PORT_UDP | \
327                               IBV_RX_HASH_DST_PORT_UDP)
328
329 /* IBV hash bits for L4 SRC. */
330 #define MLX5_L4_SRC_IBV_RX_HASH (IBV_RX_HASH_SRC_PORT_TCP | \
331                                  IBV_RX_HASH_SRC_PORT_UDP)
332
333 /* IBV hash bits for L4 DST. */
334 #define MLX5_L4_DST_IBV_RX_HASH (IBV_RX_HASH_DST_PORT_TCP | \
335                                  IBV_RX_HASH_DST_PORT_UDP)
336
337 /* Geneve header first 16Bit */
338 #define MLX5_GENEVE_VER_MASK 0x3
339 #define MLX5_GENEVE_VER_SHIFT 14
340 #define MLX5_GENEVE_VER_VAL(a) \
341                 (((a) >> (MLX5_GENEVE_VER_SHIFT)) & (MLX5_GENEVE_VER_MASK))
342 #define MLX5_GENEVE_OPTLEN_MASK 0x3F
343 #define MLX5_GENEVE_OPTLEN_SHIFT 8
344 #define MLX5_GENEVE_OPTLEN_VAL(a) \
345             (((a) >> (MLX5_GENEVE_OPTLEN_SHIFT)) & (MLX5_GENEVE_OPTLEN_MASK))
346 #define MLX5_GENEVE_OAMF_MASK 0x1
347 #define MLX5_GENEVE_OAMF_SHIFT 7
348 #define MLX5_GENEVE_OAMF_VAL(a) \
349                 (((a) >> (MLX5_GENEVE_OAMF_SHIFT)) & (MLX5_GENEVE_OAMF_MASK))
350 #define MLX5_GENEVE_CRITO_MASK 0x1
351 #define MLX5_GENEVE_CRITO_SHIFT 6
352 #define MLX5_GENEVE_CRITO_VAL(a) \
353                 (((a) >> (MLX5_GENEVE_CRITO_SHIFT)) & (MLX5_GENEVE_CRITO_MASK))
354 #define MLX5_GENEVE_RSVD_MASK 0x3F
355 #define MLX5_GENEVE_RSVD_VAL(a) ((a) & (MLX5_GENEVE_RSVD_MASK))
356 /*
357  * The length of the Geneve options fields, expressed in four byte multiples,
358  * not including the eight byte fixed tunnel.
359  */
360 #define MLX5_GENEVE_OPT_LEN_0 14
361 #define MLX5_GENEVE_OPT_LEN_1 63
362
363 #define MLX5_ENCAPSULATION_DECISION_SIZE (sizeof(struct rte_ether_hdr) + \
364                                           sizeof(struct rte_ipv4_hdr))
365 /* GTP extension header flag. */
366 #define MLX5_GTP_EXT_HEADER_FLAG 4
367
368 /* GTP extension header max PDU type value. */
369 #define MLX5_GTP_EXT_MAX_PDU_TYPE 15
370
371 /* GTP extension header PDU type shift. */
372 #define MLX5_GTP_PDU_TYPE_SHIFT(a) ((a) << 4)
373
374 /* IPv4 fragment_offset field contains relevant data in bits 2 to 15. */
375 #define MLX5_IPV4_FRAG_OFFSET_MASK \
376                 (RTE_IPV4_HDR_OFFSET_MASK | RTE_IPV4_HDR_MF_FLAG)
377
378 /* Specific item's fields can accept a range of values (using spec and last). */
379 #define MLX5_ITEM_RANGE_NOT_ACCEPTED    false
380 #define MLX5_ITEM_RANGE_ACCEPTED        true
381
382 /* Software header modify action numbers of a flow. */
383 #define MLX5_ACT_NUM_MDF_IPV4           1
384 #define MLX5_ACT_NUM_MDF_IPV6           4
385 #define MLX5_ACT_NUM_MDF_MAC            2
386 #define MLX5_ACT_NUM_MDF_VID            1
387 #define MLX5_ACT_NUM_MDF_PORT           2
388 #define MLX5_ACT_NUM_MDF_TTL            1
389 #define MLX5_ACT_NUM_DEC_TTL            MLX5_ACT_NUM_MDF_TTL
390 #define MLX5_ACT_NUM_MDF_TCPSEQ         1
391 #define MLX5_ACT_NUM_MDF_TCPACK         1
392 #define MLX5_ACT_NUM_SET_REG            1
393 #define MLX5_ACT_NUM_SET_TAG            1
394 #define MLX5_ACT_NUM_CPY_MREG           MLX5_ACT_NUM_SET_TAG
395 #define MLX5_ACT_NUM_SET_MARK           MLX5_ACT_NUM_SET_TAG
396 #define MLX5_ACT_NUM_SET_META           MLX5_ACT_NUM_SET_TAG
397 #define MLX5_ACT_NUM_SET_DSCP           1
398
399 /* Maximum number of fields to modify in MODIFY_FIELD */
400 #define MLX5_ACT_MAX_MOD_FIELDS 5
401
402 enum mlx5_flow_drv_type {
403         MLX5_FLOW_TYPE_MIN,
404         MLX5_FLOW_TYPE_DV,
405         MLX5_FLOW_TYPE_VERBS,
406         MLX5_FLOW_TYPE_MAX,
407 };
408
409 /* Fate action type. */
410 enum mlx5_flow_fate_type {
411         MLX5_FLOW_FATE_NONE, /* Egress flow. */
412         MLX5_FLOW_FATE_QUEUE,
413         MLX5_FLOW_FATE_JUMP,
414         MLX5_FLOW_FATE_PORT_ID,
415         MLX5_FLOW_FATE_DROP,
416         MLX5_FLOW_FATE_DEFAULT_MISS,
417         MLX5_FLOW_FATE_SHARED_RSS,
418         MLX5_FLOW_FATE_MAX,
419 };
420
421 /* Matcher PRM representation */
422 struct mlx5_flow_dv_match_params {
423         size_t size;
424         /**< Size of match value. Do NOT split size and key! */
425         uint32_t buf[MLX5_ST_SZ_DW(fte_match_param)];
426         /**< Matcher value. This value is used as the mask or as a key. */
427 };
428
429 /* Matcher structure. */
430 struct mlx5_flow_dv_matcher {
431         struct mlx5_cache_entry entry; /**< Pointer to the next element. */
432         struct mlx5_flow_tbl_resource *tbl;
433         /**< Pointer to the table(group) the matcher associated with. */
434         void *matcher_object; /**< Pointer to DV matcher */
435         uint16_t crc; /**< CRC of key. */
436         uint16_t priority; /**< Priority of matcher. */
437         struct mlx5_flow_dv_match_params mask; /**< Matcher mask. */
438 };
439
440 #define MLX5_ENCAP_MAX_LEN 132
441
442 /* Encap/decap resource structure. */
443 struct mlx5_flow_dv_encap_decap_resource {
444         struct mlx5_hlist_entry entry;
445         /* Pointer to next element. */
446         uint32_t refcnt; /**< Reference counter. */
447         void *action;
448         /**< Encap/decap action object. */
449         uint8_t buf[MLX5_ENCAP_MAX_LEN];
450         size_t size;
451         uint8_t reformat_type;
452         uint8_t ft_type;
453         uint64_t flags; /**< Flags for RDMA API. */
454         uint32_t idx; /**< Index for the index memory pool. */
455 };
456
457 /* Tag resource structure. */
458 struct mlx5_flow_dv_tag_resource {
459         struct mlx5_hlist_entry entry;
460         /**< hash list entry for tag resource, tag value as the key. */
461         void *action;
462         /**< Tag action object. */
463         uint32_t refcnt; /**< Reference counter. */
464         uint32_t idx; /**< Index for the index memory pool. */
465         uint32_t tag_id; /**< Tag ID. */
466 };
467
468 /*
469  * Number of modification commands.
470  * The maximal actions amount in FW is some constant, and it is 16 in the
471  * latest releases. In some old releases, it will be limited to 8.
472  * Since there is no interface to query the capacity, the maximal value should
473  * be used to allow PMD to create the flow. The validation will be done in the
474  * lower driver layer or FW. A failure will be returned if exceeds the maximal
475  * supported actions number on the root table.
476  * On non-root tables, there is no limitation, but 32 is enough right now.
477  */
478 #define MLX5_MAX_MODIFY_NUM                     32
479 #define MLX5_ROOT_TBL_MODIFY_NUM                16
480
481 /* Modify resource structure */
482 struct mlx5_flow_dv_modify_hdr_resource {
483         struct mlx5_hlist_entry entry;
484         void *action; /**< Modify header action object. */
485         /* Key area for hash list matching: */
486         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
487         uint32_t actions_num; /**< Number of modification actions. */
488         uint64_t flags; /**< Flags for RDMA API. */
489         struct mlx5_modification_cmd actions[];
490         /**< Modification actions. */
491 };
492
493 /* Modify resource key of the hash organization. */
494 union mlx5_flow_modify_hdr_key {
495         struct {
496                 uint32_t ft_type:8;     /**< Flow table type, Rx or Tx. */
497                 uint32_t actions_num:5; /**< Number of modification actions. */
498                 uint32_t group:19;      /**< Flow group id. */
499                 uint32_t cksum;         /**< Actions check sum. */
500         };
501         uint64_t v64;                   /**< full 64bits value of key */
502 };
503
504 /* Jump action resource structure. */
505 struct mlx5_flow_dv_jump_tbl_resource {
506         void *action; /**< Pointer to the rdma core action. */
507 };
508
509 /* Port ID resource structure. */
510 struct mlx5_flow_dv_port_id_action_resource {
511         struct mlx5_cache_entry entry;
512         void *action; /**< Action object. */
513         uint32_t port_id; /**< Port ID value. */
514         uint32_t idx; /**< Indexed pool memory index. */
515 };
516
517 /* Push VLAN action resource structure */
518 struct mlx5_flow_dv_push_vlan_action_resource {
519         struct mlx5_cache_entry entry; /* Cache entry. */
520         void *action; /**< Action object. */
521         uint8_t ft_type; /**< Flow table type, Rx, Tx or FDB. */
522         rte_be32_t vlan_tag; /**< VLAN tag value. */
523         uint32_t idx; /**< Indexed pool memory index. */
524 };
525
526 /* Metadata register copy table entry. */
527 struct mlx5_flow_mreg_copy_resource {
528         /*
529          * Hash list entry for copy table.
530          *  - Key is 32/64-bit MARK action ID.
531          *  - MUST be the first entry.
532          */
533         struct mlx5_hlist_entry hlist_ent;
534         LIST_ENTRY(mlx5_flow_mreg_copy_resource) next;
535         /* List entry for device flows. */
536         uint32_t idx;
537         uint32_t rix_flow; /* Built flow for copy. */
538         uint32_t mark_id;
539 };
540
541 /* Table tunnel parameter. */
542 struct mlx5_flow_tbl_tunnel_prm {
543         const struct mlx5_flow_tunnel *tunnel;
544         uint32_t group_id;
545         bool external;
546 };
547
548 /* Table data structure of the hash organization. */
549 struct mlx5_flow_tbl_data_entry {
550         struct mlx5_hlist_entry entry;
551         /**< hash list entry, 64-bits key inside. */
552         struct mlx5_flow_tbl_resource tbl;
553         /**< flow table resource. */
554         struct mlx5_cache_list matchers;
555         /**< matchers' header associated with the flow table. */
556         struct mlx5_flow_dv_jump_tbl_resource jump;
557         /**< jump resource, at most one for each table created. */
558         uint32_t idx; /**< index for the indexed mempool. */
559         /**< tunnel offload */
560         const struct mlx5_flow_tunnel *tunnel;
561         uint32_t group_id;
562         uint32_t external:1;
563         uint32_t tunnel_offload:1; /* Tunnel offlod table or not. */
564         uint32_t is_egress:1; /**< Egress table. */
565         uint32_t is_transfer:1; /**< Transfer table. */
566         uint32_t dummy:1; /**<  DR table. */
567         uint32_t reserve:27; /**< Reserved to future using. */
568         uint32_t table_id; /**< Table ID. */
569 };
570
571 /* Sub rdma-core actions list. */
572 struct mlx5_flow_sub_actions_list {
573         uint32_t actions_num; /**< Number of sample actions. */
574         uint64_t action_flags;
575         void *dr_queue_action;
576         void *dr_tag_action;
577         void *dr_cnt_action;
578         void *dr_port_id_action;
579         void *dr_encap_action;
580         void *dr_jump_action;
581 };
582
583 /* Sample sub-actions resource list. */
584 struct mlx5_flow_sub_actions_idx {
585         uint32_t rix_hrxq; /**< Hash Rx queue object index. */
586         uint32_t rix_tag; /**< Index to the tag action. */
587         uint32_t rix_port_id_action; /**< Index to port ID action resource. */
588         uint32_t rix_encap_decap; /**< Index to encap/decap resource. */
589         uint32_t rix_jump; /**< Index to the jump action resource. */
590 };
591
592 /* Sample action resource structure. */
593 struct mlx5_flow_dv_sample_resource {
594         struct mlx5_cache_entry entry; /**< Cache entry. */
595         union {
596                 void *verbs_action; /**< Verbs sample action object. */
597                 void **sub_actions; /**< Sample sub-action array. */
598         };
599         struct rte_eth_dev *dev; /**< Device registers the action. */
600         uint32_t idx; /** Sample object index. */
601         uint8_t ft_type; /** Flow Table Type */
602         uint32_t ft_id; /** Flow Table Level */
603         uint32_t ratio;   /** Sample Ratio */
604         uint64_t set_action; /** Restore reg_c0 value */
605         void *normal_path_tbl; /** Flow Table pointer */
606         struct mlx5_flow_sub_actions_idx sample_idx;
607         /**< Action index resources. */
608         struct mlx5_flow_sub_actions_list sample_act;
609         /**< Action resources. */
610 };
611
612 #define MLX5_MAX_DEST_NUM       2
613
614 /* Destination array action resource structure. */
615 struct mlx5_flow_dv_dest_array_resource {
616         struct mlx5_cache_entry entry; /**< Cache entry. */
617         uint32_t idx; /** Destination array action object index. */
618         uint8_t ft_type; /** Flow Table Type */
619         uint8_t num_of_dest; /**< Number of destination actions. */
620         struct rte_eth_dev *dev; /**< Device registers the action. */
621         void *action; /**< Pointer to the rdma core action. */
622         struct mlx5_flow_sub_actions_idx sample_idx[MLX5_MAX_DEST_NUM];
623         /**< Action index resources. */
624         struct mlx5_flow_sub_actions_list sample_act[MLX5_MAX_DEST_NUM];
625         /**< Action resources. */
626 };
627
628 /* PMD flow priority for tunnel */
629 #define MLX5_TUNNEL_PRIO_GET(rss_desc) \
630         ((rss_desc)->level >= 2 ? MLX5_PRIORITY_MAP_L2 : MLX5_PRIORITY_MAP_L4)
631
632
633 /** Device flow handle structure for DV mode only. */
634 struct mlx5_flow_handle_dv {
635         /* Flow DV api: */
636         struct mlx5_flow_dv_matcher *matcher; /**< Cache to matcher. */
637         struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
638         /**< Pointer to modify header resource in cache. */
639         uint32_t rix_encap_decap;
640         /**< Index to encap/decap resource in cache. */
641         uint32_t rix_push_vlan;
642         /**< Index to push VLAN action resource in cache. */
643         uint32_t rix_tag;
644         /**< Index to the tag action. */
645         uint32_t rix_sample;
646         /**< Index to sample action resource in cache. */
647         uint32_t rix_dest_array;
648         /**< Index to destination array resource in cache. */
649 } __rte_packed;
650
651 /** Device flow handle structure: used both for creating & destroying. */
652 struct mlx5_flow_handle {
653         SILIST_ENTRY(uint32_t)next;
654         struct mlx5_vf_vlan vf_vlan; /**< Structure for VF VLAN workaround. */
655         /**< Index to next device flow handle. */
656         uint64_t layers;
657         /**< Bit-fields of present layers, see MLX5_FLOW_LAYER_*. */
658         void *drv_flow; /**< pointer to driver flow object. */
659         uint32_t split_flow_id:27; /**< Sub flow unique match flow id. */
660         uint32_t is_meter_flow_id:1; /**< Indate if flow_id is for meter. */
661         uint32_t mark:1; /**< Metadate rxq mark flag. */
662         uint32_t fate_action:3; /**< Fate action type. */
663         union {
664                 uint32_t rix_hrxq; /**< Hash Rx queue object index. */
665                 uint32_t rix_jump; /**< Index to the jump action resource. */
666                 uint32_t rix_port_id_action;
667                 /**< Index to port ID action resource. */
668                 uint32_t rix_fate;
669                 /**< Generic value indicates the fate action. */
670                 uint32_t rix_default_fate;
671                 /**< Indicates default miss fate action. */
672                 uint32_t rix_srss;
673                 /**< Indicates shared RSS fate action. */
674         };
675 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
676         struct mlx5_flow_handle_dv dvh;
677 #endif
678 } __rte_packed;
679
680 /*
681  * Size for Verbs device flow handle structure only. Do not use the DV only
682  * structure in Verbs. No DV flows attributes will be accessed.
683  * Macro offsetof() could also be used here.
684  */
685 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
686 #define MLX5_FLOW_HANDLE_VERBS_SIZE \
687         (sizeof(struct mlx5_flow_handle) - sizeof(struct mlx5_flow_handle_dv))
688 #else
689 #define MLX5_FLOW_HANDLE_VERBS_SIZE (sizeof(struct mlx5_flow_handle))
690 #endif
691
692 /*
693  * Max number of actions per DV flow.
694  * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED
695  * in rdma-core file providers/mlx5/verbs.c.
696  */
697 #define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8
698
699 /** Device flow structure only for DV flow creation. */
700 struct mlx5_flow_dv_workspace {
701         uint32_t group; /**< The group index. */
702         uint8_t transfer; /**< 1 if the flow is E-Switch flow. */
703         int actions_n; /**< number of actions. */
704         void *actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS]; /**< Action list. */
705         struct mlx5_flow_dv_encap_decap_resource *encap_decap;
706         /**< Pointer to encap/decap resource in cache. */
707         struct mlx5_flow_dv_push_vlan_action_resource *push_vlan_res;
708         /**< Pointer to push VLAN action resource in cache. */
709         struct mlx5_flow_dv_tag_resource *tag_resource;
710         /**< pointer to the tag action. */
711         struct mlx5_flow_dv_port_id_action_resource *port_id_action;
712         /**< Pointer to port ID action resource. */
713         struct mlx5_flow_dv_jump_tbl_resource *jump;
714         /**< Pointer to the jump action resource. */
715         struct mlx5_flow_dv_match_params value;
716         /**< Holds the value that the packet is compared to. */
717         struct mlx5_flow_dv_sample_resource *sample_res;
718         /**< Pointer to the sample action resource. */
719         struct mlx5_flow_dv_dest_array_resource *dest_array_res;
720         /**< Pointer to the destination array resource. */
721 };
722
723 #ifdef HAVE_INFINIBAND_VERBS_H
724 /*
725  * Maximal Verbs flow specifications & actions size.
726  * Some elements are mutually exclusive, but enough space should be allocated.
727  * Tunnel cases: 1. Max 2 Ethernet + IP(v6 len > v4 len) + TCP/UDP headers.
728  *               2. One tunnel header (exception: GRE + MPLS),
729  *                  SPEC length: GRE == tunnel.
730  * Actions: 1. 1 Mark OR Flag.
731  *          2. 1 Drop (if any).
732  *          3. No limitation for counters, but it makes no sense to support too
733  *             many counters in a single device flow.
734  */
735 #ifdef HAVE_IBV_DEVICE_MPLS_SUPPORT
736 #define MLX5_VERBS_MAX_SPEC_SIZE \
737                 ( \
738                         (2 * (sizeof(struct ibv_flow_spec_eth) + \
739                               sizeof(struct ibv_flow_spec_ipv6) + \
740                               sizeof(struct ibv_flow_spec_tcp_udp)) + \
741                         sizeof(struct ibv_flow_spec_gre) + \
742                         sizeof(struct ibv_flow_spec_mpls)) \
743                 )
744 #else
745 #define MLX5_VERBS_MAX_SPEC_SIZE \
746                 ( \
747                         (2 * (sizeof(struct ibv_flow_spec_eth) + \
748                               sizeof(struct ibv_flow_spec_ipv6) + \
749                               sizeof(struct ibv_flow_spec_tcp_udp)) + \
750                         sizeof(struct ibv_flow_spec_tunnel)) \
751                 )
752 #endif
753
754 #if defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42) || \
755         defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
756 #define MLX5_VERBS_MAX_ACT_SIZE \
757                 ( \
758                         sizeof(struct ibv_flow_spec_action_tag) + \
759                         sizeof(struct ibv_flow_spec_action_drop) + \
760                         sizeof(struct ibv_flow_spec_counter_action) * 4 \
761                 )
762 #else
763 #define MLX5_VERBS_MAX_ACT_SIZE \
764                 ( \
765                         sizeof(struct ibv_flow_spec_action_tag) + \
766                         sizeof(struct ibv_flow_spec_action_drop) \
767                 )
768 #endif
769
770 #define MLX5_VERBS_MAX_SPEC_ACT_SIZE \
771                 (MLX5_VERBS_MAX_SPEC_SIZE + MLX5_VERBS_MAX_ACT_SIZE)
772
773 /** Device flow structure only for Verbs flow creation. */
774 struct mlx5_flow_verbs_workspace {
775         unsigned int size; /**< Size of the attribute. */
776         struct ibv_flow_attr attr; /**< Verbs flow attribute buffer. */
777         uint8_t specs[MLX5_VERBS_MAX_SPEC_ACT_SIZE];
778         /**< Specifications & actions buffer of verbs flow. */
779 };
780 #endif /* HAVE_INFINIBAND_VERBS_H */
781
782 #define MLX5_SCALE_FLOW_GROUP_BIT 0
783 #define MLX5_SCALE_JUMP_FLOW_GROUP_BIT 1
784
785 /** Maximal number of device sub-flows supported. */
786 #define MLX5_NUM_MAX_DEV_FLOWS 32
787
788 /** Device flow structure. */
789 __extension__
790 struct mlx5_flow {
791         struct rte_flow *flow; /**< Pointer to the main flow. */
792         uint32_t flow_idx; /**< The memory pool index to the main flow. */
793         uint64_t hash_fields; /**< Hash Rx queue hash fields. */
794         uint64_t act_flags;
795         /**< Bit-fields of detected actions, see MLX5_FLOW_ACTION_*. */
796         bool external; /**< true if the flow is created external to PMD. */
797         uint8_t ingress:1; /**< 1 if the flow is ingress. */
798         uint8_t skip_scale:2;
799         /**
800          * Each Bit be set to 1 if Skip the scale the flow group with factor.
801          * If bit0 be set to 1, then skip the scale the original flow group;
802          * If bit1 be set to 1, then skip the scale the jump flow group if
803          * having jump action.
804          * 00: Enable scale in a flow, default value.
805          * 01: Skip scale the flow group with factor, enable scale the group
806          * of jump action.
807          * 10: Enable scale the group with factor, skip scale the group of
808          * jump action.
809          * 11: Skip scale the table with factor both for flow group and jump
810          * group.
811          */
812         union {
813 #if defined(HAVE_IBV_FLOW_DV_SUPPORT) || !defined(HAVE_INFINIBAND_VERBS_H)
814                 struct mlx5_flow_dv_workspace dv;
815 #endif
816 #ifdef HAVE_INFINIBAND_VERBS_H
817                 struct mlx5_flow_verbs_workspace verbs;
818 #endif
819         };
820         struct mlx5_flow_handle *handle;
821         uint32_t handle_idx; /* Index of the mlx5 flow handle memory. */
822         const struct mlx5_flow_tunnel *tunnel;
823 };
824
825 /* Flow meter state. */
826 #define MLX5_FLOW_METER_DISABLE 0
827 #define MLX5_FLOW_METER_ENABLE 1
828
829 #define MLX5_MAN_WIDTH 8
830 /* Modify this value if enum rte_mtr_color changes. */
831 #define RTE_MTR_DROPPED RTE_COLORS
832
833 /* Meter policer statistics */
834 struct mlx5_flow_policer_stats {
835         uint32_t pass_cnt;
836         /**< Color counter for pass. */
837         uint32_t drop_cnt;
838         /**< Color counter for drop. */
839 };
840
841 /* Meter table structure. */
842 struct mlx5_meter_domain_info {
843         struct mlx5_flow_tbl_resource *tbl;
844         /**< Meter table. */
845         struct mlx5_flow_tbl_resource *sfx_tbl;
846         /**< Meter suffix table. */
847         struct mlx5_flow_dv_matcher *drop_matcher;
848         /**< Matcher for Drop. */
849         struct mlx5_flow_dv_matcher *color_matcher;
850         /**< Matcher for Color. */
851         void *jump_actn;
852         /**< Meter match action. */
853         void *green_rule;
854         /**< Meter green rule. */
855         void *drop_rule;
856         /**< Meter drop rule. */
857 };
858
859 /* Meter table set for TX RX FDB. */
860 struct mlx5_meter_domains_infos {
861         uint32_t ref_cnt;
862         /**< Table user count. */
863         struct mlx5_meter_domain_info egress;
864         /**< TX meter table. */
865         struct mlx5_meter_domain_info ingress;
866         /**< RX meter table. */
867         struct mlx5_meter_domain_info transfer;
868         /**< FDB meter table. */
869         void *green_count;
870         /**< Counters for green rule. */
871         void *drop_count;
872         /**< Counters for green rule. */
873         uint32_t fmp[MLX5_ST_SZ_DW(flow_meter_parameters)];
874         /**< Flow meter parameter. */
875         size_t fmp_size;
876         /**< Flow meter parameter size. */
877         void *meter_action;
878         /**< Flow meter action. */
879 };
880
881 /* Meter parameter structure. */
882 struct mlx5_flow_meter {
883         TAILQ_ENTRY(mlx5_flow_meter) next;
884         /**< Pointer to the next flow meter structure. */
885         uint32_t idx; /* Index to meter object. */
886         uint32_t meter_id;
887         /**< Meter id. */
888         struct mlx5_flow_meter_profile *profile;
889         /**< Meter profile parameters. */
890
891         rte_spinlock_t sl; /**< Meter action spinlock. */
892
893         /** Policer actions (per meter output color). */
894         enum rte_mtr_policer_action action[RTE_COLORS];
895
896         uint32_t green_bytes:1;
897         /** Set green bytes stats to be enabled. */
898         uint32_t green_pkts:1;
899         /** Set green packets stats to be enabled. */
900         uint32_t red_bytes:1;
901         /** Set red bytes stats to be enabled. */
902         uint32_t red_pkts:1;
903         /** Set red packets stats to be enabled. */
904         uint32_t bytes_dropped:1;
905         /** Set bytes dropped stats to be enabled. */
906         uint32_t pkts_dropped:1;
907         /** Set packets dropped stats to be enabled. */
908
909         /**< Rule applies to ingress traffic. */
910         uint32_t ingress:1;
911
912         /**< Rule applies to egress traffic. */
913         uint32_t egress:1;
914         /**
915          * Instead of simply matching the properties of traffic as it would
916          * appear on a given DPDK port ID, enabling this attribute transfers
917          * a flow rule to the lowest possible level of any device endpoints
918          * found in the pattern.
919          *
920          * When supported, this effectively enables an application to
921          * re-route traffic not necessarily intended for it (e.g. coming
922          * from or addressed to different physical ports, VFs or
923          * applications) at the device level.
924          *
925          * It complements the behavior of some pattern items such as
926          * RTE_FLOW_ITEM_TYPE_PHY_PORT and is meaningless without them.
927          *
928          * When transferring flow rules, ingress and egress attributes keep
929          * their original meaning, as if processing traffic emitted or
930          * received by the application.
931          */
932         uint32_t transfer:1;
933         struct mlx5_meter_domains_infos *mfts;
934         /**< Flow table created for this meter. */
935         struct mlx5_flow_policer_stats policer_stats;
936         /**< Meter policer statistics. */
937         uint32_t ref_cnt;
938         /**< Use count. */
939         uint32_t active_state:1;
940         /**< Meter state. */
941         uint32_t shared:1;
942         /**< Meter shared or not. */
943         struct mlx5_indexed_pool *flow_ipool;
944         /**< Index pool for flow id. */
945 };
946
947 /* RFC2697 parameter structure. */
948 struct mlx5_flow_meter_srtcm_rfc2697_prm {
949         /* green_saturation_value = cbs_mantissa * 2^cbs_exponent */
950         uint32_t cbs_exponent:5;
951         uint32_t cbs_mantissa:8;
952         /* cir = 8G * cir_mantissa * 1/(2^cir_exponent) Bytes/Sec */
953         uint32_t cir_exponent:5;
954         uint32_t cir_mantissa:8;
955         /* yellow _saturation_value = ebs_mantissa * 2^ebs_exponent */
956         uint32_t ebs_exponent:5;
957         uint32_t ebs_mantissa:8;
958 };
959
960 /* Flow meter profile structure. */
961 struct mlx5_flow_meter_profile {
962         TAILQ_ENTRY(mlx5_flow_meter_profile) next;
963         /**< Pointer to the next flow meter structure. */
964         uint32_t meter_profile_id; /**< Profile id. */
965         struct rte_mtr_meter_profile profile; /**< Profile detail. */
966         union {
967                 struct mlx5_flow_meter_srtcm_rfc2697_prm srtcm_prm;
968                 /**< srtcm_rfc2697 struct. */
969         };
970         uint32_t ref_cnt; /**< Use count. */
971 };
972
973 #define MLX5_MAX_TUNNELS 256
974 #define MLX5_TNL_MISS_RULE_PRIORITY 3
975 #define MLX5_TNL_MISS_FDB_JUMP_GRP  0x1234faac
976
977 /*
978  * When tunnel offload is active, all JUMP group ids are converted
979  * using the same method. That conversion is applied both to tunnel and
980  * regular rule types.
981  * Group ids used in tunnel rules are relative to it's tunnel (!).
982  * Application can create number of steer rules, using the same
983  * tunnel, with different group id in each rule.
984  * Each tunnel stores its groups internally in PMD tunnel object.
985  * Groups used in regular rules do not belong to any tunnel and are stored
986  * in tunnel hub.
987  */
988
989 struct mlx5_flow_tunnel {
990         LIST_ENTRY(mlx5_flow_tunnel) chain;
991         struct rte_flow_tunnel app_tunnel;      /** app tunnel copy */
992         uint32_t tunnel_id;                     /** unique tunnel ID */
993         uint32_t refctn;
994         struct rte_flow_action action;
995         struct rte_flow_item item;
996         struct mlx5_hlist *groups;              /** tunnel groups */
997 };
998
999 /** PMD tunnel related context */
1000 struct mlx5_flow_tunnel_hub {
1001         /* Tunnels list
1002          * Access to the list MUST be MT protected
1003          */
1004         LIST_HEAD(, mlx5_flow_tunnel) tunnels;
1005          /* protect access to the tunnels list */
1006         rte_spinlock_t sl;
1007         struct mlx5_hlist *groups;              /** non tunnel groups */
1008 };
1009
1010 /* convert jump group to flow table ID in tunnel rules */
1011 struct tunnel_tbl_entry {
1012         struct mlx5_hlist_entry hash;
1013         uint32_t flow_table;
1014         uint32_t tunnel_id;
1015         uint32_t group;
1016 };
1017
1018 static inline uint32_t
1019 tunnel_id_to_flow_tbl(uint32_t id)
1020 {
1021         return id | (1u << 16);
1022 }
1023
1024 static inline uint32_t
1025 tunnel_flow_tbl_to_id(uint32_t flow_tbl)
1026 {
1027         return flow_tbl & ~(1u << 16);
1028 }
1029
1030 union tunnel_tbl_key {
1031         uint64_t val;
1032         struct {
1033                 uint32_t tunnel_id;
1034                 uint32_t group;
1035         };
1036 };
1037
1038 static inline struct mlx5_flow_tunnel_hub *
1039 mlx5_tunnel_hub(struct rte_eth_dev *dev)
1040 {
1041         struct mlx5_priv *priv = dev->data->dev_private;
1042         return priv->sh->tunnel_hub;
1043 }
1044
1045 static inline bool
1046 is_tunnel_offload_active(struct rte_eth_dev *dev)
1047 {
1048 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
1049         struct mlx5_priv *priv = dev->data->dev_private;
1050         return !!priv->config.dv_miss_info;
1051 #else
1052         RTE_SET_USED(dev);
1053         return false;
1054 #endif
1055 }
1056
1057 static inline bool
1058 is_flow_tunnel_match_rule(__rte_unused struct rte_eth_dev *dev,
1059                           __rte_unused const struct rte_flow_attr *attr,
1060                           __rte_unused const struct rte_flow_item items[],
1061                           __rte_unused const struct rte_flow_action actions[])
1062 {
1063         return (items[0].type == (typeof(items[0].type))
1064                                  MLX5_RTE_FLOW_ITEM_TYPE_TUNNEL);
1065 }
1066
1067 static inline bool
1068 is_flow_tunnel_steer_rule(__rte_unused struct rte_eth_dev *dev,
1069                           __rte_unused const struct rte_flow_attr *attr,
1070                           __rte_unused const struct rte_flow_item items[],
1071                           __rte_unused const struct rte_flow_action actions[])
1072 {
1073         return (actions[0].type == (typeof(actions[0].type))
1074                                    MLX5_RTE_FLOW_ACTION_TYPE_TUNNEL_SET);
1075 }
1076
1077 static inline const struct mlx5_flow_tunnel *
1078 flow_actions_to_tunnel(const struct rte_flow_action actions[])
1079 {
1080         return actions[0].conf;
1081 }
1082
1083 static inline const struct mlx5_flow_tunnel *
1084 flow_items_to_tunnel(const struct rte_flow_item items[])
1085 {
1086         return items[0].spec;
1087 }
1088
1089 /* Flow structure. */
1090 struct rte_flow {
1091         ILIST_ENTRY(uint32_t)next; /**< Index to the next flow structure. */
1092         uint32_t dev_handles;
1093         /**< Device flow handles that are part of the flow. */
1094         uint32_t drv_type:2; /**< Driver type. */
1095         uint32_t tunnel:1;
1096         uint32_t meter:16; /**< Holds flow meter id. */
1097         uint32_t rix_mreg_copy;
1098         /**< Index to metadata register copy table resource. */
1099         uint32_t counter; /**< Holds flow counter. */
1100         uint32_t tunnel_id;  /**< Tunnel id */
1101         uint32_t age; /**< Holds ASO age bit index. */
1102         uint32_t geneve_tlv_option; /**< Holds Geneve TLV option id. > */
1103 } __rte_packed;
1104
1105 /*
1106  * Define list of valid combinations of RX Hash fields
1107  * (see enum ibv_rx_hash_fields).
1108  */
1109 #define MLX5_RSS_HASH_IPV4 (IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_DST_IPV4)
1110 #define MLX5_RSS_HASH_IPV4_TCP \
1111         (MLX5_RSS_HASH_IPV4 | \
1112          IBV_RX_HASH_SRC_PORT_TCP | IBV_RX_HASH_DST_PORT_TCP)
1113 #define MLX5_RSS_HASH_IPV4_UDP \
1114         (MLX5_RSS_HASH_IPV4 | \
1115          IBV_RX_HASH_SRC_PORT_UDP | IBV_RX_HASH_DST_PORT_UDP)
1116 #define MLX5_RSS_HASH_IPV6 (IBV_RX_HASH_SRC_IPV6 | IBV_RX_HASH_DST_IPV6)
1117 #define MLX5_RSS_HASH_IPV6_TCP \
1118         (MLX5_RSS_HASH_IPV6 | \
1119          IBV_RX_HASH_SRC_PORT_TCP | IBV_RX_HASH_DST_PORT_TCP)
1120 #define MLX5_RSS_HASH_IPV6_UDP \
1121         (MLX5_RSS_HASH_IPV6 | \
1122          IBV_RX_HASH_SRC_PORT_UDP | IBV_RX_HASH_DST_PORT_UDP)
1123 #define MLX5_RSS_HASH_IPV4_SRC_ONLY IBV_RX_HASH_SRC_IPV4
1124 #define MLX5_RSS_HASH_IPV4_DST_ONLY IBV_RX_HASH_DST_IPV4
1125 #define MLX5_RSS_HASH_IPV6_SRC_ONLY IBV_RX_HASH_SRC_IPV6
1126 #define MLX5_RSS_HASH_IPV6_DST_ONLY IBV_RX_HASH_DST_IPV6
1127 #define MLX5_RSS_HASH_IPV4_UDP_SRC_ONLY \
1128         (MLX5_RSS_HASH_IPV4 | IBV_RX_HASH_SRC_PORT_UDP)
1129 #define MLX5_RSS_HASH_IPV4_UDP_DST_ONLY \
1130         (MLX5_RSS_HASH_IPV4 | IBV_RX_HASH_DST_PORT_UDP)
1131 #define MLX5_RSS_HASH_IPV6_UDP_SRC_ONLY \
1132         (MLX5_RSS_HASH_IPV6 | IBV_RX_HASH_SRC_PORT_UDP)
1133 #define MLX5_RSS_HASH_IPV6_UDP_DST_ONLY \
1134         (MLX5_RSS_HASH_IPV6 | IBV_RX_HASH_DST_PORT_UDP)
1135 #define MLX5_RSS_HASH_IPV4_TCP_SRC_ONLY \
1136         (MLX5_RSS_HASH_IPV4 | IBV_RX_HASH_SRC_PORT_TCP)
1137 #define MLX5_RSS_HASH_IPV4_TCP_DST_ONLY \
1138         (MLX5_RSS_HASH_IPV4 | IBV_RX_HASH_DST_PORT_TCP)
1139 #define MLX5_RSS_HASH_IPV6_TCP_SRC_ONLY \
1140         (MLX5_RSS_HASH_IPV6 | IBV_RX_HASH_SRC_PORT_TCP)
1141 #define MLX5_RSS_HASH_IPV6_TCP_DST_ONLY \
1142         (MLX5_RSS_HASH_IPV6 | IBV_RX_HASH_DST_PORT_TCP)
1143 #define MLX5_RSS_HASH_NONE 0ULL
1144
1145 /* array of valid combinations of RX Hash fields for RSS */
1146 static const uint64_t mlx5_rss_hash_fields[] = {
1147         MLX5_RSS_HASH_IPV4,
1148         MLX5_RSS_HASH_IPV4_TCP,
1149         MLX5_RSS_HASH_IPV4_UDP,
1150         MLX5_RSS_HASH_IPV6,
1151         MLX5_RSS_HASH_IPV6_TCP,
1152         MLX5_RSS_HASH_IPV6_UDP,
1153         MLX5_RSS_HASH_NONE,
1154 };
1155
1156 /* Shared RSS action structure */
1157 struct mlx5_shared_action_rss {
1158         ILIST_ENTRY(uint32_t)next; /**< Index to the next RSS structure. */
1159         uint32_t refcnt; /**< Atomically accessed refcnt. */
1160         struct rte_flow_action_rss origin; /**< Original rte RSS action. */
1161         uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */
1162         struct mlx5_ind_table_obj *ind_tbl;
1163         /**< Hash RX queues (hrxq, hrxq_tunnel fields) indirection table. */
1164         uint32_t hrxq[MLX5_RSS_HASH_FIELDS_LEN];
1165         /**< Hash RX queue indexes mapped to mlx5_rss_hash_fields */
1166         rte_spinlock_t action_rss_sl; /**< Shared RSS action spinlock. */
1167 };
1168
1169 struct rte_flow_action_handle {
1170         uint32_t id;
1171 };
1172
1173 /* Thread specific flow workspace intermediate data. */
1174 struct mlx5_flow_workspace {
1175         /* If creating another flow in same thread, push new as stack. */
1176         struct mlx5_flow_workspace *prev;
1177         struct mlx5_flow_workspace *next;
1178         uint32_t inuse; /* can't create new flow with current. */
1179         struct mlx5_flow flows[MLX5_NUM_MAX_DEV_FLOWS];
1180         struct mlx5_flow_rss_desc rss_desc;
1181         uint32_t rssq_num; /* Allocated queue num in rss_desc. */
1182         uint32_t flow_idx; /* Intermediate device flow index. */
1183         struct mlx5_flow_meter *fm; /* Pointer to the meter in flow. */
1184 };
1185
1186 struct mlx5_flow_split_info {
1187         bool external;
1188         /**< True if flow is created by request external to PMD. */
1189         uint8_t skip_scale; /**< Skip the scale the table with factor. */
1190         uint32_t flow_idx; /**< This memory pool index to the flow. */
1191         uint32_t prefix_mark; /**< Prefix subflow mark flag. */
1192         uint64_t prefix_layers; /**< Prefix subflow layers. */
1193 };
1194
1195 typedef int (*mlx5_flow_validate_t)(struct rte_eth_dev *dev,
1196                                     const struct rte_flow_attr *attr,
1197                                     const struct rte_flow_item items[],
1198                                     const struct rte_flow_action actions[],
1199                                     bool external,
1200                                     int hairpin,
1201                                     struct rte_flow_error *error);
1202 typedef struct mlx5_flow *(*mlx5_flow_prepare_t)
1203         (struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
1204          const struct rte_flow_item items[],
1205          const struct rte_flow_action actions[], struct rte_flow_error *error);
1206 typedef int (*mlx5_flow_translate_t)(struct rte_eth_dev *dev,
1207                                      struct mlx5_flow *dev_flow,
1208                                      const struct rte_flow_attr *attr,
1209                                      const struct rte_flow_item items[],
1210                                      const struct rte_flow_action actions[],
1211                                      struct rte_flow_error *error);
1212 typedef int (*mlx5_flow_apply_t)(struct rte_eth_dev *dev, struct rte_flow *flow,
1213                                  struct rte_flow_error *error);
1214 typedef void (*mlx5_flow_remove_t)(struct rte_eth_dev *dev,
1215                                    struct rte_flow *flow);
1216 typedef void (*mlx5_flow_destroy_t)(struct rte_eth_dev *dev,
1217                                     struct rte_flow *flow);
1218 typedef int (*mlx5_flow_query_t)(struct rte_eth_dev *dev,
1219                                  struct rte_flow *flow,
1220                                  const struct rte_flow_action *actions,
1221                                  void *data,
1222                                  struct rte_flow_error *error);
1223 typedef struct mlx5_meter_domains_infos *(*mlx5_flow_create_mtr_tbls_t)
1224                                             (struct rte_eth_dev *dev);
1225 typedef int (*mlx5_flow_destroy_mtr_tbls_t)(struct rte_eth_dev *dev,
1226                                         struct mlx5_meter_domains_infos *tbls);
1227 typedef int (*mlx5_flow_create_policer_rules_t)
1228                                         (struct rte_eth_dev *dev,
1229                                          struct mlx5_flow_meter *fm,
1230                                          const struct rte_flow_attr *attr);
1231 typedef int (*mlx5_flow_destroy_policer_rules_t)
1232                                         (struct rte_eth_dev *dev,
1233                                          const struct mlx5_flow_meter *fm,
1234                                          const struct rte_flow_attr *attr);
1235 typedef uint32_t (*mlx5_flow_counter_alloc_t)
1236                                    (struct rte_eth_dev *dev);
1237 typedef void (*mlx5_flow_counter_free_t)(struct rte_eth_dev *dev,
1238                                          uint32_t cnt);
1239 typedef int (*mlx5_flow_counter_query_t)(struct rte_eth_dev *dev,
1240                                          uint32_t cnt,
1241                                          bool clear, uint64_t *pkts,
1242                                          uint64_t *bytes);
1243 typedef int (*mlx5_flow_get_aged_flows_t)
1244                                         (struct rte_eth_dev *dev,
1245                                          void **context,
1246                                          uint32_t nb_contexts,
1247                                          struct rte_flow_error *error);
1248 typedef int (*mlx5_flow_action_validate_t)
1249                                 (struct rte_eth_dev *dev,
1250                                  const struct rte_flow_indir_action_conf *conf,
1251                                  const struct rte_flow_action *action,
1252                                  struct rte_flow_error *error);
1253 typedef struct rte_flow_action_handle *(*mlx5_flow_action_create_t)
1254                                 (struct rte_eth_dev *dev,
1255                                  const struct rte_flow_indir_action_conf *conf,
1256                                  const struct rte_flow_action *action,
1257                                  struct rte_flow_error *error);
1258 typedef int (*mlx5_flow_action_destroy_t)
1259                                 (struct rte_eth_dev *dev,
1260                                  struct rte_flow_action_handle *action,
1261                                  struct rte_flow_error *error);
1262 typedef int (*mlx5_flow_action_update_t)
1263                         (struct rte_eth_dev *dev,
1264                          struct rte_flow_action_handle *action,
1265                          const void *update,
1266                          struct rte_flow_error *error);
1267 typedef int (*mlx5_flow_action_query_t)
1268                         (struct rte_eth_dev *dev,
1269                          const struct rte_flow_action_handle *action,
1270                          void *data,
1271                          struct rte_flow_error *error);
1272 typedef int (*mlx5_flow_sync_domain_t)
1273                         (struct rte_eth_dev *dev,
1274                          uint32_t domains,
1275                          uint32_t flags);
1276
1277 struct mlx5_flow_driver_ops {
1278         mlx5_flow_validate_t validate;
1279         mlx5_flow_prepare_t prepare;
1280         mlx5_flow_translate_t translate;
1281         mlx5_flow_apply_t apply;
1282         mlx5_flow_remove_t remove;
1283         mlx5_flow_destroy_t destroy;
1284         mlx5_flow_query_t query;
1285         mlx5_flow_create_mtr_tbls_t create_mtr_tbls;
1286         mlx5_flow_destroy_mtr_tbls_t destroy_mtr_tbls;
1287         mlx5_flow_create_policer_rules_t prepare_policer_rules;
1288         mlx5_flow_destroy_policer_rules_t destroy_policer_rules;
1289         mlx5_flow_counter_alloc_t counter_alloc;
1290         mlx5_flow_counter_free_t counter_free;
1291         mlx5_flow_counter_query_t counter_query;
1292         mlx5_flow_get_aged_flows_t get_aged_flows;
1293         mlx5_flow_action_validate_t action_validate;
1294         mlx5_flow_action_create_t action_create;
1295         mlx5_flow_action_destroy_t action_destroy;
1296         mlx5_flow_action_update_t action_update;
1297         mlx5_flow_action_query_t action_query;
1298         mlx5_flow_sync_domain_t sync_domain;
1299 };
1300
1301 /* mlx5_flow.c */
1302
1303 struct mlx5_flow_workspace *mlx5_flow_get_thread_workspace(void);
1304 __extension__
1305 struct flow_grp_info {
1306         uint64_t external:1;
1307         uint64_t transfer:1;
1308         uint64_t fdb_def_rule:1;
1309         /* force standard group translation */
1310         uint64_t std_tbl_fix:1;
1311         uint64_t skip_scale:2;
1312 };
1313
1314 static inline bool
1315 tunnel_use_standard_attr_group_translate
1316                     (struct rte_eth_dev *dev,
1317                      const struct mlx5_flow_tunnel *tunnel,
1318                      const struct rte_flow_attr *attr,
1319                      const struct rte_flow_item items[],
1320                      const struct rte_flow_action actions[])
1321 {
1322         bool verdict;
1323
1324         if (!is_tunnel_offload_active(dev))
1325                 /* no tunnel offload API */
1326                 verdict = true;
1327         else if (tunnel) {
1328                 /*
1329                  * OvS will use jump to group 0 in tunnel steer rule.
1330                  * If tunnel steer rule starts from group 0 (attr.group == 0)
1331                  * that 0 group must be translated with standard method.
1332                  * attr.group == 0 in tunnel match rule translated with tunnel
1333                  * method
1334                  */
1335                 verdict = !attr->group &&
1336                           is_flow_tunnel_steer_rule(dev, attr, items, actions);
1337         } else {
1338                 /*
1339                  * non-tunnel group translation uses standard method for
1340                  * root group only: attr.group == 0
1341                  */
1342                 verdict = !attr->group;
1343         }
1344
1345         return verdict;
1346 }
1347
1348 int mlx5_flow_group_to_table(struct rte_eth_dev *dev,
1349                              const struct mlx5_flow_tunnel *tunnel,
1350                              uint32_t group, uint32_t *table,
1351                              const struct flow_grp_info *flags,
1352                              struct rte_flow_error *error);
1353 uint64_t mlx5_flow_hashfields_adjust(struct mlx5_flow_rss_desc *rss_desc,
1354                                      int tunnel, uint64_t layer_types,
1355                                      uint64_t hash_fields);
1356 int mlx5_flow_discover_priorities(struct rte_eth_dev *dev);
1357 uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority,
1358                                    uint32_t subpriority);
1359 uint32_t mlx5_get_lowest_priority(struct rte_eth_dev *dev,
1360                                         const struct rte_flow_attr *attr);
1361 uint16_t mlx5_get_matcher_priority(struct rte_eth_dev *dev,
1362                                      const struct rte_flow_attr *attr,
1363                                      uint32_t subpriority);
1364 int mlx5_flow_get_reg_id(struct rte_eth_dev *dev,
1365                                      enum mlx5_feature_name feature,
1366                                      uint32_t id,
1367                                      struct rte_flow_error *error);
1368 const struct rte_flow_action *mlx5_flow_find_action
1369                                         (const struct rte_flow_action *actions,
1370                                          enum rte_flow_action_type action);
1371 int mlx5_validate_action_rss(struct rte_eth_dev *dev,
1372                              const struct rte_flow_action *action,
1373                              struct rte_flow_error *error);
1374 int mlx5_flow_validate_action_count(struct rte_eth_dev *dev,
1375                                     const struct rte_flow_attr *attr,
1376                                     struct rte_flow_error *error);
1377 int mlx5_flow_validate_action_drop(uint64_t action_flags,
1378                                    const struct rte_flow_attr *attr,
1379                                    struct rte_flow_error *error);
1380 int mlx5_flow_validate_action_flag(uint64_t action_flags,
1381                                    const struct rte_flow_attr *attr,
1382                                    struct rte_flow_error *error);
1383 int mlx5_flow_validate_action_mark(const struct rte_flow_action *action,
1384                                    uint64_t action_flags,
1385                                    const struct rte_flow_attr *attr,
1386                                    struct rte_flow_error *error);
1387 int mlx5_flow_validate_action_queue(const struct rte_flow_action *action,
1388                                     uint64_t action_flags,
1389                                     struct rte_eth_dev *dev,
1390                                     const struct rte_flow_attr *attr,
1391                                     struct rte_flow_error *error);
1392 int mlx5_flow_validate_action_rss(const struct rte_flow_action *action,
1393                                   uint64_t action_flags,
1394                                   struct rte_eth_dev *dev,
1395                                   const struct rte_flow_attr *attr,
1396                                   uint64_t item_flags,
1397                                   struct rte_flow_error *error);
1398 int mlx5_flow_validate_action_default_miss(uint64_t action_flags,
1399                                 const struct rte_flow_attr *attr,
1400                                 struct rte_flow_error *error);
1401 int mlx5_flow_validate_attributes(struct rte_eth_dev *dev,
1402                                   const struct rte_flow_attr *attributes,
1403                                   struct rte_flow_error *error);
1404 int mlx5_flow_item_acceptable(const struct rte_flow_item *item,
1405                               const uint8_t *mask,
1406                               const uint8_t *nic_mask,
1407                               unsigned int size,
1408                               bool range_accepted,
1409                               struct rte_flow_error *error);
1410 int mlx5_flow_validate_item_eth(const struct rte_flow_item *item,
1411                                 uint64_t item_flags, bool ext_vlan_sup,
1412                                 struct rte_flow_error *error);
1413 int mlx5_flow_validate_item_gre(const struct rte_flow_item *item,
1414                                 uint64_t item_flags,
1415                                 uint8_t target_protocol,
1416                                 struct rte_flow_error *error);
1417 int mlx5_flow_validate_item_gre_key(const struct rte_flow_item *item,
1418                                     uint64_t item_flags,
1419                                     const struct rte_flow_item *gre_item,
1420                                     struct rte_flow_error *error);
1421 int mlx5_flow_validate_item_ipv4(const struct rte_flow_item *item,
1422                                  uint64_t item_flags,
1423                                  uint64_t last_item,
1424                                  uint16_t ether_type,
1425                                  const struct rte_flow_item_ipv4 *acc_mask,
1426                                  bool range_accepted,
1427                                  struct rte_flow_error *error);
1428 int mlx5_flow_validate_item_ipv6(const struct rte_flow_item *item,
1429                                  uint64_t item_flags,
1430                                  uint64_t last_item,
1431                                  uint16_t ether_type,
1432                                  const struct rte_flow_item_ipv6 *acc_mask,
1433                                  struct rte_flow_error *error);
1434 int mlx5_flow_validate_item_mpls(struct rte_eth_dev *dev,
1435                                  const struct rte_flow_item *item,
1436                                  uint64_t item_flags,
1437                                  uint64_t prev_layer,
1438                                  struct rte_flow_error *error);
1439 int mlx5_flow_validate_item_tcp(const struct rte_flow_item *item,
1440                                 uint64_t item_flags,
1441                                 uint8_t target_protocol,
1442                                 const struct rte_flow_item_tcp *flow_mask,
1443                                 struct rte_flow_error *error);
1444 int mlx5_flow_validate_item_udp(const struct rte_flow_item *item,
1445                                 uint64_t item_flags,
1446                                 uint8_t target_protocol,
1447                                 struct rte_flow_error *error);
1448 int mlx5_flow_validate_item_vlan(const struct rte_flow_item *item,
1449                                  uint64_t item_flags,
1450                                  struct rte_eth_dev *dev,
1451                                  struct rte_flow_error *error);
1452 int mlx5_flow_validate_item_vxlan(const struct rte_flow_item *item,
1453                                   uint64_t item_flags,
1454                                   struct rte_flow_error *error);
1455 int mlx5_flow_validate_item_vxlan_gpe(const struct rte_flow_item *item,
1456                                       uint64_t item_flags,
1457                                       struct rte_eth_dev *dev,
1458                                       struct rte_flow_error *error);
1459 int mlx5_flow_validate_item_icmp(const struct rte_flow_item *item,
1460                                  uint64_t item_flags,
1461                                  uint8_t target_protocol,
1462                                  struct rte_flow_error *error);
1463 int mlx5_flow_validate_item_icmp6(const struct rte_flow_item *item,
1464                                    uint64_t item_flags,
1465                                    uint8_t target_protocol,
1466                                    struct rte_flow_error *error);
1467 int mlx5_flow_validate_item_nvgre(const struct rte_flow_item *item,
1468                                   uint64_t item_flags,
1469                                   uint8_t target_protocol,
1470                                   struct rte_flow_error *error);
1471 int mlx5_flow_validate_item_geneve(const struct rte_flow_item *item,
1472                                    uint64_t item_flags,
1473                                    struct rte_eth_dev *dev,
1474                                    struct rte_flow_error *error);
1475 int mlx5_flow_validate_item_geneve_opt(const struct rte_flow_item *item,
1476                                    uint64_t last_item,
1477                                    const struct rte_flow_item *geneve_item,
1478                                    struct rte_eth_dev *dev,
1479                                    struct rte_flow_error *error);
1480 int mlx5_flow_validate_item_ecpri(const struct rte_flow_item *item,
1481                                   uint64_t item_flags,
1482                                   uint64_t last_item,
1483                                   uint16_t ether_type,
1484                                   const struct rte_flow_item_ecpri *acc_mask,
1485                                   struct rte_flow_error *error);
1486 struct mlx5_meter_domains_infos *mlx5_flow_create_mtr_tbls
1487                                         (struct rte_eth_dev *dev);
1488 int mlx5_flow_destroy_mtr_tbls(struct rte_eth_dev *dev,
1489                                struct mlx5_meter_domains_infos *tbl);
1490 int mlx5_flow_prepare_policer_rules(struct rte_eth_dev *dev,
1491                                    struct mlx5_flow_meter *fm,
1492                                    const struct rte_flow_attr *attr);
1493 int mlx5_flow_destroy_policer_rules(struct rte_eth_dev *dev,
1494                                     struct mlx5_flow_meter *fm,
1495                                     const struct rte_flow_attr *attr);
1496 int mlx5_flow_meter_flush(struct rte_eth_dev *dev,
1497                           struct rte_mtr_error *error);
1498 int mlx5_flow_dv_discover_counter_offset_support(struct rte_eth_dev *dev);
1499 int mlx5_action_handle_flush(struct rte_eth_dev *dev);
1500 void mlx5_release_tunnel_hub(struct mlx5_dev_ctx_shared *sh, uint16_t port_id);
1501 int mlx5_alloc_tunnel_hub(struct mlx5_dev_ctx_shared *sh);
1502
1503 /* Hash list callbacks for flow tables: */
1504 struct mlx5_hlist_entry *flow_dv_tbl_create_cb(struct mlx5_hlist *list,
1505                                                uint64_t key, void *entry_ctx);
1506 int flow_dv_tbl_match_cb(struct mlx5_hlist *list,
1507                          struct mlx5_hlist_entry *entry, uint64_t key,
1508                          void *cb_ctx);
1509 void flow_dv_tbl_remove_cb(struct mlx5_hlist *list,
1510                            struct mlx5_hlist_entry *entry);
1511 struct mlx5_flow_tbl_resource *flow_dv_tbl_resource_get(struct rte_eth_dev *dev,
1512                 uint32_t table_id, uint8_t egress, uint8_t transfer,
1513                 bool external, const struct mlx5_flow_tunnel *tunnel,
1514                 uint32_t group_id, uint8_t dummy, struct rte_flow_error *error);
1515
1516 struct mlx5_hlist_entry *flow_dv_tag_create_cb(struct mlx5_hlist *list,
1517                                                uint64_t key, void *cb_ctx);
1518 int flow_dv_tag_match_cb(struct mlx5_hlist *list,
1519                          struct mlx5_hlist_entry *entry, uint64_t key,
1520                          void *cb_ctx);
1521 void flow_dv_tag_remove_cb(struct mlx5_hlist *list,
1522                            struct mlx5_hlist_entry *entry);
1523
1524 int flow_dv_modify_match_cb(struct mlx5_hlist *list,
1525                             struct mlx5_hlist_entry *entry,
1526                             uint64_t key, void *cb_ctx);
1527 struct mlx5_hlist_entry *flow_dv_modify_create_cb(struct mlx5_hlist *list,
1528                                                   uint64_t key, void *ctx);
1529 void flow_dv_modify_remove_cb(struct mlx5_hlist *list,
1530                               struct mlx5_hlist_entry *entry);
1531
1532 struct mlx5_hlist_entry *flow_dv_mreg_create_cb(struct mlx5_hlist *list,
1533                                                 uint64_t key, void *ctx);
1534 int flow_dv_mreg_match_cb(struct mlx5_hlist *list,
1535                           struct mlx5_hlist_entry *entry, uint64_t key,
1536                           void *cb_ctx);
1537 void flow_dv_mreg_remove_cb(struct mlx5_hlist *list,
1538                             struct mlx5_hlist_entry *entry);
1539
1540 int flow_dv_encap_decap_match_cb(struct mlx5_hlist *list,
1541                                  struct mlx5_hlist_entry *entry,
1542                                  uint64_t key, void *cb_ctx);
1543 struct mlx5_hlist_entry *flow_dv_encap_decap_create_cb(struct mlx5_hlist *list,
1544                                 uint64_t key, void *cb_ctx);
1545 void flow_dv_encap_decap_remove_cb(struct mlx5_hlist *list,
1546                                    struct mlx5_hlist_entry *entry);
1547
1548 int flow_dv_matcher_match_cb(struct mlx5_cache_list *list,
1549                              struct mlx5_cache_entry *entry, void *ctx);
1550 struct mlx5_cache_entry *flow_dv_matcher_create_cb(struct mlx5_cache_list *list,
1551                 struct mlx5_cache_entry *entry, void *ctx);
1552 void flow_dv_matcher_remove_cb(struct mlx5_cache_list *list,
1553                                struct mlx5_cache_entry *entry);
1554
1555 int flow_dv_port_id_match_cb(struct mlx5_cache_list *list,
1556                              struct mlx5_cache_entry *entry, void *cb_ctx);
1557 struct mlx5_cache_entry *flow_dv_port_id_create_cb(struct mlx5_cache_list *list,
1558                 struct mlx5_cache_entry *entry, void *cb_ctx);
1559 void flow_dv_port_id_remove_cb(struct mlx5_cache_list *list,
1560                                struct mlx5_cache_entry *entry);
1561
1562 int flow_dv_push_vlan_match_cb(struct mlx5_cache_list *list,
1563                                struct mlx5_cache_entry *entry, void *cb_ctx);
1564 struct mlx5_cache_entry *flow_dv_push_vlan_create_cb
1565                                 (struct mlx5_cache_list *list,
1566                                  struct mlx5_cache_entry *entry, void *cb_ctx);
1567 void flow_dv_push_vlan_remove_cb(struct mlx5_cache_list *list,
1568                                  struct mlx5_cache_entry *entry);
1569
1570 int flow_dv_sample_match_cb(struct mlx5_cache_list *list,
1571                             struct mlx5_cache_entry *entry, void *cb_ctx);
1572 struct mlx5_cache_entry *flow_dv_sample_create_cb
1573                                 (struct mlx5_cache_list *list,
1574                                  struct mlx5_cache_entry *entry, void *cb_ctx);
1575 void flow_dv_sample_remove_cb(struct mlx5_cache_list *list,
1576                               struct mlx5_cache_entry *entry);
1577
1578 int flow_dv_dest_array_match_cb(struct mlx5_cache_list *list,
1579                                 struct mlx5_cache_entry *entry, void *cb_ctx);
1580 struct mlx5_cache_entry *flow_dv_dest_array_create_cb
1581                                 (struct mlx5_cache_list *list,
1582                                  struct mlx5_cache_entry *entry, void *cb_ctx);
1583 void flow_dv_dest_array_remove_cb(struct mlx5_cache_list *list,
1584                                   struct mlx5_cache_entry *entry);
1585 struct mlx5_aso_age_action *flow_aso_age_get_by_idx(struct rte_eth_dev *dev,
1586                                                     uint32_t age_idx);
1587 int flow_dev_geneve_tlv_option_resource_register(struct rte_eth_dev *dev,
1588                                              const struct rte_flow_item *item,
1589                                              struct rte_flow_error *error);
1590
1591 void flow_release_workspace(void *data);
1592 int mlx5_flow_os_init_workspace_once(void);
1593 void *mlx5_flow_os_get_specific_workspace(void);
1594 int mlx5_flow_os_set_specific_workspace(struct mlx5_flow_workspace *data);
1595 void mlx5_flow_os_release_workspace(void);
1596
1597
1598 #endif /* RTE_PMD_MLX5_FLOW_H_ */