Thomas Gleixner | 74ba920 | 2019-05-20 09:19:02 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 2 | /* |
| 3 | * pps-ldisc.c -- PPS line discipline |
| 4 | * |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 5 | * Copyright (C) 2008 Rodolfo Giometti <giometti@linux.it> |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 6 | */ |
| 7 | |
Alexander Gordeev | 7f7cce7 | 2011-01-12 17:00:52 -0800 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/serial_core.h> |
| 12 | #include <linux/tty.h> |
| 13 | #include <linux/pps_kernel.h> |
George Spelvin | ce3da1a | 2013-02-10 04:43:41 -0500 | [diff] [blame] | 14 | #include <linux/bug.h> |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 15 | |
George Spelvin | 593fb1ae4 | 2013-02-12 02:00:43 -0500 | [diff] [blame] | 16 | static void pps_tty_dcd_change(struct tty_struct *tty, unsigned int status) |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 17 | { |
George Spelvin | 593fb1ae4 | 2013-02-12 02:00:43 -0500 | [diff] [blame] | 18 | struct pps_device *pps; |
| 19 | struct pps_event_time ts; |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 20 | |
George Spelvin | 593fb1ae4 | 2013-02-12 02:00:43 -0500 | [diff] [blame] | 21 | pps_get_ts(&ts); |
| 22 | |
| 23 | pps = pps_lookup_dev(tty); |
George Spelvin | ce3da1a | 2013-02-10 04:43:41 -0500 | [diff] [blame] | 24 | /* |
| 25 | * This should never fail, but the ldisc locking is very |
| 26 | * convoluted, so don't crash just in case. |
| 27 | */ |
| 28 | if (WARN_ON_ONCE(pps == NULL)) |
| 29 | return; |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 30 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 31 | /* Now do the PPS event report */ |
George Spelvin | 593fb1ae4 | 2013-02-12 02:00:43 -0500 | [diff] [blame] | 32 | pps_event(pps, &ts, status ? PPS_CAPTUREASSERT : |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 33 | PPS_CAPTURECLEAR, NULL); |
| 34 | |
| 35 | dev_dbg(pps->dev, "PPS %s at %lu\n", |
| 36 | status ? "assert" : "clear", jiffies); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | static int (*alias_n_tty_open)(struct tty_struct *tty); |
| 40 | |
| 41 | static int pps_tty_open(struct tty_struct *tty) |
| 42 | { |
| 43 | struct pps_source_info info; |
| 44 | struct tty_driver *drv = tty->driver; |
| 45 | int index = tty->index + drv->name_base; |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 46 | struct pps_device *pps; |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 47 | int ret; |
| 48 | |
| 49 | info.owner = THIS_MODULE; |
| 50 | info.dev = NULL; |
| 51 | snprintf(info.name, PPS_MAX_NAME_LEN, "%s%d", drv->driver_name, index); |
| 52 | snprintf(info.path, PPS_MAX_NAME_LEN, "/dev/%s%d", drv->name, index); |
| 53 | info.mode = PPS_CAPTUREBOTH | \ |
| 54 | PPS_OFFSETASSERT | PPS_OFFSETCLEAR | \ |
| 55 | PPS_CANWAIT | PPS_TSFMT_TSPEC; |
| 56 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 57 | pps = pps_register_source(&info, PPS_CAPTUREBOTH | \ |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 58 | PPS_OFFSETASSERT | PPS_OFFSETCLEAR); |
YueHaibing | 3b1ad360 | 2018-11-26 18:24:22 +0800 | [diff] [blame] | 59 | if (IS_ERR(pps)) { |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 60 | pr_err("cannot register PPS source \"%s\"\n", info.path); |
YueHaibing | 3b1ad360 | 2018-11-26 18:24:22 +0800 | [diff] [blame] | 61 | return PTR_ERR(pps); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 62 | } |
George Spelvin | 03a7ffe4 | 2013-02-10 04:41:56 -0500 | [diff] [blame] | 63 | pps->lookup_cookie = tty; |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 64 | |
George Spelvin | 03a7ffe4 | 2013-02-10 04:41:56 -0500 | [diff] [blame] | 65 | /* Now open the base class N_TTY ldisc */ |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 66 | ret = alias_n_tty_open(tty); |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 67 | if (ret < 0) { |
| 68 | pr_err("cannot open tty ldisc \"%s\"\n", info.path); |
| 69 | goto err_unregister; |
| 70 | } |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 71 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 72 | dev_info(pps->dev, "source \"%s\" added\n", info.path); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 73 | |
| 74 | return 0; |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 75 | |
| 76 | err_unregister: |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 77 | pps_unregister_source(pps); |
| 78 | return ret; |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void (*alias_n_tty_close)(struct tty_struct *tty); |
| 82 | |
| 83 | static void pps_tty_close(struct tty_struct *tty) |
| 84 | { |
George Spelvin | 03a7ffe4 | 2013-02-10 04:41:56 -0500 | [diff] [blame] | 85 | struct pps_device *pps = pps_lookup_dev(tty); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 86 | |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 87 | alias_n_tty_close(tty); |
| 88 | |
George Spelvin | ce3da1a | 2013-02-10 04:43:41 -0500 | [diff] [blame] | 89 | if (WARN_ON(!pps)) |
| 90 | return; |
| 91 | |
Alexander Gordeev | 5e196d3 | 2011-01-12 17:00:51 -0800 | [diff] [blame] | 92 | dev_info(pps->dev, "removed\n"); |
| 93 | pps_unregister_source(pps); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static struct tty_ldisc_ops pps_ldisc_ops; |
| 97 | |
| 98 | /* |
| 99 | * Module stuff |
| 100 | */ |
| 101 | |
| 102 | static int __init pps_tty_init(void) |
| 103 | { |
| 104 | int err; |
| 105 | |
| 106 | /* Inherit the N_TTY's ops */ |
| 107 | n_tty_inherit_ops(&pps_ldisc_ops); |
| 108 | |
| 109 | /* Save N_TTY's open()/close() methods */ |
| 110 | alias_n_tty_open = pps_ldisc_ops.open; |
| 111 | alias_n_tty_close = pps_ldisc_ops.close; |
| 112 | |
| 113 | /* Init PPS_TTY data */ |
| 114 | pps_ldisc_ops.owner = THIS_MODULE; |
Jiri Slaby | fbadf70a | 2021-05-05 11:19:07 +0200 | [diff] [blame] | 115 | pps_ldisc_ops.num = N_PPS; |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 116 | pps_ldisc_ops.name = "pps_tty"; |
| 117 | pps_ldisc_ops.dcd_change = pps_tty_dcd_change; |
| 118 | pps_ldisc_ops.open = pps_tty_open; |
| 119 | pps_ldisc_ops.close = pps_tty_close; |
| 120 | |
Jiri Slaby | fbadf70a | 2021-05-05 11:19:07 +0200 | [diff] [blame] | 121 | err = tty_register_ldisc(&pps_ldisc_ops); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 122 | if (err) |
| 123 | pr_err("can't register PPS line discipline\n"); |
| 124 | else |
| 125 | pr_info("PPS line discipline registered\n"); |
| 126 | |
| 127 | return err; |
| 128 | } |
| 129 | |
| 130 | static void __exit pps_tty_cleanup(void) |
| 131 | { |
Jiri Slaby | 357a6a8 | 2021-05-05 11:19:11 +0200 | [diff] [blame] | 132 | tty_unregister_ldisc(&pps_ldisc_ops); |
Rodolfo Giometti | a0880df | 2010-03-10 15:23:47 -0800 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | module_init(pps_tty_init); |
| 136 | module_exit(pps_tty_cleanup); |
| 137 | |
| 138 | MODULE_ALIAS_LDISC(N_PPS); |
| 139 | MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>"); |
| 140 | MODULE_DESCRIPTION("PPS TTY device driver"); |
| 141 | MODULE_LICENSE("GPL"); |