Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /********************************************************************* |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 2 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Filename: ircomm_tty.c |
| 4 | * Version: 1.0 |
| 5 | * Description: IrCOMM serial TTY driver |
| 6 | * Status: Experimental. |
| 7 | * Author: Dag Brattli <dagb@cs.uit.no> |
| 8 | * Created at: Sun Jun 6 21:00:56 1999 |
| 9 | * Modified at: Wed Feb 23 00:09:02 2000 |
| 10 | * Modified by: Dag Brattli <dagb@cs.uit.no> |
| 11 | * Sources: serial.c and previous IrCOMM work by Takahide Higuchi |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved. |
| 14 | * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com> |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 15 | * |
| 16 | * This program is free software; you can redistribute it and/or |
| 17 | * modify it under the terms of the GNU General Public License as |
| 18 | * published by the Free Software Foundation; either version 2 of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * the License, or (at your option) any later version. |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 20 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | * This program is distributed in the hope that it will be useful, |
| 22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 24 | * GNU General Public License for more details. |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 25 | * |
| 26 | * You should have received a copy of the GNU General Public License |
Jeff Kirsher | d377050 | 2013-12-06 09:13:43 -0800 | [diff] [blame] | 27 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 28 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | ********************************************************************/ |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/init.h> |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/sched.h> |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 36 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/termios.h> |
| 38 | #include <linux/tty.h> |
Amit Virdi | cbfd152 | 2011-05-12 01:04:40 +0000 | [diff] [blame] | 39 | #include <linux/tty_flip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/interrupt.h> |
| 41 | #include <linux/device.h> /* for MODULE_ALIAS_CHARDEV_MAJOR */ |
| 42 | |
| 43 | #include <asm/uaccess.h> |
| 44 | |
| 45 | #include <net/irda/irda.h> |
| 46 | #include <net/irda/irmod.h> |
| 47 | |
| 48 | #include <net/irda/ircomm_core.h> |
| 49 | #include <net/irda/ircomm_param.h> |
| 50 | #include <net/irda/ircomm_tty_attach.h> |
| 51 | #include <net/irda/ircomm_tty.h> |
| 52 | |
Jiri Slaby | 9c650ff | 2012-08-07 21:48:02 +0200 | [diff] [blame] | 53 | static int ircomm_tty_install(struct tty_driver *driver, |
| 54 | struct tty_struct *tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | static int ircomm_tty_open(struct tty_struct *tty, struct file *filp); |
| 56 | static void ircomm_tty_close(struct tty_struct * tty, struct file *filp); |
| 57 | static int ircomm_tty_write(struct tty_struct * tty, |
| 58 | const unsigned char *buf, int count); |
| 59 | static int ircomm_tty_write_room(struct tty_struct *tty); |
| 60 | static void ircomm_tty_throttle(struct tty_struct *tty); |
| 61 | static void ircomm_tty_unthrottle(struct tty_struct *tty); |
| 62 | static int ircomm_tty_chars_in_buffer(struct tty_struct *tty); |
| 63 | static void ircomm_tty_flush_buffer(struct tty_struct *tty); |
| 64 | static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch); |
| 65 | static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout); |
| 66 | static void ircomm_tty_hangup(struct tty_struct *tty); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 67 | static void ircomm_tty_do_softint(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | static void ircomm_tty_shutdown(struct ircomm_tty_cb *self); |
| 69 | static void ircomm_tty_stop(struct tty_struct *tty); |
| 70 | |
| 71 | static int ircomm_tty_data_indication(void *instance, void *sap, |
| 72 | struct sk_buff *skb); |
| 73 | static int ircomm_tty_control_indication(void *instance, void *sap, |
| 74 | struct sk_buff *skb); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 75 | static void ircomm_tty_flow_indication(void *instance, void *sap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | LOCAL_FLOW cmd); |
| 77 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 78 | static const struct file_operations ircomm_tty_proc_fops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #endif /* CONFIG_PROC_FS */ |
| 80 | static struct tty_driver *driver; |
| 81 | |
Adrian Bunk | d76081f | 2007-10-26 03:56:43 -0700 | [diff] [blame] | 82 | static hashbin_t *ircomm_tty = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 84 | static const struct tty_operations ops = { |
Jiri Slaby | 9c650ff | 2012-08-07 21:48:02 +0200 | [diff] [blame] | 85 | .install = ircomm_tty_install, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | .open = ircomm_tty_open, |
| 87 | .close = ircomm_tty_close, |
| 88 | .write = ircomm_tty_write, |
| 89 | .write_room = ircomm_tty_write_room, |
| 90 | .chars_in_buffer = ircomm_tty_chars_in_buffer, |
| 91 | .flush_buffer = ircomm_tty_flush_buffer, |
| 92 | .ioctl = ircomm_tty_ioctl, /* ircomm_tty_ioctl.c */ |
| 93 | .tiocmget = ircomm_tty_tiocmget, /* ircomm_tty_ioctl.c */ |
| 94 | .tiocmset = ircomm_tty_tiocmset, /* ircomm_tty_ioctl.c */ |
| 95 | .throttle = ircomm_tty_throttle, |
| 96 | .unthrottle = ircomm_tty_unthrottle, |
| 97 | .send_xchar = ircomm_tty_send_xchar, |
| 98 | .set_termios = ircomm_tty_set_termios, |
| 99 | .stop = ircomm_tty_stop, |
| 100 | .start = ircomm_tty_start, |
| 101 | .hangup = ircomm_tty_hangup, |
| 102 | .wait_until_sent = ircomm_tty_wait_until_sent, |
| 103 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 104 | .proc_fops = &ircomm_tty_proc_fops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | #endif /* CONFIG_PROC_FS */ |
| 106 | }; |
| 107 | |
Jiri Slaby | 0ba9ff8 | 2012-06-04 13:35:23 +0200 | [diff] [blame] | 108 | static void ircomm_port_raise_dtr_rts(struct tty_port *port, int raise) |
| 109 | { |
| 110 | struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb, |
| 111 | port); |
| 112 | /* |
| 113 | * Here, we use to lock those two guys, but as ircomm_param_request() |
| 114 | * does it itself, I don't see the point (and I see the deadlock). |
| 115 | * Jean II |
| 116 | */ |
| 117 | if (raise) |
| 118 | self->settings.dte |= IRCOMM_RTS | IRCOMM_DTR; |
| 119 | else |
| 120 | self->settings.dte &= ~(IRCOMM_RTS | IRCOMM_DTR); |
| 121 | |
| 122 | ircomm_param_request(self, IRCOMM_DTE, TRUE); |
| 123 | } |
| 124 | |
| 125 | static int ircomm_port_carrier_raised(struct tty_port *port) |
| 126 | { |
| 127 | struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb, |
| 128 | port); |
| 129 | return self->settings.dce & IRCOMM_CD; |
| 130 | } |
| 131 | |
| 132 | static const struct tty_port_operations ircomm_port_ops = { |
| 133 | .dtr_rts = ircomm_port_raise_dtr_rts, |
| 134 | .carrier_raised = ircomm_port_carrier_raised, |
| 135 | }; |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* |
| 138 | * Function ircomm_tty_init() |
| 139 | * |
| 140 | * Init IrCOMM TTY layer/driver |
| 141 | * |
| 142 | */ |
| 143 | static int __init ircomm_tty_init(void) |
| 144 | { |
| 145 | driver = alloc_tty_driver(IRCOMM_TTY_PORTS); |
| 146 | if (!driver) |
| 147 | return -ENOMEM; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 148 | ircomm_tty = hashbin_new(HB_LOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | if (ircomm_tty == NULL) { |
Joe Perches | 6c91023 | 2014-11-11 13:37:30 -0800 | [diff] [blame] | 150 | net_err_ratelimited("%s(), can't allocate hashbin!\n", |
| 151 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | put_tty_driver(driver); |
| 153 | return -ENOMEM; |
| 154 | } |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | driver->driver_name = "ircomm"; |
| 157 | driver->name = "ircomm"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | driver->major = IRCOMM_TTY_MAJOR; |
| 159 | driver->minor_start = IRCOMM_TTY_MINOR; |
| 160 | driver->type = TTY_DRIVER_TYPE_SERIAL; |
| 161 | driver->subtype = SERIAL_TYPE_NORMAL; |
| 162 | driver->init_termios = tty_std_termios; |
| 163 | driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL; |
| 164 | driver->flags = TTY_DRIVER_REAL_RAW; |
| 165 | tty_set_operations(driver, &ops); |
| 166 | if (tty_register_driver(driver)) { |
Joe Perches | 6c91023 | 2014-11-11 13:37:30 -0800 | [diff] [blame] | 167 | net_err_ratelimited("%s(): Couldn't register serial driver\n", |
| 168 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | put_tty_driver(driver); |
| 170 | return -1; |
| 171 | } |
| 172 | return 0; |
| 173 | } |
| 174 | |
| 175 | static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self) |
| 176 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | IRDA_ASSERT(self != NULL, return;); |
| 178 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 179 | |
| 180 | ircomm_tty_shutdown(self); |
| 181 | |
| 182 | self->magic = 0; |
Jiri Slaby | 191c5f1 | 2012-11-15 09:49:56 +0100 | [diff] [blame] | 183 | tty_port_destroy(&self->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | kfree(self); |
| 185 | } |
| 186 | |
| 187 | /* |
| 188 | * Function ircomm_tty_cleanup () |
| 189 | * |
| 190 | * Remove IrCOMM TTY layer/driver |
| 191 | * |
| 192 | */ |
| 193 | static void __exit ircomm_tty_cleanup(void) |
| 194 | { |
| 195 | int ret; |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | ret = tty_unregister_driver(driver); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 198 | if (ret) { |
Joe Perches | 6c91023 | 2014-11-11 13:37:30 -0800 | [diff] [blame] | 199 | net_err_ratelimited("%s(), failed to unregister driver\n", |
| 200 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return; |
| 202 | } |
| 203 | |
| 204 | hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup); |
| 205 | put_tty_driver(driver); |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * Function ircomm_startup (self) |
| 210 | * |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 211 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | * |
| 213 | */ |
| 214 | static int ircomm_tty_startup(struct ircomm_tty_cb *self) |
| 215 | { |
| 216 | notify_t notify; |
| 217 | int ret = -ENODEV; |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | IRDA_ASSERT(self != NULL, return -1;); |
| 220 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); |
| 221 | |
| 222 | /* Check if already open */ |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 223 | if (test_and_set_bit(ASYNCB_INITIALIZED, &self->port.flags)) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 224 | pr_debug("%s(), already open so break out!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | /* Register with IrCOMM */ |
| 229 | irda_notify_init(¬ify); |
| 230 | /* These callbacks we must handle ourselves */ |
| 231 | notify.data_indication = ircomm_tty_data_indication; |
| 232 | notify.udata_indication = ircomm_tty_control_indication; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 233 | notify.flow_indication = ircomm_tty_flow_indication; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
| 235 | /* Use the ircomm_tty interface for these ones */ |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 236 | notify.disconnect_indication = ircomm_tty_disconnect_indication; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | notify.connect_confirm = ircomm_tty_connect_confirm; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 238 | notify.connect_indication = ircomm_tty_connect_indication; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | strlcpy(notify.name, "ircomm_tty", sizeof(notify.name)); |
| 240 | notify.instance = self; |
| 241 | |
| 242 | if (!self->ircomm) { |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 243 | self->ircomm = ircomm_open(¬ify, self->service_type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | self->line); |
| 245 | } |
| 246 | if (!self->ircomm) |
| 247 | goto err; |
| 248 | |
| 249 | self->slsap_sel = self->ircomm->slsap_sel; |
| 250 | |
| 251 | /* Connect IrCOMM link with remote device */ |
| 252 | ret = ircomm_tty_attach_cable(self); |
| 253 | if (ret < 0) { |
Joe Perches | 6c91023 | 2014-11-11 13:37:30 -0800 | [diff] [blame] | 254 | net_err_ratelimited("%s(), error attaching cable!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | goto err; |
| 256 | } |
| 257 | |
| 258 | return 0; |
| 259 | err: |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 260 | clear_bit(ASYNCB_INITIALIZED, &self->port.flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return ret; |
| 262 | } |
| 263 | |
| 264 | /* |
| 265 | * Function ircomm_block_til_ready (self, filp) |
| 266 | * |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 267 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | * |
| 269 | */ |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 270 | static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self, |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 271 | struct tty_struct *tty, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 273 | struct tty_port *port = &self->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | DECLARE_WAITQUEUE(wait, current); |
| 275 | int retval; |
Peter Hurley | a4ed2e7 | 2013-03-05 06:09:04 +0000 | [diff] [blame] | 276 | int do_clocal = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | unsigned long flags; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | /* |
| 280 | * If non-blocking mode is set, or the port is not enabled, |
| 281 | * then make the check up front and then exit. |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 282 | */ |
Peter Hurley | f74861c | 2013-03-05 06:09:07 +0000 | [diff] [blame] | 283 | if (test_bit(TTY_IO_ERROR, &tty->flags)) { |
| 284 | port->flags |= ASYNC_NORMAL_ACTIVE; |
| 285 | return 0; |
| 286 | } |
| 287 | |
| 288 | if (filp->f_flags & O_NONBLOCK) { |
| 289 | /* nonblock mode is set */ |
| 290 | if (tty->termios.c_cflag & CBAUD) |
| 291 | tty_port_raise_dtr_rts(port); |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 292 | port->flags |= ASYNC_NORMAL_ACTIVE; |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 293 | pr_debug("%s(), O_NONBLOCK requested!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | return 0; |
| 295 | } |
| 296 | |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 297 | if (tty->termios.c_cflag & CLOCAL) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 298 | pr_debug("%s(), doing CLOCAL!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | do_clocal = 1; |
| 300 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | /* Wait for carrier detect and the line to become |
| 303 | * free (i.e., not in use by the callout). While we are in |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 304 | * this loop, port->count is dropped by one, so that |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | * mgsl_close() knows when to free things. We restore it upon |
| 306 | * exit, either normal or abnormal. |
| 307 | */ |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | retval = 0; |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 310 | add_wait_queue(&port->open_wait, &wait); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 311 | |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 312 | pr_debug("%s(%d):block_til_ready before block on %s open_count=%d\n", |
| 313 | __FILE__, __LINE__, tty->driver->name, port->count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 315 | spin_lock_irqsave(&port->lock, flags); |
Peter Hurley | e359a4e | 2014-06-16 09:17:06 -0400 | [diff] [blame] | 316 | port->count--; |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 317 | port->blocked_open++; |
Peter Hurley | 2f7c069 | 2013-03-05 06:09:05 +0000 | [diff] [blame] | 318 | spin_unlock_irqrestore(&port->lock, flags); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | while (1) { |
Johan Hovold | e1c969f | 2013-04-12 10:32:31 +0200 | [diff] [blame] | 321 | if (C_BAUD(tty) && test_bit(ASYNCB_INITIALIZED, &port->flags)) |
Jiri Slaby | 0ba9ff8 | 2012-06-04 13:35:23 +0200 | [diff] [blame] | 322 | tty_port_raise_dtr_rts(port); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 323 | |
Peter Hurley | 0b176ce | 2013-03-05 06:09:06 +0000 | [diff] [blame] | 324 | set_current_state(TASK_INTERRUPTIBLE); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | if (tty_hung_up_p(filp) || |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 327 | !test_bit(ASYNCB_INITIALIZED, &port->flags)) { |
| 328 | retval = (port->flags & ASYNC_HUP_NOTIFY) ? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | -EAGAIN : -ERESTARTSYS; |
| 330 | break; |
| 331 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 332 | |
| 333 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | * Check if link is ready now. Even if CLOCAL is |
| 335 | * specified, we cannot return before the IrCOMM link is |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 336 | * ready |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | */ |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 338 | if (!test_bit(ASYNCB_CLOSING, &port->flags) && |
Jiri Slaby | 0ba9ff8 | 2012-06-04 13:35:23 +0200 | [diff] [blame] | 339 | (do_clocal || tty_port_carrier_raised(port)) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | self->state == IRCOMM_TTY_READY) |
| 341 | { |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 342 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | if (signal_pending(current)) { |
| 346 | retval = -ERESTARTSYS; |
| 347 | break; |
| 348 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 349 | |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 350 | pr_debug("%s(%d):block_til_ready blocking on %s open_count=%d\n", |
| 351 | __FILE__, __LINE__, tty->driver->name, port->count); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | schedule(); |
| 354 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | __set_current_state(TASK_RUNNING); |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 357 | remove_wait_queue(&port->open_wait, &wait); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 358 | |
Peter Hurley | a4ed2e7 | 2013-03-05 06:09:04 +0000 | [diff] [blame] | 359 | spin_lock_irqsave(&port->lock, flags); |
| 360 | if (!tty_hung_up_p(filp)) |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 361 | port->count++; |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 362 | port->blocked_open--; |
Peter Hurley | 2f7c069 | 2013-03-05 06:09:05 +0000 | [diff] [blame] | 363 | spin_unlock_irqrestore(&port->lock, flags); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 364 | |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 365 | pr_debug("%s(%d):block_til_ready after blocking on %s open_count=%d\n", |
| 366 | __FILE__, __LINE__, tty->driver->name, port->count); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | if (!retval) |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 369 | port->flags |= ASYNC_NORMAL_ACTIVE; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 370 | |
| 371 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Jiri Slaby | 9c650ff | 2012-08-07 21:48:02 +0200 | [diff] [blame] | 374 | |
| 375 | static int ircomm_tty_install(struct tty_driver *driver, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
| 377 | struct ircomm_tty_cb *self; |
Jiri Slaby | 410235f | 2012-03-05 14:52:01 +0100 | [diff] [blame] | 378 | unsigned int line = tty->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | /* Check if instance already exists */ |
| 381 | self = hashbin_lock_find(ircomm_tty, line, NULL); |
| 382 | if (!self) { |
| 383 | /* No, so make new instance */ |
Panagiotis Issaris | 0da974f | 2006-07-21 14:51:30 -0700 | [diff] [blame] | 384 | self = kzalloc(sizeof(struct ircomm_tty_cb), GFP_KERNEL); |
Joe Perches | 6c91023 | 2014-11-11 13:37:30 -0800 | [diff] [blame] | 385 | if (self == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | return -ENOMEM; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 387 | |
Jiri Slaby | a3cc9fc | 2012-06-04 13:35:16 +0200 | [diff] [blame] | 388 | tty_port_init(&self->port); |
Jiri Slaby | 0ba9ff8 | 2012-06-04 13:35:23 +0200 | [diff] [blame] | 389 | self->port.ops = &ircomm_port_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | self->magic = IRCOMM_TTY_MAGIC; |
| 391 | self->flow = FLOW_STOP; |
| 392 | |
| 393 | self->line = line; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 394 | INIT_WORK(&self->tqueue, ircomm_tty_do_softint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | self->max_header_size = IRCOMM_TTY_HDR_UNINITIALISED; |
| 396 | self->max_data_size = IRCOMM_TTY_DATA_UNINITIALISED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | /* Init some important stuff */ |
| 399 | init_timer(&self->watchdog_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | spin_lock_init(&self->spinlock); |
| 401 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 402 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | * Force TTY into raw mode by default which is usually what |
| 404 | * we want for IrCOMM and IrLPT. This way applications will |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 405 | * not have to twiddle with printcap etc. |
Alan Cox | ad36b88 | 2009-01-02 13:50:20 +0000 | [diff] [blame] | 406 | * |
| 407 | * Note this is completely usafe and doesn't work properly |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 409 | tty->termios.c_iflag = 0; |
| 410 | tty->termios.c_oflag = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
| 412 | /* Insert into hash */ |
| 413 | hashbin_insert(ircomm_tty, (irda_queue_t *) self, line, NULL); |
| 414 | } |
Jiri Slaby | 9c650ff | 2012-08-07 21:48:02 +0200 | [diff] [blame] | 415 | |
Sasha Levin | 6f56012 | 2012-10-04 20:01:21 -0400 | [diff] [blame] | 416 | tty->driver_data = self; |
| 417 | |
Jiri Slaby | 9c650ff | 2012-08-07 21:48:02 +0200 | [diff] [blame] | 418 | return tty_port_install(&self->port, driver, tty); |
| 419 | } |
| 420 | |
| 421 | /* |
| 422 | * Function ircomm_tty_open (tty, filp) |
| 423 | * |
| 424 | * This routine is called when a particular tty device is opened. This |
| 425 | * routine is mandatory; if this routine is not filled in, the attempted |
| 426 | * open will fail with ENODEV. |
| 427 | */ |
| 428 | static int ircomm_tty_open(struct tty_struct *tty, struct file *filp) |
| 429 | { |
| 430 | struct ircomm_tty_cb *self = tty->driver_data; |
| 431 | unsigned long flags; |
| 432 | int ret; |
| 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | /* ++ is not atomic, so this should be protected - Jean II */ |
Jiri Slaby | e673927 | 2012-06-04 13:35:20 +0200 | [diff] [blame] | 435 | spin_lock_irqsave(&self->port.lock, flags); |
Jiri Slaby | 580d27b | 2012-06-04 13:35:18 +0200 | [diff] [blame] | 436 | self->port.count++; |
Jiri Slaby | e673927 | 2012-06-04 13:35:20 +0200 | [diff] [blame] | 437 | spin_unlock_irqrestore(&self->port.lock, flags); |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 438 | tty_port_tty_set(&self->port, tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 440 | pr_debug("%s(), %s%d, count = %d\n", __func__ , tty->driver->name, |
| 441 | self->line, self->port.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | /* Not really used by us, but lets do it anyway */ |
Jiri Slaby | d6c53c0e | 2013-01-03 15:53:05 +0100 | [diff] [blame] | 444 | self->port.low_latency = (self->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
| 446 | /* |
| 447 | * If the port is the middle of closing, bail out now |
| 448 | */ |
Peter Hurley | e359a4e | 2014-06-16 09:17:06 -0400 | [diff] [blame] | 449 | if (test_bit(ASYNCB_CLOSING, &self->port.flags)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
| 451 | /* Hm, why are we blocking on ASYNC_CLOSING if we |
| 452 | * do return -EAGAIN/-ERESTARTSYS below anyway? |
| 453 | * IMHO it's either not needed in the first place |
| 454 | * or for some reason we need to make sure the async |
| 455 | * closing has been finished - if so, wouldn't we |
| 456 | * probably better sleep uninterruptible? |
| 457 | */ |
| 458 | |
Jiri Slaby | a3cc9fc | 2012-06-04 13:35:16 +0200 | [diff] [blame] | 459 | if (wait_event_interruptible(self->port.close_wait, |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 460 | !test_bit(ASYNCB_CLOSING, &self->port.flags))) { |
Joe Perches | 6c91023 | 2014-11-11 13:37:30 -0800 | [diff] [blame] | 461 | net_warn_ratelimited("%s - got signal while blocking on ASYNC_CLOSING!\n", |
| 462 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return -ERESTARTSYS; |
| 464 | } |
| 465 | |
| 466 | #ifdef SERIAL_DO_RESTART |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 467 | return (self->port.flags & ASYNC_HUP_NOTIFY) ? |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 468 | -EAGAIN : -ERESTARTSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | #else |
| 470 | return -EAGAIN; |
| 471 | #endif |
| 472 | } |
| 473 | |
| 474 | /* Check if this is a "normal" ircomm device, or an irlpt device */ |
Jiri Slaby | 9c650ff | 2012-08-07 21:48:02 +0200 | [diff] [blame] | 475 | if (self->line < 0x10) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | self->service_type = IRCOMM_3_WIRE | IRCOMM_9_WIRE; |
| 477 | self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */ |
| 478 | /* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */ |
| 479 | self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */ |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 480 | pr_debug("%s(), IrCOMM device\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } else { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 482 | pr_debug("%s(), IrLPT device\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | self->service_type = IRCOMM_3_WIRE_RAW; |
| 484 | self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */ |
| 485 | } |
| 486 | |
| 487 | ret = ircomm_tty_startup(self); |
| 488 | if (ret) |
| 489 | return ret; |
| 490 | |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 491 | ret = ircomm_tty_block_til_ready(self, tty, filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | if (ret) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 493 | pr_debug("%s(), returning after block_til_ready with %d\n", |
| 494 | __func__, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | return ret; |
| 497 | } |
| 498 | return 0; |
| 499 | } |
| 500 | |
| 501 | /* |
| 502 | * Function ircomm_tty_close (tty, filp) |
| 503 | * |
| 504 | * This routine is called when a particular tty device is closed. |
| 505 | * |
| 506 | */ |
| 507 | static void ircomm_tty_close(struct tty_struct *tty, struct file *filp) |
| 508 | { |
| 509 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 510 | struct tty_port *port = &self->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | IRDA_ASSERT(self != NULL, return;); |
| 513 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 514 | |
Jiri Slaby | c0e7865 | 2012-06-04 13:35:25 +0200 | [diff] [blame] | 515 | if (tty_port_close_start(port, tty, filp) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | ircomm_tty_shutdown(self); |
| 519 | |
Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 520 | tty_driver_flush_buffer(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Jiri Slaby | a1e8440 | 2012-06-04 13:35:24 +0200 | [diff] [blame] | 522 | tty_port_close_end(port, tty); |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 523 | tty_port_tty_set(port, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | /* |
| 527 | * Function ircomm_tty_flush_buffer (tty) |
| 528 | * |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 529 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | * |
| 531 | */ |
| 532 | static void ircomm_tty_flush_buffer(struct tty_struct *tty) |
| 533 | { |
| 534 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 535 | |
| 536 | IRDA_ASSERT(self != NULL, return;); |
| 537 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 538 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 539 | /* |
| 540 | * Let do_softint() do this to avoid race condition with |
| 541 | * do_softint() ;-) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | */ |
| 543 | schedule_work(&self->tqueue); |
| 544 | } |
| 545 | |
| 546 | /* |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 547 | * Function ircomm_tty_do_softint (work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | * |
| 549 | * We use this routine to give the write wakeup to the user at at a |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 550 | * safe time (as fast as possible after write have completed). This |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | * can be compared to the Tx interrupt. |
| 552 | */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 553 | static void ircomm_tty_do_softint(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 555 | struct ircomm_tty_cb *self = |
| 556 | container_of(work, struct ircomm_tty_cb, tqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | struct tty_struct *tty; |
| 558 | unsigned long flags; |
| 559 | struct sk_buff *skb, *ctrl_skb; |
| 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | if (!self || self->magic != IRCOMM_TTY_MAGIC) |
| 562 | return; |
| 563 | |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 564 | tty = tty_port_tty_get(&self->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | if (!tty) |
| 566 | return; |
| 567 | |
| 568 | /* Unlink control buffer */ |
| 569 | spin_lock_irqsave(&self->spinlock, flags); |
| 570 | |
| 571 | ctrl_skb = self->ctrl_skb; |
| 572 | self->ctrl_skb = NULL; |
| 573 | |
| 574 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 575 | |
| 576 | /* Flush control buffer if any */ |
| 577 | if(ctrl_skb) { |
| 578 | if(self->flow == FLOW_START) |
| 579 | ircomm_control_request(self->ircomm, ctrl_skb); |
| 580 | /* Drop reference count - see ircomm_ttp_data_request(). */ |
| 581 | dev_kfree_skb(ctrl_skb); |
| 582 | } |
| 583 | |
| 584 | if (tty->hw_stopped) |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 585 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | |
| 587 | /* Unlink transmit buffer */ |
| 588 | spin_lock_irqsave(&self->spinlock, flags); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | skb = self->tx_skb; |
| 591 | self->tx_skb = NULL; |
| 592 | |
| 593 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 594 | |
| 595 | /* Flush transmit buffer if any */ |
| 596 | if (skb) { |
| 597 | ircomm_tty_do_event(self, IRCOMM_TTY_DATA_REQUEST, skb, NULL); |
| 598 | /* Drop reference count - see ircomm_ttp_data_request(). */ |
| 599 | dev_kfree_skb(skb); |
| 600 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | /* Check if user (still) wants to be waken up */ |
Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 603 | tty_wakeup(tty); |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 604 | put: |
| 605 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | /* |
| 609 | * Function ircomm_tty_write (tty, buf, count) |
| 610 | * |
| 611 | * This routine is called by the kernel to write a series of characters |
| 612 | * to the tty device. The characters may come from user space or kernel |
| 613 | * space. This routine will return the number of characters actually |
| 614 | * accepted for writing. This routine is mandatory. |
| 615 | */ |
| 616 | static int ircomm_tty_write(struct tty_struct *tty, |
| 617 | const unsigned char *buf, int count) |
| 618 | { |
| 619 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 620 | unsigned long flags; |
| 621 | struct sk_buff *skb; |
| 622 | int tailroom = 0; |
| 623 | int len = 0; |
| 624 | int size; |
| 625 | |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 626 | pr_debug("%s(), count=%d, hw_stopped=%d\n", __func__ , count, |
| 627 | tty->hw_stopped); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
| 629 | IRDA_ASSERT(self != NULL, return -1;); |
| 630 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); |
| 631 | |
| 632 | /* We may receive packets from the TTY even before we have finished |
| 633 | * our setup. Not cool. |
| 634 | * The problem is that we don't know the final header and data size |
| 635 | * to create the proper skb, so any skb we would create would have |
| 636 | * bogus header and data size, so need care. |
| 637 | * We use a bogus header size to safely detect this condition. |
| 638 | * Another problem is that hw_stopped was set to 0 way before it |
| 639 | * should be, so we would drop this skb. It should now be fixed. |
| 640 | * One option is to not accept data until we are properly setup. |
| 641 | * But, I suspect that when it happens, the ppp line discipline |
| 642 | * just "drops" the data, which might screw up connect scripts. |
| 643 | * The second option is to create a "safe skb", with large header |
| 644 | * and small size (see ircomm_tty_open() for values). |
| 645 | * We just need to make sure that when the real values get filled, |
| 646 | * we don't mess up the original "safe skb" (see tx_data_size). |
| 647 | * Jean II */ |
| 648 | if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 649 | pr_debug("%s() : not initialised\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | #ifdef IRCOMM_NO_TX_BEFORE_INIT |
| 651 | /* We didn't consume anything, TTY will retry */ |
| 652 | return 0; |
| 653 | #endif |
| 654 | } |
| 655 | |
| 656 | if (count < 1) |
| 657 | return 0; |
| 658 | |
| 659 | /* Protect our manipulation of self->tx_skb and related */ |
| 660 | spin_lock_irqsave(&self->spinlock, flags); |
| 661 | |
| 662 | /* Fetch current transmit buffer */ |
| 663 | skb = self->tx_skb; |
| 664 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 665 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | * Send out all the data we get, possibly as multiple fragmented |
| 667 | * frames, but this will only happen if the data is larger than the |
| 668 | * max data size. The normal case however is just the opposite, and |
| 669 | * this function may be called multiple times, and will then actually |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 670 | * defragment the data and send it out as one packet as soon as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | * possible, but at a safer point in time |
| 672 | */ |
| 673 | while (count) { |
| 674 | size = count; |
| 675 | |
| 676 | /* Adjust data size to the max data size */ |
| 677 | if (size > self->max_data_size) |
| 678 | size = self->max_data_size; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 679 | |
| 680 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | * Do we already have a buffer ready for transmit, or do |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 682 | * we need to allocate a new frame |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | */ |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 684 | if (skb) { |
| 685 | /* |
| 686 | * Any room for more data at the end of the current |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | * transmit buffer? Cannot use skb_tailroom, since |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 688 | * dev_alloc_skb gives us a larger skb than we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | * requested |
| 690 | * Note : use tx_data_size, because max_data_size |
| 691 | * may have changed and we don't want to overwrite |
| 692 | * the skb. - Jean II |
| 693 | */ |
| 694 | if ((tailroom = (self->tx_data_size - skb->len)) > 0) { |
| 695 | /* Adjust data to tailroom */ |
| 696 | if (size > tailroom) |
| 697 | size = tailroom; |
| 698 | } else { |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 699 | /* |
| 700 | * Current transmit frame is full, so break |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | * out, so we can send it as soon as possible |
| 702 | */ |
| 703 | break; |
| 704 | } |
| 705 | } else { |
| 706 | /* Prepare a full sized frame */ |
Samuel Ortiz | 485fb2c | 2006-07-21 14:50:41 -0700 | [diff] [blame] | 707 | skb = alloc_skb(self->max_data_size+ |
| 708 | self->max_header_size, |
| 709 | GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | if (!skb) { |
| 711 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 712 | return -ENOBUFS; |
| 713 | } |
| 714 | skb_reserve(skb, self->max_header_size); |
| 715 | self->tx_skb = skb; |
| 716 | /* Remember skb size because max_data_size may |
| 717 | * change later on - Jean II */ |
| 718 | self->tx_data_size = self->max_data_size; |
| 719 | } |
| 720 | |
| 721 | /* Copy data */ |
| 722 | memcpy(skb_put(skb,size), buf + len, size); |
| 723 | |
| 724 | count -= size; |
| 725 | len += size; |
| 726 | } |
| 727 | |
| 728 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 729 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 730 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | * Schedule a new thread which will transmit the frame as soon |
| 732 | * as possible, but at a safe point in time. We do this so the |
| 733 | * "user" can give us data multiple times, as PPP does (because of |
| 734 | * its 256 byte tx buffer). We will then defragment and send out |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 735 | * all this data as one single packet. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | */ |
| 737 | schedule_work(&self->tqueue); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | return len; |
| 740 | } |
| 741 | |
| 742 | /* |
| 743 | * Function ircomm_tty_write_room (tty) |
| 744 | * |
| 745 | * This routine returns the numbers of characters the tty driver will |
| 746 | * accept for queuing to be written. This number is subject to change as |
| 747 | * output buffers get emptied, or if the output flow control is acted. |
| 748 | */ |
| 749 | static int ircomm_tty_write_room(struct tty_struct *tty) |
| 750 | { |
| 751 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 752 | unsigned long flags; |
| 753 | int ret; |
| 754 | |
| 755 | IRDA_ASSERT(self != NULL, return -1;); |
| 756 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); |
| 757 | |
| 758 | #ifdef IRCOMM_NO_TX_BEFORE_INIT |
| 759 | /* max_header_size tells us if the channel is initialised or not. */ |
| 760 | if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) |
| 761 | /* Don't bother us yet */ |
| 762 | return 0; |
| 763 | #endif |
| 764 | |
| 765 | /* Check if we are allowed to transmit any data. |
| 766 | * hw_stopped is the regular flow control. |
| 767 | * Jean II */ |
| 768 | if (tty->hw_stopped) |
| 769 | ret = 0; |
| 770 | else { |
| 771 | spin_lock_irqsave(&self->spinlock, flags); |
| 772 | if (self->tx_skb) |
| 773 | ret = self->tx_data_size - self->tx_skb->len; |
| 774 | else |
| 775 | ret = self->max_data_size; |
| 776 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 777 | } |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 778 | pr_debug("%s(), ret=%d\n", __func__ , ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | |
| 780 | return ret; |
| 781 | } |
| 782 | |
| 783 | /* |
| 784 | * Function ircomm_tty_wait_until_sent (tty, timeout) |
| 785 | * |
| 786 | * This routine waits until the device has written out all of the |
| 787 | * characters in its transmitter FIFO. |
| 788 | */ |
| 789 | static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout) |
| 790 | { |
| 791 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 792 | unsigned long orig_jiffies, poll_time; |
| 793 | unsigned long flags; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | IRDA_ASSERT(self != NULL, return;); |
| 796 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 797 | |
| 798 | orig_jiffies = jiffies; |
| 799 | |
| 800 | /* Set poll time to 200 ms */ |
| 801 | poll_time = IRDA_MIN(timeout, msecs_to_jiffies(200)); |
| 802 | |
| 803 | spin_lock_irqsave(&self->spinlock, flags); |
| 804 | while (self->tx_skb && self->tx_skb->len) { |
| 805 | spin_unlock_irqrestore(&self->spinlock, flags); |
Nishanth Aravamudan | 121caf5 | 2005-09-12 14:15:34 -0700 | [diff] [blame] | 806 | schedule_timeout_interruptible(poll_time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | spin_lock_irqsave(&self->spinlock, flags); |
| 808 | if (signal_pending(current)) |
| 809 | break; |
| 810 | if (timeout && time_after(jiffies, orig_jiffies + timeout)) |
| 811 | break; |
| 812 | } |
| 813 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 814 | current->state = TASK_RUNNING; |
| 815 | } |
| 816 | |
| 817 | /* |
| 818 | * Function ircomm_tty_throttle (tty) |
| 819 | * |
| 820 | * This routine notifies the tty driver that input buffers for the line |
| 821 | * discipline are close to full, and it should somehow signal that no |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 822 | * more characters should be sent to the tty. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | */ |
| 824 | static void ircomm_tty_throttle(struct tty_struct *tty) |
| 825 | { |
| 826 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | IRDA_ASSERT(self != NULL, return;); |
| 829 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 830 | |
| 831 | /* Software flow control? */ |
| 832 | if (I_IXOFF(tty)) |
| 833 | ircomm_tty_send_xchar(tty, STOP_CHAR(tty)); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | /* Hardware flow control? */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 836 | if (tty->termios.c_cflag & CRTSCTS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | self->settings.dte &= ~IRCOMM_RTS; |
| 838 | self->settings.dte |= IRCOMM_DELTA_RTS; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | ircomm_param_request(self, IRCOMM_DTE, TRUE); |
| 841 | } |
| 842 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 843 | ircomm_flow_request(self->ircomm, FLOW_STOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | } |
| 845 | |
| 846 | /* |
| 847 | * Function ircomm_tty_unthrottle (tty) |
| 848 | * |
| 849 | * This routine notifies the tty drivers that it should signals that |
| 850 | * characters can now be sent to the tty without fear of overrunning the |
| 851 | * input buffers of the line disciplines. |
| 852 | */ |
| 853 | static void ircomm_tty_unthrottle(struct tty_struct *tty) |
| 854 | { |
| 855 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | IRDA_ASSERT(self != NULL, return;); |
| 858 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 859 | |
| 860 | /* Using software flow control? */ |
| 861 | if (I_IXOFF(tty)) { |
| 862 | ircomm_tty_send_xchar(tty, START_CHAR(tty)); |
| 863 | } |
| 864 | |
| 865 | /* Using hardware flow control? */ |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 866 | if (tty->termios.c_cflag & CRTSCTS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS); |
| 868 | |
| 869 | ircomm_param_request(self, IRCOMM_DTE, TRUE); |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 870 | pr_debug("%s(), FLOW_START\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 872 | ircomm_flow_request(self->ircomm, FLOW_START); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | /* |
| 876 | * Function ircomm_tty_chars_in_buffer (tty) |
| 877 | * |
| 878 | * Indicates if there are any data in the buffer |
| 879 | * |
| 880 | */ |
| 881 | static int ircomm_tty_chars_in_buffer(struct tty_struct *tty) |
| 882 | { |
| 883 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 884 | unsigned long flags; |
| 885 | int len = 0; |
| 886 | |
| 887 | IRDA_ASSERT(self != NULL, return -1;); |
| 888 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); |
| 889 | |
| 890 | spin_lock_irqsave(&self->spinlock, flags); |
| 891 | |
| 892 | if (self->tx_skb) |
| 893 | len = self->tx_skb->len; |
| 894 | |
| 895 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 896 | |
| 897 | return len; |
| 898 | } |
| 899 | |
| 900 | static void ircomm_tty_shutdown(struct ircomm_tty_cb *self) |
| 901 | { |
| 902 | unsigned long flags; |
| 903 | |
| 904 | IRDA_ASSERT(self != NULL, return;); |
| 905 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 906 | |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 907 | if (!test_and_clear_bit(ASYNCB_INITIALIZED, &self->port.flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | return; |
| 909 | |
| 910 | ircomm_tty_detach_cable(self); |
| 911 | |
| 912 | spin_lock_irqsave(&self->spinlock, flags); |
| 913 | |
| 914 | del_timer(&self->watchdog_timer); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | /* Free parameter buffer */ |
| 917 | if (self->ctrl_skb) { |
| 918 | dev_kfree_skb(self->ctrl_skb); |
| 919 | self->ctrl_skb = NULL; |
| 920 | } |
| 921 | |
| 922 | /* Free transmit buffer */ |
| 923 | if (self->tx_skb) { |
| 924 | dev_kfree_skb(self->tx_skb); |
| 925 | self->tx_skb = NULL; |
| 926 | } |
| 927 | |
| 928 | if (self->ircomm) { |
| 929 | ircomm_close(self->ircomm); |
| 930 | self->ircomm = NULL; |
| 931 | } |
| 932 | |
| 933 | spin_unlock_irqrestore(&self->spinlock, flags); |
| 934 | } |
| 935 | |
| 936 | /* |
| 937 | * Function ircomm_tty_hangup (tty) |
| 938 | * |
| 939 | * This routine notifies the tty driver that it should hangup the tty |
| 940 | * device. |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 941 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | */ |
| 943 | static void ircomm_tty_hangup(struct tty_struct *tty) |
| 944 | { |
| 945 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 946 | struct tty_port *port = &self->port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | unsigned long flags; |
| 948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | IRDA_ASSERT(self != NULL, return;); |
| 950 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | /* ircomm_tty_flush_buffer(tty); */ |
| 953 | ircomm_tty_shutdown(self); |
| 954 | |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 955 | spin_lock_irqsave(&port->lock, flags); |
| 956 | port->flags &= ~ASYNC_NORMAL_ACTIVE; |
| 957 | if (port->tty) { |
| 958 | set_bit(TTY_IO_ERROR, &port->tty->flags); |
| 959 | tty_kref_put(port->tty); |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 960 | } |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 961 | port->tty = NULL; |
| 962 | port->count = 0; |
| 963 | spin_unlock_irqrestore(&port->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | |
Jiri Slaby | 38c5803 | 2012-06-04 13:35:22 +0200 | [diff] [blame] | 965 | wake_up_interruptible(&port->open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | /* |
| 969 | * Function ircomm_tty_send_xchar (tty, ch) |
| 970 | * |
| 971 | * This routine is used to send a high-priority XON/XOFF character to |
| 972 | * the device. |
| 973 | */ |
| 974 | static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch) |
| 975 | { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 976 | pr_debug("%s(), not impl\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | /* |
| 980 | * Function ircomm_tty_start (tty) |
| 981 | * |
| 982 | * This routine notifies the tty driver that it resume sending |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 983 | * characters to the tty device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | */ |
| 985 | void ircomm_tty_start(struct tty_struct *tty) |
| 986 | { |
| 987 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 988 | |
| 989 | ircomm_flow_request(self->ircomm, FLOW_START); |
| 990 | } |
| 991 | |
| 992 | /* |
| 993 | * Function ircomm_tty_stop (tty) |
| 994 | * |
| 995 | * This routine notifies the tty driver that it should stop outputting |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 996 | * characters to the tty device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | */ |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 998 | static void ircomm_tty_stop(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | { |
| 1000 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; |
| 1001 | |
| 1002 | IRDA_ASSERT(self != NULL, return;); |
| 1003 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 1004 | |
| 1005 | ircomm_flow_request(self->ircomm, FLOW_STOP); |
| 1006 | } |
| 1007 | |
| 1008 | /* |
| 1009 | * Function ircomm_check_modem_status (self) |
| 1010 | * |
| 1011 | * Check for any changes in the DCE's line settings. This function should |
| 1012 | * be called whenever the dce parameter settings changes, to update the |
| 1013 | * flow control settings and other things |
| 1014 | */ |
| 1015 | void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self) |
| 1016 | { |
| 1017 | struct tty_struct *tty; |
| 1018 | int status; |
| 1019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | IRDA_ASSERT(self != NULL, return;); |
| 1021 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 1022 | |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1023 | tty = tty_port_tty_get(&self->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | |
| 1025 | status = self->settings.dce; |
| 1026 | |
| 1027 | if (status & IRCOMM_DCE_DELTA_ANY) { |
| 1028 | /*wake_up_interruptible(&self->delta_msr_wait);*/ |
| 1029 | } |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 1030 | if ((self->port.flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1031 | pr_debug("%s(), ircomm%d CD now %s...\n", __func__ , self->line, |
| 1032 | (status & IRCOMM_CD) ? "on" : "off"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | |
| 1034 | if (status & IRCOMM_CD) { |
Jiri Slaby | a3cc9fc | 2012-06-04 13:35:16 +0200 | [diff] [blame] | 1035 | wake_up_interruptible(&self->port.open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | } else { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1037 | pr_debug("%s(), Doing serial hangup..\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | if (tty) |
| 1039 | tty_hangup(tty); |
| 1040 | |
| 1041 | /* Hangup will remote the tty, so better break out */ |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1042 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | } |
| 1044 | } |
Huang Shijie | f21ec3d | 2012-08-22 22:13:36 -0400 | [diff] [blame] | 1045 | if (tty && tty_port_cts_enabled(&self->port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | if (tty->hw_stopped) { |
| 1047 | if (status & IRCOMM_CTS) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1048 | pr_debug("%s(), CTS tx start...\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | tty->hw_stopped = 0; |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1050 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | /* Wake up processes blocked on open */ |
Jiri Slaby | a3cc9fc | 2012-06-04 13:35:16 +0200 | [diff] [blame] | 1052 | wake_up_interruptible(&self->port.open_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
| 1054 | schedule_work(&self->tqueue); |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1055 | goto put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | } |
| 1057 | } else { |
| 1058 | if (!(status & IRCOMM_CTS)) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1059 | pr_debug("%s(), CTS tx stop...\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | tty->hw_stopped = 1; |
| 1061 | } |
| 1062 | } |
| 1063 | } |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1064 | put: |
| 1065 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | } |
| 1067 | |
| 1068 | /* |
| 1069 | * Function ircomm_tty_data_indication (instance, sap, skb) |
| 1070 | * |
| 1071 | * Handle incoming data, and deliver it to the line discipline |
| 1072 | * |
| 1073 | */ |
| 1074 | static int ircomm_tty_data_indication(void *instance, void *sap, |
| 1075 | struct sk_buff *skb) |
| 1076 | { |
| 1077 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance; |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1078 | struct tty_struct *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | IRDA_ASSERT(self != NULL, return -1;); |
| 1081 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); |
| 1082 | IRDA_ASSERT(skb != NULL, return -1;); |
| 1083 | |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1084 | tty = tty_port_tty_get(&self->port); |
| 1085 | if (!tty) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1086 | pr_debug("%s(), no tty!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | return 0; |
| 1088 | } |
| 1089 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1090 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | * If we receive data when hardware is stopped then something is wrong. |
| 1092 | * We try to poll the peers line settings to check if we are up todate. |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1093 | * Devices like WinCE can do this, and since they don't send any |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | * params, we can just as well declare the hardware for running. |
| 1095 | */ |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1096 | if (tty->hw_stopped && (self->flow == FLOW_START)) { |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1097 | pr_debug("%s(), polling for line settings!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | ircomm_param_request(self, IRCOMM_POLL, TRUE); |
| 1099 | |
| 1100 | /* We can just as well declare the hardware for running */ |
| 1101 | ircomm_tty_send_initial_parameters(self); |
| 1102 | ircomm_tty_link_established(self); |
| 1103 | } |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 1104 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1106 | /* |
Amit Virdi | cbfd152 | 2011-05-12 01:04:40 +0000 | [diff] [blame] | 1107 | * Use flip buffer functions since the code may be called from interrupt |
| 1108 | * context |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | */ |
Jiri Slaby | 05c7cd3 | 2013-01-03 15:53:04 +0100 | [diff] [blame] | 1110 | tty_insert_flip_string(&self->port, skb->data, skb->len); |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 1111 | tty_flip_buffer_push(&self->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
| 1113 | /* No need to kfree_skb - see ircomm_ttp_data_indication() */ |
| 1114 | |
| 1115 | return 0; |
| 1116 | } |
| 1117 | |
| 1118 | /* |
| 1119 | * Function ircomm_tty_control_indication (instance, sap, skb) |
| 1120 | * |
| 1121 | * Parse all incoming parameters (easy!) |
| 1122 | * |
| 1123 | */ |
| 1124 | static int ircomm_tty_control_indication(void *instance, void *sap, |
| 1125 | struct sk_buff *skb) |
| 1126 | { |
| 1127 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance; |
| 1128 | int clen; |
| 1129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | IRDA_ASSERT(self != NULL, return -1;); |
| 1131 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;); |
| 1132 | IRDA_ASSERT(skb != NULL, return -1;); |
| 1133 | |
| 1134 | clen = skb->data[0]; |
| 1135 | |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1136 | irda_param_extract_all(self, skb->data+1, IRDA_MIN(skb->len-1, clen), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | &ircomm_param_info); |
| 1138 | |
| 1139 | /* No need to kfree_skb - see ircomm_control_indication() */ |
| 1140 | |
| 1141 | return 0; |
| 1142 | } |
| 1143 | |
| 1144 | /* |
| 1145 | * Function ircomm_tty_flow_indication (instance, sap, cmd) |
| 1146 | * |
| 1147 | * This function is called by IrTTP when it wants us to slow down the |
| 1148 | * transmission of data. We just mark the hardware as stopped, and wait |
| 1149 | * for IrTTP to notify us that things are OK again. |
| 1150 | */ |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1151 | static void ircomm_tty_flow_indication(void *instance, void *sap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | LOCAL_FLOW cmd) |
| 1153 | { |
| 1154 | struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance; |
| 1155 | struct tty_struct *tty; |
| 1156 | |
| 1157 | IRDA_ASSERT(self != NULL, return;); |
| 1158 | IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;); |
| 1159 | |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1160 | tty = tty_port_tty_get(&self->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | |
| 1162 | switch (cmd) { |
| 1163 | case FLOW_START: |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1164 | pr_debug("%s(), hw start!\n", __func__); |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1165 | if (tty) |
| 1166 | tty->hw_stopped = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | |
| 1168 | /* ircomm_tty_do_softint will take care of the rest */ |
| 1169 | schedule_work(&self->tqueue); |
| 1170 | break; |
| 1171 | default: /* If we get here, something is very wrong, better stop */ |
| 1172 | case FLOW_STOP: |
Joe Perches | 955a9d20 | 2014-11-11 14:44:57 -0800 | [diff] [blame^] | 1173 | pr_debug("%s(), hw stopped!\n", __func__); |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1174 | if (tty) |
| 1175 | tty->hw_stopped = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | break; |
| 1177 | } |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1178 | |
| 1179 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | self->flow = cmd; |
| 1181 | } |
| 1182 | |
Pavel Emelyanov | 92b05e13 | 2007-12-05 02:18:48 -0800 | [diff] [blame] | 1183 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1184 | static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | { |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1186 | struct tty_struct *tty; |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1187 | char sep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1189 | seq_printf(m, "State: %s\n", ircomm_tty_state[self->state]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1191 | seq_puts(m, "Service type: "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | if (self->service_type & IRCOMM_9_WIRE) |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1193 | seq_puts(m, "9_WIRE"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | else if (self->service_type & IRCOMM_3_WIRE) |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1195 | seq_puts(m, "3_WIRE"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | else if (self->service_type & IRCOMM_3_WIRE_RAW) |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1197 | seq_puts(m, "3_WIRE_RAW"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | else |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1199 | seq_puts(m, "No common service type!\n"); |
| 1200 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1202 | seq_printf(m, "Port name: %s\n", self->settings.port_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1204 | seq_printf(m, "DTE status:"); |
| 1205 | sep = ' '; |
| 1206 | if (self->settings.dte & IRCOMM_RTS) { |
| 1207 | seq_printf(m, "%cRTS", sep); |
| 1208 | sep = '|'; |
| 1209 | } |
| 1210 | if (self->settings.dte & IRCOMM_DTR) { |
| 1211 | seq_printf(m, "%cDTR", sep); |
| 1212 | sep = '|'; |
| 1213 | } |
| 1214 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1216 | seq_puts(m, "DCE status:"); |
| 1217 | sep = ' '; |
| 1218 | if (self->settings.dce & IRCOMM_CTS) { |
| 1219 | seq_printf(m, "%cCTS", sep); |
| 1220 | sep = '|'; |
| 1221 | } |
| 1222 | if (self->settings.dce & IRCOMM_DSR) { |
| 1223 | seq_printf(m, "%cDSR", sep); |
| 1224 | sep = '|'; |
| 1225 | } |
| 1226 | if (self->settings.dce & IRCOMM_CD) { |
| 1227 | seq_printf(m, "%cCD", sep); |
| 1228 | sep = '|'; |
| 1229 | } |
| 1230 | if (self->settings.dce & IRCOMM_RI) { |
| 1231 | seq_printf(m, "%cRI", sep); |
| 1232 | sep = '|'; |
| 1233 | } |
| 1234 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1236 | seq_puts(m, "Configuration: "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | if (!self->settings.null_modem) |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1238 | seq_puts(m, "DTE <-> DCE\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | else |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1240 | seq_puts(m, "DTE <-> DTE (null modem emulation)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1242 | seq_printf(m, "Data rate: %d\n", self->settings.data_rate); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1244 | seq_puts(m, "Flow control:"); |
| 1245 | sep = ' '; |
| 1246 | if (self->settings.flow_control & IRCOMM_XON_XOFF_IN) { |
| 1247 | seq_printf(m, "%cXON_XOFF_IN", sep); |
| 1248 | sep = '|'; |
| 1249 | } |
| 1250 | if (self->settings.flow_control & IRCOMM_XON_XOFF_OUT) { |
| 1251 | seq_printf(m, "%cXON_XOFF_OUT", sep); |
| 1252 | sep = '|'; |
| 1253 | } |
| 1254 | if (self->settings.flow_control & IRCOMM_RTS_CTS_IN) { |
| 1255 | seq_printf(m, "%cRTS_CTS_IN", sep); |
| 1256 | sep = '|'; |
| 1257 | } |
| 1258 | if (self->settings.flow_control & IRCOMM_RTS_CTS_OUT) { |
| 1259 | seq_printf(m, "%cRTS_CTS_OUT", sep); |
| 1260 | sep = '|'; |
| 1261 | } |
| 1262 | if (self->settings.flow_control & IRCOMM_DSR_DTR_IN) { |
| 1263 | seq_printf(m, "%cDSR_DTR_IN", sep); |
| 1264 | sep = '|'; |
| 1265 | } |
| 1266 | if (self->settings.flow_control & IRCOMM_DSR_DTR_OUT) { |
| 1267 | seq_printf(m, "%cDSR_DTR_OUT", sep); |
| 1268 | sep = '|'; |
| 1269 | } |
| 1270 | if (self->settings.flow_control & IRCOMM_ENQ_ACK_IN) { |
| 1271 | seq_printf(m, "%cENQ_ACK_IN", sep); |
| 1272 | sep = '|'; |
| 1273 | } |
| 1274 | if (self->settings.flow_control & IRCOMM_ENQ_ACK_OUT) { |
| 1275 | seq_printf(m, "%cENQ_ACK_OUT", sep); |
| 1276 | sep = '|'; |
| 1277 | } |
| 1278 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1280 | seq_puts(m, "Flags:"); |
| 1281 | sep = ' '; |
Huang Shijie | f21ec3d | 2012-08-22 22:13:36 -0400 | [diff] [blame] | 1282 | if (tty_port_cts_enabled(&self->port)) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1283 | seq_printf(m, "%cASYNC_CTS_FLOW", sep); |
| 1284 | sep = '|'; |
| 1285 | } |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 1286 | if (self->port.flags & ASYNC_CHECK_CD) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1287 | seq_printf(m, "%cASYNC_CHECK_CD", sep); |
| 1288 | sep = '|'; |
| 1289 | } |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 1290 | if (self->port.flags & ASYNC_INITIALIZED) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1291 | seq_printf(m, "%cASYNC_INITIALIZED", sep); |
| 1292 | sep = '|'; |
| 1293 | } |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 1294 | if (self->port.flags & ASYNC_LOW_LATENCY) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1295 | seq_printf(m, "%cASYNC_LOW_LATENCY", sep); |
| 1296 | sep = '|'; |
| 1297 | } |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 1298 | if (self->port.flags & ASYNC_CLOSING) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1299 | seq_printf(m, "%cASYNC_CLOSING", sep); |
| 1300 | sep = '|'; |
| 1301 | } |
Jiri Slaby | 849d5a9 | 2012-06-04 13:35:19 +0200 | [diff] [blame] | 1302 | if (self->port.flags & ASYNC_NORMAL_ACTIVE) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1303 | seq_printf(m, "%cASYNC_NORMAL_ACTIVE", sep); |
| 1304 | sep = '|'; |
| 1305 | } |
| 1306 | seq_putc(m, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1308 | seq_printf(m, "Role: %s\n", self->client ? "client" : "server"); |
Jiri Slaby | 580d27b | 2012-06-04 13:35:18 +0200 | [diff] [blame] | 1309 | seq_printf(m, "Open count: %d\n", self->port.count); |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1310 | seq_printf(m, "Max data size: %d\n", self->max_data_size); |
| 1311 | seq_printf(m, "Max header size: %d\n", self->max_header_size); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1312 | |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1313 | tty = tty_port_tty_get(&self->port); |
| 1314 | if (tty) { |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1315 | seq_printf(m, "Hardware: %s\n", |
Jiri Slaby | 62f228a | 2012-06-04 13:35:21 +0200 | [diff] [blame] | 1316 | tty->hw_stopped ? "Stopped" : "Running"); |
| 1317 | tty_kref_put(tty); |
| 1318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | } |
| 1320 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1321 | static int ircomm_tty_proc_show(struct seq_file *m, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | { |
| 1323 | struct ircomm_tty_cb *self; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | unsigned long flags; |
| 1325 | |
| 1326 | spin_lock_irqsave(&ircomm_tty->hb_spinlock, flags); |
| 1327 | |
| 1328 | self = (struct ircomm_tty_cb *) hashbin_get_first(ircomm_tty); |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1329 | while (self != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | if (self->magic != IRCOMM_TTY_MAGIC) |
| 1331 | break; |
| 1332 | |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1333 | ircomm_tty_line_info(self, m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | self = (struct ircomm_tty_cb *) hashbin_get_next(ircomm_tty); |
YOSHIFUJI Hideaki | 6819bc2 | 2007-02-09 23:24:53 +0900 | [diff] [blame] | 1335 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | spin_unlock_irqrestore(&ircomm_tty->hb_spinlock, flags); |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1337 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | } |
Alexey Dobriyan | 3d30417 | 2009-03-31 15:19:22 -0700 | [diff] [blame] | 1339 | |
| 1340 | static int ircomm_tty_proc_open(struct inode *inode, struct file *file) |
| 1341 | { |
| 1342 | return single_open(file, ircomm_tty_proc_show, NULL); |
| 1343 | } |
| 1344 | |
| 1345 | static const struct file_operations ircomm_tty_proc_fops = { |
| 1346 | .owner = THIS_MODULE, |
| 1347 | .open = ircomm_tty_proc_open, |
| 1348 | .read = seq_read, |
| 1349 | .llseek = seq_lseek, |
| 1350 | .release = single_release, |
| 1351 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | #endif /* CONFIG_PROC_FS */ |
| 1353 | |
| 1354 | MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>"); |
| 1355 | MODULE_DESCRIPTION("IrCOMM serial TTY driver"); |
| 1356 | MODULE_LICENSE("GPL"); |
| 1357 | MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR); |
| 1358 | |
| 1359 | module_init(ircomm_tty_init); |
| 1360 | module_exit(ircomm_tty_cleanup); |