net/ice: refactor parser usage
[dpdk.git] / drivers / net / ice / ice_hash.c
index 58a0c18..f357278 100644 (file)
@@ -32,6 +32,7 @@
 #define ICE_PHINT_GTPU_EH                      BIT_ULL(3)
 #define        ICE_PHINT_GTPU_EH_DWN                   BIT_ULL(4)
 #define        ICE_PHINT_GTPU_EH_UP                    BIT_ULL(5)
+#define ICE_PHINT_RAW                          BIT_ULL(6)
 
 #define ICE_GTPU_EH_DWNLINK    0
 #define ICE_GTPU_EH_UPLINK     1
 #define ICE_IPV4_PROT          BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_PROT)
 #define ICE_IPV6_PROT          BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PROT)
 
-#define VALID_RSS_IPV4_L4      (ETH_RSS_NONFRAG_IPV4_UDP       | \
-                                ETH_RSS_NONFRAG_IPV4_TCP       | \
-                                ETH_RSS_NONFRAG_IPV4_SCTP)
+#define VALID_RSS_IPV4_L4      (RTE_ETH_RSS_NONFRAG_IPV4_UDP   | \
+                                RTE_ETH_RSS_NONFRAG_IPV4_TCP   | \
+                                RTE_ETH_RSS_NONFRAG_IPV4_SCTP)
 
-#define VALID_RSS_IPV6_L4      (ETH_RSS_NONFRAG_IPV6_UDP       | \
-                                ETH_RSS_NONFRAG_IPV6_TCP       | \
-                                ETH_RSS_NONFRAG_IPV6_SCTP)
+#define VALID_RSS_IPV6_L4      (RTE_ETH_RSS_NONFRAG_IPV6_UDP   | \
+                                RTE_ETH_RSS_NONFRAG_IPV6_TCP   | \
+                                RTE_ETH_RSS_NONFRAG_IPV6_SCTP)
 
-#define VALID_RSS_IPV4         (ETH_RSS_IPV4 | VALID_RSS_IPV4_L4)
-#define VALID_RSS_IPV6         (ETH_RSS_IPV6 | VALID_RSS_IPV6_L4)
+#define VALID_RSS_IPV4         (RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_FRAG_IPV4 | \
+                                VALID_RSS_IPV4_L4)
+#define VALID_RSS_IPV6         (RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_FRAG_IPV6 | \
+                                VALID_RSS_IPV6_L4)
 #define VALID_RSS_L3           (VALID_RSS_IPV4 | VALID_RSS_IPV6)
 #define VALID_RSS_L4           (VALID_RSS_IPV4_L4 | VALID_RSS_IPV6_L4)
 
-#define VALID_RSS_ATTR         (ETH_RSS_L3_SRC_ONLY    | \
-                                ETH_RSS_L3_DST_ONLY    | \
-                                ETH_RSS_L4_SRC_ONLY    | \
-                                ETH_RSS_L4_DST_ONLY    | \
-                                ETH_RSS_L2_SRC_ONLY    | \
-                                ETH_RSS_L2_DST_ONLY    | \
+#define VALID_RSS_ATTR         (RTE_ETH_RSS_L3_SRC_ONLY        | \
+                                RTE_ETH_RSS_L3_DST_ONLY        | \
+                                RTE_ETH_RSS_L4_SRC_ONLY        | \
+                                RTE_ETH_RSS_L4_DST_ONLY        | \
+                                RTE_ETH_RSS_L2_SRC_ONLY        | \
+                                RTE_ETH_RSS_L2_DST_ONLY        | \
                                 RTE_ETH_RSS_L3_PRE32   | \
                                 RTE_ETH_RSS_L3_PRE48   | \
                                 RTE_ETH_RSS_L3_PRE64)
