From patchwork Tue Nov 24 13:56:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lijun Ou X-Patchwork-Id: 84516 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1C17FA04B1; Tue, 24 Nov 2020 14:56:18 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C0D66C910; Tue, 24 Nov 2020 14:56:15 +0100 (CET) Received: from szxga04-in.huawei.com (szxga04-in.huawei.com [45.249.212.190]) by dpdk.org (Postfix) with ESMTP id 05700C90E for ; Tue, 24 Nov 2020 14:56:13 +0100 (CET) Received: from DGGEMS405-HUB.china.huawei.com (unknown [172.30.72.59]) by szxga04-in.huawei.com (SkyGuard) with ESMTP id 4CgQXC6mQnzkXQS for ; Tue, 24 Nov 2020 21:55:39 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS405-HUB.china.huawei.com (10.3.19.205) with Microsoft SMTP Server id 14.3.487.0; Tue, 24 Nov 2020 21:55:57 +0800 From: Lijun Ou To: CC: , Date: Tue, 24 Nov 2020 21:56:17 +0800 Message-ID: <1606226177-31378-1-git-send-email-oulijun@huawei.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1606141948-42313-1-git-send-email-oulijun@huawei.com> References: <1606141948-42313-1-git-send-email-oulijun@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [PATCH v2] doc: update features for hns3 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Since the hns3 NIC hardware features are not counted and it is supported in fact. Besides, the flow director is not supported and need to delete it. Fixes: fa29fe45a7b4 ("net/hns3: support queue start and stop") Fixes: 521ab3e93361 ("net/hns3: add simple Rx path") Fixes: bba636698316 ("net/hns3: support Rx/Tx and related operations") Fixes: 936eda25e8da ("net/hns3: support dump register") Fixes: 53b9f2b9a560 ("doc: update feature list in hns3 guide") Cc: stable@dpdk.org Signed-off-by: Lijun Ou Acked-by: Ferruh Yigit --- V1->V2: - delete the wrong counter for QinQ offload - delete the SR-IOV features - add hns3_vf.ini updates --- doc/guides/nics/features/hns3.ini | 5 +++++ doc/guides/nics/features/hns3_vf.ini | 5 +++++ doc/guides/nics/hns3.rst | 3 ++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/guides/nics/features/hns3.ini b/doc/guides/nics/features/hns3.ini index fc61dde..f0747e3 100644 --- a/doc/guides/nics/features/hns3.ini +++ b/doc/guides/nics/features/hns3.ini @@ -7,6 +7,9 @@ Link status = Y Rx interrupt = Y Queue start/stop = Y +Runtime Rx queue setup = Y +Runtime Tx queue setup = Y +Burst mode info = Y MTU update = Y Jumbo frame = Y Scattered Rx = Y @@ -29,10 +32,12 @@ L3 checksum offload = Y L4 checksum offload = Y Inner L3 checksum = Y Inner L4 checksum = Y +Packet type parsing = Y Basic stats = Y Extended stats = Y Stats per queue = Y FW version = Y +Registers dump = Y Multiprocess aware = Y Linux UIO = Y Linux VFIO = Y diff --git a/doc/guides/nics/features/hns3_vf.ini b/doc/guides/nics/features/hns3_vf.ini index b7a383c..3128b63 100644 --- a/doc/guides/nics/features/hns3_vf.ini +++ b/doc/guides/nics/features/hns3_vf.ini @@ -7,6 +7,9 @@ Link status = Y Rx interrupt = Y Queue start/stop = Y +Runtime Rx queue setup = Y +Runtime Tx queue setup = Y +Burst mode info = Y MTU update = Y Jumbo frame = Y Scattered Rx = Y @@ -27,9 +30,11 @@ L3 checksum offload = Y L4 checksum offload = Y Inner L3 checksum = Y Inner L4 checksum = Y +Packet type parsing = Y Basic stats = Y Extended stats = Y Stats per queue = Y +Registers dump = Y Multiprocess aware = Y Linux UIO = Y Linux VFIO = Y diff --git a/doc/guides/nics/hns3.rst b/doc/guides/nics/hns3.rst index cc0a8e4..8db8867 100644 --- a/doc/guides/nics/hns3.rst +++ b/doc/guides/nics/hns3.rst @@ -29,13 +29,14 @@ Features of the HNS3 PMD are: - QinQ inserting - DCB - Scattered and gather for TX and RX -- Flow director +- Vector Poll mode driver - Dump register - SR-IOV VF - Multi-process - MAC/VLAN filter - MTU update - NUMA support +- Generic flow API Prerequisites -------------