blob: ebf33746c37ca4f0c4b35082df0479184e49c39c [file] [log] [blame]
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07001/*
2 * kernel API
3 *
4 *
5 * Copyright (C) 2005-2009 Rodolfo Giometti <giometti@linux.it>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
Alexander Gordeev7f7cce72011-01-12 17:00:52 -080022#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070023
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/sched.h>
28#include <linux/time.h>
29#include <linux/spinlock.h>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070030#include <linux/fs.h>
31#include <linux/pps_kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070033
34/*
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070035 * Local functions
36 */
37
38static void pps_add_offset(struct pps_ktime *ts, struct pps_ktime *offset)
39{
40 ts->nsec += offset->nsec;
41 while (ts->nsec >= NSEC_PER_SEC) {
42 ts->nsec -= NSEC_PER_SEC;
43 ts->sec++;
44 }
45 while (ts->nsec < 0) {
46 ts->nsec += NSEC_PER_SEC;
47 ts->sec--;
48 }
49 ts->sec += offset->sec;
50}
51
52/*
53 * Exported functions
54 */
55
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070056/* pps_register_source - add a PPS source in the system
57 * @info: the PPS info struct
58 * @default_params: the default PPS parameters of the new source
59 *
60 * This function is used to add a new PPS source in the system. The new
61 * source is described by info's fields and it will have, as default PPS
62 * parameters, the ones specified into default_params.
63 *
Alexander Gordeev5e196d32011-01-12 17:00:51 -080064 * The function returns, in case of success, the PPS device. Otherwise NULL.
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070065 */
66
Alexander Gordeev5e196d32011-01-12 17:00:51 -080067struct pps_device *pps_register_source(struct pps_source_info *info,
68 int default_params)
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070069{
70 struct pps_device *pps;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070071 int err;
72
73 /* Sanity checks */
74 if ((info->mode & default_params) != default_params) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -080075 pr_err("%s: unsupported default parameters\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070076 info->name);
77 err = -EINVAL;
78 goto pps_register_source_exit;
79 }
80 if ((info->mode & (PPS_ECHOASSERT | PPS_ECHOCLEAR)) != 0 &&
81 info->echo == NULL) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -080082 pr_err("%s: echo function is not defined\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070083 info->name);
84 err = -EINVAL;
85 goto pps_register_source_exit;
86 }
87 if ((info->mode & (PPS_TSFMT_TSPEC | PPS_TSFMT_NTPFP)) == 0) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -080088 pr_err("%s: unspecified time format\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -070089 info->name);
90 err = -EINVAL;
91 goto pps_register_source_exit;
92 }
93
94 /* Allocate memory for the new PPS source struct */
95 pps = kzalloc(sizeof(struct pps_device), GFP_KERNEL);
96 if (pps == NULL) {
97 err = -ENOMEM;
98 goto pps_register_source_exit;
99 }
100
101 /* These initializations must be done before calling idr_get_new()
102 * in order to avoid reces into pps_event().
103 */
104 pps->params.api_version = PPS_API_VERS;
105 pps->params.mode = default_params;
106 pps->info = *info;
107
108 init_waitqueue_head(&pps->queue);
109 spin_lock_init(&pps->lock);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700110
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700111 /* Create the char device */
112 err = pps_register_cdev(pps);
113 if (err < 0) {
Alexander Gordeev7f7cce72011-01-12 17:00:52 -0800114 pr_err("%s: unable to create char device\n",
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700115 info->name);
Alexander Gordeev083e5862011-01-12 17:00:53 -0800116 goto kfree_pps;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700117 }
118
Alexander Gordeev7f7cce72011-01-12 17:00:52 -0800119 dev_info(pps->dev, "new PPS source %s\n", info->name);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700120
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800121 return pps;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700122
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700123kfree_pps:
124 kfree(pps);
125
126pps_register_source_exit:
Alexander Gordeev7f7cce72011-01-12 17:00:52 -0800127 pr_err("%s: unable to register source\n", info->name);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700128
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800129 return NULL;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700130}
131EXPORT_SYMBOL(pps_register_source);
132
133/* pps_unregister_source - remove a PPS source from the system
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800134 * @pps: the PPS source
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700135 *
136 * This function is used to remove a previously registered PPS source from
137 * the system.
138 */
139
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800140void pps_unregister_source(struct pps_device *pps)
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700141{
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700142 pps_unregister_cdev(pps);
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800143
Alexander Gordeev083e5862011-01-12 17:00:53 -0800144 /* don't have to kfree(pps) here because it will be done on
145 * device destruction */
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700146}
147EXPORT_SYMBOL(pps_unregister_source);
148
149/* pps_event - register a PPS event into the system
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800150 * @pps: the PPS device
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700151 * @ts: the event timestamp
152 * @event: the event type
153 * @data: userdef pointer
154 *
155 * This function is used by each PPS client in order to register a new
156 * PPS event into the system (it's usually called inside an IRQ handler).
157 *
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800158 * If an echo function is associated with the PPS device it will be called
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700159 * as:
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800160 * pps->info.echo(pps, event, data);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700161 */
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800162void pps_event(struct pps_device *pps, struct pps_event_time *ts, int event,
163 void *data)
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700164{
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700165 unsigned long flags;
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800166 int captured = 0;
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800167 struct pps_ktime ts_real;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700168
Alexander Gordeev29f347c2011-01-12 17:00:54 -0800169 /* check event type */
170 BUG_ON((event & (PPS_CAPTUREASSERT | PPS_CAPTURECLEAR)) == 0);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700171
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800172 dev_dbg(pps->dev, "PPS event at %ld.%09ld\n",
173 ts->ts_real.tv_sec, ts->ts_real.tv_nsec);
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800174
175 timespec_to_pps_ktime(&ts_real, ts->ts_real);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700176
177 spin_lock_irqsave(&pps->lock, flags);
178
179 /* Must call the echo function? */
180 if ((pps->params.mode & (PPS_ECHOASSERT | PPS_ECHOCLEAR)))
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800181 pps->info.echo(pps, event, data);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700182
183 /* Check the event */
184 pps->current_mode = pps->params.mode;
Alexander Gordeev818b9ee2011-01-12 17:00:54 -0800185 if (event & pps->params.mode & PPS_CAPTUREASSERT) {
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700186 /* We have to add an offset? */
187 if (pps->params.mode & PPS_OFFSETASSERT)
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800188 pps_add_offset(&ts_real,
189 &pps->params.assert_off_tu);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700190
191 /* Save the time stamp */
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800192 pps->assert_tu = ts_real;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700193 pps->assert_sequence++;
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800194 dev_dbg(pps->dev, "capture assert seq #%u\n",
195 pps->assert_sequence);
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800196
197 captured = ~0;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700198 }
Alexander Gordeev818b9ee2011-01-12 17:00:54 -0800199 if (event & pps->params.mode & PPS_CAPTURECLEAR) {
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700200 /* We have to add an offset? */
201 if (pps->params.mode & PPS_OFFSETCLEAR)
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800202 pps_add_offset(&ts_real,
203 &pps->params.clear_off_tu);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700204
205 /* Save the time stamp */
Alexander Gordeev6f4229b2011-01-12 17:00:50 -0800206 pps->clear_tu = ts_real;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700207 pps->clear_sequence++;
Alexander Gordeev5e196d32011-01-12 17:00:51 -0800208 dev_dbg(pps->dev, "capture clear seq #%u\n",
209 pps->clear_sequence);
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800210
211 captured = ~0;
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700212 }
213
Alexander Gordeev7a21a3c2011-01-12 17:00:49 -0800214 /* Wake up if captured something */
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800215 if (captured) {
Alexander Gordeev3003d552011-01-12 17:00:50 -0800216 pps->last_ev++;
217 wake_up_interruptible_all(&pps->queue);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700218
Rodolfo Giometti276b2822009-11-11 14:26:54 -0800219 kill_fasync(&pps->async_queue, SIGIO, POLL_IN);
220 }
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700221
222 spin_unlock_irqrestore(&pps->lock, flags);
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -0700223}
224EXPORT_SYMBOL(pps_event);