1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Marvell OcteonTx2 PTP support for ethernet driver */ 3 4 #ifndef OTX2_PTP_H 5 #define OTX2_PTP_H 6 7 int otx2_ptp_init(struct otx2_nic *pfvf); 8 void otx2_ptp_destroy(struct otx2_nic *pfvf); 9 10 int otx2_ptp_clock_index(struct otx2_nic *pfvf); 11 int otx2_ptp_tstamp2time(struct otx2_nic *pfvf, u64 tstamp, u64 *tsns); 12 13 #endif 14