blob: 15346e840caa9833db3c5efae187d03fee6803de [file] [log] [blame]
Richard Cochrand94ba802011-04-22 12:03:08 +02001/*
2 * PTP 1588 clock support - private declarations for the core module.
3 *
4 * Copyright (C) 2010 OMICRON electronics GmbH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#ifndef _PTP_PRIVATE_H_
21#define _PTP_PRIVATE_H_
22
23#include <linux/cdev.h>
24#include <linux/device.h>
25#include <linux/mutex.h>
26#include <linux/posix-clock.h>
27#include <linux/ptp_clock.h>
28#include <linux/ptp_clock_kernel.h>
29#include <linux/time.h>
30
31#define PTP_MAX_TIMESTAMPS 128
32#define PTP_BUF_TIMESTAMPS 30
33
34struct timestamp_event_queue {
35 struct ptp_extts_event buf[PTP_MAX_TIMESTAMPS];
36 int head;
37 int tail;
38 spinlock_t lock;
39};
40
41struct ptp_clock {
42 struct posix_clock clock;
Vladis Dronov89e8fc92019-12-27 03:26:27 +010043 struct device dev;
Richard Cochrand94ba802011-04-22 12:03:08 +020044 struct ptp_clock_info *info;
45 dev_t devid;
46 int index; /* index into clocks.map */
47 struct pps_device *pps_source;
Richard Cochran39a8cbd2012-09-22 07:02:01 +000048 long dialed_frequency; /* remembers the frequency adjustment */
Richard Cochrand94ba802011-04-22 12:03:08 +020049 struct timestamp_event_queue tsevq; /* simple fifo for time stamps */
50 struct mutex tsevq_mux; /* one process at a time reading the fifo */
Richard Cochran60923152014-03-20 22:21:52 +010051 struct mutex pincfg_mux; /* protect concurrent info->pin_config access */
Richard Cochrand94ba802011-04-22 12:03:08 +020052 wait_queue_head_t tsev_wq;
53 int defunct; /* tells readers to go away when clock is being removed */
Richard Cochran653104d2014-03-20 22:21:54 +010054 struct device_attribute *pin_dev_attr;
55 struct attribute **pin_attr;
56 struct attribute_group pin_attr_group;
Dmitry Torokhovea053b22017-02-14 10:23:34 -080057 /* 1st entry is a pointer to the real group, 2nd is NULL terminator */
58 const struct attribute_group *pin_attr_groups[2];
Richard Cochrand94ba802011-04-22 12:03:08 +020059};
60
61/*
62 * The function queue_cnt() is safe for readers to call without
63 * holding q->lock. Readers use this function to verify that the queue
64 * is nonempty before proceeding with a dequeue operation. The fact
65 * that a writer might concurrently increment the tail does not
66 * matter, since the queue remains nonempty nonetheless.
67 */
68static inline int queue_cnt(struct timestamp_event_queue *q)
69{
70 int cnt = q->tail - q->head;
71 return cnt < 0 ? PTP_MAX_TIMESTAMPS + cnt : cnt;
72}
73
74/*
75 * see ptp_chardev.c
76 */
77
Richard Cochran60923152014-03-20 22:21:52 +010078/* caller must hold pincfg_mux */
79int ptp_set_pinfunc(struct ptp_clock *ptp, unsigned int pin,
80 enum ptp_pin_function func, unsigned int chan);
81
Richard Cochrand94ba802011-04-22 12:03:08 +020082long ptp_ioctl(struct posix_clock *pc,
83 unsigned int cmd, unsigned long arg);
84
85int ptp_open(struct posix_clock *pc, fmode_t fmode);
86
87ssize_t ptp_read(struct posix_clock *pc,
88 uint flags, char __user *buf, size_t cnt);
89
90uint ptp_poll(struct posix_clock *pc,
91 struct file *fp, poll_table *wait);
92
93/*
94 * see ptp_sysfs.c
95 */
96
Greg Kroah-Hartman34991162013-07-24 15:05:20 -070097extern const struct attribute_group *ptp_groups[];
Richard Cochrand94ba802011-04-22 12:03:08 +020098
Dmitry Torokhovea053b22017-02-14 10:23:34 -080099int ptp_populate_pin_groups(struct ptp_clock *ptp);
100void ptp_cleanup_pin_groups(struct ptp_clock *ptp);
Richard Cochrand94ba802011-04-22 12:03:08 +0200101
102#endif