Re: [PATCH net-next 0/5] PTP support for the SJA1105 DSA driver
From: Richard Cochran <richardcochran@gmail.com>
Date: 2019-05-31 16:09:15
Also in:
lkml
From: Richard Cochran <richardcochran@gmail.com>
Date: 2019-05-31 16:09:15
Also in:
lkml
On Fri, May 31, 2019 at 06:23:34PM +0300, Vladimir Oltean wrote:
You mean to queue it and subvert DSA's own RX timestamping callback?
No, use the callback.
Why would I do that? Just so as not to introduce my .can_timestamp callback?
Right, the .can_timestamp is unneeded, AFAICT.
quoted
Now I'm starting to understand your series. I think it can be done in simpler way... sja1105_rcv_meta_state_machine - can and should be at the driver level and not at the port level.Can: yes. Should: why?
To keep it simple and robust.
One important aspect makes this need be a little bit more complicated: reconstructing these RX timestamps. You see, there is a mutex on the SPI bus, so in practice I do need the sja1105_port_rxtstamp_work for exactly this purpose - to read the timestamping clock over SPI.
Sure. But you schedule the work after a META frame. And no busy waiting is needed. Thanks, Richard