blob: 61ceb4cdb4a262d56475f7a0ddb16d0e42672fc8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*********************************************************************
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09002 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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 Hideaki6819bc22007-02-09 23:24:53 +090012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
14 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090015 *
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 Torvalds1da177e2005-04-16 15:20:36 -070019 * the License, or (at your option) any later version.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * 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 Hideaki6819bc22007-02-09 23:24:53 +090025 *
26 * You should have received a copy of the GNU General Public License
Jeff Kirsherd3770502013-12-06 09:13:43 -080027 * along with this program; if not, see <http://www.gnu.org/licenses/>.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 ********************************************************************/
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
32#include <linux/module.h>
33#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/sched.h>
Alexey Dobriyan3d304172009-03-31 15:19:22 -070036#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/termios.h>
38#include <linux/tty.h>
Amit Virdicbfd1522011-05-12 01:04:40 +000039#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#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 Slaby9c650ff2012-08-07 21:48:02 +020053static int ircomm_tty_install(struct tty_driver *driver,
54 struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int ircomm_tty_open(struct tty_struct *tty, struct file *filp);
56static void ircomm_tty_close(struct tty_struct * tty, struct file *filp);
57static int ircomm_tty_write(struct tty_struct * tty,
58 const unsigned char *buf, int count);
59static int ircomm_tty_write_room(struct tty_struct *tty);
60static void ircomm_tty_throttle(struct tty_struct *tty);
61static void ircomm_tty_unthrottle(struct tty_struct *tty);
62static int ircomm_tty_chars_in_buffer(struct tty_struct *tty);
63static void ircomm_tty_flush_buffer(struct tty_struct *tty);
64static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch);
65static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout);
66static void ircomm_tty_hangup(struct tty_struct *tty);
David Howellsc4028952006-11-22 14:57:56 +000067static void ircomm_tty_do_softint(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static void ircomm_tty_shutdown(struct ircomm_tty_cb *self);
69static void ircomm_tty_stop(struct tty_struct *tty);
70
71static int ircomm_tty_data_indication(void *instance, void *sap,
72 struct sk_buff *skb);
73static int ircomm_tty_control_indication(void *instance, void *sap,
74 struct sk_buff *skb);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090075static void ircomm_tty_flow_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 LOCAL_FLOW cmd);
77#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -070078static const struct file_operations ircomm_tty_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#endif /* CONFIG_PROC_FS */
80static struct tty_driver *driver;
81
Adrian Bunkd76081f2007-10-26 03:56:43 -070082static hashbin_t *ircomm_tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Jeff Dikeb68e31d2006-10-02 02:17:18 -070084static const struct tty_operations ops = {
Jiri Slaby9c650ff2012-08-07 21:48:02 +020085 .install = ircomm_tty_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 .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 Dobriyan3d304172009-03-31 15:19:22 -0700104 .proc_fops = &ircomm_tty_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif /* CONFIG_PROC_FS */
106};
107
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200108static 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
125static 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
132static 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 Torvalds1da177e2005-04-16 15:20:36 -0700137/*
138 * Function ircomm_tty_init()
139 *
140 * Init IrCOMM TTY layer/driver
141 *
142 */
143static int __init ircomm_tty_init(void)
144{
145 driver = alloc_tty_driver(IRCOMM_TTY_PORTS);
146 if (!driver)
147 return -ENOMEM;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900148 ircomm_tty = hashbin_new(HB_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (ircomm_tty == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800150 IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 put_tty_driver(driver);
152 return -ENOMEM;
153 }
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 driver->driver_name = "ircomm";
156 driver->name = "ircomm";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 driver->major = IRCOMM_TTY_MAJOR;
158 driver->minor_start = IRCOMM_TTY_MINOR;
159 driver->type = TTY_DRIVER_TYPE_SERIAL;
160 driver->subtype = SERIAL_TYPE_NORMAL;
161 driver->init_termios = tty_std_termios;
162 driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
163 driver->flags = TTY_DRIVER_REAL_RAW;
164 tty_set_operations(driver, &ops);
165 if (tty_register_driver(driver)) {
166 IRDA_ERROR("%s(): Couldn't register serial driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800167 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 put_tty_driver(driver);
169 return -1;
170 }
171 return 0;
172}
173
174static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
175{
Harvey Harrison0dc47872008-03-05 20:47:47 -0800176 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 IRDA_ASSERT(self != NULL, return;);
179 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
180
181 ircomm_tty_shutdown(self);
182
183 self->magic = 0;
Jiri Slaby191c5f12012-11-15 09:49:56 +0100184 tty_port_destroy(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kfree(self);
186}
187
188/*
189 * Function ircomm_tty_cleanup ()
190 *
191 * Remove IrCOMM TTY layer/driver
192 *
193 */
194static void __exit ircomm_tty_cleanup(void)
195{
196 int ret;
197
Harvey Harrison0dc47872008-03-05 20:47:47 -0800198 IRDA_DEBUG(4, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 ret = tty_unregister_driver(driver);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900201 if (ret) {
202 IRDA_ERROR("%s(), failed to unregister driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800203 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return;
205 }
206
207 hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup);
208 put_tty_driver(driver);
209}
210
211/*
212 * Function ircomm_startup (self)
213 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900214 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 *
216 */
217static int ircomm_tty_startup(struct ircomm_tty_cb *self)
218{
219 notify_t notify;
220 int ret = -ENODEV;
221
Harvey Harrison0dc47872008-03-05 20:47:47 -0800222 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 IRDA_ASSERT(self != NULL, return -1;);
225 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
226
227 /* Check if already open */
Jiri Slaby849d5a92012-06-04 13:35:19 +0200228 if (test_and_set_bit(ASYNCB_INITIALIZED, &self->port.flags)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800229 IRDA_DEBUG(2, "%s(), already open so break out!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 0;
231 }
232
233 /* Register with IrCOMM */
234 irda_notify_init(&notify);
235 /* These callbacks we must handle ourselves */
236 notify.data_indication = ircomm_tty_data_indication;
237 notify.udata_indication = ircomm_tty_control_indication;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900238 notify.flow_indication = ircomm_tty_flow_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* Use the ircomm_tty interface for these ones */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900241 notify.disconnect_indication = ircomm_tty_disconnect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 notify.connect_confirm = ircomm_tty_connect_confirm;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900243 notify.connect_indication = ircomm_tty_connect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 strlcpy(notify.name, "ircomm_tty", sizeof(notify.name));
245 notify.instance = self;
246
247 if (!self->ircomm) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900248 self->ircomm = ircomm_open(&notify, self->service_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 self->line);
250 }
251 if (!self->ircomm)
252 goto err;
253
254 self->slsap_sel = self->ircomm->slsap_sel;
255
256 /* Connect IrCOMM link with remote device */
257 ret = ircomm_tty_attach_cable(self);
258 if (ret < 0) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800259 IRDA_ERROR("%s(), error attaching cable!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 goto err;
261 }
262
263 return 0;
264err:
Jiri Slaby849d5a92012-06-04 13:35:19 +0200265 clear_bit(ASYNCB_INITIALIZED, &self->port.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return ret;
267}
268
269/*
270 * Function ircomm_block_til_ready (self, filp)
271 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900272 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
274 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900275static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
Jiri Slaby62f228a2012-06-04 13:35:21 +0200276 struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Jiri Slaby38c58032012-06-04 13:35:22 +0200278 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 DECLARE_WAITQUEUE(wait, current);
280 int retval;
Peter Hurleya4ed2e72013-03-05 06:09:04 +0000281 int do_clocal = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900283
Harvey Harrison0dc47872008-03-05 20:47:47 -0800284 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * If non-blocking mode is set, or the port is not enabled,
288 * then make the check up front and then exit.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900289 */
Peter Hurleyf74861c2013-03-05 06:09:07 +0000290 if (test_bit(TTY_IO_ERROR, &tty->flags)) {
291 port->flags |= ASYNC_NORMAL_ACTIVE;
292 return 0;
293 }
294
295 if (filp->f_flags & O_NONBLOCK) {
296 /* nonblock mode is set */
297 if (tty->termios.c_cflag & CBAUD)
298 tty_port_raise_dtr_rts(port);
Jiri Slaby38c58032012-06-04 13:35:22 +0200299 port->flags |= ASYNC_NORMAL_ACTIVE;
Harvey Harrison0dc47872008-03-05 20:47:47 -0800300 IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 0;
302 }
303
Alan Coxadc8d742012-07-14 15:31:47 +0100304 if (tty->termios.c_cflag & CLOCAL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800305 IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 do_clocal = 1;
307 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* Wait for carrier detect and the line to become
310 * free (i.e., not in use by the callout). While we are in
Jiri Slaby38c58032012-06-04 13:35:22 +0200311 * this loop, port->count is dropped by one, so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * mgsl_close() knows when to free things. We restore it upon
313 * exit, either normal or abnormal.
314 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 retval = 0;
Jiri Slaby38c58032012-06-04 13:35:22 +0200317 add_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 IRDA_DEBUG(2, "%s(%d):block_til_ready before block on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200320 __FILE__, __LINE__, tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Jiri Slaby38c58032012-06-04 13:35:22 +0200322 spin_lock_irqsave(&port->lock, flags);
Peter Hurleye359a4e2014-06-16 09:17:06 -0400323 port->count--;
Jiri Slaby38c58032012-06-04 13:35:22 +0200324 port->blocked_open++;
Peter Hurley2f7c0692013-03-05 06:09:05 +0000325 spin_unlock_irqrestore(&port->lock, flags);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 while (1) {
Johan Hovolde1c969f2013-04-12 10:32:31 +0200328 if (C_BAUD(tty) && test_bit(ASYNCB_INITIALIZED, &port->flags))
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200329 tty_port_raise_dtr_rts(port);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900330
Peter Hurley0b176ce2013-03-05 06:09:06 +0000331 set_current_state(TASK_INTERRUPTIBLE);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (tty_hung_up_p(filp) ||
Jiri Slaby38c58032012-06-04 13:35:22 +0200334 !test_bit(ASYNCB_INITIALIZED, &port->flags)) {
335 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 -EAGAIN : -ERESTARTSYS;
337 break;
338 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900339
340 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 * Check if link is ready now. Even if CLOCAL is
342 * specified, we cannot return before the IrCOMM link is
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900343 * ready
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 */
Jiri Slaby38c58032012-06-04 13:35:22 +0200345 if (!test_bit(ASYNCB_CLOSING, &port->flags) &&
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200346 (do_clocal || tty_port_carrier_raised(port)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 self->state == IRCOMM_TTY_READY)
348 {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900349 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (signal_pending(current)) {
353 retval = -ERESTARTSYS;
354 break;
355 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 IRDA_DEBUG(1, "%s(%d):block_til_ready blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200358 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 schedule();
361 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 __set_current_state(TASK_RUNNING);
Jiri Slaby38c58032012-06-04 13:35:22 +0200364 remove_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900365
Peter Hurleya4ed2e72013-03-05 06:09:04 +0000366 spin_lock_irqsave(&port->lock, flags);
367 if (!tty_hung_up_p(filp))
Jiri Slaby38c58032012-06-04 13:35:22 +0200368 port->count++;
Jiri Slaby38c58032012-06-04 13:35:22 +0200369 port->blocked_open--;
Peter Hurley2f7c0692013-03-05 06:09:05 +0000370 spin_unlock_irqrestore(&port->lock, flags);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 IRDA_DEBUG(1, "%s(%d):block_til_ready after blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200373 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (!retval)
Jiri Slaby38c58032012-06-04 13:35:22 +0200376 port->flags |= ASYNC_NORMAL_ACTIVE;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900377
378 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Jiri Slaby9c650ff2012-08-07 21:48:02 +0200381
382static int ircomm_tty_install(struct tty_driver *driver, struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct ircomm_tty_cb *self;
Jiri Slaby410235f2012-03-05 14:52:01 +0100385 unsigned int line = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* Check if instance already exists */
388 self = hashbin_lock_find(ircomm_tty, line, NULL);
389 if (!self) {
390 /* No, so make new instance */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700391 self = kzalloc(sizeof(struct ircomm_tty_cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (self == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800393 IRDA_ERROR("%s(), kmalloc failed!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -ENOMEM;
395 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900396
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200397 tty_port_init(&self->port);
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200398 self->port.ops = &ircomm_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 self->magic = IRCOMM_TTY_MAGIC;
400 self->flow = FLOW_STOP;
401
402 self->line = line;
David Howellsc4028952006-11-22 14:57:56 +0000403 INIT_WORK(&self->tqueue, ircomm_tty_do_softint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 self->max_header_size = IRCOMM_TTY_HDR_UNINITIALISED;
405 self->max_data_size = IRCOMM_TTY_DATA_UNINITIALISED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Init some important stuff */
408 init_timer(&self->watchdog_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 spin_lock_init(&self->spinlock);
410
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900411 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * Force TTY into raw mode by default which is usually what
413 * we want for IrCOMM and IrLPT. This way applications will
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900414 * not have to twiddle with printcap etc.
Alan Coxad36b882009-01-02 13:50:20 +0000415 *
416 * Note this is completely usafe and doesn't work properly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 */
Alan Coxadc8d742012-07-14 15:31:47 +0100418 tty->termios.c_iflag = 0;
419 tty->termios.c_oflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /* Insert into hash */
422 hashbin_insert(ircomm_tty, (irda_queue_t *) self, line, NULL);
423 }
Jiri Slaby9c650ff2012-08-07 21:48:02 +0200424
Sasha Levin6f560122012-10-04 20:01:21 -0400425 tty->driver_data = self;
426
Jiri Slaby9c650ff2012-08-07 21:48:02 +0200427 return tty_port_install(&self->port, driver, tty);
428}
429
430/*
431 * Function ircomm_tty_open (tty, filp)
432 *
433 * This routine is called when a particular tty device is opened. This
434 * routine is mandatory; if this routine is not filled in, the attempted
435 * open will fail with ENODEV.
436 */
437static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
438{
439 struct ircomm_tty_cb *self = tty->driver_data;
440 unsigned long flags;
441 int ret;
442
443 IRDA_DEBUG(2, "%s()\n", __func__ );
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /* ++ is not atomic, so this should be protected - Jean II */
Jiri Slabye6739272012-06-04 13:35:20 +0200446 spin_lock_irqsave(&self->port.lock, flags);
Jiri Slaby580d27b2012-06-04 13:35:18 +0200447 self->port.count++;
Jiri Slabye6739272012-06-04 13:35:20 +0200448 spin_unlock_irqrestore(&self->port.lock, flags);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200449 tty_port_tty_set(&self->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Harvey Harrison0dc47872008-03-05 20:47:47 -0800451 IRDA_DEBUG(1, "%s(), %s%d, count = %d\n", __func__ , tty->driver->name,
Jiri Slaby580d27b2012-06-04 13:35:18 +0200452 self->line, self->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 /* Not really used by us, but lets do it anyway */
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100455 self->port.low_latency = (self->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /*
458 * If the port is the middle of closing, bail out now
459 */
Peter Hurleye359a4e2014-06-16 09:17:06 -0400460 if (test_bit(ASYNCB_CLOSING, &self->port.flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /* Hm, why are we blocking on ASYNC_CLOSING if we
463 * do return -EAGAIN/-ERESTARTSYS below anyway?
464 * IMHO it's either not needed in the first place
465 * or for some reason we need to make sure the async
466 * closing has been finished - if so, wouldn't we
467 * probably better sleep uninterruptible?
468 */
469
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200470 if (wait_event_interruptible(self->port.close_wait,
Jiri Slaby849d5a92012-06-04 13:35:19 +0200471 !test_bit(ASYNCB_CLOSING, &self->port.flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 IRDA_WARNING("%s - got signal while blocking on ASYNC_CLOSING!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800473 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return -ERESTARTSYS;
475 }
476
477#ifdef SERIAL_DO_RESTART
Jiri Slaby849d5a92012-06-04 13:35:19 +0200478 return (self->port.flags & ASYNC_HUP_NOTIFY) ?
Eric Dumazeta02cec22010-09-22 20:43:57 +0000479 -EAGAIN : -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#else
481 return -EAGAIN;
482#endif
483 }
484
485 /* Check if this is a "normal" ircomm device, or an irlpt device */
Jiri Slaby9c650ff2012-08-07 21:48:02 +0200486 if (self->line < 0x10) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 self->service_type = IRCOMM_3_WIRE | IRCOMM_9_WIRE;
488 self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */
489 /* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */
490 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800491 IRDA_DEBUG(2, "%s(), IrCOMM device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 } else {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800493 IRDA_DEBUG(2, "%s(), IrLPT device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 self->service_type = IRCOMM_3_WIRE_RAW;
495 self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */
496 }
497
498 ret = ircomm_tty_startup(self);
499 if (ret)
500 return ret;
501
Jiri Slaby62f228a2012-06-04 13:35:21 +0200502 ret = ircomm_tty_block_til_ready(self, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (ret) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900504 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -0800505 "%s(), returning after block_til_ready with %d\n", __func__ ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ret);
507
508 return ret;
509 }
510 return 0;
511}
512
513/*
514 * Function ircomm_tty_close (tty, filp)
515 *
516 * This routine is called when a particular tty device is closed.
517 *
518 */
519static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
520{
521 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200522 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Harvey Harrison0dc47872008-03-05 20:47:47 -0800524 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 IRDA_ASSERT(self != NULL, return;);
527 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
528
Jiri Slabyc0e78652012-06-04 13:35:25 +0200529 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 ircomm_tty_shutdown(self);
533
Alan Coxf34d7a52008-04-30 00:54:13 -0700534 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Jiri Slabya1e84402012-06-04 13:35:24 +0200536 tty_port_close_end(port, tty);
Jiri Slaby38c58032012-06-04 13:35:22 +0200537 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/*
541 * Function ircomm_tty_flush_buffer (tty)
542 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900543 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 *
545 */
546static void ircomm_tty_flush_buffer(struct tty_struct *tty)
547{
548 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
549
550 IRDA_ASSERT(self != NULL, return;);
551 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
552
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900553 /*
554 * Let do_softint() do this to avoid race condition with
555 * do_softint() ;-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
557 schedule_work(&self->tqueue);
558}
559
560/*
David Howellsc4028952006-11-22 14:57:56 +0000561 * Function ircomm_tty_do_softint (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 *
563 * We use this routine to give the write wakeup to the user at at a
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900564 * safe time (as fast as possible after write have completed). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * can be compared to the Tx interrupt.
566 */
David Howellsc4028952006-11-22 14:57:56 +0000567static void ircomm_tty_do_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
David Howellsc4028952006-11-22 14:57:56 +0000569 struct ircomm_tty_cb *self =
570 container_of(work, struct ircomm_tty_cb, tqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct tty_struct *tty;
572 unsigned long flags;
573 struct sk_buff *skb, *ctrl_skb;
574
Harvey Harrison0dc47872008-03-05 20:47:47 -0800575 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 if (!self || self->magic != IRCOMM_TTY_MAGIC)
578 return;
579
Jiri Slaby62f228a2012-06-04 13:35:21 +0200580 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (!tty)
582 return;
583
584 /* Unlink control buffer */
585 spin_lock_irqsave(&self->spinlock, flags);
586
587 ctrl_skb = self->ctrl_skb;
588 self->ctrl_skb = NULL;
589
590 spin_unlock_irqrestore(&self->spinlock, flags);
591
592 /* Flush control buffer if any */
593 if(ctrl_skb) {
594 if(self->flow == FLOW_START)
595 ircomm_control_request(self->ircomm, ctrl_skb);
596 /* Drop reference count - see ircomm_ttp_data_request(). */
597 dev_kfree_skb(ctrl_skb);
598 }
599
600 if (tty->hw_stopped)
Jiri Slaby62f228a2012-06-04 13:35:21 +0200601 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 /* Unlink transmit buffer */
604 spin_lock_irqsave(&self->spinlock, flags);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 skb = self->tx_skb;
607 self->tx_skb = NULL;
608
609 spin_unlock_irqrestore(&self->spinlock, flags);
610
611 /* Flush transmit buffer if any */
612 if (skb) {
613 ircomm_tty_do_event(self, IRCOMM_TTY_DATA_REQUEST, skb, NULL);
614 /* Drop reference count - see ircomm_ttp_data_request(). */
615 dev_kfree_skb(skb);
616 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* Check if user (still) wants to be waken up */
Alan Coxa352def2008-07-16 21:53:12 +0100619 tty_wakeup(tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200620put:
621 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
624/*
625 * Function ircomm_tty_write (tty, buf, count)
626 *
627 * This routine is called by the kernel to write a series of characters
628 * to the tty device. The characters may come from user space or kernel
629 * space. This routine will return the number of characters actually
630 * accepted for writing. This routine is mandatory.
631 */
632static int ircomm_tty_write(struct tty_struct *tty,
633 const unsigned char *buf, int count)
634{
635 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
636 unsigned long flags;
637 struct sk_buff *skb;
638 int tailroom = 0;
639 int len = 0;
640 int size;
641
Harvey Harrison0dc47872008-03-05 20:47:47 -0800642 IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __func__ , count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 tty->hw_stopped);
644
645 IRDA_ASSERT(self != NULL, return -1;);
646 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
647
648 /* We may receive packets from the TTY even before we have finished
649 * our setup. Not cool.
650 * The problem is that we don't know the final header and data size
651 * to create the proper skb, so any skb we would create would have
652 * bogus header and data size, so need care.
653 * We use a bogus header size to safely detect this condition.
654 * Another problem is that hw_stopped was set to 0 way before it
655 * should be, so we would drop this skb. It should now be fixed.
656 * One option is to not accept data until we are properly setup.
657 * But, I suspect that when it happens, the ppp line discipline
658 * just "drops" the data, which might screw up connect scripts.
659 * The second option is to create a "safe skb", with large header
660 * and small size (see ircomm_tty_open() for values).
661 * We just need to make sure that when the real values get filled,
662 * we don't mess up the original "safe skb" (see tx_data_size).
663 * Jean II */
664 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800665 IRDA_DEBUG(1, "%s() : not initialised\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666#ifdef IRCOMM_NO_TX_BEFORE_INIT
667 /* We didn't consume anything, TTY will retry */
668 return 0;
669#endif
670 }
671
672 if (count < 1)
673 return 0;
674
675 /* Protect our manipulation of self->tx_skb and related */
676 spin_lock_irqsave(&self->spinlock, flags);
677
678 /* Fetch current transmit buffer */
679 skb = self->tx_skb;
680
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900681 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 * Send out all the data we get, possibly as multiple fragmented
683 * frames, but this will only happen if the data is larger than the
684 * max data size. The normal case however is just the opposite, and
685 * this function may be called multiple times, and will then actually
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900686 * defragment the data and send it out as one packet as soon as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 * possible, but at a safer point in time
688 */
689 while (count) {
690 size = count;
691
692 /* Adjust data size to the max data size */
693 if (size > self->max_data_size)
694 size = self->max_data_size;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900695
696 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * Do we already have a buffer ready for transmit, or do
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900698 * we need to allocate a new frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900700 if (skb) {
701 /*
702 * Any room for more data at the end of the current
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 * transmit buffer? Cannot use skb_tailroom, since
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900704 * dev_alloc_skb gives us a larger skb than we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * requested
706 * Note : use tx_data_size, because max_data_size
707 * may have changed and we don't want to overwrite
708 * the skb. - Jean II
709 */
710 if ((tailroom = (self->tx_data_size - skb->len)) > 0) {
711 /* Adjust data to tailroom */
712 if (size > tailroom)
713 size = tailroom;
714 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900715 /*
716 * Current transmit frame is full, so break
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * out, so we can send it as soon as possible
718 */
719 break;
720 }
721 } else {
722 /* Prepare a full sized frame */
Samuel Ortiz485fb2c2006-07-21 14:50:41 -0700723 skb = alloc_skb(self->max_data_size+
724 self->max_header_size,
725 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (!skb) {
727 spin_unlock_irqrestore(&self->spinlock, flags);
728 return -ENOBUFS;
729 }
730 skb_reserve(skb, self->max_header_size);
731 self->tx_skb = skb;
732 /* Remember skb size because max_data_size may
733 * change later on - Jean II */
734 self->tx_data_size = self->max_data_size;
735 }
736
737 /* Copy data */
738 memcpy(skb_put(skb,size), buf + len, size);
739
740 count -= size;
741 len += size;
742 }
743
744 spin_unlock_irqrestore(&self->spinlock, flags);
745
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900746 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 * Schedule a new thread which will transmit the frame as soon
748 * as possible, but at a safe point in time. We do this so the
749 * "user" can give us data multiple times, as PPP does (because of
750 * its 256 byte tx buffer). We will then defragment and send out
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900751 * all this data as one single packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 */
753 schedule_work(&self->tqueue);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return len;
756}
757
758/*
759 * Function ircomm_tty_write_room (tty)
760 *
761 * This routine returns the numbers of characters the tty driver will
762 * accept for queuing to be written. This number is subject to change as
763 * output buffers get emptied, or if the output flow control is acted.
764 */
765static int ircomm_tty_write_room(struct tty_struct *tty)
766{
767 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
768 unsigned long flags;
769 int ret;
770
771 IRDA_ASSERT(self != NULL, return -1;);
772 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
773
774#ifdef IRCOMM_NO_TX_BEFORE_INIT
775 /* max_header_size tells us if the channel is initialised or not. */
776 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED)
777 /* Don't bother us yet */
778 return 0;
779#endif
780
781 /* Check if we are allowed to transmit any data.
782 * hw_stopped is the regular flow control.
783 * Jean II */
784 if (tty->hw_stopped)
785 ret = 0;
786 else {
787 spin_lock_irqsave(&self->spinlock, flags);
788 if (self->tx_skb)
789 ret = self->tx_data_size - self->tx_skb->len;
790 else
791 ret = self->max_data_size;
792 spin_unlock_irqrestore(&self->spinlock, flags);
793 }
Harvey Harrison0dc47872008-03-05 20:47:47 -0800794 IRDA_DEBUG(2, "%s(), ret=%d\n", __func__ , ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 return ret;
797}
798
799/*
800 * Function ircomm_tty_wait_until_sent (tty, timeout)
801 *
802 * This routine waits until the device has written out all of the
803 * characters in its transmitter FIFO.
804 */
805static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
806{
807 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
808 unsigned long orig_jiffies, poll_time;
809 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900810
Harvey Harrison0dc47872008-03-05 20:47:47 -0800811 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 IRDA_ASSERT(self != NULL, return;);
814 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
815
816 orig_jiffies = jiffies;
817
818 /* Set poll time to 200 ms */
819 poll_time = IRDA_MIN(timeout, msecs_to_jiffies(200));
820
821 spin_lock_irqsave(&self->spinlock, flags);
822 while (self->tx_skb && self->tx_skb->len) {
823 spin_unlock_irqrestore(&self->spinlock, flags);
Nishanth Aravamudan121caf52005-09-12 14:15:34 -0700824 schedule_timeout_interruptible(poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 spin_lock_irqsave(&self->spinlock, flags);
826 if (signal_pending(current))
827 break;
828 if (timeout && time_after(jiffies, orig_jiffies + timeout))
829 break;
830 }
831 spin_unlock_irqrestore(&self->spinlock, flags);
832 current->state = TASK_RUNNING;
833}
834
835/*
836 * Function ircomm_tty_throttle (tty)
837 *
838 * This routine notifies the tty driver that input buffers for the line
839 * discipline are close to full, and it should somehow signal that no
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900840 * more characters should be sent to the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 */
842static void ircomm_tty_throttle(struct tty_struct *tty)
843{
844 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
845
Harvey Harrison0dc47872008-03-05 20:47:47 -0800846 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 IRDA_ASSERT(self != NULL, return;);
849 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
850
851 /* Software flow control? */
852 if (I_IXOFF(tty))
853 ircomm_tty_send_xchar(tty, STOP_CHAR(tty));
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /* Hardware flow control? */
Alan Coxadc8d742012-07-14 15:31:47 +0100856 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 self->settings.dte &= ~IRCOMM_RTS;
858 self->settings.dte |= IRCOMM_DELTA_RTS;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 ircomm_param_request(self, IRCOMM_DTE, TRUE);
861 }
862
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900863 ircomm_flow_request(self->ircomm, FLOW_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866/*
867 * Function ircomm_tty_unthrottle (tty)
868 *
869 * This routine notifies the tty drivers that it should signals that
870 * characters can now be sent to the tty without fear of overrunning the
871 * input buffers of the line disciplines.
872 */
873static void ircomm_tty_unthrottle(struct tty_struct *tty)
874{
875 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
876
Harvey Harrison0dc47872008-03-05 20:47:47 -0800877 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 IRDA_ASSERT(self != NULL, return;);
880 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
881
882 /* Using software flow control? */
883 if (I_IXOFF(tty)) {
884 ircomm_tty_send_xchar(tty, START_CHAR(tty));
885 }
886
887 /* Using hardware flow control? */
Alan Coxadc8d742012-07-14 15:31:47 +0100888 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS);
890
891 ircomm_param_request(self, IRCOMM_DTE, TRUE);
Harvey Harrison0dc47872008-03-05 20:47:47 -0800892 IRDA_DEBUG(1, "%s(), FLOW_START\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900894 ircomm_flow_request(self->ircomm, FLOW_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
897/*
898 * Function ircomm_tty_chars_in_buffer (tty)
899 *
900 * Indicates if there are any data in the buffer
901 *
902 */
903static int ircomm_tty_chars_in_buffer(struct tty_struct *tty)
904{
905 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
906 unsigned long flags;
907 int len = 0;
908
909 IRDA_ASSERT(self != NULL, return -1;);
910 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
911
912 spin_lock_irqsave(&self->spinlock, flags);
913
914 if (self->tx_skb)
915 len = self->tx_skb->len;
916
917 spin_unlock_irqrestore(&self->spinlock, flags);
918
919 return len;
920}
921
922static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
923{
924 unsigned long flags;
925
926 IRDA_ASSERT(self != NULL, return;);
927 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
928
Harvey Harrison0dc47872008-03-05 20:47:47 -0800929 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Jiri Slaby849d5a92012-06-04 13:35:19 +0200931 if (!test_and_clear_bit(ASYNCB_INITIALIZED, &self->port.flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return;
933
934 ircomm_tty_detach_cable(self);
935
936 spin_lock_irqsave(&self->spinlock, flags);
937
938 del_timer(&self->watchdog_timer);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* Free parameter buffer */
941 if (self->ctrl_skb) {
942 dev_kfree_skb(self->ctrl_skb);
943 self->ctrl_skb = NULL;
944 }
945
946 /* Free transmit buffer */
947 if (self->tx_skb) {
948 dev_kfree_skb(self->tx_skb);
949 self->tx_skb = NULL;
950 }
951
952 if (self->ircomm) {
953 ircomm_close(self->ircomm);
954 self->ircomm = NULL;
955 }
956
957 spin_unlock_irqrestore(&self->spinlock, flags);
958}
959
960/*
961 * Function ircomm_tty_hangup (tty)
962 *
963 * This routine notifies the tty driver that it should hangup the tty
964 * device.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900965 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
967static void ircomm_tty_hangup(struct tty_struct *tty)
968{
969 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200970 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 unsigned long flags;
972
Harvey Harrison0dc47872008-03-05 20:47:47 -0800973 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 IRDA_ASSERT(self != NULL, return;);
976 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /* ircomm_tty_flush_buffer(tty); */
979 ircomm_tty_shutdown(self);
980
Jiri Slaby38c58032012-06-04 13:35:22 +0200981 spin_lock_irqsave(&port->lock, flags);
982 port->flags &= ~ASYNC_NORMAL_ACTIVE;
983 if (port->tty) {
984 set_bit(TTY_IO_ERROR, &port->tty->flags);
985 tty_kref_put(port->tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200986 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200987 port->tty = NULL;
988 port->count = 0;
989 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Jiri Slaby38c58032012-06-04 13:35:22 +0200991 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994/*
995 * Function ircomm_tty_send_xchar (tty, ch)
996 *
997 * This routine is used to send a high-priority XON/XOFF character to
998 * the device.
999 */
1000static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch)
1001{
Harvey Harrison0dc47872008-03-05 20:47:47 -08001002 IRDA_DEBUG(0, "%s(), not impl\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005/*
1006 * Function ircomm_tty_start (tty)
1007 *
1008 * This routine notifies the tty driver that it resume sending
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001009 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
1011void ircomm_tty_start(struct tty_struct *tty)
1012{
1013 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1014
1015 ircomm_flow_request(self->ircomm, FLOW_START);
1016}
1017
1018/*
1019 * Function ircomm_tty_stop (tty)
1020 *
1021 * This routine notifies the tty driver that it should stop outputting
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001022 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001024static void ircomm_tty_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1027
1028 IRDA_ASSERT(self != NULL, return;);
1029 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1030
1031 ircomm_flow_request(self->ircomm, FLOW_STOP);
1032}
1033
1034/*
1035 * Function ircomm_check_modem_status (self)
1036 *
1037 * Check for any changes in the DCE's line settings. This function should
1038 * be called whenever the dce parameter settings changes, to update the
1039 * flow control settings and other things
1040 */
1041void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
1042{
1043 struct tty_struct *tty;
1044 int status;
1045
Harvey Harrison0dc47872008-03-05 20:47:47 -08001046 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 IRDA_ASSERT(self != NULL, return;);
1049 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1050
Jiri Slaby62f228a2012-06-04 13:35:21 +02001051 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 status = self->settings.dce;
1054
1055 if (status & IRCOMM_DCE_DELTA_ANY) {
1056 /*wake_up_interruptible(&self->delta_msr_wait);*/
1057 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001058 if ((self->port.flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001059 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001060 "%s(), ircomm%d CD now %s...\n", __func__ , self->line,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 (status & IRCOMM_CD) ? "on" : "off");
1062
1063 if (status & IRCOMM_CD) {
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001064 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001066 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001067 "%s(), Doing serial hangup..\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (tty)
1069 tty_hangup(tty);
1070
1071 /* Hangup will remote the tty, so better break out */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001072 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074 }
Huang Shijief21ec3d2012-08-22 22:13:36 -04001075 if (tty && tty_port_cts_enabled(&self->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (tty->hw_stopped) {
1077 if (status & IRCOMM_CTS) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001078 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001079 "%s(), CTS tx start...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 tty->hw_stopped = 0;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /* Wake up processes blocked on open */
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001083 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 schedule_work(&self->tqueue);
Jiri Slaby62f228a2012-06-04 13:35:21 +02001086 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 } else {
1089 if (!(status & IRCOMM_CTS)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001090 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001091 "%s(), CTS tx stop...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 tty->hw_stopped = 1;
1093 }
1094 }
1095 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001096put:
1097 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100/*
1101 * Function ircomm_tty_data_indication (instance, sap, skb)
1102 *
1103 * Handle incoming data, and deliver it to the line discipline
1104 *
1105 */
1106static int ircomm_tty_data_indication(void *instance, void *sap,
1107 struct sk_buff *skb)
1108{
1109 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
Jiri Slaby62f228a2012-06-04 13:35:21 +02001110 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Harvey Harrison0dc47872008-03-05 20:47:47 -08001112 IRDA_DEBUG(2, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 IRDA_ASSERT(self != NULL, return -1;);
1115 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1116 IRDA_ASSERT(skb != NULL, return -1;);
1117
Jiri Slaby62f228a2012-06-04 13:35:21 +02001118 tty = tty_port_tty_get(&self->port);
1119 if (!tty) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001120 IRDA_DEBUG(0, "%s(), no tty!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 0;
1122 }
1123
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001124 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 * If we receive data when hardware is stopped then something is wrong.
1126 * We try to poll the peers line settings to check if we are up todate.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001127 * Devices like WinCE can do this, and since they don't send any
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 * params, we can just as well declare the hardware for running.
1129 */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001130 if (tty->hw_stopped && (self->flow == FLOW_START)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001131 IRDA_DEBUG(0, "%s(), polling for line settings!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 ircomm_param_request(self, IRCOMM_POLL, TRUE);
1133
1134 /* We can just as well declare the hardware for running */
1135 ircomm_tty_send_initial_parameters(self);
1136 ircomm_tty_link_established(self);
1137 }
Jiri Slaby2e124b42013-01-03 15:53:06 +01001138 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001140 /*
Amit Virdicbfd1522011-05-12 01:04:40 +00001141 * Use flip buffer functions since the code may be called from interrupt
1142 * context
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 */
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001144 tty_insert_flip_string(&self->port, skb->data, skb->len);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001145 tty_flip_buffer_push(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 /* No need to kfree_skb - see ircomm_ttp_data_indication() */
1148
1149 return 0;
1150}
1151
1152/*
1153 * Function ircomm_tty_control_indication (instance, sap, skb)
1154 *
1155 * Parse all incoming parameters (easy!)
1156 *
1157 */
1158static int ircomm_tty_control_indication(void *instance, void *sap,
1159 struct sk_buff *skb)
1160{
1161 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1162 int clen;
1163
Harvey Harrison0dc47872008-03-05 20:47:47 -08001164 IRDA_DEBUG(4, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 IRDA_ASSERT(self != NULL, return -1;);
1167 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1168 IRDA_ASSERT(skb != NULL, return -1;);
1169
1170 clen = skb->data[0];
1171
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001172 irda_param_extract_all(self, skb->data+1, IRDA_MIN(skb->len-1, clen),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 &ircomm_param_info);
1174
1175 /* No need to kfree_skb - see ircomm_control_indication() */
1176
1177 return 0;
1178}
1179
1180/*
1181 * Function ircomm_tty_flow_indication (instance, sap, cmd)
1182 *
1183 * This function is called by IrTTP when it wants us to slow down the
1184 * transmission of data. We just mark the hardware as stopped, and wait
1185 * for IrTTP to notify us that things are OK again.
1186 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001187static void ircomm_tty_flow_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 LOCAL_FLOW cmd)
1189{
1190 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1191 struct tty_struct *tty;
1192
1193 IRDA_ASSERT(self != NULL, return;);
1194 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1195
Jiri Slaby62f228a2012-06-04 13:35:21 +02001196 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
1198 switch (cmd) {
1199 case FLOW_START:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001200 IRDA_DEBUG(2, "%s(), hw start!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001201 if (tty)
1202 tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /* ircomm_tty_do_softint will take care of the rest */
1205 schedule_work(&self->tqueue);
1206 break;
1207 default: /* If we get here, something is very wrong, better stop */
1208 case FLOW_STOP:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001209 IRDA_DEBUG(2, "%s(), hw stopped!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001210 if (tty)
1211 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 break;
1213 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001214
1215 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 self->flow = cmd;
1217}
1218
Pavel Emelyanov92b05e132007-12-05 02:18:48 -08001219#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001220static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Jiri Slaby62f228a2012-06-04 13:35:21 +02001222 struct tty_struct *tty;
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001223 char sep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001225 seq_printf(m, "State: %s\n", ircomm_tty_state[self->state]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001227 seq_puts(m, "Service type: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (self->service_type & IRCOMM_9_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001229 seq_puts(m, "9_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 else if (self->service_type & IRCOMM_3_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001231 seq_puts(m, "3_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 else if (self->service_type & IRCOMM_3_WIRE_RAW)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001233 seq_puts(m, "3_WIRE_RAW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001235 seq_puts(m, "No common service type!\n");
1236 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001238 seq_printf(m, "Port name: %s\n", self->settings.port_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001240 seq_printf(m, "DTE status:");
1241 sep = ' ';
1242 if (self->settings.dte & IRCOMM_RTS) {
1243 seq_printf(m, "%cRTS", sep);
1244 sep = '|';
1245 }
1246 if (self->settings.dte & IRCOMM_DTR) {
1247 seq_printf(m, "%cDTR", sep);
1248 sep = '|';
1249 }
1250 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001252 seq_puts(m, "DCE status:");
1253 sep = ' ';
1254 if (self->settings.dce & IRCOMM_CTS) {
1255 seq_printf(m, "%cCTS", sep);
1256 sep = '|';
1257 }
1258 if (self->settings.dce & IRCOMM_DSR) {
1259 seq_printf(m, "%cDSR", sep);
1260 sep = '|';
1261 }
1262 if (self->settings.dce & IRCOMM_CD) {
1263 seq_printf(m, "%cCD", sep);
1264 sep = '|';
1265 }
1266 if (self->settings.dce & IRCOMM_RI) {
1267 seq_printf(m, "%cRI", sep);
1268 sep = '|';
1269 }
1270 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001272 seq_puts(m, "Configuration: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (!self->settings.null_modem)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001274 seq_puts(m, "DTE <-> DCE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001276 seq_puts(m, "DTE <-> DTE (null modem emulation)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001278 seq_printf(m, "Data rate: %d\n", self->settings.data_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001280 seq_puts(m, "Flow control:");
1281 sep = ' ';
1282 if (self->settings.flow_control & IRCOMM_XON_XOFF_IN) {
1283 seq_printf(m, "%cXON_XOFF_IN", sep);
1284 sep = '|';
1285 }
1286 if (self->settings.flow_control & IRCOMM_XON_XOFF_OUT) {
1287 seq_printf(m, "%cXON_XOFF_OUT", sep);
1288 sep = '|';
1289 }
1290 if (self->settings.flow_control & IRCOMM_RTS_CTS_IN) {
1291 seq_printf(m, "%cRTS_CTS_IN", sep);
1292 sep = '|';
1293 }
1294 if (self->settings.flow_control & IRCOMM_RTS_CTS_OUT) {
1295 seq_printf(m, "%cRTS_CTS_OUT", sep);
1296 sep = '|';
1297 }
1298 if (self->settings.flow_control & IRCOMM_DSR_DTR_IN) {
1299 seq_printf(m, "%cDSR_DTR_IN", sep);
1300 sep = '|';
1301 }
1302 if (self->settings.flow_control & IRCOMM_DSR_DTR_OUT) {
1303 seq_printf(m, "%cDSR_DTR_OUT", sep);
1304 sep = '|';
1305 }
1306 if (self->settings.flow_control & IRCOMM_ENQ_ACK_IN) {
1307 seq_printf(m, "%cENQ_ACK_IN", sep);
1308 sep = '|';
1309 }
1310 if (self->settings.flow_control & IRCOMM_ENQ_ACK_OUT) {
1311 seq_printf(m, "%cENQ_ACK_OUT", sep);
1312 sep = '|';
1313 }
1314 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001316 seq_puts(m, "Flags:");
1317 sep = ' ';
Huang Shijief21ec3d2012-08-22 22:13:36 -04001318 if (tty_port_cts_enabled(&self->port)) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001319 seq_printf(m, "%cASYNC_CTS_FLOW", sep);
1320 sep = '|';
1321 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001322 if (self->port.flags & ASYNC_CHECK_CD) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001323 seq_printf(m, "%cASYNC_CHECK_CD", sep);
1324 sep = '|';
1325 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001326 if (self->port.flags & ASYNC_INITIALIZED) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001327 seq_printf(m, "%cASYNC_INITIALIZED", sep);
1328 sep = '|';
1329 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001330 if (self->port.flags & ASYNC_LOW_LATENCY) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001331 seq_printf(m, "%cASYNC_LOW_LATENCY", sep);
1332 sep = '|';
1333 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001334 if (self->port.flags & ASYNC_CLOSING) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001335 seq_printf(m, "%cASYNC_CLOSING", sep);
1336 sep = '|';
1337 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001338 if (self->port.flags & ASYNC_NORMAL_ACTIVE) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001339 seq_printf(m, "%cASYNC_NORMAL_ACTIVE", sep);
1340 sep = '|';
1341 }
1342 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001344 seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
Jiri Slaby580d27b2012-06-04 13:35:18 +02001345 seq_printf(m, "Open count: %d\n", self->port.count);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001346 seq_printf(m, "Max data size: %d\n", self->max_data_size);
1347 seq_printf(m, "Max header size: %d\n", self->max_header_size);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001348
Jiri Slaby62f228a2012-06-04 13:35:21 +02001349 tty = tty_port_tty_get(&self->port);
1350 if (tty) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001351 seq_printf(m, "Hardware: %s\n",
Jiri Slaby62f228a2012-06-04 13:35:21 +02001352 tty->hw_stopped ? "Stopped" : "Running");
1353 tty_kref_put(tty);
1354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001357static int ircomm_tty_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 struct ircomm_tty_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 unsigned long flags;
1361
1362 spin_lock_irqsave(&ircomm_tty->hb_spinlock, flags);
1363
1364 self = (struct ircomm_tty_cb *) hashbin_get_first(ircomm_tty);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001365 while (self != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (self->magic != IRCOMM_TTY_MAGIC)
1367 break;
1368
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001369 ircomm_tty_line_info(self, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 self = (struct ircomm_tty_cb *) hashbin_get_next(ircomm_tty);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 spin_unlock_irqrestore(&ircomm_tty->hb_spinlock, flags);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001375
1376static int ircomm_tty_proc_open(struct inode *inode, struct file *file)
1377{
1378 return single_open(file, ircomm_tty_proc_show, NULL);
1379}
1380
1381static const struct file_operations ircomm_tty_proc_fops = {
1382 .owner = THIS_MODULE,
1383 .open = ircomm_tty_proc_open,
1384 .read = seq_read,
1385 .llseek = seq_lseek,
1386 .release = single_release,
1387};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388#endif /* CONFIG_PROC_FS */
1389
1390MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
1391MODULE_DESCRIPTION("IrCOMM serial TTY driver");
1392MODULE_LICENSE("GPL");
1393MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR);
1394
1395module_init(ircomm_tty_init);
1396module_exit(ircomm_tty_cleanup);