34 lines
624 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
/* Marvell PTP driver
*
2026-01-29 22:25:33 +08:00
* Copyright (C) 2020 Marvell.
*
2026-01-21 18:59:54 +08:00
*/
#ifndef PTP_H
#define PTP_H
#include <linux/timecounter.h>
#include <linux/time64.h>
#include <linux/spinlock.h>
struct ptp {
struct pci_dev *pdev;
void __iomem *reg_base;
2026-01-29 22:25:33 +08:00
u64 (*read_ptp_tstmp)(struct ptp *ptp);
spinlock_t ptp_lock; /* lock */
struct hrtimer hrtimer;
ktime_t last_ts;
2026-01-21 18:59:54 +08:00
u32 clock_rate;
2026-01-29 22:25:33 +08:00
u32 clock_period;
2026-01-21 18:59:54 +08:00
};
2026-01-29 22:25:33 +08:00
struct rvu;
2026-01-21 18:59:54 +08:00
struct ptp *ptp_get(void);
void ptp_put(struct ptp *ptp);
2026-01-29 22:25:33 +08:00
void ptp_start(struct rvu *rvu, u64 sclk, u32 ext_clk_freq, u32 extts);
2026-01-21 18:59:54 +08:00
extern struct pci_driver ptp_driver;
#endif