Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 1 | /* |
| 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 Gordeev | 7a21a3c | 2011-01-12 17:00:49 -0800 | [diff] [blame] | 21 | #ifndef LINUX_PPS_KERNEL_H |
| 22 | #define LINUX_PPS_KERNEL_H |
| 23 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 24 | #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 Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 34 | struct pps_device; |
| 35 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 36 | /* The specific PPS source info */ |
| 37 | struct 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 Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 42 | void (*echo)(struct pps_device *pps, |
| 43 | int event, void *data); /* PPS echo function */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 44 | |
| 45 | struct module *owner; |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 46 | struct device *dev; /* Parent device for device_create */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 49 | struct pps_event_time { |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 50 | #ifdef CONFIG_NTP_PPS |
| 51 | struct timespec ts_raw; |
| 52 | #endif /* CONFIG_NTP_PPS */ |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 53 | struct timespec ts_real; |
| 54 | }; |
| 55 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 56 | /* The main struct */ |
| 57 | struct 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 Gordeev | 3003d55 | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 68 | unsigned int last_ev; /* last PPS event id */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 69 | wait_queue_head_t queue; /* PPS event queue */ |
| 70 | |
| 71 | unsigned int id; /* PPS source unique ID */ |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 72 | void const *lookup_cookie; /* pps_lookup_dev only */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 73 | struct cdev cdev; |
| 74 | struct device *dev; |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 75 | struct fasync_struct *async_queue; /* fasync method */ |
| 76 | spinlock_t lock; |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | /* |
| 80 | * Global variables |
| 81 | */ |
| 82 | |
Greg Kroah-Hartman | bd0eae4 | 2013-07-24 15:05:19 -0700 | [diff] [blame] | 83 | extern const struct attribute_group *pps_groups[]; |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 84 | |
| 85 | /* |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 86 | * Internal functions. |
| 87 | * |
| 88 | * These are not actually part of the exported API, but this is a |
| 89 | * convenient header file to put them in. |
| 90 | */ |
| 91 | |
| 92 | extern int pps_register_cdev(struct pps_device *pps); |
| 93 | extern void pps_unregister_cdev(struct pps_device *pps); |
| 94 | |
| 95 | /* |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 96 | * Exported functions |
| 97 | */ |
| 98 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 99 | extern struct pps_device *pps_register_source( |
| 100 | struct pps_source_info *info, int default_params); |
| 101 | extern void pps_unregister_source(struct pps_device *pps); |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 102 | extern void pps_event(struct pps_device *pps, |
| 103 | struct pps_event_time *ts, int event, void *data); |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 104 | /* Look up a pps device by magic cookie */ |
| 105 | struct pps_device *pps_lookup_dev(void const *cookie); |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 106 | |
| 107 | static inline void timespec_to_pps_ktime(struct pps_ktime *kt, |
| 108 | struct timespec ts) |
| 109 | { |
| 110 | kt->sec = ts.tv_sec; |
| 111 | kt->nsec = ts.tv_nsec; |
| 112 | } |
| 113 | |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 114 | #ifdef CONFIG_NTP_PPS |
| 115 | |
| 116 | static inline void pps_get_ts(struct pps_event_time *ts) |
| 117 | { |
| 118 | getnstime_raw_and_real(&ts->ts_raw, &ts->ts_real); |
| 119 | } |
| 120 | |
| 121 | #else /* CONFIG_NTP_PPS */ |
| 122 | |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 123 | static inline void pps_get_ts(struct pps_event_time *ts) |
| 124 | { |
| 125 | getnstimeofday(&ts->ts_real); |
| 126 | } |
Alexander Gordeev | 7a21a3c | 2011-01-12 17:00:49 -0800 | [diff] [blame] | 127 | |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 128 | #endif /* CONFIG_NTP_PPS */ |
| 129 | |
Ben Hutchings | 220a60a | 2012-09-03 11:34:58 +0100 | [diff] [blame] | 130 | /* Subtract known time delay from PPS event time(s) */ |
| 131 | static inline void pps_sub_ts(struct pps_event_time *ts, struct timespec delta) |
| 132 | { |
| 133 | ts->ts_real = timespec_sub(ts->ts_real, delta); |
| 134 | #ifdef CONFIG_NTP_PPS |
| 135 | ts->ts_raw = timespec_sub(ts->ts_raw, delta); |
| 136 | #endif |
| 137 | } |
| 138 | |
Alexander Gordeev | 7a21a3c | 2011-01-12 17:00:49 -0800 | [diff] [blame] | 139 | #endif /* LINUX_PPS_KERNEL_H */ |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 140 | |