From: Jacob Keller <jacob.e.keller@intel.com>
To: Arthur Kiyanovski <akiyano@amazon.com>,
David Miller <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>, <netdev@vger.kernel.org>
Cc: Richard Cochran <richardcochran@gmail.com>,
Eric Dumazet <edumazet@google.com>,
Paolo Abeni <pabeni@redhat.com>,
David Woodhouse <dwmw2@infradead.org>,
Thomas Gleixner <tglx@linutronix.de>,
Miroslav Lichvar <mlichvar@redhat.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
Wen Gu <guwen@linux.alibaba.com>,
Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
"David Woodhouse" <dwmw@amazon.com>,
Yonatan Sarna <ysarna@amazon.com>,
"Zorik Machulsky" <zorik@amazon.com>,
Alexander Matushevsky <matua@amazon.com>,
"Saeed Bshara" <saeedb@amazon.com>, Matt Wilson <msw@amazon.com>,
Anthony Liguori <aliguori@amazon.com>,
Nafea Bshara <nafea@amazon.com>,
Evgeny Schmeilin <evgenys@amazon.com>,
Netanel Belgazal <netanel@amazon.com>,
Ali Saidi <alisaidi@amazon.com>,
Benjamin Herrenschmidt <benh@amazon.com>,
Noam Dagan <ndagan@amazon.com>,
David Arinzon <darinzon@amazon.com>,
Evgeny Ostrovsky <evostrov@amazon.com>,
Ofir Tabachnik <ofirt@amazon.com>,
Amit Bernstein <amitbern@amazon.com>,
<linux-kselftest@vger.kernel.org>, <linux-doc@vger.kernel.org>,
<shuah@kernel.org>, Jonathan Corbet <corbet@lwn.net>,
Shuah Khan <skhan@linuxfoundation.org>,
Simon Horman <horms@kernel.org>, <vadim.fedorenko@linux.dev>
Subject: Re: [PATCH v4 net-next 1/7] ptp: Add ioctls for PHC timestamps with quality attributes
Date: Tue, 14 Jul 2026 17:45:34 -0700 [thread overview]
Message-ID: <e58af0ae-ad06-4f77-8ebd-f3678d6dde66@intel.com> (raw)
In-Reply-To: <20260714020340.25014-2-akiyano@amazon.com>
On 7/13/2026 7:03 PM, Arthur Kiyanovski wrote:
> Introduce two new ioctls that extend existing PTP timestamp interfaces
> with clock quality information:
>
> - PTP_SYS_OFFSET_EXTENDED_ATTRS: Extends PTP_SYS_OFFSET_EXTENDED
> - PTP_SYS_OFFSET_PRECISE_ATTRS: Extends PTP_SYS_OFFSET_PRECISE
>
> These ioctls provide quality attributes alongside timestamps:
>
> 1. error_bound: Maximum deviation from true time (nanoseconds), based
> on device's internal clock state
> 2. clock_status: Synchronization state (unknown, initializing,
> synchronized, free-running, unreliable)
> 3. timescale: Time reference (TAI, UTC, etc.)
> 4. counter_value: Raw system counter (e.g. TSC ticks) captured by the
> timekeeping core alongside each system timestamp
> 5. counter_id: Identifies the counter source (e.g. TSC, ARM arch counter)
>
> This supports three use cases:
>
> 1. Managed PHC devices (e.g., ENA, vmclock) that maintain their own
> synchronization and can report quality metrics directly to userspace
> without requiring ptp4l
>
> 2. Applications that need complete time quality information in a single
> call, regardless of how the PHC is synchronized
>
> 3. VMMs that need raw system counter values paired
> with PTP timestamps for feed-forward clock calibration, avoiding the
> feedback loop inherent in NTP-style synchronization
>
I'm also wondering if this can expose device-known error bounds on
timestamps even for devices which are operated as synchronized by ptp4l..
> Timescale definitions use a Continuity/Discipline framework to describe
> timeline properties and steering behavior consistently across all
> entries.
>
> This implementation is based on the original RFC and the UAPI design
> discussion linked below.
>
Not a dig against this patch set, nor a request that you work to
implement anything else, but I am beginning to wonder if/when it would
make sense to transition from ioctl-based implementation to genetlink or
something. We did something similar for ethtool ioctls a few years ago.
I know the maintainer for PTP has some distaste for netlink and prefers
the simplicity of the ioctls.. but I think we're moving past where the
ioctls are "simple". Now that we have ynl tools, it has gotten easier to
implement properly. It makes extending the API much easier for the
future vs the array of ioctls we now carry for legacy implementations.
>
> diff --git a/include/uapi/linux/ptp_clock.h b/include/uapi/linux/ptp_clock.h
> index 46d45f902486..88c2da6bc8c6 100644
> --- a/include/uapi/linux/ptp_clock.h
> +++ b/include/uapi/linux/ptp_clock.h
> @@ -79,6 +79,137 @@
> */
> #define PTP_PEROUT_V1_VALID_FLAGS (0)
>
> +/*
> + * Clock status values for struct ptp_clock_attrs.status
> + */
> +enum ptp_clock_status {
> + /* Clock synchronization status cannot be reliably determined */
> + PTP_CLOCK_STATUS_UNKNOWN = 0,
> +
> + /* Clock is acquiring synchronization */
> + PTP_CLOCK_STATUS_INITIALIZING = 1,
> +
> + /* Clock is synchronized and maintained accurately by the device */
> + PTP_CLOCK_STATUS_SYNCED = 2,
> +
> + /* Clock is drifting but remains within acceptable error bounds */
> + PTP_CLOCK_STATUS_HOLDOVER = 3,
> +
> + /* Clock is drifting without adjustments or synchronization */
> + PTP_CLOCK_STATUS_FREE_RUNNING = 4,
> +
> + /* Clock is unreliable, the error_bound value cannot be trusted */
> + PTP_CLOCK_STATUS_UNRELIABLE = 5
> +};
Do you have any thought on how ptp4l synchronizing the clock should
impact the clock status here? Is this intended purely for device/drivers
which have their own synchronization and not for ones which expose a
clock that is synchronized by userspace? Would it make sense to have a
mode that is something like "this clock has been modified by userspace"
after any call to the .adjtime or .adjfreq is made?
> +
> +/*
> + * Clock timescale values for struct ptp_clock_attrs.timescale.
> + *
> + * These definitions describe the mathematical properties and reference
> + * epochs of the timescale provided by the PHC.
> + *
> + * Discipline: Describes the frequency/phase steering behavior.
> + * Continuity: Describes whether the timeline is uninterrupted.
> + */
> +enum ptp_clock_timescale {
> + /* Unknown or unspecified timescale */
> + PTP_TIMESCALE_UNKNOWN = 0,
> +
> + /********************* Absolute Atomic Timescales *********************
> + * These timescales are continuous, monotonic standards based on atomic
> + * physics. They do not experience phase jumps.
> + **********************************************************************/
> +
> + /**
> + * International Atomic Time (TAI)
> + * Epoch: 1958-01-01 00:00:00.
> + * Continuity: Strictly monotonic and continuous; no leap seconds.
> + * Discipline: Primary atomic reference; no phase jumps.
> + */
> + PTP_TIMESCALE_TAI = 1,
> +
> + /**
> + * Terrestrial Time (TT)
> + * Epoch: 1958-01-01 00:00:00.
> + * Continuity: Strictly monotonic and continuous; no leap seconds.
> + * Discipline: Defined as TAI + 32.184s constant offset.
> + */
> + PTP_TIMESCALE_TT = 2,
> +
> + /**
> + * Global Positioning System (GPS) Time
> + * Epoch: 1980-01-06 00:00:00.
> + * Continuity: Strictly monotonic and continuous; no leap seconds.
> + * Discipline: Defined by the GPS constellation; fixed offset from TAI.
> + */
> + PTP_TIMESCALE_GPS = 3,
> +
> + /****************** UTC-Based Timescales (Civil Time) *****************
> + * These timescales are derived from TAI but adjusted to align with
> + * the Earth's rotation, primarily through leap seconds.
> + **********************************************************************/
> +
> + /**
> + * Coordinated Universal Time (UTC) - Wall-clock (CLOCK_REALTIME)
> + * Epoch: 1970-01-01 00:00:00 (Unix epoch).
> + * Continuity: Discontinuous; subject to 1-second leap second
> + * phase jumps.
> + * Discipline: Frequency steered; incorporates leap second corrections.
> + *
> + * Note: Leap-smeared UTC MUST NOT be advertised as PTP_TIMESCALE_UTC.
> + * Smear algorithms are not standardized and the resulting timescale
> + * is ambiguous. Implementations using smeared UTC MUST advertise
> + * PTP_TIMESCALE_UNKNOWN or PTP_TIMESCALE_PROPRIETARY instead.
> + */
> + PTP_TIMESCALE_UTC = 4,
> +
> + /**
> + * POSIX Time (Unix Time)
> + * Epoch: 1970-01-01 00:00:00.
> + * Continuity: Discontinuous; leap seconds handled by
> + * repeating/skipping values.
> + * Discipline: Follows UTC frequency steering and phase jumps.
> + */
> + PTP_TIMESCALE_POSIX = 5,
> +
> + /****************** System-Relative Monotonic Clocks ******************
> + * These timescales are relative to a system event (like boot)
> + * and are not synchronized to an external atomic standard.
> + **********************************************************************/
> +
> + /**
> + * Monotonic System Clock (CLOCK_MONOTONIC)
> + * Epoch: Arbitrary (System boot time).
> + * Continuity: Strictly monotonic; no leap seconds.
> + * Discipline: Frequency steered to match system reference;
> + * does not advance during suspend.
> + */
> + PTP_TIMESCALE_MONOTONIC = 6,
> +
> + /**
> + * Raw Monotonic System Clock (CLOCK_MONOTONIC_RAW)
> + * Epoch: Arbitrary (System boot time).
> + * Continuity: Strictly monotonic; no leap seconds.
> + * Discipline: Raw hardware oscillator; no frequency steering
> + * or discipline.
> + */
> + PTP_TIMESCALE_MONOTONIC_RAW = 7,
> +
> + /**
> + * Boot Time System Clock (CLOCK_BOOTTIME)
> + * Epoch: Arbitrary (System boot time).
> + * Continuity: Strictly monotonic and continuous; no leap seconds.
> + * Discipline: Frequency steered to match system reference;
> + * advances during suspend.
> + */
> + PTP_TIMESCALE_BOOTTIME = 8,
> +
> + /********************** Vendor-Specific Timescale *********************/
> +
> + /* A proprietary or vendor-specific timescale with custom rules. */
> + PTP_TIMESCALE_PROPRIETARY = 9,
> +};
I appreciate the detailed explanations here as it helps to disambiguate
the modes.
> @@ -106,7 +350,11 @@ struct ptp_clock_caps {
> /* Whether the clock supports adjust phase */
> int adjust_phase;
> int max_phase_adj; /* Maximum phase adjustment in nanoseconds. */
> - int rsv[11]; /* Reserved for future use. */
> + /* Whether the clock supports extended timestamps with attributes */
> + int extended_attrs;
> + /* Whether the clock supports precise cross-timestamps with attributes */
> + int precise_attrs;
> + int rsv[9]; /* Reserved for future use. */
I do kind of wish we had opted for bit flags here given the number of
ints being used as booleans.. :( A lot of wasted reserved space.
> };
>
> struct ptp_extts_request {
> @@ -252,6 +500,10 @@ struct ptp_pin_desc {
> _IOWR(PTP_CLK_MAGIC, 21, struct ptp_sys_offset_precise)
> #define PTP_SYS_OFFSET_EXTENDED_CYCLES \
> _IOWR(PTP_CLK_MAGIC, 22, struct ptp_sys_offset_extended)
> +#define PTP_SYS_OFFSET_PRECISE_ATTRS \
> + _IOWR(PTP_CLK_MAGIC, 23, struct ptp_sys_offset_attrs)
> +#define PTP_SYS_OFFSET_EXTENDED_ATTRS \
> + _IOWR(PTP_CLK_MAGIC, 24, struct ptp_sys_offset_attrs)
>
> struct ptp_extts_event {
> struct ptp_clock_time t; /* Time event occurred. */
next prev parent reply other threads:[~2026-07-15 0:45 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 2:03 [PATCH v4 net-next 0/7] ptp: Add PHC timestamp quality attributes Arthur Kiyanovski
2026-07-14 2:03 ` [PATCH v4 net-next 1/7] ptp: Add ioctls for PHC timestamps with " Arthur Kiyanovski
2026-07-15 0:45 ` Jacob Keller [this message]
2026-07-14 2:03 ` [PATCH v4 net-next 2/7] selftests/ptp: Extract print_system_timestamp helper in testptp Arthur Kiyanovski
2026-07-14 2:03 ` [PATCH v4 net-next 3/7] selftests/ptp: Add testptp support for attributes ioctls Arthur Kiyanovski
2026-07-14 2:03 ` [PATCH v4 net-next 4/7] ptp: ptp_vmclock: Implement " Arthur Kiyanovski
2026-07-14 2:03 ` [PATCH v4 net-next 5/7] net: ena: Update PHC admin interface for error bound support Arthur Kiyanovski
2026-07-14 2:03 ` [PATCH v4 net-next 6/7] net: ena: Add error bound to PHC communication layer Arthur Kiyanovski
2026-07-14 2:03 ` [PATCH v4 net-next 7/7] net: ena: Implement gettimexattrs64 callback for PTP attributes Arthur Kiyanovski
2026-07-15 0:47 ` Jacob Keller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e58af0ae-ad06-4f77-8ebd-f3678d6dde66@intel.com \
--to=jacob.e.keller@intel.com \
--cc=akiyano@amazon.com \
--cc=aliguori@amazon.com \
--cc=alisaidi@amazon.com \
--cc=amitbern@amazon.com \
--cc=andrew+netdev@lunn.ch \
--cc=benh@amazon.com \
--cc=corbet@lwn.net \
--cc=darinzon@amazon.com \
--cc=davem@davemloft.net \
--cc=dwmw2@infradead.org \
--cc=dwmw@amazon.com \
--cc=edumazet@google.com \
--cc=evgenys@amazon.com \
--cc=evostrov@amazon.com \
--cc=guwen@linux.alibaba.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=matua@amazon.com \
--cc=mlichvar@redhat.com \
--cc=msw@amazon.com \
--cc=nafea@amazon.com \
--cc=ndagan@amazon.com \
--cc=netanel@amazon.com \
--cc=netdev@vger.kernel.org \
--cc=ofirt@amazon.com \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=saeedb@amazon.com \
--cc=shuah@kernel.org \
--cc=skhan@linuxfoundation.org \
--cc=tglx@linutronix.de \
--cc=vadim.fedorenko@linux.dev \
--cc=xuanzhuo@linux.alibaba.com \
--cc=ysarna@amazon.com \
--cc=zorik@amazon.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox