1 /* $Id: isdn_tty.c,v 1.1.2.3 2004/02/10 01:07:13 keil Exp $
3 * Linux ISDN subsystem, tty functions and AT-command emulator (linklevel).
5 * Copyright 1994-1999 by Fritz Elfert (fritz@isdn4linux.de)
6 * Copyright 1995,96 by Thinking Objects Software GmbH Wuerzburg
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
12 #undef ISDN_TTY_STAT_DEBUG
14 #include <linux/isdn.h>
15 #include <linux/delay.h>
16 #include "isdn_common.h"
18 #ifdef CONFIG_ISDN_AUDIO
19 #include "isdn_audio.h"
21 #define VBUFX (VBUF/16)
24 #define FIX_FILE_TRANSFER
25 #define DUMMY_HAYES_AT
29 static int isdn_tty_edit_at(const char *, int, modem_info
*);
30 static void isdn_tty_check_esc(const u_char
*, u_char
, int, int *, u_long
*);
31 static void isdn_tty_modem_reset_regs(modem_info
*, int);
32 static void isdn_tty_cmd_ATA(modem_info
*);
33 static void isdn_tty_flush_buffer(struct tty_struct
*);
34 static void isdn_tty_modem_result(int, modem_info
*);
35 #ifdef CONFIG_ISDN_AUDIO
36 static int isdn_tty_countDLE(unsigned char *, int);
39 /* Leave this unchanged unless you know what you do! */
40 #define MODEM_PARANOIA_CHECK
41 #define MODEM_DO_RESTART
43 static int bit2si
[8] =
44 {1, 5, 7, 7, 7, 7, 7, 7};
45 static int si2bit
[8] =
46 {4, 1, 4, 4, 4, 4, 4, 4};
48 char *isdn_tty_revision
= "$Revision: 1.1.2.3 $";
51 /* isdn_tty_try_read() is called from within isdn_tty_rcv_skb()
52 * to stuff incoming data directly into a tty's flip-buffer. This
53 * is done to speed up tty-receiving if the receive-queue is empty.
54 * This routine MUST be called with interrupts off.
57 * 0 = Failure, data has to be buffered and later processed by
58 * isdn_tty_readmodem().
61 isdn_tty_try_read(modem_info
* info
, struct sk_buff
*skb
)
65 struct tty_struct
*tty
;
69 if ((tty
= info
->tty
)) {
70 if (info
->mcr
& UART_MCR_RTS
) {
72 #ifdef CONFIG_ISDN_AUDIO
73 + ISDN_AUDIO_SKB_DLECOUNT(skb
)
77 c
= tty_buffer_request_room(tty
, len
);
79 #ifdef CONFIG_ISDN_AUDIO
80 if (ISDN_AUDIO_SKB_DLECOUNT(skb
)) {
82 unsigned char *dp
= skb
->data
;
85 tty_insert_flip_char(tty
, DLE
, 0);
86 tty_insert_flip_char(tty
, *dp
++, 0);
89 tty_insert_flip_char(tty
, DLE
, 0);
94 tty_insert_flip_string(tty
, skb
->data
, len
- 1);
95 last
= skb
->data
[len
- 1];
96 #ifdef CONFIG_ISDN_AUDIO
99 if (info
->emu
.mdmreg
[REG_CPPP
] & BIT_CPPP
)
100 tty_insert_flip_char(tty
, last
, 0xFF);
102 tty_insert_flip_char(tty
, last
, TTY_NORMAL
);
103 tty_flip_buffer_push(tty
);
113 /* isdn_tty_readmodem() is called periodically from within timer-interrupt.
114 * It tries getting received data from the receive queue an stuff it into
115 * the tty's flip-buffer.
118 isdn_tty_readmodem(void)
124 struct tty_struct
*tty
;
127 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
128 if ((midx
= dev
->m_idx
[i
]) >= 0) {
129 info
= &dev
->mdm
.info
[midx
];
132 #ifdef CONFIG_ISDN_AUDIO
133 isdn_audio_eval_dtmf(info
);
134 if ((info
->vonline
& 1) && (info
->emu
.vpar
[1]))
135 isdn_audio_eval_silence(info
);
137 if ((tty
= info
->tty
)) {
138 if (info
->mcr
& UART_MCR_RTS
) {
139 /* CISCO AsyncPPP Hack */
140 if (!(info
->emu
.mdmreg
[REG_CPPP
] & BIT_CPPP
))
141 r
= isdn_readbchan_tty(info
->isdn_driver
, info
->isdn_channel
, tty
, 0);
143 r
= isdn_readbchan_tty(info
->isdn_driver
, info
->isdn_channel
, tty
, 1);
145 tty_flip_buffer_push(tty
);
159 isdn_timer_ctrl(ISDN_TIMER_MODEMREAD
, 0);
163 isdn_tty_rcv_skb(int i
, int di
, int channel
, struct sk_buff
*skb
)
167 #ifdef CONFIG_ISDN_AUDIO
172 if ((midx
= dev
->m_idx
[i
]) < 0) {
173 /* if midx is invalid, packet is not for tty */
176 info
= &dev
->mdm
.info
[midx
];
177 #ifdef CONFIG_ISDN_AUDIO
180 if ((info
->vonline
) && (!info
->emu
.vpar
[4]))
181 isdn_audio_calc_dtmf(info
, skb
->data
, skb
->len
, ifmt
);
182 if ((info
->vonline
& 1) && (info
->emu
.vpar
[1]))
183 isdn_audio_calc_silence(info
, skb
->data
, skb
->len
, ifmt
);
185 if ((info
->online
< 2)
186 #ifdef CONFIG_ISDN_AUDIO
187 && (!(info
->vonline
& 1))
190 /* If Modem not listening, drop data */
194 if (info
->emu
.mdmreg
[REG_T70
] & BIT_T70
) {
195 if (info
->emu
.mdmreg
[REG_T70
] & BIT_T70_EXT
) {
196 /* T.70 decoding: throw away the T.70 header (2 or 4 bytes) */
197 if (skb
->data
[0] == 3) /* pure data packet -> 4 byte headers */
200 if (skb
->data
[0] == 1) /* keepalive packet -> 2 byte hdr */
203 /* T.70 decoding: Simply throw away the T.70 header (4 bytes) */
204 if ((skb
->data
[0] == 1) && ((skb
->data
[1] == 0) || (skb
->data
[1] == 1)))
207 #ifdef CONFIG_ISDN_AUDIO
208 ISDN_AUDIO_SKB_DLECOUNT(skb
) = 0;
209 ISDN_AUDIO_SKB_LOCK(skb
) = 0;
210 if (info
->vonline
& 1) {
211 /* voice conversion/compression */
212 switch (info
->emu
.vpar
[3]) {
217 * Since compressed data takes less
218 * space, we can overwrite the buffer.
220 skb_trim(skb
, isdn_audio_xlaw2adpcm(info
->adpcmr
,
229 isdn_audio_ulaw2alaw(skb
->data
, skb
->len
);
234 isdn_audio_alaw2ulaw(skb
->data
, skb
->len
);
237 ISDN_AUDIO_SKB_DLECOUNT(skb
) =
238 isdn_tty_countDLE(skb
->data
, skb
->len
);
240 #ifdef CONFIG_ISDN_TTY_FAX
242 if (info
->faxonline
& 2) {
243 isdn_tty_fax_bitorder(info
, skb
);
244 ISDN_AUDIO_SKB_DLECOUNT(skb
) =
245 isdn_tty_countDLE(skb
->data
, skb
->len
);
250 /* Try to deliver directly via tty-buf if queue is empty */
251 spin_lock_irqsave(&info
->readlock
, flags
);
252 if (skb_queue_empty(&dev
->drv
[di
]->rpqueue
[channel
]))
253 if (isdn_tty_try_read(info
, skb
)) {
254 spin_unlock_irqrestore(&info
->readlock
, flags
);
257 /* Direct deliver failed or queue wasn't empty.
258 * Queue up for later dequeueing via timer-irq.
260 __skb_queue_tail(&dev
->drv
[di
]->rpqueue
[channel
], skb
);
261 dev
->drv
[di
]->rcvcount
[channel
] +=
263 #ifdef CONFIG_ISDN_AUDIO
264 + ISDN_AUDIO_SKB_DLECOUNT(skb
)
267 spin_unlock_irqrestore(&info
->readlock
, flags
);
268 /* Schedule dequeuing */
269 if ((dev
->modempoll
) && (info
->rcvsched
))
270 isdn_timer_ctrl(ISDN_TIMER_MODEMREAD
, 1);
275 isdn_tty_cleanup_xmit(modem_info
* info
)
277 skb_queue_purge(&info
->xmit_queue
);
278 #ifdef CONFIG_ISDN_AUDIO
279 skb_queue_purge(&info
->dtmf_queue
);
284 isdn_tty_tint(modem_info
* info
)
286 struct sk_buff
*skb
= skb_dequeue(&info
->xmit_queue
);
292 if ((slen
= isdn_writebuf_skb_stub(info
->isdn_driver
,
293 info
->isdn_channel
, 1, skb
)) == len
) {
294 struct tty_struct
*tty
= info
->tty
;
295 info
->send_outstanding
++;
296 info
->msr
&= ~UART_MSR_CTS
;
297 info
->lsr
&= ~UART_LSR_TEMT
;
302 /* Error: no channel, already shutdown, or wrong parameter */
306 skb_queue_head(&info
->xmit_queue
, skb
);
309 #ifdef CONFIG_ISDN_AUDIO
311 isdn_tty_countDLE(unsigned char *buf
, int len
)
321 /* This routine is called from within isdn_tty_write() to perform
322 * DLE-decoding when sending audio-data.
325 isdn_tty_handleDLEdown(modem_info
* info
, atemu
* m
, int len
)
327 unsigned char *p
= &info
->xmit_buf
[info
->xmit_count
];
337 memmove(p
, p
+ 1, len
- 1);
348 #ifdef ISDN_DEBUG_MODEM_VOICE
350 "DLEdown: got DLE-DC4, send DLE-ETX on ttyI%d\n",
353 isdn_tty_at_cout("\020\003", info
);
354 if (!info
->vonline
) {
355 #ifdef ISDN_DEBUG_MODEM_VOICE
357 "DLEdown: send VCON on ttyI%d\n",
360 isdn_tty_at_cout("\r\nVCON\r\n", info
);
367 memmove(p
, p
+ 1, len
- 1);
381 printk(KERN_WARNING
"isdn_tty: len<0 in DLEdown\n");
387 /* This routine is called from within isdn_tty_write() when receiving
388 * audio-data. It interrupts receiving, if an character other than
392 isdn_tty_end_vrx(const char *buf
, int c
)
398 if ((ch
!= 0x11) && (ch
!= 0x13))
405 static int voice_cf
[7] =
406 {0, 0, 4, 3, 2, 0, 0};
408 #endif /* CONFIG_ISDN_AUDIO */
410 /* isdn_tty_senddown() is called either directly from within isdn_tty_write()
411 * or via timer-interrupt from within isdn_tty_modem_xmit(). It pulls
412 * outgoing data from the tty's xmit-buffer, handles voice-decompression or
413 * T.70 if necessary, and finally queues it up for sending via isdn_tty_tint.
416 isdn_tty_senddown(modem_info
* info
)
420 #ifdef CONFIG_ISDN_AUDIO
425 #ifdef CONFIG_ISDN_AUDIO
426 if (info
->vonline
& 4) {
428 if (!info
->vonline
) {
429 #ifdef ISDN_DEBUG_MODEM_VOICE
431 "senddown: send VCON on ttyI%d\n",
434 isdn_tty_at_cout("\r\nVCON\r\n", info
);
438 if (!(buflen
= info
->xmit_count
))
440 if ((info
->emu
.mdmreg
[REG_CTS
] & BIT_CTS
) != 0)
441 info
->msr
&= ~UART_MSR_CTS
;
442 info
->lsr
&= ~UART_LSR_TEMT
;
443 /* info->xmit_count is modified here and in isdn_tty_write().
444 * So we return here if isdn_tty_write() is in the
447 atomic_inc(&info
->xmit_lock
);
448 if (!(atomic_dec_and_test(&info
->xmit_lock
)))
450 if (info
->isdn_driver
< 0) {
451 info
->xmit_count
= 0;
454 skb_res
= dev
->drv
[info
->isdn_driver
]->interface
->hl_hdrlen
+ 4;
455 #ifdef CONFIG_ISDN_AUDIO
456 if (info
->vonline
& 2)
457 audio_len
= buflen
* voice_cf
[info
->emu
.vpar
[3]];
460 skb
= dev_alloc_skb(skb_res
+ buflen
+ audio_len
);
462 skb
= dev_alloc_skb(skb_res
+ buflen
);
466 "isdn_tty: Out of memory in ttyI%d senddown\n",
470 skb_reserve(skb
, skb_res
);
471 memcpy(skb_put(skb
, buflen
), info
->xmit_buf
, buflen
);
472 info
->xmit_count
= 0;
473 #ifdef CONFIG_ISDN_AUDIO
474 if (info
->vonline
& 2) {
475 /* For now, ifmt is fixed to 1 (alaw), since this
476 * is used with ISDN everywhere in the world, except
477 * US, Canada and Japan.
478 * Later, when US-ISDN protocols are implemented,
479 * this setting will depend on the D-channel protocol.
483 /* voice conversion/decompression */
484 switch (info
->emu
.vpar
[3]) {
488 /* adpcm, compatible to ZyXel 1496 modem
489 * with ROM revision 6.01
491 audio_len
= isdn_audio_adpcm2xlaw(info
->adpcms
,
494 skb_put(skb
, audio_len
),
496 skb_pull(skb
, buflen
);
497 skb_trim(skb
, audio_len
);
502 isdn_audio_alaw2ulaw(skb
->data
,
508 isdn_audio_ulaw2alaw(skb
->data
,
513 #endif /* CONFIG_ISDN_AUDIO */
514 if (info
->emu
.mdmreg
[REG_T70
] & BIT_T70
) {
515 /* Add T.70 simplified header */
516 if (info
->emu
.mdmreg
[REG_T70
] & BIT_T70_EXT
)
517 memcpy(skb_push(skb
, 2), "\1\0", 2);
519 memcpy(skb_push(skb
, 4), "\1\0\1\0", 4);
521 skb_queue_tail(&info
->xmit_queue
, skb
);
524 /************************************************************
528 * mostly "stolen" from original Linux-serial.c and friends.
530 ************************************************************/
532 /* The next routine is called once from within timer-interrupt
533 * triggered within isdn_tty_modem_ncarrier(). It calls
534 * isdn_tty_modem_result() to stuff a "NO CARRIER" Message
535 * into the tty's buffer.
538 isdn_tty_modem_do_ncarrier(unsigned long data
)
540 modem_info
*info
= (modem_info
*) data
;
541 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
544 /* Next routine is called, whenever the DTR-signal is raised.
545 * It checks the ncarrier-flag, and triggers the above routine
546 * when necessary. The ncarrier-flag is set, whenever DTR goes
550 isdn_tty_modem_ncarrier(modem_info
* info
)
552 if (info
->ncarrier
) {
553 info
->nc_timer
.expires
= jiffies
+ HZ
;
554 add_timer(&info
->nc_timer
);
559 * return the usage calculated by si and layer 2 protocol
562 isdn_calc_usage(int si
, int l2
)
564 int usg
= ISDN_USAGE_MODEM
;
566 #ifdef CONFIG_ISDN_AUDIO
569 case ISDN_PROTO_L2_MODEM
:
570 usg
= ISDN_USAGE_MODEM
;
572 #ifdef CONFIG_ISDN_TTY_FAX
573 case ISDN_PROTO_L2_FAX
:
574 usg
= ISDN_USAGE_FAX
;
577 case ISDN_PROTO_L2_TRANS
:
579 usg
= ISDN_USAGE_VOICE
;
587 /* isdn_tty_dial() performs dialing of a tty an the necessary
588 * setup of the lower levels before that.
591 isdn_tty_dial(char *n
, modem_info
* info
, atemu
* m
)
593 int usg
= ISDN_USAGE_MODEM
;
595 int l2
= m
->mdmreg
[REG_L2PROT
];
601 for (j
= 7; j
>= 0; j
--)
602 if (m
->mdmreg
[REG_SI1
] & (1 << j
)) {
606 usg
= isdn_calc_usage(si
, l2
);
607 #ifdef CONFIG_ISDN_AUDIO
609 (l2
!= ISDN_PROTO_L2_MODEM
)
610 #ifdef CONFIG_ISDN_TTY_FAX
611 && (l2
!= ISDN_PROTO_L2_FAX
)
614 l2
= ISDN_PROTO_L2_TRANS
;
615 usg
= ISDN_USAGE_VOICE
;
618 m
->mdmreg
[REG_SI1I
] = si2bit
[si
];
619 spin_lock_irqsave(&dev
->lock
, flags
);
620 i
= isdn_get_free_channel(usg
, l2
, m
->mdmreg
[REG_L3PROT
], -1, -1, m
->msn
);
622 spin_unlock_irqrestore(&dev
->lock
, flags
);
623 isdn_tty_modem_result(RESULT_NO_DIALTONE
, info
);
625 info
->isdn_driver
= dev
->drvmap
[i
];
626 info
->isdn_channel
= dev
->chanmap
[i
];
628 dev
->m_idx
[i
] = info
->line
;
629 dev
->usage
[i
] |= ISDN_USAGE_OUTGOING
;
631 strcpy(info
->last_num
, n
);
633 spin_unlock_irqrestore(&dev
->lock
, flags
);
634 cmd
.driver
= info
->isdn_driver
;
635 cmd
.arg
= info
->isdn_channel
;
636 cmd
.command
= ISDN_CMD_CLREAZ
;
638 strcpy(cmd
.parm
.num
, isdn_map_eaz2msn(m
->msn
, info
->isdn_driver
));
639 cmd
.driver
= info
->isdn_driver
;
640 cmd
.command
= ISDN_CMD_SETEAZ
;
642 cmd
.driver
= info
->isdn_driver
;
643 cmd
.command
= ISDN_CMD_SETL2
;
645 cmd
.arg
= info
->isdn_channel
+ (l2
<< 8);
647 cmd
.driver
= info
->isdn_driver
;
648 cmd
.command
= ISDN_CMD_SETL3
;
649 cmd
.arg
= info
->isdn_channel
+ (m
->mdmreg
[REG_L3PROT
] << 8);
650 #ifdef CONFIG_ISDN_TTY_FAX
651 if (l2
== ISDN_PROTO_L2_FAX
) {
652 cmd
.parm
.fax
= info
->fax
;
653 info
->fax
->direction
= ISDN_TTY_FAX_CONN_OUT
;
657 cmd
.driver
= info
->isdn_driver
;
658 cmd
.arg
= info
->isdn_channel
;
659 sprintf(cmd
.parm
.setup
.phone
, "%s", n
);
660 sprintf(cmd
.parm
.setup
.eazmsn
, "%s",
661 isdn_map_eaz2msn(m
->msn
, info
->isdn_driver
));
662 cmd
.parm
.setup
.si1
= si
;
663 cmd
.parm
.setup
.si2
= m
->mdmreg
[REG_SI2
];
664 cmd
.command
= ISDN_CMD_DIAL
;
666 info
->emu
.carrierwait
= 0;
667 strcpy(dev
->num
[i
], n
);
670 isdn_timer_ctrl(ISDN_TIMER_CARRIER
, 1);
674 /* isdn_tty_hangup() disassociates a tty from the real
675 * ISDN-line (hangup). The usage-status is cleared
676 * and some cleanup is done also.
679 isdn_tty_modem_hup(modem_info
* info
, int local
)
687 di
= info
->isdn_driver
;
688 ch
= info
->isdn_channel
;
689 if (di
< 0 || ch
< 0)
692 info
->isdn_driver
= -1;
693 info
->isdn_channel
= -1;
695 #ifdef ISDN_DEBUG_MODEM_HUP
696 printk(KERN_DEBUG
"Mhup ttyI%d\n", info
->line
);
699 isdn_tty_flush_buffer(info
->tty
);
701 info
->last_lhup
= local
;
703 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
705 #ifdef CONFIG_ISDN_AUDIO
707 #ifdef CONFIG_ISDN_TTY_FAX
709 info
->fax
->phase
= ISDN_FAX_PHASE_IDLE
;
711 info
->emu
.vpar
[4] = 0;
712 info
->emu
.vpar
[5] = 8;
713 kfree(info
->dtmf_state
);
714 info
->dtmf_state
= NULL
;
715 kfree(info
->silence_state
);
716 info
->silence_state
= NULL
;
722 if ((info
->msr
& UART_MSR_RI
) &&
723 (info
->emu
.mdmreg
[REG_RUNG
] & BIT_RUNG
))
724 isdn_tty_modem_result(RESULT_RUNG
, info
);
725 info
->msr
&= ~(UART_MSR_DCD
| UART_MSR_RI
);
726 info
->lsr
|= UART_LSR_TEMT
;
730 cmd
.command
= ISDN_CMD_HANGUP
;
735 isdn_all_eaz(di
, ch
);
736 info
->emu
.mdmreg
[REG_RINGCNT
] = 0;
737 isdn_free_channel(di
, ch
, 0);
739 if (info
->drv_index
>= 0) {
740 dev
->m_idx
[info
->drv_index
] = -1;
741 info
->drv_index
= -1;
746 * Begin of a CAPI like interface, currently used only for
747 * supplementary service (CAPI 2.0 part III)
749 #include <linux/isdn/capicmd.h>
752 isdn_tty_capi_facility(capi_msg
*cm
) {
753 return(-1); /* dummy */
756 /* isdn_tty_suspend() tries to suspend the current tty connection
759 isdn_tty_suspend(char *id
, modem_info
* info
, atemu
* m
)
768 #ifdef ISDN_DEBUG_MODEM_SERVICES
769 printk(KERN_DEBUG
"Msusp ttyI%d\n", info
->line
);
772 if ((info
->isdn_driver
>= 0)) {
773 cmd
.parm
.cmsg
.Length
= l
+18;
774 cmd
.parm
.cmsg
.Command
= CAPI_FACILITY
;
775 cmd
.parm
.cmsg
.Subcommand
= CAPI_REQ
;
776 cmd
.parm
.cmsg
.adr
.Controller
= info
->isdn_driver
+ 1;
777 cmd
.parm
.cmsg
.para
[0] = 3; /* 16 bit 0x0003 suplementary service */
778 cmd
.parm
.cmsg
.para
[1] = 0;
779 cmd
.parm
.cmsg
.para
[2] = l
+ 3;
780 cmd
.parm
.cmsg
.para
[3] = 4; /* 16 bit 0x0004 Suspend */
781 cmd
.parm
.cmsg
.para
[4] = 0;
782 cmd
.parm
.cmsg
.para
[5] = l
;
783 strncpy(&cmd
.parm
.cmsg
.para
[6], id
, l
);
784 cmd
.command
= CAPI_PUT_MESSAGE
;
785 cmd
.driver
= info
->isdn_driver
;
786 cmd
.arg
= info
->isdn_channel
;
791 /* isdn_tty_resume() tries to resume a suspended call
792 * setup of the lower levels before that. unfortunatly here is no
793 * checking for compatibility of used protocols implemented by Q931
794 * It does the same things like isdn_tty_dial, the last command
795 * is different, may be we can merge it.
799 isdn_tty_resume(char *id
, modem_info
* info
, atemu
* m
)
801 int usg
= ISDN_USAGE_MODEM
;
803 int l2
= m
->mdmreg
[REG_L2PROT
];
811 for (j
= 7; j
>= 0; j
--)
812 if (m
->mdmreg
[REG_SI1
] & (1 << j
)) {
816 usg
= isdn_calc_usage(si
, l2
);
817 #ifdef CONFIG_ISDN_AUDIO
819 (l2
!= ISDN_PROTO_L2_MODEM
)
820 #ifdef CONFIG_ISDN_TTY_FAX
821 && (l2
!= ISDN_PROTO_L2_FAX
)
824 l2
= ISDN_PROTO_L2_TRANS
;
825 usg
= ISDN_USAGE_VOICE
;
828 m
->mdmreg
[REG_SI1I
] = si2bit
[si
];
829 spin_lock_irqsave(&dev
->lock
, flags
);
830 i
= isdn_get_free_channel(usg
, l2
, m
->mdmreg
[REG_L3PROT
], -1, -1, m
->msn
);
832 spin_unlock_irqrestore(&dev
->lock
, flags
);
833 isdn_tty_modem_result(RESULT_NO_DIALTONE
, info
);
835 info
->isdn_driver
= dev
->drvmap
[i
];
836 info
->isdn_channel
= dev
->chanmap
[i
];
838 dev
->m_idx
[i
] = info
->line
;
839 dev
->usage
[i
] |= ISDN_USAGE_OUTGOING
;
841 // strcpy(info->last_num, n);
843 spin_unlock_irqrestore(&dev
->lock
, flags
);
844 cmd
.driver
= info
->isdn_driver
;
845 cmd
.arg
= info
->isdn_channel
;
846 cmd
.command
= ISDN_CMD_CLREAZ
;
848 strcpy(cmd
.parm
.num
, isdn_map_eaz2msn(m
->msn
, info
->isdn_driver
));
849 cmd
.driver
= info
->isdn_driver
;
850 cmd
.command
= ISDN_CMD_SETEAZ
;
852 cmd
.driver
= info
->isdn_driver
;
853 cmd
.command
= ISDN_CMD_SETL2
;
855 cmd
.arg
= info
->isdn_channel
+ (l2
<< 8);
857 cmd
.driver
= info
->isdn_driver
;
858 cmd
.command
= ISDN_CMD_SETL3
;
859 cmd
.arg
= info
->isdn_channel
+ (m
->mdmreg
[REG_L3PROT
] << 8);
861 cmd
.driver
= info
->isdn_driver
;
862 cmd
.arg
= info
->isdn_channel
;
863 cmd
.parm
.cmsg
.Length
= l
+18;
864 cmd
.parm
.cmsg
.Command
= CAPI_FACILITY
;
865 cmd
.parm
.cmsg
.Subcommand
= CAPI_REQ
;
866 cmd
.parm
.cmsg
.adr
.Controller
= info
->isdn_driver
+ 1;
867 cmd
.parm
.cmsg
.para
[0] = 3; /* 16 bit 0x0003 suplementary service */
868 cmd
.parm
.cmsg
.para
[1] = 0;
869 cmd
.parm
.cmsg
.para
[2] = l
+3;
870 cmd
.parm
.cmsg
.para
[3] = 5; /* 16 bit 0x0005 Resume */
871 cmd
.parm
.cmsg
.para
[4] = 0;
872 cmd
.parm
.cmsg
.para
[5] = l
;
873 strncpy(&cmd
.parm
.cmsg
.para
[6], id
, l
);
874 cmd
.command
=CAPI_PUT_MESSAGE
;
876 // strcpy(dev->num[i], n);
879 isdn_timer_ctrl(ISDN_TIMER_CARRIER
, 1);
883 /* isdn_tty_send_msg() sends a message to a HL driver
884 * This is used for hybrid modem cards to send AT commands to it
888 isdn_tty_send_msg(modem_info
* info
, atemu
* m
, char *msg
)
890 int usg
= ISDN_USAGE_MODEM
;
892 int l2
= m
->mdmreg
[REG_L2PROT
];
901 isdn_tty_modem_result(RESULT_ERROR
, info
);
904 for (j
= 7; j
>= 0; j
--)
905 if (m
->mdmreg
[REG_SI1
] & (1 << j
)) {
909 usg
= isdn_calc_usage(si
, l2
);
910 #ifdef CONFIG_ISDN_AUDIO
912 (l2
!= ISDN_PROTO_L2_MODEM
)
913 #ifdef CONFIG_ISDN_TTY_FAX
914 && (l2
!= ISDN_PROTO_L2_FAX
)
917 l2
= ISDN_PROTO_L2_TRANS
;
918 usg
= ISDN_USAGE_VOICE
;
921 m
->mdmreg
[REG_SI1I
] = si2bit
[si
];
922 spin_lock_irqsave(&dev
->lock
, flags
);
923 i
= isdn_get_free_channel(usg
, l2
, m
->mdmreg
[REG_L3PROT
], -1, -1, m
->msn
);
925 spin_unlock_irqrestore(&dev
->lock
, flags
);
926 isdn_tty_modem_result(RESULT_NO_DIALTONE
, info
);
928 info
->isdn_driver
= dev
->drvmap
[i
];
929 info
->isdn_channel
= dev
->chanmap
[i
];
931 dev
->m_idx
[i
] = info
->line
;
932 dev
->usage
[i
] |= ISDN_USAGE_OUTGOING
;
935 spin_unlock_irqrestore(&dev
->lock
, flags
);
936 cmd
.driver
= info
->isdn_driver
;
937 cmd
.arg
= info
->isdn_channel
;
938 cmd
.command
= ISDN_CMD_CLREAZ
;
940 strcpy(cmd
.parm
.num
, isdn_map_eaz2msn(m
->msn
, info
->isdn_driver
));
941 cmd
.driver
= info
->isdn_driver
;
942 cmd
.command
= ISDN_CMD_SETEAZ
;
944 cmd
.driver
= info
->isdn_driver
;
945 cmd
.command
= ISDN_CMD_SETL2
;
947 cmd
.arg
= info
->isdn_channel
+ (l2
<< 8);
949 cmd
.driver
= info
->isdn_driver
;
950 cmd
.command
= ISDN_CMD_SETL3
;
951 cmd
.arg
= info
->isdn_channel
+ (m
->mdmreg
[REG_L3PROT
] << 8);
953 cmd
.driver
= info
->isdn_driver
;
954 cmd
.arg
= info
->isdn_channel
;
955 cmd
.parm
.cmsg
.Length
= l
+14;
956 cmd
.parm
.cmsg
.Command
= CAPI_MANUFACTURER
;
957 cmd
.parm
.cmsg
.Subcommand
= CAPI_REQ
;
958 cmd
.parm
.cmsg
.adr
.Controller
= info
->isdn_driver
+ 1;
959 cmd
.parm
.cmsg
.para
[0] = l
+1;
960 strncpy(&cmd
.parm
.cmsg
.para
[1], msg
, l
);
961 cmd
.parm
.cmsg
.para
[l
+1] = 0xd;
962 cmd
.command
=CAPI_PUT_MESSAGE
;
963 /* info->dialing = 1;
964 strcpy(dev->num[i], n);
972 isdn_tty_paranoia_check(modem_info
*info
, char *name
, const char *routine
)
974 #ifdef MODEM_PARANOIA_CHECK
976 printk(KERN_WARNING
"isdn_tty: null info_struct for %s in %s\n",
980 if (info
->magic
!= ISDN_ASYNC_MAGIC
) {
981 printk(KERN_WARNING
"isdn_tty: bad magic for modem struct %s in %s\n",
990 * This routine is called to set the UART divisor registers to match
991 * the specified baud rate for a serial port.
994 isdn_tty_change_speed(modem_info
* info
)
1002 if (!info
->tty
|| !info
->tty
->termios
)
1004 cflag
= info
->tty
->termios
->c_cflag
;
1006 quot
= i
= cflag
& CBAUD
;
1010 info
->tty
->termios
->c_cflag
&= ~CBAUDEX
;
1015 info
->mcr
|= UART_MCR_DTR
;
1016 isdn_tty_modem_ncarrier(info
);
1018 info
->mcr
&= ~UART_MCR_DTR
;
1019 if (info
->emu
.mdmreg
[REG_DTRHUP
] & BIT_DTRHUP
) {
1020 #ifdef ISDN_DEBUG_MODEM_HUP
1021 printk(KERN_DEBUG
"Mhup in changespeed\n");
1025 isdn_tty_modem_reset_regs(info
, 0);
1026 isdn_tty_modem_hup(info
, 1);
1030 /* byte size and parity */
1031 cval
= cflag
& (CSIZE
| CSTOPB
);
1034 cval
|= UART_LCR_PARITY
;
1035 if (!(cflag
& PARODD
))
1036 cval
|= UART_LCR_EPAR
;
1039 /* CTS flow control flag and modem status interrupts */
1040 if (cflag
& CRTSCTS
) {
1041 info
->flags
|= ISDN_ASYNC_CTS_FLOW
;
1043 info
->flags
&= ~ISDN_ASYNC_CTS_FLOW
;
1045 info
->flags
&= ~ISDN_ASYNC_CHECK_CD
;
1047 info
->flags
|= ISDN_ASYNC_CHECK_CD
;
1052 isdn_tty_startup(modem_info
* info
)
1054 if (info
->flags
& ISDN_ASYNC_INITIALIZED
)
1056 isdn_lock_drivers();
1057 #ifdef ISDN_DEBUG_MODEM_OPEN
1058 printk(KERN_DEBUG
"starting up ttyi%d ...\n", info
->line
);
1061 * Now, initialize the UART
1063 info
->mcr
= UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
;
1065 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
1067 * and set the speed of the serial port
1069 isdn_tty_change_speed(info
);
1071 info
->flags
|= ISDN_ASYNC_INITIALIZED
;
1072 info
->msr
|= (UART_MSR_DSR
| UART_MSR_CTS
);
1073 info
->send_outstanding
= 0;
1078 * This routine will shutdown a serial port; interrupts are disabled, and
1079 * DTR is dropped if the hangup on close termio flag is on.
1082 isdn_tty_shutdown(modem_info
* info
)
1084 if (!(info
->flags
& ISDN_ASYNC_INITIALIZED
))
1086 #ifdef ISDN_DEBUG_MODEM_OPEN
1087 printk(KERN_DEBUG
"Shutting down isdnmodem port %d ....\n", info
->line
);
1089 isdn_unlock_drivers();
1090 info
->msr
&= ~UART_MSR_RI
;
1091 if (!info
->tty
|| (info
->tty
->termios
->c_cflag
& HUPCL
)) {
1092 info
->mcr
&= ~(UART_MCR_DTR
| UART_MCR_RTS
);
1093 if (info
->emu
.mdmreg
[REG_DTRHUP
] & BIT_DTRHUP
) {
1094 isdn_tty_modem_reset_regs(info
, 0);
1095 #ifdef ISDN_DEBUG_MODEM_HUP
1096 printk(KERN_DEBUG
"Mhup in isdn_tty_shutdown\n");
1098 isdn_tty_modem_hup(info
, 1);
1102 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
1104 info
->flags
&= ~ISDN_ASYNC_INITIALIZED
;
1107 /* isdn_tty_write() is the main send-routine. It is called from the upper
1108 * levels within the kernel to perform sending data. Depending on the
1109 * online-flag it either directs output to the at-command-interpreter or
1110 * to the lower level. Additional tasks done here:
1111 * - If online, check for escape-sequence (+++)
1112 * - If sending audio-data, call isdn_tty_DLEdown() to parse DLE-codes.
1113 * - If receiving audio-data, call isdn_tty_end_vrx() to abort if needed.
1114 * - If dialing, abort dial.
1117 isdn_tty_write(struct tty_struct
*tty
, const u_char
* buf
, int count
)
1121 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1122 atemu
*m
= &info
->emu
;
1124 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_write"))
1126 /* See isdn_tty_senddown() */
1127 atomic_inc(&info
->xmit_lock
);
1130 if (c
> info
->xmit_size
- info
->xmit_count
)
1131 c
= info
->xmit_size
- info
->xmit_count
;
1132 if (info
->isdn_driver
>= 0 && c
> dev
->drv
[info
->isdn_driver
]->maxbufsize
)
1133 c
= dev
->drv
[info
->isdn_driver
]->maxbufsize
;
1136 if ((info
->online
> 1)
1137 #ifdef CONFIG_ISDN_AUDIO
1138 || (info
->vonline
& 3)
1141 #ifdef CONFIG_ISDN_AUDIO
1144 isdn_tty_check_esc(buf
, m
->mdmreg
[REG_ESC
], c
,
1147 memcpy(&(info
->xmit_buf
[info
->xmit_count
]), buf
, c
);
1148 #ifdef CONFIG_ISDN_AUDIO
1149 if (info
->vonline
) {
1150 int cc
= isdn_tty_handleDLEdown(info
, m
, c
);
1151 if (info
->vonline
& 2) {
1153 /* If DLE decoding results in zero-transmit, but
1154 * c originally was non-zero, do a wakeup.
1157 info
->msr
|= UART_MSR_CTS
;
1158 info
->lsr
|= UART_LSR_TEMT
;
1160 info
->xmit_count
+= cc
;
1162 if ((info
->vonline
& 3) == 1) {
1163 /* Do NOT handle Ctrl-Q or Ctrl-S
1164 * when in full-duplex audio mode.
1166 if (isdn_tty_end_vrx(buf
, c
)) {
1167 info
->vonline
&= ~1;
1168 #ifdef ISDN_DEBUG_MODEM_VOICE
1170 "got !^Q/^S, send DLE-ETX,VCON on ttyI%d\n",
1173 isdn_tty_at_cout("\020\003\r\nVCON\r\n", info
);
1177 if (TTY_IS_FCLASS1(info
)) {
1178 int cc
= isdn_tty_handleDLEdown(info
, m
, c
);
1180 if (info
->vonline
& 4) { /* ETX seen */
1183 c
.command
= ISDN_CMD_FAXCMD
;
1184 c
.driver
= info
->isdn_driver
;
1185 c
.arg
= info
->isdn_channel
;
1186 c
.parm
.aux
.cmd
= ISDN_FAX_CLASS1_CTRL
;
1187 c
.parm
.aux
.subcmd
= ETX
;
1191 #ifdef ISDN_DEBUG_MODEM_VOICE
1192 printk(KERN_DEBUG
"fax dle cc/c %d/%d\n", cc
, c
);
1194 info
->xmit_count
+= cc
;
1197 info
->xmit_count
+= c
;
1199 info
->msr
|= UART_MSR_CTS
;
1200 info
->lsr
|= UART_LSR_TEMT
;
1201 if (info
->dialing
) {
1203 #ifdef ISDN_DEBUG_MODEM_HUP
1204 printk(KERN_DEBUG
"Mhup in isdn_tty_write\n");
1206 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
1207 isdn_tty_modem_hup(info
, 1);
1209 c
= isdn_tty_edit_at(buf
, c
, info
);
1215 atomic_dec(&info
->xmit_lock
);
1216 if ((info
->xmit_count
) || !skb_queue_empty(&info
->xmit_queue
)) {
1217 if (m
->mdmreg
[REG_DXMT
] & BIT_DXMT
) {
1218 isdn_tty_senddown(info
);
1219 isdn_tty_tint(info
);
1221 isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT
, 1);
1227 isdn_tty_write_room(struct tty_struct
*tty
)
1229 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1232 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_write_room"))
1235 return info
->xmit_size
;
1236 ret
= info
->xmit_size
- info
->xmit_count
;
1237 return (ret
< 0) ? 0 : ret
;
1241 isdn_tty_chars_in_buffer(struct tty_struct
*tty
)
1243 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1245 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_chars_in_buffer"))
1249 return (info
->xmit_count
);
1253 isdn_tty_flush_buffer(struct tty_struct
*tty
)
1260 info
= (modem_info
*) tty
->driver_data
;
1261 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_flush_buffer")) {
1264 isdn_tty_cleanup_xmit(info
);
1265 info
->xmit_count
= 0;
1270 isdn_tty_flush_chars(struct tty_struct
*tty
)
1272 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1274 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_flush_chars"))
1276 if ((info
->xmit_count
) || !skb_queue_empty(&info
->xmit_queue
))
1277 isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT
, 1);
1281 * ------------------------------------------------------------
1282 * isdn_tty_throttle()
1284 * This routine is called by the upper-layer tty layer to signal that
1285 * incoming characters should be throttled.
1286 * ------------------------------------------------------------
1289 isdn_tty_throttle(struct tty_struct
*tty
)
1291 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1293 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_throttle"))
1296 info
->x_char
= STOP_CHAR(tty
);
1297 info
->mcr
&= ~UART_MCR_RTS
;
1301 isdn_tty_unthrottle(struct tty_struct
*tty
)
1303 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1305 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_unthrottle"))
1311 info
->x_char
= START_CHAR(tty
);
1313 info
->mcr
|= UART_MCR_RTS
;
1317 * ------------------------------------------------------------
1318 * isdn_tty_ioctl() and friends
1319 * ------------------------------------------------------------
1323 * isdn_tty_get_lsr_info - get line status register info
1325 * Purpose: Let user call ioctl() to get info when the UART physically
1326 * is emptied. On bus types like RS485, the transmitter must
1327 * release the bus after transmitting. This must be done when
1328 * the transmit shift register is empty, not be done when the
1329 * transmit holding register is empty. This functionality
1330 * allows RS485 driver to be written in user space.
1333 isdn_tty_get_lsr_info(modem_info
* info
, uint __user
* value
)
1339 result
= ((status
& UART_LSR_TEMT
) ? TIOCSER_TEMT
: 0);
1340 return put_user(result
, value
);
1345 isdn_tty_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1347 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1348 u_char control
, status
;
1350 if (isdn_tty_paranoia_check(info
, tty
->name
, __func__
))
1352 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1356 #ifdef ISDN_DEBUG_MODEM_IOCTL
1357 printk(KERN_DEBUG
"ttyI%d ioctl TIOCMGET\n", info
->line
);
1360 control
= info
->mcr
;
1363 return ((control
& UART_MCR_RTS
) ? TIOCM_RTS
: 0)
1364 | ((control
& UART_MCR_DTR
) ? TIOCM_DTR
: 0)
1365 | ((status
& UART_MSR_DCD
) ? TIOCM_CAR
: 0)
1366 | ((status
& UART_MSR_RI
) ? TIOCM_RNG
: 0)
1367 | ((status
& UART_MSR_DSR
) ? TIOCM_DSR
: 0)
1368 | ((status
& UART_MSR_CTS
) ? TIOCM_CTS
: 0);
1372 isdn_tty_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1373 unsigned int set
, unsigned int clear
)
1375 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1377 if (isdn_tty_paranoia_check(info
, tty
->name
, __func__
))
1379 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1382 #ifdef ISDN_DEBUG_MODEM_IOCTL
1383 printk(KERN_DEBUG
"ttyI%d ioctl TIOCMxxx: %x %x\n", info
->line
, set
, clear
);
1387 if (set
& TIOCM_RTS
)
1388 info
->mcr
|= UART_MCR_RTS
;
1389 if (set
& TIOCM_DTR
) {
1390 info
->mcr
|= UART_MCR_DTR
;
1391 isdn_tty_modem_ncarrier(info
);
1394 if (clear
& TIOCM_RTS
)
1395 info
->mcr
&= ~UART_MCR_RTS
;
1396 if (clear
& TIOCM_DTR
) {
1397 info
->mcr
&= ~UART_MCR_DTR
;
1398 if (info
->emu
.mdmreg
[REG_DTRHUP
] & BIT_DTRHUP
) {
1399 isdn_tty_modem_reset_regs(info
, 0);
1400 #ifdef ISDN_DEBUG_MODEM_HUP
1401 printk(KERN_DEBUG
"Mhup in TIOCMSET\n");
1405 isdn_tty_modem_hup(info
, 1);
1413 isdn_tty_ioctl(struct tty_struct
*tty
, struct file
*file
,
1414 uint cmd
, ulong arg
)
1416 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1419 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_ioctl"))
1421 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1424 case TCSBRK
: /* SVID version: non-zero arg --> no break */
1425 #ifdef ISDN_DEBUG_MODEM_IOCTL
1426 printk(KERN_DEBUG
"ttyI%d ioctl TCSBRK\n", info
->line
);
1428 retval
= tty_check_change(tty
);
1431 tty_wait_until_sent(tty
, 0);
1433 case TCSBRKP
: /* support for POSIX tcsendbreak() */
1434 #ifdef ISDN_DEBUG_MODEM_IOCTL
1435 printk(KERN_DEBUG
"ttyI%d ioctl TCSBRKP\n", info
->line
);
1437 retval
= tty_check_change(tty
);
1440 tty_wait_until_sent(tty
, 0);
1442 case TIOCSERGETLSR
: /* Get line status register */
1443 #ifdef ISDN_DEBUG_MODEM_IOCTL
1444 printk(KERN_DEBUG
"ttyI%d ioctl TIOCSERGETLSR\n", info
->line
);
1446 return isdn_tty_get_lsr_info(info
, (uint __user
*) arg
);
1448 #ifdef ISDN_DEBUG_MODEM_IOCTL
1449 printk(KERN_DEBUG
"UNKNOWN ioctl 0x%08x on ttyi%d\n", cmd
, info
->line
);
1451 return -ENOIOCTLCMD
;
1457 isdn_tty_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1459 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1462 isdn_tty_change_speed(info
);
1464 if (tty
->termios
->c_cflag
== old_termios
->c_cflag
&&
1465 tty
->termios
->c_ispeed
== old_termios
->c_ispeed
&&
1466 tty
->termios
->c_ospeed
== old_termios
->c_ospeed
)
1468 isdn_tty_change_speed(info
);
1469 if ((old_termios
->c_cflag
& CRTSCTS
) &&
1470 !(tty
->termios
->c_cflag
& CRTSCTS
))
1471 tty
->hw_stopped
= 0;
1476 * ------------------------------------------------------------
1477 * isdn_tty_open() and friends
1478 * ------------------------------------------------------------
1481 isdn_tty_block_til_ready(struct tty_struct
*tty
, struct file
*filp
, modem_info
* info
)
1483 DECLARE_WAITQUEUE(wait
, NULL
);
1488 * If the device is in the middle of being closed, then block
1489 * until it's done, and then try again.
1491 if (tty_hung_up_p(filp
) ||
1492 (info
->flags
& ISDN_ASYNC_CLOSING
)) {
1493 if (info
->flags
& ISDN_ASYNC_CLOSING
)
1494 interruptible_sleep_on(&info
->close_wait
);
1495 #ifdef MODEM_DO_RESTART
1496 if (info
->flags
& ISDN_ASYNC_HUP_NOTIFY
)
1499 return -ERESTARTSYS
;
1505 * If non-blocking mode is set, then make the check up front
1508 if ((filp
->f_flags
& O_NONBLOCK
) ||
1509 (tty
->flags
& (1 << TTY_IO_ERROR
))) {
1510 if (info
->flags
& ISDN_ASYNC_CALLOUT_ACTIVE
)
1512 info
->flags
|= ISDN_ASYNC_NORMAL_ACTIVE
;
1515 if (info
->flags
& ISDN_ASYNC_CALLOUT_ACTIVE
) {
1516 if (info
->normal_termios
.c_cflag
& CLOCAL
)
1519 if (tty
->termios
->c_cflag
& CLOCAL
)
1523 * Block waiting for the carrier detect and the line to become
1524 * free (i.e., not in use by the callout). While we are in
1525 * this loop, info->count is dropped by one, so that
1526 * isdn_tty_close() knows when to free things. We restore it upon
1527 * exit, either normal or abnormal.
1530 add_wait_queue(&info
->open_wait
, &wait
);
1531 #ifdef ISDN_DEBUG_MODEM_OPEN
1532 printk(KERN_DEBUG
"isdn_tty_block_til_ready before block: ttyi%d, count = %d\n",
1533 info
->line
, info
->count
);
1535 if (!(tty_hung_up_p(filp
)))
1537 info
->blocked_open
++;
1539 set_current_state(TASK_INTERRUPTIBLE
);
1540 if (tty_hung_up_p(filp
) ||
1541 !(info
->flags
& ISDN_ASYNC_INITIALIZED
)) {
1542 #ifdef MODEM_DO_RESTART
1543 if (info
->flags
& ISDN_ASYNC_HUP_NOTIFY
)
1546 retval
= -ERESTARTSYS
;
1552 if (!(info
->flags
& ISDN_ASYNC_CALLOUT_ACTIVE
) &&
1553 !(info
->flags
& ISDN_ASYNC_CLOSING
) &&
1554 (do_clocal
|| (info
->msr
& UART_MSR_DCD
))) {
1557 if (signal_pending(current
)) {
1558 retval
= -ERESTARTSYS
;
1561 #ifdef ISDN_DEBUG_MODEM_OPEN
1562 printk(KERN_DEBUG
"isdn_tty_block_til_ready blocking: ttyi%d, count = %d\n",
1563 info
->line
, info
->count
);
1567 current
->state
= TASK_RUNNING
;
1568 remove_wait_queue(&info
->open_wait
, &wait
);
1569 if (!tty_hung_up_p(filp
))
1571 info
->blocked_open
--;
1572 #ifdef ISDN_DEBUG_MODEM_OPEN
1573 printk(KERN_DEBUG
"isdn_tty_block_til_ready after blocking: ttyi%d, count = %d\n",
1574 info
->line
, info
->count
);
1578 info
->flags
|= ISDN_ASYNC_NORMAL_ACTIVE
;
1583 * This routine is called whenever a serial port is opened. It
1584 * enables interrupts for a serial port, linking in its async structure into
1585 * the IRQ chain. It also performs the serial-specific
1586 * initialization for the tty structure.
1589 isdn_tty_open(struct tty_struct
*tty
, struct file
*filp
)
1595 if (line
< 0 || line
> ISDN_MAX_CHANNELS
)
1597 info
= &dev
->mdm
.info
[line
];
1598 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_open"))
1600 if (!try_module_get(info
->owner
)) {
1601 printk(KERN_WARNING
"%s: cannot reserve module\n", __func__
);
1604 #ifdef ISDN_DEBUG_MODEM_OPEN
1605 printk(KERN_DEBUG
"isdn_tty_open %s, count = %d\n", tty
->name
,
1609 tty
->driver_data
= info
;
1612 * Start up serial port
1614 retval
= isdn_tty_startup(info
);
1616 #ifdef ISDN_DEBUG_MODEM_OPEN
1617 printk(KERN_DEBUG
"isdn_tty_open return after startup\n");
1619 module_put(info
->owner
);
1622 retval
= isdn_tty_block_til_ready(tty
, filp
, info
);
1624 #ifdef ISDN_DEBUG_MODEM_OPEN
1625 printk(KERN_DEBUG
"isdn_tty_open return after isdn_tty_block_til_ready \n");
1627 module_put(info
->owner
);
1630 #ifdef ISDN_DEBUG_MODEM_OPEN
1631 printk(KERN_DEBUG
"isdn_tty_open ttyi%d successful...\n", info
->line
);
1634 #ifdef ISDN_DEBUG_MODEM_OPEN
1635 printk(KERN_DEBUG
"isdn_tty_open normal exit\n");
1641 isdn_tty_close(struct tty_struct
*tty
, struct file
*filp
)
1643 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1646 if (!info
|| isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_close"))
1648 if (tty_hung_up_p(filp
)) {
1649 #ifdef ISDN_DEBUG_MODEM_OPEN
1650 printk(KERN_DEBUG
"isdn_tty_close return after tty_hung_up_p\n");
1654 if ((tty
->count
== 1) && (info
->count
!= 1)) {
1656 * Uh, oh. tty->count is 1, which means that the tty
1657 * structure will be freed. Info->count should always
1658 * be one in these conditions. If it's greater than
1659 * one, we've got real problems, since it means the
1660 * serial port won't be shutdown.
1662 printk(KERN_ERR
"isdn_tty_close: bad port count; tty->count is 1, "
1663 "info->count is %d\n", info
->count
);
1666 if (--info
->count
< 0) {
1667 printk(KERN_ERR
"isdn_tty_close: bad port count for ttyi%d: %d\n",
1668 info
->line
, info
->count
);
1672 #ifdef ISDN_DEBUG_MODEM_OPEN
1673 printk(KERN_DEBUG
"isdn_tty_close after info->count != 0\n");
1675 module_put(info
->owner
);
1678 info
->flags
|= ISDN_ASYNC_CLOSING
;
1680 * Save the termios structure, since this port may have
1681 * separate termios for callout and dialin.
1683 if (info
->flags
& ISDN_ASYNC_NORMAL_ACTIVE
)
1684 info
->normal_termios
= *tty
->termios
;
1685 if (info
->flags
& ISDN_ASYNC_CALLOUT_ACTIVE
)
1686 info
->callout_termios
= *tty
->termios
;
1690 * At this point we stop accepting input. To do this, we
1691 * disable the receive line status interrupts, and tell the
1692 * interrupt driver to stop checking the data ready bit in the
1693 * line status register.
1695 if (info
->flags
& ISDN_ASYNC_INITIALIZED
) {
1696 tty_wait_until_sent(tty
, 3000); /* 30 seconds timeout */
1698 * Before we drop DTR, make sure the UART transmitter
1699 * has completely drained; this is especially
1700 * important if there is a transmit FIFO!
1702 timeout
= jiffies
+ HZ
;
1703 while (!(info
->lsr
& UART_LSR_TEMT
)) {
1704 schedule_timeout_interruptible(20);
1705 if (time_after(jiffies
,timeout
))
1710 isdn_tty_shutdown(info
);
1712 if (tty
->driver
->flush_buffer
)
1713 tty
->driver
->flush_buffer(tty
);
1714 tty_ldisc_flush(tty
);
1718 module_put(info
->owner
);
1719 if (info
->blocked_open
) {
1720 msleep_interruptible(500);
1721 wake_up_interruptible(&info
->open_wait
);
1723 info
->flags
&= ~(ISDN_ASYNC_NORMAL_ACTIVE
| ISDN_ASYNC_CLOSING
);
1724 wake_up_interruptible(&info
->close_wait
);
1725 #ifdef ISDN_DEBUG_MODEM_OPEN
1726 printk(KERN_DEBUG
"isdn_tty_close normal exit\n");
1731 * isdn_tty_hangup() --- called by tty_hangup() when a hangup is signaled.
1734 isdn_tty_hangup(struct tty_struct
*tty
)
1736 modem_info
*info
= (modem_info
*) tty
->driver_data
;
1738 if (isdn_tty_paranoia_check(info
, tty
->name
, "isdn_tty_hangup"))
1740 isdn_tty_shutdown(info
);
1742 info
->flags
&= ~(ISDN_ASYNC_NORMAL_ACTIVE
| ISDN_ASYNC_CALLOUT_ACTIVE
);
1744 wake_up_interruptible(&info
->open_wait
);
1747 /* This routine initializes all emulator-data.
1750 isdn_tty_reset_profile(atemu
* m
)
1763 m
->profile
[11] = 70;
1764 m
->profile
[12] = 0x45;
1766 m
->profile
[14] = ISDN_PROTO_L2_X75I
;
1767 m
->profile
[15] = ISDN_PROTO_L3_TRANS
;
1768 m
->profile
[16] = ISDN_SERIAL_XMIT_SIZE
/ 16;
1769 m
->profile
[17] = ISDN_MODEM_WINSIZE
;
1778 #ifdef CONFIG_ISDN_AUDIO
1780 isdn_tty_modem_reset_vpar(atemu
* m
)
1782 m
->vpar
[0] = 2; /* Voice-device (2 = phone line) */
1783 m
->vpar
[1] = 0; /* Silence detection level (0 = none ) */
1784 m
->vpar
[2] = 70; /* Silence interval (7 sec. ) */
1785 m
->vpar
[3] = 2; /* Compression type (1 = ADPCM-2 ) */
1786 m
->vpar
[4] = 0; /* DTMF detection level (0 = softcode ) */
1787 m
->vpar
[5] = 8; /* DTMF interval (8 * 5 ms. ) */
1791 #ifdef CONFIG_ISDN_TTY_FAX
1793 isdn_tty_modem_reset_faxpar(modem_info
* info
)
1795 T30_s
*f
= info
->fax
;
1798 f
->phase
= ISDN_FAX_PHASE_IDLE
;
1800 f
->resolution
= 1; /* fine */
1801 f
->rate
= 5; /* 14400 bit/s */
1808 memset(&f
->id
[0], 32, FAXIDLEN
- 1);
1809 f
->id
[FAXIDLEN
- 1] = 0;
1820 memset(&f
->pollid
[0], 32, FAXIDLEN
- 1);
1821 f
->pollid
[FAXIDLEN
- 1] = 0;
1826 isdn_tty_modem_reset_regs(modem_info
* info
, int force
)
1828 atemu
*m
= &info
->emu
;
1829 if ((m
->mdmreg
[REG_DTRR
] & BIT_DTRR
) || force
) {
1830 memcpy(m
->mdmreg
, m
->profile
, ISDN_MODEM_NUMREG
);
1831 memcpy(m
->msn
, m
->pmsn
, ISDN_MSNLEN
);
1832 memcpy(m
->lmsn
, m
->plmsn
, ISDN_LMSNLEN
);
1833 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16;
1835 #ifdef CONFIG_ISDN_AUDIO
1836 isdn_tty_modem_reset_vpar(m
);
1838 #ifdef CONFIG_ISDN_TTY_FAX
1839 isdn_tty_modem_reset_faxpar(info
);
1845 modem_write_profile(atemu
* m
)
1847 memcpy(m
->profile
, m
->mdmreg
, ISDN_MODEM_NUMREG
);
1848 memcpy(m
->pmsn
, m
->msn
, ISDN_MSNLEN
);
1849 memcpy(m
->plmsn
, m
->lmsn
, ISDN_LMSNLEN
);
1851 send_sig(SIGIO
, dev
->profd
, 1);
1854 static const struct tty_operations modem_ops
= {
1855 .open
= isdn_tty_open
,
1856 .close
= isdn_tty_close
,
1857 .write
= isdn_tty_write
,
1858 .flush_chars
= isdn_tty_flush_chars
,
1859 .write_room
= isdn_tty_write_room
,
1860 .chars_in_buffer
= isdn_tty_chars_in_buffer
,
1861 .flush_buffer
= isdn_tty_flush_buffer
,
1862 .ioctl
= isdn_tty_ioctl
,
1863 .throttle
= isdn_tty_throttle
,
1864 .unthrottle
= isdn_tty_unthrottle
,
1865 .set_termios
= isdn_tty_set_termios
,
1866 .hangup
= isdn_tty_hangup
,
1867 .tiocmget
= isdn_tty_tiocmget
,
1868 .tiocmset
= isdn_tty_tiocmset
,
1872 isdn_tty_modem_init(void)
1879 m
->tty_modem
= alloc_tty_driver(ISDN_MAX_CHANNELS
);
1882 m
->tty_modem
->name
= "ttyI";
1883 m
->tty_modem
->major
= ISDN_TTY_MAJOR
;
1884 m
->tty_modem
->minor_start
= 0;
1885 m
->tty_modem
->type
= TTY_DRIVER_TYPE_SERIAL
;
1886 m
->tty_modem
->subtype
= SERIAL_TYPE_NORMAL
;
1887 m
->tty_modem
->init_termios
= tty_std_termios
;
1888 m
->tty_modem
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
1889 m
->tty_modem
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
1890 m
->tty_modem
->driver_name
= "isdn_tty";
1891 tty_set_operations(m
->tty_modem
, &modem_ops
);
1892 retval
= tty_register_driver(m
->tty_modem
);
1894 printk(KERN_WARNING
"isdn_tty: Couldn't register modem-device\n");
1897 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
1899 #ifdef CONFIG_ISDN_TTY_FAX
1900 if (!(info
->fax
= kmalloc(sizeof(T30_s
), GFP_KERNEL
))) {
1901 printk(KERN_ERR
"Could not allocate fax t30-buffer\n");
1903 goto err_unregister
;
1907 info
->owner
= THIS_MODULE
;
1909 spin_lock_init(&info
->readlock
);
1910 sprintf(info
->last_cause
, "0000");
1911 sprintf(info
->last_num
, "none");
1913 info
->last_lhup
= 1;
1916 isdn_tty_reset_profile(&info
->emu
);
1917 isdn_tty_modem_reset_regs(info
, 1);
1918 info
->magic
= ISDN_ASYNC_MAGIC
;
1923 info
->blocked_open
= 0;
1924 init_waitqueue_head(&info
->open_wait
);
1925 init_waitqueue_head(&info
->close_wait
);
1926 info
->isdn_driver
= -1;
1927 info
->isdn_channel
= -1;
1928 info
->drv_index
= -1;
1929 info
->xmit_size
= ISDN_SERIAL_XMIT_SIZE
;
1930 init_timer(&info
->nc_timer
);
1931 info
->nc_timer
.function
= isdn_tty_modem_do_ncarrier
;
1932 info
->nc_timer
.data
= (unsigned long) info
;
1933 skb_queue_head_init(&info
->xmit_queue
);
1934 #ifdef CONFIG_ISDN_AUDIO
1935 skb_queue_head_init(&info
->dtmf_queue
);
1937 if (!(info
->xmit_buf
= kmalloc(ISDN_SERIAL_XMIT_MAX
+ 5, GFP_KERNEL
))) {
1938 printk(KERN_ERR
"Could not allocate modem xmit-buffer\n");
1940 goto err_unregister
;
1942 /* Make room for T.70 header */
1943 info
->xmit_buf
+= 4;
1947 for (i
--; i
>= 0; i
--) {
1949 #ifdef CONFIG_ISDN_TTY_FAX
1952 kfree(info
->xmit_buf
- 4);
1954 tty_unregister_driver(m
->tty_modem
);
1956 put_tty_driver(m
->tty_modem
);
1957 m
->tty_modem
= NULL
;
1967 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
1968 info
= &dev
->mdm
.info
[i
];
1969 isdn_tty_cleanup_xmit(info
);
1970 #ifdef CONFIG_ISDN_TTY_FAX
1973 kfree(info
->xmit_buf
- 4);
1975 tty_unregister_driver(dev
->mdm
.tty_modem
);
1976 put_tty_driver(dev
->mdm
.tty_modem
);
1977 dev
->mdm
.tty_modem
= NULL
;
1982 * isdn_tty_match_icall(char *MSN, atemu *tty_emulator, int dev_idx)
1983 * match the MSN against the MSNs (glob patterns) defined for tty_emulator,
1984 * and return 0 for match, 1 for no match, 2 if MSN could match if longer.
1988 isdn_tty_match_icall(char *cid
, atemu
*emu
, int di
)
1990 #ifdef ISDN_DEBUG_MODEM_ICALL
1991 printk(KERN_DEBUG
"m_fi: msn=%s lmsn=%s mmsn=%s mreg[SI1]=%d mreg[SI2]=%d\n",
1992 emu
->msn
, emu
->lmsn
, isdn_map_eaz2msn(emu
->msn
, di
),
1993 emu
->mdmreg
[REG_SI1
], emu
->mdmreg
[REG_SI2
]);
1995 if (strlen(emu
->lmsn
)) {
1996 char *p
= emu
->lmsn
;
2002 if ((q
= strchr(p
, ';')))
2004 if ((tmp
= isdn_msncmp(cid
, isdn_map_eaz2msn(p
, di
))) > ret
)
2006 #ifdef ISDN_DEBUG_MODEM_ICALL
2007 printk(KERN_DEBUG
"m_fi: lmsnX=%s mmsn=%s -> tmp=%d\n",
2008 p
, isdn_map_eaz2msn(emu
->msn
, di
), tmp
);
2023 tmp
= isdn_msncmp(cid
, isdn_map_eaz2msn(emu
->msn
, di
));
2024 #ifdef ISDN_DEBUG_MODEM_ICALL
2025 printk(KERN_DEBUG
"m_fi: mmsn=%s -> tmp=%d\n",
2026 isdn_map_eaz2msn(emu
->msn
, di
), tmp
);
2033 * An incoming call-request has arrived.
2034 * Search the tty-devices for an appropriate device and bind
2035 * it to the ISDN-Channel.
2038 * 0 = No matching device found.
2039 * 1 = A matching device found.
2040 * 3 = No match found, but eventually would match, if
2044 isdn_tty_find_icall(int di
, int ch
, setup_parm
*setup
)
2055 if (!setup
->phone
[0]) {
2057 printk(KERN_INFO
"isdn_tty: Incoming call without OAD, assuming '0'\n");
2060 si1
= (int) setup
->si1
;
2061 si2
= (int) setup
->si2
;
2062 if (!setup
->eazmsn
[0]) {
2063 printk(KERN_WARNING
"isdn_tty: Incoming call without CPN, assuming '0'\n");
2066 eaz
= setup
->eazmsn
;
2067 #ifdef ISDN_DEBUG_MODEM_ICALL
2068 printk(KERN_DEBUG
"m_fi: eaz=%s si1=%d si2=%d\n", eaz
, si1
, si2
);
2071 spin_lock_irqsave(&dev
->lock
, flags
);
2072 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
2073 modem_info
*info
= &dev
->mdm
.info
[i
];
2075 if (info
->count
== 0)
2077 if ((info
->emu
.mdmreg
[REG_SI1
] & si2bit
[si1
]) && /* SI1 is matching */
2078 (info
->emu
.mdmreg
[REG_SI2
] == si2
)) { /* SI2 is matching */
2079 idx
= isdn_dc2minor(di
, ch
);
2080 #ifdef ISDN_DEBUG_MODEM_ICALL
2081 printk(KERN_DEBUG
"m_fi: match1 wret=%d\n", wret
);
2082 printk(KERN_DEBUG
"m_fi: idx=%d flags=%08lx drv=%d ch=%d usg=%d\n", idx
,
2083 info
->flags
, info
->isdn_driver
, info
->isdn_channel
,
2087 #ifndef FIX_FILE_TRANSFER
2088 (info
->flags
& ISDN_ASYNC_NORMAL_ACTIVE
) &&
2090 (info
->isdn_driver
== -1) &&
2091 (info
->isdn_channel
== -1) &&
2092 (USG_NONE(dev
->usage
[idx
]))) {
2095 if ((matchret
= isdn_tty_match_icall(eaz
, &info
->emu
, di
)) > wret
)
2097 if (!matchret
) { /* EAZ is matching */
2098 info
->isdn_driver
= di
;
2099 info
->isdn_channel
= ch
;
2100 info
->drv_index
= idx
;
2101 dev
->m_idx
[idx
] = info
->line
;
2102 dev
->usage
[idx
] &= ISDN_USAGE_EXCLUSIVE
;
2103 dev
->usage
[idx
] |= isdn_calc_usage(si1
, info
->emu
.mdmreg
[REG_L2PROT
]);
2104 strcpy(dev
->num
[idx
], nr
);
2105 strcpy(info
->emu
.cpn
, eaz
);
2106 info
->emu
.mdmreg
[REG_SI1I
] = si2bit
[si1
];
2107 info
->emu
.mdmreg
[REG_PLAN
] = setup
->plan
;
2108 info
->emu
.mdmreg
[REG_SCREEN
] = setup
->screen
;
2110 spin_unlock_irqrestore(&dev
->lock
, flags
);
2111 printk(KERN_INFO
"isdn_tty: call from %s, -> RING on ttyI%d\n", nr
,
2113 info
->msr
|= UART_MSR_RI
;
2114 isdn_tty_modem_result(RESULT_RING
, info
);
2115 isdn_timer_ctrl(ISDN_TIMER_MODEMRING
, 1);
2121 spin_unlock_irqrestore(&dev
->lock
, flags
);
2122 printk(KERN_INFO
"isdn_tty: call from %s -> %s %s\n", nr
, eaz
,
2123 ((dev
->drv
[di
]->flags
& DRV_FLAG_REJBUS
) && (wret
!= 2))? "rejected" : "ignored");
2124 return (wret
== 2)?3:0;
2127 #define TTY_IS_ACTIVE(info) \
2128 (info->flags & (ISDN_ASYNC_NORMAL_ACTIVE | ISDN_ASYNC_CALLOUT_ACTIVE))
2131 isdn_tty_stat_callback(int i
, isdn_ctrl
*c
)
2139 if ((mi
= dev
->m_idx
[i
]) >= 0) {
2140 info
= &dev
->mdm
.info
[mi
];
2141 switch (c
->command
) {
2142 case ISDN_STAT_CINF
:
2143 printk(KERN_DEBUG
"CHARGEINFO on ttyI%d: %ld %s\n", info
->line
, c
->arg
, c
->parm
.num
);
2144 info
->emu
.charge
= (unsigned) simple_strtoul(c
->parm
.num
, &e
, 10);
2145 if (e
== (char *)c
->parm
.num
)
2146 info
->emu
.charge
= 0;
2149 case ISDN_STAT_BSENT
:
2150 #ifdef ISDN_TTY_STAT_DEBUG
2151 printk(KERN_DEBUG
"tty_STAT_BSENT ttyI%d\n", info
->line
);
2153 if ((info
->isdn_driver
== c
->driver
) &&
2154 (info
->isdn_channel
== c
->arg
)) {
2155 info
->msr
|= UART_MSR_CTS
;
2156 if (info
->send_outstanding
)
2157 if (!(--info
->send_outstanding
))
2158 info
->lsr
|= UART_LSR_TEMT
;
2159 isdn_tty_tint(info
);
2163 case ISDN_STAT_CAUSE
:
2164 #ifdef ISDN_TTY_STAT_DEBUG
2165 printk(KERN_DEBUG
"tty_STAT_CAUSE ttyI%d\n", info
->line
);
2167 /* Signal cause to tty-device */
2168 strncpy(info
->last_cause
, c
->parm
.num
, 5);
2170 case ISDN_STAT_DISPLAY
:
2171 #ifdef ISDN_TTY_STAT_DEBUG
2172 printk(KERN_DEBUG
"tty_STAT_DISPLAY ttyI%d\n", info
->line
);
2174 /* Signal display to tty-device */
2175 if ((info
->emu
.mdmreg
[REG_DISPLAY
] & BIT_DISPLAY
) &&
2176 !(info
->emu
.mdmreg
[REG_RESPNUM
] & BIT_RESPNUM
)) {
2177 isdn_tty_at_cout("\r\n", info
);
2178 isdn_tty_at_cout("DISPLAY: ", info
);
2179 isdn_tty_at_cout(c
->parm
.display
, info
);
2180 isdn_tty_at_cout("\r\n", info
);
2183 case ISDN_STAT_DCONN
:
2184 #ifdef ISDN_TTY_STAT_DEBUG
2185 printk(KERN_DEBUG
"tty_STAT_DCONN ttyI%d\n", info
->line
);
2187 if (TTY_IS_ACTIVE(info
)) {
2188 if (info
->dialing
== 1) {
2194 case ISDN_STAT_DHUP
:
2195 #ifdef ISDN_TTY_STAT_DEBUG
2196 printk(KERN_DEBUG
"tty_STAT_DHUP ttyI%d\n", info
->line
);
2198 if (TTY_IS_ACTIVE(info
)) {
2199 if (info
->dialing
== 1)
2200 isdn_tty_modem_result(RESULT_BUSY
, info
);
2201 if (info
->dialing
> 1)
2202 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
2204 #ifdef ISDN_DEBUG_MODEM_HUP
2205 printk(KERN_DEBUG
"Mhup in ISDN_STAT_DHUP\n");
2207 isdn_tty_modem_hup(info
, 0);
2211 case ISDN_STAT_BCONN
:
2212 #ifdef ISDN_TTY_STAT_DEBUG
2213 printk(KERN_DEBUG
"tty_STAT_BCONN ttyI%d\n", info
->line
);
2215 /* Wake up any processes waiting
2216 * for incoming call of this device when
2217 * DCD follow the state of incoming carrier
2219 if (info
->blocked_open
&&
2220 (info
->emu
.mdmreg
[REG_DCD
] & BIT_DCD
)) {
2221 wake_up_interruptible(&info
->open_wait
);
2224 /* Schedule CONNECT-Message to any tty
2225 * waiting for it and
2226 * set DCD-bit of its modem-status.
2228 if (TTY_IS_ACTIVE(info
) ||
2229 (info
->blocked_open
&& (info
->emu
.mdmreg
[REG_DCD
] & BIT_DCD
))) {
2230 info
->msr
|= UART_MSR_DCD
;
2231 info
->emu
.charge
= 0;
2232 if (info
->dialing
& 0xf)
2238 if (USG_MODEM(dev
->usage
[i
])) {
2239 if (info
->emu
.mdmreg
[REG_L2PROT
] == ISDN_PROTO_L2_MODEM
) {
2240 strcpy(info
->emu
.connmsg
, c
->parm
.num
);
2241 isdn_tty_modem_result(RESULT_CONNECT
, info
);
2243 isdn_tty_modem_result(RESULT_CONNECT64000
, info
);
2245 if (USG_VOICE(dev
->usage
[i
]))
2246 isdn_tty_modem_result(RESULT_VCON
, info
);
2250 case ISDN_STAT_BHUP
:
2251 #ifdef ISDN_TTY_STAT_DEBUG
2252 printk(KERN_DEBUG
"tty_STAT_BHUP ttyI%d\n", info
->line
);
2254 if (TTY_IS_ACTIVE(info
)) {
2255 #ifdef ISDN_DEBUG_MODEM_HUP
2256 printk(KERN_DEBUG
"Mhup in ISDN_STAT_BHUP\n");
2258 isdn_tty_modem_hup(info
, 0);
2262 case ISDN_STAT_NODCH
:
2263 #ifdef ISDN_TTY_STAT_DEBUG
2264 printk(KERN_DEBUG
"tty_STAT_NODCH ttyI%d\n", info
->line
);
2266 if (TTY_IS_ACTIVE(info
)) {
2267 if (info
->dialing
) {
2271 sprintf(info
->last_cause
, "0000");
2272 isdn_tty_modem_result(RESULT_NO_DIALTONE
, info
);
2274 isdn_tty_modem_hup(info
, 0);
2278 case ISDN_STAT_UNLOAD
:
2279 #ifdef ISDN_TTY_STAT_DEBUG
2280 printk(KERN_DEBUG
"tty_STAT_UNLOAD ttyI%d\n", info
->line
);
2282 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
2283 info
= &dev
->mdm
.info
[i
];
2284 if (info
->isdn_driver
== c
->driver
) {
2286 isdn_tty_modem_hup(info
, 1);
2290 #ifdef CONFIG_ISDN_TTY_FAX
2291 case ISDN_STAT_FAXIND
:
2292 if (TTY_IS_ACTIVE(info
)) {
2293 isdn_tty_fax_command(info
, c
);
2297 #ifdef CONFIG_ISDN_AUDIO
2298 case ISDN_STAT_AUDIO
:
2299 if (TTY_IS_ACTIVE(info
)) {
2300 switch(c
->parm
.num
[0]) {
2301 case ISDN_AUDIO_DTMF
:
2302 if (info
->vonline
) {
2303 isdn_audio_put_dle_code(info
,
2316 /*********************************************************************
2317 Modem-Emulator-Routines
2318 *********************************************************************/
2320 #define cmdchar(c) ((c>=' ')&&(c<=0x7f))
2323 * Put a message from the AT-emulator into receive-buffer of tty,
2324 * convert CR, LF, and BS to values in modem-registers 3, 4 and 5.
2327 isdn_tty_at_cout(char *msg
, modem_info
* info
)
2329 struct tty_struct
*tty
;
2330 atemu
*m
= &info
->emu
;
2334 struct sk_buff
*skb
= NULL
;
2339 printk(KERN_WARNING
"isdn_tty: Null-Message in isdn_tty_at_cout\n");
2345 spin_lock_irqsave(&info
->readlock
, flags
);
2347 if ((info
->flags
& ISDN_ASYNC_CLOSING
) || (!tty
)) {
2348 spin_unlock_irqrestore(&info
->readlock
, flags
);
2352 /* use queue instead of direct, if online and */
2353 /* data is in queue or buffer is full */
2354 if (info
->online
&& ((tty_buffer_request_room(tty
, l
) < l
) ||
2355 !skb_queue_empty(&dev
->drv
[info
->isdn_driver
]->rpqueue
[info
->isdn_channel
]))) {
2356 skb
= alloc_skb(l
, GFP_ATOMIC
);
2358 spin_unlock_irqrestore(&info
->readlock
, flags
);
2361 sp
= skb_put(skb
, l
);
2362 #ifdef CONFIG_ISDN_AUDIO
2363 ISDN_AUDIO_SKB_DLECOUNT(skb
) = 0;
2364 ISDN_AUDIO_SKB_LOCK(skb
) = 0;
2368 for (p
= msg
; *p
; p
++) {
2371 c
= m
->mdmreg
[REG_CR
];
2374 c
= m
->mdmreg
[REG_LF
];
2377 c
= m
->mdmreg
[REG_BS
];
2385 if(tty_insert_flip_char(tty
, c
, TTY_NORMAL
) == 0)
2390 __skb_queue_tail(&dev
->drv
[info
->isdn_driver
]->rpqueue
[info
->isdn_channel
], skb
);
2391 dev
->drv
[info
->isdn_driver
]->rcvcount
[info
->isdn_channel
] += skb
->len
;
2392 spin_unlock_irqrestore(&info
->readlock
, flags
);
2393 /* Schedule dequeuing */
2394 if (dev
->modempoll
&& info
->rcvsched
)
2395 isdn_timer_ctrl(ISDN_TIMER_MODEMREAD
, 1);
2398 spin_unlock_irqrestore(&info
->readlock
, flags
);
2399 tty_flip_buffer_push(tty
);
2404 * Perform ATH Hangup
2407 isdn_tty_on_hook(modem_info
* info
)
2409 if (info
->isdn_channel
>= 0) {
2410 #ifdef ISDN_DEBUG_MODEM_HUP
2411 printk(KERN_DEBUG
"Mhup in isdn_tty_on_hook\n");
2413 isdn_tty_modem_hup(info
, 1);
2418 isdn_tty_off_hook(void)
2420 printk(KERN_DEBUG
"isdn_tty_off_hook\n");
2423 #define PLUSWAIT1 (HZ/2) /* 0.5 sec. */
2424 #define PLUSWAIT2 (HZ*3/2) /* 1.5 sec */
2427 * Check Buffer for Modem-escape-sequence, activate timer-callback to
2428 * isdn_tty_modem_escape() if sequence found.
2431 * p pointer to databuffer
2432 * plus escape-character
2433 * count length of buffer
2434 * pluscount count of valid escape-characters so far
2435 * lastplus timestamp of last character
2438 isdn_tty_check_esc(const u_char
* p
, u_char plus
, int count
, int *pluscount
,
2449 if (*(p
++) == plus
) {
2450 if ((*pluscount
)++) {
2451 /* Time since last '+' > 0.5 sec. ? */
2452 if (time_after(jiffies
, *lastplus
+ PLUSWAIT1
))
2455 /* Time since last non-'+' < 1.5 sec. ? */
2456 if (time_before(jiffies
, *lastplus
+ PLUSWAIT2
))
2459 if ((*pluscount
== 3) && (count
== 1))
2460 isdn_timer_ctrl(ISDN_TIMER_MODEMPLUS
, 1);
2465 *lastplus
= jiffies
;
2471 * Return result of AT-emulator to tty-receive-buffer, depending on
2472 * modem-register 12, bit 0 and 1.
2473 * For CONNECT-messages also switch to online-mode.
2474 * For RING-message handle auto-ATA if register 0 != 0
2478 isdn_tty_modem_result(int code
, modem_info
* info
)
2480 atemu
*m
= &info
->emu
;
2481 static char *msg
[] =
2482 {"OK", "CONNECT", "RING", "NO CARRIER", "ERROR",
2483 "CONNECT 64000", "NO DIALTONE", "BUSY", "NO ANSWER",
2484 "RINGING", "NO MSN/EAZ", "VCON", "RUNG"};
2485 char s
[ISDN_MSNLEN
+10];
2489 m
->mdmreg
[REG_RINGCNT
]++;
2490 if (m
->mdmreg
[REG_RINGCNT
] == m
->mdmreg
[REG_RINGATA
])
2491 /* Automatically accept incoming call */
2492 isdn_tty_cmd_ATA(info
);
2494 case RESULT_NO_CARRIER
:
2495 #ifdef ISDN_DEBUG_MODEM_HUP
2496 printk(KERN_DEBUG
"modem_result: NO CARRIER %d %d\n",
2497 (info
->flags
& ISDN_ASYNC_CLOSING
),
2500 m
->mdmreg
[REG_RINGCNT
] = 0;
2501 del_timer(&info
->nc_timer
);
2503 if ((info
->flags
& ISDN_ASYNC_CLOSING
) || (!info
->tty
)) {
2506 #ifdef CONFIG_ISDN_AUDIO
2507 if (info
->vonline
& 1) {
2508 #ifdef ISDN_DEBUG_MODEM_VOICE
2509 printk(KERN_DEBUG
"res3: send DLE-ETX on ttyI%d\n",
2512 /* voice-recording, add DLE-ETX */
2513 isdn_tty_at_cout("\020\003", info
);
2515 if (info
->vonline
& 2) {
2516 #ifdef ISDN_DEBUG_MODEM_VOICE
2517 printk(KERN_DEBUG
"res3: send DLE-DC4 on ttyI%d\n",
2520 /* voice-playing, add DLE-DC4 */
2521 isdn_tty_at_cout("\020\024", info
);
2525 case RESULT_CONNECT
:
2526 case RESULT_CONNECT64000
:
2527 sprintf(info
->last_cause
, "0000");
2532 #ifdef ISDN_DEBUG_MODEM_VOICE
2533 printk(KERN_DEBUG
"res3: send VCON on ttyI%d\n",
2536 sprintf(info
->last_cause
, "0000");
2540 } /* switch(code) */
2542 if (m
->mdmreg
[REG_RESP
] & BIT_RESP
) {
2544 if (m
->mdmreg
[REG_RESPNUM
] & BIT_RESPNUM
) {
2545 /* Show numeric results only */
2546 sprintf(s
, "\r\n%d\r\n", code
);
2547 isdn_tty_at_cout(s
, info
);
2549 if (code
== RESULT_RING
) {
2550 /* return if "show RUNG" and ringcounter>1 */
2551 if ((m
->mdmreg
[REG_RUNG
] & BIT_RUNG
) &&
2552 (m
->mdmreg
[REG_RINGCNT
] > 1))
2554 /* print CID, _before_ _every_ ring */
2555 if (!(m
->mdmreg
[REG_CIDONCE
] & BIT_CIDONCE
)) {
2556 isdn_tty_at_cout("\r\nCALLER NUMBER: ", info
);
2557 isdn_tty_at_cout(dev
->num
[info
->drv_index
], info
);
2558 if (m
->mdmreg
[REG_CDN
] & BIT_CDN
) {
2559 isdn_tty_at_cout("\r\nCALLED NUMBER: ", info
);
2560 isdn_tty_at_cout(info
->emu
.cpn
, info
);
2564 isdn_tty_at_cout("\r\n", info
);
2565 isdn_tty_at_cout(msg
[code
], info
);
2567 case RESULT_CONNECT
:
2568 switch (m
->mdmreg
[REG_L2PROT
]) {
2569 case ISDN_PROTO_L2_MODEM
:
2570 isdn_tty_at_cout(" ", info
);
2571 isdn_tty_at_cout(m
->connmsg
, info
);
2576 /* Append CPN, if enabled */
2577 if ((m
->mdmreg
[REG_CPN
] & BIT_CPN
)) {
2578 sprintf(s
, "/%s", m
->cpn
);
2579 isdn_tty_at_cout(s
, info
);
2581 /* Print CID only once, _after_ 1st RING */
2582 if ((m
->mdmreg
[REG_CIDONCE
] & BIT_CIDONCE
) &&
2583 (m
->mdmreg
[REG_RINGCNT
] == 1)) {
2584 isdn_tty_at_cout("\r\n", info
);
2585 isdn_tty_at_cout("CALLER NUMBER: ", info
);
2586 isdn_tty_at_cout(dev
->num
[info
->drv_index
], info
);
2587 if (m
->mdmreg
[REG_CDN
] & BIT_CDN
) {
2588 isdn_tty_at_cout("\r\nCALLED NUMBER: ", info
);
2589 isdn_tty_at_cout(info
->emu
.cpn
, info
);
2593 case RESULT_NO_CARRIER
:
2594 case RESULT_NO_DIALTONE
:
2596 case RESULT_NO_ANSWER
:
2597 m
->mdmreg
[REG_RINGCNT
] = 0;
2598 /* Append Cause-Message if enabled */
2599 if (m
->mdmreg
[REG_RESPXT
] & BIT_RESPXT
) {
2600 sprintf(s
, "/%s", info
->last_cause
);
2601 isdn_tty_at_cout(s
, info
);
2604 case RESULT_CONNECT64000
:
2605 /* Append Protocol to CONNECT message */
2606 switch (m
->mdmreg
[REG_L2PROT
]) {
2607 case ISDN_PROTO_L2_X75I
:
2608 case ISDN_PROTO_L2_X75UI
:
2609 case ISDN_PROTO_L2_X75BUI
:
2610 isdn_tty_at_cout("/X.75", info
);
2612 case ISDN_PROTO_L2_HDLC
:
2613 isdn_tty_at_cout("/HDLC", info
);
2615 case ISDN_PROTO_L2_V11096
:
2616 isdn_tty_at_cout("/V110/9600", info
);
2618 case ISDN_PROTO_L2_V11019
:
2619 isdn_tty_at_cout("/V110/19200", info
);
2621 case ISDN_PROTO_L2_V11038
:
2622 isdn_tty_at_cout("/V110/38400", info
);
2625 if (m
->mdmreg
[REG_T70
] & BIT_T70
) {
2626 isdn_tty_at_cout("/T.70", info
);
2627 if (m
->mdmreg
[REG_T70
] & BIT_T70_EXT
)
2628 isdn_tty_at_cout("+", info
);
2632 isdn_tty_at_cout("\r\n", info
);
2635 if (code
== RESULT_NO_CARRIER
) {
2636 if ((info
->flags
& ISDN_ASYNC_CLOSING
) || (!info
->tty
)) {
2639 #ifdef CONFIG_ISDN_AUDIO
2640 if ( !info
->vonline
)
2641 tty_ldisc_flush(info
->tty
);
2643 tty_ldisc_flush(info
->tty
);
2645 if ((info
->flags
& ISDN_ASYNC_CHECK_CD
) &&
2646 (!((info
->flags
& ISDN_ASYNC_CALLOUT_ACTIVE
) &&
2647 (info
->flags
& ISDN_ASYNC_CALLOUT_NOHUP
)))) {
2648 tty_hangup(info
->tty
);
2655 * Display a modem-register-value.
2658 isdn_tty_show_profile(int ridx
, modem_info
* info
)
2662 sprintf(v
, "\r\n%d", info
->emu
.mdmreg
[ridx
]);
2663 isdn_tty_at_cout(v
, info
);
2667 * Get MSN-string from char-pointer, set pointer to end of number
2670 isdn_tty_get_msnstr(char *n
, char **p
)
2672 int limit
= ISDN_MSNLEN
- 1;
2674 while (((*p
[0] >= '0' && *p
[0] <= '9') ||
2675 /* Why a comma ??? */
2676 (*p
[0] == ',') || (*p
[0] == ':')) &&
2683 * Get phone-number from modem-commandbuffer
2686 isdn_tty_getdial(char *p
, char *q
,int cnt
)
2689 int limit
= ISDN_MSNLEN
- 1; /* MUST match the size of interface var to avoid
2692 while (strchr(" 0123456789,#.*WPTSR-", *p
) && *p
&& --cnt
>0) {
2693 if ((*p
>= '0' && *p
<= '9') || ((*p
== 'S') && first
) ||
2694 ((*p
== 'R') && first
) ||
2695 (*p
== '*') || (*p
== '#')) {
2707 #define PARSE_ERROR { isdn_tty_modem_result(RESULT_ERROR, info); return; }
2708 #define PARSE_ERROR1 { isdn_tty_modem_result(RESULT_ERROR, info); return 1; }
2711 isdn_tty_report(modem_info
* info
)
2713 atemu
*m
= &info
->emu
;
2716 isdn_tty_at_cout("\r\nStatistics of last connection:\r\n\r\n", info
);
2717 sprintf(s
, " Remote Number: %s\r\n", info
->last_num
);
2718 isdn_tty_at_cout(s
, info
);
2719 sprintf(s
, " Direction: %s\r\n", info
->last_dir
? "outgoing" : "incoming");
2720 isdn_tty_at_cout(s
, info
);
2721 isdn_tty_at_cout(" Layer-2 Protocol: ", info
);
2722 switch (info
->last_l2
) {
2723 case ISDN_PROTO_L2_X75I
:
2724 isdn_tty_at_cout("X.75i", info
);
2726 case ISDN_PROTO_L2_X75UI
:
2727 isdn_tty_at_cout("X.75ui", info
);
2729 case ISDN_PROTO_L2_X75BUI
:
2730 isdn_tty_at_cout("X.75bui", info
);
2732 case ISDN_PROTO_L2_HDLC
:
2733 isdn_tty_at_cout("HDLC", info
);
2735 case ISDN_PROTO_L2_V11096
:
2736 isdn_tty_at_cout("V.110 9600 Baud", info
);
2738 case ISDN_PROTO_L2_V11019
:
2739 isdn_tty_at_cout("V.110 19200 Baud", info
);
2741 case ISDN_PROTO_L2_V11038
:
2742 isdn_tty_at_cout("V.110 38400 Baud", info
);
2744 case ISDN_PROTO_L2_TRANS
:
2745 isdn_tty_at_cout("transparent", info
);
2747 case ISDN_PROTO_L2_MODEM
:
2748 isdn_tty_at_cout("modem", info
);
2750 case ISDN_PROTO_L2_FAX
:
2751 isdn_tty_at_cout("fax", info
);
2754 isdn_tty_at_cout("unknown", info
);
2757 if (m
->mdmreg
[REG_T70
] & BIT_T70
) {
2758 isdn_tty_at_cout("/T.70", info
);
2759 if (m
->mdmreg
[REG_T70
] & BIT_T70_EXT
)
2760 isdn_tty_at_cout("+", info
);
2762 isdn_tty_at_cout("\r\n", info
);
2763 isdn_tty_at_cout(" Service: ", info
);
2764 switch (info
->last_si
) {
2766 isdn_tty_at_cout("audio\r\n", info
);
2769 isdn_tty_at_cout("btx\r\n", info
);
2772 isdn_tty_at_cout("data\r\n", info
);
2775 sprintf(s
, "%d\r\n", info
->last_si
);
2776 isdn_tty_at_cout(s
, info
);
2779 sprintf(s
, " Hangup location: %s\r\n", info
->last_lhup
? "local" : "remote");
2780 isdn_tty_at_cout(s
, info
);
2781 sprintf(s
, " Last cause: %s\r\n", info
->last_cause
);
2782 isdn_tty_at_cout(s
, info
);
2786 * Parse AT&.. commands.
2789 isdn_tty_cmd_ATand(char **p
, modem_info
* info
)
2791 atemu
*m
= &info
->emu
;
2795 #define MAXRB (sizeof(rb) - 1)
2799 /* &B - Set Buffersize */
2802 if ((i
< 0) || (i
> ISDN_SERIAL_XMIT_MAX
))
2804 #ifdef CONFIG_ISDN_AUDIO
2805 if ((m
->mdmreg
[REG_SI1
] & 1) && (i
> VBUF
))
2808 m
->mdmreg
[REG_PSIZE
] = i
/ 16;
2809 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16;
2810 switch (m
->mdmreg
[REG_L2PROT
]) {
2811 case ISDN_PROTO_L2_V11096
:
2812 case ISDN_PROTO_L2_V11019
:
2813 case ISDN_PROTO_L2_V11038
:
2814 info
->xmit_size
/= 10;
2818 /* &C - DCD Status */
2820 switch (isdn_getnum(p
)) {
2822 m
->mdmreg
[REG_DCD
] &= ~BIT_DCD
;
2825 m
->mdmreg
[REG_DCD
] |= BIT_DCD
;
2832 /* &D - Set DTR-Low-behavior */
2834 switch (isdn_getnum(p
)) {
2836 m
->mdmreg
[REG_DTRHUP
] &= ~BIT_DTRHUP
;
2837 m
->mdmreg
[REG_DTRR
] &= ~BIT_DTRR
;
2840 m
->mdmreg
[REG_DTRHUP
] |= BIT_DTRHUP
;
2841 m
->mdmreg
[REG_DTRR
] &= ~BIT_DTRR
;
2844 m
->mdmreg
[REG_DTRHUP
] |= BIT_DTRHUP
;
2845 m
->mdmreg
[REG_DTRR
] |= BIT_DTRR
;
2852 /* &E -Set EAZ/MSN */
2854 isdn_tty_get_msnstr(m
->msn
, p
);
2857 /* &F -Set Factory-Defaults */
2859 if (info
->msr
& UART_MSR_DCD
)
2861 isdn_tty_reset_profile(m
);
2862 isdn_tty_modem_reset_regs(info
, 1);
2864 #ifdef DUMMY_HAYES_AT
2866 /* only for be compilant with common scripts */
2867 /* &K Flowcontrol - no function */
2873 /* &L -Set Numbers to listen on */
2876 while (*p
[0] && (strchr("0123456789,-*[]?;", *p
[0])) &&
2877 (i
< ISDN_LMSNLEN
- 1))
2878 m
->lmsn
[i
++] = *p
[0]++;
2882 /* &R - Set V.110 bitrate adaption */
2887 /* Switch off V.110, back to X.75 */
2888 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_X75I
;
2889 m
->mdmreg
[REG_SI2
] = 0;
2890 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16;
2893 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_V11096
;
2894 m
->mdmreg
[REG_SI2
] = 197;
2895 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16 / 10;
2898 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_V11019
;
2899 m
->mdmreg
[REG_SI2
] = 199;
2900 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16 / 10;
2903 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_V11038
;
2904 m
->mdmreg
[REG_SI2
] = 198; /* no existing standard for this */
2905 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16 / 10;
2910 /* Switch off T.70 */
2911 m
->mdmreg
[REG_T70
] &= ~(BIT_T70
| BIT_T70_EXT
);
2913 m
->mdmreg
[REG_SI1
] |= 4;
2916 /* &S - Set Windowsize */
2919 if ((i
> 0) && (i
< 9))
2920 m
->mdmreg
[REG_WSIZE
] = i
;
2925 /* &V - Show registers */
2927 isdn_tty_at_cout("\r\n", info
);
2928 for (i
= 0; i
< ISDN_MODEM_NUMREG
; i
++) {
2929 sprintf(rb
, "S%02d=%03d%s", i
,
2930 m
->mdmreg
[i
], ((i
+ 1) % 10) ? " " : "\r\n");
2931 isdn_tty_at_cout(rb
, info
);
2933 sprintf(rb
, "\r\nEAZ/MSN: %.50s\r\n",
2934 strlen(m
->msn
) ? m
->msn
: "None");
2935 isdn_tty_at_cout(rb
, info
);
2936 if (strlen(m
->lmsn
)) {
2937 isdn_tty_at_cout("\r\nListen: ", info
);
2938 isdn_tty_at_cout(m
->lmsn
, info
);
2939 isdn_tty_at_cout("\r\n", info
);
2943 /* &W - Write Profile */
2948 modem_write_profile(m
);
2955 /* &X - Switch to BTX-Mode and T.70 */
2957 switch (isdn_getnum(p
)) {
2959 m
->mdmreg
[REG_T70
] &= ~(BIT_T70
| BIT_T70_EXT
);
2960 info
->xmit_size
= m
->mdmreg
[REG_PSIZE
] * 16;
2963 m
->mdmreg
[REG_T70
] |= BIT_T70
;
2964 m
->mdmreg
[REG_T70
] &= ~BIT_T70_EXT
;
2965 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_X75I
;
2966 info
->xmit_size
= 112;
2967 m
->mdmreg
[REG_SI1
] = 4;
2968 m
->mdmreg
[REG_SI2
] = 0;
2971 m
->mdmreg
[REG_T70
] |= (BIT_T70
| BIT_T70_EXT
);
2972 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_X75I
;
2973 info
->xmit_size
= 112;
2974 m
->mdmreg
[REG_SI1
] = 4;
2975 m
->mdmreg
[REG_SI2
] = 0;
2988 isdn_tty_check_ats(int mreg
, int mval
, modem_info
* info
, atemu
* m
)
2990 /* Some plausibility checks */
2993 if (mval
> ISDN_PROTO_L2_MAX
)
2997 if ((mval
* 16) > ISDN_SERIAL_XMIT_MAX
)
2999 #ifdef CONFIG_ISDN_AUDIO
3000 if ((m
->mdmreg
[REG_SI1
] & 1) && (mval
> VBUFX
))
3003 info
->xmit_size
= mval
* 16;
3004 switch (m
->mdmreg
[REG_L2PROT
]) {
3005 case ISDN_PROTO_L2_V11096
:
3006 case ISDN_PROTO_L2_V11019
:
3007 case ISDN_PROTO_L2_V11038
:
3008 info
->xmit_size
/= 10;
3014 /* readonly registers */
3021 * Perform ATS command
3024 isdn_tty_cmd_ATS(char **p
, modem_info
* info
)
3026 atemu
*m
= &info
->emu
;
3032 mreg
= isdn_getnum(p
);
3033 if (mreg
< 0 || mreg
>= ISDN_MODEM_NUMREG
)
3038 mval
= isdn_getnum(p
);
3039 if (mval
< 0 || mval
> 255)
3041 if (isdn_tty_check_ats(mreg
, mval
, info
, m
))
3043 m
->mdmreg
[mreg
] = mval
;
3046 /* Set/Clear a single bit */
3048 bitpos
= isdn_getnum(p
);
3049 if ((bitpos
< 0) || (bitpos
> 7))
3054 bval
= isdn_getnum(p
);
3055 if (bval
< 0 || bval
> 1)
3058 mval
= m
->mdmreg
[mreg
] | (1 << bitpos
);
3060 mval
= m
->mdmreg
[mreg
] & ~(1 << bitpos
);
3061 if (isdn_tty_check_ats(mreg
, mval
, info
, m
))
3063 m
->mdmreg
[mreg
] = mval
;
3067 isdn_tty_at_cout("\r\n", info
);
3068 isdn_tty_at_cout((m
->mdmreg
[mreg
] & (1 << bitpos
)) ? "1" : "0",
3077 isdn_tty_show_profile(mreg
, info
);
3087 * Perform ATA command
3090 isdn_tty_cmd_ATA(modem_info
* info
)
3092 atemu
*m
= &info
->emu
;
3096 if (info
->msr
& UART_MSR_RI
) {
3097 /* Accept incoming call */
3099 strcpy(info
->last_num
, dev
->num
[info
->drv_index
]);
3100 m
->mdmreg
[REG_RINGCNT
] = 0;
3101 info
->msr
&= ~UART_MSR_RI
;
3102 l2
= m
->mdmreg
[REG_L2PROT
];
3103 #ifdef CONFIG_ISDN_AUDIO
3104 /* If more than one bit set in reg18, autoselect Layer2 */
3105 if ((m
->mdmreg
[REG_SI1
] & m
->mdmreg
[REG_SI1I
]) != m
->mdmreg
[REG_SI1
]) {
3106 if (m
->mdmreg
[REG_SI1I
] == 1) {
3107 if ((l2
!= ISDN_PROTO_L2_MODEM
) && (l2
!= ISDN_PROTO_L2_FAX
))
3108 l2
= ISDN_PROTO_L2_TRANS
;
3110 l2
= ISDN_PROTO_L2_X75I
;
3113 cmd
.driver
= info
->isdn_driver
;
3114 cmd
.command
= ISDN_CMD_SETL2
;
3115 cmd
.arg
= info
->isdn_channel
+ (l2
<< 8);
3118 cmd
.driver
= info
->isdn_driver
;
3119 cmd
.command
= ISDN_CMD_SETL3
;
3120 cmd
.arg
= info
->isdn_channel
+ (m
->mdmreg
[REG_L3PROT
] << 8);
3121 #ifdef CONFIG_ISDN_TTY_FAX
3122 if (l2
== ISDN_PROTO_L2_FAX
) {
3123 cmd
.parm
.fax
= info
->fax
;
3124 info
->fax
->direction
= ISDN_TTY_FAX_CONN_IN
;
3128 cmd
.driver
= info
->isdn_driver
;
3129 cmd
.arg
= info
->isdn_channel
;
3130 cmd
.command
= ISDN_CMD_ACCEPTD
;
3132 info
->emu
.carrierwait
= 0;
3134 isdn_timer_ctrl(ISDN_TIMER_CARRIER
, 1);
3136 isdn_tty_modem_result(RESULT_NO_ANSWER
, info
);
3139 #ifdef CONFIG_ISDN_AUDIO
3141 * Parse AT+F.. commands
3144 isdn_tty_cmd_PLUSF(char **p
, modem_info
* info
)
3146 atemu
*m
= &info
->emu
;
3149 if (!strncmp(p
[0], "CLASS", 5)) {
3154 sprintf(rs
, "\r\n%d",
3155 (m
->mdmreg
[REG_SI1
] & 1) ? 8 : 0);
3156 #ifdef CONFIG_ISDN_TTY_FAX
3157 if (TTY_IS_FCLASS2(info
))
3158 sprintf(rs
, "\r\n2");
3159 else if (TTY_IS_FCLASS1(info
))
3160 sprintf(rs
, "\r\n1");
3162 isdn_tty_at_cout(rs
, info
);
3169 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_X75I
;
3170 m
->mdmreg
[REG_L3PROT
] = ISDN_PROTO_L3_TRANS
;
3171 m
->mdmreg
[REG_SI1
] = 4;
3173 m
->mdmreg
[REG_PSIZE
] * 16;
3175 #ifdef CONFIG_ISDN_TTY_FAX
3178 if (!(dev
->global_features
&
3179 ISDN_FEATURE_L3_FCLASS1
))
3181 m
->mdmreg
[REG_SI1
] = 1;
3182 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_FAX
;
3183 m
->mdmreg
[REG_L3PROT
] = ISDN_PROTO_L3_FCLASS1
;
3185 m
->mdmreg
[REG_PSIZE
] * 16;
3189 if (!(dev
->global_features
&
3190 ISDN_FEATURE_L3_FCLASS2
))
3192 m
->mdmreg
[REG_SI1
] = 1;
3193 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_FAX
;
3194 m
->mdmreg
[REG_L3PROT
] = ISDN_PROTO_L3_FCLASS2
;
3196 m
->mdmreg
[REG_PSIZE
] * 16;
3201 /* L2 will change on dialout with si=1 */
3202 m
->mdmreg
[REG_L2PROT
] = ISDN_PROTO_L2_X75I
;
3203 m
->mdmreg
[REG_L3PROT
] = ISDN_PROTO_L3_TRANS
;
3204 m
->mdmreg
[REG_SI1
] = 5;
3205 info
->xmit_size
= VBUF
;
3209 strcpy(rs
, "\r\n0,");
3210 #ifdef CONFIG_ISDN_TTY_FAX
3211 if (dev
->global_features
&
3212 ISDN_FEATURE_L3_FCLASS1
)
3214 if (dev
->global_features
&
3215 ISDN_FEATURE_L3_FCLASS2
)
3219 isdn_tty_at_cout(rs
, info
);
3230 #ifdef CONFIG_ISDN_TTY_FAX
3231 return (isdn_tty_cmd_PLUSF_FAX(p
, info
));
3238 * Parse AT+V.. commands
3241 isdn_tty_cmd_PLUSV(char **p
, modem_info
* info
)
3243 atemu
*m
= &info
->emu
;
3245 static char *vcmd
[] =
3246 {"NH", "IP", "LS", "RX", "SD", "SM", "TX", "DD", NULL
};
3254 if (!strncmp(vcmd
[i
], p
[0], 2)) {
3262 /* AT+VNH - Auto hangup feature */
3266 isdn_tty_at_cout("\r\n1", info
);
3276 isdn_tty_at_cout("\r\n1", info
);
3287 /* AT+VIP - Reset all voice parameters */
3288 isdn_tty_modem_reset_vpar(m
);
3291 /* AT+VLS - Select device, accept incoming call */
3295 sprintf(rs
, "\r\n%d", m
->vpar
[0]);
3296 isdn_tty_at_cout(rs
, info
);
3311 isdn_tty_at_cout("\r\n0,2", info
);
3322 /* AT+VRX - Start recording */
3325 if (info
->online
!= 1) {
3326 isdn_tty_modem_result(RESULT_NO_ANSWER
, info
);
3329 info
->dtmf_state
= isdn_audio_dtmf_init(info
->dtmf_state
);
3330 if (!info
->dtmf_state
) {
3331 printk(KERN_WARNING
"isdn_tty: Couldn't malloc dtmf state\n");
3334 info
->silence_state
= isdn_audio_silence_init(info
->silence_state
);
3335 if (!info
->silence_state
) {
3336 printk(KERN_WARNING
"isdn_tty: Couldn't malloc silence state\n");
3339 if (m
->vpar
[3] < 5) {
3340 info
->adpcmr
= isdn_audio_adpcm_init(info
->adpcmr
, m
->vpar
[3]);
3341 if (!info
->adpcmr
) {
3342 printk(KERN_WARNING
"isdn_tty: Couldn't malloc adpcm state\n");
3346 #ifdef ISDN_DEBUG_AT
3347 printk(KERN_DEBUG
"AT: +VRX\n");
3350 isdn_tty_modem_result(RESULT_CONNECT
, info
);
3354 /* AT+VSD - Silence detection */
3358 sprintf(rs
, "\r\n<%d>,<%d>",
3361 isdn_tty_at_cout(rs
, info
);
3365 if ((*p
[0]>='0') && (*p
[0]<='9')) {
3366 par1
= isdn_getnum(p
);
3367 if ((par1
< 0) || (par1
> 31))
3372 par2
= isdn_getnum(p
);
3373 if ((par2
< 0) || (par2
> 255))
3381 isdn_tty_at_cout("\r\n<0-31>,<0-255>",
3392 /* AT+VSM - Select compression */
3396 sprintf(rs
, "\r\n<%d>,<%d><8000>",
3399 isdn_tty_at_cout(rs
, info
);
3409 par1
= isdn_getnum(p
);
3410 if ((par1
< 2) || (par1
> 6))
3416 isdn_tty_at_cout("\r\n2;ADPCM;2;0;(8000)\r\n",
3418 isdn_tty_at_cout("3;ADPCM;3;0;(8000)\r\n",
3420 isdn_tty_at_cout("4;ADPCM;4;0;(8000)\r\n",
3422 isdn_tty_at_cout("5;ALAW;8;0;(8000)\r\n",
3424 isdn_tty_at_cout("6;ULAW;8;0;(8000)\r\n",
3436 /* AT+VTX - Start sending */
3439 if (info
->online
!= 1) {
3440 isdn_tty_modem_result(RESULT_NO_ANSWER
, info
);
3443 info
->dtmf_state
= isdn_audio_dtmf_init(info
->dtmf_state
);
3444 if (!info
->dtmf_state
) {
3445 printk(KERN_WARNING
"isdn_tty: Couldn't malloc dtmf state\n");
3448 if (m
->vpar
[3] < 5) {
3449 info
->adpcms
= isdn_audio_adpcm_init(info
->adpcms
, m
->vpar
[3]);
3450 if (!info
->adpcms
) {
3451 printk(KERN_WARNING
"isdn_tty: Couldn't malloc adpcm state\n");
3455 #ifdef ISDN_DEBUG_AT
3456 printk(KERN_DEBUG
"AT: +VTX\n");
3460 isdn_tty_modem_result(RESULT_CONNECT
, info
);
3464 /* AT+VDD - DTMF detection */
3468 sprintf(rs
, "\r\n<%d>,<%d>",
3471 isdn_tty_at_cout(rs
, info
);
3475 if ((*p
[0]>='0') && (*p
[0]<='9')) {
3476 if (info
->online
!= 1)
3478 par1
= isdn_getnum(p
);
3479 if ((par1
< 0) || (par1
> 15))
3484 par2
= isdn_getnum(p
);
3485 if ((par2
< 0) || (par2
> 255))
3489 cmd
.driver
= info
->isdn_driver
;
3490 cmd
.command
= ISDN_CMD_AUDIO
;
3491 cmd
.arg
= info
->isdn_channel
+ (ISDN_AUDIO_SETDD
<< 8);
3492 cmd
.parm
.num
[0] = par1
;
3493 cmd
.parm
.num
[1] = par2
;
3499 isdn_tty_at_cout("\r\n<0-15>,<0-255>",
3514 #endif /* CONFIG_ISDN_AUDIO */
3517 * Parse and perform an AT-command-line.
3520 isdn_tty_parse_at(modem_info
* info
)
3522 atemu
*m
= &info
->emu
;
3526 #ifdef ISDN_DEBUG_AT
3527 printk(KERN_DEBUG
"AT: '%s'\n", m
->mdmcmd
);
3529 for (p
= &m
->mdmcmd
[2]; *p
;) {
3535 /* A - Accept incoming call */
3537 isdn_tty_cmd_ATA(info
);
3542 if (info
->msr
& UART_MSR_DCD
)
3544 if (info
->msr
& UART_MSR_RI
) {
3545 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
3548 isdn_tty_getdial(++p
, ds
, sizeof ds
);
3550 if (!strlen(m
->msn
))
3551 isdn_tty_modem_result(RESULT_NO_MSN_EAZ
, info
);
3552 else if (strlen(ds
))
3553 isdn_tty_dial(ds
, info
, m
);
3558 /* E - Turn Echo on/off */
3560 switch (isdn_getnum(&p
)) {
3562 m
->mdmreg
[REG_ECHO
] &= ~BIT_ECHO
;
3565 m
->mdmreg
[REG_ECHO
] |= BIT_ECHO
;
3572 /* H - On/Off-hook */
3577 isdn_tty_on_hook(info
);
3581 isdn_tty_off_hook();
3584 isdn_tty_on_hook(info
);
3589 /* I - Information */
3591 isdn_tty_at_cout("\r\nLinux ISDN", info
);
3599 isdn_tty_report(info
);
3603 sprintf(ds
, "\r\n%d", info
->emu
.charge
);
3604 isdn_tty_at_cout(ds
, info
);
3609 #ifdef DUMMY_HAYES_AT
3612 /* only for be compilant with common scripts */
3621 if (info
->msr
& UART_MSR_DCD
)
3622 /* if B-Channel is up */
3623 isdn_tty_modem_result((m
->mdmreg
[REG_L2PROT
] == ISDN_PROTO_L2_MODEM
) ? RESULT_CONNECT
:RESULT_CONNECT64000
, info
);
3625 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
3628 /* Q - Turn Emulator messages on/off */
3630 switch (isdn_getnum(&p
)) {
3632 m
->mdmreg
[REG_RESP
] |= BIT_RESP
;
3635 m
->mdmreg
[REG_RESP
] &= ~BIT_RESP
;
3642 /* S - Set/Get Register */
3644 if (isdn_tty_cmd_ATS(&p
, info
))
3648 /* V - Numeric or ASCII Emulator-messages */
3650 switch (isdn_getnum(&p
)) {
3652 m
->mdmreg
[REG_RESP
] |= BIT_RESPNUM
;
3655 m
->mdmreg
[REG_RESP
] &= ~BIT_RESPNUM
;
3662 /* Z - Load Registers from Profile */
3664 if (info
->msr
& UART_MSR_DCD
) {
3666 isdn_tty_on_hook(info
);
3668 isdn_tty_modem_reset_regs(info
, 1);
3673 #ifdef CONFIG_ISDN_AUDIO
3676 if (isdn_tty_cmd_PLUSF(&p
, info
))
3680 if ((!(m
->mdmreg
[REG_SI1
] & 1)) ||
3681 (m
->mdmreg
[REG_L2PROT
] == ISDN_PROTO_L2_MODEM
))
3684 if (isdn_tty_cmd_PLUSV(&p
, info
))
3687 #endif /* CONFIG_ISDN_AUDIO */
3688 case 'S': /* SUSPEND */
3690 isdn_tty_get_msnstr(ds
, &p
);
3691 isdn_tty_suspend(ds
, info
, m
);
3693 case 'R': /* RESUME */
3695 isdn_tty_get_msnstr(ds
, &p
);
3696 isdn_tty_resume(ds
, info
, m
);
3698 case 'M': /* MESSAGE */
3700 isdn_tty_send_msg(info
, m
, p
);
3708 if (isdn_tty_cmd_ATand(&p
, info
))
3715 #ifdef CONFIG_ISDN_AUDIO
3718 isdn_tty_modem_result(RESULT_OK
, info
);
3721 /* Need own toupper() because standard-toupper is not available
3724 #define my_toupper(c) (((c>='a')&&(c<='z'))?(c&0xdf):c)
3727 * Perform line-editing of AT-commands
3731 * count length of buffer
3732 * channel index to line (minor-device)
3735 isdn_tty_edit_at(const char *p
, int count
, modem_info
* info
)
3737 atemu
*m
= &info
->emu
;
3743 for (cnt
= count
; cnt
> 0; p
++, cnt
--) {
3746 if (c
== m
->mdmreg
[REG_CR
] || c
== m
->mdmreg
[REG_LF
]) {
3747 /* Separator (CR or LF) */
3748 m
->mdmcmd
[m
->mdmcmdl
] = 0;
3749 if (m
->mdmreg
[REG_ECHO
] & BIT_ECHO
) {
3752 isdn_tty_at_cout(eb
, info
);
3754 if ((m
->mdmcmdl
>= 2) && (!(strncmp(m
->mdmcmd
, "AT", 2))))
3755 isdn_tty_parse_at(info
);
3759 if (c
== m
->mdmreg
[REG_BS
] && m
->mdmreg
[REG_BS
] < 128) {
3760 /* Backspace-Function */
3761 if ((m
->mdmcmdl
> 2) || (!m
->mdmcmdl
)) {
3764 if (m
->mdmreg
[REG_ECHO
] & BIT_ECHO
)
3765 isdn_tty_at_cout("\b", info
);
3770 if (m
->mdmreg
[REG_ECHO
] & BIT_ECHO
) {
3773 isdn_tty_at_cout(eb
, info
);
3775 if (m
->mdmcmdl
< 255) {
3777 switch (m
->mdmcmdl
) {
3780 m
->mdmcmd
[m
->mdmcmdl
] = c
;
3781 m
->mdmcmd
[++m
->mdmcmdl
] = 0;
3785 /* Fall through, check for 'A' */
3788 m
->mdmcmd
[m
->mdmcmdl
] = c
;
3789 m
->mdmcmd
[++m
->mdmcmdl
] = 0;
3793 m
->mdmcmd
[m
->mdmcmdl
] = c
;
3794 m
->mdmcmd
[++m
->mdmcmdl
] = 0;
3803 * Switch all modem-channels who are online and got a valid
3804 * escape-sequence 1.5 seconds ago, to command-mode.
3805 * This function is called every second via timer-interrupt from within
3806 * timer-dispatcher isdn_timer_function()
3809 isdn_tty_modem_escape(void)
3815 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++)
3816 if (USG_MODEM(dev
->usage
[i
]))
3817 if ((midx
= dev
->m_idx
[i
]) >= 0) {
3818 modem_info
*info
= &dev
->mdm
.info
[midx
];
3821 if ((info
->emu
.pluscount
== 3) &&
3822 time_after(jiffies
, info
->emu
.lastplus
+ PLUSWAIT2
)) {
3823 info
->emu
.pluscount
= 0;
3825 isdn_tty_modem_result(RESULT_OK
, info
);
3829 isdn_timer_ctrl(ISDN_TIMER_MODEMPLUS
, ton
);
3833 * Put a RING-message to all modem-channels who have the RI-bit set.
3834 * This function is called every second via timer-interrupt from within
3835 * timer-dispatcher isdn_timer_function()
3838 isdn_tty_modem_ring(void)
3843 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
3844 modem_info
*info
= &dev
->mdm
.info
[i
];
3845 if (info
->msr
& UART_MSR_RI
) {
3847 isdn_tty_modem_result(RESULT_RING
, info
);
3850 isdn_timer_ctrl(ISDN_TIMER_MODEMRING
, ton
);
3854 * For all online tty's, try sending data to
3858 isdn_tty_modem_xmit(void)
3863 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
3864 modem_info
*info
= &dev
->mdm
.info
[i
];
3867 isdn_tty_senddown(info
);
3868 isdn_tty_tint(info
);
3871 isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT
, ton
);
3875 * Check all channels if we have a 'no carrier' timeout.
3876 * Timeout value is set by Register S7.
3879 isdn_tty_carrier_timeout(void)
3884 for (i
= 0; i
< ISDN_MAX_CHANNELS
; i
++) {
3885 modem_info
*info
= &dev
->mdm
.info
[i
];
3886 if (info
->dialing
) {
3887 if (info
->emu
.carrierwait
++ > info
->emu
.mdmreg
[REG_WAITC
]) {
3889 isdn_tty_modem_result(RESULT_NO_CARRIER
, info
);
3890 isdn_tty_modem_hup(info
, 1);
3896 isdn_timer_ctrl(ISDN_TIMER_CARRIER
, ton
);