blob: cfe352dfb4847d7d703fccf5ca4d49f43beb9f32 [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
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200107static void ircomm_port_raise_dtr_rts(struct tty_port *port, int raise)
108{
109 struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb,
110 port);
111 /*
112 * Here, we use to lock those two guys, but as ircomm_param_request()
113 * does it itself, I don't see the point (and I see the deadlock).
114 * Jean II
115 */
116 if (raise)
117 self->settings.dte |= IRCOMM_RTS | IRCOMM_DTR;
118 else
119 self->settings.dte &= ~(IRCOMM_RTS | IRCOMM_DTR);
120
121 ircomm_param_request(self, IRCOMM_DTE, TRUE);
122}
123
124static int ircomm_port_carrier_raised(struct tty_port *port)
125{
126 struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb,
127 port);
128 return self->settings.dce & IRCOMM_CD;
129}
130
131static const struct tty_port_operations ircomm_port_ops = {
132 .dtr_rts = ircomm_port_raise_dtr_rts,
133 .carrier_raised = ircomm_port_carrier_raised,
134};
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
137 * Function ircomm_tty_init()
138 *
139 * Init IrCOMM TTY layer/driver
140 *
141 */
142static int __init ircomm_tty_init(void)
143{
144 driver = alloc_tty_driver(IRCOMM_TTY_PORTS);
145 if (!driver)
146 return -ENOMEM;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900147 ircomm_tty = hashbin_new(HB_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (ircomm_tty == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800149 IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 put_tty_driver(driver);
151 return -ENOMEM;
152 }
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 driver->driver_name = "ircomm";
155 driver->name = "ircomm";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 driver->major = IRCOMM_TTY_MAJOR;
157 driver->minor_start = IRCOMM_TTY_MINOR;
158 driver->type = TTY_DRIVER_TYPE_SERIAL;
159 driver->subtype = SERIAL_TYPE_NORMAL;
160 driver->init_termios = tty_std_termios;
161 driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
162 driver->flags = TTY_DRIVER_REAL_RAW;
163 tty_set_operations(driver, &ops);
164 if (tty_register_driver(driver)) {
165 IRDA_ERROR("%s(): Couldn't register serial driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800166 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 put_tty_driver(driver);
168 return -1;
169 }
170 return 0;
171}
172
173static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
174{
Harvey Harrison0dc47872008-03-05 20:47:47 -0800175 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 IRDA_ASSERT(self != NULL, return;);
178 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
179
180 ircomm_tty_shutdown(self);
181
182 self->magic = 0;
183 kfree(self);
184}
185
186/*
187 * Function ircomm_tty_cleanup ()
188 *
189 * Remove IrCOMM TTY layer/driver
190 *
191 */
192static void __exit ircomm_tty_cleanup(void)
193{
194 int ret;
195
Harvey Harrison0dc47872008-03-05 20:47:47 -0800196 IRDA_DEBUG(4, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 ret = tty_unregister_driver(driver);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900199 if (ret) {
200 IRDA_ERROR("%s(), failed to unregister driver\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800201 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return;
203 }
204
205 hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup);
206 put_tty_driver(driver);
207}
208
209/*
210 * Function ircomm_startup (self)
211 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900212 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 *
214 */
215static int ircomm_tty_startup(struct ircomm_tty_cb *self)
216{
217 notify_t notify;
218 int ret = -ENODEV;
219
Harvey Harrison0dc47872008-03-05 20:47:47 -0800220 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 IRDA_ASSERT(self != NULL, return -1;);
223 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
224
225 /* Check if already open */
Jiri Slaby849d5a92012-06-04 13:35:19 +0200226 if (test_and_set_bit(ASYNCB_INITIALIZED, &self->port.flags)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800227 IRDA_DEBUG(2, "%s(), already open so break out!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229 }
230
231 /* Register with IrCOMM */
232 irda_notify_init(&notify);
233 /* These callbacks we must handle ourselves */
234 notify.data_indication = ircomm_tty_data_indication;
235 notify.udata_indication = ircomm_tty_control_indication;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900236 notify.flow_indication = ircomm_tty_flow_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 /* Use the ircomm_tty interface for these ones */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900239 notify.disconnect_indication = ircomm_tty_disconnect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 notify.connect_confirm = ircomm_tty_connect_confirm;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900241 notify.connect_indication = ircomm_tty_connect_indication;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 strlcpy(notify.name, "ircomm_tty", sizeof(notify.name));
243 notify.instance = self;
244
245 if (!self->ircomm) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900246 self->ircomm = ircomm_open(&notify, self->service_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 self->line);
248 }
249 if (!self->ircomm)
250 goto err;
251
252 self->slsap_sel = self->ircomm->slsap_sel;
253
254 /* Connect IrCOMM link with remote device */
255 ret = ircomm_tty_attach_cable(self);
256 if (ret < 0) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800257 IRDA_ERROR("%s(), error attaching cable!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 goto err;
259 }
260
261 return 0;
262err:
Jiri Slaby849d5a92012-06-04 13:35:19 +0200263 clear_bit(ASYNCB_INITIALIZED, &self->port.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return ret;
265}
266
267/*
268 * Function ircomm_block_til_ready (self, filp)
269 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900270 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
272 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900273static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
Jiri Slaby62f228a2012-06-04 13:35:21 +0200274 struct tty_struct *tty, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Jiri Slaby38c58032012-06-04 13:35:22 +0200276 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 DECLARE_WAITQUEUE(wait, current);
278 int retval;
279 int do_clocal = 0, extra_count = 0;
280 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900281
Harvey Harrison0dc47872008-03-05 20:47:47 -0800282 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /*
285 * If non-blocking mode is set, or the port is not enabled,
286 * then make the check up front and then exit.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900287 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
289 /* nonblock mode is set or port is not enabled */
Jiri Slaby38c58032012-06-04 13:35:22 +0200290 port->flags |= ASYNC_NORMAL_ACTIVE;
Harvey Harrison0dc47872008-03-05 20:47:47 -0800291 IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293 }
294
295 if (tty->termios->c_cflag & CLOCAL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800296 IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 do_clocal = 1;
298 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* Wait for carrier detect and the line to become
301 * free (i.e., not in use by the callout). While we are in
Jiri Slaby38c58032012-06-04 13:35:22 +0200302 * this loop, port->count is dropped by one, so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * mgsl_close() knows when to free things. We restore it upon
304 * exit, either normal or abnormal.
305 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 retval = 0;
Jiri Slaby38c58032012-06-04 13:35:22 +0200308 add_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 IRDA_DEBUG(2, "%s(%d):block_til_ready before block on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200311 __FILE__, __LINE__, tty->driver->name, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Jiri Slaby38c58032012-06-04 13:35:22 +0200313 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (!tty_hung_up_p(filp)) {
315 extra_count = 1;
Jiri Slaby38c58032012-06-04 13:35:22 +0200316 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200318 spin_unlock_irqrestore(&port->lock, flags);
319 port->blocked_open++;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 while (1) {
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200322 if (tty->termios->c_cflag & CBAUD)
323 tty_port_raise_dtr_rts(port);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 current->state = TASK_INTERRUPTIBLE;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (tty_hung_up_p(filp) ||
Jiri Slaby38c58032012-06-04 13:35:22 +0200328 !test_bit(ASYNCB_INITIALIZED, &port->flags)) {
329 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 -EAGAIN : -ERESTARTSYS;
331 break;
332 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900333
334 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * Check if link is ready now. Even if CLOCAL is
336 * specified, we cannot return before the IrCOMM link is
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900337 * ready
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
Jiri Slaby38c58032012-06-04 13:35:22 +0200339 if (!test_bit(ASYNCB_CLOSING, &port->flags) &&
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200340 (do_clocal || tty_port_carrier_raised(port)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 self->state == IRCOMM_TTY_READY)
342 {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900343 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (signal_pending(current)) {
347 retval = -ERESTARTSYS;
348 break;
349 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 IRDA_DEBUG(1, "%s(%d):block_til_ready blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200352 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 schedule();
355 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 __set_current_state(TASK_RUNNING);
Jiri Slaby38c58032012-06-04 13:35:22 +0200358 remove_wait_queue(&port->open_wait, &wait);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (extra_count) {
361 /* ++ is not atomic, so this should be protected - Jean II */
Jiri Slaby38c58032012-06-04 13:35:22 +0200362 spin_lock_irqsave(&port->lock, flags);
363 port->count++;
364 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200366 port->blocked_open--;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 IRDA_DEBUG(1, "%s(%d):block_til_ready after blocking on %s open_count=%d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200369 __FILE__, __LINE__, tty->driver->name, port->count);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!retval)
Jiri Slaby38c58032012-06-04 13:35:22 +0200372 port->flags |= ASYNC_NORMAL_ACTIVE;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900373
374 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377/*
378 * Function ircomm_tty_open (tty, filp)
379 *
380 * This routine is called when a particular tty device is opened. This
381 * routine is mandatory; if this routine is not filled in, the attempted
382 * open will fail with ENODEV.
383 */
384static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
385{
386 struct ircomm_tty_cb *self;
Jiri Slaby410235f2012-03-05 14:52:01 +0100387 unsigned int line = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 unsigned long flags;
389 int ret;
390
Harvey Harrison0dc47872008-03-05 20:47:47 -0800391 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* Check if instance already exists */
394 self = hashbin_lock_find(ircomm_tty, line, NULL);
395 if (!self) {
396 /* No, so make new instance */
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700397 self = kzalloc(sizeof(struct ircomm_tty_cb), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (self == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800399 IRDA_ERROR("%s(), kmalloc failed!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return -ENOMEM;
401 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900402
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200403 tty_port_init(&self->port);
Jiri Slaby0ba9ff82012-06-04 13:35:23 +0200404 self->port.ops = &ircomm_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 self->magic = IRCOMM_TTY_MAGIC;
406 self->flow = FLOW_STOP;
407
408 self->line = line;
David Howellsc4028952006-11-22 14:57:56 +0000409 INIT_WORK(&self->tqueue, ircomm_tty_do_softint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 self->max_header_size = IRCOMM_TTY_HDR_UNINITIALISED;
411 self->max_data_size = IRCOMM_TTY_DATA_UNINITIALISED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 /* Init some important stuff */
414 init_timer(&self->watchdog_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 spin_lock_init(&self->spinlock);
416
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900417 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * Force TTY into raw mode by default which is usually what
419 * we want for IrCOMM and IrLPT. This way applications will
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900420 * not have to twiddle with printcap etc.
Alan Coxad36b882009-01-02 13:50:20 +0000421 *
422 * Note this is completely usafe and doesn't work properly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 */
424 tty->termios->c_iflag = 0;
425 tty->termios->c_oflag = 0;
426
427 /* Insert into hash */
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200428 /* FIXME there is a window from find to here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 hashbin_insert(ircomm_tty, (irda_queue_t *) self, line, NULL);
430 }
431 /* ++ is not atomic, so this should be protected - Jean II */
Jiri Slabye6739272012-06-04 13:35:20 +0200432 spin_lock_irqsave(&self->port.lock, flags);
Jiri Slaby580d27b2012-06-04 13:35:18 +0200433 self->port.count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 tty->driver_data = self;
Jiri Slabye6739272012-06-04 13:35:20 +0200436 spin_unlock_irqrestore(&self->port.lock, flags);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200437 tty_port_tty_set(&self->port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Harvey Harrison0dc47872008-03-05 20:47:47 -0800439 IRDA_DEBUG(1, "%s(), %s%d, count = %d\n", __func__ , tty->driver->name,
Jiri Slaby580d27b2012-06-04 13:35:18 +0200440 self->line, self->port.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /* Not really used by us, but lets do it anyway */
Jiri Slaby849d5a92012-06-04 13:35:19 +0200443 tty->low_latency = (self->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 /*
446 * If the port is the middle of closing, bail out now
447 */
448 if (tty_hung_up_p(filp) ||
Jiri Slaby849d5a92012-06-04 13:35:19 +0200449 test_bit(ASYNCB_CLOSING, &self->port.flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* Hm, why are we blocking on ASYNC_CLOSING if we
452 * do return -EAGAIN/-ERESTARTSYS below anyway?
453 * IMHO it's either not needed in the first place
454 * or for some reason we need to make sure the async
455 * closing has been finished - if so, wouldn't we
456 * probably better sleep uninterruptible?
457 */
458
Jiri Slabya3cc9fc2012-06-04 13:35:16 +0200459 if (wait_event_interruptible(self->port.close_wait,
Jiri Slaby849d5a92012-06-04 13:35:19 +0200460 !test_bit(ASYNCB_CLOSING, &self->port.flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 IRDA_WARNING("%s - got signal while blocking on ASYNC_CLOSING!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800462 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -ERESTARTSYS;
464 }
465
466#ifdef SERIAL_DO_RESTART
Jiri Slaby849d5a92012-06-04 13:35:19 +0200467 return (self->port.flags & ASYNC_HUP_NOTIFY) ?
Eric Dumazeta02cec22010-09-22 20:43:57 +0000468 -EAGAIN : -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#else
470 return -EAGAIN;
471#endif
472 }
473
474 /* Check if this is a "normal" ircomm device, or an irlpt device */
475 if (line < 0x10) {
476 self->service_type = IRCOMM_3_WIRE | IRCOMM_9_WIRE;
477 self->settings.service_type = IRCOMM_9_WIRE; /* 9 wire as default */
478 /* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */
479 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI; /* Default line settings */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800480 IRDA_DEBUG(2, "%s(), IrCOMM device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 } else {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800482 IRDA_DEBUG(2, "%s(), IrLPT device\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 self->service_type = IRCOMM_3_WIRE_RAW;
484 self->settings.service_type = IRCOMM_3_WIRE_RAW; /* Default */
485 }
486
487 ret = ircomm_tty_startup(self);
488 if (ret)
489 return ret;
490
Jiri Slaby62f228a2012-06-04 13:35:21 +0200491 ret = ircomm_tty_block_til_ready(self, tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (ret) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900493 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -0800494 "%s(), returning after block_til_ready with %d\n", __func__ ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 ret);
496
497 return ret;
498 }
499 return 0;
500}
501
502/*
503 * Function ircomm_tty_close (tty, filp)
504 *
505 * This routine is called when a particular tty device is closed.
506 *
507 */
508static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
509{
510 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +0200511 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 unsigned long flags;
513
Harvey Harrison0dc47872008-03-05 20:47:47 -0800514 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 IRDA_ASSERT(self != NULL, return;);
517 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
518
Jiri Slaby38c58032012-06-04 13:35:22 +0200519 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if (tty_hung_up_p(filp)) {
Jiri Slaby38c58032012-06-04 13:35:22 +0200522 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Harvey Harrison0dc47872008-03-05 20:47:47 -0800524 IRDA_DEBUG(0, "%s(), returning 1\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return;
526 }
527
Jiri Slaby38c58032012-06-04 13:35:22 +0200528 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /*
530 * Uh, oh. tty->count is 1, which means that the tty
531 * structure will be freed. state->count should always
532 * be one in these conditions. If it's greater than
533 * one, we've got real problems, since it means the
534 * serial port won't be shutdown.
535 */
536 IRDA_DEBUG(0, "%s(), bad serial port count; "
Harvey Harrison0dc47872008-03-05 20:47:47 -0800537 "tty->count is 1, state->count is %d\n", __func__ ,
Jiri Slaby38c58032012-06-04 13:35:22 +0200538 port->count);
539 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Jiri Slaby38c58032012-06-04 13:35:22 +0200542 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 IRDA_ERROR("%s(), bad serial port count for ttys%d: %d\n",
Jiri Slaby38c58032012-06-04 13:35:22 +0200544 __func__, self->line, port->count);
545 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Jiri Slaby38c58032012-06-04 13:35:22 +0200547 if (port->count) {
548 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Harvey Harrison0dc47872008-03-05 20:47:47 -0800550 IRDA_DEBUG(0, "%s(), open count > 0\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return;
552 }
553
Jiri Slaby38c58032012-06-04 13:35:22 +0200554 set_bit(ASYNCB_CLOSING, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Jiri Slaby38c58032012-06-04 13:35:22 +0200556 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /*
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900559 * Now we wait for the transmit buffer to clear; and we notify
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * the line discipline to only process XON/XOFF characters.
561 */
562 tty->closing = 1;
Jiri Slaby38c58032012-06-04 13:35:22 +0200563 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
564 tty_wait_until_sent_from_close(tty, port->closing_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 ircomm_tty_shutdown(self);
567
Alan Coxf34d7a52008-04-30 00:54:13 -0700568 tty_driver_flush_buffer(tty);
569 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Jiri Slabya1e84402012-06-04 13:35:24 +0200571 tty_port_close_end(port, tty);
Jiri Slaby38c58032012-06-04 13:35:22 +0200572 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575/*
576 * Function ircomm_tty_flush_buffer (tty)
577 *
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900578 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 *
580 */
581static void ircomm_tty_flush_buffer(struct tty_struct *tty)
582{
583 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
584
585 IRDA_ASSERT(self != NULL, return;);
586 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
587
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900588 /*
589 * Let do_softint() do this to avoid race condition with
590 * do_softint() ;-)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
592 schedule_work(&self->tqueue);
593}
594
595/*
David Howellsc4028952006-11-22 14:57:56 +0000596 * Function ircomm_tty_do_softint (work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
598 * We use this routine to give the write wakeup to the user at at a
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900599 * safe time (as fast as possible after write have completed). This
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * can be compared to the Tx interrupt.
601 */
David Howellsc4028952006-11-22 14:57:56 +0000602static void ircomm_tty_do_softint(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
David Howellsc4028952006-11-22 14:57:56 +0000604 struct ircomm_tty_cb *self =
605 container_of(work, struct ircomm_tty_cb, tqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct tty_struct *tty;
607 unsigned long flags;
608 struct sk_buff *skb, *ctrl_skb;
609
Harvey Harrison0dc47872008-03-05 20:47:47 -0800610 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 if (!self || self->magic != IRCOMM_TTY_MAGIC)
613 return;
614
Jiri Slaby62f228a2012-06-04 13:35:21 +0200615 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (!tty)
617 return;
618
619 /* Unlink control buffer */
620 spin_lock_irqsave(&self->spinlock, flags);
621
622 ctrl_skb = self->ctrl_skb;
623 self->ctrl_skb = NULL;
624
625 spin_unlock_irqrestore(&self->spinlock, flags);
626
627 /* Flush control buffer if any */
628 if(ctrl_skb) {
629 if(self->flow == FLOW_START)
630 ircomm_control_request(self->ircomm, ctrl_skb);
631 /* Drop reference count - see ircomm_ttp_data_request(). */
632 dev_kfree_skb(ctrl_skb);
633 }
634
635 if (tty->hw_stopped)
Jiri Slaby62f228a2012-06-04 13:35:21 +0200636 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /* Unlink transmit buffer */
639 spin_lock_irqsave(&self->spinlock, flags);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 skb = self->tx_skb;
642 self->tx_skb = NULL;
643
644 spin_unlock_irqrestore(&self->spinlock, flags);
645
646 /* Flush transmit buffer if any */
647 if (skb) {
648 ircomm_tty_do_event(self, IRCOMM_TTY_DATA_REQUEST, skb, NULL);
649 /* Drop reference count - see ircomm_ttp_data_request(). */
650 dev_kfree_skb(skb);
651 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /* Check if user (still) wants to be waken up */
Alan Coxa352def2008-07-16 21:53:12 +0100654 tty_wakeup(tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +0200655put:
656 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659/*
660 * Function ircomm_tty_write (tty, buf, count)
661 *
662 * This routine is called by the kernel to write a series of characters
663 * to the tty device. The characters may come from user space or kernel
664 * space. This routine will return the number of characters actually
665 * accepted for writing. This routine is mandatory.
666 */
667static int ircomm_tty_write(struct tty_struct *tty,
668 const unsigned char *buf, int count)
669{
670 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
671 unsigned long flags;
672 struct sk_buff *skb;
673 int tailroom = 0;
674 int len = 0;
675 int size;
676
Harvey Harrison0dc47872008-03-05 20:47:47 -0800677 IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __func__ , count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 tty->hw_stopped);
679
680 IRDA_ASSERT(self != NULL, return -1;);
681 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
682
683 /* We may receive packets from the TTY even before we have finished
684 * our setup. Not cool.
685 * The problem is that we don't know the final header and data size
686 * to create the proper skb, so any skb we would create would have
687 * bogus header and data size, so need care.
688 * We use a bogus header size to safely detect this condition.
689 * Another problem is that hw_stopped was set to 0 way before it
690 * should be, so we would drop this skb. It should now be fixed.
691 * One option is to not accept data until we are properly setup.
692 * But, I suspect that when it happens, the ppp line discipline
693 * just "drops" the data, which might screw up connect scripts.
694 * The second option is to create a "safe skb", with large header
695 * and small size (see ircomm_tty_open() for values).
696 * We just need to make sure that when the real values get filled,
697 * we don't mess up the original "safe skb" (see tx_data_size).
698 * Jean II */
699 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800700 IRDA_DEBUG(1, "%s() : not initialised\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#ifdef IRCOMM_NO_TX_BEFORE_INIT
702 /* We didn't consume anything, TTY will retry */
703 return 0;
704#endif
705 }
706
707 if (count < 1)
708 return 0;
709
710 /* Protect our manipulation of self->tx_skb and related */
711 spin_lock_irqsave(&self->spinlock, flags);
712
713 /* Fetch current transmit buffer */
714 skb = self->tx_skb;
715
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900716 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * Send out all the data we get, possibly as multiple fragmented
718 * frames, but this will only happen if the data is larger than the
719 * max data size. The normal case however is just the opposite, and
720 * this function may be called multiple times, and will then actually
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900721 * defragment the data and send it out as one packet as soon as
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * possible, but at a safer point in time
723 */
724 while (count) {
725 size = count;
726
727 /* Adjust data size to the max data size */
728 if (size > self->max_data_size)
729 size = self->max_data_size;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900730
731 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 * Do we already have a buffer ready for transmit, or do
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900733 * we need to allocate a new frame
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900735 if (skb) {
736 /*
737 * Any room for more data at the end of the current
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * transmit buffer? Cannot use skb_tailroom, since
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900739 * dev_alloc_skb gives us a larger skb than we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 * requested
741 * Note : use tx_data_size, because max_data_size
742 * may have changed and we don't want to overwrite
743 * the skb. - Jean II
744 */
745 if ((tailroom = (self->tx_data_size - skb->len)) > 0) {
746 /* Adjust data to tailroom */
747 if (size > tailroom)
748 size = tailroom;
749 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900750 /*
751 * Current transmit frame is full, so break
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * out, so we can send it as soon as possible
753 */
754 break;
755 }
756 } else {
757 /* Prepare a full sized frame */
Samuel Ortiz485fb2c2006-07-21 14:50:41 -0700758 skb = alloc_skb(self->max_data_size+
759 self->max_header_size,
760 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (!skb) {
762 spin_unlock_irqrestore(&self->spinlock, flags);
763 return -ENOBUFS;
764 }
765 skb_reserve(skb, self->max_header_size);
766 self->tx_skb = skb;
767 /* Remember skb size because max_data_size may
768 * change later on - Jean II */
769 self->tx_data_size = self->max_data_size;
770 }
771
772 /* Copy data */
773 memcpy(skb_put(skb,size), buf + len, size);
774
775 count -= size;
776 len += size;
777 }
778
779 spin_unlock_irqrestore(&self->spinlock, flags);
780
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900781 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * Schedule a new thread which will transmit the frame as soon
783 * as possible, but at a safe point in time. We do this so the
784 * "user" can give us data multiple times, as PPP does (because of
785 * its 256 byte tx buffer). We will then defragment and send out
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900786 * all this data as one single packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 */
788 schedule_work(&self->tqueue);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return len;
791}
792
793/*
794 * Function ircomm_tty_write_room (tty)
795 *
796 * This routine returns the numbers of characters the tty driver will
797 * accept for queuing to be written. This number is subject to change as
798 * output buffers get emptied, or if the output flow control is acted.
799 */
800static int ircomm_tty_write_room(struct tty_struct *tty)
801{
802 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
803 unsigned long flags;
804 int ret;
805
806 IRDA_ASSERT(self != NULL, return -1;);
807 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
808
809#ifdef IRCOMM_NO_TX_BEFORE_INIT
810 /* max_header_size tells us if the channel is initialised or not. */
811 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED)
812 /* Don't bother us yet */
813 return 0;
814#endif
815
816 /* Check if we are allowed to transmit any data.
817 * hw_stopped is the regular flow control.
818 * Jean II */
819 if (tty->hw_stopped)
820 ret = 0;
821 else {
822 spin_lock_irqsave(&self->spinlock, flags);
823 if (self->tx_skb)
824 ret = self->tx_data_size - self->tx_skb->len;
825 else
826 ret = self->max_data_size;
827 spin_unlock_irqrestore(&self->spinlock, flags);
828 }
Harvey Harrison0dc47872008-03-05 20:47:47 -0800829 IRDA_DEBUG(2, "%s(), ret=%d\n", __func__ , ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 return ret;
832}
833
834/*
835 * Function ircomm_tty_wait_until_sent (tty, timeout)
836 *
837 * This routine waits until the device has written out all of the
838 * characters in its transmitter FIFO.
839 */
840static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
841{
842 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
843 unsigned long orig_jiffies, poll_time;
844 unsigned long flags;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900845
Harvey Harrison0dc47872008-03-05 20:47:47 -0800846 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 IRDA_ASSERT(self != NULL, return;);
849 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
850
851 orig_jiffies = jiffies;
852
853 /* Set poll time to 200 ms */
854 poll_time = IRDA_MIN(timeout, msecs_to_jiffies(200));
855
856 spin_lock_irqsave(&self->spinlock, flags);
857 while (self->tx_skb && self->tx_skb->len) {
858 spin_unlock_irqrestore(&self->spinlock, flags);
Nishanth Aravamudan121caf52005-09-12 14:15:34 -0700859 schedule_timeout_interruptible(poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 spin_lock_irqsave(&self->spinlock, flags);
861 if (signal_pending(current))
862 break;
863 if (timeout && time_after(jiffies, orig_jiffies + timeout))
864 break;
865 }
866 spin_unlock_irqrestore(&self->spinlock, flags);
867 current->state = TASK_RUNNING;
868}
869
870/*
871 * Function ircomm_tty_throttle (tty)
872 *
873 * This routine notifies the tty driver that input buffers for the line
874 * discipline are close to full, and it should somehow signal that no
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900875 * more characters should be sent to the tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 */
877static void ircomm_tty_throttle(struct tty_struct *tty)
878{
879 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
880
Harvey Harrison0dc47872008-03-05 20:47:47 -0800881 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 IRDA_ASSERT(self != NULL, return;);
884 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
885
886 /* Software flow control? */
887 if (I_IXOFF(tty))
888 ircomm_tty_send_xchar(tty, STOP_CHAR(tty));
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* Hardware flow control? */
891 if (tty->termios->c_cflag & CRTSCTS) {
892 self->settings.dte &= ~IRCOMM_RTS;
893 self->settings.dte |= IRCOMM_DELTA_RTS;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 ircomm_param_request(self, IRCOMM_DTE, TRUE);
896 }
897
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900898 ircomm_flow_request(self->ircomm, FLOW_STOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
901/*
902 * Function ircomm_tty_unthrottle (tty)
903 *
904 * This routine notifies the tty drivers that it should signals that
905 * characters can now be sent to the tty without fear of overrunning the
906 * input buffers of the line disciplines.
907 */
908static void ircomm_tty_unthrottle(struct tty_struct *tty)
909{
910 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
911
Harvey Harrison0dc47872008-03-05 20:47:47 -0800912 IRDA_DEBUG(2, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 IRDA_ASSERT(self != NULL, return;);
915 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
916
917 /* Using software flow control? */
918 if (I_IXOFF(tty)) {
919 ircomm_tty_send_xchar(tty, START_CHAR(tty));
920 }
921
922 /* Using hardware flow control? */
923 if (tty->termios->c_cflag & CRTSCTS) {
924 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS);
925
926 ircomm_param_request(self, IRCOMM_DTE, TRUE);
Harvey Harrison0dc47872008-03-05 20:47:47 -0800927 IRDA_DEBUG(1, "%s(), FLOW_START\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900929 ircomm_flow_request(self->ircomm, FLOW_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
932/*
933 * Function ircomm_tty_chars_in_buffer (tty)
934 *
935 * Indicates if there are any data in the buffer
936 *
937 */
938static int ircomm_tty_chars_in_buffer(struct tty_struct *tty)
939{
940 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
941 unsigned long flags;
942 int len = 0;
943
944 IRDA_ASSERT(self != NULL, return -1;);
945 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
946
947 spin_lock_irqsave(&self->spinlock, flags);
948
949 if (self->tx_skb)
950 len = self->tx_skb->len;
951
952 spin_unlock_irqrestore(&self->spinlock, flags);
953
954 return len;
955}
956
957static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
958{
959 unsigned long flags;
960
961 IRDA_ASSERT(self != NULL, return;);
962 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
963
Harvey Harrison0dc47872008-03-05 20:47:47 -0800964 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Jiri Slaby849d5a92012-06-04 13:35:19 +0200966 if (!test_and_clear_bit(ASYNCB_INITIALIZED, &self->port.flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return;
968
969 ircomm_tty_detach_cable(self);
970
971 spin_lock_irqsave(&self->spinlock, flags);
972
973 del_timer(&self->watchdog_timer);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* Free parameter buffer */
976 if (self->ctrl_skb) {
977 dev_kfree_skb(self->ctrl_skb);
978 self->ctrl_skb = NULL;
979 }
980
981 /* Free transmit buffer */
982 if (self->tx_skb) {
983 dev_kfree_skb(self->tx_skb);
984 self->tx_skb = NULL;
985 }
986
987 if (self->ircomm) {
988 ircomm_close(self->ircomm);
989 self->ircomm = NULL;
990 }
991
992 spin_unlock_irqrestore(&self->spinlock, flags);
993}
994
995/*
996 * Function ircomm_tty_hangup (tty)
997 *
998 * This routine notifies the tty driver that it should hangup the tty
999 * device.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001000 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 */
1002static void ircomm_tty_hangup(struct tty_struct *tty)
1003{
1004 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
Jiri Slaby38c58032012-06-04 13:35:22 +02001005 struct tty_port *port = &self->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 unsigned long flags;
1007
Harvey Harrison0dc47872008-03-05 20:47:47 -08001008 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 IRDA_ASSERT(self != NULL, return;);
1011 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* ircomm_tty_flush_buffer(tty); */
1014 ircomm_tty_shutdown(self);
1015
Jiri Slaby38c58032012-06-04 13:35:22 +02001016 spin_lock_irqsave(&port->lock, flags);
1017 port->flags &= ~ASYNC_NORMAL_ACTIVE;
1018 if (port->tty) {
1019 set_bit(TTY_IO_ERROR, &port->tty->flags);
1020 tty_kref_put(port->tty);
Jiri Slaby62f228a2012-06-04 13:35:21 +02001021 }
Jiri Slaby38c58032012-06-04 13:35:22 +02001022 port->tty = NULL;
1023 port->count = 0;
1024 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Jiri Slaby38c58032012-06-04 13:35:22 +02001026 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
1029/*
1030 * Function ircomm_tty_send_xchar (tty, ch)
1031 *
1032 * This routine is used to send a high-priority XON/XOFF character to
1033 * the device.
1034 */
1035static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch)
1036{
Harvey Harrison0dc47872008-03-05 20:47:47 -08001037 IRDA_DEBUG(0, "%s(), not impl\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040/*
1041 * Function ircomm_tty_start (tty)
1042 *
1043 * This routine notifies the tty driver that it resume sending
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001044 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 */
1046void ircomm_tty_start(struct tty_struct *tty)
1047{
1048 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1049
1050 ircomm_flow_request(self->ircomm, FLOW_START);
1051}
1052
1053/*
1054 * Function ircomm_tty_stop (tty)
1055 *
1056 * This routine notifies the tty driver that it should stop outputting
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001057 * characters to the tty device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001059static void ircomm_tty_stop(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1062
1063 IRDA_ASSERT(self != NULL, return;);
1064 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1065
1066 ircomm_flow_request(self->ircomm, FLOW_STOP);
1067}
1068
1069/*
1070 * Function ircomm_check_modem_status (self)
1071 *
1072 * Check for any changes in the DCE's line settings. This function should
1073 * be called whenever the dce parameter settings changes, to update the
1074 * flow control settings and other things
1075 */
1076void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
1077{
1078 struct tty_struct *tty;
1079 int status;
1080
Harvey Harrison0dc47872008-03-05 20:47:47 -08001081 IRDA_DEBUG(0, "%s()\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 IRDA_ASSERT(self != NULL, return;);
1084 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1085
Jiri Slaby62f228a2012-06-04 13:35:21 +02001086 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 status = self->settings.dce;
1089
1090 if (status & IRCOMM_DCE_DELTA_ANY) {
1091 /*wake_up_interruptible(&self->delta_msr_wait);*/
1092 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001093 if ((self->port.flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001094 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001095 "%s(), ircomm%d CD now %s...\n", __func__ , self->line,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 (status & IRCOMM_CD) ? "on" : "off");
1097
1098 if (status & IRCOMM_CD) {
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001099 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 } else {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001101 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001102 "%s(), Doing serial hangup..\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (tty)
1104 tty_hangup(tty);
1105
1106 /* Hangup will remote the tty, so better break out */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001107 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001110 if (tty && self->port.flags & ASYNC_CTS_FLOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (tty->hw_stopped) {
1112 if (status & IRCOMM_CTS) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001113 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001114 "%s(), CTS tx start...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 tty->hw_stopped = 0;
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* Wake up processes blocked on open */
Jiri Slabya3cc9fc2012-06-04 13:35:16 +02001118 wake_up_interruptible(&self->port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 schedule_work(&self->tqueue);
Jiri Slaby62f228a2012-06-04 13:35:21 +02001121 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123 } else {
1124 if (!(status & IRCOMM_CTS)) {
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001125 IRDA_DEBUG(2,
Harvey Harrison0dc47872008-03-05 20:47:47 -08001126 "%s(), CTS tx stop...\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 tty->hw_stopped = 1;
1128 }
1129 }
1130 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001131put:
1132 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
1135/*
1136 * Function ircomm_tty_data_indication (instance, sap, skb)
1137 *
1138 * Handle incoming data, and deliver it to the line discipline
1139 *
1140 */
1141static int ircomm_tty_data_indication(void *instance, void *sap,
1142 struct sk_buff *skb)
1143{
1144 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
Jiri Slaby62f228a2012-06-04 13:35:21 +02001145 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Harvey Harrison0dc47872008-03-05 20:47:47 -08001147 IRDA_DEBUG(2, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 IRDA_ASSERT(self != NULL, return -1;);
1150 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1151 IRDA_ASSERT(skb != NULL, return -1;);
1152
Jiri Slaby62f228a2012-06-04 13:35:21 +02001153 tty = tty_port_tty_get(&self->port);
1154 if (!tty) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001155 IRDA_DEBUG(0, "%s(), no tty!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return 0;
1157 }
1158
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001159 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 * If we receive data when hardware is stopped then something is wrong.
1161 * We try to poll the peers line settings to check if we are up todate.
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001162 * Devices like WinCE can do this, and since they don't send any
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 * params, we can just as well declare the hardware for running.
1164 */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001165 if (tty->hw_stopped && (self->flow == FLOW_START)) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001166 IRDA_DEBUG(0, "%s(), polling for line settings!\n", __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 ircomm_param_request(self, IRCOMM_POLL, TRUE);
1168
1169 /* We can just as well declare the hardware for running */
1170 ircomm_tty_send_initial_parameters(self);
1171 ircomm_tty_link_established(self);
1172 }
1173
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001174 /*
Amit Virdicbfd1522011-05-12 01:04:40 +00001175 * Use flip buffer functions since the code may be called from interrupt
1176 * context
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
Jiri Slaby62f228a2012-06-04 13:35:21 +02001178 tty_insert_flip_string(tty, skb->data, skb->len);
1179 tty_flip_buffer_push(tty);
1180 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /* No need to kfree_skb - see ircomm_ttp_data_indication() */
1183
1184 return 0;
1185}
1186
1187/*
1188 * Function ircomm_tty_control_indication (instance, sap, skb)
1189 *
1190 * Parse all incoming parameters (easy!)
1191 *
1192 */
1193static int ircomm_tty_control_indication(void *instance, void *sap,
1194 struct sk_buff *skb)
1195{
1196 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1197 int clen;
1198
Harvey Harrison0dc47872008-03-05 20:47:47 -08001199 IRDA_DEBUG(4, "%s()\n", __func__ );
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 IRDA_ASSERT(self != NULL, return -1;);
1202 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1203 IRDA_ASSERT(skb != NULL, return -1;);
1204
1205 clen = skb->data[0];
1206
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001207 irda_param_extract_all(self, skb->data+1, IRDA_MIN(skb->len-1, clen),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 &ircomm_param_info);
1209
1210 /* No need to kfree_skb - see ircomm_control_indication() */
1211
1212 return 0;
1213}
1214
1215/*
1216 * Function ircomm_tty_flow_indication (instance, sap, cmd)
1217 *
1218 * This function is called by IrTTP when it wants us to slow down the
1219 * transmission of data. We just mark the hardware as stopped, and wait
1220 * for IrTTP to notify us that things are OK again.
1221 */
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001222static void ircomm_tty_flow_indication(void *instance, void *sap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 LOCAL_FLOW cmd)
1224{
1225 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1226 struct tty_struct *tty;
1227
1228 IRDA_ASSERT(self != NULL, return;);
1229 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1230
Jiri Slaby62f228a2012-06-04 13:35:21 +02001231 tty = tty_port_tty_get(&self->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 switch (cmd) {
1234 case FLOW_START:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001235 IRDA_DEBUG(2, "%s(), hw start!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001236 if (tty)
1237 tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /* ircomm_tty_do_softint will take care of the rest */
1240 schedule_work(&self->tqueue);
1241 break;
1242 default: /* If we get here, something is very wrong, better stop */
1243 case FLOW_STOP:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001244 IRDA_DEBUG(2, "%s(), hw stopped!\n", __func__ );
Jiri Slaby62f228a2012-06-04 13:35:21 +02001245 if (tty)
1246 tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 break;
1248 }
Jiri Slaby62f228a2012-06-04 13:35:21 +02001249
1250 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 self->flow = cmd;
1252}
1253
Pavel Emelyanov92b05e132007-12-05 02:18:48 -08001254#ifdef CONFIG_PROC_FS
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001255static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Jiri Slaby62f228a2012-06-04 13:35:21 +02001257 struct tty_struct *tty;
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001258 char sep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001260 seq_printf(m, "State: %s\n", ircomm_tty_state[self->state]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001262 seq_puts(m, "Service type: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (self->service_type & IRCOMM_9_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001264 seq_puts(m, "9_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 else if (self->service_type & IRCOMM_3_WIRE)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001266 seq_puts(m, "3_WIRE");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 else if (self->service_type & IRCOMM_3_WIRE_RAW)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001268 seq_puts(m, "3_WIRE_RAW");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001270 seq_puts(m, "No common service type!\n");
1271 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001273 seq_printf(m, "Port name: %s\n", self->settings.port_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001275 seq_printf(m, "DTE status:");
1276 sep = ' ';
1277 if (self->settings.dte & IRCOMM_RTS) {
1278 seq_printf(m, "%cRTS", sep);
1279 sep = '|';
1280 }
1281 if (self->settings.dte & IRCOMM_DTR) {
1282 seq_printf(m, "%cDTR", sep);
1283 sep = '|';
1284 }
1285 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001287 seq_puts(m, "DCE status:");
1288 sep = ' ';
1289 if (self->settings.dce & IRCOMM_CTS) {
1290 seq_printf(m, "%cCTS", sep);
1291 sep = '|';
1292 }
1293 if (self->settings.dce & IRCOMM_DSR) {
1294 seq_printf(m, "%cDSR", sep);
1295 sep = '|';
1296 }
1297 if (self->settings.dce & IRCOMM_CD) {
1298 seq_printf(m, "%cCD", sep);
1299 sep = '|';
1300 }
1301 if (self->settings.dce & IRCOMM_RI) {
1302 seq_printf(m, "%cRI", sep);
1303 sep = '|';
1304 }
1305 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001307 seq_puts(m, "Configuration: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (!self->settings.null_modem)
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001309 seq_puts(m, "DTE <-> DCE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 else
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001311 seq_puts(m, "DTE <-> DTE (null modem emulation)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001313 seq_printf(m, "Data rate: %d\n", self->settings.data_rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001315 seq_puts(m, "Flow control:");
1316 sep = ' ';
1317 if (self->settings.flow_control & IRCOMM_XON_XOFF_IN) {
1318 seq_printf(m, "%cXON_XOFF_IN", sep);
1319 sep = '|';
1320 }
1321 if (self->settings.flow_control & IRCOMM_XON_XOFF_OUT) {
1322 seq_printf(m, "%cXON_XOFF_OUT", sep);
1323 sep = '|';
1324 }
1325 if (self->settings.flow_control & IRCOMM_RTS_CTS_IN) {
1326 seq_printf(m, "%cRTS_CTS_IN", sep);
1327 sep = '|';
1328 }
1329 if (self->settings.flow_control & IRCOMM_RTS_CTS_OUT) {
1330 seq_printf(m, "%cRTS_CTS_OUT", sep);
1331 sep = '|';
1332 }
1333 if (self->settings.flow_control & IRCOMM_DSR_DTR_IN) {
1334 seq_printf(m, "%cDSR_DTR_IN", sep);
1335 sep = '|';
1336 }
1337 if (self->settings.flow_control & IRCOMM_DSR_DTR_OUT) {
1338 seq_printf(m, "%cDSR_DTR_OUT", sep);
1339 sep = '|';
1340 }
1341 if (self->settings.flow_control & IRCOMM_ENQ_ACK_IN) {
1342 seq_printf(m, "%cENQ_ACK_IN", sep);
1343 sep = '|';
1344 }
1345 if (self->settings.flow_control & IRCOMM_ENQ_ACK_OUT) {
1346 seq_printf(m, "%cENQ_ACK_OUT", sep);
1347 sep = '|';
1348 }
1349 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001351 seq_puts(m, "Flags:");
1352 sep = ' ';
Jiri Slaby849d5a92012-06-04 13:35:19 +02001353 if (self->port.flags & ASYNC_CTS_FLOW) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001354 seq_printf(m, "%cASYNC_CTS_FLOW", sep);
1355 sep = '|';
1356 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001357 if (self->port.flags & ASYNC_CHECK_CD) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001358 seq_printf(m, "%cASYNC_CHECK_CD", sep);
1359 sep = '|';
1360 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001361 if (self->port.flags & ASYNC_INITIALIZED) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001362 seq_printf(m, "%cASYNC_INITIALIZED", sep);
1363 sep = '|';
1364 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001365 if (self->port.flags & ASYNC_LOW_LATENCY) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001366 seq_printf(m, "%cASYNC_LOW_LATENCY", sep);
1367 sep = '|';
1368 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001369 if (self->port.flags & ASYNC_CLOSING) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001370 seq_printf(m, "%cASYNC_CLOSING", sep);
1371 sep = '|';
1372 }
Jiri Slaby849d5a92012-06-04 13:35:19 +02001373 if (self->port.flags & ASYNC_NORMAL_ACTIVE) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001374 seq_printf(m, "%cASYNC_NORMAL_ACTIVE", sep);
1375 sep = '|';
1376 }
1377 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001379 seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
Jiri Slaby580d27b2012-06-04 13:35:18 +02001380 seq_printf(m, "Open count: %d\n", self->port.count);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001381 seq_printf(m, "Max data size: %d\n", self->max_data_size);
1382 seq_printf(m, "Max header size: %d\n", self->max_header_size);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001383
Jiri Slaby62f228a2012-06-04 13:35:21 +02001384 tty = tty_port_tty_get(&self->port);
1385 if (tty) {
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001386 seq_printf(m, "Hardware: %s\n",
Jiri Slaby62f228a2012-06-04 13:35:21 +02001387 tty->hw_stopped ? "Stopped" : "Running");
1388 tty_kref_put(tty);
1389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001392static int ircomm_tty_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct ircomm_tty_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 unsigned long flags;
1396
1397 spin_lock_irqsave(&ircomm_tty->hb_spinlock, flags);
1398
1399 self = (struct ircomm_tty_cb *) hashbin_get_first(ircomm_tty);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001400 while (self != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (self->magic != IRCOMM_TTY_MAGIC)
1402 break;
1403
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001404 ircomm_tty_line_info(self, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 self = (struct ircomm_tty_cb *) hashbin_get_next(ircomm_tty);
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 spin_unlock_irqrestore(&ircomm_tty->hb_spinlock, flags);
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
Alexey Dobriyan3d304172009-03-31 15:19:22 -07001410
1411static int ircomm_tty_proc_open(struct inode *inode, struct file *file)
1412{
1413 return single_open(file, ircomm_tty_proc_show, NULL);
1414}
1415
1416static const struct file_operations ircomm_tty_proc_fops = {
1417 .owner = THIS_MODULE,
1418 .open = ircomm_tty_proc_open,
1419 .read = seq_read,
1420 .llseek = seq_lseek,
1421 .release = single_release,
1422};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423#endif /* CONFIG_PROC_FS */
1424
1425MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
1426MODULE_DESCRIPTION("IrCOMM serial TTY driver");
1427MODULE_LICENSE("GPL");
1428MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR);
1429
1430module_init(ircomm_tty_init);
1431module_exit(ircomm_tty_cleanup);