Hi Bruce, Please help to review and merge this Pull Request for linux-yocto, branch "v6.6/standard/x86" and "v6.6/standard/preempt-rt/x86".
All patches are from https://github.com/intel/linux-intel-lts.git. This patch series basically adds support for Intel's TSN AIC Phase 2 card on Raptor Lake S. The following changes since commit 159b103231b16def1b55a403c522fb20cd56d1e7: Merge branch 'v6.6/standard/base' into v6.6/standard/x86 (2025-01-02 13:50:05 -0500) are available in the Git repository at: https://github.com/liux2085/linux-yocto.git v6.6/standard/x86_pull for you to fetch changes up to 9c0a4230e65a80e911e8ad57b6bd452f057f5f36: net: stmmac: add fsleep() in HW Rx timestamp checking loop (2025-01-06 12:22:25 +0800) ---------------------------------------------------------------- David E. Box (1): platform/x86: intel_pmc_core: Add IPC mailbox accessor function Gan Yi Fang (5): net: stmmac: Remove redundant checking for rx_coalesce_usecs net: phy: dp83867: perform restart AN after modifying AN setting stmmac: intel: Enable PHY WoL in ADL-N net: phy: reconfigure PHY WoL when WoL option is enabled net: stmmac: fix MAC and phylink mismatch issue after resume with WoL active (#568) Gan, Yi Fang (1): net: stmmac: Add support for HW-accelerated VLAN stripping Lai Peter Jun Ann (3): net: stmmac: enable Intel mGbE 1G/2.5G auto-negotiation support net: stmmac: configure link speed for 1G/2.5G autonegotiation net: stmmac: Add 1G/2.5G auto-negotiation support for ADL-N and RPL-P Ling Pei Lee (1): net: stmmac: Resolve poor line rate after switching from TSO off to TSO on Malli C (1): taprio: Add support for frame preemption offload Michael Sit Wei Hong (4): net: pcs: xpcs: enable xpcs reset skipping net: phy: increase gpy loopback test delay stmmac: intel: Separate ADL-N and RPL-P device ID from TGL stmmac: intel: skip xpcs reset for 2.5Gbps on Intel AlderLake Ong Boon Leong (1): net: stmmac: add FPE preempt setting for TxQ preemptible MAC mapping Song Yoong Siang (1): net: stmmac: Adjust mac_capabilities for Intel mGbE 2.5G mode Song, Yoong Siang (5): xsk: add txtime field in xdp_desc struct net: stmmac: restructure Rx & Tx hardware timestamping functions net: stmmac: Add per-packet time-based scheduling for XDP ZC net: stmmac: introduce AF_XDP ZC RX HW timestamps net: stmmac: introduce AF_XDP ZC TX HW timestamps Tan Tee Min (1): net: stmmac: add fsleep() in HW Rx timestamp checking loop Tan, Tee Min (1): net: stmmac: Bugfix on stmmac_interrupt() for WOL Vinicius Costa Gomes (3): mqprio: Add support for frame preemption offload taprio: Replace tc_map_to_queue_mask() core: Introduce netdev_tc_map_to_queue_mask() Voon Weifeng (2): net: stmmac: support recalculating of CBS idle slope under EST net: stmmac: Add module param to del/keep est hw conf MAINTAINERS | 1 + drivers/net/dsa/sja1105/sja1105_mdio.c | 2 +- drivers/net/ethernet/stmicro/stmmac/Kconfig | 2 + drivers/net/ethernet/stmicro/stmmac/common.h | 1 + drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c | 194 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- drivers/net/ethernet/stmicro/stmmac/dwmac-intel.h | 84 ++++++++++++++++++++++++++++++++++ drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c | 35 ++++++++++++++ drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.c | 16 ++++++- drivers/net/ethernet/stmicro/stmmac/dwmac5.c | 8 +++- drivers/net/ethernet/stmicro/stmmac/dwmac5.h | 6 ++- drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c | 2 +- drivers/net/ethernet/stmicro/stmmac/hwif.h | 22 ++++++++- drivers/net/ethernet/stmicro/stmmac/stmmac.h | 5 ++ drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c | 2 +- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 227 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------- drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 4 +- drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c | 109 ++++++++++++++++++++++++++++++++++++++++---- drivers/net/ethernet/wangxun/txgbe/txgbe_phy.c | 2 +- drivers/net/pcs/pcs-xpcs.c | 21 ++++++--- drivers/net/phy/Kconfig | 1 + drivers/net/phy/dp83867.c | 4 ++ drivers/net/phy/mxl-gpy.c | 2 +- drivers/platform/x86/intel/pmc/adl.c | 2 +- drivers/platform/x86/intel/pmc/cnp.c | 2 +- drivers/platform/x86/intel/pmc/core.c | 68 ++++++++++++++++++++++++++- drivers/platform/x86/intel/pmc/core_ssram.c | 3 +- drivers/platform/x86/intel/pmc/icl.c | 2 +- drivers/platform/x86/intel/pmc/mtl.c | 2 +- drivers/platform/x86/intel/pmc/spt.c | 2 +- drivers/platform/x86/intel/pmc/tgl.c | 2 +- drivers/platform/x86/intel/pmc/core.h => include/linux/intel_pmc_core.h | 30 ++++++++++++ include/linux/netdevice.h | 2 + include/linux/pcs/pcs-xpcs.h | 3 +- include/linux/stmmac.h | 6 +++ include/net/pkt_sched.h | 4 ++ include/uapi/linux/if_xdp.h | 1 + include/uapi/linux/pkt_sched.h | 2 + net/core/dev.c | 20 ++++++++ net/sched/sch_mqprio.c | 43 ++++++++++++++++-- net/sched/sch_taprio.c | 68 ++++++++++++++++----------- 40 files changed, 901 insertions(+), 111 deletions(-) rename drivers/platform/x86/intel/pmc/core.h => include/linux/intel_pmc_core.h (96%) Thanks, Yongxin
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14716): https://lists.yoctoproject.org/g/linux-yocto/message/14716 Mute This Topic: https://lists.yoctoproject.org/mt/110453435/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/linux-yocto/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
