Hi Tristram, thank you for joining this thread. On Thursday, 19 November 2020, 19:51:15 CET, Tristram.Ha@xxxxxxxxxxxxx wrote: > > On Thursday, 19 November 2020, 00:40:18 CET, Vladimir Oltean wrote: > > > On Wed, Nov 18, 2020 at 09:30:01PM +0100, Christian Eggers wrote: > > > [...] > > [...] > These are general comments about this PTP patch. > > The initial proposal in tag_ksz.c is for the switch driver to provide > callback functions to handle receiving and transmitting. Then each switch > driver can be added to process the tail tag in its own driver and leave > tag_ksz.c unchanged. > It was rejected because of wanting to keep tag_ksz.c code and switch driver > code separate and concern about performance. > > Now tag_ksz.c is filled with PTP code that is not relevant for other > switches and will need to be changed again when another switch driver with > PTP function is added. > Can we implement that callback mechanism? I didn't read the full history of the tagging driver. Vladimir already asked whether I could put more stuff into the device driver. Lets wait for his advice how to do this best. > One issue with transmission with PTP enabled is that the tail tag needs to > contain 4 additional bytes. When the PTP function is off the bytes are > not added. This should be monitored all the time. Currently, enabling the PTP function is only dependent on CONFIG_NET_DSA_MICROCHIP_KSZ9477_PTP. The same condition is used for inserting the additional 4 bytes. > The extra 4 bytes are only used for 1-step Pdelay_Resp. It should contain > the receive timestamp of previous Pdelay_Req with latency adjusted. The > correction field in Pdelay_Resp should be zero. It may be a hardware bug > to have wrong UDP checksum when the message is sent. Thanks for clarifying this. > I think the right implementation is for the driver to remember this receive > timestamp of Pdelay_Req and puts it in the tail tag when it sees a 1-step > Pdelay_Resp is sent. I would like keep the current method ("time stamp to correction" on RX, "correction to tail tag" on TX). Otherwise the driver would have to keep a list of rx time stamps which could grow if no corresponding PDelay_Resp is sent. It was also discussed about creating a new interface for bringing the time stamp to user space and then back into the kernel. But this has been rejected. > There is one more requirement that is a little difficult to do. The > calculated peer delay needs to be programmed in hardware register, but the > regular PTP stack has no way to send that command. I already recognized that register. Can you please provide some more information what the switch does with this value? At least when I connect only two boards, I get almost perfect synchronization (PPS output) without writing anything to this register. Looks like this only affects forwarded messages, right? > I think the driver has to do its own calculation by snooping on the > Pdelay_Req/Pdelay_Resp/Pdelay_Resp_Follow_Up messages. As I already wrote, I am definitely not an expert for PTP. But if I remember correctly, the delay values used by ptp4l are the result of filtering several delay measurements. I don't think that this algorithm should be duplicated in the kernel. On the other hand, there is currently no interface for this. In my internal tree, I have created sysfs entries for this, so that (a modified version of) ptp4l could write the measured values. I also recognized, that ptp4l has some kind of remote interface (I haven't really looked at it). Maybe it is possible to do necessary management of the switch outside ptp4l in a separate process. One other important question was about the internal "filter". Richard rejected the idea of "manually" switching between the "master" and "slave" mode. Is there any (undocumented) register bit for disabling filtering of Sync/ Delay_Req messages entirely? > The receive and transmit latencies are different for different connected > speed. So the driver needs to change them when the link changes. For > that reason the PTP stack should not use its own latency values as > generally the application does not care about the linked speed. Up to now, I didn't configure any latency values in ptp4l. I assume that the power on default values are fine for 1000 MBit/s. Can you provide the latency values for other links speeds? Would it be a major limitation if PTP functionality depend on 1000 MBit/s? regards Christian