mbox series

[net-next,00/15,pull,request] 100GbE Intel Wired LAN Driver Updates 2021-06-07

Message ID 20210607165325.182087-1-anthony.l.nguyen@intel.com
Headers show
Series 100GbE Intel Wired LAN Driver Updates 2021-06-07 | expand

Message

Tony Nguyen June 7, 2021, 4:53 p.m. UTC
This series contains updates to virtchnl header file and ice driver.

Brett adds capability bits to virtchnl to specify whether a primary or
secondary MAC address is being requested and adds the implementation to
ice. He also adds storing of VF MAC address so that it will be preserved
across reboots of VM and refactors VF queue configuration to remove the
expectation that configuration be done all at once.

Krzysztof refactors ice_setup_rx_ctx() to remove configuration not
related to Rx context into a new function, ice_vsi_cfg_rxq().

Liwei Song extends the wait time for the global config timeout.

Salil Mehta refactors code in ice_vsi_set_num_qs() to remove an
unnecessary call when the user has requested specific number of Rx or Tx
queues.

Jesse converts define macros to static inlines for NOP configurations.

Jake adds messaging when devlink fails to read device capabilities and
when pldmfw cannot find the requested firmware. Adds a wait for reset
completion when reporting devlink info and reinitializes NVM during
rebuild to ensure values are current.

Ani adds detection and reporting of modules exceeding supported power
levels and changes an error message to a debug message.

Paul fixes a clang warning for deadcode.DeadStores.

The following are changes since commit 1a42624aecba438f1d114430a14b640cdfa51c87:
  net: dsa: xrs700x: allow HSR/PRP supervision dupes for node_table
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Anirudh Venkataramanan (2):
  ice: Detect and report unsupported module power levels
  ice: downgrade error print to debug print

Brett Creeley (4):
  virtchnl: Use pad byte in virtchnl_ether_addr to specify MAC type
  ice: Manage VF's MAC address for both legacy and new cases
  ice: Save VF's MAC across reboot
  ice: Refactor VIRTCHNL_OP_CONFIG_VSI_QUEUES handling

Jacob Keller (4):
  ice: add extack when unable to read device caps
  ice: add error message when pldmfw_flash_image fails
  ice: wait for reset before reporting devlink info
  ice: (re)initialize NVM fields when rebuilding

Jesse Brandeburg (1):
  ice: use static inline for dummy functions

Krzysztof Kazimierczak (1):
  ice: Refactor ice_setup_rx_ctx

Liwei Song (1):
  ice: set the value of global config lock timeout longer

Paul M Stillwell Jr (1):
  ice: fix clang warning regarding deadcode.DeadStores

Salil Mehta (1):
  ice: Re-organizes reqstd/avail {R, T}XQ check/code for efficiency

 drivers/net/ethernet/intel/ice/ice.h          |   3 +
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |   6 +-
 drivers/net/ethernet/intel/ice/ice_arfs.h     |  12 +-
 drivers/net/ethernet/intel/ice/ice_base.c     | 120 ++++++----
 drivers/net/ethernet/intel/ice/ice_base.h     |   2 +-
 drivers/net/ethernet/intel/ice/ice_common.c   |   2 +
 drivers/net/ethernet/intel/ice/ice_dcb_lib.h  |  15 +-
 drivers/net/ethernet/intel/ice/ice_dcb_nl.h   |   9 +-
 drivers/net/ethernet/intel/ice/ice_devlink.c  |   9 +
 drivers/net/ethernet/intel/ice/ice_ethtool.c  |   6 +-
 .../net/ethernet/intel/ice/ice_fw_update.c    |  10 +
 drivers/net/ethernet/intel/ice/ice_lib.c      |  81 +++++--
 drivers/net/ethernet/intel/ice/ice_lib.h      |   5 +
 drivers/net/ethernet/intel/ice/ice_main.c     |  51 ++++
 drivers/net/ethernet/intel/ice/ice_type.h     |   3 +-
 .../net/ethernet/intel/ice/ice_virtchnl_pf.c  | 226 ++++++++++++++----
 .../net/ethernet/intel/ice/ice_virtchnl_pf.h  |  31 ++-
 drivers/net/ethernet/intel/ice/ice_xsk.c      |   2 +-
 drivers/net/ethernet/intel/ice/ice_xsk.h      |   4 +-
 include/linux/avf/virtchnl.h                  |  29 ++-
 20 files changed, 474 insertions(+), 152 deletions(-)