netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/11][pull request] Intel Wired LAN Driver Updates 2025-11-25 (ice, idpf, iavf, ixgbe, ixgbevf, e1000e)
@ 2025-11-25 22:36 Tony Nguyen
  2025-11-25 22:36 ` [PATCH net-next 01/11] ice: add support for unmanaged DPLL on E830 NIC Tony Nguyen
                   ` (12 more replies)
  0 siblings, 13 replies; 22+ messages in thread
From: Tony Nguyen @ 2025-11-25 22:36 UTC (permalink / raw)
  To: davem, kuba, pabeni, edumazet, andrew+netdev, netdev; +Cc: Tony Nguyen

Arkadiusz adds support for unmanaged DPLL for ice E830 devices; device
settings are fixed but can be queried by DPLL.

Grzegorz commonizes firmware loading process across all ice devices.

Birger Koblitz adds support for 10G-BX to ixgbe.

Natalia cleans up ixgbevf_q_vector struct removing an unused field.

Emil converts vport state tracking from enum to bitmap and removes
unneeded states for idpf.

Tony removes an unneeded check from e1000e.

Alok Tiwari removes an unnecessary second call to
ixgbe_non_sfp_link_config() and adjusts the checked member, in idpf, to
reflect the member that is later used. He also fixes various typos and
messages for better clarity misc Intel drivers.

The following are changes since commit 61e628023d79386e93d2d64f8b7af439d27617a6:
  Merge branch 'net_sched-speedup-qdisc-dequeue'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Alok Tiwari (5):
  ixgbe: avoid redundant call to ixgbe_non_sfp_link_config()
  idpf: use desc_ring when checking completion queue DMA allocation
  idpf: correct queue index in Rx allocation error messages
  ice: fix comment typo and correct module format string
  iavf: clarify VLAN add/delete log messages and lower log level

Arkadiusz Kubalewski (1):
  ice: add support for unmanaged DPLL on E830 NIC

Birger Koblitz (1):
  ixgbe: Add 10G-BX support

Emil Tantilov (1):
  idpf: convert vport state to bitmap

Grzegorz Nitka (1):
  ice: unify PHY FW loading status handler for E800 devices

Natalia Wochtman (1):
  ixgbevf: ixgbevf_q_vector clean up

Tony Nguyen (1):
  e1000e: Remove unneeded checks

 .../device_drivers/ethernet/intel/ice.rst     |  80 +++++
 drivers/net/ethernet/intel/e1000e/ethtool.c   |   6 +-
 .../net/ethernet/intel/iavf/iavf_virtchnl.c   |  12 +-
 .../net/ethernet/intel/ice/devlink/health.c   |   4 +
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |  12 +
 drivers/net/ethernet/intel/ice/ice_common.c   | 214 ++++++++----
 drivers/net/ethernet/intel/ice/ice_common.h   |   8 +
 drivers/net/ethernet/intel/ice/ice_dpll.c     | 311 ++++++++++++++++--
 drivers/net/ethernet/intel/ice/ice_dpll.h     |  11 +
 drivers/net/ethernet/intel/ice/ice_fdir.c     |   2 +-
 .../net/ethernet/intel/ice/ice_fw_update.c    |   2 +-
 drivers/net/ethernet/intel/ice/ice_main.c     |  14 +-
 drivers/net/ethernet/intel/ice/ice_ptp_hw.c   |  46 +++
 drivers/net/ethernet/intel/ice/ice_ptp_hw.h   |   1 +
 drivers/net/ethernet/intel/idpf/idpf.h        |  12 +-
 .../net/ethernet/intel/idpf/idpf_ethtool.c    |  12 +-
 drivers/net/ethernet/intel/idpf/idpf_lib.c    |  24 +-
 .../ethernet/intel/idpf/idpf_singleq_txrx.c   |   2 +-
 drivers/net/ethernet/intel/idpf/idpf_txrx.c   |  12 +-
 .../net/ethernet/intel/idpf/idpf_virtchnl.c   |   4 +-
 drivers/net/ethernet/intel/idpf/xdp.c         |   2 +-
 .../net/ethernet/intel/ixgbe/ixgbe_82599.c    |   7 +
 .../net/ethernet/intel/ixgbe/ixgbe_ethtool.c  |   2 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_main.c |   4 +-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c  |  43 ++-
 drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h  |   2 +
 drivers/net/ethernet/intel/ixgbe/ixgbe_type.h |   2 +
 drivers/net/ethernet/intel/ixgbevf/ixgbevf.h  |  18 +-
 28 files changed, 718 insertions(+), 151 deletions(-)

-- 
2.47.1


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

end of thread, other threads:[~2025-12-02  5:58 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-25 22:36 [PATCH net-next 00/11][pull request] Intel Wired LAN Driver Updates 2025-11-25 (ice, idpf, iavf, ixgbe, ixgbevf, e1000e) Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 01/11] ice: add support for unmanaged DPLL on E830 NIC Tony Nguyen
2025-11-26 23:30   ` Jakub Kicinski
2025-11-25 22:36 ` [PATCH net-next 02/11] ice: unify PHY FW loading status handler for E800 devices Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 03/11] ixgbe: Add 10G-BX support Tony Nguyen
2025-11-26 23:32   ` Jakub Kicinski
2025-11-27  6:33     ` Birger Koblitz
2025-11-27 16:07       ` Jakub Kicinski
2025-11-27 18:48         ` Birger Koblitz
2025-12-01 22:40           ` Tony Nguyen
2025-12-02  5:58             ` Birger Koblitz
2025-11-25 22:36 ` [PATCH net-next 04/11] ixgbevf: ixgbevf_q_vector clean up Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 05/11] idpf: convert vport state to bitmap Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 06/11] e1000e: Remove unneeded checks Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 07/11] ixgbe: avoid redundant call to ixgbe_non_sfp_link_config() Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 08/11] idpf: use desc_ring when checking completion queue DMA allocation Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 09/11] idpf: correct queue index in Rx allocation error messages Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 10/11] ice: fix comment typo and correct module format string Tony Nguyen
2025-11-25 22:36 ` [PATCH net-next 11/11] iavf: clarify VLAN add/delete log messages and lower log level Tony Nguyen
2025-11-28  2:38 ` [PATCH net-next 00/11][pull request] Intel Wired LAN Driver Updates 2025-11-25 (ice, idpf, iavf, ixgbe, ixgbevf, e1000e) Jakub Kicinski
2025-12-01 17:03   ` Tony Nguyen
2025-11-28  2:40 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).