4cc9dcc4ec8ff0e20131f5a32faeb580514be518
[dpdk.git] / drivers / net / bnxt / tf_ulp / ulp_rte_parser.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2020 Broadcom
3  * All rights reserved.
4  */
5
6 #ifndef _ULP_RTE_PARSER_H_
7 #define _ULP_RTE_PARSER_H_
8
9 #include <rte_log.h>
10 #include <rte_flow.h>
11 #include <rte_flow_driver.h>
12 #include "ulp_template_db.h"
13 #include "ulp_template_struct.h"
14
15 /* defines to be used in the tunnel header parsing */
16 #define BNXT_ULP_ENCAP_IPV4_VER_HLEN_TOS        2
17 #define BNXT_ULP_ENCAP_IPV4_ID_PROTO            6
18 #define BNXT_ULP_ENCAP_IPV4_DEST_IP             4
19 #define BNXT_ULP_ENCAP_IPV4_SIZE                12
20 #define BNXT_ULP_ENCAP_IPV6_SIZE                8
21 #define BNXT_ULP_ENCAP_UDP_SIZE                 4
22
23 /* Function to handle the parsing of the RTE port id. */
24 int32_t
25 ulp_rte_parser_svif_process(struct ulp_rte_parser_params *params);
26
27 /*
28  * Function to handle the parsing of RTE Flows and placing
29  * the RTE flow items into the ulp structures.
30  */
31 int32_t
32 bnxt_ulp_rte_parser_hdr_parse(const struct rte_flow_item pattern[],
33                               struct ulp_rte_parser_params *params);
34
35 /*
36  * Function to handle the parsing of RTE Flows and placing
37  * the RTE flow actions into the ulp structures.
38  */
39 int32_t
40 bnxt_ulp_rte_parser_act_parse(const struct rte_flow_action actions[],
41                               struct ulp_rte_parser_params *params);
42
43 /* Function to handle the parsing of RTE Flow item PF Header. */
44 int32_t
45 ulp_rte_pf_hdr_handler(const struct rte_flow_item *item,
46                        struct ulp_rte_parser_params *params);
47
48 /* Function to handle the parsing of RTE Flow item VF Header. */
49 int32_t
50 ulp_rte_vf_hdr_handler(const struct rte_flow_item *item,
51                        struct ulp_rte_parser_params *params);
52
53 /* Function to handle the parsing of RTE Flow item port id Header. */
54 int32_t
55 ulp_rte_port_id_hdr_handler(const struct rte_flow_item *item,
56                             struct ulp_rte_parser_params *params);
57
58 /* Function to handle the parsing of RTE Flow item port Header. */
59 int32_t
60 ulp_rte_phy_port_hdr_handler(const struct rte_flow_item *item,
61                              struct ulp_rte_parser_params *params);
62
63 /* Function to handle the RTE item Ethernet Header. */
64 int32_t
65 ulp_rte_eth_hdr_handler(const struct rte_flow_item *item,
66                         struct ulp_rte_parser_params *params);
67
68 /* Function to handle the parsing of RTE Flow item Vlan Header. */
69 int32_t
70 ulp_rte_vlan_hdr_handler(const struct rte_flow_item *item,
71                          struct ulp_rte_parser_params *params);
72
73 /* Function to handle the parsing of RTE Flow item IPV4 Header. */
74 int32_t
75 ulp_rte_ipv4_hdr_handler(const struct rte_flow_item *item,
76                          struct ulp_rte_parser_params *params);
77
78 /* Function to handle the parsing of RTE Flow item IPV6 Header. */
79 int32_t
80 ulp_rte_ipv6_hdr_handler(const struct rte_flow_item *item,
81                          struct ulp_rte_parser_params *params);
82
83 /* Function to handle the parsing of RTE Flow item UDP Header. */
84 int32_t
85 ulp_rte_udp_hdr_handler(const struct rte_flow_item *item,
86                         struct ulp_rte_parser_params *params);
87
88 /* Function to handle the parsing of RTE Flow item TCP Header. */
89 int32_t
90 ulp_rte_tcp_hdr_handler(const struct rte_flow_item *item,
91                         struct ulp_rte_parser_params *params);
92
93 /* Function to handle the parsing of RTE Flow item Vxlan Header. */
94 int32_t
95 ulp_rte_vxlan_hdr_handler(const struct rte_flow_item *item,
96                           struct ulp_rte_parser_params *params);
97
98 /* Function to handle the parsing of RTE Flow item void Header. */
99 int32_t
100 ulp_rte_void_hdr_handler(const struct rte_flow_item *item,
101                          struct ulp_rte_parser_params *params);
102
103 /* Function to handle the parsing of RTE Flow action void Header. */
104 int32_t
105 ulp_rte_void_act_handler(const struct rte_flow_action *action_item,
106                          struct ulp_rte_parser_params *params);
107
108 /* Function to handle the parsing of RTE Flow action RSS Header. */
109 int32_t
110 ulp_rte_rss_act_handler(const struct rte_flow_action *action_item,
111                         struct ulp_rte_parser_params *params);
112
113 /* Function to handle the parsing of RTE Flow action Mark Header. */
114 int32_t
115 ulp_rte_mark_act_handler(const struct rte_flow_action *action_item,
116                          struct ulp_rte_parser_params *params);
117
118 /* Function to handle the parsing of RTE Flow action vxlan_encap Header. */
119 int32_t
120 ulp_rte_vxlan_encap_act_handler(const struct rte_flow_action *action_item,
121                                 struct ulp_rte_parser_params *params);
122
123 /* Function to handle the parsing of RTE Flow action vxlan_encap Header. */
124 int32_t
125 ulp_rte_vxlan_decap_act_handler(const struct rte_flow_action *action_item,
126                                 struct ulp_rte_parser_params *params);
127
128 /* Function to handle the parsing of RTE Flow action drop Header. */
129 int32_t
130 ulp_rte_drop_act_handler(const struct rte_flow_action *action_item,
131                          struct ulp_rte_parser_params *params);
132
133 /* Function to handle the parsing of RTE Flow action count. */
134 int32_t
135 ulp_rte_count_act_handler(const struct rte_flow_action *action_item,
136                           struct ulp_rte_parser_params *params);
137
138 /* Function to handle the parsing of RTE Flow action PF. */
139 int32_t
140 ulp_rte_pf_act_handler(const struct rte_flow_action *action_item,
141                        struct ulp_rte_parser_params *params);
142
143 /* Function to handle the parsing of RTE Flow action VF. */
144 int32_t
145 ulp_rte_vf_act_handler(const struct rte_flow_action *action_item,
146                        struct ulp_rte_parser_params *params);
147
148 /* Function to handle the parsing of RTE Flow action port_id. */
149 int32_t
150 ulp_rte_port_id_act_handler(const struct rte_flow_action *act_item,
151                             struct ulp_rte_parser_params *params);
152
153 /* Function to handle the parsing of RTE Flow action phy_port. */
154 int32_t
155 ulp_rte_phy_port_act_handler(const struct rte_flow_action *action_item,
156                              struct ulp_rte_parser_params *params);
157
158 #endif /* _ULP_RTE_PARSER_H_ */