blob: 94048547f29ad424e27013c4eaa17ca6ca28c422 [file] [log] [blame]
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07001/*
2 * PPS API kernel header
3 *
4 * Copyright (C) 2009 Rodolfo Giometti <giometti@linux.it>
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
Alexander Gordeev7a21a3c2011-01-12 17:00:49 -080021#ifndef LINUX_PPS_KERNEL_H
22#define LINUX_PPS_KERNEL_H
23
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070024#include <linux/pps.h>
25
26#include <linux/cdev.h>
27#include <linux/device.h>
28#include <linux/time.h>
29
30/*
31 * Global defines
32 */
33
Alexander Gordeev5e196d32011-01-12 17:00:51 -080034struct pps_device;
35
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070036/* The specific PPS source info */
37struct pps_source_info {
38 char name[PPS_MAX_NAME_LEN]; /* simbolic name */
39 char path[PPS_MAX_NAME_LEN]; /* path of connected device */
40 int mode; /* PPS's allowed mode */
41
Alexander Gordeev5e196d32011-01-12 17:00:51 -080042 void (*echo)(struct pps_device *pps,
43 int event, void *data); /* PPS echo function */
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070044
45 struct module *owner;
46 struct device *dev;
47};
48
Alexander Gordeev6f4229b2011-01-12 17:00:50 -080049struct pps_event_time {
Alexander Gordeeve2c18e42011-01-12 17:00:57 -080050#ifdef CONFIG_NTP_PPS
51 struct timespec ts_raw;
52#endif /* CONFIG_NTP_PPS */
Alexander Gordeev6f4229b2011-01-12 17:00:50 -080053 struct timespec ts_real;
54};
55
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070056/* The main struct */
57struct pps_device {
58 struct pps_source_info info; /* PSS source info */
59
60 struct pps_kparams params; /* PPS's current params */
61
62 __u32 assert_sequence; /* PPS' assert event seq # */
63 __u32 clear_sequence; /* PPS' clear event seq # */
64 struct pps_ktime assert_tu;
65 struct pps_ktime clear_tu;
66 int current_mode; /* PPS mode at event time */
67
Alexander Gordeev3003d552011-01-12 17:00:50 -080068 unsigned int last_ev; /* last PPS event id */
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070069 wait_queue_head_t queue; /* PPS event queue */
70
71 unsigned int id; /* PPS source unique ID */
72 struct cdev cdev;
73 struct device *dev;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070074 struct fasync_struct *async_queue; /* fasync method */
75 spinlock_t lock;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070076};
77
78/*
79 * Global variables
80 */
81
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070082extern struct device_attribute pps_attrs[];
83
84/*
85 * Exported functions
86 */
87
Alexander Gordeev5e196d32011-01-12 17:00:51 -080088extern struct pps_device *pps_register_source(
89 struct pps_source_info *info, int default_params);
90extern void pps_unregister_source(struct pps_device *pps);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070091extern int pps_register_cdev(struct pps_device *pps);
92extern void pps_unregister_cdev(struct pps_device *pps);
Alexander Gordeev5e196d32011-01-12 17:00:51 -080093extern void pps_event(struct pps_device *pps,
94 struct pps_event_time *ts, int event, void *data);
Alexander Gordeev6f4229b2011-01-12 17:00:50 -080095
96static inline void timespec_to_pps_ktime(struct pps_ktime *kt,
97 struct timespec ts)
98{
99 kt->sec = ts.tv_sec;
100 kt->nsec = ts.tv_nsec;
101}
102
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800103#ifdef CONFIG_NTP_PPS
104
105static inline void pps_get_ts(struct pps_event_time *ts)
106{
107 getnstime_raw_and_real(&ts->ts_raw, &ts->ts_real);
108}
109
110#else /* CONFIG_NTP_PPS */
111
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800112static inline void pps_get_ts(struct pps_event_time *ts)
113{
114 getnstimeofday(&ts->ts_real);
115}
Alexander Gordeev7a21a3c2011-01-12 17:00:49 -0800116
Alexander Gordeeve2c18e42011-01-12 17:00:57 -0800117#endif /* CONFIG_NTP_PPS */
118
Alexander Gordeev7a21a3c2011-01-12 17:00:49 -0800119#endif /* LINUX_PPS_KERNEL_H */
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800120