cf6a27e7716f0e4c44a47e8e379dffab5d5e6b5b
[dpdk.git] / drivers / net / bnxt / tf_ulp / ulp_template_struct.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2021 Broadcom
3  * All rights reserved.
4  */
5
6 #ifndef _ULP_TEMPLATE_STRUCT_H_
7 #define _ULP_TEMPLATE_STRUCT_H_
8
9 #include <stdint.h>
10 #include "rte_ether.h"
11 #include "rte_icmp.h"
12 #include "rte_ip.h"
13 #include "rte_tcp.h"
14 #include "rte_udp.h"
15 #include "rte_esp.h"
16 #include "rte_sctp.h"
17 #include "rte_flow.h"
18 #include "tf_core.h"
19
20 /* Number of fields for each protocol */
21 #define BNXT_ULP_PROTO_HDR_SVIF_NUM     2
22 #define BNXT_ULP_PROTO_HDR_ETH_NUM      3
23 #define BNXT_ULP_PROTO_HDR_S_VLAN_NUM   3
24 #define BNXT_ULP_PROTO_HDR_VLAN_NUM     6
25 #define BNXT_ULP_PROTO_HDR_IPV4_NUM     10
26 #define BNXT_ULP_PROTO_HDR_IPV6_NUM     8
27 #define BNXT_ULP_PROTO_HDR_UDP_NUM      4
28 #define BNXT_ULP_PROTO_HDR_TCP_NUM      9
29 #define BNXT_ULP_PROTO_HDR_VXLAN_NUM    4
30 #define BNXT_ULP_PROTO_HDR_GRE_NUM      6
31 #define BNXT_ULP_PROTO_HDR_ICMP_NUM     5
32 #define BNXT_ULP_PROTO_HDR_MAX          128
33 #define BNXT_ULP_PROTO_HDR_FIELD_SVIF_IDX       1
34
35 /* Direction attributes */
36 #define BNXT_ULP_FLOW_ATTR_TRANSFER     0x1
37 #define BNXT_ULP_FLOW_ATTR_INGRESS      0x2
38 #define BNXT_ULP_FLOW_ATTR_EGRESS       0x4
39
40 struct ulp_rte_hdr_bitmap {
41         uint64_t        bits;
42 };
43
44 struct ulp_rte_field_bitmap {
45         uint64_t        bits;
46 };
47
48 /* Structure to store the protocol fields */
49 #define RTE_PARSER_FLOW_HDR_FIELD_SIZE          16
50 struct ulp_rte_hdr_field {
51         uint8_t         spec[RTE_PARSER_FLOW_HDR_FIELD_SIZE];
52         uint8_t         mask[RTE_PARSER_FLOW_HDR_FIELD_SIZE];
53         uint32_t        size;
54 };
55
56 struct ulp_rte_act_bitmap {
57         uint64_t        bits;
58 };
59
60 /* Structure to hold the action property details. */
61 struct ulp_rte_act_prop {
62         uint8_t act_details[BNXT_ULP_ACT_PROP_IDX_LAST];
63 };
64
65 /* Structure to be used for passing all the parser functions */
66 struct ulp_rte_parser_params {
67         STAILQ_ENTRY(ulp_rte_parser_params)  next;
68         struct ulp_rte_hdr_bitmap       hdr_bitmap;
69         struct ulp_rte_hdr_bitmap       hdr_fp_bit;
70         struct ulp_rte_field_bitmap     fld_bitmap;
71         struct ulp_rte_field_bitmap     fld_s_bitmap;
72         struct ulp_rte_hdr_field        hdr_field[BNXT_ULP_PROTO_HDR_MAX];
73         uint32_t                        comp_fld[BNXT_ULP_CF_IDX_LAST];
74         uint32_t                        field_idx;
75         struct ulp_rte_act_bitmap       act_bitmap;
76         struct ulp_rte_act_prop         act_prop;
77         uint32_t                        dir_attr;
78         uint32_t                        priority;
79         uint32_t                        fid;
80         uint32_t                        parent_flow;
81         uint32_t                        parent_fid;
82         uint16_t                        func_id;
83         uint16_t                        port_id;
84         uint32_t                        class_id;
85         uint32_t                        act_tmpl;
86         struct bnxt_ulp_context         *ulp_ctx;
87         uint32_t                        hdr_sig_id;
88         uint32_t                        flow_sig_id;
89         uint32_t                        flow_pattern_id;
90         uint32_t                        act_pattern_id;
91         uint8_t                         app_id;
92 };
93
94 /* Flow Parser Header Information Structure */
95 struct bnxt_ulp_rte_hdr_info {
96         enum bnxt_ulp_hdr_type                                  hdr_type;
97         /* Flow Parser Protocol Header Function Prototype */
98         int (*proto_hdr_func)(const struct rte_flow_item        *item_list,
99                               struct ulp_rte_parser_params      *params);
100 };
101
102 /* Flow Parser Header Information Structure Array defined in template source*/
103 extern struct bnxt_ulp_rte_hdr_info     ulp_hdr_info[];
104
105 /* Flow Parser Action Information Structure */
106 struct bnxt_ulp_rte_act_info {
107         enum bnxt_ulp_act_type                                  act_type;
108         /* Flow Parser Protocol Action Function Prototype */
109         int32_t (*proto_act_func)
110                 (const struct rte_flow_action   *action_item,
111                  struct ulp_rte_parser_params   *params);
112 };
113
114 /* Flow Parser Action Information Structure Array defined in template source*/
115 extern struct bnxt_ulp_rte_act_info     ulp_act_info[];
116
117 /* Flow Matcher structures */
118 struct bnxt_ulp_header_match_info {
119         struct ulp_rte_hdr_bitmap               hdr_bitmap;
120         uint32_t                                start_idx;
121         uint32_t                                num_entries;
122         uint32_t                                class_tmpl_id;
123         uint32_t                                act_vnic;
124 };
125
126 struct ulp_rte_bitmap {
127         uint64_t        bits;
128 };
129
130 struct bnxt_ulp_class_match_info {
131         struct ulp_rte_bitmap   hdr_sig;
132         struct ulp_rte_bitmap   field_sig;
133         uint32_t                class_hid;
134         uint32_t                class_tid;
135         uint8_t                 act_vnic;
136         uint8_t                 wc_pri;
137         uint8_t                 app_sig;
138         uint32_t                hdr_sig_id;
139         uint32_t                flow_sig_id;
140         uint32_t                flow_pattern_id;
141 };
142
143 /* Flow Matcher templates Structure for class entries */
144 extern uint16_t ulp_class_sig_tbl[];
145 extern struct bnxt_ulp_class_match_info ulp_class_match_list[];
146
147 /* Flow Matcher Action structures */
148 struct bnxt_ulp_action_match_info {
149         struct ulp_rte_act_bitmap               act_bitmap;
150         uint32_t                                act_tmpl_id;
151 };
152
153 struct bnxt_ulp_act_match_info {
154         struct ulp_rte_bitmap   act_sig;
155         uint32_t                act_hid;
156         uint32_t                act_tid;
157         uint32_t                act_pattern_id;
158         uint8_t                 app_sig;
159 };
160
161 /* Flow Matcher templates Structure for action entries */
162 extern  uint16_t ulp_act_sig_tbl[];
163 extern struct bnxt_ulp_act_match_info ulp_act_match_list[];
164
165 /* Device Specific Tables for mapper */
166 struct bnxt_ulp_mapper_cond_info {
167         enum bnxt_ulp_cond_opc cond_opcode;
168         uint32_t cond_operand;
169 };
170
171 struct bnxt_ulp_mapper_cond_list_info {
172         enum bnxt_ulp_cond_list_opc cond_list_opcode;
173         uint32_t cond_start_idx;
174         uint32_t cond_nums;
175         int32_t cond_true_goto;
176         int32_t cond_false_goto;
177 };
178
179 struct bnxt_ulp_mapper_cc_upd_info {
180         enum bnxt_ulp_cc_upd_opc        cc_opc;
181         enum bnxt_ulp_cc_upd_src        cc_src1;
182         enum bnxt_ulp_cc_upd_src        cc_src2;
183         uint16_t                        cc_opr1;
184         uint16_t                        cc_opr2;
185         uint16_t                        cc_dst_opr;
186 };
187
188 struct bnxt_ulp_template_device_tbls {
189         struct bnxt_ulp_mapper_tmpl_info *tmpl_list;
190         uint32_t tmpl_list_size;
191         struct bnxt_ulp_mapper_tbl_info *tbl_list;
192         uint32_t tbl_list_size;
193         struct bnxt_ulp_mapper_key_info *key_info_list;
194         uint32_t key_info_list_size;
195         struct bnxt_ulp_mapper_field_info *result_field_list;
196         uint32_t result_field_list_size;
197         struct bnxt_ulp_mapper_ident_info *ident_list;
198         uint32_t ident_list_size;
199         struct bnxt_ulp_mapper_cond_info *cond_list;
200         uint32_t cond_list_size;
201 };
202
203 /* Device specific parameters */
204 struct bnxt_ulp_device_params {
205         uint8_t                         description[16];
206         enum bnxt_ulp_byte_order        byte_order;
207         uint8_t                         encap_byte_swap;
208         uint8_t                         num_phy_ports;
209         uint32_t                        mark_db_lfid_entries;
210         uint64_t                        mark_db_gfid_entries;
211         uint64_t                        int_flow_db_num_entries;
212         uint64_t                        ext_flow_db_num_entries;
213         uint32_t                        flow_count_db_entries;
214         uint32_t                        fdb_parent_flow_entries;
215         uint32_t                        num_resources_per_flow;
216         uint32_t                        ext_cntr_table_type;
217         uint64_t                        byte_count_mask;
218         uint64_t                        packet_count_mask;
219         uint32_t                        byte_count_shift;
220         uint32_t                        packet_count_shift;
221         uint32_t                        dynamic_pad_en;
222         uint16_t                        em_blk_size_bits;
223         uint16_t                        em_blk_align_bits;
224         uint16_t                        em_key_align_bytes;
225         uint16_t                        em_result_size_bits;
226         uint16_t                        wc_slice_width;
227         uint16_t                        wc_max_slices;
228         uint32_t                        wc_mode_list[4];
229         uint32_t                        wc_mod_list_max_size;
230         uint32_t                        wc_ctl_size_bits;
231         const struct bnxt_ulp_template_device_tbls *dev_tbls;
232 };
233
234 /* Flow Mapper */
235 struct bnxt_ulp_mapper_tmpl_info {
236         uint32_t                device_name;
237         uint32_t                start_tbl_idx;
238         uint32_t                num_tbls;
239         struct bnxt_ulp_mapper_cond_list_info reject_info;
240 };
241
242 struct bnxt_ulp_mapper_tbl_info {
243         enum bnxt_ulp_resource_func     resource_func;
244         uint32_t                        resource_type; /* TF_ enum type */
245         enum bnxt_ulp_resource_sub_type resource_sub_type;
246         struct bnxt_ulp_mapper_cond_list_info execute_info;
247         struct bnxt_ulp_mapper_cc_upd_info cc_upd_info;
248         enum bnxt_ulp_cond_opc cond_opcode;
249         uint32_t cond_operand;
250         uint8_t                         direction;
251         enum bnxt_ulp_pri_opc           pri_opcode;
252         uint32_t                        pri_operand;
253         enum bnxt_ulp_byte_order        byte_order;
254
255         /* conflict resolution opcode */
256         enum bnxt_ulp_accept_opc        accept_opcode;
257
258         enum bnxt_ulp_critical_resource         critical_resource;
259
260         /* Information for accessing the ulp_key_field_list */
261         uint32_t        key_start_idx;
262         uint16_t        key_bit_size;
263         uint16_t        key_num_fields;
264         /* Size of the blob that holds the key */
265         uint16_t        blob_key_bit_size;
266
267         /* Information for accessing the ulp_class_result_field_list */
268         uint32_t        result_start_idx;
269         uint16_t        result_bit_size;
270         uint16_t        result_num_fields;
271         uint16_t        encap_num_fields;
272
273         /* Information for accessing the ulp_ident_list */
274         uint32_t        ident_start_idx;
275         uint16_t        ident_nums;
276
277         enum bnxt_ulp_mark_db_opc       mark_db_opcode;
278
279         /* Table opcode for table operations */
280         uint32_t                        tbl_opcode;
281         uint32_t                        tbl_operand;
282         enum bnxt_ulp_generic_tbl_lkup_type gen_tbl_lkup_type;
283
284         /* FDB table opcode */
285         enum bnxt_ulp_fdb_opc           fdb_opcode;
286         uint32_t                        fdb_operand;
287 };
288
289 struct bnxt_ulp_mapper_field_info {
290         uint8_t                         description[64];
291         uint16_t                        field_bit_size;
292         enum bnxt_ulp_field_opc         field_opc;
293         enum bnxt_ulp_field_src         field_src1;
294         uint8_t                         field_opr1[16];
295         enum bnxt_ulp_field_src         field_src2;
296         uint8_t                         field_opr2[16];
297         enum bnxt_ulp_field_src         field_src3;
298         uint8_t                         field_opr3[16];
299 };
300
301 struct bnxt_ulp_mapper_key_info {
302         struct bnxt_ulp_mapper_field_info       field_info_spec;
303         struct bnxt_ulp_mapper_field_info       field_info_mask;
304 };
305
306 struct bnxt_ulp_mapper_ident_info {
307         uint8_t         description[64];
308         uint32_t        resource_func;
309
310         uint16_t        ident_type;
311         uint16_t        ident_bit_size;
312         uint16_t        ident_bit_pos;
313         enum bnxt_ulp_rf_idx    regfile_idx;
314 };
315
316 struct bnxt_ulp_glb_resource_info {
317         uint8_t                         app_id;
318         enum bnxt_ulp_device_id         device_id;
319         enum tf_dir                     direction;
320         enum bnxt_ulp_resource_func     resource_func;
321         uint32_t                        resource_type; /* TF_ enum type */
322         enum bnxt_ulp_glb_rf_idx        glb_regfile_index;
323 };
324
325 struct bnxt_ulp_resource_resv_info {
326         uint8_t                         app_id;
327         enum bnxt_ulp_device_id         device_id;
328         enum tf_dir                     direction;
329         enum bnxt_ulp_resource_func     resource_func;
330         uint32_t                        resource_type; /* TF_ enum type */
331         uint32_t                        count;
332 };
333
334 struct bnxt_ulp_app_capabilities_info {
335         uint8_t                         app_id;
336         enum bnxt_ulp_device_id         device_id;
337         uint32_t                        flags;
338 };
339
340 struct bnxt_ulp_cache_tbl_params {
341         uint16_t num_entries;
342 };
343
344 struct bnxt_ulp_generic_tbl_params {
345         const char                      *name;
346         uint16_t                        result_num_entries;
347         uint16_t                        result_num_bytes;
348         enum bnxt_ulp_byte_order        result_byte_order;
349         uint32_t                        hash_tbl_entries;
350         uint16_t                        num_buckets;
351         uint16_t                        key_num_bytes;
352 };
353
354 struct bnxt_ulp_shared_act_info {
355         uint64_t act_bitmask;
356 };
357
358 /*
359  * Flow Mapper Static Data Externs:
360  * Access to the below static data should be done through access functions and
361  * directly throughout the code.
362  */
363
364 /*
365  * The ulp_device_params is indexed by the dev_id.
366  * This table maintains the device specific parameters.
367  */
368 extern struct bnxt_ulp_device_params ulp_device_params[];
369
370 /*
371  * The ulp_act_prop_map_table provides the mapping to index and size of action
372  * properties.
373  */
374 extern uint32_t ulp_act_prop_map_table[];
375
376 /*
377  * The ulp_glb_resource_tbl provides the list of global resources that need to
378  * be initialized and where to store them.
379  */
380 extern struct bnxt_ulp_glb_resource_info ulp_glb_resource_tbl[];
381
382 /*
383  * The ulp_app_glb_resource_tbl provides the list of shared resources required
384  * in the event that shared session is enabled.
385  */
386 extern struct bnxt_ulp_glb_resource_info ulp_app_glb_resource_tbl[];
387
388 /*
389  * The ulp_resource_resv_list provides the list of tf resources required when
390  * calling tf_open.
391  */
392 extern struct bnxt_ulp_resource_resv_info ulp_resource_resv_list[];
393
394 /*
395  * The_app_cap_info_list provides the list of ULP capabilities per app/device.
396  */
397 extern struct bnxt_ulp_app_capabilities_info ulp_app_cap_info_list[];
398
399 /*
400  * The ulp_cache_tbl_parms table provides the sizes of the cache tables the
401  * mapper must dynamically allocate during initialization.
402  */
403 extern struct bnxt_ulp_cache_tbl_params ulp_cache_tbl_params[];
404
405 /*
406  * The ulp_generic_tbl_parms table provides the sizes of the generic tables the
407  * mapper must dynamically allocate during initialization.
408  */
409 extern struct bnxt_ulp_generic_tbl_params ulp_generic_tbl_params[];
410 /*
411  * The ulp_global template table is used to initialize default entries
412  * that could be reused by other templates.
413  */
414 extern uint32_t ulp_glb_template_tbl[];
415
416 #endif /* _ULP_TEMPLATE_STRUCT_H_ */