@@ -69,6 +72,7 @@
 struct ice_rss_meta {
        uint8_t hash_function;
        struct ice_rss_hash_cfg cfg;
+       struct ice_rss_raw_cfg raw;
 };
 
 struct ice_hash_flow_cfg {
@@ -102,6 +106,7 @@ ice_hash_parse_pattern_action(struct ice_adapter *ad,
                        uint32_t array_len,
                        const struct rte_flow_item pattern[],
                        const struct rte_flow_action actions[],
+                       uint32_t priority,
                        void **meta,
                        struct rte_flow_error *error);
 
@@ -110,7 +115,7 @@ struct ice_rss_hash_cfg ipv4_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV4 |
        ICE_FLOW_SEG_HDR_IPV_OTHER,
        ICE_FLOW_HASH_ETH | ICE_FLOW_HASH_IPV4,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -118,7 +123,7 @@ struct ice_rss_hash_cfg ipv4_udp_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV4 |
        ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_UDP,
        ICE_FLOW_HASH_ETH | ICE_HASH_UDP_IPV4 | ICE_IPV4_PROT,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -126,7 +131,7 @@ struct ice_rss_hash_cfg ipv4_tcp_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV4 |
        ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_TCP,
        ICE_FLOW_HASH_ETH | ICE_HASH_TCP_IPV4 | ICE_IPV4_PROT,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -134,7 +139,7 @@ struct ice_rss_hash_cfg ipv4_sctp_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV4 |
        ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_SCTP,
        ICE_FLOW_HASH_ETH | ICE_HASH_SCTP_IPV4 | ICE_IPV4_PROT,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -142,7 +147,15 @@ struct ice_rss_hash_cfg ipv6_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV6 |
        ICE_FLOW_SEG_HDR_IPV_OTHER,
        ICE_FLOW_HASH_ETH | ICE_FLOW_HASH_IPV6,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
+       0
+};
+
+struct ice_rss_hash_cfg ipv6_frag_tmplt = {
+       ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV6 |
+       ICE_FLOW_SEG_HDR_IPV_FRAG,
+       ICE_FLOW_HASH_ETH | ICE_FLOW_HASH_IPV6,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -150,7 +163,7 @@ struct ice_rss_hash_cfg ipv6_udp_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV6 |
        ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_UDP,
        ICE_FLOW_HASH_ETH | ICE_HASH_UDP_IPV6 | ICE_IPV6_PROT,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -158,7 +171,7 @@ struct ice_rss_hash_cfg ipv6_tcp_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV6 |
        ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_TCP,
        ICE_FLOW_HASH_ETH | ICE_HASH_TCP_IPV6 | ICE_IPV6_PROT,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -166,7 +179,7 @@ struct ice_rss_hash_cfg ipv6_sctp_tmplt = {
        ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_IPV6 |
        ICE_FLOW_SEG_HDR_IPV_OTHER | ICE_FLOW_SEG_HDR_SCTP,
        ICE_FLOW_HASH_ETH | ICE_HASH_SCTP_IPV6 | ICE_IPV6_PROT,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -198,6 +211,7 @@ struct ice_rss_hash_cfg outer_ipv6_inner_ipv4_tmplt = {
        ICE_RSS_INNER_HEADERS_W_OUTER_IPV6,
        0
 };
+
 struct ice_rss_hash_cfg outer_ipv6_inner_ipv4_udp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_UDP,
@@ -220,6 +234,7 @@ struct ice_rss_hash_cfg outer_ipv4_inner_ipv6_tmplt = {
        ICE_RSS_INNER_HEADERS_W_OUTER_IPV4,
        0
 };
+
 struct ice_rss_hash_cfg outer_ipv4_inner_ipv6_udp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_UDP,
@@ -262,7 +277,7 @@ struct ice_rss_hash_cfg eth_ipv4_esp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_ESP,
        ICE_FLOW_HASH_ESP_SPI,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -270,7 +285,7 @@ struct ice_rss_hash_cfg eth_ipv4_udp_esp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_NAT_T_ESP,
        ICE_FLOW_HASH_NAT_T_ESP_SPI,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -278,7 +293,7 @@ struct ice_rss_hash_cfg eth_ipv4_ah_tmplt = {
        ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_AH,
        ICE_FLOW_HASH_AH_SPI,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -286,7 +301,7 @@ struct ice_rss_hash_cfg eth_ipv4_l2tpv3_tmplt = {
        ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_L2TPV3,
        ICE_FLOW_HASH_L2TPV3_SESS_ID,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -294,7 +309,7 @@ struct ice_rss_hash_cfg eth_ipv4_pfcp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_PFCP_SESSION,
        ICE_FLOW_HASH_PFCP_SEID,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -302,7 +317,7 @@ struct ice_rss_hash_cfg eth_ipv6_esp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_ESP,
        ICE_FLOW_HASH_ESP_SPI,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -310,7 +325,7 @@ struct ice_rss_hash_cfg eth_ipv6_udp_esp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_NAT_T_ESP,
        ICE_FLOW_HASH_NAT_T_ESP_SPI,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -318,7 +333,7 @@ struct ice_rss_hash_cfg eth_ipv6_ah_tmplt = {
        ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_AH,
        ICE_FLOW_HASH_AH_SPI,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -326,7 +341,7 @@ struct ice_rss_hash_cfg eth_ipv6_l2tpv3_tmplt = {
        ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_L2TPV3,
        ICE_FLOW_HASH_L2TPV3_SESS_ID,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -334,14 +349,14 @@ struct ice_rss_hash_cfg eth_ipv6_pfcp_tmplt = {
        ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER |
        ICE_FLOW_SEG_HDR_PFCP_SESSION,
        ICE_FLOW_HASH_PFCP_SEID,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
 struct ice_rss_hash_cfg pppoe_tmplt = {
        ICE_FLOW_SEG_HDR_ETH,
        ICE_FLOW_HASH_ETH | ICE_FLOW_HASH_PPPOE_SESS_ID,
-       ICE_RSS_ANY_HEADERS,
+       ICE_RSS_OUTER_HEADERS,
        0
 };
 
@@ -352,74 +367,95 @@ struct ice_rss_hash_cfg empty_tmplt = {
        0
 };
 
+struct ice_rss_hash_cfg eth_tmplt = {
+       ICE_FLOW_SEG_HDR_ETH | ICE_FLOW_SEG_HDR_ETH_NON_IP,
+       ICE_FLOW_HASH_ETH,
+       ICE_RSS_OUTER_HEADERS,
+       0
+};
+
 /* IPv4 */
-#define ICE_RSS_TYPE_ETH_IPV4          (ETH_RSS_ETH | ETH_RSS_IPV4)
+#define ICE_RSS_TYPE_ETH_IPV4          (RTE_ETH_RSS_ETH | RTE_ETH_RSS_IPV4 | \
+                                        RTE_ETH_RSS_FRAG_IPV4 | \
+                                        RTE_ETH_RSS_IPV4_CHKSUM)
 #define ICE_RSS_TYPE_ETH_IPV4_UDP      (ICE_RSS_TYPE_ETH_IPV4 | \
-                                        ETH_RSS_NONFRAG_IPV4_UDP)
+                                        RTE_ETH_RSS_NONFRAG_IPV4_UDP | \
+                                        RTE_ETH_RSS_L4_CHKSUM)
 #define ICE_RSS_TYPE_ETH_IPV4_TCP      (ICE_RSS_TYPE_ETH_IPV4 | \
-                                        ETH_RSS_NONFRAG_IPV4_TCP)
+                                        RTE_ETH_RSS_NONFRAG_IPV4_TCP | \
+                                        RTE_ETH_RSS_L4_CHKSUM)
 #define ICE_RSS_TYPE_ETH_IPV4_SCTP     (ICE_RSS_TYPE_ETH_IPV4 | \
-                                        ETH_RSS_NONFRAG_IPV4_SCTP)
-#define ICE_RSS_TYPE_IPV4              ETH_RSS_IPV4
-#define ICE_RSS_TYPE_IPV4_UDP          (ETH_RSS_IPV4 | \
-                                        ETH_RSS_NONFRAG_IPV4_UDP)
-#define ICE_RSS_TYPE_IPV4_TCP          (ETH_RSS_IPV4 | \
-                                        ETH_RSS_NONFRAG_IPV4_TCP)
-#define ICE_RSS_TYPE_IPV4_SCTP         (ETH_RSS_IPV4 | \
-                                        ETH_RSS_NONFRAG_IPV4_SCTP)
+                                        RTE_ETH_RSS_NONFRAG_IPV4_SCTP | \
+                                        RTE_ETH_RSS_L4_CHKSUM)
+#define ICE_RSS_TYPE_IPV4              RTE_ETH_RSS_IPV4
+#define ICE_RSS_TYPE_IPV4_UDP          (RTE_ETH_RSS_IPV4 | \
+                                        RTE_ETH_RSS_NONFRAG_IPV4_UDP)
+#define ICE_RSS_TYPE_IPV4_TCP          (RTE_ETH_RSS_IPV4 | \
+                                        RTE_ETH_RSS_NONFRAG_IPV4_TCP)
+#define ICE_RSS_TYPE_IPV4_SCTP         (RTE_ETH_RSS_IPV4 | \
+                                        RTE_ETH_RSS_NONFRAG_IPV4_SCTP)
 
 /* IPv6 */
-#define ICE_RSS_TYPE_ETH_IPV6          (ETH_RSS_ETH | ETH_RSS_IPV6)
+#define ICE_RSS_TYPE_ETH_IPV6          (RTE_ETH_RSS_ETH | RTE_ETH_RSS_IPV6)
+#define ICE_RSS_TYPE_ETH_IPV6_FRAG     (RTE_ETH_RSS_ETH | RTE_ETH_RSS_IPV6 | \
+                                        RTE_ETH_RSS_FRAG_IPV6)
 #define ICE_RSS_TYPE_ETH_IPV6_UDP      (ICE_RSS_TYPE_ETH_IPV6 | \
-                                        ETH_RSS_NONFRAG_IPV6_UDP)
+                                        RTE_ETH_RSS_NONFRAG_IPV6_UDP | \
+                                        RTE_ETH_RSS_L4_CHKSUM)
 #define ICE_RSS_TYPE_ETH_IPV6_TCP      (ICE_RSS_TYPE_ETH_IPV6 | \
-                                        ETH_RSS_NONFRAG_IPV6_TCP)
+                                        RTE_ETH_RSS_NONFRAG_IPV6_TCP | \
+                                        RTE_ETH_RSS_L4_CHKSUM)
 #define ICE_RSS_TYPE_ETH_IPV6_SCTP     (ICE_RSS_TYPE_ETH_IPV6 | \
