net/bnxt: support process action tables
[dpdk.git] / drivers / net / bnxt / tf_ulp / ulp_mapper.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2019 Broadcom
3  * All rights reserved.
4  */
5
6 #ifndef _ULP_MAPPER_H_
7 #define _ULP_MAPPER_H_
8
9 #include <tf_core.h>
10 #include <rte_log.h>
11 #include <rte_flow.h>
12 #include <rte_flow_driver.h>
13 #include "ulp_template_db.h"
14 #include "ulp_template_struct.h"
15 #include "bnxt_ulp.h"
16 #include "ulp_utils.h"
17
18 /* Internal Structure for passing the arguments around */
19 struct bnxt_ulp_mapper_parms {
20         uint32_t                                dev_id;
21         enum bnxt_ulp_byte_order                order;
22         uint32_t                                act_tid;
23         struct bnxt_ulp_mapper_act_tbl_info     *atbls;
24         uint32_t                                num_atbls;
25         uint32_t                                class_tid;
26         struct bnxt_ulp_mapper_class_tbl_info   *ctbls;
27         uint32_t                                num_ctbls;
28         struct ulp_rte_act_prop                 *act_prop;
29         struct ulp_rte_act_bitmap               *act_bitmap;
30         struct ulp_rte_hdr_field                *hdr_field;
31         struct ulp_regfile                      *regfile;
32         struct tf                               *tfp;
33         struct bnxt_ulp_context                 *ulp_ctx;
34         uint8_t                                 encap_byte_swap;
35         uint32_t                                fid;
36         enum bnxt_ulp_flow_db_tables            tbl_idx;
37 };
38
39 #endif /* _ULP_MAPPER_H_ */