net/hns3: support VXLAN-GPE TSO and checksum
[dpdk.git] / drivers / net / hns3 / hns3_ethdev.h
index da8aead..a2b61ff 100644 (file)
@@ -7,6 +7,7 @@
 
 #include <sys/time.h>
 #include <rte_alarm.h>
+#include <rte_ethdev_driver.h>
 
 #include "hns3_cmd.h"
 #include "hns3_mbx.h"
@@ -40,6 +41,9 @@
 #define HNS3_SW_SHIFT_AND_DISCARD_MODE         0
 #define HNS3_HW_SHIFT_AND_DISCARD_MODE         1
 
+#define HNS3_UNLIMIT_PROMISC_MODE       0
+#define HNS3_LIMIT_PROMISC_MODE         1
+
 #define HNS3_UC_MACADDR_NUM            128
 #define HNS3_VF_UC_MACADDR_NUM         48
 #define HNS3_MC_MACADDR_NUM            128
@@ -527,6 +531,24 @@ struct hns3_hw {
         *     is enabled.
         */
        uint8_t vlan_mode;
+       /*
+        * promisc mode.
+        * value range:
+        *      HNS3_UNLIMIT_PROMISC_MODE/HNS3_LIMIT_PROMISC_MODE
+        *
+        *  - HNS3_UNLIMIT_PROMISC_MODE
+        *     In this mode, TX unicast promisc will be configured when promisc
+        *     is set, driver can receive all the ingress and outgoing traffic.
+        *     In the words, all the ingress packets, all the packets sent from
+        *     the PF and other VFs on the same physical port.
+        *
+        *  - HNS3_LIMIT_PROMISC_MODE
+        *     In this mode, TX unicast promisc is shutdown when promisc mode
+        *     is set. So, driver will only receive all the ingress traffic.
+        *     The packets sent from the PF and other VFs on the same physical
+        *     port won't be copied to the function which has set promisc mode.
+        */
+       uint8_t promisc_mode;
        uint8_t max_non_tso_bd_num; /* max BD number of one non-TSO packet */
 
        struct hns3_port_base_vlan_config port_base_vlan_cfg;
@@ -647,16 +669,17 @@ struct hns3_mp_param {
 #define HNS3_L2TBL_NUM 4
 #define HNS3_L3TBL_NUM 16
 #define HNS3_L4TBL_NUM 16
+#define HNS3_OL2TBL_NUM        4
 #define HNS3_OL3TBL_NUM        16
 #define HNS3_OL4TBL_NUM        16
 
 struct hns3_ptype_table {
-       uint32_t l2table[HNS3_L2TBL_NUM];
-       uint32_t l3table[HNS3_L3TBL_NUM];
+       uint32_t l2l3table[HNS3_L2TBL_NUM][HNS3_L3TBL_NUM];
        uint32_t l4table[HNS3_L4TBL_NUM];
        uint32_t inner_l2table[HNS3_L2TBL_NUM];
        uint32_t inner_l3table[HNS3_L3TBL_NUM];
        uint32_t inner_l4table[HNS3_L4TBL_NUM];
+       uint32_t ol2table[HNS3_OL2TBL_NUM];
        uint32_t ol3table[HNS3_OL3TBL_NUM];
        uint32_t ol4table[HNS3_OL4TBL_NUM];
 };
@@ -804,6 +827,8 @@ struct hns3_adapter {
 #define hns3_get_bit(origin, shift) \
        hns3_get_field((origin), (0x1UL << (shift)), (shift))
 
+#define hns3_gen_field_val(mask, shift, val) (((val) << (shift)) & (mask))
+
 /*
  * upper_32_bits - return bits 32-63 of a number
  * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress