1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Copyright (C) 2005-2009 Rodolfo Giometti <giometti@linux.it>
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/sched.h>
14 #include <linux/uaccess.h>
15 #include <linux/idr.h>
16 #include <linux/mutex.h>
17 #include <linux/cdev.h>
18 #include <linux/poll.h>
19 #include <linux/pps_kernel.h>
20 #include <linux/slab.h>
28 static dev_t pps_devt
;
29 static struct class *pps_class
;
31 static DEFINE_MUTEX(pps_idr_lock
);
32 static DEFINE_IDR(pps_idr
);
38 static __poll_t
pps_cdev_poll(struct file
*file
, poll_table
*wait
)
40 struct pps_device
*pps
= file
->private_data
;
42 poll_wait(file
, &pps
->queue
, wait
);
44 return EPOLLIN
| EPOLLRDNORM
;
47 static int pps_cdev_fasync(int fd
, struct file
*file
, int on
)
49 struct pps_device
*pps
= file
->private_data
;
50 return fasync_helper(fd
, file
, on
, &pps
->async_queue
);
53 static int pps_cdev_pps_fetch(struct pps_device
*pps
, struct pps_fdata
*fdata
)
55 unsigned int ev
= pps
->last_ev
;
58 /* Manage the timeout */
59 if (fdata
->timeout
.flags
& PPS_TIME_INVALID
)
60 err
= wait_event_interruptible(pps
->queue
,
65 dev_dbg(pps
->dev
, "timeout %lld.%09d\n",
66 (long long) fdata
->timeout
.sec
,
68 ticks
= fdata
->timeout
.sec
* HZ
;
69 ticks
+= fdata
->timeout
.nsec
/ (NSEC_PER_SEC
/ HZ
);
72 err
= wait_event_interruptible_timeout(
81 /* Check for pending signals */
82 if (err
== -ERESTARTSYS
) {
83 dev_dbg(pps
->dev
, "pending signal caught\n");
90 static long pps_cdev_ioctl(struct file
*file
,
91 unsigned int cmd
, unsigned long arg
)
93 struct pps_device
*pps
= file
->private_data
;
94 struct pps_kparams params
;
95 void __user
*uarg
= (void __user
*) arg
;
96 int __user
*iuarg
= (int __user
*) arg
;
101 dev_dbg(pps
->dev
, "PPS_GETPARAMS\n");
103 spin_lock_irq(&pps
->lock
);
105 /* Get the current parameters */
106 params
= pps
->params
;
108 spin_unlock_irq(&pps
->lock
);
110 err
= copy_to_user(uarg
, ¶ms
, sizeof(struct pps_kparams
));
117 dev_dbg(pps
->dev
, "PPS_SETPARAMS\n");
119 /* Check the capabilities */
120 if (!capable(CAP_SYS_TIME
))
123 err
= copy_from_user(¶ms
, uarg
, sizeof(struct pps_kparams
));
126 if (!(params
.mode
& (PPS_CAPTUREASSERT
| PPS_CAPTURECLEAR
))) {
127 dev_dbg(pps
->dev
, "capture mode unspecified (%x)\n",
132 /* Check for supported capabilities */
133 if ((params
.mode
& ~pps
->info
.mode
) != 0) {
134 dev_dbg(pps
->dev
, "unsupported capabilities (%x)\n",
139 spin_lock_irq(&pps
->lock
);
141 /* Save the new parameters */
142 pps
->params
= params
;
144 /* Restore the read only parameters */
145 if ((params
.mode
& (PPS_TSFMT_TSPEC
| PPS_TSFMT_NTPFP
)) == 0) {
146 /* section 3.3 of RFC 2783 interpreted */
147 dev_dbg(pps
->dev
, "time format unspecified (%x)\n",
149 pps
->params
.mode
|= PPS_TSFMT_TSPEC
;
151 if (pps
->info
.mode
& PPS_CANWAIT
)
152 pps
->params
.mode
|= PPS_CANWAIT
;
153 pps
->params
.api_version
= PPS_API_VERS
;
156 * Clear unused fields of pps_kparams to avoid leaking
157 * uninitialized data of the PPS_SETPARAMS caller via
160 pps
->params
.assert_off_tu
.flags
= 0;
161 pps
->params
.clear_off_tu
.flags
= 0;
163 spin_unlock_irq(&pps
->lock
);
168 dev_dbg(pps
->dev
, "PPS_GETCAP\n");
170 err
= put_user(pps
->info
.mode
, iuarg
);
177 struct pps_fdata fdata
;
179 dev_dbg(pps
->dev
, "PPS_FETCH\n");
181 err
= copy_from_user(&fdata
, uarg
, sizeof(struct pps_fdata
));
185 err
= pps_cdev_pps_fetch(pps
, &fdata
);
189 /* Return the fetched timestamp */
190 spin_lock_irq(&pps
->lock
);
192 fdata
.info
.assert_sequence
= pps
->assert_sequence
;
193 fdata
.info
.clear_sequence
= pps
->clear_sequence
;
194 fdata
.info
.assert_tu
= pps
->assert_tu
;
195 fdata
.info
.clear_tu
= pps
->clear_tu
;
196 fdata
.info
.current_mode
= pps
->current_mode
;
198 spin_unlock_irq(&pps
->lock
);
200 err
= copy_to_user(uarg
, &fdata
, sizeof(struct pps_fdata
));
207 struct pps_bind_args bind_args
;
209 dev_dbg(pps
->dev
, "PPS_KC_BIND\n");
211 /* Check the capabilities */
212 if (!capable(CAP_SYS_TIME
))
215 if (copy_from_user(&bind_args
, uarg
,
216 sizeof(struct pps_bind_args
)))
219 /* Check for supported capabilities */
220 if ((bind_args
.edge
& ~pps
->info
.mode
) != 0) {
221 dev_err(pps
->dev
, "unsupported capabilities (%x)\n",
226 /* Validate parameters roughly */
227 if (bind_args
.tsformat
!= PPS_TSFMT_TSPEC
||
228 (bind_args
.edge
& ~PPS_CAPTUREBOTH
) != 0 ||
229 bind_args
.consumer
!= PPS_KC_HARDPPS
) {
230 dev_err(pps
->dev
, "invalid kernel consumer bind"
231 " parameters (%x)\n", bind_args
.edge
);
235 err
= pps_kc_bind(pps
, &bind_args
);
249 static long pps_cdev_compat_ioctl(struct file
*file
,
250 unsigned int cmd
, unsigned long arg
)
252 struct pps_device
*pps
= file
->private_data
;
253 void __user
*uarg
= (void __user
*) arg
;
255 cmd
= _IOC(_IOC_DIR(cmd
), _IOC_TYPE(cmd
), _IOC_NR(cmd
), sizeof(void *));
257 if (cmd
== PPS_FETCH
) {
258 struct pps_fdata_compat compat
;
259 struct pps_fdata fdata
;
262 dev_dbg(pps
->dev
, "PPS_FETCH\n");
264 err
= copy_from_user(&compat
, uarg
, sizeof(struct pps_fdata_compat
));
268 memcpy(&fdata
.timeout
, &compat
.timeout
,
269 sizeof(struct pps_ktime_compat
));
271 err
= pps_cdev_pps_fetch(pps
, &fdata
);
275 /* Return the fetched timestamp */
276 spin_lock_irq(&pps
->lock
);
278 compat
.info
.assert_sequence
= pps
->assert_sequence
;
279 compat
.info
.clear_sequence
= pps
->clear_sequence
;
280 compat
.info
.current_mode
= pps
->current_mode
;
282 memcpy(&compat
.info
.assert_tu
, &pps
->assert_tu
,
283 sizeof(struct pps_ktime_compat
));
284 memcpy(&compat
.info
.clear_tu
, &pps
->clear_tu
,
285 sizeof(struct pps_ktime_compat
));
287 spin_unlock_irq(&pps
->lock
);
289 return copy_to_user(uarg
, &compat
,
290 sizeof(struct pps_fdata_compat
)) ? -EFAULT
: 0;
293 return pps_cdev_ioctl(file
, cmd
, arg
);
296 #define pps_cdev_compat_ioctl NULL
299 static int pps_cdev_open(struct inode
*inode
, struct file
*file
)
301 struct pps_device
*pps
= container_of(inode
->i_cdev
,
302 struct pps_device
, cdev
);
303 file
->private_data
= pps
;
304 kobject_get(&pps
->dev
->kobj
);
308 static int pps_cdev_release(struct inode
*inode
, struct file
*file
)
310 struct pps_device
*pps
= container_of(inode
->i_cdev
,
311 struct pps_device
, cdev
);
312 kobject_put(&pps
->dev
->kobj
);
320 static const struct file_operations pps_cdev_fops
= {
321 .owner
= THIS_MODULE
,
323 .poll
= pps_cdev_poll
,
324 .fasync
= pps_cdev_fasync
,
325 .compat_ioctl
= pps_cdev_compat_ioctl
,
326 .unlocked_ioctl
= pps_cdev_ioctl
,
327 .open
= pps_cdev_open
,
328 .release
= pps_cdev_release
,
331 static void pps_device_destruct(struct device
*dev
)
333 struct pps_device
*pps
= dev_get_drvdata(dev
);
335 cdev_del(&pps
->cdev
);
337 /* Now we can release the ID for re-use */
338 pr_debug("deallocating pps%d\n", pps
->id
);
339 mutex_lock(&pps_idr_lock
);
340 idr_remove(&pps_idr
, pps
->id
);
341 mutex_unlock(&pps_idr_lock
);
347 int pps_register_cdev(struct pps_device
*pps
)
352 mutex_lock(&pps_idr_lock
);
354 * Get new ID for the new PPS source. After idr_alloc() calling
355 * the new source will be freely available into the kernel.
357 err
= idr_alloc(&pps_idr
, pps
, 0, PPS_MAX_SOURCES
, GFP_KERNEL
);
359 if (err
== -ENOSPC
) {
360 pr_err("%s: too many PPS sources in the system\n",
367 mutex_unlock(&pps_idr_lock
);
369 devt
= MKDEV(MAJOR(pps_devt
), pps
->id
);
371 cdev_init(&pps
->cdev
, &pps_cdev_fops
);
372 pps
->cdev
.owner
= pps
->info
.owner
;
374 err
= cdev_add(&pps
->cdev
, devt
, 1);
376 pr_err("%s: failed to add char device %d:%d\n",
377 pps
->info
.name
, MAJOR(pps_devt
), pps
->id
);
380 pps
->dev
= device_create(pps_class
, pps
->info
.dev
, devt
, pps
,
382 if (IS_ERR(pps
->dev
)) {
383 err
= PTR_ERR(pps
->dev
);
387 /* Override the release function with our own */
388 pps
->dev
->release
= pps_device_destruct
;
390 pr_debug("source %s got cdev (%d:%d)\n", pps
->info
.name
,
391 MAJOR(pps_devt
), pps
->id
);
396 cdev_del(&pps
->cdev
);
399 mutex_lock(&pps_idr_lock
);
400 idr_remove(&pps_idr
, pps
->id
);
402 mutex_unlock(&pps_idr_lock
);
406 void pps_unregister_cdev(struct pps_device
*pps
)
408 pr_debug("unregistering pps%d\n", pps
->id
);
409 pps
->lookup_cookie
= NULL
;
410 device_destroy(pps_class
, pps
->dev
->devt
);
414 * Look up a pps device by magic cookie.
415 * The cookie is usually a pointer to some enclosing device, but this
416 * code doesn't care; you should never be dereferencing it.
418 * This is a bit of a kludge that is currently used only by the PPS
419 * serial line discipline. It may need to be tweaked when a second user
422 * There is no function interface for setting the lookup_cookie field.
423 * It's initialized to NULL when the pps device is created, and if a
424 * client wants to use it, just fill it in afterward.
426 * The cookie is automatically set to NULL in pps_unregister_source()
427 * so that it will not be used again, even if the pps device cannot
428 * be removed from the idr due to pending references holding the minor
431 struct pps_device
*pps_lookup_dev(void const *cookie
)
433 struct pps_device
*pps
;
437 idr_for_each_entry(&pps_idr
, pps
, id
)
438 if (cookie
== pps
->lookup_cookie
)
443 EXPORT_SYMBOL(pps_lookup_dev
);
449 static void __exit
pps_exit(void)
451 class_destroy(pps_class
);
452 unregister_chrdev_region(pps_devt
, PPS_MAX_SOURCES
);
455 static int __init
pps_init(void)
459 pps_class
= class_create(THIS_MODULE
, "pps");
460 if (IS_ERR(pps_class
)) {
461 pr_err("failed to allocate class\n");
462 return PTR_ERR(pps_class
);
464 pps_class
->dev_groups
= pps_groups
;
466 err
= alloc_chrdev_region(&pps_devt
, 0, PPS_MAX_SOURCES
, "pps");
468 pr_err("failed to allocate char device region\n");
472 pr_info("LinuxPPS API ver. %d registered\n", PPS_API_VERS
);
473 pr_info("Software ver. %s - Copyright 2005-2007 Rodolfo Giometti "
474 "<giometti@linux.it>\n", PPS_VERSION
);
479 class_destroy(pps_class
);
484 subsys_initcall(pps_init
);
485 module_exit(pps_exit
);
487 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
488 MODULE_DESCRIPTION("LinuxPPS support (RFC 2783) - ver. " PPS_VERSION
);
489 MODULE_LICENSE("GPL");