-                                        ETH_RSS_NONFRAG_IPV6_SCTP)
-#define ICE_RSS_TYPE_IPV6              ETH_RSS_IPV6
-#define ICE_RSS_TYPE_IPV6_UDP          (ETH_RSS_IPV6 | \
-                                        ETH_RSS_NONFRAG_IPV6_UDP)
-#define ICE_RSS_TYPE_IPV6_TCP          (ETH_RSS_IPV6 | \
-                                        ETH_RSS_NONFRAG_IPV6_TCP)
-#define ICE_RSS_TYPE_IPV6_SCTP         (ETH_RSS_IPV6 | \
-                                        ETH_RSS_NONFRAG_IPV6_SCTP)
+                                        RTE_ETH_RSS_NONFRAG_IPV6_SCTP | \
+                                        RTE_ETH_RSS_L4_CHKSUM)
+#define ICE_RSS_TYPE_IPV6              RTE_ETH_RSS_IPV6
+#define ICE_RSS_TYPE_IPV6_UDP          (RTE_ETH_RSS_IPV6 | \
+                                        RTE_ETH_RSS_NONFRAG_IPV6_UDP)
+#define ICE_RSS_TYPE_IPV6_TCP          (RTE_ETH_RSS_IPV6 | \
+                                        RTE_ETH_RSS_NONFRAG_IPV6_TCP)
+#define ICE_RSS_TYPE_IPV6_SCTP         (RTE_ETH_RSS_IPV6 | \
+                                        RTE_ETH_RSS_NONFRAG_IPV6_SCTP)
 
 /* VLAN IPV4 */
 #define ICE_RSS_TYPE_VLAN_IPV4         (ICE_RSS_TYPE_IPV4 | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN | \
+                                        RTE_ETH_RSS_FRAG_IPV4)
 #define ICE_RSS_TYPE_VLAN_IPV4_UDP     (ICE_RSS_TYPE_IPV4_UDP | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
 #define ICE_RSS_TYPE_VLAN_IPV4_TCP     (ICE_RSS_TYPE_IPV4_TCP | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
 #define ICE_RSS_TYPE_VLAN_IPV4_SCTP    (ICE_RSS_TYPE_IPV4_SCTP | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
 /* VLAN IPv6 */
 #define ICE_RSS_TYPE_VLAN_IPV6         (ICE_RSS_TYPE_IPV6 | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
+#define ICE_RSS_TYPE_VLAN_IPV6_FRAG    (ICE_RSS_TYPE_IPV6 | \
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN | \
+                                        RTE_ETH_RSS_FRAG_IPV6)
 #define ICE_RSS_TYPE_VLAN_IPV6_UDP     (ICE_RSS_TYPE_IPV6_UDP | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
 #define ICE_RSS_TYPE_VLAN_IPV6_TCP     (ICE_RSS_TYPE_IPV6_TCP | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
 #define ICE_RSS_TYPE_VLAN_IPV6_SCTP    (ICE_RSS_TYPE_IPV6_SCTP | \
-                                        ETH_RSS_S_VLAN | ETH_RSS_C_VLAN)
+                                        RTE_ETH_RSS_S_VLAN | RTE_ETH_RSS_C_VLAN)
 
 /* GTPU IPv4 */
 #define ICE_RSS_TYPE_GTPU_IPV4         (ICE_RSS_TYPE_IPV4 | \
-                                        ETH_RSS_GTPU)
+                                        RTE_ETH_RSS_GTPU)
 #define ICE_RSS_TYPE_GTPU_IPV4_UDP     (ICE_RSS_TYPE_IPV4_UDP | \
-                                        ETH_RSS_GTPU)
+                                        RTE_ETH_RSS_GTPU)
 #define ICE_RSS_TYPE_GTPU_IPV4_TCP     (ICE_RSS_TYPE_IPV4_TCP | \
-                                        ETH_RSS_GTPU)
+                                        RTE_ETH_RSS_GTPU)
 /* GTPU IPv6 */
 #define ICE_RSS_TYPE_GTPU_IPV6         (ICE_RSS_TYPE_IPV6 | \
-                                        ETH_RSS_GTPU)
+                                        RTE_ETH_RSS_GTPU)
 #define ICE_RSS_TYPE_GTPU_IPV6_UDP     (ICE_RSS_TYPE_IPV6_UDP | \
-                                        ETH_RSS_GTPU)
+                                        RTE_ETH_RSS_GTPU)
 #define ICE_RSS_TYPE_GTPU_IPV6_TCP     (ICE_RSS_TYPE_IPV6_TCP | \
-                                        ETH_RSS_GTPU)
+                                        RTE_ETH_RSS_GTPU)
 
 /* PPPOE */
-#define ICE_RSS_TYPE_PPPOE             (ETH_RSS_ETH | ETH_RSS_PPPOE)
+#define ICE_RSS_TYPE_PPPOE             (RTE_ETH_RSS_ETH | RTE_ETH_RSS_PPPOE)
 
 /* PPPOE IPv4 */
 #define ICE_RSS_TYPE_PPPOE_IPV4                (ICE_RSS_TYPE_IPV4 | \
@@ -438,14 +474,17 @@ struct ice_rss_hash_cfg empty_tmplt = {
                                         ICE_RSS_TYPE_PPPOE)
 
 /* ESP, AH, L2TPV3 and PFCP */
