2020-08-24 21:20:01 +05:30
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/* Marvell PTP driver
|
|
|
|
*
|
2021-08-27 17:16:44 +05:30
|
|
|
* Copyright (C) 2020 Marvell.
|
|
|
|
*
|
2020-08-24 21:20:01 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
2022-02-21 12:15:07 +05:30
|
|
|
u64 (*read_ptp_tstmp)(struct ptp *ptp);
|
|
|
|
spinlock_t ptp_lock; /* lock */
|
2022-09-10 13:24:15 +05:30
|
|
|
struct hrtimer hrtimer;
|
|
|
|
ktime_t last_ts;
|
2020-08-24 21:20:01 +05:30
|
|
|
u32 clock_rate;
|
2022-09-10 13:24:15 +05:30
|
|
|
u32 clock_period;
|
2020-08-24 21:20:01 +05:30
|
|
|
};
|
|
|
|
|
2023-08-21 16:06:29 +05:30
|
|
|
struct rvu;
|
2020-08-24 21:20:01 +05:30
|
|
|
struct ptp *ptp_get(void);
|
|
|
|
void ptp_put(struct ptp *ptp);
|
2023-08-21 16:06:29 +05:30
|
|
|
void ptp_start(struct rvu *rvu, u64 sclk, u32 ext_clk_freq, u32 extts);
|
2020-08-24 21:20:01 +05:30
|
|
|
|
|
|
|
extern struct pci_driver ptp_driver;
|
|
|
|
|
|
|
|
#endif
|