Thomas Gleixner | 74ba920 | 2019-05-20 09:19:02 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 2 | /* |
| 3 | * PPS API kernel header |
| 4 | * |
| 5 | * Copyright (C) 2009 Rodolfo Giometti <giometti@linux.it> |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Alexander Gordeev | 7a21a3c | 2011-01-12 17:00:49 -0800 | [diff] [blame] | 8 | #ifndef LINUX_PPS_KERNEL_H |
| 9 | #define LINUX_PPS_KERNEL_H |
| 10 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 11 | #include <linux/pps.h> |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 12 | #include <linux/cdev.h> |
| 13 | #include <linux/device.h> |
| 14 | #include <linux/time.h> |
| 15 | |
| 16 | /* |
| 17 | * Global defines |
| 18 | */ |
| 19 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 20 | struct pps_device; |
| 21 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 22 | /* The specific PPS source info */ |
| 23 | struct pps_source_info { |
Robert P. J. Day | a2d8180 | 2017-09-08 16:17:19 -0700 | [diff] [blame] | 24 | char name[PPS_MAX_NAME_LEN]; /* symbolic name */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 25 | char path[PPS_MAX_NAME_LEN]; /* path of connected device */ |
Robert P. J. Day | a2d8180 | 2017-09-08 16:17:19 -0700 | [diff] [blame] | 26 | int mode; /* PPS allowed mode */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 27 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 28 | void (*echo)(struct pps_device *pps, |
| 29 | int event, void *data); /* PPS echo function */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 30 | |
| 31 | struct module *owner; |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 32 | struct device *dev; /* Parent device for device_create */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 33 | }; |
| 34 | |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 35 | struct pps_event_time { |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 36 | #ifdef CONFIG_NTP_PPS |
Arnd Bergmann | ade1bdf | 2015-09-28 22:21:31 +0200 | [diff] [blame] | 37 | struct timespec64 ts_raw; |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 38 | #endif /* CONFIG_NTP_PPS */ |
Arnd Bergmann | ade1bdf | 2015-09-28 22:21:31 +0200 | [diff] [blame] | 39 | struct timespec64 ts_real; |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 40 | }; |
| 41 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 42 | /* The main struct */ |
| 43 | struct pps_device { |
| 44 | struct pps_source_info info; /* PSS source info */ |
| 45 | |
Robert P. J. Day | a2d8180 | 2017-09-08 16:17:19 -0700 | [diff] [blame] | 46 | struct pps_kparams params; /* PPS current params */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 47 | |
Robert P. J. Day | a2d8180 | 2017-09-08 16:17:19 -0700 | [diff] [blame] | 48 | __u32 assert_sequence; /* PPS assert event seq # */ |
| 49 | __u32 clear_sequence; /* PPS clear event seq # */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 50 | struct pps_ktime assert_tu; |
| 51 | struct pps_ktime clear_tu; |
| 52 | int current_mode; /* PPS mode at event time */ |
| 53 | |
Alexander Gordeev | 3003d55 | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 54 | unsigned int last_ev; /* last PPS event id */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 55 | wait_queue_head_t queue; /* PPS event queue */ |
| 56 | |
| 57 | unsigned int id; /* PPS source unique ID */ |
Robert P. J. Day | a2d8180 | 2017-09-08 16:17:19 -0700 | [diff] [blame] | 58 | void const *lookup_cookie; /* For pps_lookup_dev() only */ |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 59 | struct cdev cdev; |
| 60 | struct device *dev; |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 61 | struct fasync_struct *async_queue; /* fasync method */ |
| 62 | spinlock_t lock; |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | /* |
| 66 | * Global variables |
| 67 | */ |
| 68 | |
Greg Kroah-Hartman | bd0eae4 | 2013-07-24 15:05:19 -0700 | [diff] [blame] | 69 | extern const struct attribute_group *pps_groups[]; |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 70 | |
| 71 | /* |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 72 | * Internal functions. |
| 73 | * |
| 74 | * These are not actually part of the exported API, but this is a |
| 75 | * convenient header file to put them in. |
| 76 | */ |
| 77 | |
| 78 | extern int pps_register_cdev(struct pps_device *pps); |
| 79 | extern void pps_unregister_cdev(struct pps_device *pps); |
| 80 | |
| 81 | /* |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 82 | * Exported functions |
| 83 | */ |
| 84 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 85 | extern struct pps_device *pps_register_source( |
| 86 | struct pps_source_info *info, int default_params); |
| 87 | extern void pps_unregister_source(struct pps_device *pps); |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 88 | extern void pps_event(struct pps_device *pps, |
| 89 | struct pps_event_time *ts, int event, void *data); |
Robert P. J. Day | a2d8180 | 2017-09-08 16:17:19 -0700 | [diff] [blame] | 90 | /* Look up a pps_device by magic cookie */ |
George Spelvin | 513b032 | 2013-02-10 04:08:32 -0500 | [diff] [blame] | 91 | struct pps_device *pps_lookup_dev(void const *cookie); |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 92 | |
| 93 | static inline void timespec_to_pps_ktime(struct pps_ktime *kt, |
Arnd Bergmann | ade1bdf | 2015-09-28 22:21:31 +0200 | [diff] [blame] | 94 | struct timespec64 ts) |
Alexander Gordeev | 6f4229b | 2011-01-12 17:00:50 -0800 | [diff] [blame] | 95 | { |
| 96 | kt->sec = ts.tv_sec; |
| 97 | kt->nsec = ts.tv_nsec; |
| 98 | } |
| 99 | |
Christopher S. Hall | ba26621 | 2016-02-22 03:15:21 -0800 | [diff] [blame] | 100 | static inline void pps_get_ts(struct pps_event_time *ts) |
| 101 | { |
| 102 | struct system_time_snapshot snap; |
| 103 | |
| 104 | ktime_get_snapshot(&snap); |
| 105 | ts->ts_real = ktime_to_timespec64(snap.real); |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 106 | #ifdef CONFIG_NTP_PPS |
Christopher S. Hall | ba26621 | 2016-02-22 03:15:21 -0800 | [diff] [blame] | 107 | ts->ts_raw = ktime_to_timespec64(snap.raw); |
| 108 | #endif |
Alexander Gordeev | e2c18e4 | 2011-01-12 17:00:57 -0800 | [diff] [blame] | 109 | } |
| 110 | |
Ben Hutchings | 220a60a | 2012-09-03 11:34:58 +0100 | [diff] [blame] | 111 | /* Subtract known time delay from PPS event time(s) */ |
Arnd Bergmann | ade1bdf | 2015-09-28 22:21:31 +0200 | [diff] [blame] | 112 | static inline void pps_sub_ts(struct pps_event_time *ts, struct timespec64 delta) |
Ben Hutchings | 220a60a | 2012-09-03 11:34:58 +0100 | [diff] [blame] | 113 | { |
Arnd Bergmann | ade1bdf | 2015-09-28 22:21:31 +0200 | [diff] [blame] | 114 | ts->ts_real = timespec64_sub(ts->ts_real, delta); |
Ben Hutchings | 220a60a | 2012-09-03 11:34:58 +0100 | [diff] [blame] | 115 | #ifdef CONFIG_NTP_PPS |
Arnd Bergmann | ade1bdf | 2015-09-28 22:21:31 +0200 | [diff] [blame] | 116 | ts->ts_raw = timespec64_sub(ts->ts_raw, delta); |
Ben Hutchings | 220a60a | 2012-09-03 11:34:58 +0100 | [diff] [blame] | 117 | #endif |
| 118 | } |
| 119 | |
Alexander Gordeev | 7a21a3c | 2011-01-12 17:00:49 -0800 | [diff] [blame] | 120 | #endif /* LINUX_PPS_KERNEL_H */ |