272eb28d5b20c29afeb121d2af5c3e9c3b6cbd84
[dpdk.git] / drivers / net / ice / base / ice_parser.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2021 Intel Corporation
3  */
4
5 #ifndef _ICE_PARSER_H_
6 #define _ICE_PARSER_H_
7
8 #include "ice_metainit.h"
9 #include "ice_imem.h"
10 #include "ice_pg_cam.h"
11 #include "ice_bst_tcam.h"
12 #include "ice_ptype_mk.h"
13 #include "ice_mk_grp.h"
14 #include "ice_proto_grp.h"
15 #include "ice_flg_rd.h"
16
17 struct ice_parser {
18         struct ice_hw *hw; /* pointer to the hardware structure */
19
20         /* load data from section ICE_SID_RX_PARSER_IMEM */
21         struct ice_imem_item *imem_table;
22         /* load data from section ICE_SID_RXPARSER_METADATA_INIT */
23         struct ice_metainit_item *mi_table;
24         /* load data from section ICE_SID_RXPARSER_CAM */
25         struct ice_pg_cam_item *pg_cam_table;
26         /* load data from section ICE_SID_RXPARSER_PG_SPILL */
27         struct ice_pg_cam_item *pg_sp_cam_table;
28         /* load data from section ICE_SID_RXPARSER_NOMATCH_CAM */
29         struct ice_pg_nm_cam_item *pg_nm_cam_table;
30         /* load data from section ICE_SID_RXPARSER_NOMATCH_SPILL */
31         struct ice_pg_nm_cam_item *pg_nm_sp_cam_table;
32         /* load data from section ICE_SID_RXPARSER_BOOST_TCAM */
33         struct ice_bst_tcam_item *bst_tcam_table;
34         /* load data from section ICE_SID_LBL_RXPARSER_TMEM */
35         struct ice_lbl_item *bst_lbl_table;
36         /* load data from section ICE_SID_RXPARSER_MARKER_PTYPE */
37         struct ice_ptype_mk_tcam_item *ptype_mk_tcam_table;
38         /* load data from section ICE_SID_RXPARSER_MARKER_GRP */
39         struct ice_mk_grp_item *mk_grp_table;
40         /* load data from section ICE_SID_RXPARSER_PROTO_GRP */
41         struct ice_proto_grp_item *proto_grp_table;
42         /* load data from section ICE_SID_RXPARSER_FLAG_REDIR */
43         struct ice_flg_rd_item *flg_rd_table;
44 };
45
46 enum ice_status ice_parser_create(struct ice_hw *hw, struct ice_parser **psr);
47 void ice_parser_destroy(struct ice_parser *psr);
48 #endif /* _ICE_PARSER_H_ */