From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 53EF142F9A; Tue, 1 Aug 2023 09:21:49 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F63B43253; Tue, 1 Aug 2023 09:21:49 +0200 (CEST) Received: from smtpbguseast3.qq.com (smtpbguseast3.qq.com [54.243.244.52]) by mails.dpdk.org (Postfix) with ESMTP id 57F68400D5 for ; Tue, 1 Aug 2023 09:21:47 +0200 (CEST) X-QQ-mid: bizesmtp74t1690874501tbi9ofje Received: from steven.localdomain ( [183.81.182.182]) by bizesmtp.qq.com (ESMTP) with id ; Tue, 01 Aug 2023 15:21:39 +0800 (CST) X-QQ-SSF: 01400000000000C0E000000A0000000 X-QQ-FEAT: dKvkn8qoLrFvmGfIkyFDDTgsTb8t1O3TM7xm8XSpYsLpS0XmWTZZimI/dG1xH 1YHtqlal96rf0yOleyZPduC404NCMnwAd2vcQu+X8awdH4sYlH6bv/9Efj53C2f7umf+7Lv 1AZkgq8ytqfuxzoAKpM893GzzvlhIx0WCs1vMNgdns/I5QUkJqK/FrSFBFPBSyGFZimUuhR W1tYyCjgEYUksVEMucN/kCAwiJMTqNiH7ge0kfQW5xKT8kqTdh2/jWGFrdzNX2HFMsMIjaZ rAzhQylcSkgAsQhwjGPEkBj/+BQwp69ublid0dzINWDcHZPCtzmdK1J2S2Kl0hQqg+ja73M dZKZ6WPT/S+j8vh9ffvhYwXffLnaa5ci4fgwvrHQlx0H5mlxUq2qbdeUeygiXumQq2iqOQA uAHju4lQTfU= X-QQ-GoodBg: 2 X-BIZMAIL-ID: 6719442899517157859 From: Wenbo Cao To: Thomas Monjalon , caowenbo@mucse.com Cc: dev@dpdk.org Subject: [[PATCH v1] 1/8] net/rnp: add skeleton Date: Tue, 1 Aug 2023 07:21:38 +0000 Message-Id: <20230801072138.836374-1-caowenbo@mucse.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:mucse.com:qybglogicsvrgz:qybglogicsvrgz5a-0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add Basic PMD library and doc build infrastructure Update maintainers file to claim responsibility. Signed-off-by: Wenbo Cao --- MAINTAINERS | 6 +++++ doc/guides/nics/features/rnp.ini | 8 ++++++ doc/guides/nics/index.rst | 1 + doc/guides/nics/rnp.rst | 43 ++++++++++++++++++++++++++++++++ drivers/net/meson.build | 1 + drivers/net/rnp/meson.build | 12 +++++++++ drivers/net/rnp/rnp_ethdev.c | 3 +++ 7 files changed, 74 insertions(+) create mode 100644 doc/guides/nics/features/rnp.ini create mode 100644 doc/guides/nics/rnp.rst create mode 100644 drivers/net/rnp/meson.build create mode 100644 drivers/net/rnp/rnp_ethdev.c diff --git a/MAINTAINERS b/MAINTAINERS index a5219926ab..36f4867cf8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -955,6 +955,12 @@ F: drivers/net/qede/ F: doc/guides/nics/qede.rst F: doc/guides/nics/features/qede*.ini +Mucse rnp +M: caowenbo@mucse.com +F: drivers/net/rnp +F: doc/guides/nics/rnp.rst +F: doc/guides/nics/features/rnp.ini + Solarflare sfc_efx M: Andrew Rybchenko F: drivers/common/sfc_efx/ diff --git a/doc/guides/nics/features/rnp.ini b/doc/guides/nics/features/rnp.ini new file mode 100644 index 0000000000..2ad04ee330 --- /dev/null +++ b/doc/guides/nics/features/rnp.ini @@ -0,0 +1,8 @@ +; +; Supported features of the 'rnp' network poll mode driver. +; +; Refer to default.ini for the full list of available PMD features. +; +[Features] +Linux = Y +x86-64 = Y diff --git a/doc/guides/nics/index.rst b/doc/guides/nics/index.rst index 5c9d1edf5e..cc89d3154a 100644 --- a/doc/guides/nics/index.rst +++ b/doc/guides/nics/index.rst @@ -61,6 +61,7 @@ Network Interface Controller Drivers pcap_ring pfe qede + rnp sfc_efx softnic tap diff --git a/doc/guides/nics/rnp.rst b/doc/guides/nics/rnp.rst new file mode 100644 index 0000000000..8785972fd9 --- /dev/null +++ b/doc/guides/nics/rnp.rst @@ -0,0 +1,43 @@ +.. SPDX-License-Identifier: BSD-3-Clause + Copyright(c) 2023 Mucse IC Design Ltd. + +RNP Poll Mode driver +========================== + +The RNP ETHDEV PMD (**librte_net_rnp**) provides poll mode ethdev +driver support for the inbuilt network device found in the **Mucse RNP** + +Prerequisites +------------- +More information can be found at `Mucse, Official Website +`_. + +Supported RNP SoCs +------------------------ + +- N10 + +Driver compilation and testing +------------------------------ + +Refer to the document :ref:`compiling and testing a PMD for a NIC ` +for details. + +#. Running testpmd: + + Follow instructions available in the document + :ref:`compiling and testing a PMD for a NIC ` + to run testpmd. + +Limitations or Known issues +----------- +Build with ICC is not supported yet. +CRC stripping +~~~~~~~~~~~~ +The RNP SoC family NICs strip the CRC for every packets coming into the +host interface irrespective of the offload configuration. +When You Want To Disable CRC_OFFLOAD The Feature Will Influence The RxCksum Offload +VLAN Strip +~~~~~~~~~~~~~~~~~~ +For VLAN Strip RNP Just Support CVLAN(0x8100) Type If The Vlan Type Is SVLAN(0X88a8) +VLAN Filter Or Strip Will Not Effert For This Packet It Will Bypass To The Host. diff --git a/drivers/net/meson.build b/drivers/net/meson.build index b1df17ce8c..8bdbf05857 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -56,6 +56,7 @@ drivers = [ 'ring', 'sfc', 'softnic', + 'rnp', 'tap', 'thunderx', 'txgbe', diff --git a/drivers/net/rnp/meson.build b/drivers/net/rnp/meson.build new file mode 100644 index 0000000000..0c38d39347 --- /dev/null +++ b/drivers/net/rnp/meson.build @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(C) 2023 Mucse IC Design Ltd. +# +if is_windows + build = false + reason = 'not supported on Windows' + subdir_done() +endif + +sources = files( + 'rnp_ethdev.c', +) diff --git a/drivers/net/rnp/rnp_ethdev.c b/drivers/net/rnp/rnp_ethdev.c new file mode 100644 index 0000000000..9ce3c0b497 --- /dev/null +++ b/drivers/net/rnp/rnp_ethdev.c @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(C) 2023 Mucse IC Design Ltd. + */ -- 2.27.0