1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31#include <linux/init.h>
32#include <linux/module.h>
33#include <linux/fs.h>
34#include <linux/slab.h>
35#include <linux/sched.h>
36#include <linux/seq_file.h>
37#include <linux/termios.h>
38#include <linux/tty.h>
39#include <linux/tty_flip.h>
40#include <linux/interrupt.h>
41#include <linux/device.h>
42
43#include <asm/uaccess.h>
44
45#include <net/irda/irda.h>
46#include <net/irda/irmod.h>
47
48#include <net/irda/ircomm_core.h>
49#include <net/irda/ircomm_param.h>
50#include <net/irda/ircomm_tty_attach.h>
51#include <net/irda/ircomm_tty.h>
52
53static int ircomm_tty_install(struct tty_driver *driver,
54 struct tty_struct *tty);
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);
67static void ircomm_tty_do_softint(struct work_struct *work);
68static 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);
75static void ircomm_tty_flow_indication(void *instance, void *sap,
76 LOCAL_FLOW cmd);
77#ifdef CONFIG_PROC_FS
78static const struct file_operations ircomm_tty_proc_fops;
79#endif
80static struct tty_driver *driver;
81
82static hashbin_t *ircomm_tty = NULL;
83
84static const struct tty_operations ops = {
85 .install = ircomm_tty_install,
86 .open = ircomm_tty_open,
87 .close = ircomm_tty_close,
88 .write = ircomm_tty_write,
89 .write_room = ircomm_tty_write_room,
90 .chars_in_buffer = ircomm_tty_chars_in_buffer,
91 .flush_buffer = ircomm_tty_flush_buffer,
92 .ioctl = ircomm_tty_ioctl,
93 .tiocmget = ircomm_tty_tiocmget,
94 .tiocmset = ircomm_tty_tiocmset,
95 .throttle = ircomm_tty_throttle,
96 .unthrottle = ircomm_tty_unthrottle,
97 .send_xchar = ircomm_tty_send_xchar,
98 .set_termios = ircomm_tty_set_termios,
99 .stop = ircomm_tty_stop,
100 .start = ircomm_tty_start,
101 .hangup = ircomm_tty_hangup,
102 .wait_until_sent = ircomm_tty_wait_until_sent,
103#ifdef CONFIG_PROC_FS
104 .proc_fops = &ircomm_tty_proc_fops,
105#endif
106};
107
108static void ircomm_port_raise_dtr_rts(struct tty_port *port, int raise)
109{
110 struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb,
111 port);
112
113
114
115
116
117 if (raise)
118 self->settings.dte |= IRCOMM_RTS | IRCOMM_DTR;
119 else
120 self->settings.dte &= ~(IRCOMM_RTS | IRCOMM_DTR);
121
122 ircomm_param_request(self, IRCOMM_DTE, TRUE);
123}
124
125static int ircomm_port_carrier_raised(struct tty_port *port)
126{
127 struct ircomm_tty_cb *self = container_of(port, struct ircomm_tty_cb,
128 port);
129 return self->settings.dce & IRCOMM_CD;
130}
131
132static const struct tty_port_operations ircomm_port_ops = {
133 .dtr_rts = ircomm_port_raise_dtr_rts,
134 .carrier_raised = ircomm_port_carrier_raised,
135};
136
137
138
139
140
141
142
143static int __init ircomm_tty_init(void)
144{
145 driver = alloc_tty_driver(IRCOMM_TTY_PORTS);
146 if (!driver)
147 return -ENOMEM;
148 ircomm_tty = hashbin_new(HB_LOCK);
149 if (ircomm_tty == NULL) {
150 net_err_ratelimited("%s(), can't allocate hashbin!\n",
151 __func__);
152 put_tty_driver(driver);
153 return -ENOMEM;
154 }
155
156 driver->driver_name = "ircomm";
157 driver->name = "ircomm";
158 driver->major = IRCOMM_TTY_MAJOR;
159 driver->minor_start = IRCOMM_TTY_MINOR;
160 driver->type = TTY_DRIVER_TYPE_SERIAL;
161 driver->subtype = SERIAL_TYPE_NORMAL;
162 driver->init_termios = tty_std_termios;
163 driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
164 driver->flags = TTY_DRIVER_REAL_RAW;
165 tty_set_operations(driver, &ops);
166 if (tty_register_driver(driver)) {
167 net_err_ratelimited("%s(): Couldn't register serial driver\n",
168 __func__);
169 put_tty_driver(driver);
170 return -1;
171 }
172 return 0;
173}
174
175static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self)
176{
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 tty_port_destroy(&self->port);
184 kfree(self);
185}
186
187
188
189
190
191
192
193static void __exit ircomm_tty_cleanup(void)
194{
195 int ret;
196
197 ret = tty_unregister_driver(driver);
198 if (ret) {
199 net_err_ratelimited("%s(), failed to unregister driver\n",
200 __func__);
201 return;
202 }
203
204 hashbin_delete(ircomm_tty, (FREE_FUNC) __ircomm_tty_cleanup);
205 put_tty_driver(driver);
206}
207
208
209
210
211
212
213
214static int ircomm_tty_startup(struct ircomm_tty_cb *self)
215{
216 notify_t notify;
217 int ret = -ENODEV;
218
219 IRDA_ASSERT(self != NULL, return -1;);
220 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
221
222
223 if (test_and_set_bit(ASYNCB_INITIALIZED, &self->port.flags)) {
224 pr_debug("%s(), already open so break out!\n", __func__);
225 return 0;
226 }
227
228
229 irda_notify_init(¬ify);
230
231 notify.data_indication = ircomm_tty_data_indication;
232 notify.udata_indication = ircomm_tty_control_indication;
233 notify.flow_indication = ircomm_tty_flow_indication;
234
235
236 notify.disconnect_indication = ircomm_tty_disconnect_indication;
237 notify.connect_confirm = ircomm_tty_connect_confirm;
238 notify.connect_indication = ircomm_tty_connect_indication;
239 strlcpy(notify.name, "ircomm_tty", sizeof(notify.name));
240 notify.instance = self;
241
242 if (!self->ircomm) {
243 self->ircomm = ircomm_open(¬ify, self->service_type,
244 self->line);
245 }
246 if (!self->ircomm)
247 goto err;
248
249 self->slsap_sel = self->ircomm->slsap_sel;
250
251
252 ret = ircomm_tty_attach_cable(self);
253 if (ret < 0) {
254 net_err_ratelimited("%s(), error attaching cable!\n", __func__);
255 goto err;
256 }
257
258 return 0;
259err:
260 clear_bit(ASYNCB_INITIALIZED, &self->port.flags);
261 return ret;
262}
263
264
265
266
267
268
269
270static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
271 struct tty_struct *tty, struct file *filp)
272{
273 struct tty_port *port = &self->port;
274 DECLARE_WAITQUEUE(wait, current);
275 int retval;
276 int do_clocal = 0;
277 unsigned long flags;
278
279
280
281
282
283 if (test_bit(TTY_IO_ERROR, &tty->flags)) {
284 port->flags |= ASYNC_NORMAL_ACTIVE;
285 return 0;
286 }
287
288 if (filp->f_flags & O_NONBLOCK) {
289
290 if (tty->termios.c_cflag & CBAUD)
291 tty_port_raise_dtr_rts(port);
292 port->flags |= ASYNC_NORMAL_ACTIVE;
293 pr_debug("%s(), O_NONBLOCK requested!\n", __func__);
294 return 0;
295 }
296
297 if (tty->termios.c_cflag & CLOCAL) {
298 pr_debug("%s(), doing CLOCAL!\n", __func__);
299 do_clocal = 1;
300 }
301
302
303
304
305
306
307
308
309 retval = 0;
310 add_wait_queue(&port->open_wait, &wait);
311
312 pr_debug("%s(%d):block_til_ready before block on %s open_count=%d\n",
313 __FILE__, __LINE__, tty->driver->name, port->count);
314
315 spin_lock_irqsave(&port->lock, flags);
316 port->count--;
317 port->blocked_open++;
318 spin_unlock_irqrestore(&port->lock, flags);
319
320 while (1) {
321 if (C_BAUD(tty) && test_bit(ASYNCB_INITIALIZED, &port->flags))
322 tty_port_raise_dtr_rts(port);
323
324 set_current_state(TASK_INTERRUPTIBLE);
325
326 if (tty_hung_up_p(filp) ||
327 !test_bit(ASYNCB_INITIALIZED, &port->flags)) {
328 retval = (port->flags & ASYNC_HUP_NOTIFY) ?
329 -EAGAIN : -ERESTARTSYS;
330 break;
331 }
332
333
334
335
336
337
338 if (!test_bit(ASYNCB_CLOSING, &port->flags) &&
339 (do_clocal || tty_port_carrier_raised(port)) &&
340 self->state == IRCOMM_TTY_READY)
341 {
342 break;
343 }
344
345 if (signal_pending(current)) {
346 retval = -ERESTARTSYS;
347 break;
348 }
349
350 pr_debug("%s(%d):block_til_ready blocking on %s open_count=%d\n",
351 __FILE__, __LINE__, tty->driver->name, port->count);
352
353 schedule();
354 }
355
356 __set_current_state(TASK_RUNNING);
357 remove_wait_queue(&port->open_wait, &wait);
358
359 spin_lock_irqsave(&port->lock, flags);
360 if (!tty_hung_up_p(filp))
361 port->count++;
362 port->blocked_open--;
363 spin_unlock_irqrestore(&port->lock, flags);
364
365 pr_debug("%s(%d):block_til_ready after blocking on %s open_count=%d\n",
366 __FILE__, __LINE__, tty->driver->name, port->count);
367
368 if (!retval)
369 port->flags |= ASYNC_NORMAL_ACTIVE;
370
371 return retval;
372}
373
374
375static int ircomm_tty_install(struct tty_driver *driver, struct tty_struct *tty)
376{
377 struct ircomm_tty_cb *self;
378 unsigned int line = tty->index;
379
380
381 self = hashbin_lock_find(ircomm_tty, line, NULL);
382 if (!self) {
383
384 self = kzalloc(sizeof(struct ircomm_tty_cb), GFP_KERNEL);
385 if (self == NULL)
386 return -ENOMEM;
387
388 tty_port_init(&self->port);
389 self->port.ops = &ircomm_port_ops;
390 self->magic = IRCOMM_TTY_MAGIC;
391 self->flow = FLOW_STOP;
392
393 self->line = line;
394 INIT_WORK(&self->tqueue, ircomm_tty_do_softint);
395 self->max_header_size = IRCOMM_TTY_HDR_UNINITIALISED;
396 self->max_data_size = IRCOMM_TTY_DATA_UNINITIALISED;
397
398
399 init_timer(&self->watchdog_timer);
400 spin_lock_init(&self->spinlock);
401
402
403
404
405
406
407
408
409 tty->termios.c_iflag = 0;
410 tty->termios.c_oflag = 0;
411
412
413 hashbin_insert(ircomm_tty, (irda_queue_t *) self, line, NULL);
414 }
415
416 tty->driver_data = self;
417
418 return tty_port_install(&self->port, driver, tty);
419}
420
421
422
423
424
425
426
427
428static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
429{
430 struct ircomm_tty_cb *self = tty->driver_data;
431 unsigned long flags;
432 int ret;
433
434
435 spin_lock_irqsave(&self->port.lock, flags);
436 self->port.count++;
437 spin_unlock_irqrestore(&self->port.lock, flags);
438 tty_port_tty_set(&self->port, tty);
439
440 pr_debug("%s(), %s%d, count = %d\n", __func__ , tty->driver->name,
441 self->line, self->port.count);
442
443
444 self->port.low_latency = (self->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
445
446
447
448
449 if (test_bit(ASYNCB_CLOSING, &self->port.flags)) {
450
451
452
453
454
455
456
457
458
459 if (wait_event_interruptible(self->port.close_wait,
460 !test_bit(ASYNCB_CLOSING, &self->port.flags))) {
461 net_warn_ratelimited("%s - got signal while blocking on ASYNC_CLOSING!\n",
462 __func__);
463 return -ERESTARTSYS;
464 }
465
466#ifdef SERIAL_DO_RESTART
467 return (self->port.flags & ASYNC_HUP_NOTIFY) ?
468 -EAGAIN : -ERESTARTSYS;
469#else
470 return -EAGAIN;
471#endif
472 }
473
474
475 if (self->line < 0x10) {
476 self->service_type = IRCOMM_3_WIRE | IRCOMM_9_WIRE;
477 self->settings.service_type = IRCOMM_9_WIRE;
478
479 self->settings.dce = IRCOMM_CTS | IRCOMM_CD | IRCOMM_DSR | IRCOMM_RI;
480 pr_debug("%s(), IrCOMM device\n", __func__);
481 } else {
482 pr_debug("%s(), IrLPT device\n", __func__);
483 self->service_type = IRCOMM_3_WIRE_RAW;
484 self->settings.service_type = IRCOMM_3_WIRE_RAW;
485 }
486
487 ret = ircomm_tty_startup(self);
488 if (ret)
489 return ret;
490
491 ret = ircomm_tty_block_til_ready(self, tty, filp);
492 if (ret) {
493 pr_debug("%s(), returning after block_til_ready with %d\n",
494 __func__, ret);
495
496 return ret;
497 }
498 return 0;
499}
500
501
502
503
504
505
506
507static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
508{
509 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
510 struct tty_port *port = &self->port;
511
512 IRDA_ASSERT(self != NULL, return;);
513 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
514
515 if (tty_port_close_start(port, tty, filp) == 0)
516 return;
517
518 ircomm_tty_shutdown(self);
519
520 tty_driver_flush_buffer(tty);
521
522 tty_port_close_end(port, tty);
523 tty_port_tty_set(port, NULL);
524}
525
526
527
528
529
530
531
532static void ircomm_tty_flush_buffer(struct tty_struct *tty)
533{
534 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
535
536 IRDA_ASSERT(self != NULL, return;);
537 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
538
539
540
541
542
543 schedule_work(&self->tqueue);
544}
545
546
547
548
549
550
551
552
553static void ircomm_tty_do_softint(struct work_struct *work)
554{
555 struct ircomm_tty_cb *self =
556 container_of(work, struct ircomm_tty_cb, tqueue);
557 struct tty_struct *tty;
558 unsigned long flags;
559 struct sk_buff *skb, *ctrl_skb;
560
561 if (!self || self->magic != IRCOMM_TTY_MAGIC)
562 return;
563
564 tty = tty_port_tty_get(&self->port);
565 if (!tty)
566 return;
567
568
569 spin_lock_irqsave(&self->spinlock, flags);
570
571 ctrl_skb = self->ctrl_skb;
572 self->ctrl_skb = NULL;
573
574 spin_unlock_irqrestore(&self->spinlock, flags);
575
576
577 if(ctrl_skb) {
578 if(self->flow == FLOW_START)
579 ircomm_control_request(self->ircomm, ctrl_skb);
580
581 dev_kfree_skb(ctrl_skb);
582 }
583
584 if (tty->hw_stopped)
585 goto put;
586
587
588 spin_lock_irqsave(&self->spinlock, flags);
589
590 skb = self->tx_skb;
591 self->tx_skb = NULL;
592
593 spin_unlock_irqrestore(&self->spinlock, flags);
594
595
596 if (skb) {
597 ircomm_tty_do_event(self, IRCOMM_TTY_DATA_REQUEST, skb, NULL);
598
599 dev_kfree_skb(skb);
600 }
601
602
603 tty_wakeup(tty);
604put:
605 tty_kref_put(tty);
606}
607
608
609
610
611
612
613
614
615
616static int ircomm_tty_write(struct tty_struct *tty,
617 const unsigned char *buf, int count)
618{
619 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
620 unsigned long flags;
621 struct sk_buff *skb;
622 int tailroom = 0;
623 int len = 0;
624 int size;
625
626 pr_debug("%s(), count=%d, hw_stopped=%d\n", __func__ , count,
627 tty->hw_stopped);
628
629 IRDA_ASSERT(self != NULL, return -1;);
630 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED) {
649 pr_debug("%s() : not initialised\n", __func__);
650#ifdef IRCOMM_NO_TX_BEFORE_INIT
651
652 return 0;
653#endif
654 }
655
656 if (count < 1)
657 return 0;
658
659
660 spin_lock_irqsave(&self->spinlock, flags);
661
662
663 skb = self->tx_skb;
664
665
666
667
668
669
670
671
672
673 while (count) {
674 size = count;
675
676
677 if (size > self->max_data_size)
678 size = self->max_data_size;
679
680
681
682
683
684 if (skb) {
685
686
687
688
689
690
691
692
693
694 if ((tailroom = (self->tx_data_size - skb->len)) > 0) {
695
696 if (size > tailroom)
697 size = tailroom;
698 } else {
699
700
701
702
703 break;
704 }
705 } else {
706
707 skb = alloc_skb(self->max_data_size+
708 self->max_header_size,
709 GFP_ATOMIC);
710 if (!skb) {
711 spin_unlock_irqrestore(&self->spinlock, flags);
712 return -ENOBUFS;
713 }
714 skb_reserve(skb, self->max_header_size);
715 self->tx_skb = skb;
716
717
718 self->tx_data_size = self->max_data_size;
719 }
720
721
722 memcpy(skb_put(skb,size), buf + len, size);
723
724 count -= size;
725 len += size;
726 }
727
728 spin_unlock_irqrestore(&self->spinlock, flags);
729
730
731
732
733
734
735
736
737 schedule_work(&self->tqueue);
738
739 return len;
740}
741
742
743
744
745
746
747
748
749static int ircomm_tty_write_room(struct tty_struct *tty)
750{
751 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
752 unsigned long flags;
753 int ret;
754
755 IRDA_ASSERT(self != NULL, return -1;);
756 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
757
758#ifdef IRCOMM_NO_TX_BEFORE_INIT
759
760 if (self->max_header_size == IRCOMM_TTY_HDR_UNINITIALISED)
761
762 return 0;
763#endif
764
765
766
767
768 if (tty->hw_stopped)
769 ret = 0;
770 else {
771 spin_lock_irqsave(&self->spinlock, flags);
772 if (self->tx_skb)
773 ret = self->tx_data_size - self->tx_skb->len;
774 else
775 ret = self->max_data_size;
776 spin_unlock_irqrestore(&self->spinlock, flags);
777 }
778 pr_debug("%s(), ret=%d\n", __func__ , ret);
779
780 return ret;
781}
782
783
784
785
786
787
788
789static void ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout)
790{
791 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
792 unsigned long orig_jiffies, poll_time;
793 unsigned long flags;
794
795 IRDA_ASSERT(self != NULL, return;);
796 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
797
798 orig_jiffies = jiffies;
799
800
801 poll_time = IRDA_MIN(timeout, msecs_to_jiffies(200));
802
803 spin_lock_irqsave(&self->spinlock, flags);
804 while (self->tx_skb && self->tx_skb->len) {
805 spin_unlock_irqrestore(&self->spinlock, flags);
806 schedule_timeout_interruptible(poll_time);
807 spin_lock_irqsave(&self->spinlock, flags);
808 if (signal_pending(current))
809 break;
810 if (timeout && time_after(jiffies, orig_jiffies + timeout))
811 break;
812 }
813 spin_unlock_irqrestore(&self->spinlock, flags);
814 current->state = TASK_RUNNING;
815}
816
817
818
819
820
821
822
823
824static void ircomm_tty_throttle(struct tty_struct *tty)
825{
826 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
827
828 IRDA_ASSERT(self != NULL, return;);
829 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
830
831
832 if (I_IXOFF(tty))
833 ircomm_tty_send_xchar(tty, STOP_CHAR(tty));
834
835
836 if (tty->termios.c_cflag & CRTSCTS) {
837 self->settings.dte &= ~IRCOMM_RTS;
838 self->settings.dte |= IRCOMM_DELTA_RTS;
839
840 ircomm_param_request(self, IRCOMM_DTE, TRUE);
841 }
842
843 ircomm_flow_request(self->ircomm, FLOW_STOP);
844}
845
846
847
848
849
850
851
852
853static void ircomm_tty_unthrottle(struct tty_struct *tty)
854{
855 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
856
857 IRDA_ASSERT(self != NULL, return;);
858 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
859
860
861 if (I_IXOFF(tty)) {
862 ircomm_tty_send_xchar(tty, START_CHAR(tty));
863 }
864
865
866 if (tty->termios.c_cflag & CRTSCTS) {
867 self->settings.dte |= (IRCOMM_RTS|IRCOMM_DELTA_RTS);
868
869 ircomm_param_request(self, IRCOMM_DTE, TRUE);
870 pr_debug("%s(), FLOW_START\n", __func__);
871 }
872 ircomm_flow_request(self->ircomm, FLOW_START);
873}
874
875
876
877
878
879
880
881static int ircomm_tty_chars_in_buffer(struct tty_struct *tty)
882{
883 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
884 unsigned long flags;
885 int len = 0;
886
887 IRDA_ASSERT(self != NULL, return -1;);
888 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
889
890 spin_lock_irqsave(&self->spinlock, flags);
891
892 if (self->tx_skb)
893 len = self->tx_skb->len;
894
895 spin_unlock_irqrestore(&self->spinlock, flags);
896
897 return len;
898}
899
900static void ircomm_tty_shutdown(struct ircomm_tty_cb *self)
901{
902 unsigned long flags;
903
904 IRDA_ASSERT(self != NULL, return;);
905 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
906
907 if (!test_and_clear_bit(ASYNCB_INITIALIZED, &self->port.flags))
908 return;
909
910 ircomm_tty_detach_cable(self);
911
912 spin_lock_irqsave(&self->spinlock, flags);
913
914 del_timer(&self->watchdog_timer);
915
916
917 if (self->ctrl_skb) {
918 dev_kfree_skb(self->ctrl_skb);
919 self->ctrl_skb = NULL;
920 }
921
922
923 if (self->tx_skb) {
924 dev_kfree_skb(self->tx_skb);
925 self->tx_skb = NULL;
926 }
927
928 if (self->ircomm) {
929 ircomm_close(self->ircomm);
930 self->ircomm = NULL;
931 }
932
933 spin_unlock_irqrestore(&self->spinlock, flags);
934}
935
936
937
938
939
940
941
942
943static void ircomm_tty_hangup(struct tty_struct *tty)
944{
945 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
946 struct tty_port *port = &self->port;
947 unsigned long flags;
948
949 IRDA_ASSERT(self != NULL, return;);
950 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
951
952
953 ircomm_tty_shutdown(self);
954
955 spin_lock_irqsave(&port->lock, flags);
956 port->flags &= ~ASYNC_NORMAL_ACTIVE;
957 if (port->tty) {
958 set_bit(TTY_IO_ERROR, &port->tty->flags);
959 tty_kref_put(port->tty);
960 }
961 port->tty = NULL;
962 port->count = 0;
963 spin_unlock_irqrestore(&port->lock, flags);
964
965 wake_up_interruptible(&port->open_wait);
966}
967
968
969
970
971
972
973
974static void ircomm_tty_send_xchar(struct tty_struct *tty, char ch)
975{
976 pr_debug("%s(), not impl\n", __func__);
977}
978
979
980
981
982
983
984
985void ircomm_tty_start(struct tty_struct *tty)
986{
987 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
988
989 ircomm_flow_request(self->ircomm, FLOW_START);
990}
991
992
993
994
995
996
997
998static void ircomm_tty_stop(struct tty_struct *tty)
999{
1000 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data;
1001
1002 IRDA_ASSERT(self != NULL, return;);
1003 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1004
1005 ircomm_flow_request(self->ircomm, FLOW_STOP);
1006}
1007
1008
1009
1010
1011
1012
1013
1014
1015void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self)
1016{
1017 struct tty_struct *tty;
1018 int status;
1019
1020 IRDA_ASSERT(self != NULL, return;);
1021 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1022
1023 tty = tty_port_tty_get(&self->port);
1024
1025 status = self->settings.dce;
1026
1027 if (status & IRCOMM_DCE_DELTA_ANY) {
1028
1029 }
1030 if ((self->port.flags & ASYNC_CHECK_CD) && (status & IRCOMM_DELTA_CD)) {
1031 pr_debug("%s(), ircomm%d CD now %s...\n", __func__ , self->line,
1032 (status & IRCOMM_CD) ? "on" : "off");
1033
1034 if (status & IRCOMM_CD) {
1035 wake_up_interruptible(&self->port.open_wait);
1036 } else {
1037 pr_debug("%s(), Doing serial hangup..\n", __func__);
1038 if (tty)
1039 tty_hangup(tty);
1040
1041
1042 goto put;
1043 }
1044 }
1045 if (tty && tty_port_cts_enabled(&self->port)) {
1046 if (tty->hw_stopped) {
1047 if (status & IRCOMM_CTS) {
1048 pr_debug("%s(), CTS tx start...\n", __func__);
1049 tty->hw_stopped = 0;
1050
1051
1052 wake_up_interruptible(&self->port.open_wait);
1053
1054 schedule_work(&self->tqueue);
1055 goto put;
1056 }
1057 } else {
1058 if (!(status & IRCOMM_CTS)) {
1059 pr_debug("%s(), CTS tx stop...\n", __func__);
1060 tty->hw_stopped = 1;
1061 }
1062 }
1063 }
1064put:
1065 tty_kref_put(tty);
1066}
1067
1068
1069
1070
1071
1072
1073
1074static int ircomm_tty_data_indication(void *instance, void *sap,
1075 struct sk_buff *skb)
1076{
1077 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1078 struct tty_struct *tty;
1079
1080 IRDA_ASSERT(self != NULL, return -1;);
1081 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1082 IRDA_ASSERT(skb != NULL, return -1;);
1083
1084 tty = tty_port_tty_get(&self->port);
1085 if (!tty) {
1086 pr_debug("%s(), no tty!\n", __func__);
1087 return 0;
1088 }
1089
1090
1091
1092
1093
1094
1095
1096 if (tty->hw_stopped && (self->flow == FLOW_START)) {
1097 pr_debug("%s(), polling for line settings!\n", __func__);
1098 ircomm_param_request(self, IRCOMM_POLL, TRUE);
1099
1100
1101 ircomm_tty_send_initial_parameters(self);
1102 ircomm_tty_link_established(self);
1103 }
1104 tty_kref_put(tty);
1105
1106
1107
1108
1109
1110 tty_insert_flip_string(&self->port, skb->data, skb->len);
1111 tty_flip_buffer_push(&self->port);
1112
1113
1114
1115 return 0;
1116}
1117
1118
1119
1120
1121
1122
1123
1124static int ircomm_tty_control_indication(void *instance, void *sap,
1125 struct sk_buff *skb)
1126{
1127 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1128 int clen;
1129
1130 IRDA_ASSERT(self != NULL, return -1;);
1131 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
1132 IRDA_ASSERT(skb != NULL, return -1;);
1133
1134 clen = skb->data[0];
1135
1136 irda_param_extract_all(self, skb->data+1, IRDA_MIN(skb->len-1, clen),
1137 &ircomm_param_info);
1138
1139
1140
1141 return 0;
1142}
1143
1144
1145
1146
1147
1148
1149
1150
1151static void ircomm_tty_flow_indication(void *instance, void *sap,
1152 LOCAL_FLOW cmd)
1153{
1154 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
1155 struct tty_struct *tty;
1156
1157 IRDA_ASSERT(self != NULL, return;);
1158 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
1159
1160 tty = tty_port_tty_get(&self->port);
1161
1162 switch (cmd) {
1163 case FLOW_START:
1164 pr_debug("%s(), hw start!\n", __func__);
1165 if (tty)
1166 tty->hw_stopped = 0;
1167
1168
1169 schedule_work(&self->tqueue);
1170 break;
1171 default:
1172 case FLOW_STOP:
1173 pr_debug("%s(), hw stopped!\n", __func__);
1174 if (tty)
1175 tty->hw_stopped = 1;
1176 break;
1177 }
1178
1179 tty_kref_put(tty);
1180 self->flow = cmd;
1181}
1182
1183#ifdef CONFIG_PROC_FS
1184static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
1185{
1186 struct tty_struct *tty;
1187 char sep;
1188
1189 seq_printf(m, "State: %s\n", ircomm_tty_state[self->state]);
1190
1191 seq_puts(m, "Service type: ");
1192 if (self->service_type & IRCOMM_9_WIRE)
1193 seq_puts(m, "9_WIRE");
1194 else if (self->service_type & IRCOMM_3_WIRE)
1195 seq_puts(m, "3_WIRE");
1196 else if (self->service_type & IRCOMM_3_WIRE_RAW)
1197 seq_puts(m, "3_WIRE_RAW");
1198 else
1199 seq_puts(m, "No common service type!\n");
1200 seq_putc(m, '\n');
1201
1202 seq_printf(m, "Port name: %s\n", self->settings.port_name);
1203
1204 seq_printf(m, "DTE status:");
1205 sep = ' ';
1206 if (self->settings.dte & IRCOMM_RTS) {
1207 seq_printf(m, "%cRTS", sep);
1208 sep = '|';
1209 }
1210 if (self->settings.dte & IRCOMM_DTR) {
1211 seq_printf(m, "%cDTR", sep);
1212 sep = '|';
1213 }
1214 seq_putc(m, '\n');
1215
1216 seq_puts(m, "DCE status:");
1217 sep = ' ';
1218 if (self->settings.dce & IRCOMM_CTS) {
1219 seq_printf(m, "%cCTS", sep);
1220 sep = '|';
1221 }
1222 if (self->settings.dce & IRCOMM_DSR) {
1223 seq_printf(m, "%cDSR", sep);
1224 sep = '|';
1225 }
1226 if (self->settings.dce & IRCOMM_CD) {
1227 seq_printf(m, "%cCD", sep);
1228 sep = '|';
1229 }
1230 if (self->settings.dce & IRCOMM_RI) {
1231 seq_printf(m, "%cRI", sep);
1232 sep = '|';
1233 }
1234 seq_putc(m, '\n');
1235
1236 seq_puts(m, "Configuration: ");
1237 if (!self->settings.null_modem)
1238 seq_puts(m, "DTE <-> DCE\n");
1239 else
1240 seq_puts(m, "DTE <-> DTE (null modem emulation)\n");
1241
1242 seq_printf(m, "Data rate: %d\n", self->settings.data_rate);
1243
1244 seq_puts(m, "Flow control:");
1245 sep = ' ';
1246 if (self->settings.flow_control & IRCOMM_XON_XOFF_IN) {
1247 seq_printf(m, "%cXON_XOFF_IN", sep);
1248 sep = '|';
1249 }
1250 if (self->settings.flow_control & IRCOMM_XON_XOFF_OUT) {
1251 seq_printf(m, "%cXON_XOFF_OUT", sep);
1252 sep = '|';
1253 }
1254 if (self->settings.flow_control & IRCOMM_RTS_CTS_IN) {
1255 seq_printf(m, "%cRTS_CTS_IN", sep);
1256 sep = '|';
1257 }
1258 if (self->settings.flow_control & IRCOMM_RTS_CTS_OUT) {
1259 seq_printf(m, "%cRTS_CTS_OUT", sep);
1260 sep = '|';
1261 }
1262 if (self->settings.flow_control & IRCOMM_DSR_DTR_IN) {
1263 seq_printf(m, "%cDSR_DTR_IN", sep);
1264 sep = '|';
1265 }
1266 if (self->settings.flow_control & IRCOMM_DSR_DTR_OUT) {
1267 seq_printf(m, "%cDSR_DTR_OUT", sep);
1268 sep = '|';
1269 }
1270 if (self->settings.flow_control & IRCOMM_ENQ_ACK_IN) {
1271 seq_printf(m, "%cENQ_ACK_IN", sep);
1272 sep = '|';
1273 }
1274 if (self->settings.flow_control & IRCOMM_ENQ_ACK_OUT) {
1275 seq_printf(m, "%cENQ_ACK_OUT", sep);
1276 sep = '|';
1277 }
1278 seq_putc(m, '\n');
1279
1280 seq_puts(m, "Flags:");
1281 sep = ' ';
1282 if (tty_port_cts_enabled(&self->port)) {
1283 seq_printf(m, "%cASYNC_CTS_FLOW", sep);
1284 sep = '|';
1285 }
1286 if (self->port.flags & ASYNC_CHECK_CD) {
1287 seq_printf(m, "%cASYNC_CHECK_CD", sep);
1288 sep = '|';
1289 }
1290 if (self->port.flags & ASYNC_INITIALIZED) {
1291 seq_printf(m, "%cASYNC_INITIALIZED", sep);
1292 sep = '|';
1293 }
1294 if (self->port.flags & ASYNC_LOW_LATENCY) {
1295 seq_printf(m, "%cASYNC_LOW_LATENCY", sep);
1296 sep = '|';
1297 }
1298 if (self->port.flags & ASYNC_CLOSING) {
1299 seq_printf(m, "%cASYNC_CLOSING", sep);
1300 sep = '|';
1301 }
1302 if (self->port.flags & ASYNC_NORMAL_ACTIVE) {
1303 seq_printf(m, "%cASYNC_NORMAL_ACTIVE", sep);
1304 sep = '|';
1305 }
1306 seq_putc(m, '\n');
1307
1308 seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
1309 seq_printf(m, "Open count: %d\n", self->port.count);
1310 seq_printf(m, "Max data size: %d\n", self->max_data_size);
1311 seq_printf(m, "Max header size: %d\n", self->max_header_size);
1312
1313 tty = tty_port_tty_get(&self->port);
1314 if (tty) {
1315 seq_printf(m, "Hardware: %s\n",
1316 tty->hw_stopped ? "Stopped" : "Running");
1317 tty_kref_put(tty);
1318 }
1319}
1320
1321static int ircomm_tty_proc_show(struct seq_file *m, void *v)
1322{
1323 struct ircomm_tty_cb *self;
1324 unsigned long flags;
1325
1326 spin_lock_irqsave(&ircomm_tty->hb_spinlock, flags);
1327
1328 self = (struct ircomm_tty_cb *) hashbin_get_first(ircomm_tty);
1329 while (self != NULL) {
1330 if (self->magic != IRCOMM_TTY_MAGIC)
1331 break;
1332
1333 ircomm_tty_line_info(self, m);
1334 self = (struct ircomm_tty_cb *) hashbin_get_next(ircomm_tty);
1335 }
1336 spin_unlock_irqrestore(&ircomm_tty->hb_spinlock, flags);
1337 return 0;
1338}
1339
1340static int ircomm_tty_proc_open(struct inode *inode, struct file *file)
1341{
1342 return single_open(file, ircomm_tty_proc_show, NULL);
1343}
1344
1345static const struct file_operations ircomm_tty_proc_fops = {
1346 .owner = THIS_MODULE,
1347 .open = ircomm_tty_proc_open,
1348 .read = seq_read,
1349 .llseek = seq_lseek,
1350 .release = single_release,
1351};
1352#endif
1353
1354MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
1355MODULE_DESCRIPTION("IrCOMM serial TTY driver");
1356MODULE_LICENSE("GPL");
1357MODULE_ALIAS_CHARDEV_MAJOR(IRCOMM_TTY_MAJOR);
1358
1359module_init(ircomm_tty_init);
1360module_exit(ircomm_tty_cleanup);
1361