blob: 853b79b6b30eadbadb3dc90d8d401bbd7cba46e5 [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Richard Cochrand94ba802011-04-22 12:03:08 +02002/*
3 * PTP 1588 clock support - private declarations for the core module.
4 *
5 * Copyright (C) 2010 OMICRON electronics GmbH
Richard Cochrand94ba802011-04-22 12:03:08 +02006 */
7#ifndef _PTP_PRIVATE_H_
8#define _PTP_PRIVATE_H_
9
10#include <linux/cdev.h>
11#include <linux/device.h>
Grygorii Strashkod9535cb2017-07-28 17:30:02 -050012#include <linux/kthread.h>
Richard Cochrand94ba802011-04-22 12:03:08 +020013#include <linux/mutex.h>
14#include <linux/posix-clock.h>
15#include <linux/ptp_clock.h>
16#include <linux/ptp_clock_kernel.h>
17#include <linux/time.h>
18
19#define PTP_MAX_TIMESTAMPS 128
20#define PTP_BUF_TIMESTAMPS 30
21
22struct timestamp_event_queue {
23 struct ptp_extts_event buf[PTP_MAX_TIMESTAMPS];
24 int head;
25 int tail;
26 spinlock_t lock;
27};
28
29struct ptp_clock {
30 struct posix_clock clock;
Vladis Dronova33121e2019-12-27 03:26:27 +010031 struct device dev;
Richard Cochrand94ba802011-04-22 12:03:08 +020032 struct ptp_clock_info *info;
33 dev_t devid;
34 int index; /* index into clocks.map */
35 struct pps_device *pps_source;
Richard Cochran39a8cbd2012-09-22 07:02:01 +000036 long dialed_frequency; /* remembers the frequency adjustment */
Richard Cochrand94ba802011-04-22 12:03:08 +020037 struct timestamp_event_queue tsevq; /* simple fifo for time stamps */
38 struct mutex tsevq_mux; /* one process at a time reading the fifo */
Richard Cochran60923152014-03-20 22:21:52 +010039 struct mutex pincfg_mux; /* protect concurrent info->pin_config access */
Richard Cochrand94ba802011-04-22 12:03:08 +020040 wait_queue_head_t tsev_wq;
41 int defunct; /* tells readers to go away when clock is being removed */
Richard Cochran653104d2014-03-20 22:21:54 +010042 struct device_attribute *pin_dev_attr;
43 struct attribute **pin_attr;
44 struct attribute_group pin_attr_group;
Dmitry Torokhov85a66e52017-02-14 10:23:34 -080045 /* 1st entry is a pointer to the real group, 2nd is NULL terminator */
46 const struct attribute_group *pin_attr_groups[2];
Grygorii Strashkod9535cb2017-07-28 17:30:02 -050047 struct kthread_worker *kworker;
48 struct kthread_delayed_work aux_work;
Richard Cochrand94ba802011-04-22 12:03:08 +020049};
50
Yangbo Lu5d43f952021-06-30 16:11:52 +080051#define info_to_vclock(d) container_of((d), struct ptp_vclock, info)
52#define cc_to_vclock(d) container_of((d), struct ptp_vclock, cc)
53#define dw_to_vclock(d) container_of((d), struct ptp_vclock, refresh_work)
54
55struct ptp_vclock {
56 struct ptp_clock *pclock;
57 struct ptp_clock_info info;
58 struct ptp_clock *clock;
59 struct cyclecounter cc;
60 struct timecounter tc;
61 spinlock_t lock; /* protects tc/cc */
62};
63
Richard Cochrand94ba802011-04-22 12:03:08 +020064/*
65 * The function queue_cnt() is safe for readers to call without
66 * holding q->lock. Readers use this function to verify that the queue
67 * is nonempty before proceeding with a dequeue operation. The fact
68 * that a writer might concurrently increment the tail does not
69 * matter, since the queue remains nonempty nonetheless.
70 */
71static inline int queue_cnt(struct timestamp_event_queue *q)
72{
73 int cnt = q->tail - q->head;
74 return cnt < 0 ? PTP_MAX_TIMESTAMPS + cnt : cnt;
75}
76
77/*
78 * see ptp_chardev.c
79 */
80
Richard Cochran60923152014-03-20 22:21:52 +010081/* caller must hold pincfg_mux */
82int ptp_set_pinfunc(struct ptp_clock *ptp, unsigned int pin,
83 enum ptp_pin_function func, unsigned int chan);
84
Richard Cochrand94ba802011-04-22 12:03:08 +020085long ptp_ioctl(struct posix_clock *pc,
86 unsigned int cmd, unsigned long arg);
87
88int ptp_open(struct posix_clock *pc, fmode_t fmode);
89
90ssize_t ptp_read(struct posix_clock *pc,
91 uint flags, char __user *buf, size_t cnt);
92
Al Viroafc9a422017-07-03 06:39:46 -040093__poll_t ptp_poll(struct posix_clock *pc,
Richard Cochrand94ba802011-04-22 12:03:08 +020094 struct file *fp, poll_table *wait);
95
96/*
97 * see ptp_sysfs.c
98 */
99
Greg Kroah-Hartman34991162013-07-24 15:05:20 -0700100extern const struct attribute_group *ptp_groups[];
Richard Cochrand94ba802011-04-22 12:03:08 +0200101
Dmitry Torokhov85a66e52017-02-14 10:23:34 -0800102int ptp_populate_pin_groups(struct ptp_clock *ptp);
103void ptp_cleanup_pin_groups(struct ptp_clock *ptp);
Richard Cochrand94ba802011-04-22 12:03:08 +0200104
Yangbo Lu5d43f952021-06-30 16:11:52 +0800105struct ptp_vclock *ptp_vclock_register(struct ptp_clock *pclock);
106void ptp_vclock_unregister(struct ptp_vclock *vclock);
Richard Cochrand94ba802011-04-22 12:03:08 +0200107#endif