From patchwork Fri May 24 14:49:25 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lance Richardson X-Patchwork-Id: 53680 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6D3F11C0B; Fri, 24 May 2019 16:50:04 +0200 (CEST) Received: from mail-pf1-f177.google.com (mail-pf1-f177.google.com [209.85.210.177]) by dpdk.org (Postfix) with ESMTP id 233D814EC for ; Fri, 24 May 2019 16:50:03 +0200 (CEST) Received: by mail-pf1-f177.google.com with SMTP id z26so5473097pfg.6 for ; Fri, 24 May 2019 07:50:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=tICWme/wi2eVEEfniXMeHSEDe3vYQmk8iOBgMg4+C3I=; b=h24FnkqRS0v6RPqw2zdrUSAih5yuMKTUIzDDK1N1ou9rRBGIrTrZbAdiIjIn3ktEe1 BRZDu9Vcbxr2xx7LVUWbGioSB2WFE4FaG60IzJy9V7UrP6McVvUnGLJ9b9DLRRuLHa0V 3IZl9/5sXvt1UBPKd8QoaW3EvgwLqX3PtpWp4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=tICWme/wi2eVEEfniXMeHSEDe3vYQmk8iOBgMg4+C3I=; b=s54/+SLtTBl6RWz3mvw1ELUeiNbWmAKdM6Ufr685VvMxHWfEp2LMYZ9g+z6e3CnHww pqoty8BxaemNH7iNUQWo/g0GLLUy5TNQ9AZzNGEmBwNITgHe4wVBe3CI7+vWyNRavvFZ 4FlQB7kfwc3bsz+tsf5JbuiEI2+t+/gnsyp07dU8oxmxypGP5Ytnn7ug9ognWdQIQTM2 90xlIulVxlSrjepVkAQYa4r7C9WTvn1OWbl26oxO+xiU8sEzyFvpBYtRv3PHdVZn/KJy 8jg+bTGJyEE+/q3KHjlOO31kdeFqygtUcKykpqVj10Dmx5owWSe/Nzb2LvJCmhxN2t5e xbQw== X-Gm-Message-State: APjAAAXT7jS9yaE64p7wCNKmWuze8kUAjcdbJ6BzlxdLU+RQBA/V0tuK QgPzzzWwQ4Bv4EbxYZo0L6ZdMO+0QRCAxhINctujaG02B5Fww6BZZ+QTqbICIGtUoZeoNpicunM snq2qa+G+LyJq99Vwo7Bfw4J71Y//QQZwYdMNTdnlNmjjIHbFsbFX8/5V3I654Oh+ X-Google-Smtp-Source: APXvYqxw8s8+7hMFDUBY/Ny8GgDK7/6/54ysGYXjLVgYYL3QxD/40t1eVPgaMFGsR6BQOneV81gH8w== X-Received: by 2002:a17:90a:8586:: with SMTP id m6mr9964296pjn.129.1558709401965; Fri, 24 May 2019 07:50:01 -0700 (PDT) Received: from localhost.localdomain ([192.19.231.250]) by smtp.gmail.com with ESMTPSA id x23sm2723705pfn.160.2019.05.24.07.50.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 24 May 2019 07:50:01 -0700 (PDT) From: Lance Richardson To: dev@dpdk.org Cc: ajit.khaparde@broadcom.com, ferruh.yigit@intel.com, maxime.coquelin@redhat.com, Lance Richardson Date: Fri, 24 May 2019 10:49:25 -0400 Message-Id: <20190524144935.18765-1-lance.richardson@broadcom.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190521213953.25425-1-ajit.khaparde@broadcom.com> References: <20190521213953.25425-1-ajit.khaparde@broadcom.com> Subject: [dpdk-dev] [PATCH v2 00/10] bnxt patchset 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" This patchset bsae on top of the previous submission adds the following: 1) Support for vector mode TX and RX. 2) HWRM API update (split into multiple patches). 3) Fixes for RSS reta update and query. It also updates the release notes. v2: * Squashed patches 3 and 4 from v1 patchset. * Added Meson build support for vector mode PMD. * Dropped two unnecessary code style changes from patch 3. Ajit Khaparde (5): net/bnxt: fix RSS reta indirection table update net/bnxt: update HWRM API net/bnxt: update HWRM version net/bnxt: HWRM version update net/bnxt: update release notes for bnxt Lance Richardson (5): net/bnxt: move tx bd checking to header file net/bnxt: compute and store scattered RX status net/bnxt: implement vector mode driver net/bnxt: use reta update mask and translate qid to grp id net/bnxt: fix reta query op config/common_base | 1 + doc/guides/rel_notes/release_19_08.rst | 6 + drivers/net/bnxt/Makefile | 1 + drivers/net/bnxt/bnxt_ethdev.c | 198 +- drivers/net/bnxt/bnxt_hwrm.c | 1 + drivers/net/bnxt/bnxt_ring.h | 3 +- drivers/net/bnxt/bnxt_rxq.c | 5 + drivers/net/bnxt/bnxt_rxq.h | 4 + drivers/net/bnxt/bnxt_rxr.h | 9 +- drivers/net/bnxt/bnxt_rxtx_vec_sse.c | 481 ++ drivers/net/bnxt/bnxt_txr.c | 15 - drivers/net/bnxt/bnxt_txr.h | 20 + drivers/net/bnxt/hsi_struct_def_dpdk.h | 7573 ++++++++++++++++++++---- drivers/net/bnxt/meson.build | 5 + 14 files changed, 7217 insertions(+), 1105 deletions(-) create mode 100644 drivers/net/bnxt/bnxt_rxtx_vec_sse.c