5 * Copyright (C) 2005-2009 Rodolfo Giometti <giometti@linux.it>
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.
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.
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.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/sched.h>
27 #include <linux/uaccess.h>
28 #include <linux/idr.h>
29 #include <linux/cdev.h>
30 #include <linux/poll.h>
31 #include <linux/pps_kernel.h>
37 static dev_t pps_devt
;
38 static struct class *pps_class
;
44 static unsigned int pps_cdev_poll(struct file
*file
, poll_table
*wait
)
46 struct pps_device
*pps
= file
->private_data
;
48 poll_wait(file
, &pps
->queue
, wait
);
50 return POLLIN
| POLLRDNORM
;
53 static int pps_cdev_fasync(int fd
, struct file
*file
, int on
)
55 struct pps_device
*pps
= file
->private_data
;
56 return fasync_helper(fd
, file
, on
, &pps
->async_queue
);
59 static long pps_cdev_ioctl(struct file
*file
,
60 unsigned int cmd
, unsigned long arg
)
62 struct pps_device
*pps
= file
->private_data
;
63 struct pps_kparams params
;
64 struct pps_fdata fdata
;
66 void __user
*uarg
= (void __user
*) arg
;
67 int __user
*iuarg
= (int __user
*) arg
;
72 pr_debug("PPS_GETPARAMS: source %d\n", pps
->id
);
74 spin_lock_irq(&pps
->lock
);
76 /* Get the current parameters */
79 spin_unlock_irq(&pps
->lock
);
81 err
= copy_to_user(uarg
, ¶ms
, sizeof(struct pps_kparams
));
88 pr_debug("PPS_SETPARAMS: source %d\n", pps
->id
);
90 /* Check the capabilities */
91 if (!capable(CAP_SYS_TIME
))
94 err
= copy_from_user(¶ms
, uarg
, sizeof(struct pps_kparams
));
97 if (!(params
.mode
& (PPS_CAPTUREASSERT
| PPS_CAPTURECLEAR
))) {
98 pr_debug("capture mode unspecified (%x)\n",
103 /* Check for supported capabilities */
104 if ((params
.mode
& ~pps
->info
.mode
) != 0) {
105 pr_debug("unsupported capabilities (%x)\n",
110 spin_lock_irq(&pps
->lock
);
112 /* Save the new parameters */
113 pps
->params
= params
;
115 /* Restore the read only parameters */
116 if ((params
.mode
& (PPS_TSFMT_TSPEC
| PPS_TSFMT_NTPFP
)) == 0) {
117 /* section 3.3 of RFC 2783 interpreted */
118 pr_debug("time format unspecified (%x)\n",
120 pps
->params
.mode
|= PPS_TSFMT_TSPEC
;
122 if (pps
->info
.mode
& PPS_CANWAIT
)
123 pps
->params
.mode
|= PPS_CANWAIT
;
124 pps
->params
.api_version
= PPS_API_VERS
;
126 spin_unlock_irq(&pps
->lock
);
131 pr_debug("PPS_GETCAP: source %d\n", pps
->id
);
133 err
= put_user(pps
->info
.mode
, iuarg
);
140 pr_debug("PPS_FETCH: source %d\n", pps
->id
);
142 err
= copy_from_user(&fdata
, uarg
, sizeof(struct pps_fdata
));
148 /* Manage the timeout */
149 if (fdata
.timeout
.flags
& PPS_TIME_INVALID
)
150 err
= wait_event_interruptible(pps
->queue
, pps
->go
);
152 pr_debug("timeout %lld.%09d\n",
153 (long long) fdata
.timeout
.sec
,
155 ticks
= fdata
.timeout
.sec
* HZ
;
156 ticks
+= fdata
.timeout
.nsec
/ (NSEC_PER_SEC
/ HZ
);
159 err
= wait_event_interruptible_timeout(
160 pps
->queue
, pps
->go
, ticks
);
166 /* Check for pending signals */
167 if (err
== -ERESTARTSYS
) {
168 pr_debug("pending signal caught\n");
172 /* Return the fetched timestamp */
173 spin_lock_irq(&pps
->lock
);
175 fdata
.info
.assert_sequence
= pps
->assert_sequence
;
176 fdata
.info
.clear_sequence
= pps
->clear_sequence
;
177 fdata
.info
.assert_tu
= pps
->assert_tu
;
178 fdata
.info
.clear_tu
= pps
->clear_tu
;
179 fdata
.info
.current_mode
= pps
->current_mode
;
181 spin_unlock_irq(&pps
->lock
);
183 err
= copy_to_user(uarg
, &fdata
, sizeof(struct pps_fdata
));
197 static int pps_cdev_open(struct inode
*inode
, struct file
*file
)
199 struct pps_device
*pps
= container_of(inode
->i_cdev
,
200 struct pps_device
, cdev
);
203 found
= pps_get_source(pps
->id
) != 0;
207 file
->private_data
= pps
;
212 static int pps_cdev_release(struct inode
*inode
, struct file
*file
)
214 struct pps_device
*pps
= file
->private_data
;
216 /* Free the PPS source and wake up (possible) deregistration */
226 static const struct file_operations pps_cdev_fops
= {
227 .owner
= THIS_MODULE
,
229 .poll
= pps_cdev_poll
,
230 .fasync
= pps_cdev_fasync
,
231 .unlocked_ioctl
= pps_cdev_ioctl
,
232 .open
= pps_cdev_open
,
233 .release
= pps_cdev_release
,
236 int pps_register_cdev(struct pps_device
*pps
)
240 pps
->devno
= MKDEV(MAJOR(pps_devt
), pps
->id
);
241 cdev_init(&pps
->cdev
, &pps_cdev_fops
);
242 pps
->cdev
.owner
= pps
->info
.owner
;
244 err
= cdev_add(&pps
->cdev
, pps
->devno
, 1);
246 printk(KERN_ERR
"pps: %s: failed to add char device %d:%d\n",
247 pps
->info
.name
, MAJOR(pps_devt
), pps
->id
);
250 pps
->dev
= device_create(pps_class
, pps
->info
.dev
, pps
->devno
, NULL
,
252 if (IS_ERR(pps
->dev
))
254 dev_set_drvdata(pps
->dev
, pps
);
256 pr_debug("source %s got cdev (%d:%d)\n", pps
->info
.name
,
257 MAJOR(pps_devt
), pps
->id
);
262 cdev_del(&pps
->cdev
);
267 void pps_unregister_cdev(struct pps_device
*pps
)
269 device_destroy(pps_class
, pps
->devno
);
270 cdev_del(&pps
->cdev
);
277 static void __exit
pps_exit(void)
279 class_destroy(pps_class
);
280 unregister_chrdev_region(pps_devt
, PPS_MAX_SOURCES
);
283 static int __init
pps_init(void)
287 pps_class
= class_create(THIS_MODULE
, "pps");
289 printk(KERN_ERR
"pps: failed to allocate class\n");
292 pps_class
->dev_attrs
= pps_attrs
;
294 err
= alloc_chrdev_region(&pps_devt
, 0, PPS_MAX_SOURCES
, "pps");
296 printk(KERN_ERR
"pps: failed to allocate char device region\n");
300 pr_info("LinuxPPS API ver. %d registered\n", PPS_API_VERS
);
301 pr_info("Software ver. %s - Copyright 2005-2007 Rodolfo Giometti "
302 "<giometti@linux.it>\n", PPS_VERSION
);
307 class_destroy(pps_class
);
312 subsys_initcall(pps_init
);
313 module_exit(pps_exit
);
315 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
316 MODULE_DESCRIPTION("LinuxPPS support (RFC 2783) - ver. " PPS_VERSION
);
317 MODULE_LICENSE("GPL");