blob: d9d566f70ed199679773c63d8df9df9a46982cee [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07002/*
3 * kernel API
4 *
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07005 * Copyright (C) 2005-2009 Rodolfo Giometti <giometti@linux.it>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07006 */
7
Alexander Gordeev7f7cce72011-01-12 17:00:52 -08008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07009
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/sched.h>
14#include <linux/time.h>
Alexander Gordeev717c0332011-01-12 17:00:58 -080015#include <linux/timex.h>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070016#include <linux/spinlock.h>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070017#include <linux/fs.h>
18#include <linux/pps_kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070020
Alexander Gordeev717c0332011-01-12 17:00:58 -080021#include "kc.h"
22
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070023/*
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070024 * Local functions
25 */
26
27static void pps_add_offset(struct pps_ktime *ts, struct pps_ktime *offset)
28{
29 ts->nsec += offset->nsec;
30 while (ts->nsec >= NSEC_PER_SEC) {
31 ts->nsec -= NSEC_PER_SEC;
32 ts->sec++;
33 }
34 while (ts->nsec < 0) {
35 ts->nsec += NSEC_PER_SEC;
36 ts->sec--;
37 }
38 ts->sec += offset->sec;
39}
40
James Nuss437c5342011-11-02 13:39:34 -070041static void pps_echo_client_default(struct pps_device *pps, int event,
42 void *data)
43{
44 dev_info(pps->dev, "echo %s %s\n",
45 event & PPS_CAPTUREASSERT ? "assert" : "",
46 event & PPS_CAPTURECLEAR ? "clear" : "");
47}
48
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070049/*
50 * Exported functions
51 */
52
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070053/* pps_register_source - add a PPS source in the system
54 * @info: the PPS info struct
55 * @default_params: the default PPS parameters of the new source
56 *
57 * This function is used to add a new PPS source in the system. The new
58 * source is described by info's fields and it will have, as default PPS
59 * parameters, the ones specified into default_params.
60 *
YueHaibing3b1ad3602018-11-26 18:24:22 +080061 * The function returns, in case of success, the PPS device. Otherwise
62 * ERR_PTR(errno).
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070063 */
64
Alexander Gordeev5e196d32011-01-12 17:00:51 -080065struct pps_device *pps_register_source(struct pps_source_info *info,
66 int default_params)
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070067{
68 struct pps_device *pps;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070069 int err;
70
71 /* Sanity checks */
72 if ((info->mode & default_params) != default_params) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -080073 pr_err("%s: unsupported default parameters\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070074 info->name);
75 err = -EINVAL;
76 goto pps_register_source_exit;
77 }
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070078 if ((info->mode & (PPS_TSFMT_TSPEC | PPS_TSFMT_NTPFP)) == 0) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -080079 pr_err("%s: unspecified time format\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070080 info->name);
81 err = -EINVAL;
82 goto pps_register_source_exit;
83 }
84
85 /* Allocate memory for the new PPS source struct */
86 pps = kzalloc(sizeof(struct pps_device), GFP_KERNEL);
87 if (pps == NULL) {
88 err = -ENOMEM;
89 goto pps_register_source_exit;
90 }
91
Tejun Heo19dd2da2013-02-27 17:04:38 -080092 /* These initializations must be done before calling idr_alloc()
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070093 * in order to avoid reces into pps_event().
94 */
95 pps->params.api_version = PPS_API_VERS;
96 pps->params.mode = default_params;
97 pps->info = *info;
98
James Nuss437c5342011-11-02 13:39:34 -070099 /* check for default echo function */
100 if ((pps->info.mode & (PPS_ECHOASSERT | PPS_ECHOCLEAR)) &&
101 pps->info.echo == NULL)
102 pps->info.echo = pps_echo_client_default;
103
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700104 init_waitqueue_head(&pps->queue);
105 spin_lock_init(&pps->lock);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700106
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700107 /* Create the char device */
108 err = pps_register_cdev(pps);
109 if (err < 0) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -0800110 pr_err("%s: unable to create char device\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700111 info->name);
Alexander Gordeev083e5862011-01-12 17:00:53 -0800112 goto kfree_pps;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700113 }
114
Alexander Gordeev7f7cce72011-01-12 17:00:52 -0800115 dev_info(pps->dev, "new PPS source %s\n", info->name);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700116
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800117 return pps;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700118
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700119kfree_pps:
120 kfree(pps);
121
122pps_register_source_exit:
Alexander Gordeev7f7cce72011-01-12 17:00:52 -0800123 pr_err("%s: unable to register source\n", info->name);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700124
YueHaibing3b1ad3602018-11-26 18:24:22 +0800125 return ERR_PTR(err);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700126}
127EXPORT_SYMBOL(pps_register_source);
128
129/* pps_unregister_source - remove a PPS source from the system
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800130 * @pps: the PPS source
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700131 *
132 * This function is used to remove a previously registered PPS source from
133 * the system.
134 */
135
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800136void pps_unregister_source(struct pps_device *pps)
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700137{
Alexander Gordeev717c0332011-01-12 17:00:58 -0800138 pps_kc_remove(pps);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700139 pps_unregister_cdev(pps);
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800140
Alexander Gordeev083e5862011-01-12 17:00:53 -0800141 /* don't have to kfree(pps) here because it will be done on
142 * device destruction */
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700143}
144EXPORT_SYMBOL(pps_unregister_source);
145
146/* pps_event - register a PPS event into the system
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800147 * @pps: the PPS device
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700148 * @ts: the event timestamp
149 * @event: the event type
150 * @data: userdef pointer
151 *
152 * This function is used by each PPS client in order to register a new
153 * PPS event into the system (it's usually called inside an IRQ handler).
154 *
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800155 * If an echo function is associated with the PPS device it will be called
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700156 * as:
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800157 * pps->info.echo(pps, event, data);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700158 */
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800159void pps_event(struct pps_device *pps, struct pps_event_time *ts, int event,
160 void *data)
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700161{
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700162 unsigned long flags;
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800163 int captured = 0;
Alexander Gordeev99b0d362011-02-25 14:44:30 -0800164 struct pps_ktime ts_real = { .sec = 0, .nsec = 0, .flags = 0 };
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700165
Alexander Gordeev29f347c2011-01-12 17:00:54 -0800166 /* check event type */
167 BUG_ON((event & (PPS_CAPTUREASSERT | PPS_CAPTURECLEAR)) == 0);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700168
Arnd Bergmannade1bdf2015-09-28 22:21:31 +0200169 dev_dbg(pps->dev, "PPS event at %lld.%09ld\n",
170 (s64)ts->ts_real.tv_sec, ts->ts_real.tv_nsec);
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800171
172 timespec_to_pps_ktime(&ts_real, ts->ts_real);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700173
174 spin_lock_irqsave(&pps->lock, flags);
175
176 /* Must call the echo function? */
177 if ((pps->params.mode & (PPS_ECHOASSERT | PPS_ECHOCLEAR)))
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800178 pps->info.echo(pps, event, data);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700179
180 /* Check the event */
181 pps->current_mode = pps->params.mode;
Alexander Gordeev818b9ee2011-01-12 17:00:54 -0800182 if (event & pps->params.mode & PPS_CAPTUREASSERT) {
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700183 /* We have to add an offset? */
184 if (pps->params.mode & PPS_OFFSETASSERT)
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800185 pps_add_offset(&ts_real,
186 &pps->params.assert_off_tu);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700187
188 /* Save the time stamp */
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800189 pps->assert_tu = ts_real;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700190 pps->assert_sequence++;
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800191 dev_dbg(pps->dev, "capture assert seq #%u\n",
192 pps->assert_sequence);
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800193
194 captured = ~0;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700195 }
Alexander Gordeev818b9ee2011-01-12 17:00:54 -0800196 if (event & pps->params.mode & PPS_CAPTURECLEAR) {
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700197 /* We have to add an offset? */
198 if (pps->params.mode & PPS_OFFSETCLEAR)
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800199 pps_add_offset(&ts_real,
200 &pps->params.clear_off_tu);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700201
202 /* Save the time stamp */
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800203 pps->clear_tu = ts_real;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700204 pps->clear_sequence++;
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800205 dev_dbg(pps->dev, "capture clear seq #%u\n",
206 pps->clear_sequence);
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800207
208 captured = ~0;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700209 }
210
Alexander Gordeev717c0332011-01-12 17:00:58 -0800211 pps_kc_event(pps, ts, event);
212
Alexander Gordeev7a21a3c2011-01-12 17:00:49 -0800213 /* Wake up if captured something */
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800214 if (captured) {
Alexander Gordeev3003d552011-01-12 17:00:50 -0800215 pps->last_ev++;
216 wake_up_interruptible_all(&pps->queue);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700217
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800218 kill_fasync(&pps->async_queue, SIGIO, POLL_IN);
219 }
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700220
221 spin_unlock_irqrestore(&pps->lock, flags);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700222}
223EXPORT_SYMBOL(pps_event);