netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/12][pull request] Intel Wired LAN Driver Updates 2024-10-08 (ice, iavf, igb, e1000e, e1000)
@ 2024-10-08 23:34 Tony Nguyen
  2024-10-08 23:34 ` [PATCH net-next 01/12] ice: Implement ethtool reset support Tony Nguyen
                   ` (12 more replies)
  0 siblings, 13 replies; 18+ messages in thread
From: Tony Nguyen @ 2024-10-08 23:34 UTC (permalink / raw)
  To: davem, kuba, pabeni, edumazet, netdev; +Cc: Tony Nguyen

This series contains updates to ice, iavf, igb, e1000e, and e1000
drivers.

For ice:

Wojciech adds support for ethtool reset.

Paul adds support for hardware based VF mailbox limits for E830 devices.

Jake adjusts to a common iterator in ice_vc_cfg_qs_msg() and moves
storing of max_frame and rx_buf_len from VSI struct to the ring
structure.

Hongbo Li uses assign_bit() to replace an open-coded instance.

Markus Elfring adjusts a couple of PTP error paths to use a common,
shared exit point.

Yue Haibing removes unused declarations.

For iavf:

Yue Haibing removes unused declarations.

For igb:

Yue Haibing removes unused declarations.

For e1000e:

Takamitsu Iwai removes unneccessary writel() calls.

Joe Damato adds support for netdev-genl support to query IRQ, NAPI,
and queue information.

For e1000:

Joe Damato adds support for netdev-genl support to query IRQ, NAPI,
and queue information.

The following are changes since commit 42b2331081178785d50d116c85ca40d728b48291:
  tools: ynl-gen: refactor check validation for TypeBinary
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Hongbo Li (1):
  ice: Make use of assign_bit() API

Jacob Keller (2):
  ice: consistently use q_idx in ice_vc_cfg_qs_msg()
  ice: store max_frame and rx_buf_len only in ice_rx_ring

Joe Damato (2):
  e1000e: Link NAPI instances to queues and IRQs
  e1000: Link NAPI instances to queues and IRQs

Markus Elfring (1):
  ice: Use common error handling code in two functions

Paul Greenwalt (1):
  ice: add E830 HW VF mailbox message limit support

Takamitsu Iwai (1):
  e1000e: Remove duplicated writel() in e1000_configure_tx/rx()

Wojciech Drewek (1):
  ice: Implement ethtool reset support

Yue Haibing (3):
  ice: Cleanup unused declarations
  iavf: Remove unused declarations
  igb: Cleanup unused declarations

 .../device_drivers/ethernet/intel/ice.rst     | 31 ++++++++
 drivers/net/ethernet/intel/e1000/e1000_main.c |  5 ++
 drivers/net/ethernet/intel/e1000e/netdev.c    | 17 ++--
 drivers/net/ethernet/intel/iavf/iavf.h        | 10 ---
 .../net/ethernet/intel/iavf/iavf_prototype.h  |  3 -
 drivers/net/ethernet/intel/ice/ice.h          |  4 +-
 drivers/net/ethernet/intel/ice/ice_base.c     | 34 ++++----
 drivers/net/ethernet/intel/ice/ice_eswitch.h  |  5 --
 drivers/net/ethernet/intel/ice/ice_ethtool.c  | 77 +++++++++++++++++++
 .../net/ethernet/intel/ice/ice_flex_pipe.h    |  3 -
 .../net/ethernet/intel/ice/ice_hw_autogen.h   |  3 +
 drivers/net/ethernet/intel/ice/ice_lib.c      |  3 +
 drivers/net/ethernet/intel/ice/ice_lib.h      |  2 -
 drivers/net/ethernet/intel/ice/ice_main.c     | 27 +++++--
 drivers/net/ethernet/intel/ice/ice_ptp.c      | 32 ++++----
 drivers/net/ethernet/intel/ice/ice_ptp_hw.h   |  3 -
 drivers/net/ethernet/intel/ice/ice_sriov.c    |  3 +-
 drivers/net/ethernet/intel/ice/ice_txrx.h     |  3 +-
 drivers/net/ethernet/intel/ice/ice_txrx_lib.h |  1 -
 drivers/net/ethernet/intel/ice/ice_vf_lib.c   | 26 ++++++-
 drivers/net/ethernet/intel/ice/ice_vf_mbx.c   | 32 ++++++++
 drivers/net/ethernet/intel/ice/ice_vf_mbx.h   |  9 +++
 drivers/net/ethernet/intel/ice/ice_virtchnl.c | 34 ++++----
 drivers/net/ethernet/intel/igb/e1000_mac.h    |  1 -
 drivers/net/ethernet/intel/igb/e1000_nvm.h    |  1 -
 25 files changed, 269 insertions(+), 100 deletions(-)

-- 
2.42.0


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

end of thread, other threads:[~2024-10-10  3:10 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-08 23:34 [PATCH net-next 00/12][pull request] Intel Wired LAN Driver Updates 2024-10-08 (ice, iavf, igb, e1000e, e1000) Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 01/12] ice: Implement ethtool reset support Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 02/12] ice: add E830 HW VF mailbox message limit support Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 03/12] ice: consistently use q_idx in ice_vc_cfg_qs_msg() Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 04/12] ice: store max_frame and rx_buf_len only in ice_rx_ring Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 05/12] ice: Make use of assign_bit() API Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 06/12] ice: Use common error handling code in two functions Tony Nguyen
2024-10-09  2:23   ` Kalesh Anakkur Purayil
2024-10-08 23:34 ` [PATCH net-next 07/12] ice: Cleanup unused declarations Tony Nguyen
2024-10-09  2:22   ` Kalesh Anakkur Purayil
2024-10-08 23:34 ` [PATCH net-next 08/12] iavf: Remove " Tony Nguyen
2024-10-09  2:23   ` Kalesh Anakkur Purayil
2024-10-08 23:34 ` [PATCH net-next 09/12] igb: Cleanup " Tony Nguyen
2024-10-09  2:22   ` Kalesh Anakkur Purayil
2024-10-08 23:34 ` [PATCH net-next 10/12] e1000e: Remove duplicated writel() in e1000_configure_tx/rx() Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 11/12] e1000e: Link NAPI instances to queues and IRQs Tony Nguyen
2024-10-08 23:34 ` [PATCH net-next 12/12] e1000: " Tony Nguyen
2024-10-10  3:10 ` [PATCH net-next 00/12][pull request] Intel Wired LAN Driver Updates 2024-10-08 (ice, iavf, igb, e1000e, e1000) 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).