From patchwork Fri Oct 9 11:11:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Somnath Kotur X-Patchwork-Id: 80132 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 BDC03A04BC; Fri, 9 Oct 2020 13:18:50 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E5AFA1D407; Fri, 9 Oct 2020 13:18:48 +0200 (CEST) Received: from relay.smtp-ext.broadcom.com (saphodev.broadcom.com [192.19.232.172]) by dpdk.org (Postfix) with ESMTP id 0419C1BFFC for ; Fri, 9 Oct 2020 13:18:46 +0200 (CEST) Received: from dhcp-10-123-153-55.dhcp.broadcom.net (bgccx-dev-host-lnx35.bec.broadcom.net [10.123.153.55]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by relay.smtp-ext.broadcom.com (Postfix) with ESMTPS id D31D38281; Fri, 9 Oct 2020 04:18:42 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 relay.smtp-ext.broadcom.com D31D38281 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1602242323; bh=72YmGUA5QToQYSFGCVIV7cfbGKzGURYxaRslTxZFU04=; h=From:To:Cc:Subject:Date:From; b=UniqWgTm2JOAttuyZTrb57yDO9JLUMDzgz6lWI+CsaJsqSPPRtuD7GjmY95iwFXkA BHJoGV3eq9TJFRPMYzEAMf95UX7WT2d92JitFAptcpLAgH7ZEvS2EkmWtY8StOxuH9 enjoaloGcgewo7B57jVSY9TSUF8yfpk0rU3s8Ack= From: Somnath Kotur To: dev@dpdk.org Cc: ferruh.yigit@intel.com, Somnath Kotur Date: Fri, 9 Oct 2020 16:41:17 +0530 Message-Id: <20201009111130.10422-1-somnath.kotur@broadcom.com> X-Mailer: git-send-email 2.28.0.450.g3a238e5 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 00/13] 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" Fixes and enchancements in the bnxt PMD, mostly in the TRUFLOW layer, including templates support for another chip Kishore Padmanabha (4): net/bnxt: fix the corruption of the session details net/bnxt: combine default and regular flows in flow database net/bnxt: add support for parent child flow database net/bnxt: add support for parent child flow create and free Mike Baucom (6): net/bnxt: add multi-device infrastucture net/bnxt: add Stingray support to ULP net/bnxt: consolidate template table processing net/bnxt: runtime external vs internal em support net/bnxt: consolidate template table processing net/bnxt: remove flow db table type from templates Venkat Duvvuru (3): net/bnxt: fixes for PMD PF support in SR-IOV mode net/bnxt: register PF for default vnic change async event net/bnxt: remove parent fid validation in vnic change event processing drivers/net/bnxt/bnxt.h | 6 +- drivers/net/bnxt/bnxt_cpr.c | 13 +- drivers/net/bnxt/bnxt_ethdev.c | 40 +- drivers/net/bnxt/bnxt_hwrm.c | 460 +- drivers/net/bnxt/bnxt_hwrm.h | 12 +- drivers/net/bnxt/meson.build | 4 + drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 387 +- drivers/net/bnxt/tf_ulp/bnxt_ulp.h | 11 + drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c | 5 +- drivers/net/bnxt/tf_ulp/ulp_def_rules.c | 5 +- drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c | 2 +- drivers/net/bnxt/tf_ulp/ulp_flow_db.c | 892 +- drivers/net/bnxt/tf_ulp/ulp_flow_db.h | 179 +- drivers/net/bnxt/tf_ulp/ulp_mapper.c | 520 +- drivers/net/bnxt/tf_ulp/ulp_mapper.h | 22 +- drivers/net/bnxt/tf_ulp/ulp_template_db_act.c | 1810 -- drivers/net/bnxt/tf_ulp/ulp_template_db_class.c | 16271 ---------------- drivers/net/bnxt/tf_ulp/ulp_template_db_enum.h | 18 +- .../net/bnxt/tf_ulp/ulp_template_db_stingray_act.c | 3305 ++++ .../bnxt/tf_ulp/ulp_template_db_stingray_class.c | 19005 +++++++++++++++++++ drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.c | 59 +- drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.h | 48 + .../net/bnxt/tf_ulp/ulp_template_db_wh_plus_act.c | 3304 ++++ .../bnxt/tf_ulp/ulp_template_db_wh_plus_class.c | 19005 +++++++++++++++++++ drivers/net/bnxt/tf_ulp/ulp_template_struct.h | 64 +- drivers/net/bnxt/tf_ulp/ulp_utils.h | 4 + 26 files changed, 46484 insertions(+), 18967 deletions(-) create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_stingray_act.c create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_stingray_class.c create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_tbl.h create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_wh_plus_act.c create mode 100644 drivers/net/bnxt/tf_ulp/ulp_template_db_wh_plus_class.c