public inbox for dev@dpdk.org
 help / color / mirror / Atom feed
* [PATCH v1 0/4] Enable PTP feature for MEV
@ 2025-10-24 12:08 Soumyadeep Hore
  2025-10-24 12:08 ` [PATCH v1 1/4] net/idpf: add a new API for PTP support Soumyadeep Hore
                   ` (3 more replies)
  0 siblings, 4 replies; 57+ messages in thread
From: Soumyadeep Hore @ 2025-10-24 12:08 UTC (permalink / raw)
  To: dev, bruce.richardson
  Cc: rajesh3.kumar, aman.deep.singh, manoj.kumar.subbarao

Enabling basic PTP feature in IDPF PMD using virtchnl messages.

Milena Olech (1):
  net/idpf: add a new API for PTP support

Soumyadeep Hore (3):
  net/idpf: add PTP virtchnl2 support
  net/intel: add support for Precision Time Protocol
  doc: add PTP IDPF documentation

 doc/guides/nics/idpf.rst                      |  16 +
 drivers/net/intel/common/tx.h                 |   1 +
 drivers/net/intel/idpf/base/virtchnl2.h       | 324 ++++++---
 drivers/net/intel/idpf/idpf_common_device.h   |   4 +
 drivers/net/intel/idpf/idpf_common_rxtx.c     | 186 +++--
 drivers/net/intel/idpf/idpf_common_rxtx.h     |  10 +
 drivers/net/intel/idpf/idpf_common_virtchnl.c |  34 +-
 drivers/net/intel/idpf/idpf_ethdev.c          | 275 ++++++++
 drivers/net/intel/idpf/idpf_ptp.c             | 646 ++++++++++++++++++
 drivers/net/intel/idpf/idpf_ptp.h             | 227 ++++++
 drivers/net/intel/idpf/meson.build            |   1 +
 11 files changed, 1562 insertions(+), 162 deletions(-)
 create mode 100644 drivers/net/intel/idpf/idpf_ptp.c
 create mode 100644 drivers/net/intel/idpf/idpf_ptp.h

-- 
2.34.1


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

