netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/23] bnxt_en: Add support for new 57500 chips.
@ 2018-10-14 11:02 Michael Chan
  2018-10-14 11:02 ` [PATCH net-next 01/23] bnxt_en: Update firmware interface spec. to 1.10.0.3 Michael Chan
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: Michael Chan @ 2018-10-14 11:02 UTC (permalink / raw)
  To: davem; +Cc: netdev

This patch-set is larger than normal because I wanted a complete series
to add basic support for the new 57500 chips.  The new chips have the
following main differences compared to legacy chips:

1. Requires the PF driver to allocate DMA context memory as a backing
store.
2. New NQ (notification queue) for interrupt events.
3. One or more CP rings can be associated with an NQ.
4. 64-bit doorbells.

Most other structures and firmware APIs are compatible with legacy
devices with some exceptions.  For example, ring groups are no longer
used and RSS table format has changed.

The patch-set includes the usual firmware spec. update, some refactoring
and restructuring, and adding the new code to add basic support for the
new class of devices.

Michael Chan (23):
  bnxt_en: Update firmware interface spec. to 1.10.0.3.
  bnxt_en: Add additional extended port statistics.
  bnxt_en: Add maximum extended request length fw message support.
  bnxt_en: Update interrupt coalescing logic.
  bnxt_en: Refactor bnxt_ring_struct.
  bnxt_en: Add new flags to setup new page table PTE bits on newer
    devices.
  bnxt_en: Check context memory requirements from firmware.
  bnxt_en: Configure context memory on new devices.
  bnxt_en: Add 57500 new chip ID and basic structures.
  bnxt_en: Re-structure doorbells.
  bnxt_en: Adjust MSIX and ring groups for 57500 series chips.
  bnxt_en: Modify the ring reservation functions for 57500 series chips.
  bnxt_en: Allocate completion ring structures for 57500 series chips.
  bnxt_en: Add helper functions to get firmware CP ring ID.
  bnxt_en: Modify bnxt_ring_alloc_send_msg() to support 57500 chips.
  bnxt_en: Allocate/Free CP rings for 57500 series chips.
  bnxt_en: Increase RSS context array count and skip ring groups on
    57500 chips.
  bnxt_en: Add RSS support for 57500 chips.
  bnxt_en: Use bnxt_cp_ring_info struct pointer as parameter for RX
    path.
  bnxt_en: Add coalescing setup for 57500 chips.
  bnxt_en: Refactor bnxt_poll_work().
  bnxt_en: Add new NAPI poll function for 57500 chips.
  bnxt_en: Add PCI ID for BCM57508 device.

 drivers/net/ethernet/broadcom/bnxt/bnxt.c         | 1671 +++++++++++++++++----
 drivers/net/ethernet/broadcom/bnxt/bnxt.h         |  250 ++-
 drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c |  112 +-
 drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h     |  310 ++--
 drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c     |    2 +-
 5 files changed, 1944 insertions(+), 401 deletions(-)

-- 
2.5.1

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

end of thread, other threads:[~2018-10-16 13:36 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-14 11:02 [PATCH net-next 00/23] bnxt_en: Add support for new 57500 chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 01/23] bnxt_en: Update firmware interface spec. to 1.10.0.3 Michael Chan
2018-10-14 11:02 ` [PATCH net-next 02/23] bnxt_en: Add additional extended port statistics Michael Chan
2018-10-14 11:02 ` [PATCH net-next 03/23] bnxt_en: Add maximum extended request length fw message support Michael Chan
2018-10-14 11:02 ` [PATCH net-next 04/23] bnxt_en: Update interrupt coalescing logic Michael Chan
2018-10-14 11:02 ` [PATCH net-next 05/23] bnxt_en: Refactor bnxt_ring_struct Michael Chan
2018-10-14 11:02 ` [PATCH net-next 06/23] bnxt_en: Add new flags to setup new page table PTE bits on newer devices Michael Chan
2018-10-14 11:02 ` [PATCH net-next 07/23] bnxt_en: Check context memory requirements from firmware Michael Chan
2018-10-14 11:02 ` [PATCH net-next 08/23] bnxt_en: Configure context memory on new devices Michael Chan
2018-10-14 11:02 ` [PATCH net-next 09/23] bnxt_en: Add 57500 new chip ID and basic structures Michael Chan
2018-10-14 11:02 ` [PATCH net-next 10/23] bnxt_en: Re-structure doorbells Michael Chan
2018-10-14 11:02 ` [PATCH net-next 11/23] bnxt_en: Adjust MSIX and ring groups for 57500 series chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 12/23] bnxt_en: Modify the ring reservation functions " Michael Chan
2018-10-14 11:02 ` [PATCH net-next 13/23] bnxt_en: Allocate completion ring structures " Michael Chan
2018-10-14 11:02 ` [PATCH net-next 14/23] bnxt_en: Add helper functions to get firmware CP ring ID Michael Chan
2018-10-14 11:02 ` [PATCH net-next 15/23] bnxt_en: Modify bnxt_ring_alloc_send_msg() to support 57500 chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 16/23] bnxt_en: Allocate/Free CP rings for 57500 series chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 17/23] bnxt_en: Increase RSS context array count and skip ring groups on 57500 chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 18/23] bnxt_en: Add RSS support for " Michael Chan
2018-10-14 11:02 ` [PATCH net-next 19/23] bnxt_en: Use bnxt_cp_ring_info struct pointer as parameter for RX path Michael Chan
2018-10-14 11:02 ` [PATCH net-next 20/23] bnxt_en: Add coalescing setup for 57500 chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 21/23] bnxt_en: Refactor bnxt_poll_work() Michael Chan
2018-10-14 11:02 ` [PATCH net-next 22/23] bnxt_en: Add new NAPI poll function for 57500 chips Michael Chan
2018-10-14 11:02 ` [PATCH net-next 23/23] bnxt_en: Add PCI ID for BCM57508 device Michael Chan
2018-10-16  5:47 ` [PATCH net-next 00/23] bnxt_en: Add support for new 57500 chips David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).