From patchwork Thu Jun 1 11:42:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denis Pryazhennikov X-Patchwork-Id: 127831 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0A10742C02; Thu, 1 Jun 2023 13:42:25 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D0CB740EF0; Thu, 1 Jun 2023 13:42:24 +0200 (CEST) Received: from agw.arknetworks.am (agw.arknetworks.am [79.141.165.80]) by mails.dpdk.org (Postfix) with ESMTP id E53CF40DDC for ; Thu, 1 Jun 2023 13:42:22 +0200 (CEST) Received: from localhost.localdomain (unknown [37.252.90.53]) (using TLSv1.3 with cipher TLS_CHACHA20_POLY1305_SHA256 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA512) (No client certificate requested) by agw.arknetworks.am (Postfix) with ESMTPSA id 408ABE0455; Thu, 1 Jun 2023 15:42:22 +0400 (+04) From: Denis Pryazhennikov To: dev@dpdk.org Cc: Viacheslav Galaktionov , Ferruh Yigit , Andrew Rybchenko Subject: [PATCH 0/4] net/sfc: support KEEP_CRC offload Date: Thu, 1 Jun 2023 15:42:16 +0400 Message-Id: <20230601114220.17796-1-denis.pryazhennikov@arknetworks.am> X-Mailer: git-send-email 2.37.0 (Apple Git-136) MIME-Version: 1.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 This patch series adds support for RTE_ETH_RX_OFFLOAD_KEEP_CRC offload in the SFC driver. Denis Pryazhennikov (3): common/sfc_efx/base: detect and report FCS include support common/sfc_efx/base: add support for configure MAC to keep FCS net/sfc: add configurable Rx CRC stripping Sandilya Bhagi (1): common/sfc_efx/base: NIC Partitioning mode discovery using heuristic approach doc/guides/nics/features/sfc.ini | 1 + doc/guides/nics/sfc_efx.rst | 6 +- drivers/common/sfc_efx/base/ef10_mac.c | 5 +- drivers/common/sfc_efx/base/ef10_nic.c | 115 ++++++++++++++++++++++++ drivers/common/sfc_efx/base/efx.h | 14 +++ drivers/common/sfc_efx/base/efx_impl.h | 1 + drivers/common/sfc_efx/base/efx_mac.c | 48 ++++++++++ drivers/common/sfc_efx/base/siena_nic.c | 1 + drivers/common/sfc_efx/version.map | 1 + drivers/net/sfc/sfc.h | 1 + drivers/net/sfc/sfc_ef10_rx.c | 3 +- drivers/net/sfc/sfc_port.c | 12 +++ drivers/net/sfc/sfc_rx.c | 6 +- 13 files changed, 208 insertions(+), 6 deletions(-)