net/ice/base: init marker group table for parser
[dpdk.git] / drivers / net / ice / base / ice_parser.h
index 3196489..b390eec 100644 (file)
@@ -9,6 +9,8 @@
 #include "ice_imem.h"
 #include "ice_pg_cam.h"
 #include "ice_bst_tcam.h"
+#include "ice_ptype_mk.h"
+#include "ice_mk_grp.h"
 
 struct ice_parser {
        struct ice_hw *hw; /* pointer to the hardware structure */
@@ -29,6 +31,10 @@ struct ice_parser {
        struct ice_bst_tcam_item *bst_tcam_table;
        /* load data from section ICE_SID_LBL_RXPARSER_TMEM */
        struct ice_lbl_item *bst_lbl_table;
+       /* load data from section ICE_SID_RXPARSER_MARKER_PTYPE */
+       struct ice_ptype_mk_tcam_item *ptype_mk_tcam_table;
+       /* load data from section ICE_SID_RXPARSER_MARKER_GRP */
+       struct ice_mk_grp_item *mk_grp_table;
 };
 
 enum ice_status ice_parser_create(struct ice_hw *hw, struct ice_parser **psr);