mbox

[v3,00/19] update ixgbe base code

Message ID 20200709080046.65879-1-guinanx.sun@intel.com (mailing list archive)
Headers

Message

Guinan Sun July 9, 2020, 8 a.m. UTC
  source code of ixgbe driver:
not-released-cid-ixgbe.2020.06.09.tar.gz released by the team which develop
basic drivers for any ixgbe NIC.

changelog in ND share repo:
From 66d7da32d8e8 ("ixgbe-shared: Add support to clear VFMBMEM and toggle VF's TX queues")
To 7f2d73c9742b ("ixgbe-shared: check Host Interface Return Status for Shadow RAM Write command for X550")

66d7da32d8e8 is ignore as no use in this release.
Reviewed-by: Wei Zhao <wei.zhao1@intel.com>
---
v3:
* Modify hardcode.
* Remove patch "toggle VF's Tx queues"
* Remove patch "add support to clear VFMBMEM"
* Split patch into two.
v2:
* Remove codes about IXGBE_NVMUPD_SUPPORT.
* Remove codes about PREBOOT_SUPPORT.
* Remove codes about IXGBE_SFP_DETECT_RETRIES.
* Remove codes about IXGBE_EEPROM_GRANT_ATTEMPTS.
* Remove codes about IXGBE_VFWRITE_REG.
* Remove some useless defines.
* Modify commit messages.
* Split some patch to two patches and Merge some patches to one patch.
* Update README.

Guinan Sun (19):
  net/ixgbe/base: fix host interface shadow RAM read
  net/ixgbe/base: change flow for "Apply Update" command
  net/ixgbe/base: fix x550em 10G NIC link status report
  net/ixgbe/base: resolve infinite recursion on PCIe link down
  net/ixgbe/base: added register definitions for NVM update
  net/ixgbe/base: cleanup spelling mistakes in comments
  net/ixgbe/base: remove whitespace in function comments
  net/ixgbe/base: move increments after evaluations
  net/ixgbe/base: create dedicated func to restart auto nego
  net/ixgbe/base: add typecast for type mismatch
  net/ixgbe/base: remove unnecessary return value check
  net/ixgbe/base: remove unnecessary log message FC autonego
  net/ixgbe/base: initialize data field in struct buffer
  net/ixgbe/base: improve log about autonego being disabled
  net/ixgbe/base: add ipv6 mask for FDIR feature
  net/ixgbe/base: remove default advertising for x550 2.5G/5G
  net/ixgbe/base: check host interface return status
  net/ixgbe/base: cleanup pre-processor tags
  net/ixgbe/base: update version

 drivers/net/ixgbe/base/README            |    2 +-
 drivers/net/ixgbe/base/ixgbe_82598.c     |  238 ++---
 drivers/net/ixgbe/base/ixgbe_82599.c     |  397 ++++----
 drivers/net/ixgbe/base/ixgbe_api.c       |  866 +++++++++---------
 drivers/net/ixgbe/base/ixgbe_common.c    | 1055 +++++++++++-----------
 drivers/net/ixgbe/base/ixgbe_common.h    |    2 +-
 drivers/net/ixgbe/base/ixgbe_dcb.c       |    6 +-
 drivers/net/ixgbe/base/ixgbe_dcb_82598.c |    2 +-
 drivers/net/ixgbe/base/ixgbe_dcb_82599.c |    2 +-
 drivers/net/ixgbe/base/ixgbe_hv_vf.c     |   20 +-
 drivers/net/ixgbe/base/ixgbe_mbx.c       |  242 ++---
 drivers/net/ixgbe/base/ixgbe_phy.c       |  488 +++++-----
 drivers/net/ixgbe/base/ixgbe_phy.h       |    3 +-
 drivers/net/ixgbe/base/ixgbe_type.h      |   24 +-
 drivers/net/ixgbe/base/ixgbe_vf.c        |  170 ++--
 drivers/net/ixgbe/base/ixgbe_x540.c      |  190 ++--
 drivers/net/ixgbe/base/ixgbe_x550.c      |  527 ++++++-----
 17 files changed, 2102 insertions(+), 2132 deletions(-)