]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
enetc: support PTP Sync packet one-step timestamping
authorYangbo Lu <yangbo.lu@nxp.com>
Mon, 12 Apr 2021 09:03:27 +0000 (17:03 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Apr 2021 20:34:21 +0000 (13:34 -0700)
commit7294380c5211687aa4d66166984b152ee84caf5f
treec43a894c12fa5354395ea3c19aebd1b6f9778e79
parentf768e75130159b5444ee691bbdd201bef8e5bb24
enetc: support PTP Sync packet one-step timestamping

This patch is to add support for PTP Sync packet one-step timestamping.
Since ENETC single-step register has to be configured dynamically per
packet for correctionField offeset and UDP checksum update, current
one-step timestamping packet has to be sent only when the last one
completes transmitting on hardware. So, on the TX, this patch handles
one-step timestamping packet as below:

- Trasmit packet immediately if no other one in transfer, or queue to
  skb queue if there is already one in transfer.
  The test_and_set_bit_lock() is used here to lock and check state.
- Start a work when complete transfer on hardware, to release the bit
  lock and to send one skb in skb queue if has.

And the configuration for one-step timestamping on ENETC before
transmitting is,

- Set one-step timestamping flag in extension BD.
- Write 30 bits current timestamp in tstamp field of extension BD.
- Update PTP Sync packet originTimestamp field with current timestamp.
- Configure single-step register for correctionField offeset and UDP
  checksum update.

Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Reviewed-by: Claudiu Manoil <claudiu.manoil@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/enetc/enetc.c
drivers/net/ethernet/freescale/enetc/enetc.h
drivers/net/ethernet/freescale/enetc/enetc_ethtool.c
drivers/net/ethernet/freescale/enetc/enetc_hw.h