-#define ICE_RSS_TYPE_IPV4_ESP          (ETH_RSS_ESP | ETH_RSS_IPV4)
-#define ICE_RSS_TYPE_IPV6_ESP          (ETH_RSS_ESP | ETH_RSS_IPV6)
-#define ICE_RSS_TYPE_IPV4_AH           (ETH_RSS_AH | ETH_RSS_IPV4)
-#define ICE_RSS_TYPE_IPV6_AH           (ETH_RSS_AH | ETH_RSS_IPV6)
-#define ICE_RSS_TYPE_IPV4_L2TPV3       (ETH_RSS_L2TPV3 | ETH_RSS_IPV4)
-#define ICE_RSS_TYPE_IPV6_L2TPV3       (ETH_RSS_L2TPV3 | ETH_RSS_IPV6)
-#define ICE_RSS_TYPE_IPV4_PFCP         (ETH_RSS_PFCP | ETH_RSS_IPV4)
-#define ICE_RSS_TYPE_IPV6_PFCP         (ETH_RSS_PFCP | ETH_RSS_IPV6)
+#define ICE_RSS_TYPE_IPV4_ESP          (RTE_ETH_RSS_ESP | RTE_ETH_RSS_IPV4)
+#define ICE_RSS_TYPE_IPV6_ESP          (RTE_ETH_RSS_ESP | RTE_ETH_RSS_IPV6)
+#define ICE_RSS_TYPE_IPV4_AH           (RTE_ETH_RSS_AH | RTE_ETH_RSS_IPV4)
+#define ICE_RSS_TYPE_IPV6_AH           (RTE_ETH_RSS_AH | RTE_ETH_RSS_IPV6)
+#define ICE_RSS_TYPE_IPV4_L2TPV3       (RTE_ETH_RSS_L2TPV3 | RTE_ETH_RSS_IPV4)
+#define ICE_RSS_TYPE_IPV6_L2TPV3       (RTE_ETH_RSS_L2TPV3 | RTE_ETH_RSS_IPV6)
+#define ICE_RSS_TYPE_IPV4_PFCP         (RTE_ETH_RSS_PFCP | RTE_ETH_RSS_IPV4)
+#define ICE_RSS_TYPE_IPV6_PFCP         (RTE_ETH_RSS_PFCP | RTE_ETH_RSS_IPV6)
+
+/* MAC */
+#define ICE_RSS_TYPE_ETH               RTE_ETH_RSS_ETH
 
 /**
  * Supported pattern for hash.
@@ -455,6 +494,7 @@ struct ice_rss_hash_cfg empty_tmplt = {
  */
 static struct ice_pattern_match_item ice_hash_pattern_list[] = {
        /* IPV4 */
+       {pattern_raw,                           ICE_INSET_NONE,                         ICE_INSET_NONE, NULL},
        {pattern_eth_ipv4,                      ICE_RSS_TYPE_ETH_IPV4,          ICE_INSET_NONE, &ipv4_tmplt},
        {pattern_eth_ipv4_udp,                  ICE_RSS_TYPE_ETH_IPV4_UDP,      ICE_INSET_NONE, &ipv4_udp_tmplt},
        {pattern_eth_ipv4_tcp,                  ICE_RSS_TYPE_ETH_IPV4_TCP,      ICE_INSET_NONE, &ipv4_tcp_tmplt},
@@ -485,10 +525,12 @@ static struct ice_pattern_match_item ice_hash_pattern_list[] = {
        {pattern_eth_ipv4_pfcp,                 ICE_RSS_TYPE_IPV4_PFCP,         ICE_INSET_NONE, &eth_ipv4_pfcp_tmplt},
        /* IPV6 */
        {pattern_eth_ipv6,                      ICE_RSS_TYPE_ETH_IPV6,          ICE_INSET_NONE, &ipv6_tmplt},
+       {pattern_eth_ipv6_frag_ext,             ICE_RSS_TYPE_ETH_IPV6_FRAG,     ICE_INSET_NONE, &ipv6_frag_tmplt},
        {pattern_eth_ipv6_udp,                  ICE_RSS_TYPE_ETH_IPV6_UDP,      ICE_INSET_NONE, &ipv6_udp_tmplt},
        {pattern_eth_ipv6_tcp,                  ICE_RSS_TYPE_ETH_IPV6_TCP,      ICE_INSET_NONE, &ipv6_tcp_tmplt},
        {pattern_eth_ipv6_sctp,                 ICE_RSS_TYPE_ETH_IPV6_SCTP,     ICE_INSET_NONE, &ipv6_sctp_tmplt},
        {pattern_eth_vlan_ipv6,                 ICE_RSS_TYPE_VLAN_IPV6,         ICE_INSET_NONE, &ipv6_tmplt},
+       {pattern_eth_vlan_ipv6_frag_ext,        ICE_RSS_TYPE_VLAN_IPV6_FRAG,    ICE_INSET_NONE, &ipv6_frag_tmplt},
        {pattern_eth_vlan_ipv6_udp,             ICE_RSS_TYPE_VLAN_IPV6_UDP,     ICE_INSET_NONE, &ipv6_udp_tmplt},
        {pattern_eth_vlan_ipv6_tcp,             ICE_RSS_TYPE_VLAN_IPV6_TCP,     ICE_INSET_NONE, &ipv6_tcp_tmplt},
        {pattern_eth_vlan_ipv6_sctp,            ICE_RSS_TYPE_VLAN_IPV6_SCTP,    ICE_INSET_NONE, &ipv6_sctp_tmplt},
@@ -514,6 +556,8 @@ static struct ice_pattern_match_item ice_hash_pattern_list[] = {
        {pattern_eth_ipv6_pfcp,                 ICE_RSS_TYPE_IPV6_PFCP,         ICE_INSET_NONE, &eth_ipv6_pfcp_tmplt},
        /* PPPOE */
        {pattern_eth_pppoes,                    ICE_RSS_TYPE_PPPOE,             ICE_INSET_NONE, &pppoe_tmplt},
+       /* MAC */
+       {pattern_ethertype,                     ICE_RSS_TYPE_ETH,               ICE_INSET_NONE, &eth_tmplt},
        /* EMPTY */
        {pattern_empty,                         ICE_INSET_NONE,                 ICE_INSET_NONE, &empty_tmplt},
 };
@@ -571,6 +615,9 @@ ice_hash_parse_pattern(const struct rte_flow_item pattern[], uint64_t *phint,
                }
 
                switch (item->type) {
+               case RTE_FLOW_ITEM_TYPE_RAW:
+                       *phint |= ICE_PHINT_RAW;
+                       break;
                case RTE_FLOW_ITEM_TYPE_VLAN:
                        *phint |= ICE_PHINT_VLAN;
                        break;
@@ -585,9 +632,9 @@ ice_hash_parse_pattern(const struct rte_flow_item pattern[], uint64_t *phint,
                        psc = item->spec;
                        if (!psc)
                                break;
-                       else if (psc->pdu_type == ICE_GTPU_EH_UPLINK)
+                       else if (psc->hdr.type == ICE_GTPU_EH_UPLINK)
                                *phint |= ICE_PHINT_GTPU_EH_UP;
-                       else if (psc->pdu_type == ICE_GTPU_EH_DWNLINK)
+                       else if (psc->hdr.type == ICE_GTPU_EH_DWNLINK)
                                *phint |= ICE_PHINT_GTPU_EH_DWN;
                        break;
                default:
@@ -598,6 +645,90 @@ ice_hash_parse_pattern(const struct rte_flow_item pattern[], uint64_t *phint,
        return 0;
 }
 
+static int
+ice_hash_parse_raw_pattern(struct ice_adapter *ad,
+                               const struct rte_flow_item *item,
+                               struct ice_rss_meta *meta)
+{
+       const struct rte_flow_item_raw *raw_spec, *raw_mask;
+       struct ice_parser_profile prof;
+       struct ice_parser_result rslt;
+       uint8_t *pkt_buf, *msk_buf;
+       uint8_t spec_len, pkt_len;
+       uint8_t tmp_val = 0;
+       uint8_t tmp_c = 0;
+       int i, j;
+
+       if (ad->psr == NULL)
+               return -rte_errno;
+
+       raw_spec = item->spec;
+       raw_mask = item->mask;
+
+       spec_len = strlen((char *)(uintptr_t)raw_spec->pattern);
+       if (strlen((char *)(uintptr_t)raw_mask->pattern) !=
+               spec_len)
+               return -rte_errno;
+
+       pkt_len = spec_len / 2;
+
+       pkt_buf = rte_zmalloc(NULL, pkt_len, 0);
+       if (!pkt_buf)
+               return -ENOMEM;
+
+       msk_buf = rte_zmalloc(NULL, pkt_len, 0);
+       if (!msk_buf)
+               return -ENOMEM;
+
+       /* convert string to int array */
+       for (i = 0, j = 0; i < spec_len; i += 2, j++) {
+               tmp_c = raw_spec->pattern[i];
+               if (tmp_c >= 'a' && tmp_c <= 'f')
+                       tmp_val = tmp_c - 'a' + 10;
+               if (tmp_c >= 'A' && tmp_c <= 'F')
+                       tmp_val = tmp_c - 'A' + 10;
+               if (tmp_c >= '0' && tmp_c <= '9')
+                       tmp_val = tmp_c - '0';
+
+               tmp_c = raw_spec->pattern[i + 1];
+               if (tmp_c >= 'a' && tmp_c <= 'f')
+                       pkt_buf[j] = tmp_val * 16 + tmp_c - 'a' + 10;
+               if (tmp_c >= 'A' && tmp_c <= 'F')
+                       pkt_buf[j] = tmp_val * 16 + tmp_c - 'A' + 10;
+               if (tmp_c >= '0' && tmp_c <= '9')
+                       pkt_buf[j] = tmp_val * 16 + tmp_c - '0';
+
+               tmp_c = raw_mask->pattern[i];
+               if (tmp_c >= 'a' && tmp_c <= 'f')
+                       tmp_val = tmp_c - 0x57;
+               if (tmp_c >= 'A' && tmp_c <= 'F')
+                       tmp_val = tmp_c - 0x37;
+               if (tmp_c >= '0' && tmp_c <= '9')
+                       tmp_val = tmp_c - '0';
+
+               tmp_c = raw_mask->pattern[i + 1];
+               if (tmp_c >= 'a' && tmp_c <= 'f')
+                       msk_buf[j] = tmp_val * 16 + tmp_c - 'a' + 10;
+               if (tmp_c >= 'A' && tmp_c <= 'F')
+                       msk_buf[j] = tmp_val * 16 + tmp_c - 'A' + 10;
+               if (tmp_c >= '0' && tmp_c <= '9')
+                       msk_buf[j] = tmp_val * 16 + tmp_c - '0';
+       }
+
+       if (ice_parser_run(ad->psr, pkt_buf, pkt_len, &rslt))
+               return -rte_errno;
+
+       if (ice_parser_profile_init(&rslt, pkt_buf, msk_buf,
+               pkt_len, ICE_BLK_RSS, true, &prof))
+               return -rte_errno;
+
+       rte_memcpy(&meta->raw.prof, &prof, sizeof(prof));
+
+       rte_free(pkt_buf);
+       rte_free(msk_buf);
+       return 0;
+}
+
 static void
 ice_refine_hash_cfg_l234(struct ice_rss_hash_cfg *hash_cfg,
                         uint64_t rss_type)
@@ -606,69 +737,86 @@ ice_refine_hash_cfg_l234(struct ice_rss_hash_cfg *hash_cfg,
        uint64_t *hash_flds = &hash_cfg->hash_flds;
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_ETH) {
-               if (!(rss_type & ETH_RSS_ETH))
+               if (!(rss_type & RTE_ETH_RSS_ETH))
                        *hash_flds &= ~ICE_FLOW_HASH_ETH;
-               if (rss_type & ETH_RSS_L2_SRC_ONLY)
+               if (rss_type & RTE_ETH_RSS_L2_SRC_ONLY)
                        *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_ETH_DA));
-               else if (rss_type & ETH_RSS_L2_DST_ONLY)
+               else if (rss_type & RTE_ETH_RSS_L2_DST_ONLY)
                        *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_ETH_SA));
                *addl_hdrs &= ~ICE_FLOW_SEG_HDR_ETH;
        }
 
