mbox series

[net-next,00/13,pull,request] Intel Wired LAN Driver Updates 2025-01-08 (ice)

Message ID 20250108221753.2055987-1-anthony.l.nguyen@intel.com (mailing list archive)
Headers show
Series Intel Wired LAN Driver Updates 2025-01-08 (ice) | expand

Message

Tony Nguyen Jan. 8, 2025, 10:17 p.m. UTC
This series contains updates to ice driver only.

Przemek reworks implementation so that ice_init_hw() is called before
ice_adapter initialization. The motivation is to have ability to act
on the number of PFs in ice_adapter initialization. This is not done
here but the code is also a bit cleaner.

Michal adds priority to be considered when matching recipes for proper
differentiation.

Konrad adds devlink health reporting for firmware generated events.

R Sundar utilizes string helpers over open coded versions.

Jake adds implementation to utilize a lower latency interface to program
PHY timer when supported.

Additional information can be found on the original cover letter:
https://lore.kernel.org/intel-wired-lan/20241216145453.333745-1-anton.nadezhdin@intel.com/

Karol adds and allows for different PTP delay values to be used per pin.

The following are changes since commit 7bf1659bad4e9413cdba132ef9cbd0caa9cabcc4:
  Merge branch 'intel-wired-lan-driver-updates-2025-01-06-igb-igc-ixgbe-ixgbevf-i40e-fm10k'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Jacob Keller (5):
  ice: use rd32_poll_timeout_atomic in ice_read_phy_tstamp_ll_e810
  ice: rename TS_LL_READ* macros to REG_LL_PROXY_H_*
  ice: add lock to protect low latency interface
  ice: check low latency PHY timer update firmware capability
  ice: implement low latency PHY timer updates

Karol Kolacinski (1):
  ice: Add in/out PTP pin delays

Konrad Knitter (1):
  ice: add fw and port health reporters

Michal Swiatkowski (1):
  ice: add recipe priority check in search

Przemek Kitszel (4):
  ice: c827: move wait for FW to ice_init_hw()
  ice: split ice_init_hw() out from ice_init_dev()
  ice: minor: rename goto labels from err to unroll
  ice: ice_probe: init ice_adapter after HW init

R Sundar (1):
  ice: use string choice helpers

 .../net/ethernet/intel/ice/devlink/devlink.c  |  10 +-
 .../net/ethernet/intel/ice/devlink/health.c   | 295 +++++++++++++++++-
 .../net/ethernet/intel/ice/devlink/health.h   |  15 +-
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |  87 ++++++
 drivers/net/ethernet/intel/ice/ice_common.c   | 151 ++++++---
 drivers/net/ethernet/intel/ice/ice_common.h   |   3 +-
 drivers/net/ethernet/intel/ice/ice_main.c     |  91 ++----
 drivers/net/ethernet/intel/ice/ice_osdep.h    |   3 +
 drivers/net/ethernet/intel/ice/ice_ptp.c      | 130 +++++---
 drivers/net/ethernet/intel/ice/ice_ptp.h      |   2 +
 .../net/ethernet/intel/ice/ice_ptp_consts.h   |  12 -
 drivers/net/ethernet/intel/ice/ice_ptp_hw.c   | 163 ++++++++--
 drivers/net/ethernet/intel/ice/ice_ptp_hw.h   |  40 +--
 drivers/net/ethernet/intel/ice/ice_switch.c   |   3 +-
 drivers/net/ethernet/intel/ice/ice_type.h     |  17 +
 15 files changed, 806 insertions(+), 216 deletions(-)