]> git.droids-corp.org - dpdk.git/commitdiff
net/hns3: add Tx short frame padding compatibility
authorWei Hu (Xavier) <xavier.huwei@huawei.com>
Tue, 25 Aug 2020 11:52:58 +0000 (19:52 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 18 Sep 2020 16:55:07 +0000 (18:55 +0200)
There are difference about padding ultra-short frame in Tx procession
for different versions of hardware network engine.

If packet length is less than minimum packet length supported by
hardware in Tx direction, driver need to pad it to avoid error. The
minimum packet length in Tx direction is 33 based on kunpeng 920, and 9
based on kunpeng 930.

Signed-off-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
Signed-off-by: Chengchang Tang <tangchengchang@huawei.com>
drivers/net/hns3/hns3_ethdev.c
drivers/net/hns3/hns3_ethdev.h
drivers/net/hns3/hns3_ethdev_vf.c
drivers/net/hns3/hns3_rxtx.c
drivers/net/hns3/hns3_rxtx.h

index 3cc1fbc3273b07a014a12af5fd7c4964f0d034e2..4797cfb2f2b8278182e56e16415c614ecbc2fe39 100644 (file)
@@ -2884,6 +2884,7 @@ hns3_get_capability(struct hns3_hw *hw)
                hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_RSV_ONE;
                hw->intr.coalesce_mode = HNS3_INTR_COALESCE_NON_QL;
                hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_2US;
+               hw->min_tx_pkt_len = HNS3_HIP08_MIN_TX_PKT_LEN;
                return 0;
        }
 
@@ -2898,6 +2899,7 @@ hns3_get_capability(struct hns3_hw *hw)
        hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_ALL;
        hw->intr.coalesce_mode = HNS3_INTR_COALESCE_QL;
        hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_1US;
+       hw->min_tx_pkt_len = HNS3_HIP09_MIN_TX_PKT_LEN;
 
        return 0;
 }
index b8eb7ddc15d5c83c91e3cecd7d1e90a4b2cf1498..4d7e4cedb43c1f3181c2c0f1496d6b80cea36075 100644 (file)
@@ -58,7 +58,8 @@
 #define HNS3_MAX_MTU   (HNS3_MAX_FRAME_LEN - HNS3_ETH_OVERHEAD)
 #define HNS3_DEFAULT_MTU               1500UL
 #define HNS3_DEFAULT_FRAME_LEN         (HNS3_DEFAULT_MTU + HNS3_ETH_OVERHEAD)
-#define HNS3_MIN_PKT_SIZE              60
+#define HNS3_HIP08_MIN_TX_PKT_LEN      33
+#define HNS3_HIP09_MIN_TX_PKT_LEN      9
 
 #define HNS3_4_TCS                     4
 #define HNS3_8_TCS                     8
@@ -464,6 +465,11 @@ struct hns3_hw {
 
        uint32_t capability;
        uint32_t max_tm_rate;
+       /*
+        * The minimum length of the packet supported by hardware in the Tx
+        * direction.
+        */
+       uint32_t min_tx_pkt_len;
 
        struct hns3_queue_intr intr;
 
index cf098c28f1940f3809a67242b74df0159a8bc281..e0d6783b4a7c1c30033c55e06844e677f3a87d63 100644 (file)
@@ -1133,6 +1133,7 @@ hns3vf_get_capability(struct hns3_hw *hw)
                hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_RSV_ONE;
                hw->intr.coalesce_mode = HNS3_INTR_COALESCE_NON_QL;
                hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_2US;
+               hw->min_tx_pkt_len = HNS3_HIP08_MIN_TX_PKT_LEN;
                return 0;
        }
 
@@ -1147,6 +1148,7 @@ hns3vf_get_capability(struct hns3_hw *hw)
        hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_ALL;
        hw->intr.coalesce_mode = HNS3_INTR_COALESCE_QL;
        hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_1US;
+       hw->min_tx_pkt_len = HNS3_HIP09_MIN_TX_PKT_LEN;
 
        return 0;
 }
index d39576621dd7aff4207f598dc2a6f150f030b2e0..308d0a671bd416cf4638fba12f69acabaa7aba92 100644 (file)
@@ -1915,6 +1915,7 @@ hns3_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t nb_desc,
        txq->configured = true;
        txq->io_base = (void *)((char *)hw->io_base + HNS3_TQP_REG_OFFSET +
                                idx * HNS3_TQP_REG_SIZE);
+       txq->min_tx_pkt_len = hw->min_tx_pkt_len;
        txq->over_length_pkt_cnt = 0;
        txq->exceed_limit_bd_pkt_cnt = 0;
        txq->exceed_limit_bd_reassem_fail = 0;
@@ -2743,14 +2744,16 @@ hns3_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts)
                }
 
                /*
-                * If packet length is less than minimum packet size, driver
-                * need to pad it.
+                * If packet length is less than minimum packet length supported
+                * by hardware in Tx direction, driver need to pad it to avoid
+                * error.
                 */
-               if (unlikely(rte_pktmbuf_pkt_len(tx_pkt) < HNS3_MIN_PKT_SIZE)) {
+               if (unlikely(rte_pktmbuf_pkt_len(tx_pkt) <
+                                               txq->min_tx_pkt_len)) {
                        uint16_t add_len;
                        char *appended;
 
-                       add_len = HNS3_MIN_PKT_SIZE -
+                       add_len = txq->min_tx_pkt_len -
                                         rte_pktmbuf_pkt_len(tx_pkt);
                        appended = rte_pktmbuf_append(tx_pkt, add_len);
                        if (appended == NULL) {
index 15c609ceb98fe67f6f32c75b7fbb361b0cd40cb9..4b3269b12f7fe23bd04de7d303b262ec093d1be5 100644 (file)
@@ -291,6 +291,12 @@ struct hns3_tx_queue {
         */
        uint16_t pvid_state;
 
+       /*
+        * The minimum length of the packet supported by hardware in the Tx
+        * direction.
+        */
+       uint32_t min_tx_pkt_len;
+
        bool tx_deferred_start; /* don't start this queue in dev start */
        bool configured;        /* indicate if tx queue has been configured */
 
@@ -333,7 +339,8 @@ struct hns3_tx_queue {
         *
         * - pkt_padding_fail_cnt
         *     Total count which the packet length is less than minimum packet
-        *     size HNS3_MIN_PKT_SIZE and fail to be appended with 0.
+        *     length(struct hns3_tx_queue::min_tx_pkt_len) supported by
+        *     hardware in Tx direction and fail to be appended with 0.
         */
        uint64_t over_length_pkt_cnt;
        uint64_t exceed_limit_bd_pkt_cnt;