From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 96CC2A05D3 for ; Tue, 21 May 2019 23:40:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D814C5689; Tue, 21 May 2019 23:40:01 +0200 (CEST) Received: from rnd-relay.smtp.broadcom.com (rnd-relay.smtp.broadcom.com [192.19.229.170]) by dpdk.org (Postfix) with ESMTP id CCE5B4C9D for ; Tue, 21 May 2019 23:39:57 +0200 (CEST) Received: from nis-sj1-27.broadcom.com (nis-sj1-27.lvn.broadcom.net [10.75.144.136]) by rnd-relay.smtp.broadcom.com (Postfix) with ESMTP id 8FF0530C0C5; Tue, 21 May 2019 14:39:55 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.10.3 rnd-relay.smtp.broadcom.com 8FF0530C0C5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1558474795; bh=tOi4dZ+mxt7jMgSdJbxO/9403TBCFSLPoS5opKNrdbw=; h=From:To:Cc:Subject:Date:From; b=rgxDInTYVq6vSfBohPi/0QdBGCwQlDUdClSqfXykSWLAPax2zjEow/qYpw1Dd0o1d 5QlWhrqAMw9XwzT0lfJ/Oe40X813kGgXes2+/Z4tWVn9I4MF7U71GsgHJOQWuoyQhM hfDE9TjHoL6GjC29qb4eNBAuIxfdqV8g1LwAcczM= Received: from C02VPB22HTD6.wifi.broadcom.net (c02vpb22htd6.wifi.broadcom.net [10.69.74.102]) by nis-sj1-27.broadcom.com (Postfix) with ESMTP id 4D00FAC072B; Tue, 21 May 2019 14:39:55 -0700 (PDT) From: Ajit Khaparde To: dev@dpdk.org Cc: ferruh.yigit@intel.com Date: Tue, 21 May 2019 14:39:42 -0700 Message-Id: <20190521213953.25425-1-ajit.khaparde@broadcom.com> X-Mailer: git-send-email 2.20.1 (Apple Git-117) MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 00/11] 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 based 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. Please apply. 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 (6): 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: fix double counting VLAN tags 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 | 22 + drivers/net/bnxt/hsi_struct_def_dpdk.h | 7573 ++++++++++++++++++++---- 13 files changed, 7214 insertions(+), 1105 deletions(-) create mode 100644 drivers/net/bnxt/bnxt_rxtx_vec_sse.c -- 2.20.1 (Apple Git-117)