linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/12] Add NETC Timer PTP driver and add PTP support for ENETC v4
@ 2025-07-11  6:57 Wei Fang
  2025-07-11  6:57 ` [PATCH net-next 01/12] dt-bindings: ptp: add bindings for NETC Timer Wei Fang
                   ` (11 more replies)
  0 siblings, 12 replies; 52+ messages in thread
From: Wei Fang @ 2025-07-11  6:57 UTC (permalink / raw)
  To: robh, krzk+dt, conor+dt, richardcochran, claudiu.manoil,
	vladimir.oltean, xiaoning.wang, andrew+netdev, davem, edumazet,
	kuba, pabeni
  Cc: fushi.peng, devicetree, netdev, linux-kernel, imx

This series adds NETC Timer PTP clock driver, which supports precise
periodic pulse, time capture on external pulse and PTP synchronization.
It also adds PTP support to the enetc v4 driver, and also optimizes the
PTP-related code in the enetc driver.

F.S. Peng (1):
  ptp: netc: add external trigger stamp support

Wei Fang (11):
  dt-bindings: ptp: add bindings for NETC Timer
  ptp: netc: add NETC Timer PTP driver support
  ptp: netc: add PPS support
  ptp: netc: add periodic pulse output support
  ptp: netc: add debugfs support to loop back pulse signal
  MAINTAINERS: add NETC Timer PTP clock driver section
  net: enetc: save the parsed information of PTP packet to skb->cb
  net: enetc: Add enetc_update_ptp_sync_msg() to process PTP sync packet
  net: enetc: remove unnecessary CONFIG_FSL_ENETC_PTP_CLOCK check
  net: enetc: add PTP synchronization support for ENETC v4
  net: enetc: don't update sync packet checksum if checksum offload is
    used

 .../devicetree/bindings/ptp/nxp,ptp-netc.yaml |   67 +
 MAINTAINERS                                   |    9 +
 drivers/net/ethernet/freescale/enetc/enetc.c  |  209 +--
 drivers/net/ethernet/freescale/enetc/enetc.h  |   21 +-
 .../net/ethernet/freescale/enetc/enetc4_hw.h  |    6 +
 .../net/ethernet/freescale/enetc/enetc4_pf.c  |    3 +
 .../ethernet/freescale/enetc/enetc_ethtool.c  |   69 +-
 .../net/ethernet/freescale/enetc/enetc_hw.h   |    1 +
 drivers/ptp/Kconfig                           |   11 +
 drivers/ptp/Makefile                          |    1 +
 drivers/ptp/ptp_netc.c                        | 1209 +++++++++++++++++
 include/linux/fsl/netc_global.h               |   12 +-
 12 files changed, 1516 insertions(+), 102 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/ptp/nxp,ptp-netc.yaml
 create mode 100644 drivers/ptp/ptp_netc.c

-- 
2.34.1


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

end of thread, other threads:[~2025-07-15  7:11 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-11  6:57 [PATCH net-next 00/12] Add NETC Timer PTP driver and add PTP support for ENETC v4 Wei Fang
2025-07-11  6:57 ` [PATCH net-next 01/12] dt-bindings: ptp: add bindings for NETC Timer Wei Fang
2025-07-11 13:27   ` Andrew Lunn
2025-07-14  2:32     ` Wei Fang
2025-07-14  5:51   ` Krzysztof Kozlowski
2025-07-14  7:32     ` Wei Fang
2025-07-14  7:35       ` Krzysztof Kozlowski
2025-07-14  9:11         ` Wei Fang
2025-07-14  9:14           ` Krzysztof Kozlowski
2025-07-14  9:56             ` Wei Fang
2025-07-14 10:09               ` Krzysztof Kozlowski
2025-07-14 10:20                 ` Krzysztof Kozlowski
2025-07-14 10:30                   ` Wei Fang
2025-07-14 10:28                 ` Wei Fang
2025-07-14 10:31                   ` Vladimir Oltean
2025-07-14 10:43                     ` Wei Fang
2025-07-14 11:37                       ` Vladimir Oltean
2025-07-14 13:22                         ` Wei Fang
2025-07-14 13:56                           ` Vladimir Oltean
2025-07-14 14:14                             ` Vladimir Oltean
2025-07-15  2:52                             ` Wei Fang
2025-07-15  7:02                               ` Vladimir Oltean
2025-07-15  7:11                                 ` Wei Fang
2025-07-14 11:24                   ` Krzysztof Kozlowski
2025-07-14 13:43                     ` Wei Fang
2025-07-14 14:04                       ` Krzysztof Kozlowski
2025-07-11  6:57 ` [PATCH net-next 02/12] ptp: netc: add NETC Timer PTP driver support Wei Fang
2025-07-11 13:25   ` Andrew Lunn
2025-07-14  2:29     ` Wei Fang
2025-07-12 10:43   ` Vadim Fedorenko
2025-07-14  2:57     ` Wei Fang
2025-07-12 11:53   ` kernel test robot
2025-07-14  5:55   ` Krzysztof Kozlowski
2025-07-14 10:11     ` Wei Fang
2025-07-11  6:57 ` [PATCH net-next 03/12] ptp: netc: add PPS support Wei Fang
2025-07-12 16:00   ` kernel test robot
2025-07-11  6:57 ` [PATCH net-next 04/12] ptp: netc: add periodic pulse output support Wei Fang
2025-07-11  6:57 ` [PATCH net-next 05/12] ptp: netc: add external trigger stamp support Wei Fang
2025-07-11  6:57 ` [PATCH net-next 06/12] ptp: netc: add debugfs support to loop back pulse signal Wei Fang
2025-07-11 13:33   ` Andrew Lunn
2025-07-14  2:33     ` Wei Fang
2025-07-11  6:57 ` [PATCH net-next 07/12] MAINTAINERS: add NETC Timer PTP clock driver section Wei Fang
2025-07-11  6:57 ` [PATCH net-next 08/12] net: enetc: save the parsed information of PTP packet to skb->cb Wei Fang
2025-07-12 10:54   ` Vadim Fedorenko
2025-07-14  3:07     ` Wei Fang
2025-07-11  6:57 ` [PATCH net-next 09/12] net: enetc: Add enetc_update_ptp_sync_msg() to process PTP sync packet Wei Fang
2025-07-12 10:58   ` Vadim Fedorenko
2025-07-11  6:57 ` [PATCH net-next 10/12] net: enetc: remove unnecessary CONFIG_FSL_ENETC_PTP_CLOCK check Wei Fang
2025-07-12 11:29   ` Vadim Fedorenko
2025-07-11  6:57 ` [PATCH net-next 11/12] net: enetc: add PTP synchronization support for ENETC v4 Wei Fang
2025-07-12 16:42   ` kernel test robot
2025-07-11  6:57 ` [PATCH net-next 12/12] net: enetc: don't update sync packet checksum if checksum offload is used Wei Fang

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).