From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rahul Lakkireddy Subject: [PATCH 00/13] cxgbe: add CXGBE VF PMD and updates Date: Sun, 11 Mar 2018 04:18:18 +0530 Message-ID: Cc: kumaras@chelsio.com, nirranjan@chelsio.com, indranil@chelsio.com To: dev@dpdk.org Return-path: Received: from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8]) by dpdk.org (Postfix) with ESMTP id ADE9B728E for ; Sat, 10 Mar 2018 23:49:22 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Patches 1 - 9 add support for cxgbe VF driver. Patches 10 - 12 fix bugs and convert license in cxgbe files to SPDX License Tag. Patch 13 adds compile time option to keep outer vlan tag in Q-in-Q packet. Patch 1 adds minimal cxgbe VF driver. Patch 2 adds firmware mailbox support for VF. Patch 3 adds base functions to enable VF ports in subsequent patches. Patch 4 adds cxgbe VF probe to initialize VF devices. Patch 5 initializes SGE and queues for VF. Patch 6 enables RSS for VF. Patch 7 updates TX and RX path for VF. Patch 8 adds support for VF port statistics. Patch 9 adds support to set mac address. Patch 10 fixes bug where the other ports under same PF are not closed properly. Patch 11 exports RSS hash functions in device info and adds check to prevent configuring unsupported hash functions. Patch 12 converts all cxgbe files to use SPDX license tag. Patch 13 adds compile time option to keep outer vlan tag in Q-in-Q packet. Thanks, Rahul Kumar Sanghvi (10): cxgbe: add skeleton VF driver cxgbe: add VF firmware mailbox support cxgbe: add base for enabling VF ports cxgbe: add probe to initialize VF devices cxgbe: initialize SGE and queues for VF cxgbe: enable RSS for VF cxgbe: update TX and RX path for VF cxgbe: add VF port statistics cxgbe: add support to set mac address cxgbe: add option to keep outer VLAN tag in Q-in-Q Rahul Lakkireddy (3): cxgbe: fix check to close other ports properly cxgbe: export supported RSS hash functions cxgbe: convert to SPDX license tags config/common_base | 1 + doc/guides/nics/cxgbe.rst | 36 +- doc/guides/nics/features/cxgbevf.ini | 28 + doc/guides/rel_notes/release_18_05.rst | 5 + drivers/net/cxgbe/Makefile | 36 +- drivers/net/cxgbe/base/adapter.h | 42 +- drivers/net/cxgbe/base/common.h | 111 ++-- drivers/net/cxgbe/base/t4_chip_type.h | 34 +- drivers/net/cxgbe/base/t4_hw.c | 117 +++-- drivers/net/cxgbe/base/t4_hw.h | 34 +- drivers/net/cxgbe/base/t4_msg.h | 34 +- drivers/net/cxgbe/base/t4_pci_id_tbl.h | 34 +- drivers/net/cxgbe/base/t4_regs.h | 116 +++-- drivers/net/cxgbe/base/t4_regs_values.h | 34 +- drivers/net/cxgbe/base/t4fw_interface.h | 229 +++++++-- drivers/net/cxgbe/base/t4vf_hw.c | 874 ++++++++++++++++++++++++++++++++ drivers/net/cxgbe/base/t4vf_hw.h | 15 + drivers/net/cxgbe/cxgbe.h | 44 +- drivers/net/cxgbe/cxgbe_compat.h | 34 +- drivers/net/cxgbe/cxgbe_ethdev.c | 143 +++--- drivers/net/cxgbe/cxgbe_main.c | 118 +++-- drivers/net/cxgbe/cxgbe_pfvf.h | 43 ++ drivers/net/cxgbe/cxgbevf_ethdev.c | 197 +++++++ drivers/net/cxgbe/cxgbevf_main.c | 306 +++++++++++ drivers/net/cxgbe/sge.c | 415 ++++++++++++--- 25 files changed, 2417 insertions(+), 663 deletions(-) create mode 100644 doc/guides/nics/features/cxgbevf.ini create mode 100644 drivers/net/cxgbe/base/t4vf_hw.c create mode 100644 drivers/net/cxgbe/base/t4vf_hw.h create mode 100644 drivers/net/cxgbe/cxgbe_pfvf.h create mode 100644 drivers/net/cxgbe/cxgbevf_ethdev.c create mode 100644 drivers/net/cxgbe/cxgbevf_main.c -- 2.14.1