+       if (*addl_hdrs & ICE_FLOW_SEG_HDR_ETH_NON_IP) {
+               if (rss_type & RTE_ETH_RSS_ETH)
+                       *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_ETH_TYPE);
+       }
+
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_VLAN) {
-               if (rss_type & ETH_RSS_C_VLAN)
+               if (rss_type & RTE_ETH_RSS_C_VLAN)
                        *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_C_VLAN);
-               else if (rss_type & ETH_RSS_S_VLAN)
+               else if (rss_type & RTE_ETH_RSS_S_VLAN)
                        *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_S_VLAN);
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_PPPOE) {
-               if (!(rss_type & ETH_RSS_PPPOE))
+               if (!(rss_type & RTE_ETH_RSS_PPPOE))
                        *hash_flds &= ~ICE_FLOW_HASH_PPPOE_SESS_ID;
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_IPV4) {
                if (rss_type &
-                  (ETH_RSS_IPV4 |
-                   ETH_RSS_NONFRAG_IPV4_UDP |
-                   ETH_RSS_NONFRAG_IPV4_TCP |
-                   ETH_RSS_NONFRAG_IPV4_SCTP)) {
-                       if (rss_type & ETH_RSS_L3_SRC_ONLY)
+                  (RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_FRAG_IPV4 |
+                   RTE_ETH_RSS_NONFRAG_IPV4_UDP |
+                   RTE_ETH_RSS_NONFRAG_IPV4_TCP |
+                   RTE_ETH_RSS_NONFRAG_IPV4_SCTP)) {
+                       if (rss_type & RTE_ETH_RSS_FRAG_IPV4) {
+                               *addl_hdrs |= ICE_FLOW_SEG_HDR_IPV_FRAG;
+                               *addl_hdrs &= ~(ICE_FLOW_SEG_HDR_IPV_OTHER);
+                               *hash_flds |=
+                                       BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_ID);
+                       }
+                       if (rss_type & RTE_ETH_RSS_L3_SRC_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_DA));
-                       else if (rss_type & ETH_RSS_L3_DST_ONLY)
+                       else if (rss_type & RTE_ETH_RSS_L3_DST_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_SA));
                        else if (rss_type &
-                               (ETH_RSS_L4_SRC_ONLY |
-                               ETH_RSS_L4_DST_ONLY))
+                               (RTE_ETH_RSS_L4_SRC_ONLY |
+                               RTE_ETH_RSS_L4_DST_ONLY))
                                *hash_flds &= ~ICE_FLOW_HASH_IPV4;
                } else {
                        *hash_flds &= ~ICE_FLOW_HASH_IPV4;
                }
+
+               if (rss_type & RTE_ETH_RSS_IPV4_CHKSUM)
+                       *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_IPV4_CHKSUM);
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_IPV6) {
                if (rss_type &
-                  (ETH_RSS_IPV6 |
-                   ETH_RSS_NONFRAG_IPV6_UDP |
-                   ETH_RSS_NONFRAG_IPV6_TCP |
-                   ETH_RSS_NONFRAG_IPV6_SCTP)) {
-                       if (rss_type & ETH_RSS_L3_SRC_ONLY)
+                  (RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_FRAG_IPV6 |
+                   RTE_ETH_RSS_NONFRAG_IPV6_UDP |
+                   RTE_ETH_RSS_NONFRAG_IPV6_TCP |
+                   RTE_ETH_RSS_NONFRAG_IPV6_SCTP)) {
+                       if (rss_type & RTE_ETH_RSS_FRAG_IPV6)
+                               *hash_flds |=
+                                       BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_ID);
+                       if (rss_type & RTE_ETH_RSS_L3_SRC_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_DA));
-                       else if (rss_type & ETH_RSS_L3_DST_ONLY)
+                       else if (rss_type & RTE_ETH_RSS_L3_DST_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_SA));
                        else if (rss_type &
-                               (ETH_RSS_L4_SRC_ONLY |
-                               ETH_RSS_L4_DST_ONLY))
+                               (RTE_ETH_RSS_L4_SRC_ONLY |
+                               RTE_ETH_RSS_L4_DST_ONLY))
                                *hash_flds &= ~ICE_FLOW_HASH_IPV6;
                } else {
                        *hash_flds &= ~ICE_FLOW_HASH_IPV6;
                }
 
                if (rss_type & RTE_ETH_RSS_L3_PRE32) {
-                       if (rss_type & ETH_RSS_L3_SRC_ONLY) {
+                       if (rss_type & RTE_ETH_RSS_L3_SRC_ONLY) {
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_SA));
                                *hash_flds |= (BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PRE32_SA));
-                       } else if (rss_type & ETH_RSS_L3_DST_ONLY) {
+                       } else if (rss_type & RTE_ETH_RSS_L3_DST_ONLY) {
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_DA));
                                *hash_flds |= (BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PRE32_DA));
                        } else {
@@ -677,10 +825,10 @@ ice_refine_hash_cfg_l234(struct ice_rss_hash_cfg *hash_cfg,
                        }
                }
                if (rss_type & RTE_ETH_RSS_L3_PRE48) {
-                       if (rss_type & ETH_RSS_L3_SRC_ONLY) {
+                       if (rss_type & RTE_ETH_RSS_L3_SRC_ONLY) {
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_SA));
                                *hash_flds |= (BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PRE48_SA));
