Re: [RFC PATCH net-next 7/9] net: dsa: microchip: ksz9477: add hardware time stamping support
From: Vladimir Oltean <olteanv@gmail.com>
Date: 2020-10-22 10:51:21
Also in:
linux-devicetree, lkml
On Thu, Oct 22, 2020 at 12:01:26PM +0300, Vladimir Oltean wrote:
On Wed, Oct 21, 2020 at 08:02:17PM -0700, Richard Cochran wrote:quoted
On Thu, Oct 22, 2020 at 02:39:35AM +0300, Vladimir Oltean wrote:quoted
So how _does_ that work for TI PHYTER? As far as we understand, the PHYTER appears to autonomously mangle PTP packets in the following way: - subtracting t2 on RX from the correctionField of the Pdelay_Req - adding t3 on TX to the correctionField of the Pdelay_RespThe Phyter does not support peer-to-peer one step.Ok, that's my mistake for not double-checking, sorry.quoted
The only driver that implements it is ptp_ines.c. And *that* driver/HW implements it correctly.Is there documentation available for this timestamping block? I might be missing some data, as the kernel driver is fairly pass-through for the TX timestamping of the Pdelay_Resp, so the hardware might just 'do the right thing'. I believe the answer lies within the timestamper's per-port RX FIFO. Just guessing here, but I suspect that the RX FIFO doesn't get cleared immediately after the host queries it, and the hardware caches the last 100 events from the pool and uses the RX timestamps of Pdelay_Req as t2 in the process of updating the correctionField of Pdelay_Resp on TX. Would that be correct?
Ah, no, I think I'm wrong. As per your own description here: https://lwn.net/Articles/807970/ If the hardware supports p2p one-step, it subtracts the ingress time stamp value from the Pdelay_Request correction field. The user space software stack then simply copies the correction field into the Pdelay_Response, and on transmission the hardware adds the egress time stamp into the correction field. So we were correct about the behavior, just not about the target hardware. So, that's just not how this hardware works. What do you recommend? Keeping a FIFO of Pdelay_Req RX timestamps, and matching them to Pdelay_Resp messages on TX, all of that contained within tag_ksz.c?