[v1,00/22] Update IXGBE base driver

Message ID cover.1713964707.git.anatoly.burakov@intel.com (mailing list archive)
Headers
Series Update IXGBE base driver |

Message

Anatoly Burakov April 24, 2024, 1:21 p.m. UTC
  This patchset updates IXGBE base driver to latest shared code snapshot,
fixing a few issues as well as adding support for new hardware.

Barbara Skobiej (3):
  net/ixgbe/base: remove circular header dependency
  net/ixgbe/base: add missing QV defines
  net/ixgbe/base: improve SWFW semaphore acquisition

Chinh T Cao (1):
  net/ixgbe/base: remove prototypes of unimplemented functions

Dawid Zielinski (1):
  net/ixgbe/base: prevent untrusted loop bound

Jakub Chylkowski (3):
  net/ixgbe/base: rename message type macros
  net/ixgbe/base: correct registers names to match datasheet
  net/ixgbe/base: introduce new mailbox API

Krzysztof Galazka (1):
  net/ixgbe/base: filter out spurious link up indication

Marcin Jurczak (1):
  net/ixgbe/base: remove non-inclusive language

Mical MarekX (1):
  net/ixgbe/base: replace HIC with direct register access

Milosz Szymonek (1):
  net/ixgbe/base: add IXGBE_ADVTXD_MACLEN_MASK macro

Piotr Pietruszewski (1):
  net/ixgbe/base: revert remove default advertising for x550 2.5G/5G

Piotr Skajewski (2):
  net/ixgbe/base: fix wrong 5G link speed reported on VF
  net/ixgbe/base: handle -Wimplicit-fallthrough

Radoslaw Tyl (4):
  net/ixgbe/base: fix PHY ID for X550
  net/ixgbe/base: increase DCB BW calculation for MTU from 4088 to 9128
  net/ixgbe/base: improve function comments
  net/ixgbe/base: add fw_rst_cnt field to ixgbe_hw struct

Slawomir Mrozowicz (2):
  net/ixgbe/base: fix crash while loading driver
  net/ixgbe/base: added link state handling

Stefan Wegrzyn (1):
  net/ixgbe/base: add support for E610 device

 drivers/net/ixgbe/base/README            |    6 +-
 drivers/net/ixgbe/base/ixgbe_82599.c     |   18 +-
 drivers/net/ixgbe/base/ixgbe_api.c       |   62 +-
 drivers/net/ixgbe/base/ixgbe_api.h       |    6 +-
 drivers/net/ixgbe/base/ixgbe_common.c    |  103 +-
 drivers/net/ixgbe/base/ixgbe_common.h    |    2 +-
 drivers/net/ixgbe/base/ixgbe_dcb.c       |    2 +-
 drivers/net/ixgbe/base/ixgbe_dcb.h       |    4 +-
 drivers/net/ixgbe/base/ixgbe_e610.c      | 4982 ++++++++++++++++++++++
 drivers/net/ixgbe/base/ixgbe_e610.h      |  163 +
 drivers/net/ixgbe/base/ixgbe_hv_vf.c     |   15 +-
 drivers/net/ixgbe/base/ixgbe_mbx.c       |  860 +++-
 drivers/net/ixgbe/base/ixgbe_mbx.h       |   87 +-
 drivers/net/ixgbe/base/ixgbe_osdep.c     |   43 +
 drivers/net/ixgbe/base/ixgbe_osdep.h     |   17 +
 drivers/net/ixgbe/base/ixgbe_phy.c       |   13 +-
 drivers/net/ixgbe/base/ixgbe_type.h      |  128 +-
 drivers/net/ixgbe/base/ixgbe_type_e610.h | 2181 ++++++++++
 drivers/net/ixgbe/base/ixgbe_vf.c        |  103 +-
 drivers/net/ixgbe/base/ixgbe_vf.h        |    1 +
 drivers/net/ixgbe/base/ixgbe_x540.c      |    4 +-
 drivers/net/ixgbe/base/ixgbe_x550.c      |  140 +-
 drivers/net/ixgbe/base/ixgbe_x550.h      |    6 -
 drivers/net/ixgbe/base/meson.build       |    2 +
 drivers/net/ixgbe/ixgbe_ethdev.c         |   12 +-
 drivers/net/ixgbe/ixgbe_pf.c             |   16 +-
 26 files changed, 8454 insertions(+), 522 deletions(-)
 create mode 100644 drivers/net/ixgbe/base/ixgbe_e610.c
 create mode 100644 drivers/net/ixgbe/base/ixgbe_e610.h
 create mode 100644 drivers/net/ixgbe/base/ixgbe_osdep.c
 create mode 100644 drivers/net/ixgbe/base/ixgbe_type_e610.h