-                       } else if (rss_type & ETH_RSS_L3_DST_ONLY) {
+                       } else if (rss_type & RTE_ETH_RSS_L3_DST_ONLY) {
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_DA));
                                *hash_flds |= (BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PRE48_DA));
                        } else {
@@ -689,10 +837,10 @@ ice_refine_hash_cfg_l234(struct ice_rss_hash_cfg *hash_cfg,
                        }
                }
                if (rss_type & RTE_ETH_RSS_L3_PRE64) {
-                       if (rss_type & ETH_RSS_L3_SRC_ONLY) {
+                       if (rss_type & RTE_ETH_RSS_L3_SRC_ONLY) {
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_SA));
                                *hash_flds |= (BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PRE64_SA));
-                       } else if (rss_type & ETH_RSS_L3_DST_ONLY) {
+                       } else if (rss_type & RTE_ETH_RSS_L3_DST_ONLY) {
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_DA));
                                *hash_flds |= (BIT_ULL(ICE_FLOW_FIELD_IDX_IPV6_PRE64_DA));
                        } else {
@@ -704,72 +852,81 @@ ice_refine_hash_cfg_l234(struct ice_rss_hash_cfg *hash_cfg,
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_UDP) {
                if (rss_type &
-                  (ETH_RSS_NONFRAG_IPV4_UDP |
-                   ETH_RSS_NONFRAG_IPV6_UDP)) {
-                       if (rss_type & ETH_RSS_L4_SRC_ONLY)
+                  (RTE_ETH_RSS_NONFRAG_IPV4_UDP |
+                   RTE_ETH_RSS_NONFRAG_IPV6_UDP)) {
+                       if (rss_type & RTE_ETH_RSS_L4_SRC_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_UDP_DST_PORT));
-                       else if (rss_type & ETH_RSS_L4_DST_ONLY)
+                       else if (rss_type & RTE_ETH_RSS_L4_DST_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_UDP_SRC_PORT));
                        else if (rss_type &
-                               (ETH_RSS_L3_SRC_ONLY |
-                                 ETH_RSS_L3_DST_ONLY))
+                               (RTE_ETH_RSS_L3_SRC_ONLY |
+                                 RTE_ETH_RSS_L3_DST_ONLY))
                                *hash_flds &= ~ICE_FLOW_HASH_UDP_PORT;
                } else {
                        *hash_flds &= ~ICE_FLOW_HASH_UDP_PORT;
                }
+
+               if (rss_type & RTE_ETH_RSS_L4_CHKSUM)
+                       *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_UDP_CHKSUM);
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_TCP) {
                if (rss_type &
-                  (ETH_RSS_NONFRAG_IPV4_TCP |
-                   ETH_RSS_NONFRAG_IPV6_TCP)) {
-                       if (rss_type & ETH_RSS_L4_SRC_ONLY)
+                  (RTE_ETH_RSS_NONFRAG_IPV4_TCP |
+                   RTE_ETH_RSS_NONFRAG_IPV6_TCP)) {
+                       if (rss_type & RTE_ETH_RSS_L4_SRC_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_TCP_DST_PORT));
-                       else if (rss_type & ETH_RSS_L4_DST_ONLY)
+                       else if (rss_type & RTE_ETH_RSS_L4_DST_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_TCP_SRC_PORT));
                        else if (rss_type &
-                               (ETH_RSS_L3_SRC_ONLY |
-                                 ETH_RSS_L3_DST_ONLY))
+                               (RTE_ETH_RSS_L3_SRC_ONLY |
+                                 RTE_ETH_RSS_L3_DST_ONLY))
                                *hash_flds &= ~ICE_FLOW_HASH_TCP_PORT;
                } else {
                        *hash_flds &= ~ICE_FLOW_HASH_TCP_PORT;
                }
+
+               if (rss_type & RTE_ETH_RSS_L4_CHKSUM)
+                       *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_TCP_CHKSUM);
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_SCTP) {
                if (rss_type &
-                  (ETH_RSS_NONFRAG_IPV4_SCTP |
-                   ETH_RSS_NONFRAG_IPV6_SCTP)) {
-                       if (rss_type & ETH_RSS_L4_SRC_ONLY)
+                  (RTE_ETH_RSS_NONFRAG_IPV4_SCTP |
+                   RTE_ETH_RSS_NONFRAG_IPV6_SCTP)) {
+                       if (rss_type & RTE_ETH_RSS_L4_SRC_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_SCTP_DST_PORT));
-                       else if (rss_type & ETH_RSS_L4_DST_ONLY)
+                       else if (rss_type & RTE_ETH_RSS_L4_DST_ONLY)
                                *hash_flds &= ~(BIT_ULL(ICE_FLOW_FIELD_IDX_SCTP_SRC_PORT));
                        else if (rss_type &
-                               (ETH_RSS_L3_SRC_ONLY |
-                                 ETH_RSS_L3_DST_ONLY))
+                               (RTE_ETH_RSS_L3_SRC_ONLY |
+                                 RTE_ETH_RSS_L3_DST_ONLY))
                                *hash_flds &= ~ICE_FLOW_HASH_SCTP_PORT;
                } else {
                        *hash_flds &= ~ICE_FLOW_HASH_SCTP_PORT;
                }
+
+               if (rss_type & RTE_ETH_RSS_L4_CHKSUM)
+                       *hash_flds |= BIT_ULL(ICE_FLOW_FIELD_IDX_SCTP_CHKSUM);
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_L2TPV3) {
-               if (!(rss_type & ETH_RSS_L2TPV3))
+               if (!(rss_type & RTE_ETH_RSS_L2TPV3))
                        *hash_flds &= ~ICE_FLOW_HASH_L2TPV3_SESS_ID;
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_ESP) {
-               if (!(rss_type & ETH_RSS_ESP))
+               if (!(rss_type & RTE_ETH_RSS_ESP))
                        *hash_flds &= ~ICE_FLOW_HASH_ESP_SPI;
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_AH) {
-               if (!(rss_type & ETH_RSS_AH))
+               if (!(rss_type & RTE_ETH_RSS_AH))
                        *hash_flds &= ~ICE_FLOW_HASH_AH_SPI;
        }
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_PFCP_SESSION) {
-               if (!(rss_type & ETH_RSS_PFCP))
+               if (!(rss_type & RTE_ETH_RSS_PFCP))
                        *hash_flds &= ~ICE_FLOW_HASH_PFCP_SEID;
        }
 }
