mbox series

[net-next,00/13,pull,request] 1GbE Intel Wired LAN Driver Updates 2020-06-26

Message ID 20200627015431.3579234-1-jeffrey.t.kirsher@intel.com
Headers show
Series 1GbE Intel Wired LAN Driver Updates 2020-06-26 | expand

Message

Jeff Kirsher June 27, 2020, 1:54 a.m. UTC
This series contains updates to only the igc driver.

Sasha added Energy Efficient Ethernet (EEE) support and Latency Tolerance
Reporting (LTR) support for the igc driver. Added Low Power Idle (LPI)
counters and cleaned up unused TCP segmentation counters. Removed
igc_power_down_link() and call igc_power_down_phy_copper_base()
directly. Removed unneeded copper media check. 

Andre cleaned up timestamping by removing un-supported features and
duplicate code for i225. Fixed the timestamp check on the proper flag
instead of the skb for pending transmit timestamps. Refactored
igc_ptp_set_timestamp_mode() to simply the flow.


The following are changes since commit 61b5cc20c877f9703fa46b24c273cbb5affb26e9:
  net: mvneta: speed down the PHY, if WoL used, to save energy
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 1GbE

Andre Guedes (6):
  igc: Clean up Rx timestamping logic
  igc: Remove duplicate code in Tx timestamp handling
  igc: Check __IGC_PTP_TX_IN_PROGRESS instead of ptp_tx_skb
  igc: Remove UDP filter setup in PTP code
  igc: Refactor igc_ptp_set_timestamp_mode()
  igc: Fix Rx timestamp disabling

Sasha Neftin (7):
  igc: Add initial EEE support
  igc: Add initial LTR support
  igc: Add LPI counters
  igc: Remove TCP segmentation TX fail counter
  igc: Refactor the igc_power_down_link()
  igc: Remove unneeded check for copper media type
  igc: Remove checking media type during MAC initialization

 drivers/net/ethernet/intel/igc/igc.h         |   7 +-
 drivers/net/ethernet/intel/igc/igc_defines.h |  39 ++-
 drivers/net/ethernet/intel/igc/igc_ethtool.c |  97 +++++++
 drivers/net/ethernet/intel/igc/igc_hw.h      |   1 +
 drivers/net/ethernet/intel/igc/igc_i225.c    | 156 +++++++++++
 drivers/net/ethernet/intel/igc/igc_i225.h    |   3 +
 drivers/net/ethernet/intel/igc/igc_mac.c     |  16 +-
 drivers/net/ethernet/intel/igc/igc_main.c    |  48 ++--
 drivers/net/ethernet/intel/igc/igc_ptp.c     | 256 +++++--------------
 drivers/net/ethernet/intel/igc/igc_regs.h    |  16 +-
 10 files changed, 416 insertions(+), 223 deletions(-)