mbox series

[net-next,00/10,pull,request] Intel Wired LAN Driver Updates 2025-02-10 (ice, igc, e1000e)

Message ID 20250210192352.3799673-1-anthony.l.nguyen@intel.com (mailing list archive)
Headers show
Series Intel Wired LAN Driver Updates 2025-02-10 (ice, igc, e1000e) | expand

Message

Tony Nguyen Feb. 10, 2025, 7:23 p.m. UTC
For ice:

Karol, Jake, and Michal add PTP support for E830 devices. Karol
refactors and cleans up PTP code. Jake allows for a common
cross-timestamp implementation to be shared for all devices and
Michal adds E830 support.

Mateusz cleans up initial Flow Director rule creation to loop rather
than duplicate repeated similar calls.

For igc:

Siang adjust calls to remove need for close and open calls on loading
XDP program.

For e1000e:

Gerhard Engleder batches register writes for writing multicast table
on real-time kernels.

The following are changes since commit 39f54262ba499d862420a97719d2f0eea0cbd394:
  Merge branch 'eth-fbnic-support-rss-contexts-and-ntuple-filters'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Gerhard Engleder (1):
  e1000e: Fix real-time violations on link up

Jacob Keller (1):
  ice: Add unified ice_capture_crosststamp

Karol Kolacinski (5):
  ice: Don't check device type when checking GNSS presence
  ice: Remove unnecessary ice_is_e8xx() functions
  ice: Use FIELD_PREP for timestamp values
  ice: Process TSYN IRQ in a separate function
  ice: Refactor ice_ptp_init_tx_*

Mateusz Polchlopek (1):
  ice: refactor ice_fdir_create_dflt_rules() function

Michal Michalik (1):
  ice: Implement PTP support for E830 devices

Song Yoong Siang (1):
  igc: Avoid unnecessary link down event in XDP_SETUP_PROG process

 drivers/net/ethernet/intel/Kconfig            |   2 +-
 drivers/net/ethernet/intel/e1000e/mac.c       |  15 +-
 drivers/net/ethernet/intel/ice/ice.h          |   5 -
 drivers/net/ethernet/intel/ice/ice_common.c   | 208 ++++----
 drivers/net/ethernet/intel/ice/ice_common.h   |   7 +-
 drivers/net/ethernet/intel/ice/ice_ddp.c      |   4 +-
 .../net/ethernet/intel/ice/ice_ethtool_fdir.c |  21 +-
 drivers/net/ethernet/intel/ice/ice_gnss.c     |  29 +-
 drivers/net/ethernet/intel/ice/ice_gnss.h     |   4 +-
 .../net/ethernet/intel/ice/ice_hw_autogen.h   |  12 +
 drivers/net/ethernet/intel/ice/ice_lib.c      |   2 +-
 drivers/net/ethernet/intel/ice/ice_main.c     |  27 +-
 drivers/net/ethernet/intel/ice/ice_ptp.c      | 505 ++++++++++++------
 drivers/net/ethernet/intel/ice/ice_ptp.h      |   9 +-
 drivers/net/ethernet/intel/ice/ice_ptp_hw.c   | 413 ++++++++------
 drivers/net/ethernet/intel/ice/ice_ptp_hw.h   |  28 +-
 drivers/net/ethernet/intel/ice/ice_type.h     |   9 -
 drivers/net/ethernet/intel/igc/igc_xdp.c      |  19 +-
 18 files changed, 765 insertions(+), 554 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Feb. 12, 2025, 4 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (main)
by Tony Nguyen <anthony.l.nguyen@intel.com>:

On Mon, 10 Feb 2025 11:23:38 -0800 you wrote:
> For ice:
> 
> Karol, Jake, and Michal add PTP support for E830 devices. Karol
> refactors and cleans up PTP code. Jake allows for a common
> cross-timestamp implementation to be shared for all devices and
> Michal adds E830 support.
> 
> [...]

Here is the summary with links:
  - [net-next,01/10] ice: Don't check device type when checking GNSS presence
    https://git.kernel.org/netdev/net-next/c/e2c6737e6e82
  - [net-next,02/10] ice: Remove unnecessary ice_is_e8xx() functions
    https://git.kernel.org/netdev/net-next/c/9973ac9f23a7
  - [net-next,03/10] ice: Use FIELD_PREP for timestamp values
    https://git.kernel.org/netdev/net-next/c/ea7029fe10f4
  - [net-next,04/10] ice: Process TSYN IRQ in a separate function
    https://git.kernel.org/netdev/net-next/c/f9472aaabd1f
  - [net-next,05/10] ice: Add unified ice_capture_crosststamp
    https://git.kernel.org/netdev/net-next/c/92456e795ac6
  - [net-next,06/10] ice: Refactor ice_ptp_init_tx_*
    https://git.kernel.org/netdev/net-next/c/381d5779623a
  - [net-next,07/10] ice: Implement PTP support for E830 devices
    https://git.kernel.org/netdev/net-next/c/f00307522786
  - [net-next,08/10] ice: refactor ice_fdir_create_dflt_rules() function
    https://git.kernel.org/netdev/net-next/c/5a7b0b6ff49b
  - [net-next,09/10] igc: Avoid unnecessary link down event in XDP_SETUP_PROG process
    https://git.kernel.org/netdev/net-next/c/be324b790368
  - [net-next,10/10] e1000e: Fix real-time violations on link up
    https://git.kernel.org/netdev/net-next/c/13e22972471d

You are awesome, thank you!