@@ -803,7 +960,7 @@ ice_refine_hash_cfg_gtpu(struct ice_rss_hash_cfg *hash_cfg,
        uint64_t *hash_flds = &hash_cfg->hash_flds;
 
        /* update hash field for gtpu eh/gtpu dwn/gtpu up. */
-       if (!(rss_type & ETH_RSS_GTPU))
+       if (!(rss_type & RTE_ETH_RSS_GTPU))
                return;
 
        if (*addl_hdrs & ICE_FLOW_SEG_HDR_GTPU_DWN)
@@ -825,8 +982,10 @@ static void ice_refine_hash_cfg(struct ice_rss_hash_cfg *hash_cfg,
 }
 
 static uint64_t invalid_rss_comb[] = {
-       ETH_RSS_IPV4 | ETH_RSS_NONFRAG_IPV4_UDP,
-       ETH_RSS_IPV6 | ETH_RSS_NONFRAG_IPV6_UDP,
+       RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_NONFRAG_IPV4_UDP,
+       RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_NONFRAG_IPV4_TCP,
+       RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_NONFRAG_IPV6_UDP,
+       RTE_ETH_RSS_IPV6 | RTE_ETH_RSS_NONFRAG_IPV6_TCP,
        RTE_ETH_RSS_L3_PRE40 |
        RTE_ETH_RSS_L3_PRE56 |
        RTE_ETH_RSS_L3_PRE96
@@ -838,9 +997,9 @@ struct rss_attr_type {
 };
 
 static struct rss_attr_type rss_attr_to_valid_type[] = {
-       {ETH_RSS_L2_SRC_ONLY | ETH_RSS_L2_DST_ONLY,     ETH_RSS_ETH},
-       {ETH_RSS_L3_SRC_ONLY | ETH_RSS_L3_DST_ONLY,     VALID_RSS_L3},
-       {ETH_RSS_L4_SRC_ONLY | ETH_RSS_L4_DST_ONLY,     VALID_RSS_L4},
+       {RTE_ETH_RSS_L2_SRC_ONLY | RTE_ETH_RSS_L2_DST_ONLY,     RTE_ETH_RSS_ETH},
+       {RTE_ETH_RSS_L3_SRC_ONLY | RTE_ETH_RSS_L3_DST_ONLY,     VALID_RSS_L3},
+       {RTE_ETH_RSS_L4_SRC_ONLY | RTE_ETH_RSS_L4_DST_ONLY,     VALID_RSS_L4},
        /* current ipv6 prefix only supports prefix 64 bits*/
        {RTE_ETH_RSS_L3_PRE32,                          VALID_RSS_IPV6},
        {RTE_ETH_RSS_L3_PRE48,                          VALID_RSS_IPV6},
@@ -859,15 +1018,16 @@ ice_any_invalid_rss_type(enum rte_eth_hash_function rss_func,
         * hash function.
         */
        if (rss_func == RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ) {
-               if (rss_type & (ETH_RSS_L3_SRC_ONLY | ETH_RSS_L3_DST_ONLY |
-                   ETH_RSS_L4_SRC_ONLY | ETH_RSS_L4_DST_ONLY))
+               if (rss_type & (RTE_ETH_RSS_L3_SRC_ONLY | RTE_ETH_RSS_L3_DST_ONLY |
+                   RTE_ETH_RSS_L4_SRC_ONLY | RTE_ETH_RSS_L4_DST_ONLY))
                        return true;
 
                if (!(rss_type &
-                  (ETH_RSS_IPV4 | ETH_RSS_IPV6 |
-                   ETH_RSS_NONFRAG_IPV4_UDP | ETH_RSS_NONFRAG_IPV6_UDP |
-                   ETH_RSS_NONFRAG_IPV4_TCP | ETH_RSS_NONFRAG_IPV6_TCP |
-                   ETH_RSS_NONFRAG_IPV4_SCTP | ETH_RSS_NONFRAG_IPV6_SCTP)))
+                  (RTE_ETH_RSS_IPV4 | RTE_ETH_RSS_IPV6 |
+                   RTE_ETH_RSS_FRAG_IPV4 | RTE_ETH_RSS_FRAG_IPV6 |
+                   RTE_ETH_RSS_NONFRAG_IPV4_UDP | RTE_ETH_RSS_NONFRAG_IPV6_UDP |
+                   RTE_ETH_RSS_NONFRAG_IPV4_TCP | RTE_ETH_RSS_NONFRAG_IPV6_TCP |
+                   RTE_ETH_RSS_NONFRAG_IPV4_SCTP | RTE_ETH_RSS_NONFRAG_IPV6_SCTP)))
                        return true;
        }
 
@@ -894,10 +1054,9 @@ ice_any_invalid_rss_type(enum rte_eth_hash_function rss_func,
 static int
 ice_hash_parse_action(struct ice_pattern_match_item *pattern_match_item,
                const struct rte_flow_action actions[],
-               uint64_t pattern_hint, void **meta,
+               uint64_t pattern_hint, struct ice_rss_meta *rss_meta,
                struct rte_flow_error *error)
 {
-       struct ice_rss_meta *rss_meta = (struct ice_rss_meta *)*meta;
        struct ice_rss_hash_cfg *cfg = pattern_match_item->meta;
        enum rte_flow_action_type action_type;
        const struct rte_flow_action_rss *rss;
@@ -929,7 +1088,10 @@ ice_hash_parse_action(struct ice_pattern_match_item *pattern_match_item,
                                   RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ) {
                                rss_meta->hash_function =
                                RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ;
-                               cfg->symm = true;
+                               if (pattern_hint == ICE_PHINT_RAW)
+                                       rss_meta->raw.symm = true;
+                               else
+                                       cfg->symm = true;
                        }
 
                        if (rss->level)
@@ -947,6 +1109,10 @@ ice_hash_parse_action(struct ice_pattern_match_item *pattern_match_item,
                                        RTE_FLOW_ERROR_TYPE_ACTION, action,
                                        "a non-NULL RSS queue is not supported");
 
+                       /* If pattern type is raw, no need to refine rss type */
+                       if (pattern_hint == ICE_PHINT_RAW)
+                               break;
+
                        /**
                         * Check simultaneous use of SRC_ONLY and DST_ONLY
                         * of the same level.
@@ -983,6 +1149,7 @@ ice_hash_parse_pattern_action(__rte_unused struct ice_adapter *ad,
                        uint32_t array_len,
                        const struct rte_flow_item pattern[],
                        const struct rte_flow_action actions[],
+                       uint32_t priority,
                        void **meta,
                        struct rte_flow_error *error)
 {
@@ -991,6 +1158,9 @@ ice_hash_parse_pattern_action(__rte_unused struct ice_adapter *ad,
        struct ice_rss_meta *rss_meta_ptr;
        uint64_t phint = ICE_PHINT_NONE;
 
+       if (priority >= 1)
+               return -rte_errno;
+
        rss_meta_ptr = rte_zmalloc(NULL, sizeof(*rss_meta_ptr), 0);
        if (!rss_meta_ptr) {
                rte_flow_error_set(error, EINVAL,
@@ -1011,9 +1181,20 @@ ice_hash_parse_pattern_action(__rte_unused struct ice_adapter *ad,
        if (ret)
                goto error;
 
+       if (phint == ICE_PHINT_RAW) {
+               rss_meta_ptr->raw.raw_ena = true;
+               ret = ice_hash_parse_raw_pattern(ad, pattern, rss_meta_ptr);
+               if (ret) {
+                       rte_flow_error_set(error, EINVAL,
+                                          RTE_FLOW_ERROR_TYPE_ITEM, NULL,
+                                          "Parse raw pattern failed");
+                       goto error;
+               }
+       }
+
        /* Check rss action. */
        ret = ice_hash_parse_action(pattern_match_item, actions, phint,
-                                   (void **)&rss_meta_ptr, error);
+                                   rss_meta_ptr, error);
 
 error:
        if (!ret && meta)
@@ -1025,6 +1206,71 @@ error:
        return ret;
 }
 
+static int
+ice_hash_add_raw_cfg(struct ice_adapter *ad,
+               struct ice_rss_raw_cfg *cfg, u16 vsi_handle)
+{
+       struct ice_parser_profile *prof = &cfg->prof;
+       struct ice_rss_prof_info *rss_prof;
+       struct ice_hw *hw = &ad->hw;
+       int i, ptg, ret;
+       u64 id;
+
+       id = (u64)ice_find_first_bit(prof->ptypes, UINT16_MAX);
+
+       ptg = hw->blk[ICE_BLK_RSS].xlt1.t[id];
+       rss_prof = &ad->rss_prof_info[ptg];
+       /* check if ptg already has profile */
+       if (rss_prof->prof.fv_num) {
+               for (i = 0; i < ICE_MAX_FV_WORDS; i++) {
+                       if (rss_prof->prof.fv[i].proto_id !=
+                           prof->fv[i].proto_id ||
+                           rss_prof->prof.fv[i].offset !=
+                           prof->fv[i].offset)
+                               break;
+               }
+
+               /* current profile is matched, check symmetric hash */
+               if (i == ICE_MAX_FV_WORDS) {
+                       if (rss_prof->symm != cfg->symm)
+                               goto update_symm;
+
+                       return 0;
+               }
+
+               /* current profile is not matched, remove it */
+               ret = ice_rem_prof_id_flow(hw, ICE_BLK_RSS,
+                                          ice_get_hw_vsi_num(hw, vsi_handle),
+                                          id);
+               if (ret) {
+                       PMD_DRV_LOG(ERR, "remove RSS flow failed\n");
+                       return ret;
+               }
+
+               ret = ice_rem_prof(hw, ICE_BLK_RSS, id);
+               if (ret) {
+                       PMD_DRV_LOG(ERR, "remove RSS profile failed\n");
+                       return ret;
+               }
+       }
+
+       /* add new profile */
+       ret = ice_flow_set_hw_prof(hw, vsi_handle, 0, prof, ICE_BLK_RSS);
+       if (ret) {
+               PMD_DRV_LOG(ERR, "HW profile add failed\n");
+               return ret;
+       }
+
+       rss_prof->symm = cfg->symm;
+       ice_memcpy(&rss_prof->prof, prof,
+                  sizeof(struct ice_parser_profile),
+                  ICE_NONDMA_TO_NONDMA);
+
+update_symm:
+       ice_rss_update_raw_symm(hw, cfg, id);
+       return 0;
+}
+
 static int
 ice_hash_create(struct ice_adapter *ad,
                struct rte_flow *flow,
@@ -1060,15 +1306,30 @@ ice_hash_create(struct ice_adapter *ad,
 
                goto out;
        } else {
-               memcpy(&filter_ptr->rss_cfg.hash, &rss_meta->cfg,
-                      sizeof(struct ice_rss_hash_cfg));
-               ret = ice_add_rss_cfg_wrap(pf, vsi->idx,
-                                          &filter_ptr->rss_cfg.hash);
-               if (ret) {
-                       rte_flow_error_set(error, EINVAL,
-                                       RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
-                                       "rss flow create fail");
-                       goto error;
+               if (rss_meta->raw.raw_ena) {
+                       memcpy(&filter_ptr->rss_cfg.raw, &rss_meta->raw,
+                              sizeof(struct ice_rss_raw_cfg));
+                       ret = ice_hash_add_raw_cfg(ad, &rss_meta->raw,
+                                                  pf->main_vsi->idx);
+                       if (ret) {
+                               rte_flow_error_set(error, EINVAL,
+                                                  RTE_FLOW_ERROR_TYPE_HANDLE,
+                                                  NULL,
+                                                  "rss flow create fail");
+                               goto error;
+                       }
+               } else {
+                       memcpy(&filter_ptr->rss_cfg.hash, &rss_meta->cfg,
+                              sizeof(struct ice_rss_hash_cfg));
+                       ret = ice_add_rss_cfg_wrap(pf, vsi->idx,
+                                                  &filter_ptr->rss_cfg.hash);
+                       if (ret) {
+                               rte_flow_error_set(error, EINVAL,
+                                                  RTE_FLOW_ERROR_TYPE_HANDLE,
+                                                  NULL,
+                                                  "rss flow create fail");
+                               goto error;
+                       }
                }
        }
 
@@ -1083,6 +1344,45 @@ error:
        return -rte_errno;
 }
 
+static int
+ice_hash_rem_raw_cfg(struct ice_adapter *ad,
+                       struct ice_parser_profile *prof,
+                   u16 vsi_handle)
+{
+       struct ice_hw *hw = &ad->hw;
+       int ptg, ret;
+       u16 vsig;
+       u64 id;
+
+       id = (u64)ice_find_first_bit(prof->ptypes, 0xFFFF);
+
+       ptg = hw->blk[ICE_BLK_RSS].xlt1.t[id];
+
+       memset(&ad->rss_prof_info[ptg], 0,
+               sizeof(struct ice_rss_prof_info));
+
+       /* check if vsig is already removed */
+       ret = ice_vsig_find_vsi(hw, ICE_BLK_RSS,
+               ice_get_hw_vsi_num(hw, vsi_handle), &vsig);
+       if (!ret && vsig) {
+               ret = ice_rem_prof_id_flow(hw, ICE_BLK_RSS,
+                                          ice_get_hw_vsi_num(hw, vsi_handle),
+                                          id);
+               if (ret)
+                       goto err;
+
+               ret = ice_rem_prof(hw, ICE_BLK_RSS, id);
+               if (ret)
+                       goto err;
+       }
+
+       return 0;
+
+err:
+       PMD_DRV_LOG(ERR, "HW profile remove failed\n");
+       return ret;
+}
+
 static int
 ice_hash_destroy(struct ice_adapter *ad,
                struct rte_flow *flow,
@@ -1104,18 +1404,32 @@ ice_hash_destroy(struct ice_adapter *ad,
                        (1 << VSIQF_HASH_CTL_HASH_SCHEME_S);
                ICE_WRITE_REG(hw, VSIQF_HASH_CTL(vsi->vsi_id), reg);
        } else {
-               ret = ice_rem_rss_cfg_wrap(pf, vsi->idx,
-                                          &filter_ptr->rss_cfg.hash);
-               /* Fixme: Ignore the error if a rule does not exist.
-                * Currently a rule for inputset change or symm turn on/off
-                * will overwrite an exist rule, while application still
-                * have 2 rte_flow handles.
-                **/
-               if (ret && ret != ICE_ERR_DOES_NOT_EXIST) {
-                       rte_flow_error_set(error, EINVAL,
-                                       RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
-                                       "rss flow destroy fail");
-                       goto error;
+               if (filter_ptr->rss_cfg.raw.raw_ena) {
+                       ret =
+                       ice_hash_rem_raw_cfg(ad, &filter_ptr->rss_cfg.raw.prof,
+                                            pf->main_vsi->idx);
+                       if (ret) {
+                               rte_flow_error_set(error, EINVAL,
+                                                  RTE_FLOW_ERROR_TYPE_HANDLE,
+                                                  NULL,
+                                                  "rss flow destroy fail");
+                               goto error;
+                       }
+               } else {
+                       ret = ice_rem_rss_cfg_wrap(pf, vsi->idx,
+                                                  &filter_ptr->rss_cfg.hash);
+                       /* Fixme: Ignore the error if a rule does not exist.
+                        * Currently a rule for inputset change or symm turn
+                        * on/off will overwrite an exist rule, while
+                        * application still have 2 rte_flow handles.
+                        **/
+                       if (ret && ret != ICE_ERR_DOES_NOT_EXIST) {
+                               rte_flow_error_set(error, EINVAL,
+                                                  RTE_FLOW_ERROR_TYPE_HANDLE,
+                                                  NULL,
+                                                  "rss flow destroy fail");
+                               goto error;
+                       }
                }
        }