blob: 2491f6f538713105b7eb4b7f541459aac0f64ad2 [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
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * MA 02111-1307 USA
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 ********************************************************************/
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
34#include <linux/module.h>
35#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/sched.h>
Alexey Dobriyan3d304172009-03-31 15:19:22 -070038#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/termios.h>
40#include <linux/tty.h>
Amit Virdicbfd1522011-05-12 01:04:40 +000041#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/interrupt.h>
43#include <linux/device.h> /* for MODULE_ALIAS_CHARDEV_MAJOR */
44
45#include <asm/uaccess.h>
46
47#include <net/irda/irda.h>
48#include <net/irda/irmod.h>
49
50#include <net/irda/ircomm_core.h>
51#include <net/irda/ircomm_param.h>
52#include <net/irda/ircomm_tty_attach.h>
53#include <net/irda/ircomm_tty.h>
54
Jiri Slaby9c650ff2012-08-07 21:48:02 +020055static int ircomm_tty_install(struct tty_driver *driver,
56 struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static int ircomm_tty_open(struct tty_struct *tty, struct file *filp);
58static void ircomm_tty_close(struct tty_struct * tty, struct file *filp);
59static int ircomm_tty_write(struct tty_struct * tty,
60 const unsigned char *buf, int count);
61static int ircomm_tty_write_room(struct tty_struct *tty);
62static void ircomm_tty_throttle(struct tty_struct *tty);
63static void ircomm_tty_unthrottle(struct tty_struct *tty);
64static int ircomm_tty_chars_in_buffer(struct tty_struct *tty);
65static void ircomm_tty_flush_buffer(struct tty_struct *tty);
66static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch);
67static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout);
68static void ircomm_tty_hangup(struct tty_struct *tty);
David Howellsc4028952006-11-22 14:57:56 +000069static void ircomm_tty_do_softint(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static void ircomm_tty_shutdown(struct ircomm_tty_cb *self);
71static void ircomm_tty_stop(struct tty_struct *tty);
72
73static int ircomm_tty_data_indication(void *instance, void *sap,
74 struct sk_buff *skb);
75static int ircomm_tty_control_indication(void *instance, void *sap,
76 struct sk_buff *skb);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +090077static void ircomm_tty_flow_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 LOCAL_FLOW cmd);
79#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -070080static const struct file_operations ircomm_tty_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif /* CONFIG_PROC_FS */
82static struct tty_driver *driver;
83
Adrian Bunkd76081f2007-10-26 03:56:43 -070084static hashbin_t *ircomm_tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Jeff Dikeb68e31d2006-10-02 02:17:18 -070086static const struct tty_operations ops = {
Jiri Slaby9c650ff2012-08-07 21:48:02 +020087 .install = ircomm_tty_install,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .open = ircomm_tty_open,
89 .close = ircomm_tty_close,
90 .write = ircomm_tty_write,
91 .write_room = ircomm_tty_write_room,
92 .chars_in_buffer = ircomm_tty_chars_in_buffer,
93 .flush_buffer = ircomm_tty_flush_buffer,
94 .ioctl = ircomm_tty_ioctl, /* ircomm_tty_ioctl.c */
95 .tiocmget = ircomm_tty_tiocmget, /* ircomm_tty_ioctl.c */
96 .tiocmset = ircomm_tty_tiocmset, /* ircomm_tty_ioctl.c */
97 .throttle = ircomm_tty_throttle,
98 .unthrottle = ircomm_tty_unthrottle,
99 .send_xchar = ircomm_tty_send_xchar,
100 .set_termios = ircomm_tty_set_termios,
101 .stop = ircomm_tty_stop,
102 .start = ircomm_tty_start,
103 .hangup = ircomm_tty_hangup,
104 .wait_until_sent = ircomm_tty_wait_until_sent,
105#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -0700106 .proc_fops = &ircomm_tty_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#endif /* CONFIG_PROC_FS */
108};
109
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200110static void ircomm_port_raise_dtr_rts(struct tty_port *port, int raise)
111{
112 struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb,
113 port);
114 /*
115 * Here, we use to lock those two guys, but as ircomm_param_request()
116 * does it itself, I don't see the point (and I see the deadlock).
117 * Jean II
118 */
119 if (raise)
120 self->settings.dte |= IRCOMM_RTS | IRCOMM_DTR;
121 else
122 self->settings.dte &= ~(IRCOMM_RTS | IRCOMM_DTR);
123
124 ircomm_param_request(self, IRCOMM_DTE, TRUE);
125}
126
127static int ircomm_port_carrier_raised(struct tty_port *port)
128{
129 struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb,
130 port);
131 return self->settings.dce & IRCOMM_CD;
132}
133
134static const struct tty_port_operations ircomm_port_ops = {
135 .dtr_rts = ircomm_port_raise_dtr_rts,
136 .carrier_raised = ircomm_port_carrier_raised,
137};
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * Function ircomm_tty_init()
141 *
142 * Init IrCOMM TTY layer/driver
143 *
144 */
145static int __init ircomm_tty_init(void)
146{
147 driver = alloc_tty_driver(IRCOMM_TTY_PORTS);
148 if (!driver)
149 return -ENOMEM;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900150 ircomm_tty = hashbin_new(HB_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (ircomm_tty == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800152 IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 put_tty_driver(driver);
154 return -ENOMEM;
155 }
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 driver->driver_name = "ircomm";
158 driver->name = "ircomm";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 driver->major = IRCOMM_TTY_MAJOR;
160 driver->minor_start = IRCOMM_TTY_MINOR;
161 driver->type = TTY_DRIVER_TYPE_SERIAL;
162 driver->subtype = SERIAL_TYPE_NORMAL;
163 driver->init_termios = tty_std_termios;
164 driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
165 driver->flags = TTY_DRIVER_REAL_RAW;
166 tty_set_operations(driver, &ops);
167 if (tty_register_driver(driver)) {
168 IRDA_ERROR("%s(): Couldn't register serial driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800169 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 put_tty_driver(driver);
171 return -1;
172 }
173 return 0;
174}
175
176static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
177{
Harvey Harrison0dc47872008-03-05 20:47:47 -0800178 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 IRDA_ASSERT(self != NULL, return;);
181 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
182
183 ircomm_tty_shutdown(self);
184
185 self->magic = 0;
Jiri Slaby191c5f12012-11-15 09:49:56 +0100186 tty_port_destroy(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 kfree(self);
188}
189
190/*
191 * Function ircomm_tty_cleanup ()
192 *
193 * Remove IrCOMM TTY layer/driver
194 *
195 */
196static void __exit ircomm_tty_cleanup(void)
197{
198 int ret;
199
Harvey Harrison0dc47872008-03-05 20:47:47 -0800200 IRDA_DEBUG(4, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 ret = tty_unregister_driver(driver);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900203 if (ret) {
204 IRDA_ERROR("%s(), failed to unregister driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800205 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return;
207 }
208
209 hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup);
210 put_tty_driver(driver);
211}
212
213/*
214 * Function ircomm_startup (self)
215 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900216 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 */
219static int ircomm_tty_startup(struct ircomm_tty_cb *self)
220{
221 notify_t notify;
222 int ret = -ENODEV;
223
Harvey Harrison0dc47872008-03-05 20:47:47 -0800224 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 IRDA_ASSERT(self != NULL, return -1;);
227 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
228
229 /* Check if already open */
Jiri Slaby849d5a92012-06-04 13:35:19 +0200230 if (test_and_set_bit(ASYNCB_INITIALIZED, &self->port.flags)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800231 IRDA_DEBUG(2, "%s(), already open so break out!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
233 }
234
235 /* Register with IrCOMM */
236 irda_notify_init(&notify);
237 /* These callbacks we must handle ourselves */
238 notify.data_indication = ircomm_tty_data_indication;
239 notify.udata_indication = ircomm_tty_control_indication;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900240 notify.flow_indication = ircomm_tty_flow_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* Use the ircomm_tty interface for these ones */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900243 notify.disconnect_indication = ircomm_tty_disconnect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 notify.connect_confirm = ircomm_tty_connect_confirm;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900245 notify.connect_indication = ircomm_tty_connect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 strlcpy(notify.name, "ircomm_tty", sizeof(notify.name));
247 notify.instance = self;
248
249 if (!self->ircomm) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900250 self->ircomm = ircomm_open(&notify, self->service_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 self->line);
252 }
253 if (!self->ircomm)
254 goto err;
255
256 self->slsap_sel = self->ircomm->slsap_sel;
257
258 /* Connect IrCOMM link with remote device */
259 ret = ircomm_tty_attach_cable(self);
260 if (ret < 0) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800261 IRDA_ERROR("%s(), error attaching cable!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto err;
263 }
264
265 return 0;
266err:
Jiri Slaby849d5a92012-06-04 13:35:19 +0200267 clear_bit(ASYNCB_INITIALIZED, &self->port.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return ret;
269}
270
271/*
272 * Function ircomm_block_til_ready (self, filp)
273 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900274 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 *
276 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900277static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
Jiri Slaby62f228a2012-06-04 13:35:21 +0200278 struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Jiri Slaby38c58032012-06-04 13:35:22 +0200280 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 DECLARE_WAITQUEUE(wait, current);
282 int retval;
283 int do_clocal = 0, extra_count = 0;
284 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900285
Harvey Harrison0dc47872008-03-05 20:47:47 -0800286 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
289 * If non-blocking mode is set, or the port is not enabled,
290 * then make the check up front and then exit.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900291 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
293 /* nonblock mode is set or port is not enabled */
Jiri Slaby38c58032012-06-04 13:35:22 +0200294 port->flags |= ASYNC_NORMAL_ACTIVE;
Harvey Harrison0dc47872008-03-05 20:47:47 -0800295 IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return 0;
297 }
298
Alan Coxadc8d742012-07-14 15:31:47 +0100299 if (tty->termios.c_cflag & CLOCAL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800300 IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 do_clocal = 1;
302 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Wait for carrier detect and the line to become
305 * free (i.e., not in use by the callout). While we are in
Jiri Slaby38c58032012-06-04 13:35:22 +0200306 * this loop, port->count is dropped by one, so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * mgsl_close() knows when to free things. We restore it upon
308 * exit, either normal or abnormal.
309 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 retval = 0;
Jiri Slaby38c58032012-06-04 13:35:22 +0200312 add_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 IRDA_DEBUG(2, "%s(%d):block_til_ready before block on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200315 __FILE__, __LINE__, tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Jiri Slaby38c58032012-06-04 13:35:22 +0200317 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (!tty_hung_up_p(filp)) {
319 extra_count = 1;
Jiri Slaby38c58032012-06-04 13:35:22 +0200320 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200322 spin_unlock_irqrestore(&port->lock, flags);
323 port->blocked_open++;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 while (1) {
Alan Coxadc8d742012-07-14 15:31:47 +0100326 if (tty->termios.c_cflag & CBAUD)
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200327 tty_port_raise_dtr_rts(port);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 current->state = TASK_INTERRUPTIBLE;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (tty_hung_up_p(filp) ||
Jiri Slaby38c58032012-06-04 13:35:22 +0200332 !test_bit(ASYNCB_INITIALIZED, &port->flags)) {
333 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 -EAGAIN : -ERESTARTSYS;
335 break;
336 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900337
338 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 * Check if link is ready now. Even if CLOCAL is
340 * specified, we cannot return before the IrCOMM link is
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900341 * ready
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
Jiri Slaby38c58032012-06-04 13:35:22 +0200343 if (!test_bit(ASYNCB_CLOSING, &port->flags) &&
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200344 (do_clocal || tty_port_carrier_raised(port)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 self->state == IRCOMM_TTY_READY)
346 {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900347 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (signal_pending(current)) {
351 retval = -ERESTARTSYS;
352 break;
353 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 IRDA_DEBUG(1, "%s(%d):block_til_ready blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200356 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 schedule();
359 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 __set_current_state(TASK_RUNNING);
Jiri Slaby38c58032012-06-04 13:35:22 +0200362 remove_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (extra_count) {
365 /* ++ is not atomic, so this should be protected - Jean II */
Jiri Slaby38c58032012-06-04 13:35:22 +0200366 spin_lock_irqsave(&port->lock, flags);
367 port->count++;
368 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200370 port->blocked_open--;
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 */
460 if (tty_hung_up_p(filp) ||
Jiri Slaby849d5a92012-06-04 13:35:19 +0200461 test_bit(ASYNCB_CLOSING, &self->port.flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* Hm, why are we blocking on ASYNC_CLOSING if we
464 * do return -EAGAIN/-ERESTARTSYS below anyway?
465 * IMHO it's either not needed in the first place
466 * or for some reason we need to make sure the async
467 * closing has been finished - if so, wouldn't we
468 * probably better sleep uninterruptible?
469 */
470
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200471 if (wait_event_interruptible(self->port.close_wait,
Jiri Slaby849d5a92012-06-04 13:35:19 +0200472 !test_bit(ASYNCB_CLOSING, &self->port.flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 IRDA_WARNING("%s - got signal while blocking on ASYNC_CLOSING!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800474 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return -ERESTARTSYS;
476 }
477
478#ifdef SERIAL_DO_RESTART
Jiri Slaby849d5a92012-06-04 13:35:19 +0200479 return (self->port.flags & ASYNC_HUP_NOTIFY) ?
Eric Dumazeta02cec22010-09-22 20:43:57 +0000480 -EAGAIN : -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#else
482 return -EAGAIN;
483#endif
484 }
485
486 /* Check if this is a "normal" ircomm device, or an irlpt device */
Jiri Slaby9c650ff2012-08-07 21:48:02 +0200487 if (self->line < 0x10) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 self->service_type = IRCOMM_3_WIRE | IRCOMM_9_WIRE;
489 self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */
490 /* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */
491 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800492 IRDA_DEBUG(2, "%s(), IrCOMM device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 } else {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800494 IRDA_DEBUG(2, "%s(), IrLPT device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 self->service_type = IRCOMM_3_WIRE_RAW;
496 self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */
497 }
498
499 ret = ircomm_tty_startup(self);
500 if (ret)
501 return ret;
502
Jiri Slaby62f228a2012-06-04 13:35:21 +0200503 ret = ircomm_tty_block_til_ready(self, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (ret) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900505 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -0800506 "%s(), returning after block_til_ready with %d\n", __func__ ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ret);
508
509 return ret;
510 }
511 return 0;
512}
513
514/*
515 * Function ircomm_tty_close (tty, filp)
516 *
517 * This routine is called when a particular tty device is closed.
518 *
519 */
520static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
521{
522 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200523 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Harvey Harrison0dc47872008-03-05 20:47:47 -0800525 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 IRDA_ASSERT(self != NULL, return;);
528 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
529
Jiri Slabyc0e78652012-06-04 13:35:25 +0200530 if (tty_port_close_start(port, tty, filp) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 ircomm_tty_shutdown(self);
534
Alan Coxf34d7a52008-04-30 00:54:13 -0700535 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Jiri Slabya1e84402012-06-04 13:35:24 +0200537 tty_port_close_end(port, tty);
Jiri Slaby38c58032012-06-04 13:35:22 +0200538 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541/*
542 * Function ircomm_tty_flush_buffer (tty)
543 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900544 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 *
546 */
547static void ircomm_tty_flush_buffer(struct tty_struct *tty)
548{
549 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
550
551 IRDA_ASSERT(self != NULL, return;);
552 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
553
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900554 /*
555 * Let do_softint() do this to avoid race condition with
556 * do_softint() ;-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
558 schedule_work(&self->tqueue);
559}
560
561/*
David Howellsc4028952006-11-22 14:57:56 +0000562 * Function ircomm_tty_do_softint (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 *
564 * We use this routine to give the write wakeup to the user at at a
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900565 * safe time (as fast as possible after write have completed). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * can be compared to the Tx interrupt.
567 */
David Howellsc4028952006-11-22 14:57:56 +0000568static void ircomm_tty_do_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
David Howellsc4028952006-11-22 14:57:56 +0000570 struct ircomm_tty_cb *self =
571 container_of(work, struct ircomm_tty_cb, tqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct tty_struct *tty;
573 unsigned long flags;
574 struct sk_buff *skb, *ctrl_skb;
575
Harvey Harrison0dc47872008-03-05 20:47:47 -0800576 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (!self || self->magic != IRCOMM_TTY_MAGIC)
579 return;
580
Jiri Slaby62f228a2012-06-04 13:35:21 +0200581 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (!tty)
583 return;
584
585 /* Unlink control buffer */
586 spin_lock_irqsave(&self->spinlock, flags);
587
588 ctrl_skb = self->ctrl_skb;
589 self->ctrl_skb = NULL;
590
591 spin_unlock_irqrestore(&self->spinlock, flags);
592
593 /* Flush control buffer if any */
594 if(ctrl_skb) {
595 if(self->flow == FLOW_START)
596 ircomm_control_request(self->ircomm, ctrl_skb);
597 /* Drop reference count - see ircomm_ttp_data_request(). */
598 dev_kfree_skb(ctrl_skb);
599 }
600
601 if (tty->hw_stopped)
Jiri Slaby62f228a2012-06-04 13:35:21 +0200602 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /* Unlink transmit buffer */
605 spin_lock_irqsave(&self->spinlock, flags);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 skb = self->tx_skb;
608 self->tx_skb = NULL;
609
610 spin_unlock_irqrestore(&self->spinlock, flags);
611
612 /* Flush transmit buffer if any */
613 if (skb) {
614 ircomm_tty_do_event(self, IRCOMM_TTY_DATA_REQUEST, skb, NULL);
615 /* Drop reference count - see ircomm_ttp_data_request(). */
616 dev_kfree_skb(skb);
617 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* Check if user (still) wants to be waken up */
Alan Coxa352def2008-07-16 21:53:12 +0100620 tty_wakeup(tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200621put:
622 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/*
626 * Function ircomm_tty_write (tty, buf, count)
627 *
628 * This routine is called by the kernel to write a series of characters
629 * to the tty device. The characters may come from user space or kernel
630 * space. This routine will return the number of characters actually
631 * accepted for writing. This routine is mandatory.
632 */
633static int ircomm_tty_write(struct tty_struct *tty,
634 const unsigned char *buf, int count)
635{
636 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
637 unsigned long flags;
638 struct sk_buff *skb;
639 int tailroom = 0;
640 int len = 0;
641 int size;
642
Harvey Harrison0dc47872008-03-05 20:47:47 -0800643 IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __func__ , count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 tty->hw_stopped);
645
646 IRDA_ASSERT(self != NULL, return -1;);
647 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
648
649 /* We may receive packets from the TTY even before we have finished
650 * our setup. Not cool.
651 * The problem is that we don't know the final header and data size
652 * to create the proper skb, so any skb we would create would have
653 * bogus header and data size, so need care.
654 * We use a bogus header size to safely detect this condition.
655 * Another problem is that hw_stopped was set to 0 way before it
656 * should be, so we would drop this skb. It should now be fixed.
657 * One option is to not accept data until we are properly setup.
658 * But, I suspect that when it happens, the ppp line discipline
659 * just "drops" the data, which might screw up connect scripts.
660 * The second option is to create a "safe skb", with large header
661 * and small size (see ircomm_tty_open() for values).
662 * We just need to make sure that when the real values get filled,
663 * we don't mess up the original "safe skb" (see tx_data_size).
664 * Jean II */
665 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800666 IRDA_DEBUG(1, "%s() : not initialised\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#ifdef IRCOMM_NO_TX_BEFORE_INIT
668 /* We didn't consume anything, TTY will retry */
669 return 0;
670#endif
671 }
672
673 if (count < 1)
674 return 0;
675
676 /* Protect our manipulation of self->tx_skb and related */
677 spin_lock_irqsave(&self->spinlock, flags);
678
679 /* Fetch current transmit buffer */
680 skb = self->tx_skb;
681
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900682 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * Send out all the data we get, possibly as multiple fragmented
684 * frames, but this will only happen if the data is larger than the
685 * max data size. The normal case however is just the opposite, and
686 * this function may be called multiple times, and will then actually
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900687 * defragment the data and send it out as one packet as soon as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 * possible, but at a safer point in time
689 */
690 while (count) {
691 size = count;
692
693 /* Adjust data size to the max data size */
694 if (size > self->max_data_size)
695 size = self->max_data_size;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900696
697 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * Do we already have a buffer ready for transmit, or do
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900699 * we need to allocate a new frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900701 if (skb) {
702 /*
703 * Any room for more data at the end of the current
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * transmit buffer? Cannot use skb_tailroom, since
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900705 * dev_alloc_skb gives us a larger skb than we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * requested
707 * Note : use tx_data_size, because max_data_size
708 * may have changed and we don't want to overwrite
709 * the skb. - Jean II
710 */
711 if ((tailroom = (self->tx_data_size - skb->len)) > 0) {
712 /* Adjust data to tailroom */
713 if (size > tailroom)
714 size = tailroom;
715 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900716 /*
717 * Current transmit frame is full, so break
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * out, so we can send it as soon as possible
719 */
720 break;
721 }
722 } else {
723 /* Prepare a full sized frame */
Samuel Ortiz485fb2c2006-07-21 14:50:41 -0700724 skb = alloc_skb(self->max_data_size+
725 self->max_header_size,
726 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (!skb) {
728 spin_unlock_irqrestore(&self->spinlock, flags);
729 return -ENOBUFS;
730 }
731 skb_reserve(skb, self->max_header_size);
732 self->tx_skb = skb;
733 /* Remember skb size because max_data_size may
734 * change later on - Jean II */
735 self->tx_data_size = self->max_data_size;
736 }
737
738 /* Copy data */
739 memcpy(skb_put(skb,size), buf + len, size);
740
741 count -= size;
742 len += size;
743 }
744
745 spin_unlock_irqrestore(&self->spinlock, flags);
746
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900747 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * Schedule a new thread which will transmit the frame as soon
749 * as possible, but at a safe point in time. We do this so the
750 * "user" can give us data multiple times, as PPP does (because of
751 * its 256 byte tx buffer). We will then defragment and send out
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900752 * all this data as one single packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
754 schedule_work(&self->tqueue);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return len;
757}
758
759/*
760 * Function ircomm_tty_write_room (tty)
761 *
762 * This routine returns the numbers of characters the tty driver will
763 * accept for queuing to be written. This number is subject to change as
764 * output buffers get emptied, or if the output flow control is acted.
765 */
766static int ircomm_tty_write_room(struct tty_struct *tty)
767{
768 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
769 unsigned long flags;
770 int ret;
771
772 IRDA_ASSERT(self != NULL, return -1;);
773 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
774
775#ifdef IRCOMM_NO_TX_BEFORE_INIT
776 /* max_header_size tells us if the channel is initialised or not. */
777 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED)
778 /* Don't bother us yet */
779 return 0;
780#endif
781
782 /* Check if we are allowed to transmit any data.
783 * hw_stopped is the regular flow control.
784 * Jean II */
785 if (tty->hw_stopped)
786 ret = 0;
787 else {
788 spin_lock_irqsave(&self->spinlock, flags);
789 if (self->tx_skb)
790 ret = self->tx_data_size - self->tx_skb->len;
791 else
792 ret = self->max_data_size;
793 spin_unlock_irqrestore(&self->spinlock, flags);
794 }
Harvey Harrison0dc47872008-03-05 20:47:47 -0800795 IRDA_DEBUG(2, "%s(), ret=%d\n", __func__ , ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 return ret;
798}
799
800/*
801 * Function ircomm_tty_wait_until_sent (tty, timeout)
802 *
803 * This routine waits until the device has written out all of the
804 * characters in its transmitter FIFO.
805 */
806static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
807{
808 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
809 unsigned long orig_jiffies, poll_time;
810 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900811
Harvey Harrison0dc47872008-03-05 20:47:47 -0800812 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 IRDA_ASSERT(self != NULL, return;);
815 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
816
817 orig_jiffies = jiffies;
818
819 /* Set poll time to 200 ms */
820 poll_time = IRDA_MIN(timeout, msecs_to_jiffies(200));
821
822 spin_lock_irqsave(&self->spinlock, flags);
823 while (self->tx_skb && self->tx_skb->len) {
824 spin_unlock_irqrestore(&self->spinlock, flags);
Nishanth Aravamudan121caf52005-09-12 14:15:34 -0700825 schedule_timeout_interruptible(poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 spin_lock_irqsave(&self->spinlock, flags);
827 if (signal_pending(current))
828 break;
829 if (timeout && time_after(jiffies, orig_jiffies + timeout))
830 break;
831 }
832 spin_unlock_irqrestore(&self->spinlock, flags);
833 current->state = TASK_RUNNING;
834}
835
836/*
837 * Function ircomm_tty_throttle (tty)
838 *
839 * This routine notifies the tty driver that input buffers for the line
840 * discipline are close to full, and it should somehow signal that no
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900841 * more characters should be sent to the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 */
843static void ircomm_tty_throttle(struct tty_struct *tty)
844{
845 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
846
Harvey Harrison0dc47872008-03-05 20:47:47 -0800847 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 IRDA_ASSERT(self != NULL, return;);
850 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
851
852 /* Software flow control? */
853 if (I_IXOFF(tty))
854 ircomm_tty_send_xchar(tty, STOP_CHAR(tty));
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 /* Hardware flow control? */
Alan Coxadc8d742012-07-14 15:31:47 +0100857 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 self->settings.dte &= ~IRCOMM_RTS;
859 self->settings.dte |= IRCOMM_DELTA_RTS;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 ircomm_param_request(self, IRCOMM_DTE, TRUE);
862 }
863
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900864 ircomm_flow_request(self->ircomm, FLOW_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867/*
868 * Function ircomm_tty_unthrottle (tty)
869 *
870 * This routine notifies the tty drivers that it should signals that
871 * characters can now be sent to the tty without fear of overrunning the
872 * input buffers of the line disciplines.
873 */
874static void ircomm_tty_unthrottle(struct tty_struct *tty)
875{
876 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
877
Harvey Harrison0dc47872008-03-05 20:47:47 -0800878 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 IRDA_ASSERT(self != NULL, return;);
881 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
882
883 /* Using software flow control? */
884 if (I_IXOFF(tty)) {
885 ircomm_tty_send_xchar(tty, START_CHAR(tty));
886 }
887
888 /* Using hardware flow control? */
Alan Coxadc8d742012-07-14 15:31:47 +0100889 if (tty->termios.c_cflag & CRTSCTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS);
891
892 ircomm_param_request(self, IRCOMM_DTE, TRUE);
Harvey Harrison0dc47872008-03-05 20:47:47 -0800893 IRDA_DEBUG(1, "%s(), FLOW_START\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900895 ircomm_flow_request(self->ircomm, FLOW_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898/*
899 * Function ircomm_tty_chars_in_buffer (tty)
900 *
901 * Indicates if there are any data in the buffer
902 *
903 */
904static int ircomm_tty_chars_in_buffer(struct tty_struct *tty)
905{
906 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
907 unsigned long flags;
908 int len = 0;
909
910 IRDA_ASSERT(self != NULL, return -1;);
911 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
912
913 spin_lock_irqsave(&self->spinlock, flags);
914
915 if (self->tx_skb)
916 len = self->tx_skb->len;
917
918 spin_unlock_irqrestore(&self->spinlock, flags);
919
920 return len;
921}
922
923static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
924{
925 unsigned long flags;
926
927 IRDA_ASSERT(self != NULL, return;);
928 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
929
Harvey Harrison0dc47872008-03-05 20:47:47 -0800930 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Jiri Slaby849d5a92012-06-04 13:35:19 +0200932 if (!test_and_clear_bit(ASYNCB_INITIALIZED, &self->port.flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return;
934
935 ircomm_tty_detach_cable(self);
936
937 spin_lock_irqsave(&self->spinlock, flags);
938
939 del_timer(&self->watchdog_timer);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /* Free parameter buffer */
942 if (self->ctrl_skb) {
943 dev_kfree_skb(self->ctrl_skb);
944 self->ctrl_skb = NULL;
945 }
946
947 /* Free transmit buffer */
948 if (self->tx_skb) {
949 dev_kfree_skb(self->tx_skb);
950 self->tx_skb = NULL;
951 }
952
953 if (self->ircomm) {
954 ircomm_close(self->ircomm);
955 self->ircomm = NULL;
956 }
957
958 spin_unlock_irqrestore(&self->spinlock, flags);
959}
960
961/*
962 * Function ircomm_tty_hangup (tty)
963 *
964 * This routine notifies the tty driver that it should hangup the tty
965 * device.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900966 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 */
968static void ircomm_tty_hangup(struct tty_struct *tty)
969{
970 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200971 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 unsigned long flags;
973
Harvey Harrison0dc47872008-03-05 20:47:47 -0800974 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 IRDA_ASSERT(self != NULL, return;);
977 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /* ircomm_tty_flush_buffer(tty); */
980 ircomm_tty_shutdown(self);
981
Jiri Slaby38c58032012-06-04 13:35:22 +0200982 spin_lock_irqsave(&port->lock, flags);
983 port->flags &= ~ASYNC_NORMAL_ACTIVE;
984 if (port->tty) {
985 set_bit(TTY_IO_ERROR, &port->tty->flags);
986 tty_kref_put(port->tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200987 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200988 port->tty = NULL;
989 port->count = 0;
990 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Jiri Slaby38c58032012-06-04 13:35:22 +0200992 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
995/*
996 * Function ircomm_tty_send_xchar (tty, ch)
997 *
998 * This routine is used to send a high-priority XON/XOFF character to
999 * the device.
1000 */
1001static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch)
1002{
Harvey Harrison0dc47872008-03-05 20:47:47 -08001003 IRDA_DEBUG(0, "%s(), not impl\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006/*
1007 * Function ircomm_tty_start (tty)
1008 *
1009 * This routine notifies the tty driver that it resume sending
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001010 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 */
1012void ircomm_tty_start(struct tty_struct *tty)
1013{
1014 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1015
1016 ircomm_flow_request(self->ircomm, FLOW_START);
1017}
1018
1019/*
1020 * Function ircomm_tty_stop (tty)
1021 *
1022 * This routine notifies the tty driver that it should stop outputting
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001023 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001025static void ircomm_tty_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1028
1029 IRDA_ASSERT(self != NULL, return;);
1030 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1031
1032 ircomm_flow_request(self->ircomm, FLOW_STOP);
1033}
1034
1035/*
1036 * Function ircomm_check_modem_status (self)
1037 *
1038 * Check for any changes in the DCE's line settings. This function should
1039 * be called whenever the dce parameter settings changes, to update the
1040 * flow control settings and other things
1041 */
1042void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
1043{
1044 struct tty_struct *tty;
1045 int status;
1046
Harvey Harrison0dc47872008-03-05 20:47:47 -08001047 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 IRDA_ASSERT(self != NULL, return;);
1050 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1051
Jiri Slaby62f228a2012-06-04 13:35:21 +02001052 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 status = self->settings.dce;
1055
1056 if (status & IRCOMM_DCE_DELTA_ANY) {
1057 /*wake_up_interruptible(&self->delta_msr_wait);*/
1058 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001059 if ((self->port.flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001060 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001061 "%s(), ircomm%d CD now %s...\n", __func__ , self->line,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 (status & IRCOMM_CD) ? "on" : "off");
1063
1064 if (status & IRCOMM_CD) {
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001065 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001067 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001068 "%s(), Doing serial hangup..\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (tty)
1070 tty_hangup(tty);
1071
1072 /* Hangup will remote the tty, so better break out */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001073 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
1075 }
Huang Shijief21ec3d2012-08-22 22:13:36 -04001076 if (tty && tty_port_cts_enabled(&self->port)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (tty->hw_stopped) {
1078 if (status & IRCOMM_CTS) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001079 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001080 "%s(), CTS tx start...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 tty->hw_stopped = 0;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 /* Wake up processes blocked on open */
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001084 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 schedule_work(&self->tqueue);
Jiri Slaby62f228a2012-06-04 13:35:21 +02001087 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089 } else {
1090 if (!(status & IRCOMM_CTS)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001091 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001092 "%s(), CTS tx stop...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 tty->hw_stopped = 1;
1094 }
1095 }
1096 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001097put:
1098 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101/*
1102 * Function ircomm_tty_data_indication (instance, sap, skb)
1103 *
1104 * Handle incoming data, and deliver it to the line discipline
1105 *
1106 */
1107static int ircomm_tty_data_indication(void *instance, void *sap,
1108 struct sk_buff *skb)
1109{
1110 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
Jiri Slaby62f228a2012-06-04 13:35:21 +02001111 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Harvey Harrison0dc47872008-03-05 20:47:47 -08001113 IRDA_DEBUG(2, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 IRDA_ASSERT(self != NULL, return -1;);
1116 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1117 IRDA_ASSERT(skb != NULL, return -1;);
1118
Jiri Slaby62f228a2012-06-04 13:35:21 +02001119 tty = tty_port_tty_get(&self->port);
1120 if (!tty) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001121 IRDA_DEBUG(0, "%s(), no tty!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return 0;
1123 }
1124
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001125 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 * If we receive data when hardware is stopped then something is wrong.
1127 * We try to poll the peers line settings to check if we are up todate.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001128 * Devices like WinCE can do this, and since they don't send any
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * params, we can just as well declare the hardware for running.
1130 */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001131 if (tty->hw_stopped && (self->flow == FLOW_START)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001132 IRDA_DEBUG(0, "%s(), polling for line settings!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 ircomm_param_request(self, IRCOMM_POLL, TRUE);
1134
1135 /* We can just as well declare the hardware for running */
1136 ircomm_tty_send_initial_parameters(self);
1137 ircomm_tty_link_established(self);
1138 }
1139
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 Slaby62f228a2012-06-04 13:35:21 +02001145 tty_flip_buffer_push(tty);
1146 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 /* No need to kfree_skb - see ircomm_ttp_data_indication() */
1149
1150 return 0;
1151}
1152
1153/*
1154 * Function ircomm_tty_control_indication (instance, sap, skb)
1155 *
1156 * Parse all incoming parameters (easy!)
1157 *
1158 */
1159static int ircomm_tty_control_indication(void *instance, void *sap,
1160 struct sk_buff *skb)
1161{
1162 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1163 int clen;
1164
Harvey Harrison0dc47872008-03-05 20:47:47 -08001165 IRDA_DEBUG(4, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 IRDA_ASSERT(self != NULL, return -1;);
1168 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1169 IRDA_ASSERT(skb != NULL, return -1;);
1170
1171 clen = skb->data[0];
1172
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001173 irda_param_extract_all(self, skb->data+1, IRDA_MIN(skb->len-1, clen),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 &ircomm_param_info);
1175
1176 /* No need to kfree_skb - see ircomm_control_indication() */
1177
1178 return 0;
1179}
1180
1181/*
1182 * Function ircomm_tty_flow_indication (instance, sap, cmd)
1183 *
1184 * This function is called by IrTTP when it wants us to slow down the
1185 * transmission of data. We just mark the hardware as stopped, and wait
1186 * for IrTTP to notify us that things are OK again.
1187 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001188static void ircomm_tty_flow_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 LOCAL_FLOW cmd)
1190{
1191 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1192 struct tty_struct *tty;
1193
1194 IRDA_ASSERT(self != NULL, return;);
1195 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1196
Jiri Slaby62f228a2012-06-04 13:35:21 +02001197 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 switch (cmd) {
1200 case FLOW_START:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001201 IRDA_DEBUG(2, "%s(), hw start!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001202 if (tty)
1203 tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 /* ircomm_tty_do_softint will take care of the rest */
1206 schedule_work(&self->tqueue);
1207 break;
1208 default: /* If we get here, something is very wrong, better stop */
1209 case FLOW_STOP:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001210 IRDA_DEBUG(2, "%s(), hw stopped!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001211 if (tty)
1212 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 break;
1214 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001215
1216 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 self->flow = cmd;
1218}
1219
Pavel Emelyanov92b05e132007-12-05 02:18:48 -08001220#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001221static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Jiri Slaby62f228a2012-06-04 13:35:21 +02001223 struct tty_struct *tty;
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001224 char sep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001226 seq_printf(m, "State: %s\n", ircomm_tty_state[self->state]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001228 seq_puts(m, "Service type: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (self->service_type & IRCOMM_9_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001230 seq_puts(m, "9_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 else if (self->service_type & IRCOMM_3_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001232 seq_puts(m, "3_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 else if (self->service_type & IRCOMM_3_WIRE_RAW)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001234 seq_puts(m, "3_WIRE_RAW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001236 seq_puts(m, "No common service type!\n");
1237 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001239 seq_printf(m, "Port name: %s\n", self->settings.port_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001241 seq_printf(m, "DTE status:");
1242 sep = ' ';
1243 if (self->settings.dte & IRCOMM_RTS) {
1244 seq_printf(m, "%cRTS", sep);
1245 sep = '|';
1246 }
1247 if (self->settings.dte & IRCOMM_DTR) {
1248 seq_printf(m, "%cDTR", sep);
1249 sep = '|';
1250 }
1251 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001253 seq_puts(m, "DCE status:");
1254 sep = ' ';
1255 if (self->settings.dce & IRCOMM_CTS) {
1256 seq_printf(m, "%cCTS", sep);
1257 sep = '|';
1258 }
1259 if (self->settings.dce & IRCOMM_DSR) {
1260 seq_printf(m, "%cDSR", sep);
1261 sep = '|';
1262 }
1263 if (self->settings.dce & IRCOMM_CD) {
1264 seq_printf(m, "%cCD", sep);
1265 sep = '|';
1266 }
1267 if (self->settings.dce & IRCOMM_RI) {
1268 seq_printf(m, "%cRI", sep);
1269 sep = '|';
1270 }
1271 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001273 seq_puts(m, "Configuration: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!self->settings.null_modem)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001275 seq_puts(m, "DTE <-> DCE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001277 seq_puts(m, "DTE <-> DTE (null modem emulation)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001279 seq_printf(m, "Data rate: %d\n", self->settings.data_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001281 seq_puts(m, "Flow control:");
1282 sep = ' ';
1283 if (self->settings.flow_control & IRCOMM_XON_XOFF_IN) {
1284 seq_printf(m, "%cXON_XOFF_IN", sep);
1285 sep = '|';
1286 }
1287 if (self->settings.flow_control & IRCOMM_XON_XOFF_OUT) {
1288 seq_printf(m, "%cXON_XOFF_OUT", sep);
1289 sep = '|';
1290 }
1291 if (self->settings.flow_control & IRCOMM_RTS_CTS_IN) {
1292 seq_printf(m, "%cRTS_CTS_IN", sep);
1293 sep = '|';
1294 }
1295 if (self->settings.flow_control & IRCOMM_RTS_CTS_OUT) {
1296 seq_printf(m, "%cRTS_CTS_OUT", sep);
1297 sep = '|';
1298 }
1299 if (self->settings.flow_control & IRCOMM_DSR_DTR_IN) {
1300 seq_printf(m, "%cDSR_DTR_IN", sep);
1301 sep = '|';
1302 }
1303 if (self->settings.flow_control & IRCOMM_DSR_DTR_OUT) {
1304 seq_printf(m, "%cDSR_DTR_OUT", sep);
1305 sep = '|';
1306 }
1307 if (self->settings.flow_control & IRCOMM_ENQ_ACK_IN) {
1308 seq_printf(m, "%cENQ_ACK_IN", sep);
1309 sep = '|';
1310 }
1311 if (self->settings.flow_control & IRCOMM_ENQ_ACK_OUT) {
1312 seq_printf(m, "%cENQ_ACK_OUT", sep);
1313 sep = '|';
1314 }
1315 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001317 seq_puts(m, "Flags:");
1318 sep = ' ';
Huang Shijief21ec3d2012-08-22 22:13:36 -04001319 if (tty_port_cts_enabled(&self->port)) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001320 seq_printf(m, "%cASYNC_CTS_FLOW", sep);
1321 sep = '|';
1322 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001323 if (self->port.flags & ASYNC_CHECK_CD) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001324 seq_printf(m, "%cASYNC_CHECK_CD", sep);
1325 sep = '|';
1326 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001327 if (self->port.flags & ASYNC_INITIALIZED) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001328 seq_printf(m, "%cASYNC_INITIALIZED", sep);
1329 sep = '|';
1330 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001331 if (self->port.flags & ASYNC_LOW_LATENCY) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001332 seq_printf(m, "%cASYNC_LOW_LATENCY", sep);
1333 sep = '|';
1334 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001335 if (self->port.flags & ASYNC_CLOSING) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001336 seq_printf(m, "%cASYNC_CLOSING", sep);
1337 sep = '|';
1338 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001339 if (self->port.flags & ASYNC_NORMAL_ACTIVE) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001340 seq_printf(m, "%cASYNC_NORMAL_ACTIVE", sep);
1341 sep = '|';
1342 }
1343 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001345 seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
Jiri Slaby580d27b2012-06-04 13:35:18 +02001346 seq_printf(m, "Open count: %d\n", self->port.count);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001347 seq_printf(m, "Max data size: %d\n", self->max_data_size);
1348 seq_printf(m, "Max header size: %d\n", self->max_header_size);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001349
Jiri Slaby62f228a2012-06-04 13:35:21 +02001350 tty = tty_port_tty_get(&self->port);
1351 if (tty) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001352 seq_printf(m, "Hardware: %s\n",
Jiri Slaby62f228a2012-06-04 13:35:21 +02001353 tty->hw_stopped ? "Stopped" : "Running");
1354 tty_kref_put(tty);
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001358static int ircomm_tty_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 struct ircomm_tty_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 unsigned long flags;
1362
1363 spin_lock_irqsave(&ircomm_tty->hb_spinlock, flags);
1364
1365 self = (struct ircomm_tty_cb *) hashbin_get_first(ircomm_tty);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001366 while (self != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (self->magic != IRCOMM_TTY_MAGIC)
1368 break;
1369
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001370 ircomm_tty_line_info(self, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 self = (struct ircomm_tty_cb *) hashbin_get_next(ircomm_tty);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 spin_unlock_irqrestore(&ircomm_tty->hb_spinlock, flags);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001376
1377static int ircomm_tty_proc_open(struct inode *inode, struct file *file)
1378{
1379 return single_open(file, ircomm_tty_proc_show, NULL);
1380}
1381
1382static const struct file_operations ircomm_tty_proc_fops = {
1383 .owner = THIS_MODULE,
1384 .open = ircomm_tty_proc_open,
1385 .read = seq_read,
1386 .llseek = seq_lseek,
1387 .release = single_release,
1388};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389#endif /* CONFIG_PROC_FS */
1390
1391MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
1392MODULE_DESCRIPTION("IrCOMM serial TTY driver");
1393MODULE_LICENSE("GPL");
1394MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR);
1395
1396module_init(ircomm_tty_init);
1397module_exit(ircomm_tty_cleanup);