end of thread, other threads:[~2026-03-02 11:19 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-24 12:08 [PATCH v1 0/4] Enable PTP feature for MEV Soumyadeep Hore
2025-10-24 12:08 ` [PATCH v1 1/4] net/idpf: add a new API for PTP support Soumyadeep Hore
2025-10-24 12:08 ` [PATCH v1 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2025-10-24 12:08 ` [PATCH v1 3/4] net/intel: add support for Precision Time Protocol Soumyadeep Hore
2025-10-24 12:08 ` [PATCH v1 4/4] doc: add PTP IDPF documentation Soumyadeep Hore
2025-10-24 16:28   ` Stephen Hemminger
2025-10-28  6:07   ` [PATCH v2 0/4] Enable PTP feature for MEV Soumyadeep Hore
2025-10-28  6:07     ` [PATCH v2 1/4] net/idpf: add a new API for PTP support Soumyadeep Hore
2025-10-28  6:07     ` [PATCH v2 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2025-10-28  6:07     ` [PATCH v2 3/4] net/intel: add support for Precision Time Protocol Soumyadeep Hore
2025-10-28  6:07     ` [PATCH v2 4/4] doc: add PTP IDPF documentation Soumyadeep Hore
2025-10-30  9:41       ` Bruce Richardson
2026-01-20 14:34       ` Stephen Hemminger
2025-11-03 16:06     ` [PATCH v3 0/4] Enable PTP feature for MEV Soumyadeep Hore
2025-11-03 16:06       ` [PATCH v3 1/4] net/idpf: add a new API for PTP support Soumyadeep Hore
2025-11-03 16:06       ` [PATCH v3 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2025-11-03 16:06       ` [PATCH v3 3/4] net/intel: add support for Precision Time Protocol Soumyadeep Hore
2025-12-16 12:43         ` Bruce Richardson
2025-11-03 16:06       ` [PATCH v3 4/4] doc: add PTP IDPF documentation Soumyadeep Hore
2026-01-20 19:11       ` [PATCH v4 0/4] Enable PTP feature for MEV Soumyadeep Hore
2026-01-20 19:11         ` [PATCH v4 1/4] net/idpf: add a new API for PTP support Soumyadeep Hore
2026-01-20 19:11         ` [PATCH v4 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2026-01-20 19:11         ` [PATCH v4 3/4] net/intel: add support for Precision Time Protocol Soumyadeep Hore
2026-01-23  0:04           ` [PATCH v5 0/4] Enable PTP feature for MEV Soumyadeep Hore
2026-01-22 23:40             ` Stephen Hemminger
2026-01-23  0:04             ` [PATCH v5 1/4] net/idpf: add a new API for PTP support Soumyadeep Hore
2026-02-03 11:56               ` Bruce Richardson
2026-01-23  0:04             ` [PATCH v5 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2026-02-03 12:52               ` Bruce Richardson
2026-02-14  7:10                 ` Hore, Soumyadeep
2026-02-14 19:49               ` [PATCH v6 0/4] Enable PTP feature for MEV Soumyadeep Hore
2026-02-14 19:49                 ` [PATCH v6 1/4] net/idpf/base: add a new API for PTP support Soumyadeep Hore
2026-02-26  9:57                   ` Kumar, Rajesh3
2026-02-14 19:49                 ` [PATCH v6 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2026-02-26 10:15                   ` Kumar, Rajesh3
2026-02-26 11:12                     ` Hore, Soumyadeep
2026-02-14 19:49                 ` [PATCH v6 3/4] net/idpf: add timesync support Soumyadeep Hore
2026-02-26 10:32                   ` Kumar, Rajesh3
2026-02-14 19:49                 ` [PATCH v6 4/4] doc/guides: add PTP IDPF documentation Soumyadeep Hore
2026-02-26 10:39                   ` Kumar, Rajesh3
2026-02-27  0:33                   ` [PATCH v7 0/4] Enable PTP feature for MEV Soumyadeep Hore
2026-02-27  0:33                     ` [PATCH v7 1/4] net/idpf/base: add a new API for PTP support Soumyadeep Hore
2026-02-27  0:33                     ` [PATCH v7 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2026-02-26 12:00                       ` Kumar, Rajesh3
2026-02-27  0:33                     ` [PATCH v7 3/4] net/idpf: add timesync support Soumyadeep Hore
2026-02-27  0:33                     ` [PATCH v7 4/4] doc/guides: add PTP IDPF documentation Soumyadeep Hore
2026-03-01  9:10                       ` [PATCH v8 0/4] Enable PTP feature for MEV Soumyadeep Hore
2026-03-01  9:10                         ` [PATCH v8 1/4] net/idpf/base: add a new API for PTP support Soumyadeep Hore
2026-03-01  9:10                         ` [PATCH v8 2/4] net/idpf: add PTP virtchnl2 support Soumyadeep Hore
2026-03-01  9:10                         ` [PATCH v8 3/4] net/idpf: add timesync support Soumyadeep Hore
2026-03-01  9:10                         ` [PATCH v8 4/4] doc/guides: add PTP IDPF documentation Soumyadeep Hore
2026-03-02 11:19                         ` [PATCH v8 0/4] Enable PTP feature for MEV Bruce Richardson
2026-01-23  0:04             ` [PATCH v5 3/4] net/intel: add support for PTP Soumyadeep Hore
2026-02-03 15:37               ` Bruce Richardson
2026-01-23  0:04             ` [PATCH v5 4/4] doc: add PTP IDPF documentation Soumyadeep Hore
2026-01-20 19:11         ` [PATCH v4 " Soumyadeep Hore
2026-01-20 14:56     ` [PATCH v2 0/4] Enable PTP feature for MEV Stephen Hemminger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox