ba43ad705d029461363ddc18f98bac1a4ee80c7a
[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 <rte_atomic.h>
25 #include <rte_alarm.h>
26
27 #include "mlx5.h"
28 #include "mlx5_prm.h"
29
30 /* Private rte flow items. */
31 enum mlx5_rte_flow_item_type {
32         MLX5_RTE_FLOW_ITEM_TYPE_END = INT_MIN,
33         MLX5_RTE_FLOW_ITEM_TYPE_TAG,
34         MLX5_RTE_FLOW_ITEM_TYPE_TX_QUEUE,
35 };
36
37 /* Private (internal) rte flow actions. */
38 enum mlx5_rte_flow_action_type {
39         MLX5_RTE_FLOW_ACTION_TYPE_END = INT_MIN,
40         MLX5_RTE_FLOW_ACTION_TYPE_TAG,
41         MLX5_RTE_FLOW_ACTION_TYPE_COPY_MREG,
42 };
43
44 /* Matches on selected register. */
45 struct mlx5_rte_flow_item_tag {
46         enum modify_reg id;
47         uint32_t data;
48 };
49
50 /* Modify selected register. */
51 struct mlx5_rte_flow_action_set_tag {
52         enum modify_reg id;
53         uint32_t data;
54 };
55
56 struct mlx5_flow_action_copy_mreg {
57         enum modify_reg dst;
58         enum modify_reg src;
59 };
60
61 /* Matches on source queue. */
62 struct mlx5_rte_flow_item_tx_queue {
63         uint32_t queue;
64 };
65
66 /* Pattern outer Layer bits. */
67 #define MLX5_FLOW_LAYER_OUTER_L2 (1u << 0)
68 #define MLX5_FLOW_LAYER_OUTER_L3_IPV4 (1u << 1)
69 #define MLX5_FLOW_LAYER_OUTER_L3_IPV6 (1u << 2)
70 #define MLX5_FLOW_LAYER_OUTER_L4_UDP (1u << 3)
71 #define MLX5_FLOW_LAYER_OUTER_L4_TCP (1u << 4)
72 #define MLX5_FLOW_LAYER_OUTER_VLAN (1u << 5)
73
74 /* Pattern inner Layer bits. */
75 #define MLX5_FLOW_LAYER_INNER_L2 (1u << 6)
76 #define MLX5_FLOW_LAYER_INNER_L3_IPV4 (1u << 7)
77 #define MLX5_FLOW_LAYER_INNER_L3_IPV6 (1u << 8)
78 #define MLX5_FLOW_LAYER_INNER_L4_UDP (1u << 9)
79 #define MLX5_FLOW_LAYER_INNER_L4_TCP (1u << 10)
80 #define MLX5_FLOW_LAYER_INNER_VLAN (1u << 11)
81
82 /* Pattern tunnel Layer bits. */
83 #define MLX5_FLOW_LAYER_VXLAN (1u << 12)
84 #define MLX5_FLOW_LAYER_VXLAN_GPE (1u << 13)
85 #define MLX5_FLOW_LAYER_GRE (1u << 14)
86 #define MLX5_FLOW_LAYER_MPLS (1u << 15)
87 /* List of tunnel Layer bits continued below. */
88
89 /* General pattern items bits. */
90 #define MLX5_FLOW_ITEM_METADATA (1u << 16)
91 #define MLX5_FLOW_ITEM_PORT_ID (1u << 17)
92 #define MLX5_FLOW_ITEM_TAG (1u << 18)
93
94 /* Pattern MISC bits. */
95 #define MLX5_FLOW_LAYER_ICMP (1u << 19)
96 #define MLX5_FLOW_LAYER_ICMP6 (1u << 20)
97 #define MLX5_FLOW_LAYER_GRE_KEY (1u << 21)
98
99 /* Pattern tunnel Layer bits (continued). */
100 #define MLX5_FLOW_LAYER_IPIP (1u << 21)
101 #define MLX5_FLOW_LAYER_IPV6_ENCAP (1u << 22)
102 #define MLX5_FLOW_LAYER_NVGRE (1u << 23)
103 #define MLX5_FLOW_LAYER_GENEVE (1u << 24)
104
105 /* Queue items. */
106 #define MLX5_FLOW_ITEM_TX_QUEUE (1u << 25)
107
108 /* Outer Masks. */
109 #define MLX5_FLOW_LAYER_OUTER_L3 \
110         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_OUTER_L3_IPV6)
111 #define MLX5_FLOW_LAYER_OUTER_L4 \
112         (MLX5_FLOW_LAYER_OUTER_L4_UDP | MLX5_FLOW_LAYER_OUTER_L4_TCP)
113 #define MLX5_FLOW_LAYER_OUTER \
114         (MLX5_FLOW_LAYER_OUTER_L2 | MLX5_FLOW_LAYER_OUTER_L3 | \
115          MLX5_FLOW_LAYER_OUTER_L4)
116
117 /* LRO support mask, i.e. flow contains IPv4/IPv6 and TCP. */
118 #define MLX5_FLOW_LAYER_IPV4_LRO \
119         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_OUTER_L4_TCP)
120 #define MLX5_FLOW_LAYER_IPV6_LRO \
121         (MLX5_FLOW_LAYER_OUTER_L3_IPV6 | MLX5_FLOW_LAYER_OUTER_L4_TCP)
122
123 /* Tunnel Masks. */
124 #define MLX5_FLOW_LAYER_TUNNEL \
125         (MLX5_FLOW_LAYER_VXLAN | MLX5_FLOW_LAYER_VXLAN_GPE | \
126          MLX5_FLOW_LAYER_GRE | MLX5_FLOW_LAYER_NVGRE | MLX5_FLOW_LAYER_MPLS | \
127          MLX5_FLOW_LAYER_IPIP | MLX5_FLOW_LAYER_IPV6_ENCAP | \
128          MLX5_FLOW_LAYER_GENEVE)
129
130 /* Inner Masks. */
131 #define MLX5_FLOW_LAYER_INNER_L3 \
132         (MLX5_FLOW_LAYER_INNER_L3_IPV4 | MLX5_FLOW_LAYER_INNER_L3_IPV6)
133 #define MLX5_FLOW_LAYER_INNER_L4 \
134         (MLX5_FLOW_LAYER_INNER_L4_UDP | MLX5_FLOW_LAYER_INNER_L4_TCP)
135 #define MLX5_FLOW_LAYER_INNER \
136         (MLX5_FLOW_LAYER_INNER_L2 | MLX5_FLOW_LAYER_INNER_L3 | \
137          MLX5_FLOW_LAYER_INNER_L4)
138
139 /* Layer Masks. */
140 #define MLX5_FLOW_LAYER_L2 \
141         (MLX5_FLOW_LAYER_OUTER_L2 | MLX5_FLOW_LAYER_INNER_L2)
142 #define MLX5_FLOW_LAYER_L3_IPV4 \
143         (MLX5_FLOW_LAYER_OUTER_L3_IPV4 | MLX5_FLOW_LAYER_INNER_L3_IPV4)
144 #define MLX5_FLOW_LAYER_L3_IPV6 \
145         (MLX5_FLOW_LAYER_OUTER_L3_IPV6 | MLX5_FLOW_LAYER_INNER_L3_IPV6)
146 #define MLX5_FLOW_LAYER_L3 \
147         (MLX5_FLOW_LAYER_L3_IPV4 | MLX5_FLOW_LAYER_L3_IPV6)
148 #define MLX5_FLOW_LAYER_L4 \
149         (MLX5_FLOW_LAYER_OUTER_L4 | MLX5_FLOW_LAYER_INNER_L4)
150
151 /* Actions */
152 #define MLX5_FLOW_ACTION_DROP (1u << 0)
153 #define MLX5_FLOW_ACTION_QUEUE (1u << 1)
154 #define MLX5_FLOW_ACTION_RSS (1u << 2)
155 #define MLX5_FLOW_ACTION_FLAG (1u << 3)
156 #define MLX5_FLOW_ACTION_MARK (1u << 4)
157 #define MLX5_FLOW_ACTION_COUNT (1u << 5)
158 #define MLX5_FLOW_ACTION_PORT_ID (1u << 6)
159 #define MLX5_FLOW_ACTION_OF_POP_VLAN (1u << 7)
160 #define MLX5_FLOW_ACTION_OF_PUSH_VLAN (1u << 8)
161 #define MLX5_FLOW_ACTION_OF_SET_VLAN_VID (1u << 9)
162 #define MLX5_FLOW_ACTION_OF_SET_VLAN_PCP (1u << 10)
163 #define MLX5_FLOW_ACTION_SET_IPV4_SRC (1u << 11)
164 #define MLX5_FLOW_ACTION_SET_IPV4_DST (1u << 12)
165 #define MLX5_FLOW_ACTION_SET_IPV6_SRC (1u << 13)
166 #define MLX5_FLOW_ACTION_SET_IPV6_DST (1u << 14)
167 #define MLX5_FLOW_ACTION_SET_TP_SRC (1u << 15)
168 #define MLX5_FLOW_ACTION_SET_TP_DST (1u << 16)
169 #define MLX5_FLOW_ACTION_JUMP (1u << 17)
170 #define MLX5_FLOW_ACTION_SET_TTL (1u << 18)
171 #define MLX5_FLOW_ACTION_DEC_TTL (1u << 19)
172 #define MLX5_FLOW_ACTION_SET_MAC_SRC (1u << 20)
173 #define MLX5_FLOW_ACTION_SET_MAC_DST (1u << 21)
174 #define MLX5_FLOW_ACTION_VXLAN_ENCAP (1u << 22)
175 #define MLX5_FLOW_ACTION_VXLAN_DECAP (1u << 23)
176 #define MLX5_FLOW_ACTION_NVGRE_ENCAP (1u << 24)
177 #define MLX5_FLOW_ACTION_NVGRE_DECAP (1u << 25)
178 #define MLX5_FLOW_ACTION_RAW_ENCAP (1u << 26)
179 #define MLX5_FLOW_ACTION_RAW_DECAP (1u << 27)
180 #define MLX5_FLOW_ACTION_INC_TCP_SEQ (1u << 28)
181 #define MLX5_FLOW_ACTION_DEC_TCP_SEQ (1u << 29)
182 #define MLX5_FLOW_ACTION_INC_TCP_ACK (1u << 30)
183 #define MLX5_FLOW_ACTION_DEC_TCP_ACK (1u << 31)
184 #define MLX5_FLOW_ACTION_SET_TAG (1ull << 32)
185
186 #define MLX5_FLOW_FATE_ACTIONS \
187         (MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_QUEUE | \
188          MLX5_FLOW_ACTION_RSS | MLX5_FLOW_ACTION_JUMP)
189
190 #define MLX5_FLOW_FATE_ESWITCH_ACTIONS \
191         (MLX5_FLOW_ACTION_DROP | MLX5_FLOW_ACTION_PORT_ID | \
192          MLX5_FLOW_ACTION_JUMP)
193
194 #define MLX5_FLOW_ENCAP_ACTIONS (MLX5_FLOW_ACTION_VXLAN_ENCAP | \
195                                  MLX5_FLOW_ACTION_NVGRE_ENCAP | \
196                                  MLX5_FLOW_ACTION_RAW_ENCAP | \
197                                  MLX5_FLOW_ACTION_OF_PUSH_VLAN)
198
199 #define MLX5_FLOW_DECAP_ACTIONS (MLX5_FLOW_ACTION_VXLAN_DECAP | \
200                                  MLX5_FLOW_ACTION_NVGRE_DECAP | \
201                                  MLX5_FLOW_ACTION_RAW_DECAP | \
202                                  MLX5_FLOW_ACTION_OF_POP_VLAN)
203
204 #define MLX5_FLOW_MODIFY_HDR_ACTIONS (MLX5_FLOW_ACTION_SET_IPV4_SRC | \
205                                       MLX5_FLOW_ACTION_SET_IPV4_DST | \
206                                       MLX5_FLOW_ACTION_SET_IPV6_SRC | \
207                                       MLX5_FLOW_ACTION_SET_IPV6_DST | \
208                                       MLX5_FLOW_ACTION_SET_TP_SRC | \
209                                       MLX5_FLOW_ACTION_SET_TP_DST | \
210                                       MLX5_FLOW_ACTION_SET_TTL | \
211                                       MLX5_FLOW_ACTION_DEC_TTL | \
212                                       MLX5_FLOW_ACTION_SET_MAC_SRC | \
213                                       MLX5_FLOW_ACTION_SET_MAC_DST | \
214                                       MLX5_FLOW_ACTION_INC_TCP_SEQ | \
215                                       MLX5_FLOW_ACTION_DEC_TCP_SEQ | \
216                                       MLX5_FLOW_ACTION_INC_TCP_ACK | \
217                                       MLX5_FLOW_ACTION_DEC_TCP_ACK | \
218                                       MLX5_FLOW_ACTION_OF_SET_VLAN_VID | \
219                                       MLX5_FLOW_ACTION_SET_TAG)
220
221 #define MLX5_FLOW_VLAN_ACTIONS (MLX5_FLOW_ACTION_OF_POP_VLAN | \
222                                 MLX5_FLOW_ACTION_OF_PUSH_VLAN)
223 #ifndef IPPROTO_MPLS
224 #define IPPROTO_MPLS 137
225 #endif
226
227 /* UDP port number for MPLS */
228 #define MLX5_UDP_PORT_MPLS 6635
229
230 /* UDP port numbers for VxLAN. */
231 #define MLX5_UDP_PORT_VXLAN 4789
232 #define MLX5_UDP_PORT_VXLAN_GPE 4790
233
234 /* UDP port numbers for GENEVE. */
235 #define MLX5_UDP_PORT_GENEVE 6081
236
237 /* Priority reserved for default flows. */
238 #define MLX5_FLOW_PRIO_RSVD ((uint32_t)-1)
239
240 /*
241  * Number of sub priorities.
242  * For each kind of pattern matching i.e. L2, L3, L4 to have a correct
243  * matching on the NIC (firmware dependent) L4 most have the higher priority
244  * followed by L3 and ending with L2.
245  */
246 #define MLX5_PRIORITY_MAP_L2 2
247 #define MLX5_PRIORITY_MAP_L3 1
248 #define MLX5_PRIORITY_MAP_L4 0
249 #define MLX5_PRIORITY_MAP_MAX 3
250
251 /* Valid layer type for IPV4 RSS. */
252 #define MLX5_IPV4_LAYER_TYPES \
253         (ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4 | \
254          ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_NONFRAG_IPV4_UDP | \
255          ETH_RSS_NONFRAG_IPV4_OTHER)
256
257 /* IBV hash source bits  for IPV4. */
258 #define MLX5_IPV4_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV4 | IBV_RX_HASH_DST_IPV4)
259
260 /* Valid layer type for IPV6 RSS. */
261 #define MLX5_IPV6_LAYER_TYPES \
262         (ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6 | ETH_RSS_NONFRAG_IPV6_TCP | \
263          ETH_RSS_NONFRAG_IPV6_UDP | ETH_RSS_IPV6_EX  | ETH_RSS_IPV6_TCP_EX | \
264          ETH_RSS_IPV6_UDP_EX | ETH_RSS_NONFRAG_IPV6_OTHER)
265
266 /* IBV hash source bits  for IPV6. */
267 #define MLX5_IPV6_IBV_RX_HASH (IBV_RX_HASH_SRC_IPV6 | IBV_RX_HASH_DST_IPV6)
268
269
270 /* Geneve header first 16Bit */
271 #define MLX5_GENEVE_VER_MASK 0x3
272 #define MLX5_GENEVE_VER_SHIFT 14
273 #define MLX5_GENEVE_VER_VAL(a) \
274                 (((a) >> (MLX5_GENEVE_VER_SHIFT)) & (MLX5_GENEVE_VER_MASK))
275 #define MLX5_GENEVE_OPTLEN_MASK 0x3F
276 #define MLX5_GENEVE_OPTLEN_SHIFT 7
277 #define MLX5_GENEVE_OPTLEN_VAL(a) \
278             (((a) >> (MLX5_GENEVE_OPTLEN_SHIFT)) & (MLX5_GENEVE_OPTLEN_MASK))
279 #define MLX5_GENEVE_OAMF_MASK 0x1
280 #define MLX5_GENEVE_OAMF_SHIFT 7
281 #define MLX5_GENEVE_OAMF_VAL(a) \
282                 (((a) >> (MLX5_GENEVE_OAMF_SHIFT)) & (MLX5_GENEVE_OAMF_MASK))
283 #define MLX5_GENEVE_CRITO_MASK 0x1
284 #define MLX5_GENEVE_CRITO_SHIFT 6
285 #define MLX5_GENEVE_CRITO_VAL(a) \
286                 (((a) >> (MLX5_GENEVE_CRITO_SHIFT)) & (MLX5_GENEVE_CRITO_MASK))
287 #define MLX5_GENEVE_RSVD_MASK 0x3F
288 #define MLX5_GENEVE_RSVD_VAL(a) ((a) & (MLX5_GENEVE_RSVD_MASK))
289 /*
290  * The length of the Geneve options fields, expressed in four byte multiples,
291  * not including the eight byte fixed tunnel.
292  */
293 #define MLX5_GENEVE_OPT_LEN_0 14
294 #define MLX5_GENEVE_OPT_LEN_1 63
295
296 enum mlx5_flow_drv_type {
297         MLX5_FLOW_TYPE_MIN,
298         MLX5_FLOW_TYPE_DV,
299         MLX5_FLOW_TYPE_VERBS,
300         MLX5_FLOW_TYPE_MAX,
301 };
302
303 /* Matcher PRM representation */
304 struct mlx5_flow_dv_match_params {
305         size_t size;
306         /**< Size of match value. Do NOT split size and key! */
307         uint32_t buf[MLX5_ST_SZ_DW(fte_match_param)];
308         /**< Matcher value. This value is used as the mask or as a key. */
309 };
310
311 /* Matcher structure. */
312 struct mlx5_flow_dv_matcher {
313         LIST_ENTRY(mlx5_flow_dv_matcher) next;
314         /* Pointer to the next element. */
315         rte_atomic32_t refcnt; /**< Reference counter. */
316         void *matcher_object; /**< Pointer to DV matcher */
317         uint16_t crc; /**< CRC of key. */
318         uint16_t priority; /**< Priority of matcher. */
319         uint8_t egress; /**< Egress matcher. */
320         uint8_t transfer; /**< 1 if the flow is E-Switch flow. */
321         uint32_t group; /**< The matcher group. */
322         struct mlx5_flow_dv_match_params mask; /**< Matcher mask. */
323 };
324
325 #define MLX5_ENCAP_MAX_LEN 132
326
327 /* Encap/decap resource structure. */
328 struct mlx5_flow_dv_encap_decap_resource {
329         LIST_ENTRY(mlx5_flow_dv_encap_decap_resource) next;
330         /* Pointer to next element. */
331         rte_atomic32_t refcnt; /**< Reference counter. */
332         void *verbs_action;
333         /**< Verbs encap/decap action object. */
334         uint8_t buf[MLX5_ENCAP_MAX_LEN];
335         size_t size;
336         uint8_t reformat_type;
337         uint8_t ft_type;
338         uint64_t flags; /**< Flags for RDMA API. */
339 };
340
341 /* Tag resource structure. */
342 struct mlx5_flow_dv_tag_resource {
343         LIST_ENTRY(mlx5_flow_dv_tag_resource) next;
344         /* Pointer to next element. */
345         rte_atomic32_t refcnt; /**< Reference counter. */
346         void *action;
347         /**< Verbs tag action object. */
348         uint32_t tag; /**< the tag value. */
349 };
350
351 /* Number of modification commands. */
352 #define MLX5_MODIFY_NUM 8
353
354 /* Modify resource structure */
355 struct mlx5_flow_dv_modify_hdr_resource {
356         LIST_ENTRY(mlx5_flow_dv_modify_hdr_resource) next;
357         /* Pointer to next element. */
358         rte_atomic32_t refcnt; /**< Reference counter. */
359         struct ibv_flow_action *verbs_action;
360         /**< Verbs modify header action object. */
361         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
362         uint32_t actions_num; /**< Number of modification actions. */
363         struct mlx5_modification_cmd actions[MLX5_MODIFY_NUM];
364         /**< Modification actions. */
365         uint64_t flags; /**< Flags for RDMA API. */
366 };
367
368 /* Jump action resource structure. */
369 struct mlx5_flow_dv_jump_tbl_resource {
370         LIST_ENTRY(mlx5_flow_dv_jump_tbl_resource) next;
371         /* Pointer to next element. */
372         rte_atomic32_t refcnt; /**< Reference counter. */
373         void *action; /**< Pointer to the rdma core action. */
374         uint8_t ft_type; /**< Flow table type, Rx or Tx. */
375         struct mlx5_flow_tbl_resource *tbl; /**< The target table. */
376 };
377
378 /* Port ID resource structure. */
379 struct mlx5_flow_dv_port_id_action_resource {
380         LIST_ENTRY(mlx5_flow_dv_port_id_action_resource) next;
381         /* Pointer to next element. */
382         rte_atomic32_t refcnt; /**< Reference counter. */
383         void *action;
384         /**< Verbs tag action object. */
385         uint32_t port_id; /**< Port ID value. */
386 };
387
388 /* Push VLAN action resource structure */
389 struct mlx5_flow_dv_push_vlan_action_resource {
390         LIST_ENTRY(mlx5_flow_dv_push_vlan_action_resource) next;
391         /* Pointer to next element. */
392         rte_atomic32_t refcnt; /**< Reference counter. */
393         void *action; /**< Direct verbs action object. */
394         uint8_t ft_type; /**< Flow table type, Rx, Tx or FDB. */
395         rte_be32_t vlan_tag; /**< VLAN tag value. */
396 };
397
398 /*
399  * Max number of actions per DV flow.
400  * See CREATE_FLOW_MAX_FLOW_ACTIONS_SUPPORTED
401  * In rdma-core file providers/mlx5/verbs.c
402  */
403 #define MLX5_DV_MAX_NUMBER_OF_ACTIONS 8
404
405 /* DV flows structure. */
406 struct mlx5_flow_dv {
407         struct mlx5_hrxq *hrxq; /**< Hash Rx queues. */
408         /* Flow DV api: */
409         struct mlx5_flow_dv_matcher *matcher; /**< Cache to matcher. */
410         struct mlx5_flow_dv_match_params value;
411         /**< Holds the value that the packet is compared to. */
412         struct mlx5_flow_dv_encap_decap_resource *encap_decap;
413         /**< Pointer to encap/decap resource in cache. */
414         struct mlx5_flow_dv_modify_hdr_resource *modify_hdr;
415         /**< Pointer to modify header resource in cache. */
416         struct ibv_flow *flow; /**< Installed flow. */
417         struct mlx5_flow_dv_jump_tbl_resource *jump;
418         /**< Pointer to the jump action resource. */
419         struct mlx5_flow_dv_port_id_action_resource *port_id_action;
420         /**< Pointer to port ID action resource. */
421         struct mlx5_vf_vlan vf_vlan;
422         /**< Structure for VF VLAN workaround. */
423         struct mlx5_flow_dv_push_vlan_action_resource *push_vlan_res;
424         /**< Pointer to push VLAN action resource in cache. */
425         struct mlx5_flow_dv_tag_resource *tag_resource;
426         /**< pointer to the tag action. */
427 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
428         void *actions[MLX5_DV_MAX_NUMBER_OF_ACTIONS];
429         /**< Action list. */
430 #endif
431         int actions_n; /**< number of actions. */
432 };
433
434 /* Verbs specification header. */
435 struct ibv_spec_header {
436         enum ibv_flow_spec_type type;
437         uint16_t size;
438 };
439
440 /** Handles information leading to a drop fate. */
441 struct mlx5_flow_verbs {
442         LIST_ENTRY(mlx5_flow_verbs) next;
443         unsigned int size; /**< Size of the attribute. */
444         struct {
445                 struct ibv_flow_attr *attr;
446                 /**< Pointer to the Specification buffer. */
447                 uint8_t *specs; /**< Pointer to the specifications. */
448         };
449         struct ibv_flow *flow; /**< Verbs flow pointer. */
450         struct mlx5_hrxq *hrxq; /**< Hash Rx queue object. */
451         struct mlx5_vf_vlan vf_vlan;
452         /**< Structure for VF VLAN workaround. */
453 };
454
455 struct mlx5_flow_rss {
456         uint32_t level;
457         uint32_t queue_num; /**< Number of entries in @p queue. */
458         uint64_t types; /**< Specific RSS hash types (see ETH_RSS_*). */
459         uint16_t (*queue)[]; /**< Destination queues to redirect traffic to. */
460         uint8_t key[MLX5_RSS_HASH_KEY_LEN]; /**< RSS hash key. */
461 };
462
463 /** Device flow structure. */
464 struct mlx5_flow {
465         LIST_ENTRY(mlx5_flow) next;
466         struct rte_flow *flow; /**< Pointer to the main flow. */
467         uint64_t layers;
468         /**< Bit-fields of present layers, see MLX5_FLOW_LAYER_*. */
469         uint64_t actions;
470         /**< Bit-fields of detected actions, see MLX5_FLOW_ACTION_*. */
471         uint64_t hash_fields; /**< Verbs hash Rx queue hash fields. */
472         uint8_t ingress; /**< 1 if the flow is ingress. */
473         uint32_t group; /**< The group index. */
474         uint8_t transfer; /**< 1 if the flow is E-Switch flow. */
475         union {
476 #ifdef HAVE_IBV_FLOW_DV_SUPPORT
477                 struct mlx5_flow_dv dv;
478 #endif
479                 struct mlx5_flow_verbs verbs;
480         };
481         bool external; /**< true if the flow is created external to PMD. */
482 };
483
484 /* Flow structure. */
485 struct rte_flow {
486         TAILQ_ENTRY(rte_flow) next; /**< Pointer to the next flow structure. */
487         enum mlx5_flow_drv_type drv_type; /**< Driver type. */
488         struct mlx5_flow_rss rss; /**< RSS context. */
489         struct mlx5_flow_counter *counter; /**< Holds flow counter. */
490         LIST_HEAD(dev_flows, mlx5_flow) dev_flows;
491         /**< Device flows that are part of the flow. */
492         struct mlx5_fdir *fdir; /**< Pointer to associated FDIR if any. */
493         uint32_t hairpin_flow_id; /**< The flow id used for hairpin. */
494 };
495
496 typedef int (*mlx5_flow_validate_t)(struct rte_eth_dev *dev,
497                                     const struct rte_flow_attr *attr,
498                                     const struct rte_flow_item items[],
499                                     const struct rte_flow_action actions[],
500                                     bool external,
501                                     struct rte_flow_error *error);
502 typedef struct mlx5_flow *(*mlx5_flow_prepare_t)
503         (const struct rte_flow_attr *attr, const struct rte_flow_item items[],
504          const struct rte_flow_action actions[], struct rte_flow_error *error);
505 typedef int (*mlx5_flow_translate_t)(struct rte_eth_dev *dev,
506                                      struct mlx5_flow *dev_flow,
507                                      const struct rte_flow_attr *attr,
508                                      const struct rte_flow_item items[],
509                                      const struct rte_flow_action actions[],
510                                      struct rte_flow_error *error);
511 typedef int (*mlx5_flow_apply_t)(struct rte_eth_dev *dev, struct rte_flow *flow,
512                                  struct rte_flow_error *error);
513 typedef void (*mlx5_flow_remove_t)(struct rte_eth_dev *dev,
514                                    struct rte_flow *flow);
515 typedef void (*mlx5_flow_destroy_t)(struct rte_eth_dev *dev,
516                                     struct rte_flow *flow);
517 typedef int (*mlx5_flow_query_t)(struct rte_eth_dev *dev,
518                                  struct rte_flow *flow,
519                                  const struct rte_flow_action *actions,
520                                  void *data,
521                                  struct rte_flow_error *error);
522 struct mlx5_flow_driver_ops {
523         mlx5_flow_validate_t validate;
524         mlx5_flow_prepare_t prepare;
525         mlx5_flow_translate_t translate;
526         mlx5_flow_apply_t apply;
527         mlx5_flow_remove_t remove;
528         mlx5_flow_destroy_t destroy;
529         mlx5_flow_query_t query;
530 };
531
532 #define MLX5_CNT_CONTAINER(sh, batch, thread) (&(sh)->cmng.ccont \
533         [(((sh)->cmng.mhi[batch] >> (thread)) & 0x1) * 2 + (batch)])
534 #define MLX5_CNT_CONTAINER_UNUSED(sh, batch, thread) (&(sh)->cmng.ccont \
535         [(~((sh)->cmng.mhi[batch] >> (thread)) & 0x1) * 2 + (batch)])
536
537 /* mlx5_flow.c */
538
539 struct mlx5_flow_id_pool *mlx5_flow_id_pool_alloc(void);
540 void mlx5_flow_id_pool_release(struct mlx5_flow_id_pool *pool);
541 uint32_t mlx5_flow_id_get(struct mlx5_flow_id_pool *pool, uint32_t *id);
542 uint32_t mlx5_flow_id_release(struct mlx5_flow_id_pool *pool,
543                               uint32_t id);
544 int mlx5_flow_group_to_table(const struct rte_flow_attr *attributes,
545                              bool external, uint32_t group, uint32_t *table,
546                              struct rte_flow_error *error);
547 uint64_t mlx5_flow_hashfields_adjust(struct mlx5_flow *dev_flow, int tunnel,
548                                      uint64_t layer_types,
549                                      uint64_t hash_fields);
550 uint32_t mlx5_flow_adjust_priority(struct rte_eth_dev *dev, int32_t priority,
551                                    uint32_t subpriority);
552 const struct rte_flow_action *mlx5_flow_find_action
553                                         (const struct rte_flow_action *actions,
554                                          enum rte_flow_action_type action);
555 int mlx5_flow_validate_action_count(struct rte_eth_dev *dev,
556                                     const struct rte_flow_attr *attr,
557                                     struct rte_flow_error *error);
558 int mlx5_flow_validate_action_drop(uint64_t action_flags,
559                                    const struct rte_flow_attr *attr,
560                                    struct rte_flow_error *error);
561 int mlx5_flow_validate_action_flag(uint64_t action_flags,
562                                    const struct rte_flow_attr *attr,
563                                    struct rte_flow_error *error);
564 int mlx5_flow_validate_action_mark(const struct rte_flow_action *action,
565                                    uint64_t action_flags,
566                                    const struct rte_flow_attr *attr,
567                                    struct rte_flow_error *error);
568 int mlx5_flow_validate_action_queue(const struct rte_flow_action *action,
569                                     uint64_t action_flags,
570                                     struct rte_eth_dev *dev,
571                                     const struct rte_flow_attr *attr,
572                                     struct rte_flow_error *error);
573 int mlx5_flow_validate_action_rss(const struct rte_flow_action *action,
574                                   uint64_t action_flags,
575                                   struct rte_eth_dev *dev,
576                                   const struct rte_flow_attr *attr,
577                                   uint64_t item_flags,
578                                   struct rte_flow_error *error);
579 int mlx5_flow_validate_attributes(struct rte_eth_dev *dev,
580                                   const struct rte_flow_attr *attributes,
581                                   struct rte_flow_error *error);
582 int mlx5_flow_item_acceptable(const struct rte_flow_item *item,
583                               const uint8_t *mask,
584                               const uint8_t *nic_mask,
585                               unsigned int size,
586                               struct rte_flow_error *error);
587 int mlx5_flow_validate_item_eth(const struct rte_flow_item *item,
588                                 uint64_t item_flags,
589                                 struct rte_flow_error *error);
590 int mlx5_flow_validate_item_gre(const struct rte_flow_item *item,
591                                 uint64_t item_flags,
592                                 uint8_t target_protocol,
593                                 struct rte_flow_error *error);
594 int mlx5_flow_validate_item_gre_key(const struct rte_flow_item *item,
595                                     uint64_t item_flags,
596                                     const struct rte_flow_item *gre_item,
597                                     struct rte_flow_error *error);
598 int mlx5_flow_validate_item_ipv4(const struct rte_flow_item *item,
599                                  uint64_t item_flags,
600                                  uint64_t last_item,
601                                  uint16_t ether_type,
602                                  const struct rte_flow_item_ipv4 *acc_mask,
603                                  struct rte_flow_error *error);
604 int mlx5_flow_validate_item_ipv6(const struct rte_flow_item *item,
605                                  uint64_t item_flags,
606                                  uint64_t last_item,
607                                  uint16_t ether_type,
608                                  const struct rte_flow_item_ipv6 *acc_mask,
609                                  struct rte_flow_error *error);
610 int mlx5_flow_validate_item_mpls(struct rte_eth_dev *dev,
611                                  const struct rte_flow_item *item,
612                                  uint64_t item_flags,
613                                  uint64_t prev_layer,
614                                  struct rte_flow_error *error);
615 int mlx5_flow_validate_item_tcp(const struct rte_flow_item *item,
616                                 uint64_t item_flags,
617                                 uint8_t target_protocol,
618                                 const struct rte_flow_item_tcp *flow_mask,
619                                 struct rte_flow_error *error);
620 int mlx5_flow_validate_item_udp(const struct rte_flow_item *item,
621                                 uint64_t item_flags,
622                                 uint8_t target_protocol,
623                                 struct rte_flow_error *error);
624 int mlx5_flow_validate_item_vlan(const struct rte_flow_item *item,
625                                  uint64_t item_flags,
626                                  struct rte_eth_dev *dev,
627                                  struct rte_flow_error *error);
628 int mlx5_flow_validate_item_vxlan(const struct rte_flow_item *item,
629                                   uint64_t item_flags,
630                                   struct rte_flow_error *error);
631 int mlx5_flow_validate_item_vxlan_gpe(const struct rte_flow_item *item,
632                                       uint64_t item_flags,
633                                       struct rte_eth_dev *dev,
634                                       struct rte_flow_error *error);
635 int mlx5_flow_validate_item_icmp(const struct rte_flow_item *item,
636                                  uint64_t item_flags,
637                                  uint8_t target_protocol,
638                                  struct rte_flow_error *error);
639 int mlx5_flow_validate_item_icmp6(const struct rte_flow_item *item,
640                                    uint64_t item_flags,
641                                    uint8_t target_protocol,
642                                    struct rte_flow_error *error);
643 int mlx5_flow_validate_item_nvgre(const struct rte_flow_item *item,
644                                   uint64_t item_flags,
645                                   uint8_t target_protocol,
646                                   struct rte_flow_error *error);
647 int mlx5_flow_validate_item_geneve(const struct rte_flow_item *item,
648                                    uint64_t item_flags,
649                                    struct rte_eth_dev *dev,
650                                    struct rte_flow_error *error);
651 #endif /* RTE_PMD_MLX5_FLOW_H_ */