All of lore.kernel.org
 help / color / mirror / Atom feed
* [net-next v3 00/13][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-06
@ 2019-11-07  0:52 Jeff Kirsher
  2019-11-07  0:52 ` [net-next v3 01/13] ice: add ethtool -m support for reading i2c eeprom modules Jeff Kirsher
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Jeff Kirsher @ 2019-11-07  0:52 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann

This series contains updates to ice driver only.

Scott adds ethtool -m support so that we can read eeprom data on SFP/OSFP
modules.

Anirudh updates the return value to properly reflect when SRIOV is not
supported.

Md Fahad updates the driver to handle a change in the NVM, where the
boot configuration section was moved to the Preserved Field Area (PFA)
of the NVM.

Paul resolves an issue when DCBx requests non-contiguous TCs, transmit
hangs could occur, so configure a default traffic class (TC0) in these
cases to prevent traffic hangs.  Adds a print statement to notify the
user when unsupported modules are inserted.

Bruce fixes up the driver unload code flow to ensure we do not clear the
interrupt scheme until the reset is complete, otherwise a hardware error
may occur.

Dave updates the DCB initialization to set is_sw_lldp boolean when the
firmware has been detected to be in an untenable state.  This will
ensure that the firmware is in a known state.

Michal saves off the PCI state and I/O BARs address after PCI bus reset
so that after the reset, device registers can be read.  Also adds a NULL
pointer check to prevent a potential kernel panic.

Mitch resolves an issue where VF's on PF's other than 0 were not seeing
resets by using the per-PF VF ID instead of the absolute VF ID.

Krzysztof does some code cleanup to remove a unneeded wrapper and
reduces the code complexity.

Brett reduces confusion by changing the name of ice_vc_dis_vf() to
ice_vc_reset_vf() to better describe what the function is actually
doing.

v2: dropped patch 3 "ice: Add support for FW recovery mode detection"
    from the origin al series, while Ani makes changes based on
    community feedback to implement devlink into the changes.
v3: dropped patch 1 "ice: implement set_eeprom functionality" due to a
    bug found and additional changes will be needed when Ani implements
    devlink in the driver. 

The following are changes since commit 71c780f1191fbbc63dcd76dd750ee413d373dabd:
  tc-testing: updated pedit TDC tests
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE

Anirudh Venkataramanan (1):
  ice: Fix return value when SR-IOV is not supported

Brett Creeley (1):
  ice: Rename VF function ice_vc_dis_vf to match its behavior

Bruce Allan (1):
  ice: fix driver unload flow

Dave Ertman (1):
  ice: Adjust DCB INIT for SW mode

Krzysztof Kazimierczak (1):
  ice: Get rid of ice_cleanup_header

Md Fahad Iqbal Polash (1):
  ice: Update Boot Configuration Section read of NVM

Michal Swiatkowski (2):
  ice: save PCI state in probe
  ice: Check for null pointer dereference when setting rings

Mitch Williams (1):
  ice: write register with correct offset

Paul Greenwalt (3):
  ice: handle DCBx non-contiguous TC request
  ice: print unsupported module message
  ice: print PCI link speed and width

Scott W Taylor (1):
  ice: add ethtool -m support for reading i2c eeprom modules

 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |  33 ++++
 drivers/net/ethernet/intel/ice/ice_common.c   | 112 +++++++++++++
 drivers/net/ethernet/intel/ice/ice_common.h   |   8 +
 drivers/net/ethernet/intel/ice/ice_dcb.c      |   6 +-
 drivers/net/ethernet/intel/ice/ice_dcb_lib.c  | 141 ++++++++++++-----
 drivers/net/ethernet/intel/ice/ice_ethtool.c  | 147 ++++++++++++++++++
 drivers/net/ethernet/intel/ice/ice_main.c     |  32 +++-
 drivers/net/ethernet/intel/ice/ice_nvm.c      |  51 ++++--
 drivers/net/ethernet/intel/ice/ice_nvm.h      |   8 +
 drivers/net/ethernet/intel/ice/ice_txrx.c     |  27 +---
 drivers/net/ethernet/intel/ice/ice_type.h     |   3 +
 .../net/ethernet/intel/ice/ice_virtchnl_pf.c  |  16 +-
 12 files changed, 494 insertions(+), 90 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/ice/ice_nvm.h

-- 
2.21.0


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

end of thread, other threads:[~2019-11-07  5:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-07  0:52 [net-next v3 00/13][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-06 Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 01/13] ice: add ethtool -m support for reading i2c eeprom modules Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 02/13] ice: Update Boot Configuration Section read of NVM Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 03/13] ice: handle DCBx non-contiguous TC request Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 04/13] ice: fix driver unload flow Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 05/13] ice: Adjust DCB INIT for SW mode Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 06/13] ice: save PCI state in probe Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 07/13] ice: Check for null pointer dereference when setting rings Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 08/13] ice: write register with correct offset Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 09/13] ice: print unsupported module message Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 10/13] ice: print PCI link speed and width Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 11/13] ice: Get rid of ice_cleanup_header Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 12/13] ice: Rename VF function ice_vc_dis_vf to match its behavior Jeff Kirsher
2019-11-07  0:52 ` [net-next v3 13/13] ice: Fix return value when SR-IOV is not supported Jeff Kirsher
2019-11-07  3:24 ` [net-next v3 00/13][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-06 Jakub Kicinski
2019-11-07  5:46 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.