1 /*********************************************************************
3 * Filename: ircomm_tty.c
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
13 * Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
14 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
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
19 * the License, or (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
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,
31 ********************************************************************/
33 #include <linux/init.h>
34 #include <linux/module.h>
36 #include <linux/sched.h>
37 #include <linux/seq_file.h>
38 #include <linux/termios.h>
39 #include <linux/tty.h>
40 #include <linux/interrupt.h>
41 #include <linux/device.h> /* for MODULE_ALIAS_CHARDEV_MAJOR */
43 #include <asm/uaccess.h>
45 #include <net/irda/irda.h>
46 #include <net/irda/irmod.h>
48 #include <net/irda/ircomm_core.h>
49 #include <net/irda/ircomm_param.h>
50 #include <net/irda/ircomm_tty_attach.h>
51 #include <net/irda/ircomm_tty.h>
53 static int ircomm_tty_open(struct tty_struct
*tty
, struct file
*filp
);
54 static void ircomm_tty_close(struct tty_struct
* tty
, struct file
*filp
);
55 static int ircomm_tty_write(struct tty_struct
* tty
,
56 const unsigned char *buf
, int count
);
57 static int ircomm_tty_write_room(struct tty_struct
*tty
);
58 static void ircomm_tty_throttle(struct tty_struct
*tty
);
59 static void ircomm_tty_unthrottle(struct tty_struct
*tty
);
60 static int ircomm_tty_chars_in_buffer(struct tty_struct
*tty
);
61 static void ircomm_tty_flush_buffer(struct tty_struct
*tty
);
62 static void ircomm_tty_send_xchar(struct tty_struct
*tty
, char ch
);
63 static void ircomm_tty_wait_until_sent(struct tty_struct
*tty
, int timeout
);
64 static void ircomm_tty_hangup(struct tty_struct
*tty
);
65 static void ircomm_tty_do_softint(struct work_struct
*work
);
66 static void ircomm_tty_shutdown(struct ircomm_tty_cb
*self
);
67 static void ircomm_tty_stop(struct tty_struct
*tty
);
69 static int ircomm_tty_data_indication(void *instance
, void *sap
,
71 static int ircomm_tty_control_indication(void *instance
, void *sap
,
73 static void ircomm_tty_flow_indication(void *instance
, void *sap
,
76 static const struct file_operations ircomm_tty_proc_fops
;
77 #endif /* CONFIG_PROC_FS */
78 static struct tty_driver
*driver
;
80 static hashbin_t
*ircomm_tty
= NULL
;
82 static const struct tty_operations ops
= {
83 .open
= ircomm_tty_open
,
84 .close
= ircomm_tty_close
,
85 .write
= ircomm_tty_write
,
86 .write_room
= ircomm_tty_write_room
,
87 .chars_in_buffer
= ircomm_tty_chars_in_buffer
,
88 .flush_buffer
= ircomm_tty_flush_buffer
,
89 .ioctl
= ircomm_tty_ioctl
, /* ircomm_tty_ioctl.c */
90 .tiocmget
= ircomm_tty_tiocmget
, /* ircomm_tty_ioctl.c */
91 .tiocmset
= ircomm_tty_tiocmset
, /* ircomm_tty_ioctl.c */
92 .throttle
= ircomm_tty_throttle
,
93 .unthrottle
= ircomm_tty_unthrottle
,
94 .send_xchar
= ircomm_tty_send_xchar
,
95 .set_termios
= ircomm_tty_set_termios
,
96 .stop
= ircomm_tty_stop
,
97 .start
= ircomm_tty_start
,
98 .hangup
= ircomm_tty_hangup
,
99 .wait_until_sent
= ircomm_tty_wait_until_sent
,
100 #ifdef CONFIG_PROC_FS
101 .proc_fops
= &ircomm_tty_proc_fops
,
102 #endif /* CONFIG_PROC_FS */
106 * Function ircomm_tty_init()
108 * Init IrCOMM TTY layer/driver
111 static int __init
ircomm_tty_init(void)
113 driver
= alloc_tty_driver(IRCOMM_TTY_PORTS
);
116 ircomm_tty
= hashbin_new(HB_LOCK
);
117 if (ircomm_tty
== NULL
) {
118 IRDA_ERROR("%s(), can't allocate hashbin!\n", __func__
);
119 put_tty_driver(driver
);
123 driver
->owner
= THIS_MODULE
;
124 driver
->driver_name
= "ircomm";
125 driver
->name
= "ircomm";
126 driver
->major
= IRCOMM_TTY_MAJOR
;
127 driver
->minor_start
= IRCOMM_TTY_MINOR
;
128 driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
129 driver
->subtype
= SERIAL_TYPE_NORMAL
;
130 driver
->init_termios
= tty_std_termios
;
131 driver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
132 driver
->flags
= TTY_DRIVER_REAL_RAW
;
133 tty_set_operations(driver
, &ops
);
134 if (tty_register_driver(driver
)) {
135 IRDA_ERROR("%s(): Couldn't register serial driver\n",
137 put_tty_driver(driver
);
143 static void __exit
__ircomm_tty_cleanup(struct ircomm_tty_cb
*self
)
145 IRDA_DEBUG(0, "%s()\n", __func__
);
147 IRDA_ASSERT(self
!= NULL
, return;);
148 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
150 ircomm_tty_shutdown(self
);
157 * Function ircomm_tty_cleanup ()
159 * Remove IrCOMM TTY layer/driver
162 static void __exit
ircomm_tty_cleanup(void)
166 IRDA_DEBUG(4, "%s()\n", __func__
);
168 ret
= tty_unregister_driver(driver
);
170 IRDA_ERROR("%s(), failed to unregister driver\n",
175 hashbin_delete(ircomm_tty
, (FREE_FUNC
) __ircomm_tty_cleanup
);
176 put_tty_driver(driver
);
180 * Function ircomm_startup (self)
185 static int ircomm_tty_startup(struct ircomm_tty_cb
*self
)
190 IRDA_DEBUG(2, "%s()\n", __func__
);
192 IRDA_ASSERT(self
!= NULL
, return -1;);
193 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return -1;);
195 /* Check if already open */
196 if (test_and_set_bit(ASYNC_B_INITIALIZED
, &self
->flags
)) {
197 IRDA_DEBUG(2, "%s(), already open so break out!\n", __func__
);
201 /* Register with IrCOMM */
202 irda_notify_init(¬ify
);
203 /* These callbacks we must handle ourselves */
204 notify
.data_indication
= ircomm_tty_data_indication
;
205 notify
.udata_indication
= ircomm_tty_control_indication
;
206 notify
.flow_indication
= ircomm_tty_flow_indication
;
208 /* Use the ircomm_tty interface for these ones */
209 notify
.disconnect_indication
= ircomm_tty_disconnect_indication
;
210 notify
.connect_confirm
= ircomm_tty_connect_confirm
;
211 notify
.connect_indication
= ircomm_tty_connect_indication
;
212 strlcpy(notify
.name
, "ircomm_tty", sizeof(notify
.name
));
213 notify
.instance
= self
;
216 self
->ircomm
= ircomm_open(¬ify
, self
->service_type
,
222 self
->slsap_sel
= self
->ircomm
->slsap_sel
;
224 /* Connect IrCOMM link with remote device */
225 ret
= ircomm_tty_attach_cable(self
);
227 IRDA_ERROR("%s(), error attaching cable!\n", __func__
);
233 clear_bit(ASYNC_B_INITIALIZED
, &self
->flags
);
238 * Function ircomm_block_til_ready (self, filp)
243 static int ircomm_tty_block_til_ready(struct ircomm_tty_cb
*self
,
246 DECLARE_WAITQUEUE(wait
, current
);
248 int do_clocal
= 0, extra_count
= 0;
250 struct tty_struct
*tty
;
252 IRDA_DEBUG(2, "%s()\n", __func__
);
257 * If non-blocking mode is set, or the port is not enabled,
258 * then make the check up front and then exit.
260 if (filp
->f_flags
& O_NONBLOCK
|| tty
->flags
& (1 << TTY_IO_ERROR
)){
261 /* nonblock mode is set or port is not enabled */
262 self
->flags
|= ASYNC_NORMAL_ACTIVE
;
263 IRDA_DEBUG(1, "%s(), O_NONBLOCK requested!\n", __func__
);
267 if (tty
->termios
->c_cflag
& CLOCAL
) {
268 IRDA_DEBUG(1, "%s(), doing CLOCAL!\n", __func__
);
272 /* Wait for carrier detect and the line to become
273 * free (i.e., not in use by the callout). While we are in
274 * this loop, self->open_count is dropped by one, so that
275 * mgsl_close() knows when to free things. We restore it upon
276 * exit, either normal or abnormal.
280 add_wait_queue(&self
->open_wait
, &wait
);
282 IRDA_DEBUG(2, "%s(%d):block_til_ready before block on %s open_count=%d\n",
283 __FILE__
,__LINE__
, tty
->driver
->name
, self
->open_count
);
285 /* As far as I can see, we protect open_count - Jean II */
286 spin_lock_irqsave(&self
->spinlock
, flags
);
287 if (!tty_hung_up_p(filp
)) {
291 spin_unlock_irqrestore(&self
->spinlock
, flags
);
292 self
->blocked_open
++;
295 if (tty
->termios
->c_cflag
& CBAUD
) {
296 /* Here, we use to lock those two guys, but
297 * as ircomm_param_request() does it itself,
298 * I don't see the point (and I see the deadlock).
300 self
->settings
.dte
|= IRCOMM_RTS
+ IRCOMM_DTR
;
302 ircomm_param_request(self
, IRCOMM_DTE
, TRUE
);
305 current
->state
= TASK_INTERRUPTIBLE
;
307 if (tty_hung_up_p(filp
) ||
308 !test_bit(ASYNC_B_INITIALIZED
, &self
->flags
)) {
309 retval
= (self
->flags
& ASYNC_HUP_NOTIFY
) ?
310 -EAGAIN
: -ERESTARTSYS
;
315 * Check if link is ready now. Even if CLOCAL is
316 * specified, we cannot return before the IrCOMM link is
319 if (!test_bit(ASYNC_B_CLOSING
, &self
->flags
) &&
320 (do_clocal
|| (self
->settings
.dce
& IRCOMM_CD
)) &&
321 self
->state
== IRCOMM_TTY_READY
)
326 if (signal_pending(current
)) {
327 retval
= -ERESTARTSYS
;
331 IRDA_DEBUG(1, "%s(%d):block_til_ready blocking on %s open_count=%d\n",
332 __FILE__
,__LINE__
, tty
->driver
->name
, self
->open_count
);
337 __set_current_state(TASK_RUNNING
);
338 remove_wait_queue(&self
->open_wait
, &wait
);
341 /* ++ is not atomic, so this should be protected - Jean II */
342 spin_lock_irqsave(&self
->spinlock
, flags
);
344 spin_unlock_irqrestore(&self
->spinlock
, flags
);
346 self
->blocked_open
--;
348 IRDA_DEBUG(1, "%s(%d):block_til_ready after blocking on %s open_count=%d\n",
349 __FILE__
,__LINE__
, tty
->driver
->name
, self
->open_count
);
352 self
->flags
|= ASYNC_NORMAL_ACTIVE
;
358 * Function ircomm_tty_open (tty, filp)
360 * This routine is called when a particular tty device is opened. This
361 * routine is mandatory; if this routine is not filled in, the attempted
362 * open will fail with ENODEV.
364 static int ircomm_tty_open(struct tty_struct
*tty
, struct file
*filp
)
366 struct ircomm_tty_cb
*self
;
371 IRDA_DEBUG(2, "%s()\n", __func__
);
374 if (line
>= IRCOMM_TTY_PORTS
)
377 /* Check if instance already exists */
378 self
= hashbin_lock_find(ircomm_tty
, line
, NULL
);
380 /* No, so make new instance */
381 self
= kzalloc(sizeof(struct ircomm_tty_cb
), GFP_KERNEL
);
383 IRDA_ERROR("%s(), kmalloc failed!\n", __func__
);
387 self
->magic
= IRCOMM_TTY_MAGIC
;
388 self
->flow
= FLOW_STOP
;
391 INIT_WORK(&self
->tqueue
, ircomm_tty_do_softint
);
392 self
->max_header_size
= IRCOMM_TTY_HDR_UNINITIALISED
;
393 self
->max_data_size
= IRCOMM_TTY_DATA_UNINITIALISED
;
394 self
->close_delay
= 5*HZ
/10;
395 self
->closing_wait
= 30*HZ
;
397 /* Init some important stuff */
398 init_timer(&self
->watchdog_timer
);
399 init_waitqueue_head(&self
->open_wait
);
400 init_waitqueue_head(&self
->close_wait
);
401 spin_lock_init(&self
->spinlock
);
404 * Force TTY into raw mode by default which is usually what
405 * we want for IrCOMM and IrLPT. This way applications will
406 * not have to twiddle with printcap etc.
408 * Note this is completely usafe and doesn't work properly
410 tty
->termios
->c_iflag
= 0;
411 tty
->termios
->c_oflag
= 0;
413 /* Insert into hash */
414 hashbin_insert(ircomm_tty
, (irda_queue_t
*) self
, line
, NULL
);
416 /* ++ is not atomic, so this should be protected - Jean II */
417 spin_lock_irqsave(&self
->spinlock
, flags
);
420 tty
->driver_data
= self
;
422 spin_unlock_irqrestore(&self
->spinlock
, flags
);
424 IRDA_DEBUG(1, "%s(), %s%d, count = %d\n", __func__
, tty
->driver
->name
,
425 self
->line
, self
->open_count
);
427 /* Not really used by us, but lets do it anyway */
428 self
->tty
->low_latency
= (self
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
431 * If the port is the middle of closing, bail out now
433 if (tty_hung_up_p(filp
) ||
434 test_bit(ASYNC_B_CLOSING
, &self
->flags
)) {
436 /* Hm, why are we blocking on ASYNC_CLOSING if we
437 * do return -EAGAIN/-ERESTARTSYS below anyway?
438 * IMHO it's either not needed in the first place
439 * or for some reason we need to make sure the async
440 * closing has been finished - if so, wouldn't we
441 * probably better sleep uninterruptible?
444 if (wait_event_interruptible(self
->close_wait
, !test_bit(ASYNC_B_CLOSING
, &self
->flags
))) {
445 IRDA_WARNING("%s - got signal while blocking on ASYNC_CLOSING!\n",
450 #ifdef SERIAL_DO_RESTART
451 return ((self
->flags
& ASYNC_HUP_NOTIFY
) ?
452 -EAGAIN
: -ERESTARTSYS
);
458 /* Check if this is a "normal" ircomm device, or an irlpt device */
460 self
->service_type
= IRCOMM_3_WIRE
| IRCOMM_9_WIRE
;
461 self
->settings
.service_type
= IRCOMM_9_WIRE
; /* 9 wire as default */
462 /* Jan Kiszka -> add DSR/RI -> Conform to IrCOMM spec */
463 self
->settings
.dce
= IRCOMM_CTS
| IRCOMM_CD
| IRCOMM_DSR
| IRCOMM_RI
; /* Default line settings */
464 IRDA_DEBUG(2, "%s(), IrCOMM device\n", __func__
);
466 IRDA_DEBUG(2, "%s(), IrLPT device\n", __func__
);
467 self
->service_type
= IRCOMM_3_WIRE_RAW
;
468 self
->settings
.service_type
= IRCOMM_3_WIRE_RAW
; /* Default */
471 ret
= ircomm_tty_startup(self
);
475 ret
= ircomm_tty_block_til_ready(self
, filp
);
478 "%s(), returning after block_til_ready with %d\n", __func__
,
487 * Function ircomm_tty_close (tty, filp)
489 * This routine is called when a particular tty device is closed.
492 static void ircomm_tty_close(struct tty_struct
*tty
, struct file
*filp
)
494 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
497 IRDA_DEBUG(0, "%s()\n", __func__
);
499 IRDA_ASSERT(self
!= NULL
, return;);
500 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
502 spin_lock_irqsave(&self
->spinlock
, flags
);
504 if (tty_hung_up_p(filp
)) {
505 spin_unlock_irqrestore(&self
->spinlock
, flags
);
507 IRDA_DEBUG(0, "%s(), returning 1\n", __func__
);
511 if ((tty
->count
== 1) && (self
->open_count
!= 1)) {
513 * Uh, oh. tty->count is 1, which means that the tty
514 * structure will be freed. state->count should always
515 * be one in these conditions. If it's greater than
516 * one, we've got real problems, since it means the
517 * serial port won't be shutdown.
519 IRDA_DEBUG(0, "%s(), bad serial port count; "
520 "tty->count is 1, state->count is %d\n", __func__
,
522 self
->open_count
= 1;
525 if (--self
->open_count
< 0) {
526 IRDA_ERROR("%s(), bad serial port count for ttys%d: %d\n",
527 __func__
, self
->line
, self
->open_count
);
528 self
->open_count
= 0;
530 if (self
->open_count
) {
531 spin_unlock_irqrestore(&self
->spinlock
, flags
);
533 IRDA_DEBUG(0, "%s(), open count > 0\n", __func__
);
537 /* Hum... Should be test_and_set_bit ??? - Jean II */
538 set_bit(ASYNC_B_CLOSING
, &self
->flags
);
540 /* We need to unlock here (we were unlocking at the end of this
541 * function), because tty_wait_until_sent() may schedule.
542 * I don't know if the rest should be protected somehow,
543 * so someone should check. - Jean II */
544 spin_unlock_irqrestore(&self
->spinlock
, flags
);
547 * Now we wait for the transmit buffer to clear; and we notify
548 * the line discipline to only process XON/XOFF characters.
551 if (self
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
)
552 tty_wait_until_sent(tty
, self
->closing_wait
);
554 ircomm_tty_shutdown(self
);
556 tty_driver_flush_buffer(tty
);
557 tty_ldisc_flush(tty
);
562 if (self
->blocked_open
) {
563 if (self
->close_delay
)
564 schedule_timeout_interruptible(self
->close_delay
);
565 wake_up_interruptible(&self
->open_wait
);
568 self
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
569 wake_up_interruptible(&self
->close_wait
);
573 * Function ircomm_tty_flush_buffer (tty)
578 static void ircomm_tty_flush_buffer(struct tty_struct
*tty
)
580 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
582 IRDA_ASSERT(self
!= NULL
, return;);
583 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
586 * Let do_softint() do this to avoid race condition with
589 schedule_work(&self
->tqueue
);
593 * Function ircomm_tty_do_softint (work)
595 * We use this routine to give the write wakeup to the user at at a
596 * safe time (as fast as possible after write have completed). This
597 * can be compared to the Tx interrupt.
599 static void ircomm_tty_do_softint(struct work_struct
*work
)
601 struct ircomm_tty_cb
*self
=
602 container_of(work
, struct ircomm_tty_cb
, tqueue
);
603 struct tty_struct
*tty
;
605 struct sk_buff
*skb
, *ctrl_skb
;
607 IRDA_DEBUG(2, "%s()\n", __func__
);
609 if (!self
|| self
->magic
!= IRCOMM_TTY_MAGIC
)
616 /* Unlink control buffer */
617 spin_lock_irqsave(&self
->spinlock
, flags
);
619 ctrl_skb
= self
->ctrl_skb
;
620 self
->ctrl_skb
= NULL
;
622 spin_unlock_irqrestore(&self
->spinlock
, flags
);
624 /* Flush control buffer if any */
626 if(self
->flow
== FLOW_START
)
627 ircomm_control_request(self
->ircomm
, ctrl_skb
);
628 /* Drop reference count - see ircomm_ttp_data_request(). */
629 dev_kfree_skb(ctrl_skb
);
635 /* Unlink transmit buffer */
636 spin_lock_irqsave(&self
->spinlock
, flags
);
641 spin_unlock_irqrestore(&self
->spinlock
, flags
);
643 /* Flush transmit buffer if any */
645 ircomm_tty_do_event(self
, IRCOMM_TTY_DATA_REQUEST
, skb
, NULL
);
646 /* Drop reference count - see ircomm_ttp_data_request(). */
650 /* Check if user (still) wants to be waken up */
655 * Function ircomm_tty_write (tty, buf, count)
657 * This routine is called by the kernel to write a series of characters
658 * to the tty device. The characters may come from user space or kernel
659 * space. This routine will return the number of characters actually
660 * accepted for writing. This routine is mandatory.
662 static int ircomm_tty_write(struct tty_struct
*tty
,
663 const unsigned char *buf
, int count
)
665 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
672 IRDA_DEBUG(2, "%s(), count=%d, hw_stopped=%d\n", __func__
, count
,
675 IRDA_ASSERT(self
!= NULL
, return -1;);
676 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return -1;);
678 /* We may receive packets from the TTY even before we have finished
679 * our setup. Not cool.
680 * The problem is that we don't know the final header and data size
681 * to create the proper skb, so any skb we would create would have
682 * bogus header and data size, so need care.
683 * We use a bogus header size to safely detect this condition.
684 * Another problem is that hw_stopped was set to 0 way before it
685 * should be, so we would drop this skb. It should now be fixed.
686 * One option is to not accept data until we are properly setup.
687 * But, I suspect that when it happens, the ppp line discipline
688 * just "drops" the data, which might screw up connect scripts.
689 * The second option is to create a "safe skb", with large header
690 * and small size (see ircomm_tty_open() for values).
691 * We just need to make sure that when the real values get filled,
692 * we don't mess up the original "safe skb" (see tx_data_size).
694 if (self
->max_header_size
== IRCOMM_TTY_HDR_UNINITIALISED
) {
695 IRDA_DEBUG(1, "%s() : not initialised\n", __func__
);
696 #ifdef IRCOMM_NO_TX_BEFORE_INIT
697 /* We didn't consume anything, TTY will retry */
705 /* Protect our manipulation of self->tx_skb and related */
706 spin_lock_irqsave(&self
->spinlock
, flags
);
708 /* Fetch current transmit buffer */
712 * Send out all the data we get, possibly as multiple fragmented
713 * frames, but this will only happen if the data is larger than the
714 * max data size. The normal case however is just the opposite, and
715 * this function may be called multiple times, and will then actually
716 * defragment the data and send it out as one packet as soon as
717 * possible, but at a safer point in time
722 /* Adjust data size to the max data size */
723 if (size
> self
->max_data_size
)
724 size
= self
->max_data_size
;
727 * Do we already have a buffer ready for transmit, or do
728 * we need to allocate a new frame
732 * Any room for more data at the end of the current
733 * transmit buffer? Cannot use skb_tailroom, since
734 * dev_alloc_skb gives us a larger skb than we
736 * Note : use tx_data_size, because max_data_size
737 * may have changed and we don't want to overwrite
740 if ((tailroom
= (self
->tx_data_size
- skb
->len
)) > 0) {
741 /* Adjust data to tailroom */
746 * Current transmit frame is full, so break
747 * out, so we can send it as soon as possible
752 /* Prepare a full sized frame */
753 skb
= alloc_skb(self
->max_data_size
+
754 self
->max_header_size
,
757 spin_unlock_irqrestore(&self
->spinlock
, flags
);
760 skb_reserve(skb
, self
->max_header_size
);
762 /* Remember skb size because max_data_size may
763 * change later on - Jean II */
764 self
->tx_data_size
= self
->max_data_size
;
768 memcpy(skb_put(skb
,size
), buf
+ len
, size
);
774 spin_unlock_irqrestore(&self
->spinlock
, flags
);
777 * Schedule a new thread which will transmit the frame as soon
778 * as possible, but at a safe point in time. We do this so the
779 * "user" can give us data multiple times, as PPP does (because of
780 * its 256 byte tx buffer). We will then defragment and send out
781 * all this data as one single packet.
783 schedule_work(&self
->tqueue
);
789 * Function ircomm_tty_write_room (tty)
791 * This routine returns the numbers of characters the tty driver will
792 * accept for queuing to be written. This number is subject to change as
793 * output buffers get emptied, or if the output flow control is acted.
795 static int ircomm_tty_write_room(struct tty_struct
*tty
)
797 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
801 IRDA_ASSERT(self
!= NULL
, return -1;);
802 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return -1;);
804 #ifdef IRCOMM_NO_TX_BEFORE_INIT
805 /* max_header_size tells us if the channel is initialised or not. */
806 if (self
->max_header_size
== IRCOMM_TTY_HDR_UNINITIALISED
)
807 /* Don't bother us yet */
811 /* Check if we are allowed to transmit any data.
812 * hw_stopped is the regular flow control.
817 spin_lock_irqsave(&self
->spinlock
, flags
);
819 ret
= self
->tx_data_size
- self
->tx_skb
->len
;
821 ret
= self
->max_data_size
;
822 spin_unlock_irqrestore(&self
->spinlock
, flags
);
824 IRDA_DEBUG(2, "%s(), ret=%d\n", __func__
, ret
);
830 * Function ircomm_tty_wait_until_sent (tty, timeout)
832 * This routine waits until the device has written out all of the
833 * characters in its transmitter FIFO.
835 static void ircomm_tty_wait_until_sent(struct tty_struct
*tty
, int timeout
)
837 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
838 unsigned long orig_jiffies
, poll_time
;
841 IRDA_DEBUG(2, "%s()\n", __func__
);
843 IRDA_ASSERT(self
!= NULL
, return;);
844 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
846 orig_jiffies
= jiffies
;
848 /* Set poll time to 200 ms */
849 poll_time
= IRDA_MIN(timeout
, msecs_to_jiffies(200));
851 spin_lock_irqsave(&self
->spinlock
, flags
);
852 while (self
->tx_skb
&& self
->tx_skb
->len
) {
853 spin_unlock_irqrestore(&self
->spinlock
, flags
);
854 schedule_timeout_interruptible(poll_time
);
855 spin_lock_irqsave(&self
->spinlock
, flags
);
856 if (signal_pending(current
))
858 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
861 spin_unlock_irqrestore(&self
->spinlock
, flags
);
862 current
->state
= TASK_RUNNING
;
866 * Function ircomm_tty_throttle (tty)
868 * This routine notifies the tty driver that input buffers for the line
869 * discipline are close to full, and it should somehow signal that no
870 * more characters should be sent to the tty.
872 static void ircomm_tty_throttle(struct tty_struct
*tty
)
874 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
876 IRDA_DEBUG(2, "%s()\n", __func__
);
878 IRDA_ASSERT(self
!= NULL
, return;);
879 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
881 /* Software flow control? */
883 ircomm_tty_send_xchar(tty
, STOP_CHAR(tty
));
885 /* Hardware flow control? */
886 if (tty
->termios
->c_cflag
& CRTSCTS
) {
887 self
->settings
.dte
&= ~IRCOMM_RTS
;
888 self
->settings
.dte
|= IRCOMM_DELTA_RTS
;
890 ircomm_param_request(self
, IRCOMM_DTE
, TRUE
);
893 ircomm_flow_request(self
->ircomm
, FLOW_STOP
);
897 * Function ircomm_tty_unthrottle (tty)
899 * This routine notifies the tty drivers that it should signals that
900 * characters can now be sent to the tty without fear of overrunning the
901 * input buffers of the line disciplines.
903 static void ircomm_tty_unthrottle(struct tty_struct
*tty
)
905 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
907 IRDA_DEBUG(2, "%s()\n", __func__
);
909 IRDA_ASSERT(self
!= NULL
, return;);
910 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
912 /* Using software flow control? */
914 ircomm_tty_send_xchar(tty
, START_CHAR(tty
));
917 /* Using hardware flow control? */
918 if (tty
->termios
->c_cflag
& CRTSCTS
) {
919 self
->settings
.dte
|= (IRCOMM_RTS
|IRCOMM_DELTA_RTS
);
921 ircomm_param_request(self
, IRCOMM_DTE
, TRUE
);
922 IRDA_DEBUG(1, "%s(), FLOW_START\n", __func__
);
924 ircomm_flow_request(self
->ircomm
, FLOW_START
);
928 * Function ircomm_tty_chars_in_buffer (tty)
930 * Indicates if there are any data in the buffer
933 static int ircomm_tty_chars_in_buffer(struct tty_struct
*tty
)
935 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
939 IRDA_ASSERT(self
!= NULL
, return -1;);
940 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return -1;);
942 spin_lock_irqsave(&self
->spinlock
, flags
);
945 len
= self
->tx_skb
->len
;
947 spin_unlock_irqrestore(&self
->spinlock
, flags
);
952 static void ircomm_tty_shutdown(struct ircomm_tty_cb
*self
)
956 IRDA_ASSERT(self
!= NULL
, return;);
957 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
959 IRDA_DEBUG(0, "%s()\n", __func__
);
961 if (!test_and_clear_bit(ASYNC_B_INITIALIZED
, &self
->flags
))
964 ircomm_tty_detach_cable(self
);
966 spin_lock_irqsave(&self
->spinlock
, flags
);
968 del_timer(&self
->watchdog_timer
);
970 /* Free parameter buffer */
971 if (self
->ctrl_skb
) {
972 dev_kfree_skb(self
->ctrl_skb
);
973 self
->ctrl_skb
= NULL
;
976 /* Free transmit buffer */
978 dev_kfree_skb(self
->tx_skb
);
983 ircomm_close(self
->ircomm
);
987 spin_unlock_irqrestore(&self
->spinlock
, flags
);
991 * Function ircomm_tty_hangup (tty)
993 * This routine notifies the tty driver that it should hangup the tty
997 static void ircomm_tty_hangup(struct tty_struct
*tty
)
999 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
1000 unsigned long flags
;
1002 IRDA_DEBUG(0, "%s()\n", __func__
);
1004 IRDA_ASSERT(self
!= NULL
, return;);
1005 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
1007 /* ircomm_tty_flush_buffer(tty); */
1008 ircomm_tty_shutdown(self
);
1010 /* I guess we need to lock here - Jean II */
1011 spin_lock_irqsave(&self
->spinlock
, flags
);
1012 self
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
1014 self
->open_count
= 0;
1015 spin_unlock_irqrestore(&self
->spinlock
, flags
);
1017 wake_up_interruptible(&self
->open_wait
);
1021 * Function ircomm_tty_send_xchar (tty, ch)
1023 * This routine is used to send a high-priority XON/XOFF character to
1026 static void ircomm_tty_send_xchar(struct tty_struct
*tty
, char ch
)
1028 IRDA_DEBUG(0, "%s(), not impl\n", __func__
);
1032 * Function ircomm_tty_start (tty)
1034 * This routine notifies the tty driver that it resume sending
1035 * characters to the tty device.
1037 void ircomm_tty_start(struct tty_struct
*tty
)
1039 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
1041 ircomm_flow_request(self
->ircomm
, FLOW_START
);
1045 * Function ircomm_tty_stop (tty)
1047 * This routine notifies the tty driver that it should stop outputting
1048 * characters to the tty device.
1050 static void ircomm_tty_stop(struct tty_struct
*tty
)
1052 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) tty
->driver_data
;
1054 IRDA_ASSERT(self
!= NULL
, return;);
1055 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
1057 ircomm_flow_request(self
->ircomm
, FLOW_STOP
);
1061 * Function ircomm_check_modem_status (self)
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
1067 void ircomm_tty_check_modem_status(struct ircomm_tty_cb
*self
)
1069 struct tty_struct
*tty
;
1072 IRDA_DEBUG(0, "%s()\n", __func__
);
1074 IRDA_ASSERT(self
!= NULL
, return;);
1075 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
1079 status
= self
->settings
.dce
;
1081 if (status
& IRCOMM_DCE_DELTA_ANY
) {
1082 /*wake_up_interruptible(&self->delta_msr_wait);*/
1084 if ((self
->flags
& ASYNC_CHECK_CD
) && (status
& IRCOMM_DELTA_CD
)) {
1086 "%s(), ircomm%d CD now %s...\n", __func__
, self
->line
,
1087 (status
& IRCOMM_CD
) ? "on" : "off");
1089 if (status
& IRCOMM_CD
) {
1090 wake_up_interruptible(&self
->open_wait
);
1093 "%s(), Doing serial hangup..\n", __func__
);
1097 /* Hangup will remote the tty, so better break out */
1101 if (self
->flags
& ASYNC_CTS_FLOW
) {
1102 if (tty
->hw_stopped
) {
1103 if (status
& IRCOMM_CTS
) {
1105 "%s(), CTS tx start...\n", __func__
);
1106 tty
->hw_stopped
= 0;
1108 /* Wake up processes blocked on open */
1109 wake_up_interruptible(&self
->open_wait
);
1111 schedule_work(&self
->tqueue
);
1115 if (!(status
& IRCOMM_CTS
)) {
1117 "%s(), CTS tx stop...\n", __func__
);
1118 tty
->hw_stopped
= 1;
1125 * Function ircomm_tty_data_indication (instance, sap, skb)
1127 * Handle incoming data, and deliver it to the line discipline
1130 static int ircomm_tty_data_indication(void *instance
, void *sap
,
1131 struct sk_buff
*skb
)
1133 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) instance
;
1134 struct tty_ldisc
*ld
;
1136 IRDA_DEBUG(2, "%s()\n", __func__
);
1138 IRDA_ASSERT(self
!= NULL
, return -1;);
1139 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return -1;);
1140 IRDA_ASSERT(skb
!= NULL
, return -1;);
1143 IRDA_DEBUG(0, "%s(), no tty!\n", __func__
);
1148 * If we receive data when hardware is stopped then something is wrong.
1149 * We try to poll the peers line settings to check if we are up todate.
1150 * Devices like WinCE can do this, and since they don't send any
1151 * params, we can just as well declare the hardware for running.
1153 if (self
->tty
->hw_stopped
&& (self
->flow
== FLOW_START
)) {
1154 IRDA_DEBUG(0, "%s(), polling for line settings!\n", __func__
);
1155 ircomm_param_request(self
, IRCOMM_POLL
, TRUE
);
1157 /* We can just as well declare the hardware for running */
1158 ircomm_tty_send_initial_parameters(self
);
1159 ircomm_tty_link_established(self
);
1163 * Just give it over to the line discipline. There is no need to
1164 * involve the flip buffers, since we are not running in an interrupt
1168 ld
= tty_ldisc_ref(self
->tty
);
1170 ld
->ops
->receive_buf(self
->tty
, skb
->data
, NULL
, skb
->len
);
1171 tty_ldisc_deref(ld
);
1173 /* No need to kfree_skb - see ircomm_ttp_data_indication() */
1179 * Function ircomm_tty_control_indication (instance, sap, skb)
1181 * Parse all incoming parameters (easy!)
1184 static int ircomm_tty_control_indication(void *instance
, void *sap
,
1185 struct sk_buff
*skb
)
1187 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) instance
;
1190 IRDA_DEBUG(4, "%s()\n", __func__
);
1192 IRDA_ASSERT(self
!= NULL
, return -1;);
1193 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return -1;);
1194 IRDA_ASSERT(skb
!= NULL
, return -1;);
1196 clen
= skb
->data
[0];
1198 irda_param_extract_all(self
, skb
->data
+1, IRDA_MIN(skb
->len
-1, clen
),
1199 &ircomm_param_info
);
1201 /* No need to kfree_skb - see ircomm_control_indication() */
1207 * Function ircomm_tty_flow_indication (instance, sap, cmd)
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.
1213 static void ircomm_tty_flow_indication(void *instance
, void *sap
,
1216 struct ircomm_tty_cb
*self
= (struct ircomm_tty_cb
*) instance
;
1217 struct tty_struct
*tty
;
1219 IRDA_ASSERT(self
!= NULL
, return;);
1220 IRDA_ASSERT(self
->magic
== IRCOMM_TTY_MAGIC
, return;);
1226 IRDA_DEBUG(2, "%s(), hw start!\n", __func__
);
1227 tty
->hw_stopped
= 0;
1229 /* ircomm_tty_do_softint will take care of the rest */
1230 schedule_work(&self
->tqueue
);
1232 default: /* If we get here, something is very wrong, better stop */
1234 IRDA_DEBUG(2, "%s(), hw stopped!\n", __func__
);
1235 tty
->hw_stopped
= 1;
1241 #ifdef CONFIG_PROC_FS
1242 static void ircomm_tty_line_info(struct ircomm_tty_cb
*self
, struct seq_file
*m
)
1246 seq_printf(m
, "State: %s\n", ircomm_tty_state
[self
->state
]);
1248 seq_puts(m
, "Service type: ");
1249 if (self
->service_type
& IRCOMM_9_WIRE
)
1250 seq_puts(m
, "9_WIRE");
1251 else if (self
->service_type
& IRCOMM_3_WIRE
)
1252 seq_puts(m
, "3_WIRE");
1253 else if (self
->service_type
& IRCOMM_3_WIRE_RAW
)
1254 seq_puts(m
, "3_WIRE_RAW");
1256 seq_puts(m
, "No common service type!\n");
1259 seq_printf(m
, "Port name: %s\n", self
->settings
.port_name
);
1261 seq_printf(m
, "DTE status:");
1263 if (self
->settings
.dte
& IRCOMM_RTS
) {
1264 seq_printf(m
, "%cRTS", sep
);
1267 if (self
->settings
.dte
& IRCOMM_DTR
) {
1268 seq_printf(m
, "%cDTR", sep
);
1273 seq_puts(m
, "DCE status:");
1275 if (self
->settings
.dce
& IRCOMM_CTS
) {
1276 seq_printf(m
, "%cCTS", sep
);
1279 if (self
->settings
.dce
& IRCOMM_DSR
) {
1280 seq_printf(m
, "%cDSR", sep
);
1283 if (self
->settings
.dce
& IRCOMM_CD
) {
1284 seq_printf(m
, "%cCD", sep
);
1287 if (self
->settings
.dce
& IRCOMM_RI
) {
1288 seq_printf(m
, "%cRI", sep
);
1293 seq_puts(m
, "Configuration: ");
1294 if (!self
->settings
.null_modem
)
1295 seq_puts(m
, "DTE <-> DCE\n");
1297 seq_puts(m
, "DTE <-> DTE (null modem emulation)\n");
1299 seq_printf(m
, "Data rate: %d\n", self
->settings
.data_rate
);
1301 seq_puts(m
, "Flow control:");
1303 if (self
->settings
.flow_control
& IRCOMM_XON_XOFF_IN
) {
1304 seq_printf(m
, "%cXON_XOFF_IN", sep
);
1307 if (self
->settings
.flow_control
& IRCOMM_XON_XOFF_OUT
) {
1308 seq_printf(m
, "%cXON_XOFF_OUT", sep
);
1311 if (self
->settings
.flow_control
& IRCOMM_RTS_CTS_IN
) {
1312 seq_printf(m
, "%cRTS_CTS_IN", sep
);
1315 if (self
->settings
.flow_control
& IRCOMM_RTS_CTS_OUT
) {
1316 seq_printf(m
, "%cRTS_CTS_OUT", sep
);
1319 if (self
->settings
.flow_control
& IRCOMM_DSR_DTR_IN
) {
1320 seq_printf(m
, "%cDSR_DTR_IN", sep
);
1323 if (self
->settings
.flow_control
& IRCOMM_DSR_DTR_OUT
) {
1324 seq_printf(m
, "%cDSR_DTR_OUT", sep
);
1327 if (self
->settings
.flow_control
& IRCOMM_ENQ_ACK_IN
) {
1328 seq_printf(m
, "%cENQ_ACK_IN", sep
);
1331 if (self
->settings
.flow_control
& IRCOMM_ENQ_ACK_OUT
) {
1332 seq_printf(m
, "%cENQ_ACK_OUT", sep
);
1337 seq_puts(m
, "Flags:");
1339 if (self
->flags
& ASYNC_CTS_FLOW
) {
1340 seq_printf(m
, "%cASYNC_CTS_FLOW", sep
);
1343 if (self
->flags
& ASYNC_CHECK_CD
) {
1344 seq_printf(m
, "%cASYNC_CHECK_CD", sep
);
1347 if (self
->flags
& ASYNC_INITIALIZED
) {
1348 seq_printf(m
, "%cASYNC_INITIALIZED", sep
);
1351 if (self
->flags
& ASYNC_LOW_LATENCY
) {
1352 seq_printf(m
, "%cASYNC_LOW_LATENCY", sep
);
1355 if (self
->flags
& ASYNC_CLOSING
) {
1356 seq_printf(m
, "%cASYNC_CLOSING", sep
);
1359 if (self
->flags
& ASYNC_NORMAL_ACTIVE
) {
1360 seq_printf(m
, "%cASYNC_NORMAL_ACTIVE", sep
);
1365 seq_printf(m
, "Role: %s\n", self
->client
? "client" : "server");
1366 seq_printf(m
, "Open count: %d\n", self
->open_count
);
1367 seq_printf(m
, "Max data size: %d\n", self
->max_data_size
);
1368 seq_printf(m
, "Max header size: %d\n", self
->max_header_size
);
1371 seq_printf(m
, "Hardware: %s\n",
1372 self
->tty
->hw_stopped
? "Stopped" : "Running");
1375 static int ircomm_tty_proc_show(struct seq_file
*m
, void *v
)
1377 struct ircomm_tty_cb
*self
;
1378 unsigned long flags
;
1380 spin_lock_irqsave(&ircomm_tty
->hb_spinlock
, flags
);
1382 self
= (struct ircomm_tty_cb
*) hashbin_get_first(ircomm_tty
);
1383 while (self
!= NULL
) {
1384 if (self
->magic
!= IRCOMM_TTY_MAGIC
)
1387 ircomm_tty_line_info(self
, m
);
1388 self
= (struct ircomm_tty_cb
*) hashbin_get_next(ircomm_tty
);
1390 spin_unlock_irqrestore(&ircomm_tty
->hb_spinlock
, flags
);
1394 static int ircomm_tty_proc_open(struct inode
*inode
, struct file
*file
)
1396 return single_open(file
, ircomm_tty_proc_show
, NULL
);
1399 static const struct file_operations ircomm_tty_proc_fops
= {
1400 .owner
= THIS_MODULE
,
1401 .open
= ircomm_tty_proc_open
,
1403 .llseek
= seq_lseek
,
1404 .release
= single_release
,
1406 #endif /* CONFIG_PROC_FS */
1408 MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
1409 MODULE_DESCRIPTION("IrCOMM serial TTY driver");
1410 MODULE_LICENSE("GPL");
1411 MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR
);
1413 module_init(ircomm_tty_init
);
1414 module_exit(ircomm_tty_cleanup
);