net/mlx5: add E-Switch port id action to Direct Verbs
[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 <netinet/in.h>
9 #include <sys/queue.h>
10 #include <stdalign.h>
11 #include <stdint.h>
12 #include <string.h>
13
14 /* Verbs header. */
15 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
16 #ifdef PEDANTIC
17 #pragma GCC diagnostic ignored "-Wpedantic"
18 #endif
19 #include <infiniband/verbs.h>
20 #ifdef PEDANTIC
21 #pragma GCC diagnostic error "-Wpedantic"
22 #endif
23
24 #include "mlx5.h"
25 #include "mlx5_prm.h"
26
27 /* Pattern outer Layer bits. */
28 #define MLX5_FLOW_LAYER_OUTER_L2 (1u << 0)
29 #define MLX5_FLOW_LAYER_OUTER_L3_IPV4 (1u << 1)
30 #define MLX5_FLOW_LAYER_OUTER_L3_IPV6 (1u << 2)
31 #define MLX5_FLOW_LAYER_OUTER_L4_UDP (1u << 3)
32 #define MLX5_FLOW_LAYER_OUTER_L4_TCP (1u << 4)
33 #define MLX5_FLOW_LAYER_OUTER_VLAN (1u << 5)
34
35 /* Pattern inner Layer bits. */
36 #define MLX5_FLOW_LAYER_INNER_L2 (1u << 6)
37 #define MLX5_FLOW_LAYER_INNER_L3_IPV4 (1u << 7)
38 #define MLX5_FLOW_LAYER_INNER_L3_IPV6 (1u << 8)
39 #define MLX5_FLOW_LAYER_INNER_L4_UDP (1u << 9)
40 #define MLX5_FLOW_LAYER_INNER_L4_TCP (1u << 10)
41 #define MLX5_FLOW_LAYER_INNER_VLAN (1u << 11)
42
43 /* Pattern tunnel Layer bits. */
44 #define MLX5_FLOW_LAYER_VXLAN (1u << 12)
45 #define MLX5_FLOW_LAYER_VXLAN_GPE (1u << 13)
46 #define MLX5_FLOW_LAYER_GRE (1u << 14)
47 #define MLX5_FLOW_LAYER_MPLS (1u << 15)
48
49 /* General pattern items bits. */
50 #define MLX5_FLOW_ITEM_METADATA (1u << 16)
51 #define MLX5_FLOW_ITEM_PORT_ID (1u << 17)
52
53 /* Outer Masks. */
54 #define MLX5_FLOW_LAYER_OUTER_L3 \
55         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_OUTER_L3_IPV6)
56 #define MLX5_FLOW_LAYER_OUTER_L4 \
57         (MLX5_FLOW_LAYER_OUTER_L4_UDP | MLX5_FLOW_LAYER_OUTER_L4_TCP)
58 #define MLX5_FLOW_LAYER_OUTER \
59         (MLX5_FLOW_LAYER_OUTER_L2 | MLX5_FLOW_LAYER_OUTER_L3 | \
60          MLX5_FLOW_LAYER_OUTER_L4)
61
62 /* Tunnel Masks. */
63 #define MLX5_FLOW_LAYER_TUNNEL \
64         (MLX5_FLOW_LAYER_VXLAN | MLX5_FLOW_LAYER_VXLAN_GPE | \
65          MLX5_FLOW_LAYER_GRE | MLX5_FLOW_LAYER_MPLS)
66
67 /* Inner Masks. */
68 #define MLX5_FLOW_LAYER_INNER_L3 \
69         (MLX5_FLOW_LAYER_INNER_L3_IPV4 | MLX5_FLOW_LAYER_INNER_L3_IPV6)
70 #define MLX5_FLOW_LAYER_INNER_L4 \
71         (MLX5_FLOW_LAYER_INNER_L4_UDP | MLX5_FLOW_LAYER_INNER_L4_TCP)
72 #define MLX5_FLOW_LAYER_INNER \
73         (MLX5_FLOW_LAYER_INNER_L2 | MLX5_FLOW_LAYER_INNER_L3 | \
74          MLX5_FLOW_LAYER_INNER_L4)
75
76 /* Layer Masks. */
77 #define MLX5_FLOW_LAYER_L2 \
78         (MLX5_FLOW_LAYER_OUTER_L2 | MLX5_FLOW_LAYER_INNER_L2)
79 #define MLX5_FLOW_LAYER_L3_IPV4 \
80         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_INNER_L3_IPV4)
81 #define MLX5_FLOW_LAYER_L3_IPV6 \
82         (MLX5_FLOW_LAYER_OUTER_L3_IPV6 | MLX5_FLOW_LAYER_INNER_L3_IPV6)
83 #define MLX5_FLOW_LAYER_L3 \
84         (MLX5_FLOW_LAYER_L3_IPV4 | MLX5_FLOW_LAYER_L3_IPV6)
85 #define MLX5_FLOW_LAYER_L4 \
86         (MLX5_FLOW_LAYER_OUTER_L4 | MLX5_FLOW_LAYER_INNER_L4)
87
88 /* Actions */
89 #define MLX5_FLOW_ACTION_DROP (1u << 0)
90 #define MLX5_FLOW_ACTION_QUEUE (1u << 1)
91 #define MLX5_FLOW_ACTION_RSS (1u << 2)
92 #define MLX5_FLOW_ACTION_FLAG (1u << 3)
93 #define MLX5_FLOW_ACTION_MARK (1u << 4)
94 #define MLX5_FLOW_ACTION_COUNT (1u << 5)
95 #define MLX5_FLOW_ACTION_PORT_ID (1u << 6)
96 #define MLX5_FLOW_ACTION_OF_POP_VLAN (1u << 7)
97 #define MLX5_FLOW_ACTION_OF_PUSH_VLAN (1u << 8)
98 #define MLX5_FLOW_ACTION_OF_SET_VLAN_VID (1u << 9)
99 #define MLX5_FLOW_ACTION_OF_SET_VLAN_PCP (1u << 10)
100 #define MLX5_FLOW_ACTION_SET_IPV4_SRC (1u << 11)
101 #define MLX5_FLOW_ACTION_SET_IPV4_DST (1u << 12)
102 #define MLX5_FLOW_ACTION_SET_IPV6_SRC (1u << 13)
103 #define MLX5_FLOW_ACTION_SET_IPV6_DST (1u << 14)
104 #define MLX5_FLOW_ACTION_SET_TP_SRC (1u << 15)
105 #define MLX5_FLOW_ACTION_SET_TP_DST (1u << 16)
106 #define MLX5_FLOW_ACTION_JUMP (1u << 17)
107 #define MLX5_FLOW_ACTION_SET_TTL (1u << 18)
108 #define MLX5_FLOW_ACTION_DEC_TTL (1u << 19)
109 #define MLX5_FLOW_ACTION_SET_MAC_SRC (1u << 20)
110 #define MLX5_FLOW_ACTION_SET_MAC_DST (1u << 21)
111 #define MLX5_FLOW_ACTION_VXLAN_ENCAP (1u << 22)
112 #define MLX5_FLOW_ACTION_VXLAN_DECAP (1u << 23)
113 #define MLX5_FLOW_ACTION_NVGRE_ENCAP (1u << 24)
114 #define MLX5_FLOW_ACTION_NVGRE_DECAP (1u << 25)
115 #define MLX5_FLOW_ACTION_RAW_ENCAP (1u << 26)
116 #define MLX5_FLOW_ACTION_RAW_DECAP (1u << 27)
117
118 #define MLX5_FLOW_FATE_ACTIONS \
119         (MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_QUEUE | \
120          MLX5_FLOW_ACTION_RSS | MLX5_FLOW_ACTION_JUMP)
121
122 #define MLX5_FLOW_FATE_ESWITCH_ACTIONS \
123         (MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_PORT_ID | \
124          MLX5_FLOW_ACTION_JUMP)
125
126 #define MLX5_FLOW_ENCAP_ACTIONS (MLX5_FLOW_ACTION_VXLAN_ENCAP | \
127                                  MLX5_FLOW_ACTION_NVGRE_ENCAP | \
128                                  MLX5_FLOW_ACTION_RAW_ENCAP)
129
130 #define MLX5_FLOW_DECAP_ACTIONS (MLX5_FLOW_ACTION_VXLAN_DECAP | \
131                                  MLX5_FLOW_ACTION_NVGRE_DECAP | \
132                                  MLX5_FLOW_ACTION_RAW_DECAP)
133
134 #define MLX5_FLOW_MODIFY_HDR_ACTIONS (MLX5_FLOW_ACTION_SET_IPV4_SRC | \
135                                       MLX5_FLOW_ACTION_SET_IPV4_DST | \
136                                       MLX5_FLOW_ACTION_SET_IPV6_SRC | \
137                                       MLX5_FLOW_ACTION_SET_IPV6_DST | \
138                                       MLX5_FLOW_ACTION_SET_TP_SRC | \
139                                       MLX5_FLOW_ACTION_SET_TP_DST | \
140                                       MLX5_FLOW_ACTION_SET_TTL | \
141                                       MLX5_FLOW_ACTION_DEC_TTL | \
142                                       MLX5_FLOW_ACTION_SET_MAC_SRC | \
143                                       MLX5_FLOW_ACTION_SET_MAC_DST)
144
145 #ifndef IPPROTO_MPLS
146 #define IPPROTO_MPLS 137
147 #endif
148
149 /* UDP port number for MPLS */
150 #define MLX5_UDP_PORT_MPLS 6635
151
152 /* UDP port numbers for VxLAN. */
153 #define MLX5_UDP_PORT_VXLAN 4789
154 #define MLX5_UDP_PORT_VXLAN_GPE 4790
155
156 /* Priority reserved for default flows. */
157 #define MLX5_FLOW_PRIO_RSVD ((uint32_t)-1)
158
159 /*
160  * Number of sub priorities.
161  * For each kind of pattern matching i.e. L2, L3, L4 to have a correct
162  * matching on the NIC (firmware dependent) L4 most have the higher priority
163  * followed by L3 and ending with L2.
164  */
165 #define MLX5_PRIORITY_MAP_L2 2
166 #define MLX5_PRIORITY_MAP_L3 1
167 #define MLX5_PRIORITY_MAP_L4 0
168 #define MLX5_PRIORITY_MAP_MAX 3
169
170 /* Valid layer type for IPV4 RSS. */
171 #define MLX5_IPV4_LAYER_TYPES \
172         (ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4 | \
173          ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_NONFRAG_IPV4_UDP | \
174          ETH_RSS_NONFRAG_IPV4_OTHER)
175
176 /* IBV hash source bits  for IPV4. */
177 #define MLX5_IPV4_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_DST_IPV4)
178
179 /* Valid layer type for IPV6 RSS. */
180 #define MLX5_IPV6_LAYER_TYPES \
181         (ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6 | ETH_RSS_NONFRAG_IPV6_TCP | \
182          ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_IPV6_EX  | ETH_RSS_IPV6_TCP_EX | \
183          ETH_RSS_IPV6_UDP_EX | ETH_RSS_NONFRAG_IPV6_OTHER)
184
185 /* IBV hash source bits  for IPV6. */
186 #define MLX5_IPV6_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV6 | IBV_RX_HASH_DST_IPV6)
187
188 enum mlx5_flow_drv_type {
189         MLX5_FLOW_TYPE_MIN,
190         MLX5_FLOW_TYPE_DV,
191         MLX5_FLOW_TYPE_TCF,
192         MLX5_FLOW_TYPE_VERBS,
193         MLX5_FLOW_TYPE_MAX,
194 };
195
196 /* Matcher PRM representation */
197 struct mlx5_flow_dv_match_params {
198         size_t size;
199         /**< Size of match value. Do NOT split size and key! */
200         uint32_t buf[MLX5_ST_SZ_DW(fte_match_param)];
201         /**< Matcher value. This value is used as the mask or as a key. */
202 };
203
204 /* Matcher structure. */
205 struct mlx5_flow_dv_matcher {
206         LIST_ENTRY(mlx5_flow_dv_matcher) next;
207         /* Pointer to the next element. */
208         rte_atomic32_t refcnt; /**< Reference counter. */
209         void *matcher_object; /**< Pointer to DV matcher */
210         uint16_t crc; /**< CRC of key. */
211         uint16_t priority; /**< Priority of matcher. */
212         uint8_t egress; /**< Egress matcher. */
213         uint8_t transfer; /**< 1 if the flow is E-Switch flow. */
214         uint32_t group; /**< The matcher group. */
215         struct mlx5_flow_dv_match_params mask; /**< Matcher mask. */
216 };
217
218 #define MLX5_ENCAP_MAX_LEN 132
219
220 /* Encap/decap resource structure. */
221 struct mlx5_flow_dv_encap_decap_resource {
222         LIST_ENTRY(mlx5_flow_dv_encap_decap_resource) next;
223         /* Pointer to next element. */
224         rte_atomic32_t refcnt; /**< Reference counter. */
225         void *verbs_action;
226         /**< Verbs encap/decap action object. */
227         uint8_t buf[MLX5_ENCAP_MAX_LEN];
228         size_t size;
229         uint8_t reformat_type;
230         uint8_t ft_type;
231         uint64_t flags; /**< Flags for RDMA API. */
232 };
233
234 /* Tag resource structure. */
235 struct mlx5_flow_dv_tag_resource {
236         LIST_ENTRY(mlx5_flow_dv_tag_resource) next;
237         /* Pointer to next element. */
238         rte_atomic32_t refcnt; /**< Reference counter. */
239         void *action;
240         /**< Verbs tag action object. */
241         uint32_t tag; /**< the tag value. */
242 };
243
244 /* Number of modification commands. */
245 #define MLX5_MODIFY_NUM 8
246
247 /* Modify resource structure */
248 struct mlx5_flow_dv_modify_hdr_resource {
249         LIST_ENTRY(mlx5_flow_dv_modify_hdr_resource) next;
250         /* Pointer to next element. */
251         rte_atomic32_t refcnt; /**< Reference counter. */
252         struct ibv_flow_action *verbs_action;
253         /**< Verbs modify header action object. */
254         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
255         uint32_t actions_num; /**< Number of modification actions. */
256         struct mlx5_modification_cmd actions[MLX5_MODIFY_NUM];
257         /**< Modification actions. */
258 };
259
260 /* Jump action resource structure. */
261 struct mlx5_flow_dv_jump_tbl_resource {
262         LIST_ENTRY(mlx5_flow_dv_jump_tbl_resource) next;
263         /* Pointer to next element. */
264         rte_atomic32_t refcnt; /**< Reference counter. */
265         void *action; /**< Pointer to the rdma core action. */
266         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
267         struct mlx5_flow_tbl_resource *tbl; /**< The target table. */
268 };
269
270 /* Port ID resource structure. */
271 struct mlx5_flow_dv_port_id_action_resource {
272         LIST_ENTRY(mlx5_flow_dv_port_id_action_resource) next;
273         /* Pointer to next element. */
274         rte_atomic32_t refcnt; /**< Reference counter. */
275         void *action;
276         /**< Verbs tag action object. */
277         uint32_t port_id; /**< Port ID value. */
278 };
279
280 /*
281  * Max number of actions per DV flow.
282  * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED
283  * In rdma-core file providers/mlx5/verbs.c
284  */
285 #define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8
286
287 /* DV flows structure. */
288 struct mlx5_flow_dv {
289         uint64_t hash_fields; /**< Fields that participate in the hash. */
290         struct mlx5_hrxq *hrxq; /**< Hash Rx queues. */
291         /* Flow DV api: */
292         struct mlx5_flow_dv_matcher *matcher; /**< Cache to matcher. */
293         struct mlx5_flow_dv_match_params value;
294         /**< Holds the value that the packet is compared to. */
295         struct mlx5_flow_dv_encap_decap_resource *encap_decap;
296         /**< Pointer to encap/decap resource in cache. */
297         struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
298         /**< Pointer to modify header resource in cache. */
299         struct ibv_flow *flow; /**< Installed flow. */
300         struct mlx5_flow_dv_jump_tbl_resource *jump;
301         /**< Pointer to the jump action resource. */
302         struct mlx5_flow_dv_port_id_action_resource *port_id_action;
303         /**< Pointer to port ID action resource. */
304 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
305         void *actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS];
306         /**< Action list. */
307 #endif
308         int actions_n; /**< number of actions. */
309 };
310
311 /** Linux TC flower driver for E-Switch flow. */
312 struct mlx5_flow_tcf {
313         struct nlmsghdr *nlh;
314         struct tcmsg *tcm;
315         uint32_t *ptc_flags; /**< tc rule applied flags. */
316         union { /**< Tunnel encap/decap descriptor. */
317                 struct flow_tcf_tunnel_hdr *tunnel;
318                 struct flow_tcf_vxlan_decap *vxlan_decap;
319                 struct flow_tcf_vxlan_encap *vxlan_encap;
320         };
321         uint32_t applied:1; /**< Whether rule is currently applied. */
322 #ifndef NDEBUG
323         uint32_t nlsize; /**< Size of NL message buffer for debug check. */
324 #endif
325 };
326
327 /* Verbs specification header. */
328 struct ibv_spec_header {
329         enum ibv_flow_spec_type type;
330         uint16_t size;
331 };
332
333 /** Handles information leading to a drop fate. */
334 struct mlx5_flow_verbs {
335         LIST_ENTRY(mlx5_flow_verbs) next;
336         unsigned int size; /**< Size of the attribute. */
337         struct {
338                 struct ibv_flow_attr *attr;
339                 /**< Pointer to the Specification buffer. */
340                 uint8_t *specs; /**< Pointer to the specifications. */
341         };
342         struct ibv_flow *flow; /**< Verbs flow pointer. */
343         struct mlx5_hrxq *hrxq; /**< Hash Rx queue object. */
344         uint64_t hash_fields; /**< Verbs hash Rx queue hash fields. */
345 };
346
347 /** Device flow structure. */
348 struct mlx5_flow {
349         LIST_ENTRY(mlx5_flow) next;
350         struct rte_flow *flow; /**< Pointer to the main flow. */
351         uint64_t layers;
352         /**< Bit-fields of present layers, see MLX5_FLOW_LAYER_*. */
353         union {
354 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
355                 struct mlx5_flow_dv dv;
356 #endif
357                 struct mlx5_flow_tcf tcf;
358                 struct mlx5_flow_verbs verbs;
359         };
360 };
361
362 /* Counters information. */
363 struct mlx5_flow_counter {
364         LIST_ENTRY(mlx5_flow_counter) next; /**< Pointer to the next counter. */
365         uint32_t shared:1; /**< Share counter ID with other flow rules. */
366         uint32_t ref_cnt:31; /**< Reference counter. */
367         uint32_t id; /**< Counter ID. */
368         union {  /**< Holds the counters for the rule. */
369 #if defined(HAVE_IBV_DEVICE_COUNTERS_SET_V42)
370                 struct ibv_counter_set *cs;
371 #elif defined(HAVE_IBV_DEVICE_COUNTERS_SET_V45)
372                 struct ibv_counters *cs;
373 #endif
374                 struct mlx5_devx_counter_set *dcs;
375         };
376         uint64_t hits; /**< Number of packets matched by the rule. */
377         uint64_t bytes; /**< Number of bytes matched by the rule. */
378         void *action; /**< Pointer to the dv action. */
379 };
380
381 /* Flow structure. */
382 struct rte_flow {
383         TAILQ_ENTRY(rte_flow) next; /**< Pointer to the next flow structure. */
384         enum mlx5_flow_drv_type drv_type; /**< Driver type. */
385         struct mlx5_flow_counter *counter; /**< Holds flow counter. */
386         struct mlx5_flow_dv_tag_resource *tag_resource;
387         /**< pointer to the tag action. */
388         struct rte_flow_action_rss rss;/**< RSS context. */
389         uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */
390         uint16_t (*queue)[]; /**< Destination queues to redirect traffic to. */
391         LIST_HEAD(dev_flows, mlx5_flow) dev_flows;
392         /**< Device flows that are part of the flow. */
393         uint64_t actions;
394         /**< Bit-fields of detected actions, see MLX5_FLOW_ACTION_*. */
395         struct mlx5_fdir *fdir; /**< Pointer to associated FDIR if any. */
396         uint8_t ingress; /**< 1 if the flow is ingress. */
397         uint32_t group; /**< The group index. */
398         uint8_t transfer; /**< 1 if the flow is E-Switch flow. */
399 };
400
401 typedef int (*mlx5_flow_validate_t)(struct rte_eth_dev *dev,
402                                     const struct rte_flow_attr *attr,
403                                     const struct rte_flow_item items[],
404                                     const struct rte_flow_action actions[],
405                                     struct rte_flow_error *error);
406 typedef struct mlx5_flow *(*mlx5_flow_prepare_t)
407         (const struct rte_flow_attr *attr, const struct rte_flow_item items[],
408          const struct rte_flow_action actions[], struct rte_flow_error *error);
409 typedef int (*mlx5_flow_translate_t)(struct rte_eth_dev *dev,
410                                      struct mlx5_flow *dev_flow,
411                                      const struct rte_flow_attr *attr,
412                                      const struct rte_flow_item items[],
413                                      const struct rte_flow_action actions[],
414                                      struct rte_flow_error *error);
415 typedef int (*mlx5_flow_apply_t)(struct rte_eth_dev *dev, struct rte_flow *flow,
416                                  struct rte_flow_error *error);
417 typedef void (*mlx5_flow_remove_t)(struct rte_eth_dev *dev,
418                                    struct rte_flow *flow);
419 typedef void (*mlx5_flow_destroy_t)(struct rte_eth_dev *dev,
420                                     struct rte_flow *flow);
421 typedef int (*mlx5_flow_query_t)(struct rte_eth_dev *dev,
422                                  struct rte_flow *flow,
423                                  const struct rte_flow_action *actions,
424                                  void *data,
425                                  struct rte_flow_error *error);
426 struct mlx5_flow_driver_ops {
427         mlx5_flow_validate_t validate;
428         mlx5_flow_prepare_t prepare;
429         mlx5_flow_translate_t translate;
430         mlx5_flow_apply_t apply;
431         mlx5_flow_remove_t remove;
432         mlx5_flow_destroy_t destroy;
433         mlx5_flow_query_t query;
434 };
435
436 /* mlx5_flow.c */
437
438 uint64_t mlx5_flow_hashfields_adjust(struct mlx5_flow *dev_flow, int tunnel,
439                                      uint64_t layer_types,
440                                      uint64_t hash_fields);
441 uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority,
442                                    uint32_t subpriority);
443 int mlx5_flow_validate_action_count(struct rte_eth_dev *dev,
444                                     const struct rte_flow_attr *attr,
445                                     struct rte_flow_error *error);
446 int mlx5_flow_validate_action_drop(uint64_t action_flags,
447                                    const struct rte_flow_attr *attr,
448                                    struct rte_flow_error *error);
449 int mlx5_flow_validate_action_flag(uint64_t action_flags,
450                                    const struct rte_flow_attr *attr,
451                                    struct rte_flow_error *error);
452 int mlx5_flow_validate_action_mark(const struct rte_flow_action *action,
453                                    uint64_t action_flags,
454                                    const struct rte_flow_attr *attr,
455                                    struct rte_flow_error *error);
456 int mlx5_flow_validate_action_queue(const struct rte_flow_action *action,
457                                     uint64_t action_flags,
458                                     struct rte_eth_dev *dev,
459                                     const struct rte_flow_attr *attr,
460                                     struct rte_flow_error *error);
461 int mlx5_flow_validate_action_rss(const struct rte_flow_action *action,
462                                   uint64_t action_flags,
463                                   struct rte_eth_dev *dev,
464                                   const struct rte_flow_attr *attr,
465                                   uint64_t item_flags,
466                                   struct rte_flow_error *error);
467 int mlx5_flow_validate_attributes(struct rte_eth_dev *dev,
468                                   const struct rte_flow_attr *attributes,
469                                   struct rte_flow_error *error);
470 int mlx5_flow_item_acceptable(const struct rte_flow_item *item,
471                               const uint8_t *mask,
472                               const uint8_t *nic_mask,
473                               unsigned int size,
474                               struct rte_flow_error *error);
475 int mlx5_flow_validate_item_eth(const struct rte_flow_item *item,
476                                 uint64_t item_flags,
477                                 struct rte_flow_error *error);
478 int mlx5_flow_validate_item_gre(const struct rte_flow_item *item,
479                                 uint64_t item_flags,
480                                 uint8_t target_protocol,
481                                 struct rte_flow_error *error);
482 int mlx5_flow_validate_item_ipv4(const struct rte_flow_item *item,
483                                  uint64_t item_flags,
484                                  const struct rte_flow_item_ipv4 *acc_mask,
485                                  struct rte_flow_error *error);
486 int mlx5_flow_validate_item_ipv6(const struct rte_flow_item *item,
487                                  uint64_t item_flags,
488                                  const struct rte_flow_item_ipv6 *acc_mask,
489                                  struct rte_flow_error *error);
490 int mlx5_flow_validate_item_mpls(struct rte_eth_dev *dev,
491                                  const struct rte_flow_item *item,
492                                  uint64_t item_flags,
493                                  uint64_t prev_layer,
494                                  struct rte_flow_error *error);
495 int mlx5_flow_validate_item_tcp(const struct rte_flow_item *item,
496                                 uint64_t item_flags,
497                                 uint8_t target_protocol,
498                                 const struct rte_flow_item_tcp *flow_mask,
499                                 struct rte_flow_error *error);
500 int mlx5_flow_validate_item_udp(const struct rte_flow_item *item,
501                                 uint64_t item_flags,
502                                 uint8_t target_protocol,
503                                 struct rte_flow_error *error);
504 int mlx5_flow_validate_item_vlan(const struct rte_flow_item *item,
505                                  uint64_t item_flags,
506                                  struct rte_flow_error *error);
507 int mlx5_flow_validate_item_vxlan(const struct rte_flow_item *item,
508                                   uint64_t item_flags,
509                                   struct rte_flow_error *error);
510 int mlx5_flow_validate_item_vxlan_gpe(const struct rte_flow_item *item,
511                                       uint64_t item_flags,
512                                       struct rte_eth_dev *dev,
513                                       struct rte_flow_error *error);
514
515 /* mlx5_flow_tcf.c */
516
517 int mlx5_flow_tcf_init(struct mlx5_flow_tcf_context *ctx,
518                        unsigned int ifindex, struct rte_flow_error *error);
519 struct mlx5_flow_tcf_context *mlx5_flow_tcf_context_create(void);
520 void mlx5_flow_tcf_context_destroy(struct mlx5_flow_tcf_context *ctx);
521
522 #endif /* RTE_PMD_MLX5_FLOW_H_ */