Files
cubelinux-kernel/drivers/ptp/ptp_fc3.h
T
Greg Kroah-Hartman 598cf27219 Linux 6.19.3
Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org
Tested-by: Florian Fainelli <florian.fainelli@broadcom.com>
Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com>
Tested-by: Peter Schneider <pschneider1968@googlemail.com>
Tested-by: Jon Hunter <jonathanh@nvidia.com>
Tested-by: Salvatore Bonaccorso <carnil@debian.org>
Tested-by: Brett A C Sheffield <bacs@librecast.net>
Tested-by: Mark Brown <broonie@kernel.org>
Tested-by: Luna Jernberg <droidbittin@gmail.com>
Tested-by: Ronald Warsow <rwarsow@gmx.de>
Tested-by: Justin M. Forbes <jforbes@fedoraproject.org>
Tested-by: Ron Economos <re@w6rz.net>
Tested-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2026-02-19 16:33:27 +01:00

46 lines
1022 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* PTP hardware clock driver for the FemtoClock3 family of timing and
* synchronization devices.
*
* Copyright (C) 2023 Integrated Device Technology, Inc., a Renesas Company.
*/
#ifndef PTP_IDTFC3_H
#define PTP_IDTFC3_H
#include <linux/ktime.h>
#include <linux/ptp_clock.h>
#include <linux/regmap.h>
#define FW_FILENAME "idtfc3.bin"
#define MAX_FFO_PPB (244000)
#define TDC_GET_PERIOD (10)
struct idtfc3 {
struct ptp_clock_info caps;
struct ptp_clock *ptp_clock;
struct device *dev;
/* Mutex to protect operations from being interrupted */
struct mutex *lock;
struct device *mfd;
struct regmap *regmap;
struct idtfc3_hw_param hw_param;
u32 sub_sync_count;
u32 ns_per_sync;
int tdc_offset_sign;
u64 tdc_apll_freq;
u32 time_ref_freq;
u16 fod_n;
u8 lpf_mode;
/* Time counter */
u32 last_counter;
s64 ns;
u32 ns_per_counter;
u32 tc_update_period;
u32 tc_write_timeout;
s64 tod_write_overhead;
};
#endif /* PTP_IDTFC3_H */