netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 net-next 00/15] sfc: prerequisites for EF100 driver, part 1
@ 2020-06-29 13:30 Edward Cree
  2020-06-29 13:32 ` [PATCH v2 net-next 01/15] sfc: update MCDI protocol headers Edward Cree
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Edward Cree @ 2020-06-29 13:30 UTC (permalink / raw)
  To: linux-net-drivers, davem; +Cc: netdev

This continues the work started by Alex Maftei <amaftei@solarflare.com>
 in the series "sfc: code refactoring", "sfc: more code refactoring",
 "sfc: even more code refactoring" and "sfc: refactor mcdi filtering
 code", to prepare for a new driver which will share much of the code
 to support the new EF100 family of Solarflare/Xilinx NICs.
After this series, there will be approximately two more of these
 'prerequisites' series, followed by the sfc_ef100 driver itself.

v2: fix reverse xmas tree in patch 5.  (Left the cases in patches 7,
 9 and 14 alone as those are all in pure movement of existing code.)

Edward Cree (15):
  sfc: update MCDI protocol headers
  sfc: determine flag word automatically in efx_has_cap()
  sfc: extend bitfield macros up to POPULATE_DWORD_13
  sfc: don't try to create more channels than we can have VIs
  sfc: refactor EF10 stats handling
  sfc: split up nic.h
  sfc: commonise ethtool link handling functions
  sfc: commonise ethtool NFC and RXFH/RSS functions
  sfc: commonise other ethtool bits
  sfc: commonise FC advertising
  sfc: track which BAR is mapped
  sfc: commonise PCI error handlers
  sfc: commonise drain event handling
  sfc: commonise ARFS handling
  sfc: extend common GRO interface to support CHECKSUM_COMPLETE

 drivers/net/ethernet/sfc/bitfield.h       |   34 +-
 drivers/net/ethernet/sfc/ef10.c           |  100 +-
 drivers/net/ethernet/sfc/efx.c            |  119 +-
 drivers/net/ethernet/sfc/efx.h            |    8 -
 drivers/net/ethernet/sfc/efx_channels.c   |    7 +
 drivers/net/ethernet/sfc/efx_common.c     |  134 +-
 drivers/net/ethernet/sfc/efx_common.h     |    6 +-
 drivers/net/ethernet/sfc/ethtool.c        |  913 ---
 drivers/net/ethernet/sfc/ethtool_common.c |  911 +++
 drivers/net/ethernet/sfc/ethtool_common.h |   36 +-
 drivers/net/ethernet/sfc/mcdi.c           |   10 +-
 drivers/net/ethernet/sfc/mcdi.h           |    5 +-
 drivers/net/ethernet/sfc/mcdi_filters.c   |    8 +-
 drivers/net/ethernet/sfc/mcdi_pcol.h      | 6933 ++++++++++++++++++++-
 drivers/net/ethernet/sfc/net_driver.h     |    4 +
 drivers/net/ethernet/sfc/nic.c            |   45 +
 drivers/net/ethernet/sfc/nic.h            |  298 +-
 drivers/net/ethernet/sfc/nic_common.h     |  273 +
 drivers/net/ethernet/sfc/ptp.c            |    5 +-
 drivers/net/ethernet/sfc/ptp.h            |   45 +
 drivers/net/ethernet/sfc/rx.c             |  236 +-
 drivers/net/ethernet/sfc/rx_common.c      |  245 +-
 drivers/net/ethernet/sfc/rx_common.h      |    6 +-
 drivers/net/ethernet/sfc/siena.c          |    1 +
 24 files changed, 8671 insertions(+), 1711 deletions(-)
 create mode 100644 drivers/net/ethernet/sfc/nic_common.h
 create mode 100644 drivers/net/ethernet/sfc/ptp.h


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

end of thread, other threads:[~2020-06-30  0:38 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-29 13:30 [PATCH v2 net-next 00/15] sfc: prerequisites for EF100 driver, part 1 Edward Cree
2020-06-29 13:32 ` [PATCH v2 net-next 01/15] sfc: update MCDI protocol headers Edward Cree
2020-06-29 13:32 ` [PATCH v2 net-next 02/15] sfc: determine flag word automatically in efx_has_cap() Edward Cree
2020-06-29 13:33 ` [PATCH v2 net-next 03/15] sfc: extend bitfield macros up to POPULATE_DWORD_13 Edward Cree
2020-06-29 13:33 ` [PATCH v2 net-next 04/15] sfc: don't try to create more channels than we can have VIs Edward Cree
2020-06-29 13:34 ` [PATCH v2 net-next 05/15] sfc: refactor EF10 stats handling Edward Cree
2020-06-29 13:34 ` [PATCH v2 net-next 06/15] sfc: split up nic.h Edward Cree
2020-06-29 13:34 ` [PATCH v2 net-next 07/15] sfc: commonise ethtool link handling functions Edward Cree
2020-06-29 13:35 ` [PATCH v2 net-next 08/15] sfc: commonise ethtool NFC and RXFH/RSS functions Edward Cree
2020-06-29 13:35 ` [PATCH v2 net-next 09/15] sfc: commonise other ethtool bits Edward Cree
2020-06-29 13:35 ` [PATCH v2 net-next 10/15] sfc: commonise FC advertising Edward Cree
2020-06-29 13:35 ` [PATCH v2 net-next 11/15] sfc: track which BAR is mapped Edward Cree
2020-06-29 13:35 ` [PATCH v2 net-next 12/15] sfc: commonise PCI error handlers Edward Cree
2020-06-29 13:36 ` [PATCH v2 net-next 14/15] sfc: commonise ARFS handling Edward Cree
2020-06-29 13:36 ` [PATCH v2 net-next 15/15] sfc: extend common GRO interface to support CHECKSUM_COMPLETE Edward Cree
2020-06-29 13:39 ` [PATCH v2 net-next 13/15] sfc: commonise drain event handling Edward Cree
2020-06-30  0:30 ` [PATCH v2 net-next 00/15] sfc: prerequisites for EF100 driver, part 1 Jakub Kicinski
2020-06-30  0:38   ` 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).