All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] cxgbe: add CXGBE VF PMD and updates
@ 2018-03-10 22:48 Rahul Lakkireddy
  2018-03-10 22:48 ` [PATCH 01/13] cxgbe: add skeleton VF driver Rahul Lakkireddy
                   ` (14 more replies)
  0 siblings, 15 replies; 26+ messages in thread
From: Rahul Lakkireddy @ 2018-03-10 22:48 UTC (permalink / raw)
  To: dev; +Cc: kumaras, nirranjan, indranil

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

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2018-03-28 17:26 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-10 22:48 [PATCH 00/13] cxgbe: add CXGBE VF PMD and updates Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 01/13] cxgbe: add skeleton VF driver Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 02/13] cxgbe: add VF firmware mailbox support Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 03/13] cxgbe: add base for enabling VF ports Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 04/13] cxgbe: add probe to initialize VF devices Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 05/13] cxgbe: initialize SGE and queues for VF Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 06/13] cxgbe: enable RSS " Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 07/13] cxgbe: update TX and RX path " Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 08/13] cxgbe: add VF port statistics Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 09/13] cxgbe: add support to set mac address Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 10/13] cxgbe: fix check to close other ports properly Rahul Lakkireddy
2018-03-28 17:24   ` Ferruh Yigit
2018-03-10 22:48 ` [PATCH 11/13] cxgbe: export supported RSS hash functions Rahul Lakkireddy
2018-03-28 17:25   ` Ferruh Yigit
2018-03-10 22:48 ` [PATCH 12/13] cxgbe: convert to SPDX license tags Rahul Lakkireddy
2018-03-10 22:48 ` [PATCH 13/13] cxgbe: add option to keep outer VLAN tag in Q-in-Q Rahul Lakkireddy
2018-03-26 20:51 ` [PATCH 00/13] cxgbe: add CXGBE VF PMD and updates Ferruh Yigit
2018-03-27  7:01   ` Rahul Lakkireddy
2018-03-27 17:26     ` Ferruh Yigit
2018-03-28  7:44       ` Rahul Lakkireddy
2018-03-28  4:49     ` Shahaf Shuler
2018-03-28  7:39       ` Rahul Lakkireddy
2018-03-28  8:30         ` Shahaf Shuler
2018-03-28  9:29           ` Rahul Lakkireddy
2018-03-28 14:06             ` Ferruh Yigit
2018-03-28 17:25 ` Ferruh Yigit

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.