1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Marvell RVU Ethernet driver 3 * 4 * Copyright (C) 2020 Marvell. 5 * 6 */ 7 8 #ifndef OTX2_PTP_H 9 #define OTX2_PTP_H 10 11 int otx2_ptp_init(struct otx2_nic *pfvf); 12 void otx2_ptp_destroy(struct otx2_nic *pfvf); 13 14 int otx2_ptp_clock_index(struct otx2_nic *pfvf); 15 int otx2_ptp_tstamp2time(struct otx2_nic *pfvf, u64 tstamp, u64 *tsns); 16 17 #endif 18