blob: 199d9cbf99480b5a19041e27a18f3e7a6a8a8201 [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
55static 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 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 .open = ircomm_tty_open,
86 .close = ircomm_tty_close,
87 .write = ircomm_tty_write,
88 .write_room = ircomm_tty_write_room,
89 .chars_in_buffer = ircomm_tty_chars_in_buffer,
90 .flush_buffer = ircomm_tty_flush_buffer,
91 .ioctl = ircomm_tty_ioctl, /* ircomm_tty_ioctl.c */
92 .tiocmget = ircomm_tty_tiocmget, /* ircomm_tty_ioctl.c */
93 .tiocmset = ircomm_tty_tiocmset, /* ircomm_tty_ioctl.c */
94 .throttle = ircomm_tty_throttle,
95 .unthrottle = ircomm_tty_unthrottle,
96 .send_xchar = ircomm_tty_send_xchar,
97 .set_termios = ircomm_tty_set_termios,
98 .stop = ircomm_tty_stop,
99 .start = ircomm_tty_start,
100 .hangup = ircomm_tty_hangup,
101 .wait_until_sent = ircomm_tty_wait_until_sent,
102#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -0700103 .proc_fops = &ircomm_tty_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif /* CONFIG_PROC_FS */
105};
106
107/*
108 * Function ircomm_tty_init()
109 *
110 * Init IrCOMM TTY layer/driver
111 *
112 */
113static int __init ircomm_tty_init(void)
114{
115 driver = alloc_tty_driver(IRCOMM_TTY_PORTS);
116 if (!driver)
117 return -ENOMEM;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900118 ircomm_tty = hashbin_new(HB_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 if (ircomm_tty == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800120 IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 put_tty_driver(driver);
122 return -ENOMEM;
123 }
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 driver->driver_name = "ircomm";
126 driver->name = "ircomm";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 driver->major = IRCOMM_TTY_MAJOR;
128 driver->minor_start = IRCOMM_TTY_MINOR;
129 driver->type = TTY_DRIVER_TYPE_SERIAL;
130 driver->subtype = SERIAL_TYPE_NORMAL;
131 driver->init_termios = tty_std_termios;
132 driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
133 driver->flags = TTY_DRIVER_REAL_RAW;
134 tty_set_operations(driver, &ops);
135 if (tty_register_driver(driver)) {
136 IRDA_ERROR("%s(): Couldn't register serial driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800137 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 put_tty_driver(driver);
139 return -1;
140 }
141 return 0;
142}
143
144static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
145{
Harvey Harrison0dc47872008-03-05 20:47:47 -0800146 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 IRDA_ASSERT(self != NULL, return;);
149 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
150
151 ircomm_tty_shutdown(self);
152
153 self->magic = 0;
154 kfree(self);
155}
156
157/*
158 * Function ircomm_tty_cleanup ()
159 *
160 * Remove IrCOMM TTY layer/driver
161 *
162 */
163static void __exit ircomm_tty_cleanup(void)
164{
165 int ret;
166
Harvey Harrison0dc47872008-03-05 20:47:47 -0800167 IRDA_DEBUG(4, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 ret = tty_unregister_driver(driver);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900170 if (ret) {
171 IRDA_ERROR("%s(), failed to unregister driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800172 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return;
174 }
175
176 hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup);
177 put_tty_driver(driver);
178}
179
180/*
181 * Function ircomm_startup (self)
182 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900183 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 *
185 */
186static int ircomm_tty_startup(struct ircomm_tty_cb *self)
187{
188 notify_t notify;
189 int ret = -ENODEV;
190
Harvey Harrison0dc47872008-03-05 20:47:47 -0800191 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 IRDA_ASSERT(self != NULL, return -1;);
194 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
195
196 /* Check if already open */
Jiri Slaby849d5a92012-06-04 13:35:19 +0200197 if (test_and_set_bit(ASYNCB_INITIALIZED, &self->port.flags)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800198 IRDA_DEBUG(2, "%s(), already open so break out!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return 0;
200 }
201
202 /* Register with IrCOMM */
203 irda_notify_init(&notify);
204 /* These callbacks we must handle ourselves */
205 notify.data_indication = ircomm_tty_data_indication;
206 notify.udata_indication = ircomm_tty_control_indication;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900207 notify.flow_indication = ircomm_tty_flow_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 /* Use the ircomm_tty interface for these ones */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900210 notify.disconnect_indication = ircomm_tty_disconnect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 notify.connect_confirm = ircomm_tty_connect_confirm;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900212 notify.connect_indication = ircomm_tty_connect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 strlcpy(notify.name, "ircomm_tty", sizeof(notify.name));
214 notify.instance = self;
215
216 if (!self->ircomm) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900217 self->ircomm = ircomm_open(&notify, self->service_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 self->line);
219 }
220 if (!self->ircomm)
221 goto err;
222
223 self->slsap_sel = self->ircomm->slsap_sel;
224
225 /* Connect IrCOMM link with remote device */
226 ret = ircomm_tty_attach_cable(self);
227 if (ret < 0) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800228 IRDA_ERROR("%s(), error attaching cable!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 goto err;
230 }
231
232 return 0;
233err:
Jiri Slaby849d5a92012-06-04 13:35:19 +0200234 clear_bit(ASYNCB_INITIALIZED, &self->port.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return ret;
236}
237
238/*
239 * Function ircomm_block_til_ready (self, filp)
240 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900241 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *
243 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900244static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
Jiri Slaby62f228a2012-06-04 13:35:21 +0200245 struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Jiri Slaby38c58032012-06-04 13:35:22 +0200247 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 DECLARE_WAITQUEUE(wait, current);
249 int retval;
250 int do_clocal = 0, extra_count = 0;
251 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900252
Harvey Harrison0dc47872008-03-05 20:47:47 -0800253 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /*
256 * If non-blocking mode is set, or the port is not enabled,
257 * then make the check up front and then exit.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
260 /* nonblock mode is set or port is not enabled */
Jiri Slaby38c58032012-06-04 13:35:22 +0200261 port->flags |= ASYNC_NORMAL_ACTIVE;
Harvey Harrison0dc47872008-03-05 20:47:47 -0800262 IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264 }
265
266 if (tty->termios->c_cflag & CLOCAL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800267 IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 do_clocal = 1;
269 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* Wait for carrier detect and the line to become
272 * free (i.e., not in use by the callout). While we are in
Jiri Slaby38c58032012-06-04 13:35:22 +0200273 * this loop, port->count is dropped by one, so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * mgsl_close() knows when to free things. We restore it upon
275 * exit, either normal or abnormal.
276 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 retval = 0;
Jiri Slaby38c58032012-06-04 13:35:22 +0200279 add_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 IRDA_DEBUG(2, "%s(%d):block_til_ready before block on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200282 __FILE__, __LINE__, tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Jiri Slaby38c58032012-06-04 13:35:22 +0200284 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!tty_hung_up_p(filp)) {
286 extra_count = 1;
Jiri Slaby38c58032012-06-04 13:35:22 +0200287 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200289 spin_unlock_irqrestore(&port->lock, flags);
290 port->blocked_open++;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 while (1) {
293 if (tty->termios->c_cflag & CBAUD) {
294 /* Here, we use to lock those two guys, but
295 * as ircomm_param_request() does it itself,
296 * I don't see the point (and I see the deadlock).
297 * Jean II */
298 self->settings.dte |= IRCOMM_RTS + IRCOMM_DTR;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ircomm_param_request(self, IRCOMM_DTE, TRUE);
301 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 current->state = TASK_INTERRUPTIBLE;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (tty_hung_up_p(filp) ||
Jiri Slaby38c58032012-06-04 13:35:22 +0200306 !test_bit(ASYNCB_INITIALIZED, &port->flags)) {
307 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 -EAGAIN : -ERESTARTSYS;
309 break;
310 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900311
312 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * Check if link is ready now. Even if CLOCAL is
314 * specified, we cannot return before the IrCOMM link is
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900315 * ready
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 */
Jiri Slaby38c58032012-06-04 13:35:22 +0200317 if (!test_bit(ASYNCB_CLOSING, &port->flags) &&
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900318 (do_clocal || (self->settings.dce & IRCOMM_CD)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 self->state == IRCOMM_TTY_READY)
320 {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900321 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (signal_pending(current)) {
325 retval = -ERESTARTSYS;
326 break;
327 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 IRDA_DEBUG(1, "%s(%d):block_til_ready blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200330 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 schedule();
333 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 __set_current_state(TASK_RUNNING);
Jiri Slaby38c58032012-06-04 13:35:22 +0200336 remove_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (extra_count) {
339 /* ++ is not atomic, so this should be protected - Jean II */
Jiri Slaby38c58032012-06-04 13:35:22 +0200340 spin_lock_irqsave(&port->lock, flags);
341 port->count++;
342 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200344 port->blocked_open--;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 IRDA_DEBUG(1, "%s(%d):block_til_ready after blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200347 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (!retval)
Jiri Slaby38c58032012-06-04 13:35:22 +0200350 port->flags |= ASYNC_NORMAL_ACTIVE;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900351
352 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355/*
356 * Function ircomm_tty_open (tty, filp)
357 *
358 * This routine is called when a particular tty device is opened. This
359 * routine is mandatory; if this routine is not filled in, the attempted
360 * open will fail with ENODEV.
361 */
362static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
363{
364 struct ircomm_tty_cb *self;
Jiri Slaby410235f2012-03-05 14:52:01 +0100365 unsigned int line = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 unsigned long flags;
367 int ret;
368
Harvey Harrison0dc47872008-03-05 20:47:47 -0800369 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /* Check if instance already exists */
372 self = hashbin_lock_find(ircomm_tty, line, NULL);
373 if (!self) {
374 /* No, so make new instance */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700375 self = kzalloc(sizeof(struct ircomm_tty_cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (self == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800377 IRDA_ERROR("%s(), kmalloc failed!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return -ENOMEM;
379 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900380
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200381 tty_port_init(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 self->magic = IRCOMM_TTY_MAGIC;
383 self->flow = FLOW_STOP;
384
385 self->line = line;
David Howellsc4028952006-11-22 14:57:56 +0000386 INIT_WORK(&self->tqueue, ircomm_tty_do_softint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 self->max_header_size = IRCOMM_TTY_HDR_UNINITIALISED;
388 self->max_data_size = IRCOMM_TTY_DATA_UNINITIALISED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* Init some important stuff */
391 init_timer(&self->watchdog_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 spin_lock_init(&self->spinlock);
393
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900394 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * Force TTY into raw mode by default which is usually what
396 * we want for IrCOMM and IrLPT. This way applications will
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900397 * not have to twiddle with printcap etc.
Alan Coxad36b882009-01-02 13:50:20 +0000398 *
399 * Note this is completely usafe and doesn't work properly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 */
401 tty->termios->c_iflag = 0;
402 tty->termios->c_oflag = 0;
403
404 /* Insert into hash */
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200405 /* FIXME there is a window from find to here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 hashbin_insert(ircomm_tty, (irda_queue_t *) self, line, NULL);
407 }
408 /* ++ is not atomic, so this should be protected - Jean II */
Jiri Slabye6739272012-06-04 13:35:20 +0200409 spin_lock_irqsave(&self->port.lock, flags);
Jiri Slaby580d27b2012-06-04 13:35:18 +0200410 self->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 tty->driver_data = self;
Jiri Slabye6739272012-06-04 13:35:20 +0200413 spin_unlock_irqrestore(&self->port.lock, flags);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200414 tty_port_tty_set(&self->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Harvey Harrison0dc47872008-03-05 20:47:47 -0800416 IRDA_DEBUG(1, "%s(), %s%d, count = %d\n", __func__ , tty->driver->name,
Jiri Slaby580d27b2012-06-04 13:35:18 +0200417 self->line, self->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /* Not really used by us, but lets do it anyway */
Jiri Slaby849d5a92012-06-04 13:35:19 +0200420 tty->low_latency = (self->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /*
423 * If the port is the middle of closing, bail out now
424 */
425 if (tty_hung_up_p(filp) ||
Jiri Slaby849d5a92012-06-04 13:35:19 +0200426 test_bit(ASYNCB_CLOSING, &self->port.flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* Hm, why are we blocking on ASYNC_CLOSING if we
429 * do return -EAGAIN/-ERESTARTSYS below anyway?
430 * IMHO it's either not needed in the first place
431 * or for some reason we need to make sure the async
432 * closing has been finished - if so, wouldn't we
433 * probably better sleep uninterruptible?
434 */
435
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200436 if (wait_event_interruptible(self->port.close_wait,
Jiri Slaby849d5a92012-06-04 13:35:19 +0200437 !test_bit(ASYNCB_CLOSING, &self->port.flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 IRDA_WARNING("%s - got signal while blocking on ASYNC_CLOSING!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800439 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -ERESTARTSYS;
441 }
442
443#ifdef SERIAL_DO_RESTART
Jiri Slaby849d5a92012-06-04 13:35:19 +0200444 return (self->port.flags & ASYNC_HUP_NOTIFY) ?
Eric Dumazeta02cec22010-09-22 20:43:57 +0000445 -EAGAIN : -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#else
447 return -EAGAIN;
448#endif
449 }
450
451 /* Check if this is a "normal" ircomm device, or an irlpt device */
452 if (line < 0x10) {
453 self->service_type = IRCOMM_3_WIRE | IRCOMM_9_WIRE;
454 self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */
455 /* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */
456 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800457 IRDA_DEBUG(2, "%s(), IrCOMM device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 } else {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800459 IRDA_DEBUG(2, "%s(), IrLPT device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 self->service_type = IRCOMM_3_WIRE_RAW;
461 self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */
462 }
463
464 ret = ircomm_tty_startup(self);
465 if (ret)
466 return ret;
467
Jiri Slaby62f228a2012-06-04 13:35:21 +0200468 ret = ircomm_tty_block_til_ready(self, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (ret) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900470 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -0800471 "%s(), returning after block_til_ready with %d\n", __func__ ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 ret);
473
474 return ret;
475 }
476 return 0;
477}
478
479/*
480 * Function ircomm_tty_close (tty, filp)
481 *
482 * This routine is called when a particular tty device is closed.
483 *
484 */
485static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
486{
487 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200488 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 unsigned long flags;
490
Harvey Harrison0dc47872008-03-05 20:47:47 -0800491 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 IRDA_ASSERT(self != NULL, return;);
494 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
495
Jiri Slaby38c58032012-06-04 13:35:22 +0200496 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if (tty_hung_up_p(filp)) {
Jiri Slaby38c58032012-06-04 13:35:22 +0200499 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Harvey Harrison0dc47872008-03-05 20:47:47 -0800501 IRDA_DEBUG(0, "%s(), returning 1\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return;
503 }
504
Jiri Slaby38c58032012-06-04 13:35:22 +0200505 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /*
507 * Uh, oh. tty->count is 1, which means that the tty
508 * structure will be freed. state->count should always
509 * be one in these conditions. If it's greater than
510 * one, we've got real problems, since it means the
511 * serial port won't be shutdown.
512 */
513 IRDA_DEBUG(0, "%s(), bad serial port count; "
Harvey Harrison0dc47872008-03-05 20:47:47 -0800514 "tty->count is 1, state->count is %d\n", __func__ ,
Jiri Slaby38c58032012-06-04 13:35:22 +0200515 port->count);
516 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Jiri Slaby38c58032012-06-04 13:35:22 +0200519 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 IRDA_ERROR("%s(), bad serial port count for ttys%d: %d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200521 __func__, self->line, port->count);
522 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200524 if (port->count) {
525 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Harvey Harrison0dc47872008-03-05 20:47:47 -0800527 IRDA_DEBUG(0, "%s(), open count > 0\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return;
529 }
530
Jiri Slaby38c58032012-06-04 13:35:22 +0200531 set_bit(ASYNCB_CLOSING, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Jiri Slaby38c58032012-06-04 13:35:22 +0200533 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /*
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900536 * Now we wait for the transmit buffer to clear; and we notify
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * the line discipline to only process XON/XOFF characters.
538 */
539 tty->closing = 1;
Jiri Slaby38c58032012-06-04 13:35:22 +0200540 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
541 tty_wait_until_sent_from_close(tty, port->closing_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 ircomm_tty_shutdown(self);
544
Alan Coxf34d7a52008-04-30 00:54:13 -0700545 tty_driver_flush_buffer(tty);
546 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Jiri Slaby38c58032012-06-04 13:35:22 +0200548 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 tty->closing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Jiri Slaby38c58032012-06-04 13:35:22 +0200551 if (port->blocked_open) {
552 if (port->close_delay) {
553 spin_unlock_irqrestore(&port->lock, flags);
554 schedule_timeout_interruptible(port->close_delay);
555 spin_lock_irqsave(&port->lock, flags);
Jiri Slabye6739272012-06-04 13:35:20 +0200556 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200557 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559
Jiri Slaby38c58032012-06-04 13:35:22 +0200560 port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
561 spin_unlock_irqrestore(&port->lock, flags);
562 wake_up_interruptible(&port->close_wait);
563 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566/*
567 * Function ircomm_tty_flush_buffer (tty)
568 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900569 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 *
571 */
572static void ircomm_tty_flush_buffer(struct tty_struct *tty)
573{
574 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
575
576 IRDA_ASSERT(self != NULL, return;);
577 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
578
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900579 /*
580 * Let do_softint() do this to avoid race condition with
581 * do_softint() ;-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 */
583 schedule_work(&self->tqueue);
584}
585
586/*
David Howellsc4028952006-11-22 14:57:56 +0000587 * Function ircomm_tty_do_softint (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
589 * We use this routine to give the write wakeup to the user at at a
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900590 * safe time (as fast as possible after write have completed). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * can be compared to the Tx interrupt.
592 */
David Howellsc4028952006-11-22 14:57:56 +0000593static void ircomm_tty_do_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
David Howellsc4028952006-11-22 14:57:56 +0000595 struct ircomm_tty_cb *self =
596 container_of(work, struct ircomm_tty_cb, tqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct tty_struct *tty;
598 unsigned long flags;
599 struct sk_buff *skb, *ctrl_skb;
600
Harvey Harrison0dc47872008-03-05 20:47:47 -0800601 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (!self || self->magic != IRCOMM_TTY_MAGIC)
604 return;
605
Jiri Slaby62f228a2012-06-04 13:35:21 +0200606 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (!tty)
608 return;
609
610 /* Unlink control buffer */
611 spin_lock_irqsave(&self->spinlock, flags);
612
613 ctrl_skb = self->ctrl_skb;
614 self->ctrl_skb = NULL;
615
616 spin_unlock_irqrestore(&self->spinlock, flags);
617
618 /* Flush control buffer if any */
619 if(ctrl_skb) {
620 if(self->flow == FLOW_START)
621 ircomm_control_request(self->ircomm, ctrl_skb);
622 /* Drop reference count - see ircomm_ttp_data_request(). */
623 dev_kfree_skb(ctrl_skb);
624 }
625
626 if (tty->hw_stopped)
Jiri Slaby62f228a2012-06-04 13:35:21 +0200627 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* Unlink transmit buffer */
630 spin_lock_irqsave(&self->spinlock, flags);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 skb = self->tx_skb;
633 self->tx_skb = NULL;
634
635 spin_unlock_irqrestore(&self->spinlock, flags);
636
637 /* Flush transmit buffer if any */
638 if (skb) {
639 ircomm_tty_do_event(self, IRCOMM_TTY_DATA_REQUEST, skb, NULL);
640 /* Drop reference count - see ircomm_ttp_data_request(). */
641 dev_kfree_skb(skb);
642 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* Check if user (still) wants to be waken up */
Alan Coxa352def2008-07-16 21:53:12 +0100645 tty_wakeup(tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200646put:
647 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650/*
651 * Function ircomm_tty_write (tty, buf, count)
652 *
653 * This routine is called by the kernel to write a series of characters
654 * to the tty device. The characters may come from user space or kernel
655 * space. This routine will return the number of characters actually
656 * accepted for writing. This routine is mandatory.
657 */
658static int ircomm_tty_write(struct tty_struct *tty,
659 const unsigned char *buf, int count)
660{
661 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
662 unsigned long flags;
663 struct sk_buff *skb;
664 int tailroom = 0;
665 int len = 0;
666 int size;
667
Harvey Harrison0dc47872008-03-05 20:47:47 -0800668 IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __func__ , count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 tty->hw_stopped);
670
671 IRDA_ASSERT(self != NULL, return -1;);
672 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
673
674 /* We may receive packets from the TTY even before we have finished
675 * our setup. Not cool.
676 * The problem is that we don't know the final header and data size
677 * to create the proper skb, so any skb we would create would have
678 * bogus header and data size, so need care.
679 * We use a bogus header size to safely detect this condition.
680 * Another problem is that hw_stopped was set to 0 way before it
681 * should be, so we would drop this skb. It should now be fixed.
682 * One option is to not accept data until we are properly setup.
683 * But, I suspect that when it happens, the ppp line discipline
684 * just "drops" the data, which might screw up connect scripts.
685 * The second option is to create a "safe skb", with large header
686 * and small size (see ircomm_tty_open() for values).
687 * We just need to make sure that when the real values get filled,
688 * we don't mess up the original "safe skb" (see tx_data_size).
689 * Jean II */
690 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800691 IRDA_DEBUG(1, "%s() : not initialised\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692#ifdef IRCOMM_NO_TX_BEFORE_INIT
693 /* We didn't consume anything, TTY will retry */
694 return 0;
695#endif
696 }
697
698 if (count < 1)
699 return 0;
700
701 /* Protect our manipulation of self->tx_skb and related */
702 spin_lock_irqsave(&self->spinlock, flags);
703
704 /* Fetch current transmit buffer */
705 skb = self->tx_skb;
706
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900707 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 * Send out all the data we get, possibly as multiple fragmented
709 * frames, but this will only happen if the data is larger than the
710 * max data size. The normal case however is just the opposite, and
711 * this function may be called multiple times, and will then actually
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900712 * defragment the data and send it out as one packet as soon as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 * possible, but at a safer point in time
714 */
715 while (count) {
716 size = count;
717
718 /* Adjust data size to the max data size */
719 if (size > self->max_data_size)
720 size = self->max_data_size;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900721
722 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 * Do we already have a buffer ready for transmit, or do
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900724 * we need to allocate a new frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900726 if (skb) {
727 /*
728 * Any room for more data at the end of the current
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * transmit buffer? Cannot use skb_tailroom, since
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900730 * dev_alloc_skb gives us a larger skb than we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * requested
732 * Note : use tx_data_size, because max_data_size
733 * may have changed and we don't want to overwrite
734 * the skb. - Jean II
735 */
736 if ((tailroom = (self->tx_data_size - skb->len)) > 0) {
737 /* Adjust data to tailroom */
738 if (size > tailroom)
739 size = tailroom;
740 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900741 /*
742 * Current transmit frame is full, so break
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 * out, so we can send it as soon as possible
744 */
745 break;
746 }
747 } else {
748 /* Prepare a full sized frame */
Samuel Ortiz485fb2c2006-07-21 14:50:41 -0700749 skb = alloc_skb(self->max_data_size+
750 self->max_header_size,
751 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (!skb) {
753 spin_unlock_irqrestore(&self->spinlock, flags);
754 return -ENOBUFS;
755 }
756 skb_reserve(skb, self->max_header_size);
757 self->tx_skb = skb;
758 /* Remember skb size because max_data_size may
759 * change later on - Jean II */
760 self->tx_data_size = self->max_data_size;
761 }
762
763 /* Copy data */
764 memcpy(skb_put(skb,size), buf + len, size);
765
766 count -= size;
767 len += size;
768 }
769
770 spin_unlock_irqrestore(&self->spinlock, flags);
771
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900772 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * Schedule a new thread which will transmit the frame as soon
774 * as possible, but at a safe point in time. We do this so the
775 * "user" can give us data multiple times, as PPP does (because of
776 * its 256 byte tx buffer). We will then defragment and send out
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900777 * all this data as one single packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
779 schedule_work(&self->tqueue);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return len;
782}
783
784/*
785 * Function ircomm_tty_write_room (tty)
786 *
787 * This routine returns the numbers of characters the tty driver will
788 * accept for queuing to be written. This number is subject to change as
789 * output buffers get emptied, or if the output flow control is acted.
790 */
791static int ircomm_tty_write_room(struct tty_struct *tty)
792{
793 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
794 unsigned long flags;
795 int ret;
796
797 IRDA_ASSERT(self != NULL, return -1;);
798 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
799
800#ifdef IRCOMM_NO_TX_BEFORE_INIT
801 /* max_header_size tells us if the channel is initialised or not. */
802 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED)
803 /* Don't bother us yet */
804 return 0;
805#endif
806
807 /* Check if we are allowed to transmit any data.
808 * hw_stopped is the regular flow control.
809 * Jean II */
810 if (tty->hw_stopped)
811 ret = 0;
812 else {
813 spin_lock_irqsave(&self->spinlock, flags);
814 if (self->tx_skb)
815 ret = self->tx_data_size - self->tx_skb->len;
816 else
817 ret = self->max_data_size;
818 spin_unlock_irqrestore(&self->spinlock, flags);
819 }
Harvey Harrison0dc47872008-03-05 20:47:47 -0800820 IRDA_DEBUG(2, "%s(), ret=%d\n", __func__ , ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 return ret;
823}
824
825/*
826 * Function ircomm_tty_wait_until_sent (tty, timeout)
827 *
828 * This routine waits until the device has written out all of the
829 * characters in its transmitter FIFO.
830 */
831static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
832{
833 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
834 unsigned long orig_jiffies, poll_time;
835 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900836
Harvey Harrison0dc47872008-03-05 20:47:47 -0800837 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 IRDA_ASSERT(self != NULL, return;);
840 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
841
842 orig_jiffies = jiffies;
843
844 /* Set poll time to 200 ms */
845 poll_time = IRDA_MIN(timeout, msecs_to_jiffies(200));
846
847 spin_lock_irqsave(&self->spinlock, flags);
848 while (self->tx_skb && self->tx_skb->len) {
849 spin_unlock_irqrestore(&self->spinlock, flags);
Nishanth Aravamudan121caf52005-09-12 14:15:34 -0700850 schedule_timeout_interruptible(poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 spin_lock_irqsave(&self->spinlock, flags);
852 if (signal_pending(current))
853 break;
854 if (timeout && time_after(jiffies, orig_jiffies + timeout))
855 break;
856 }
857 spin_unlock_irqrestore(&self->spinlock, flags);
858 current->state = TASK_RUNNING;
859}
860
861/*
862 * Function ircomm_tty_throttle (tty)
863 *
864 * This routine notifies the tty driver that input buffers for the line
865 * discipline are close to full, and it should somehow signal that no
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900866 * more characters should be sent to the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 */
868static void ircomm_tty_throttle(struct tty_struct *tty)
869{
870 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
871
Harvey Harrison0dc47872008-03-05 20:47:47 -0800872 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 IRDA_ASSERT(self != NULL, return;);
875 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
876
877 /* Software flow control? */
878 if (I_IXOFF(tty))
879 ircomm_tty_send_xchar(tty, STOP_CHAR(tty));
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* Hardware flow control? */
882 if (tty->termios->c_cflag & CRTSCTS) {
883 self->settings.dte &= ~IRCOMM_RTS;
884 self->settings.dte |= IRCOMM_DELTA_RTS;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 ircomm_param_request(self, IRCOMM_DTE, TRUE);
887 }
888
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900889 ircomm_flow_request(self->ircomm, FLOW_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892/*
893 * Function ircomm_tty_unthrottle (tty)
894 *
895 * This routine notifies the tty drivers that it should signals that
896 * characters can now be sent to the tty without fear of overrunning the
897 * input buffers of the line disciplines.
898 */
899static void ircomm_tty_unthrottle(struct tty_struct *tty)
900{
901 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
902
Harvey Harrison0dc47872008-03-05 20:47:47 -0800903 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 IRDA_ASSERT(self != NULL, return;);
906 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
907
908 /* Using software flow control? */
909 if (I_IXOFF(tty)) {
910 ircomm_tty_send_xchar(tty, START_CHAR(tty));
911 }
912
913 /* Using hardware flow control? */
914 if (tty->termios->c_cflag & CRTSCTS) {
915 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS);
916
917 ircomm_param_request(self, IRCOMM_DTE, TRUE);
Harvey Harrison0dc47872008-03-05 20:47:47 -0800918 IRDA_DEBUG(1, "%s(), FLOW_START\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900920 ircomm_flow_request(self->ircomm, FLOW_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923/*
924 * Function ircomm_tty_chars_in_buffer (tty)
925 *
926 * Indicates if there are any data in the buffer
927 *
928 */
929static int ircomm_tty_chars_in_buffer(struct tty_struct *tty)
930{
931 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
932 unsigned long flags;
933 int len = 0;
934
935 IRDA_ASSERT(self != NULL, return -1;);
936 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
937
938 spin_lock_irqsave(&self->spinlock, flags);
939
940 if (self->tx_skb)
941 len = self->tx_skb->len;
942
943 spin_unlock_irqrestore(&self->spinlock, flags);
944
945 return len;
946}
947
948static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
949{
950 unsigned long flags;
951
952 IRDA_ASSERT(self != NULL, return;);
953 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
954
Harvey Harrison0dc47872008-03-05 20:47:47 -0800955 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Jiri Slaby849d5a92012-06-04 13:35:19 +0200957 if (!test_and_clear_bit(ASYNCB_INITIALIZED, &self->port.flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return;
959
960 ircomm_tty_detach_cable(self);
961
962 spin_lock_irqsave(&self->spinlock, flags);
963
964 del_timer(&self->watchdog_timer);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 /* Free parameter buffer */
967 if (self->ctrl_skb) {
968 dev_kfree_skb(self->ctrl_skb);
969 self->ctrl_skb = NULL;
970 }
971
972 /* Free transmit buffer */
973 if (self->tx_skb) {
974 dev_kfree_skb(self->tx_skb);
975 self->tx_skb = NULL;
976 }
977
978 if (self->ircomm) {
979 ircomm_close(self->ircomm);
980 self->ircomm = NULL;
981 }
982
983 spin_unlock_irqrestore(&self->spinlock, flags);
984}
985
986/*
987 * Function ircomm_tty_hangup (tty)
988 *
989 * This routine notifies the tty driver that it should hangup the tty
990 * device.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900991 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
993static void ircomm_tty_hangup(struct tty_struct *tty)
994{
995 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200996 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 unsigned long flags;
998
Harvey Harrison0dc47872008-03-05 20:47:47 -0800999 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 IRDA_ASSERT(self != NULL, return;);
1002 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 /* ircomm_tty_flush_buffer(tty); */
1005 ircomm_tty_shutdown(self);
1006
Jiri Slaby38c58032012-06-04 13:35:22 +02001007 spin_lock_irqsave(&port->lock, flags);
1008 port->flags &= ~ASYNC_NORMAL_ACTIVE;
1009 if (port->tty) {
1010 set_bit(TTY_IO_ERROR, &port->tty->flags);
1011 tty_kref_put(port->tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +02001012 }
Jiri Slaby38c58032012-06-04 13:35:22 +02001013 port->tty = NULL;
1014 port->count = 0;
1015 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Jiri Slaby38c58032012-06-04 13:35:22 +02001017 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
1020/*
1021 * Function ircomm_tty_send_xchar (tty, ch)
1022 *
1023 * This routine is used to send a high-priority XON/XOFF character to
1024 * the device.
1025 */
1026static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch)
1027{
Harvey Harrison0dc47872008-03-05 20:47:47 -08001028 IRDA_DEBUG(0, "%s(), not impl\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031/*
1032 * Function ircomm_tty_start (tty)
1033 *
1034 * This routine notifies the tty driver that it resume sending
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001035 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
1037void ircomm_tty_start(struct tty_struct *tty)
1038{
1039 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1040
1041 ircomm_flow_request(self->ircomm, FLOW_START);
1042}
1043
1044/*
1045 * Function ircomm_tty_stop (tty)
1046 *
1047 * This routine notifies the tty driver that it should stop outputting
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001048 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001050static void ircomm_tty_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1053
1054 IRDA_ASSERT(self != NULL, return;);
1055 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1056
1057 ircomm_flow_request(self->ircomm, FLOW_STOP);
1058}
1059
1060/*
1061 * Function ircomm_check_modem_status (self)
1062 *
1063 * Check for any changes in the DCE's line settings. This function should
1064 * be called whenever the dce parameter settings changes, to update the
1065 * flow control settings and other things
1066 */
1067void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
1068{
1069 struct tty_struct *tty;
1070 int status;
1071
Harvey Harrison0dc47872008-03-05 20:47:47 -08001072 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 IRDA_ASSERT(self != NULL, return;);
1075 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1076
Jiri Slaby62f228a2012-06-04 13:35:21 +02001077 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 status = self->settings.dce;
1080
1081 if (status & IRCOMM_DCE_DELTA_ANY) {
1082 /*wake_up_interruptible(&self->delta_msr_wait);*/
1083 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001084 if ((self->port.flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001085 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001086 "%s(), ircomm%d CD now %s...\n", __func__ , self->line,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 (status & IRCOMM_CD) ? "on" : "off");
1088
1089 if (status & IRCOMM_CD) {
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001090 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001092 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001093 "%s(), Doing serial hangup..\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (tty)
1095 tty_hangup(tty);
1096
1097 /* Hangup will remote the tty, so better break out */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001098 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001101 if (tty && self->port.flags & ASYNC_CTS_FLOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (tty->hw_stopped) {
1103 if (status & IRCOMM_CTS) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001104 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001105 "%s(), CTS tx start...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 tty->hw_stopped = 0;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* Wake up processes blocked on open */
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001109 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111 schedule_work(&self->tqueue);
Jiri Slaby62f228a2012-06-04 13:35:21 +02001112 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114 } else {
1115 if (!(status & IRCOMM_CTS)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001116 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001117 "%s(), CTS tx stop...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 tty->hw_stopped = 1;
1119 }
1120 }
1121 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001122put:
1123 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
1126/*
1127 * Function ircomm_tty_data_indication (instance, sap, skb)
1128 *
1129 * Handle incoming data, and deliver it to the line discipline
1130 *
1131 */
1132static int ircomm_tty_data_indication(void *instance, void *sap,
1133 struct sk_buff *skb)
1134{
1135 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
Jiri Slaby62f228a2012-06-04 13:35:21 +02001136 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Harvey Harrison0dc47872008-03-05 20:47:47 -08001138 IRDA_DEBUG(2, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 IRDA_ASSERT(self != NULL, return -1;);
1141 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1142 IRDA_ASSERT(skb != NULL, return -1;);
1143
Jiri Slaby62f228a2012-06-04 13:35:21 +02001144 tty = tty_port_tty_get(&self->port);
1145 if (!tty) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001146 IRDA_DEBUG(0, "%s(), no tty!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return 0;
1148 }
1149
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001150 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 * If we receive data when hardware is stopped then something is wrong.
1152 * We try to poll the peers line settings to check if we are up todate.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001153 * Devices like WinCE can do this, and since they don't send any
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 * params, we can just as well declare the hardware for running.
1155 */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001156 if (tty->hw_stopped && (self->flow == FLOW_START)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001157 IRDA_DEBUG(0, "%s(), polling for line settings!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 ircomm_param_request(self, IRCOMM_POLL, TRUE);
1159
1160 /* We can just as well declare the hardware for running */
1161 ircomm_tty_send_initial_parameters(self);
1162 ircomm_tty_link_established(self);
1163 }
1164
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001165 /*
Amit Virdicbfd1522011-05-12 01:04:40 +00001166 * Use flip buffer functions since the code may be called from interrupt
1167 * context
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001169 tty_insert_flip_string(tty, skb->data, skb->len);
1170 tty_flip_buffer_push(tty);
1171 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 /* No need to kfree_skb - see ircomm_ttp_data_indication() */
1174
1175 return 0;
1176}
1177
1178/*
1179 * Function ircomm_tty_control_indication (instance, sap, skb)
1180 *
1181 * Parse all incoming parameters (easy!)
1182 *
1183 */
1184static int ircomm_tty_control_indication(void *instance, void *sap,
1185 struct sk_buff *skb)
1186{
1187 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1188 int clen;
1189
Harvey Harrison0dc47872008-03-05 20:47:47 -08001190 IRDA_DEBUG(4, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 IRDA_ASSERT(self != NULL, return -1;);
1193 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1194 IRDA_ASSERT(skb != NULL, return -1;);
1195
1196 clen = skb->data[0];
1197
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001198 irda_param_extract_all(self, skb->data+1, IRDA_MIN(skb->len-1, clen),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 &ircomm_param_info);
1200
1201 /* No need to kfree_skb - see ircomm_control_indication() */
1202
1203 return 0;
1204}
1205
1206/*
1207 * Function ircomm_tty_flow_indication (instance, sap, cmd)
1208 *
1209 * This function is called by IrTTP when it wants us to slow down the
1210 * transmission of data. We just mark the hardware as stopped, and wait
1211 * for IrTTP to notify us that things are OK again.
1212 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001213static void ircomm_tty_flow_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 LOCAL_FLOW cmd)
1215{
1216 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1217 struct tty_struct *tty;
1218
1219 IRDA_ASSERT(self != NULL, return;);
1220 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1221
Jiri Slaby62f228a2012-06-04 13:35:21 +02001222 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 switch (cmd) {
1225 case FLOW_START:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001226 IRDA_DEBUG(2, "%s(), hw start!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001227 if (tty)
1228 tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 /* ircomm_tty_do_softint will take care of the rest */
1231 schedule_work(&self->tqueue);
1232 break;
1233 default: /* If we get here, something is very wrong, better stop */
1234 case FLOW_STOP:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001235 IRDA_DEBUG(2, "%s(), hw stopped!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001236 if (tty)
1237 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 break;
1239 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001240
1241 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 self->flow = cmd;
1243}
1244
Pavel Emelyanov92b05e132007-12-05 02:18:48 -08001245#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001246static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Jiri Slaby62f228a2012-06-04 13:35:21 +02001248 struct tty_struct *tty;
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001249 char sep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001251 seq_printf(m, "State: %s\n", ircomm_tty_state[self->state]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001253 seq_puts(m, "Service type: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (self->service_type & IRCOMM_9_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001255 seq_puts(m, "9_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 else if (self->service_type & IRCOMM_3_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001257 seq_puts(m, "3_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 else if (self->service_type & IRCOMM_3_WIRE_RAW)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001259 seq_puts(m, "3_WIRE_RAW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001261 seq_puts(m, "No common service type!\n");
1262 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001264 seq_printf(m, "Port name: %s\n", self->settings.port_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001266 seq_printf(m, "DTE status:");
1267 sep = ' ';
1268 if (self->settings.dte & IRCOMM_RTS) {
1269 seq_printf(m, "%cRTS", sep);
1270 sep = '|';
1271 }
1272 if (self->settings.dte & IRCOMM_DTR) {
1273 seq_printf(m, "%cDTR", sep);
1274 sep = '|';
1275 }
1276 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001278 seq_puts(m, "DCE status:");
1279 sep = ' ';
1280 if (self->settings.dce & IRCOMM_CTS) {
1281 seq_printf(m, "%cCTS", sep);
1282 sep = '|';
1283 }
1284 if (self->settings.dce & IRCOMM_DSR) {
1285 seq_printf(m, "%cDSR", sep);
1286 sep = '|';
1287 }
1288 if (self->settings.dce & IRCOMM_CD) {
1289 seq_printf(m, "%cCD", sep);
1290 sep = '|';
1291 }
1292 if (self->settings.dce & IRCOMM_RI) {
1293 seq_printf(m, "%cRI", sep);
1294 sep = '|';
1295 }
1296 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001298 seq_puts(m, "Configuration: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (!self->settings.null_modem)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001300 seq_puts(m, "DTE <-> DCE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001302 seq_puts(m, "DTE <-> DTE (null modem emulation)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001304 seq_printf(m, "Data rate: %d\n", self->settings.data_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001306 seq_puts(m, "Flow control:");
1307 sep = ' ';
1308 if (self->settings.flow_control & IRCOMM_XON_XOFF_IN) {
1309 seq_printf(m, "%cXON_XOFF_IN", sep);
1310 sep = '|';
1311 }
1312 if (self->settings.flow_control & IRCOMM_XON_XOFF_OUT) {
1313 seq_printf(m, "%cXON_XOFF_OUT", sep);
1314 sep = '|';
1315 }
1316 if (self->settings.flow_control & IRCOMM_RTS_CTS_IN) {
1317 seq_printf(m, "%cRTS_CTS_IN", sep);
1318 sep = '|';
1319 }
1320 if (self->settings.flow_control & IRCOMM_RTS_CTS_OUT) {
1321 seq_printf(m, "%cRTS_CTS_OUT", sep);
1322 sep = '|';
1323 }
1324 if (self->settings.flow_control & IRCOMM_DSR_DTR_IN) {
1325 seq_printf(m, "%cDSR_DTR_IN", sep);
1326 sep = '|';
1327 }
1328 if (self->settings.flow_control & IRCOMM_DSR_DTR_OUT) {
1329 seq_printf(m, "%cDSR_DTR_OUT", sep);
1330 sep = '|';
1331 }
1332 if (self->settings.flow_control & IRCOMM_ENQ_ACK_IN) {
1333 seq_printf(m, "%cENQ_ACK_IN", sep);
1334 sep = '|';
1335 }
1336 if (self->settings.flow_control & IRCOMM_ENQ_ACK_OUT) {
1337 seq_printf(m, "%cENQ_ACK_OUT", sep);
1338 sep = '|';
1339 }
1340 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001342 seq_puts(m, "Flags:");
1343 sep = ' ';
Jiri Slaby849d5a92012-06-04 13:35:19 +02001344 if (self->port.flags & ASYNC_CTS_FLOW) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001345 seq_printf(m, "%cASYNC_CTS_FLOW", sep);
1346 sep = '|';
1347 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001348 if (self->port.flags & ASYNC_CHECK_CD) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001349 seq_printf(m, "%cASYNC_CHECK_CD", sep);
1350 sep = '|';
1351 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001352 if (self->port.flags & ASYNC_INITIALIZED) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001353 seq_printf(m, "%cASYNC_INITIALIZED", sep);
1354 sep = '|';
1355 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001356 if (self->port.flags & ASYNC_LOW_LATENCY) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001357 seq_printf(m, "%cASYNC_LOW_LATENCY", sep);
1358 sep = '|';
1359 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001360 if (self->port.flags & ASYNC_CLOSING) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001361 seq_printf(m, "%cASYNC_CLOSING", sep);
1362 sep = '|';
1363 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001364 if (self->port.flags & ASYNC_NORMAL_ACTIVE) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001365 seq_printf(m, "%cASYNC_NORMAL_ACTIVE", sep);
1366 sep = '|';
1367 }
1368 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001370 seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
Jiri Slaby580d27b2012-06-04 13:35:18 +02001371 seq_printf(m, "Open count: %d\n", self->port.count);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001372 seq_printf(m, "Max data size: %d\n", self->max_data_size);
1373 seq_printf(m, "Max header size: %d\n", self->max_header_size);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001374
Jiri Slaby62f228a2012-06-04 13:35:21 +02001375 tty = tty_port_tty_get(&self->port);
1376 if (tty) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001377 seq_printf(m, "Hardware: %s\n",
Jiri Slaby62f228a2012-06-04 13:35:21 +02001378 tty->hw_stopped ? "Stopped" : "Running");
1379 tty_kref_put(tty);
1380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001383static int ircomm_tty_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct ircomm_tty_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 unsigned long flags;
1387
1388 spin_lock_irqsave(&ircomm_tty->hb_spinlock, flags);
1389
1390 self = (struct ircomm_tty_cb *) hashbin_get_first(ircomm_tty);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001391 while (self != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (self->magic != IRCOMM_TTY_MAGIC)
1393 break;
1394
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001395 ircomm_tty_line_info(self, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 self = (struct ircomm_tty_cb *) hashbin_get_next(ircomm_tty);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 spin_unlock_irqrestore(&ircomm_tty->hb_spinlock, flags);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001401
1402static int ircomm_tty_proc_open(struct inode *inode, struct file *file)
1403{
1404 return single_open(file, ircomm_tty_proc_show, NULL);
1405}
1406
1407static const struct file_operations ircomm_tty_proc_fops = {
1408 .owner = THIS_MODULE,
1409 .open = ircomm_tty_proc_open,
1410 .read = seq_read,
1411 .llseek = seq_lseek,
1412 .release = single_release,
1413};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414#endif /* CONFIG_PROC_FS */
1415
1416MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
1417MODULE_DESCRIPTION("IrCOMM serial TTY driver");
1418MODULE_LICENSE("GPL");
1419MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR);
1420
1421module_init(ircomm_tty_init);
1422module_exit(ircomm_tty_cleanup);