From patchwork Mon Jul 6 08:24:42 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Somnath Kotur X-Patchwork-Id: 73198 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 804BFA00C5; Mon, 6 Jul 2020 10:30:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5D75B1D711; Mon, 6 Jul 2020 10:30:05 +0200 (CEST) Received: from relay.smtp.broadcom.com (unknown [192.19.211.62]) by dpdk.org (Postfix) with ESMTP id A9BFA1D70F for ; Mon, 6 Jul 2020 10:30:03 +0200 (CEST) Received: from dhcp-10-123-153-55.dhcp.broadcom.net (dhcp-10-123-153-55.dhcp.broadcom.net [10.123.153.55]) by relay.smtp.broadcom.com (Postfix) with ESMTP id DB95029833B; Mon, 6 Jul 2020 01:30:01 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.10.3 relay.smtp.broadcom.com DB95029833B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1594024202; bh=oN9uVVHWBy+UMSlHBVpsPE0mcDzCxTsLFxSOtso34EY=; h=From:To:Cc:Subject:Date:From; b=YYYbO55APUYglquk40oz7+SHL57nsYDWy1p0WA8A1TnlPrVx2lRnliLc7zc+bGnd9 mO4CVV5Q09c2bldoEti4atIeFuyh36WoD7byZRylGopRNcOvFp7LnYGY1fVbMfQO13 v47yG/QLsHAFSZnmO2/3CegFFx3cCeGeHokSenxA= From: Somnath Kotur To: dev@dpdk.org Cc: ferruh.yigit@intel.com Date: Mon, 6 Jul 2020 13:54:42 +0530 Message-Id: <20200706082502.26935-1-somnath.kotur@broadcom.com> X-Mailer: git-send-email 2.10.1.613.g2cc2e70 Subject: [dpdk-dev] [PATCH 00/20] bnxt patches 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" From: Somath Kotur Added support for the following in host-based flow management * VLAN push * VLAN pop * TF-ULP support for NAT (L3/L4 rewrite based) * Enabling flow control ops on the VF rep device for full offload Jay Ding (2): net/bnxt: Updated hsi_struct_def_dpdk.h nxt/bnxt: Added HWRM support for global cfg Kishore Padmanabha (16): net/bnxt: vxlan encap and decap with src property enabled net/bnxt: add support vlan header bitmap net/bnxt: add support for negative conditional opcodes net/bnxt: add validations to dpdk port id and phy port parsing net/bnxt: add support for index opcode constant net/bnxt: cleanup and refactoring net/bnxt: add support for vlan push and vlan pop actions net/bnxt: remove vnic and vport act bits from template matching net/bnxt: fix vxlan outer ip protocol id encapsulation net/bnxt: add number of vlan tags in the computed field list net/bnxt: enable support for PF and VF port action items net/bnxt: port configuration changes to support full offload net/bnxt: add support for conditional opcodes for mapper result table net/bnxt: add support for nat rte action items net/bnxt: add support for tp src/dst rte action items net/bnxt: use VF vnic when port action is for a VF rep port Somnath Kotur (2): net/bnxt: enable flow ctrl ops for the VF-rep device net/bnxt: use byte/pkt count shift/masks from the device template drivers/net/bnxt/bnxt.h | 5 + drivers/net/bnxt/bnxt_ethdev.c | 9 +- drivers/net/bnxt/bnxt_reps.c | 3 +- drivers/net/bnxt/hsi_struct_def_dpdk.h | 1486 +++++++++++++++++++++++- drivers/net/bnxt/tf_core/tf_em_host.c | 2 +- drivers/net/bnxt/tf_core/tf_msg.c | 118 +- drivers/net/bnxt/tf_core/tf_session.c | 8 + drivers/net/bnxt/tf_ulp/bnxt_tf_common.h | 8 +- drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 17 +- drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c | 34 +- drivers/net/bnxt/tf_ulp/ulp_def_rules.c | 11 +- drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c | 27 +- drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h | 6 +- drivers/net/bnxt/tf_ulp/ulp_mapper.c | 101 +- drivers/net/bnxt/tf_ulp/ulp_mapper.h | 2 +- drivers/net/bnxt/tf_ulp/ulp_matcher.c | 10 +- drivers/net/bnxt/tf_ulp/ulp_port_db.c | 105 +- drivers/net/bnxt/tf_ulp/ulp_port_db.h | 55 + drivers/net/bnxt/tf_ulp/ulp_rte_parser.c | 739 +++++++++--- drivers/net/bnxt/tf_ulp/ulp_rte_parser.h | 52 +- drivers/net/bnxt/tf_ulp/ulp_template_db_act.c | 6 +- drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h | 179 +-- drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c | 44 +- drivers/net/bnxt/tf_ulp/ulp_template_struct.h | 9 +- 24 files changed, 2680 insertions(+), 356 deletions(-)