blob: ee8ba87ac524be49469fe8f824d4de75336684bb [file] [log] [blame]
Jiri Slaby1ca67112012-04-02 13:53:48 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Linux ISDN subsystem, tty functions and AT-command emulator (linklevel).
3 *
4 * Copyright 1994-1999 by Fritz Elfert (fritz@isdn4linux.de)
5 * Copyright 1995,96 by Thinking Objects Software GmbH Wuerzburg
6 *
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
9 *
10 */
11#undef ISDN_TTY_STAT_DEBUG
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/isdn.h>
Jiri Slaby6776a2f2012-04-02 13:53:50 +020014#include <linux/serial.h> /* ASYNC_* flags */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/delay.h>
Arnd Bergmann72250d42010-09-14 09:35:04 +000017#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "isdn_common.h"
19#include "isdn_tty.h"
20#ifdef CONFIG_ISDN_AUDIO
21#include "isdn_audio.h"
22#define VBUF 0x3e0
23#define VBUFX (VBUF/16)
24#endif
25
26#define FIX_FILE_TRANSFER
27#define DUMMY_HAYES_AT
28
29/* Prototypes */
30
Arnd Bergmann72250d42010-09-14 09:35:04 +000031static DEFINE_MUTEX(modem_info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static int isdn_tty_edit_at(const char *, int, modem_info *);
33static void isdn_tty_check_esc(const u_char *, u_char, int, int *, u_long *);
34static void isdn_tty_modem_reset_regs(modem_info *, int);
35static void isdn_tty_cmd_ATA(modem_info *);
36static void isdn_tty_flush_buffer(struct tty_struct *);
37static void isdn_tty_modem_result(int, modem_info *);
38#ifdef CONFIG_ISDN_AUDIO
39static int isdn_tty_countDLE(unsigned char *, int);
40#endif
41
42/* Leave this unchanged unless you know what you do! */
43#define MODEM_PARANOIA_CHECK
44#define MODEM_DO_RESTART
45
46static int bit2si[8] =
47{1, 5, 7, 7, 7, 7, 7, 7};
48static int si2bit[8] =
49{4, 1, 4, 4, 4, 4, 4, 4};
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* 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.
55 * Return:
56 * 1 = Success
57 * 0 = Failure, data has to be buffered and later processed by
58 * isdn_tty_readmodem().
59 */
60static int
Joe Perches475be4d2012-02-19 19:52:38 -080061isdn_tty_try_read(modem_info *info, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 int c;
64 int len;
65 struct tty_struct *tty;
Alan Cox33f0f882006-01-09 20:54:13 -080066 char last;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jiri Slaby37630f42012-04-02 13:53:52 +020068 if (!info->online)
69 return 0;
Alan Cox33f0f882006-01-09 20:54:13 -080070
Jiri Slabyba432942012-04-02 13:53:57 +020071 tty = info->port.tty;
Jiri Slaby37630f42012-04-02 13:53:52 +020072 if (!tty)
73 return 0;
74
75 if (!(info->mcr & UART_MCR_RTS))
76 return 0;
77
78 len = skb->len
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#ifdef CONFIG_ISDN_AUDIO
Jiri Slaby37630f42012-04-02 13:53:52 +020080 + ISDN_AUDIO_SKB_DLECOUNT(skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
Jiri Slaby37630f42012-04-02 13:53:52 +020082 ;
83
84 c = tty_buffer_request_room(tty, len);
85 if (c < len)
86 return 0;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#ifdef CONFIG_ISDN_AUDIO
Jiri Slaby37630f42012-04-02 13:53:52 +020089 if (ISDN_AUDIO_SKB_DLECOUNT(skb)) {
90 int l = skb->len;
91 unsigned char *dp = skb->data;
92 while (--l) {
93 if (*dp == DLE)
94 tty_insert_flip_char(tty, DLE, 0);
95 tty_insert_flip_char(tty, *dp++, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Jiri Slaby37630f42012-04-02 13:53:52 +020097 if (*dp == DLE)
98 tty_insert_flip_char(tty, DLE, 0);
99 last = *dp;
100 } else {
101#endif
102 if (len > 1)
103 tty_insert_flip_string(tty, skb->data, len - 1);
104 last = skb->data[len - 1];
105#ifdef CONFIG_ISDN_AUDIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Jiri Slaby37630f42012-04-02 13:53:52 +0200107#endif
108 if (info->emu.mdmreg[REG_CPPP] & BIT_CPPP)
109 tty_insert_flip_char(tty, last, 0xFF);
110 else
111 tty_insert_flip_char(tty, last, TTY_NORMAL);
112 tty_flip_buffer_push(tty);
113 kfree_skb(skb);
114
115 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/* isdn_tty_readmodem() is called periodically from within timer-interrupt.
119 * It tries getting received data from the receive queue an stuff it into
120 * the tty's flip-buffer.
121 */
122void
123isdn_tty_readmodem(void)
124{
125 int resched = 0;
126 int midx;
127 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 int r;
129 struct tty_struct *tty;
130 modem_info *info;
131
132 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
Jiri Slaby37630f42012-04-02 13:53:52 +0200133 midx = dev->m_idx[i];
134 if (midx < 0)
135 continue;
136
137 info = &dev->mdm.info[midx];
138 if (!info->online)
139 continue;
140
141 r = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#ifdef CONFIG_ISDN_AUDIO
Jiri Slaby37630f42012-04-02 13:53:52 +0200143 isdn_audio_eval_dtmf(info);
144 if ((info->vonline & 1) && (info->emu.vpar[1]))
145 isdn_audio_eval_silence(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#endif
Jiri Slabyba432942012-04-02 13:53:57 +0200147 tty = info->port.tty;
Jiri Slaby37630f42012-04-02 13:53:52 +0200148 if (tty) {
149 if (info->mcr & UART_MCR_RTS) {
150 /* CISCO AsyncPPP Hack */
151 if (!(info->emu.mdmreg[REG_CPPP] & BIT_CPPP))
152 r = isdn_readbchan_tty(info->isdn_driver, info->isdn_channel, tty, 0);
153 else
154 r = isdn_readbchan_tty(info->isdn_driver, info->isdn_channel, tty, 1);
155 if (r)
156 tty_flip_buffer_push(tty);
157 } else
158 r = 1;
159 } else
160 r = 1;
161 if (r) {
162 info->rcvsched = 0;
163 resched = 1;
164 } else
165 info->rcvsched = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167 if (!resched)
168 isdn_timer_ctrl(ISDN_TIMER_MODEMREAD, 0);
169}
170
171int
172isdn_tty_rcv_skb(int i, int di, int channel, struct sk_buff *skb)
173{
174 ulong flags;
175 int midx;
176#ifdef CONFIG_ISDN_AUDIO
177 int ifmt;
178#endif
179 modem_info *info;
180
181 if ((midx = dev->m_idx[i]) < 0) {
182 /* if midx is invalid, packet is not for tty */
183 return 0;
184 }
185 info = &dev->mdm.info[midx];
186#ifdef CONFIG_ISDN_AUDIO
187 ifmt = 1;
Joe Perches475be4d2012-02-19 19:52:38 -0800188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if ((info->vonline) && (!info->emu.vpar[4]))
190 isdn_audio_calc_dtmf(info, skb->data, skb->len, ifmt);
191 if ((info->vonline & 1) && (info->emu.vpar[1]))
192 isdn_audio_calc_silence(info, skb->data, skb->len, ifmt);
193#endif
194 if ((info->online < 2)
195#ifdef CONFIG_ISDN_AUDIO
196 && (!(info->vonline & 1))
197#endif
198 ) {
199 /* If Modem not listening, drop data */
200 kfree_skb(skb);
201 return 1;
202 }
203 if (info->emu.mdmreg[REG_T70] & BIT_T70) {
204 if (info->emu.mdmreg[REG_T70] & BIT_T70_EXT) {
205 /* T.70 decoding: throw away the T.70 header (2 or 4 bytes) */
206 if (skb->data[0] == 3) /* pure data packet -> 4 byte headers */
207 skb_pull(skb, 4);
208 else
209 if (skb->data[0] == 1) /* keepalive packet -> 2 byte hdr */
210 skb_pull(skb, 2);
211 } else
212 /* T.70 decoding: Simply throw away the T.70 header (4 bytes) */
213 if ((skb->data[0] == 1) && ((skb->data[1] == 0) || (skb->data[1] == 1)))
214 skb_pull(skb, 4);
215 }
216#ifdef CONFIG_ISDN_AUDIO
217 ISDN_AUDIO_SKB_DLECOUNT(skb) = 0;
218 ISDN_AUDIO_SKB_LOCK(skb) = 0;
219 if (info->vonline & 1) {
220 /* voice conversion/compression */
221 switch (info->emu.vpar[3]) {
Joe Perches475be4d2012-02-19 19:52:38 -0800222 case 2:
223 case 3:
224 case 4:
225 /* adpcm
226 * Since compressed data takes less
227 * space, we can overwrite the buffer.
228 */
229 skb_trim(skb, isdn_audio_xlaw2adpcm(info->adpcmr,
230 ifmt,
231 skb->data,
232 skb->data,
233 skb->len));
234 break;
235 case 5:
236 /* a-law */
237 if (!ifmt)
238 isdn_audio_ulaw2alaw(skb->data, skb->len);
239 break;
240 case 6:
241 /* u-law */
242 if (ifmt)
243 isdn_audio_alaw2ulaw(skb->data, skb->len);
244 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 ISDN_AUDIO_SKB_DLECOUNT(skb) =
247 isdn_tty_countDLE(skb->data, skb->len);
248 }
249#ifdef CONFIG_ISDN_TTY_FAX
250 else {
251 if (info->faxonline & 2) {
252 isdn_tty_fax_bitorder(info, skb);
253 ISDN_AUDIO_SKB_DLECOUNT(skb) =
254 isdn_tty_countDLE(skb->data, skb->len);
255 }
256 }
257#endif
258#endif
Alan Cox33f0f882006-01-09 20:54:13 -0800259 /* Try to deliver directly via tty-buf if queue is empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 spin_lock_irqsave(&info->readlock, flags);
261 if (skb_queue_empty(&dev->drv[di]->rpqueue[channel]))
262 if (isdn_tty_try_read(info, skb)) {
263 spin_unlock_irqrestore(&info->readlock, flags);
264 return 1;
265 }
266 /* Direct deliver failed or queue wasn't empty.
267 * Queue up for later dequeueing via timer-irq.
268 */
269 __skb_queue_tail(&dev->drv[di]->rpqueue[channel], skb);
270 dev->drv[di]->rcvcount[channel] +=
271 (skb->len
272#ifdef CONFIG_ISDN_AUDIO
273 + ISDN_AUDIO_SKB_DLECOUNT(skb)
274#endif
275 );
276 spin_unlock_irqrestore(&info->readlock, flags);
277 /* Schedule dequeuing */
278 if ((dev->modempoll) && (info->rcvsched))
279 isdn_timer_ctrl(ISDN_TIMER_MODEMREAD, 1);
280 return 1;
281}
282
Adrian Bunk3e206b02005-06-25 14:58:35 -0700283static void
Joe Perches475be4d2012-02-19 19:52:38 -0800284isdn_tty_cleanup_xmit(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 skb_queue_purge(&info->xmit_queue);
287#ifdef CONFIG_ISDN_AUDIO
288 skb_queue_purge(&info->dtmf_queue);
289#endif
290}
291
292static void
Joe Perches475be4d2012-02-19 19:52:38 -0800293isdn_tty_tint(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 struct sk_buff *skb = skb_dequeue(&info->xmit_queue);
296 int len, slen;
297
298 if (!skb)
299 return;
300 len = skb->len;
301 if ((slen = isdn_writebuf_skb_stub(info->isdn_driver,
302 info->isdn_channel, 1, skb)) == len) {
Jiri Slabyba432942012-04-02 13:53:57 +0200303 struct tty_struct *tty = info->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 info->send_outstanding++;
305 info->msr &= ~UART_MSR_CTS;
306 info->lsr &= ~UART_LSR_TEMT;
307 tty_wakeup(tty);
308 return;
309 }
310 if (slen < 0) {
311 /* Error: no channel, already shutdown, or wrong parameter */
312 dev_kfree_skb(skb);
313 return;
314 }
315 skb_queue_head(&info->xmit_queue, skb);
316}
317
318#ifdef CONFIG_ISDN_AUDIO
319static int
320isdn_tty_countDLE(unsigned char *buf, int len)
321{
322 int count = 0;
323
324 while (len--)
325 if (*buf++ == DLE)
326 count++;
327 return count;
328}
329
330/* This routine is called from within isdn_tty_write() to perform
331 * DLE-decoding when sending audio-data.
332 */
333static int
Joe Perches475be4d2012-02-19 19:52:38 -0800334isdn_tty_handleDLEdown(modem_info *info, atemu *m, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Jiri Slaby82e46b32012-04-02 13:53:58 +0200336 unsigned char *p = &info->port.xmit_buf[info->xmit_count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int count = 0;
338
339 while (len > 0) {
340 if (m->lastDLE) {
341 m->lastDLE = 0;
342 switch (*p) {
Joe Perches475be4d2012-02-19 19:52:38 -0800343 case DLE:
344 /* Escape code */
345 if (len > 1)
346 memmove(p, p + 1, len - 1);
347 p--;
348 count++;
349 break;
350 case ETX:
351 /* End of data */
352 info->vonline |= 4;
353 return count;
354 case DC4:
355 /* Abort RX */
356 info->vonline &= ~1;
357#ifdef ISDN_DEBUG_MODEM_VOICE
358 printk(KERN_DEBUG
359 "DLEdown: got DLE-DC4, send DLE-ETX on ttyI%d\n",
360 info->line);
361#endif
362 isdn_tty_at_cout("\020\003", info);
363 if (!info->vonline) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#ifdef ISDN_DEBUG_MODEM_VOICE
365 printk(KERN_DEBUG
Joe Perches475be4d2012-02-19 19:52:38 -0800366 "DLEdown: send VCON on ttyI%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 info->line);
368#endif
Joe Perches475be4d2012-02-19 19:52:38 -0800369 isdn_tty_at_cout("\r\nVCON\r\n", info);
370 }
371 /* Fall through */
372 case 'q':
373 case 's':
374 /* Silence */
375 if (len > 1)
376 memmove(p, p + 1, len - 1);
377 p--;
378 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 } else {
381 if (*p == DLE)
382 m->lastDLE = 1;
383 else
384 count++;
385 }
386 p++;
387 len--;
388 }
389 if (len < 0) {
390 printk(KERN_WARNING "isdn_tty: len<0 in DLEdown\n");
391 return 0;
392 }
393 return count;
394}
395
396/* This routine is called from within isdn_tty_write() when receiving
397 * audio-data. It interrupts receiving, if an character other than
398 * ^S or ^Q is sent.
399 */
400static int
401isdn_tty_end_vrx(const char *buf, int c)
402{
403 char ch;
404
405 while (c--) {
406 ch = *buf;
407 if ((ch != 0x11) && (ch != 0x13))
408 return 1;
409 buf++;
410 }
411 return 0;
412}
413
414static int voice_cf[7] =
415{0, 0, 4, 3, 2, 0, 0};
416
417#endif /* CONFIG_ISDN_AUDIO */
418
419/* isdn_tty_senddown() is called either directly from within isdn_tty_write()
420 * or via timer-interrupt from within isdn_tty_modem_xmit(). It pulls
421 * outgoing data from the tty's xmit-buffer, handles voice-decompression or
422 * T.70 if necessary, and finally queues it up for sending via isdn_tty_tint.
423 */
424static void
Joe Perches475be4d2012-02-19 19:52:38 -0800425isdn_tty_senddown(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 int buflen;
428 int skb_res;
429#ifdef CONFIG_ISDN_AUDIO
430 int audio_len;
431#endif
432 struct sk_buff *skb;
433
434#ifdef CONFIG_ISDN_AUDIO
435 if (info->vonline & 4) {
436 info->vonline &= ~6;
437 if (!info->vonline) {
438#ifdef ISDN_DEBUG_MODEM_VOICE
439 printk(KERN_DEBUG
440 "senddown: send VCON on ttyI%d\n",
441 info->line);
442#endif
443 isdn_tty_at_cout("\r\nVCON\r\n", info);
444 }
445 }
446#endif
447 if (!(buflen = info->xmit_count))
448 return;
Joe Perches475be4d2012-02-19 19:52:38 -0800449 if ((info->emu.mdmreg[REG_CTS] & BIT_CTS) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 info->msr &= ~UART_MSR_CTS;
Joe Perches475be4d2012-02-19 19:52:38 -0800451 info->lsr &= ~UART_LSR_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /* info->xmit_count is modified here and in isdn_tty_write().
453 * So we return here if isdn_tty_write() is in the
454 * critical section.
455 */
456 atomic_inc(&info->xmit_lock);
457 if (!(atomic_dec_and_test(&info->xmit_lock)))
458 return;
459 if (info->isdn_driver < 0) {
460 info->xmit_count = 0;
461 return;
462 }
463 skb_res = dev->drv[info->isdn_driver]->interface->hl_hdrlen + 4;
464#ifdef CONFIG_ISDN_AUDIO
465 if (info->vonline & 2)
466 audio_len = buflen * voice_cf[info->emu.vpar[3]];
467 else
468 audio_len = 0;
469 skb = dev_alloc_skb(skb_res + buflen + audio_len);
470#else
471 skb = dev_alloc_skb(skb_res + buflen);
472#endif
473 if (!skb) {
474 printk(KERN_WARNING
475 "isdn_tty: Out of memory in ttyI%d senddown\n",
476 info->line);
477 return;
478 }
479 skb_reserve(skb, skb_res);
Jiri Slaby82e46b32012-04-02 13:53:58 +0200480 memcpy(skb_put(skb, buflen), info->port.xmit_buf, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 info->xmit_count = 0;
482#ifdef CONFIG_ISDN_AUDIO
483 if (info->vonline & 2) {
484 /* For now, ifmt is fixed to 1 (alaw), since this
485 * is used with ISDN everywhere in the world, except
486 * US, Canada and Japan.
487 * Later, when US-ISDN protocols are implemented,
488 * this setting will depend on the D-channel protocol.
489 */
490 int ifmt = 1;
491
492 /* voice conversion/decompression */
493 switch (info->emu.vpar[3]) {
Joe Perches475be4d2012-02-19 19:52:38 -0800494 case 2:
495 case 3:
496 case 4:
497 /* adpcm, compatible to ZyXel 1496 modem
498 * with ROM revision 6.01
499 */
500 audio_len = isdn_audio_adpcm2xlaw(info->adpcms,
501 ifmt,
502 skb->data,
503 skb_put(skb, audio_len),
504 buflen);
505 skb_pull(skb, buflen);
506 skb_trim(skb, audio_len);
507 break;
508 case 5:
509 /* a-law */
510 if (!ifmt)
511 isdn_audio_alaw2ulaw(skb->data,
512 buflen);
513 break;
514 case 6:
515 /* u-law */
516 if (ifmt)
517 isdn_audio_ulaw2alaw(skb->data,
518 buflen);
519 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
522#endif /* CONFIG_ISDN_AUDIO */
523 if (info->emu.mdmreg[REG_T70] & BIT_T70) {
524 /* Add T.70 simplified header */
525 if (info->emu.mdmreg[REG_T70] & BIT_T70_EXT)
526 memcpy(skb_push(skb, 2), "\1\0", 2);
527 else
528 memcpy(skb_push(skb, 4), "\1\0\1\0", 4);
529 }
530 skb_queue_tail(&info->xmit_queue, skb);
531}
532
533/************************************************************
534 *
535 * Modem-functions
536 *
537 * mostly "stolen" from original Linux-serial.c and friends.
538 *
539 ************************************************************/
540
541/* The next routine is called once from within timer-interrupt
542 * triggered within isdn_tty_modem_ncarrier(). It calls
543 * isdn_tty_modem_result() to stuff a "NO CARRIER" Message
Alan Cox33f0f882006-01-09 20:54:13 -0800544 * into the tty's buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 */
546static void
547isdn_tty_modem_do_ncarrier(unsigned long data)
548{
549 modem_info *info = (modem_info *) data;
550 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
551}
552
553/* Next routine is called, whenever the DTR-signal is raised.
554 * It checks the ncarrier-flag, and triggers the above routine
555 * when necessary. The ncarrier-flag is set, whenever DTR goes
556 * low.
557 */
558static void
Joe Perches475be4d2012-02-19 19:52:38 -0800559isdn_tty_modem_ncarrier(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 if (info->ncarrier) {
562 info->nc_timer.expires = jiffies + HZ;
563 add_timer(&info->nc_timer);
564 }
565}
566
567/*
568 * return the usage calculated by si and layer 2 protocol
569 */
Adrian Bunk3e206b02005-06-25 14:58:35 -0700570static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571isdn_calc_usage(int si, int l2)
572{
573 int usg = ISDN_USAGE_MODEM;
574
575#ifdef CONFIG_ISDN_AUDIO
576 if (si == 1) {
Joe Perches475be4d2012-02-19 19:52:38 -0800577 switch (l2) {
578 case ISDN_PROTO_L2_MODEM:
579 usg = ISDN_USAGE_MODEM;
580 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581#ifdef CONFIG_ISDN_TTY_FAX
Joe Perches475be4d2012-02-19 19:52:38 -0800582 case ISDN_PROTO_L2_FAX:
583 usg = ISDN_USAGE_FAX;
584 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585#endif
Joe Perches475be4d2012-02-19 19:52:38 -0800586 case ISDN_PROTO_L2_TRANS:
587 default:
588 usg = ISDN_USAGE_VOICE;
589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 }
592#endif
Joe Perches475be4d2012-02-19 19:52:38 -0800593 return (usg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596/* isdn_tty_dial() performs dialing of a tty an the necessary
597 * setup of the lower levels before that.
598 */
599static void
Joe Perches475be4d2012-02-19 19:52:38 -0800600isdn_tty_dial(char *n, modem_info *info, atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 int usg = ISDN_USAGE_MODEM;
603 int si = 7;
604 int l2 = m->mdmreg[REG_L2PROT];
605 u_long flags;
606 isdn_ctrl cmd;
607 int i;
608 int j;
609
610 for (j = 7; j >= 0; j--)
611 if (m->mdmreg[REG_SI1] & (1 << j)) {
612 si = bit2si[j];
613 break;
614 }
615 usg = isdn_calc_usage(si, l2);
616#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -0800617 if ((si == 1) &&
618 (l2 != ISDN_PROTO_L2_MODEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619#ifdef CONFIG_ISDN_TTY_FAX
Joe Perches475be4d2012-02-19 19:52:38 -0800620 && (l2 != ISDN_PROTO_L2_FAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621#endif
622 ) {
623 l2 = ISDN_PROTO_L2_TRANS;
624 usg = ISDN_USAGE_VOICE;
625 }
626#endif
627 m->mdmreg[REG_SI1I] = si2bit[si];
628 spin_lock_irqsave(&dev->lock, flags);
629 i = isdn_get_free_channel(usg, l2, m->mdmreg[REG_L3PROT], -1, -1, m->msn);
630 if (i < 0) {
631 spin_unlock_irqrestore(&dev->lock, flags);
632 isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
633 } else {
634 info->isdn_driver = dev->drvmap[i];
635 info->isdn_channel = dev->chanmap[i];
636 info->drv_index = i;
637 dev->m_idx[i] = info->line;
638 dev->usage[i] |= ISDN_USAGE_OUTGOING;
639 info->last_dir = 1;
640 strcpy(info->last_num, n);
641 isdn_info_update();
642 spin_unlock_irqrestore(&dev->lock, flags);
643 cmd.driver = info->isdn_driver;
644 cmd.arg = info->isdn_channel;
645 cmd.command = ISDN_CMD_CLREAZ;
646 isdn_command(&cmd);
647 strcpy(cmd.parm.num, isdn_map_eaz2msn(m->msn, info->isdn_driver));
648 cmd.driver = info->isdn_driver;
649 cmd.command = ISDN_CMD_SETEAZ;
650 isdn_command(&cmd);
651 cmd.driver = info->isdn_driver;
652 cmd.command = ISDN_CMD_SETL2;
653 info->last_l2 = l2;
654 cmd.arg = info->isdn_channel + (l2 << 8);
655 isdn_command(&cmd);
656 cmd.driver = info->isdn_driver;
657 cmd.command = ISDN_CMD_SETL3;
658 cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
659#ifdef CONFIG_ISDN_TTY_FAX
660 if (l2 == ISDN_PROTO_L2_FAX) {
661 cmd.parm.fax = info->fax;
662 info->fax->direction = ISDN_TTY_FAX_CONN_OUT;
663 }
664#endif
665 isdn_command(&cmd);
666 cmd.driver = info->isdn_driver;
667 cmd.arg = info->isdn_channel;
668 sprintf(cmd.parm.setup.phone, "%s", n);
669 sprintf(cmd.parm.setup.eazmsn, "%s",
670 isdn_map_eaz2msn(m->msn, info->isdn_driver));
671 cmd.parm.setup.si1 = si;
672 cmd.parm.setup.si2 = m->mdmreg[REG_SI2];
673 cmd.command = ISDN_CMD_DIAL;
674 info->dialing = 1;
675 info->emu.carrierwait = 0;
676 strcpy(dev->num[i], n);
677 isdn_info_update();
678 isdn_command(&cmd);
679 isdn_timer_ctrl(ISDN_TIMER_CARRIER, 1);
680 }
681}
682
683/* isdn_tty_hangup() disassociates a tty from the real
684 * ISDN-line (hangup). The usage-status is cleared
685 * and some cleanup is done also.
686 */
687void
Joe Perches475be4d2012-02-19 19:52:38 -0800688isdn_tty_modem_hup(modem_info *info, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 isdn_ctrl cmd;
691 int di, ch;
692
693 if (!info)
694 return;
695
696 di = info->isdn_driver;
697 ch = info->isdn_channel;
698 if (di < 0 || ch < 0)
699 return;
700
701 info->isdn_driver = -1;
702 info->isdn_channel = -1;
703
704#ifdef ISDN_DEBUG_MODEM_HUP
705 printk(KERN_DEBUG "Mhup ttyI%d\n", info->line);
706#endif
707 info->rcvsched = 0;
Jiri Slabyba432942012-04-02 13:53:57 +0200708 isdn_tty_flush_buffer(info->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (info->online) {
710 info->last_lhup = local;
711 info->online = 0;
712 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
713 }
714#ifdef CONFIG_ISDN_AUDIO
715 info->vonline = 0;
716#ifdef CONFIG_ISDN_TTY_FAX
717 info->faxonline = 0;
718 info->fax->phase = ISDN_FAX_PHASE_IDLE;
719#endif
720 info->emu.vpar[4] = 0;
721 info->emu.vpar[5] = 8;
Jesper Juhl3c7208f2005-11-07 01:01:29 -0800722 kfree(info->dtmf_state);
723 info->dtmf_state = NULL;
724 kfree(info->silence_state);
725 info->silence_state = NULL;
726 kfree(info->adpcms);
727 info->adpcms = NULL;
728 kfree(info->adpcmr);
729 info->adpcmr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#endif
731 if ((info->msr & UART_MSR_RI) &&
Joe Perches475be4d2012-02-19 19:52:38 -0800732 (info->emu.mdmreg[REG_RUNG] & BIT_RUNG))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 isdn_tty_modem_result(RESULT_RUNG, info);
734 info->msr &= ~(UART_MSR_DCD | UART_MSR_RI);
735 info->lsr |= UART_LSR_TEMT;
736
737 if (local) {
738 cmd.driver = di;
739 cmd.command = ISDN_CMD_HANGUP;
740 cmd.arg = ch;
741 isdn_command(&cmd);
742 }
743
744 isdn_all_eaz(di, ch);
745 info->emu.mdmreg[REG_RINGCNT] = 0;
746 isdn_free_channel(di, ch, 0);
747
748 if (info->drv_index >= 0) {
749 dev->m_idx[info->drv_index] = -1;
750 info->drv_index = -1;
751 }
752}
753
754/*
Joe Perches475be4d2012-02-19 19:52:38 -0800755 * Begin of a CAPI like interface, currently used only for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 * supplementary service (CAPI 2.0 part III)
757 */
758#include <linux/isdn/capicmd.h>
Paul Gortmaker07a97fe2011-08-30 12:08:51 -0400759#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761int
762isdn_tty_capi_facility(capi_msg *cm) {
Joe Perches475be4d2012-02-19 19:52:38 -0800763 return (-1); /* dummy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766/* isdn_tty_suspend() tries to suspend the current tty connection
767 */
768static void
Joe Perches475be4d2012-02-19 19:52:38 -0800769isdn_tty_suspend(char *id, modem_info *info, atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
771 isdn_ctrl cmd;
Joe Perches475be4d2012-02-19 19:52:38 -0800772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int l;
774
775 if (!info)
776 return;
777
778#ifdef ISDN_DEBUG_MODEM_SERVICES
779 printk(KERN_DEBUG "Msusp ttyI%d\n", info->line);
780#endif
781 l = strlen(id);
782 if ((info->isdn_driver >= 0)) {
Joe Perches475be4d2012-02-19 19:52:38 -0800783 cmd.parm.cmsg.Length = l + 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 cmd.parm.cmsg.Command = CAPI_FACILITY;
785 cmd.parm.cmsg.Subcommand = CAPI_REQ;
786 cmd.parm.cmsg.adr.Controller = info->isdn_driver + 1;
787 cmd.parm.cmsg.para[0] = 3; /* 16 bit 0x0003 suplementary service */
788 cmd.parm.cmsg.para[1] = 0;
789 cmd.parm.cmsg.para[2] = l + 3;
790 cmd.parm.cmsg.para[3] = 4; /* 16 bit 0x0004 Suspend */
791 cmd.parm.cmsg.para[4] = 0;
792 cmd.parm.cmsg.para[5] = l;
793 strncpy(&cmd.parm.cmsg.para[6], id, l);
794 cmd.command = CAPI_PUT_MESSAGE;
795 cmd.driver = info->isdn_driver;
796 cmd.arg = info->isdn_channel;
797 isdn_command(&cmd);
798 }
799}
800
801/* isdn_tty_resume() tries to resume a suspended call
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300802 * setup of the lower levels before that. unfortunately here is no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * checking for compatibility of used protocols implemented by Q931
804 * It does the same things like isdn_tty_dial, the last command
805 * is different, may be we can merge it.
806 */
807
808static void
Joe Perches475be4d2012-02-19 19:52:38 -0800809isdn_tty_resume(char *id, modem_info *info, atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 int usg = ISDN_USAGE_MODEM;
812 int si = 7;
813 int l2 = m->mdmreg[REG_L2PROT];
814 isdn_ctrl cmd;
815 ulong flags;
816 int i;
817 int j;
818 int l;
819
820 l = strlen(id);
821 for (j = 7; j >= 0; j--)
822 if (m->mdmreg[REG_SI1] & (1 << j)) {
823 si = bit2si[j];
824 break;
825 }
826 usg = isdn_calc_usage(si, l2);
827#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -0800828 if ((si == 1) &&
829 (l2 != ISDN_PROTO_L2_MODEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830#ifdef CONFIG_ISDN_TTY_FAX
Joe Perches475be4d2012-02-19 19:52:38 -0800831 && (l2 != ISDN_PROTO_L2_FAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832#endif
833 ) {
834 l2 = ISDN_PROTO_L2_TRANS;
835 usg = ISDN_USAGE_VOICE;
836 }
837#endif
838 m->mdmreg[REG_SI1I] = si2bit[si];
839 spin_lock_irqsave(&dev->lock, flags);
840 i = isdn_get_free_channel(usg, l2, m->mdmreg[REG_L3PROT], -1, -1, m->msn);
841 if (i < 0) {
842 spin_unlock_irqrestore(&dev->lock, flags);
843 isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
844 } else {
845 info->isdn_driver = dev->drvmap[i];
846 info->isdn_channel = dev->chanmap[i];
847 info->drv_index = i;
848 dev->m_idx[i] = info->line;
849 dev->usage[i] |= ISDN_USAGE_OUTGOING;
850 info->last_dir = 1;
851// strcpy(info->last_num, n);
852 isdn_info_update();
853 spin_unlock_irqrestore(&dev->lock, flags);
854 cmd.driver = info->isdn_driver;
855 cmd.arg = info->isdn_channel;
856 cmd.command = ISDN_CMD_CLREAZ;
857 isdn_command(&cmd);
858 strcpy(cmd.parm.num, isdn_map_eaz2msn(m->msn, info->isdn_driver));
859 cmd.driver = info->isdn_driver;
860 cmd.command = ISDN_CMD_SETEAZ;
861 isdn_command(&cmd);
862 cmd.driver = info->isdn_driver;
863 cmd.command = ISDN_CMD_SETL2;
864 info->last_l2 = l2;
865 cmd.arg = info->isdn_channel + (l2 << 8);
866 isdn_command(&cmd);
867 cmd.driver = info->isdn_driver;
868 cmd.command = ISDN_CMD_SETL3;
869 cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
870 isdn_command(&cmd);
871 cmd.driver = info->isdn_driver;
872 cmd.arg = info->isdn_channel;
Joe Perches475be4d2012-02-19 19:52:38 -0800873 cmd.parm.cmsg.Length = l + 18;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 cmd.parm.cmsg.Command = CAPI_FACILITY;
875 cmd.parm.cmsg.Subcommand = CAPI_REQ;
876 cmd.parm.cmsg.adr.Controller = info->isdn_driver + 1;
877 cmd.parm.cmsg.para[0] = 3; /* 16 bit 0x0003 suplementary service */
878 cmd.parm.cmsg.para[1] = 0;
Joe Perches475be4d2012-02-19 19:52:38 -0800879 cmd.parm.cmsg.para[2] = l + 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 cmd.parm.cmsg.para[3] = 5; /* 16 bit 0x0005 Resume */
881 cmd.parm.cmsg.para[4] = 0;
882 cmd.parm.cmsg.para[5] = l;
883 strncpy(&cmd.parm.cmsg.para[6], id, l);
Joe Perches475be4d2012-02-19 19:52:38 -0800884 cmd.command = CAPI_PUT_MESSAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 info->dialing = 1;
886// strcpy(dev->num[i], n);
887 isdn_info_update();
888 isdn_command(&cmd);
889 isdn_timer_ctrl(ISDN_TIMER_CARRIER, 1);
890 }
891}
892
893/* isdn_tty_send_msg() sends a message to a HL driver
894 * This is used for hybrid modem cards to send AT commands to it
895 */
896
897static void
Joe Perches475be4d2012-02-19 19:52:38 -0800898isdn_tty_send_msg(modem_info *info, atemu *m, char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 int usg = ISDN_USAGE_MODEM;
901 int si = 7;
902 int l2 = m->mdmreg[REG_L2PROT];
903 isdn_ctrl cmd;
904 ulong flags;
905 int i;
906 int j;
907 int l;
908
909 l = strlen(msg);
910 if (!l) {
911 isdn_tty_modem_result(RESULT_ERROR, info);
912 return;
913 }
914 for (j = 7; j >= 0; j--)
915 if (m->mdmreg[REG_SI1] & (1 << j)) {
916 si = bit2si[j];
917 break;
918 }
919 usg = isdn_calc_usage(si, l2);
920#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -0800921 if ((si == 1) &&
922 (l2 != ISDN_PROTO_L2_MODEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923#ifdef CONFIG_ISDN_TTY_FAX
Joe Perches475be4d2012-02-19 19:52:38 -0800924 && (l2 != ISDN_PROTO_L2_FAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925#endif
926 ) {
927 l2 = ISDN_PROTO_L2_TRANS;
928 usg = ISDN_USAGE_VOICE;
929 }
930#endif
931 m->mdmreg[REG_SI1I] = si2bit[si];
932 spin_lock_irqsave(&dev->lock, flags);
933 i = isdn_get_free_channel(usg, l2, m->mdmreg[REG_L3PROT], -1, -1, m->msn);
934 if (i < 0) {
935 spin_unlock_irqrestore(&dev->lock, flags);
936 isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
937 } else {
938 info->isdn_driver = dev->drvmap[i];
939 info->isdn_channel = dev->chanmap[i];
940 info->drv_index = i;
941 dev->m_idx[i] = info->line;
942 dev->usage[i] |= ISDN_USAGE_OUTGOING;
943 info->last_dir = 1;
944 isdn_info_update();
945 spin_unlock_irqrestore(&dev->lock, flags);
946 cmd.driver = info->isdn_driver;
947 cmd.arg = info->isdn_channel;
948 cmd.command = ISDN_CMD_CLREAZ;
949 isdn_command(&cmd);
950 strcpy(cmd.parm.num, isdn_map_eaz2msn(m->msn, info->isdn_driver));
951 cmd.driver = info->isdn_driver;
952 cmd.command = ISDN_CMD_SETEAZ;
953 isdn_command(&cmd);
954 cmd.driver = info->isdn_driver;
955 cmd.command = ISDN_CMD_SETL2;
956 info->last_l2 = l2;
957 cmd.arg = info->isdn_channel + (l2 << 8);
958 isdn_command(&cmd);
959 cmd.driver = info->isdn_driver;
960 cmd.command = ISDN_CMD_SETL3;
961 cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
962 isdn_command(&cmd);
963 cmd.driver = info->isdn_driver;
964 cmd.arg = info->isdn_channel;
Joe Perches475be4d2012-02-19 19:52:38 -0800965 cmd.parm.cmsg.Length = l + 14;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 cmd.parm.cmsg.Command = CAPI_MANUFACTURER;
967 cmd.parm.cmsg.Subcommand = CAPI_REQ;
968 cmd.parm.cmsg.adr.Controller = info->isdn_driver + 1;
Joe Perches475be4d2012-02-19 19:52:38 -0800969 cmd.parm.cmsg.para[0] = l + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 strncpy(&cmd.parm.cmsg.para[1], msg, l);
Joe Perches475be4d2012-02-19 19:52:38 -0800971 cmd.parm.cmsg.para[l + 1] = 0xd;
972 cmd.command = CAPI_PUT_MESSAGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973/* info->dialing = 1;
974 strcpy(dev->num[i], n);
975 isdn_info_update();
976*/
977 isdn_command(&cmd);
978 }
979}
980
981static inline int
982isdn_tty_paranoia_check(modem_info *info, char *name, const char *routine)
983{
984#ifdef MODEM_PARANOIA_CHECK
985 if (!info) {
986 printk(KERN_WARNING "isdn_tty: null info_struct for %s in %s\n",
Joe Perches475be4d2012-02-19 19:52:38 -0800987 name, routine);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 1;
989 }
990 if (info->magic != ISDN_ASYNC_MAGIC) {
991 printk(KERN_WARNING "isdn_tty: bad magic for modem struct %s in %s\n",
992 name, routine);
993 return 1;
994 }
995#endif
996 return 0;
997}
998
999/*
1000 * This routine is called to set the UART divisor registers to match
1001 * the specified baud rate for a serial port.
1002 */
1003static void
Joe Perches475be4d2012-02-19 19:52:38 -08001004isdn_tty_change_speed(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Jiri Slaby265d6f02012-04-02 13:53:59 +02001006 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 uint cflag,
Joe Perches475be4d2012-02-19 19:52:38 -08001008 cval,
1009 quot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 int i;
1011
Jiri Slaby265d6f02012-04-02 13:53:59 +02001012 if (!port->tty || !port->tty->termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001014 cflag = port->tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 quot = i = cflag & CBAUD;
1017 if (i & CBAUDEX) {
1018 i &= ~CBAUDEX;
1019 if (i < 1 || i > 2)
Jiri Slaby265d6f02012-04-02 13:53:59 +02001020 port->tty->termios->c_cflag &= ~CBAUDEX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 else
1022 i += 15;
1023 }
1024 if (quot) {
1025 info->mcr |= UART_MCR_DTR;
1026 isdn_tty_modem_ncarrier(info);
1027 } else {
1028 info->mcr &= ~UART_MCR_DTR;
1029 if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
1030#ifdef ISDN_DEBUG_MODEM_HUP
1031 printk(KERN_DEBUG "Mhup in changespeed\n");
1032#endif
1033 if (info->online)
1034 info->ncarrier = 1;
1035 isdn_tty_modem_reset_regs(info, 0);
1036 isdn_tty_modem_hup(info, 1);
1037 }
1038 return;
1039 }
1040 /* byte size and parity */
1041 cval = cflag & (CSIZE | CSTOPB);
1042 cval >>= 4;
1043 if (cflag & PARENB)
1044 cval |= UART_LCR_PARITY;
1045 if (!(cflag & PARODD))
1046 cval |= UART_LCR_EPAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /* CTS flow control flag and modem status interrupts */
1049 if (cflag & CRTSCTS) {
Jiri Slaby265d6f02012-04-02 13:53:59 +02001050 port->flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 } else
Jiri Slaby265d6f02012-04-02 13:53:59 +02001052 port->flags &= ~ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (cflag & CLOCAL)
Jiri Slaby265d6f02012-04-02 13:53:59 +02001054 port->flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 else {
Jiri Slaby265d6f02012-04-02 13:53:59 +02001056 port->flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058}
1059
1060static int
Joe Perches475be4d2012-02-19 19:52:38 -08001061isdn_tty_startup(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Jiri Slaby48decc12012-04-02 13:53:54 +02001063 if (info->port.flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return 0;
1065 isdn_lock_drivers();
1066#ifdef ISDN_DEBUG_MODEM_OPEN
1067 printk(KERN_DEBUG "starting up ttyi%d ...\n", info->line);
1068#endif
1069 /*
1070 * Now, initialize the UART
1071 */
1072 info->mcr = UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2;
Jiri Slabyba432942012-04-02 13:53:57 +02001073 if (info->port.tty)
1074 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 /*
1076 * and set the speed of the serial port
1077 */
1078 isdn_tty_change_speed(info);
1079
Jiri Slaby48decc12012-04-02 13:53:54 +02001080 info->port.flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 info->msr |= (UART_MSR_DSR | UART_MSR_CTS);
1082 info->send_outstanding = 0;
1083 return 0;
1084}
1085
1086/*
1087 * This routine will shutdown a serial port; interrupts are disabled, and
1088 * DTR is dropped if the hangup on close termio flag is on.
1089 */
1090static void
Joe Perches475be4d2012-02-19 19:52:38 -08001091isdn_tty_shutdown(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Jiri Slaby48decc12012-04-02 13:53:54 +02001093 if (!(info->port.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return;
1095#ifdef ISDN_DEBUG_MODEM_OPEN
1096 printk(KERN_DEBUG "Shutting down isdnmodem port %d ....\n", info->line);
1097#endif
1098 isdn_unlock_drivers();
1099 info->msr &= ~UART_MSR_RI;
Jiri Slabyba432942012-04-02 13:53:57 +02001100 if (!info->port.tty || (info->port.tty->termios->c_cflag & HUPCL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 info->mcr &= ~(UART_MCR_DTR | UART_MCR_RTS);
1102 if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
1103 isdn_tty_modem_reset_regs(info, 0);
1104#ifdef ISDN_DEBUG_MODEM_HUP
1105 printk(KERN_DEBUG "Mhup in isdn_tty_shutdown\n");
1106#endif
1107 isdn_tty_modem_hup(info, 1);
1108 }
1109 }
Jiri Slabyba432942012-04-02 13:53:57 +02001110 if (info->port.tty)
1111 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Jiri Slaby48decc12012-04-02 13:53:54 +02001113 info->port.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
1116/* isdn_tty_write() is the main send-routine. It is called from the upper
1117 * levels within the kernel to perform sending data. Depending on the
1118 * online-flag it either directs output to the at-command-interpreter or
1119 * to the lower level. Additional tasks done here:
1120 * - If online, check for escape-sequence (+++)
1121 * - If sending audio-data, call isdn_tty_DLEdown() to parse DLE-codes.
1122 * - If receiving audio-data, call isdn_tty_end_vrx() to abort if needed.
1123 * - If dialing, abort dial.
1124 */
1125static int
Joe Perches475be4d2012-02-19 19:52:38 -08001126isdn_tty_write(struct tty_struct *tty, const u_char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
1128 int c;
1129 int total = 0;
1130 modem_info *info = (modem_info *) tty->driver_data;
1131 atemu *m = &info->emu;
1132
1133 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_write"))
1134 return 0;
1135 /* See isdn_tty_senddown() */
1136 atomic_inc(&info->xmit_lock);
1137 while (1) {
1138 c = count;
1139 if (c > info->xmit_size - info->xmit_count)
1140 c = info->xmit_size - info->xmit_count;
1141 if (info->isdn_driver >= 0 && c > dev->drv[info->isdn_driver]->maxbufsize)
1142 c = dev->drv[info->isdn_driver]->maxbufsize;
1143 if (c <= 0)
1144 break;
1145 if ((info->online > 1)
1146#ifdef CONFIG_ISDN_AUDIO
1147 || (info->vonline & 3)
1148#endif
1149 ) {
1150#ifdef CONFIG_ISDN_AUDIO
1151 if (!info->vonline)
1152#endif
1153 isdn_tty_check_esc(buf, m->mdmreg[REG_ESC], c,
1154 &(m->pluscount),
1155 &(m->lastplus));
Jiri Slaby82e46b32012-04-02 13:53:58 +02001156 memcpy(&info->port.xmit_buf[info->xmit_count], buf, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157#ifdef CONFIG_ISDN_AUDIO
1158 if (info->vonline) {
1159 int cc = isdn_tty_handleDLEdown(info, m, c);
1160 if (info->vonline & 2) {
1161 if (!cc) {
1162 /* If DLE decoding results in zero-transmit, but
1163 * c originally was non-zero, do a wakeup.
1164 */
1165 tty_wakeup(tty);
1166 info->msr |= UART_MSR_CTS;
1167 info->lsr |= UART_LSR_TEMT;
1168 }
1169 info->xmit_count += cc;
1170 }
1171 if ((info->vonline & 3) == 1) {
1172 /* Do NOT handle Ctrl-Q or Ctrl-S
1173 * when in full-duplex audio mode.
1174 */
1175 if (isdn_tty_end_vrx(buf, c)) {
1176 info->vonline &= ~1;
1177#ifdef ISDN_DEBUG_MODEM_VOICE
1178 printk(KERN_DEBUG
1179 "got !^Q/^S, send DLE-ETX,VCON on ttyI%d\n",
1180 info->line);
1181#endif
1182 isdn_tty_at_cout("\020\003\r\nVCON\r\n", info);
1183 }
1184 }
1185 } else
Joe Perches475be4d2012-02-19 19:52:38 -08001186 if (TTY_IS_FCLASS1(info)) {
1187 int cc = isdn_tty_handleDLEdown(info, m, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Joe Perches475be4d2012-02-19 19:52:38 -08001189 if (info->vonline & 4) { /* ETX seen */
1190 isdn_ctrl c;
1191
1192 c.command = ISDN_CMD_FAXCMD;
1193 c.driver = info->isdn_driver;
1194 c.arg = info->isdn_channel;
1195 c.parm.aux.cmd = ISDN_FAX_CLASS1_CTRL;
1196 c.parm.aux.subcmd = ETX;
1197 isdn_command(&c);
1198 }
1199 info->vonline = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200#ifdef ISDN_DEBUG_MODEM_VOICE
Joe Perches475be4d2012-02-19 19:52:38 -08001201 printk(KERN_DEBUG "fax dle cc/c %d/%d\n", cc, c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001203 info->xmit_count += cc;
1204 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001206 info->xmit_count += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 } else {
1208 info->msr |= UART_MSR_CTS;
1209 info->lsr |= UART_LSR_TEMT;
1210 if (info->dialing) {
1211 info->dialing = 0;
1212#ifdef ISDN_DEBUG_MODEM_HUP
1213 printk(KERN_DEBUG "Mhup in isdn_tty_write\n");
1214#endif
1215 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
1216 isdn_tty_modem_hup(info, 1);
1217 } else
1218 c = isdn_tty_edit_at(buf, c, info);
1219 }
1220 buf += c;
1221 count -= c;
1222 total += c;
1223 }
1224 atomic_dec(&info->xmit_lock);
David S. Millerb03efcf2005-07-08 14:57:23 -07001225 if ((info->xmit_count) || !skb_queue_empty(&info->xmit_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (m->mdmreg[REG_DXMT] & BIT_DXMT) {
1227 isdn_tty_senddown(info);
1228 isdn_tty_tint(info);
1229 }
1230 isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT, 1);
1231 }
1232 return total;
1233}
1234
1235static int
1236isdn_tty_write_room(struct tty_struct *tty)
1237{
1238 modem_info *info = (modem_info *) tty->driver_data;
1239 int ret;
1240
1241 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_write_room"))
1242 return 0;
1243 if (!info->online)
1244 return info->xmit_size;
1245 ret = info->xmit_size - info->xmit_count;
1246 return (ret < 0) ? 0 : ret;
1247}
1248
1249static int
1250isdn_tty_chars_in_buffer(struct tty_struct *tty)
1251{
1252 modem_info *info = (modem_info *) tty->driver_data;
1253
1254 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_chars_in_buffer"))
1255 return 0;
1256 if (!info->online)
1257 return 0;
1258 return (info->xmit_count);
1259}
1260
1261static void
1262isdn_tty_flush_buffer(struct tty_struct *tty)
1263{
1264 modem_info *info;
1265
1266 if (!tty) {
1267 return;
1268 }
1269 info = (modem_info *) tty->driver_data;
1270 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_flush_buffer")) {
1271 return;
1272 }
1273 isdn_tty_cleanup_xmit(info);
1274 info->xmit_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 tty_wakeup(tty);
1276}
1277
1278static void
1279isdn_tty_flush_chars(struct tty_struct *tty)
1280{
1281 modem_info *info = (modem_info *) tty->driver_data;
1282
1283 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_flush_chars"))
1284 return;
David S. Millerb03efcf2005-07-08 14:57:23 -07001285 if ((info->xmit_count) || !skb_queue_empty(&info->xmit_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT, 1);
1287}
1288
1289/*
1290 * ------------------------------------------------------------
1291 * isdn_tty_throttle()
1292 *
1293 * This routine is called by the upper-layer tty layer to signal that
1294 * incoming characters should be throttled.
1295 * ------------------------------------------------------------
1296 */
1297static void
1298isdn_tty_throttle(struct tty_struct *tty)
1299{
1300 modem_info *info = (modem_info *) tty->driver_data;
1301
1302 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_throttle"))
1303 return;
1304 if (I_IXOFF(tty))
1305 info->x_char = STOP_CHAR(tty);
1306 info->mcr &= ~UART_MCR_RTS;
1307}
1308
1309static void
1310isdn_tty_unthrottle(struct tty_struct *tty)
1311{
1312 modem_info *info = (modem_info *) tty->driver_data;
1313
1314 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_unthrottle"))
1315 return;
1316 if (I_IXOFF(tty)) {
1317 if (info->x_char)
1318 info->x_char = 0;
1319 else
1320 info->x_char = START_CHAR(tty);
1321 }
1322 info->mcr |= UART_MCR_RTS;
1323}
1324
1325/*
1326 * ------------------------------------------------------------
1327 * isdn_tty_ioctl() and friends
1328 * ------------------------------------------------------------
1329 */
1330
1331/*
1332 * isdn_tty_get_lsr_info - get line status register info
1333 *
1334 * Purpose: Let user call ioctl() to get info when the UART physically
1335 * is emptied. On bus types like RS485, the transmitter must
1336 * release the bus after transmitting. This must be done when
1337 * the transmit shift register is empty, not be done when the
1338 * transmit holding register is empty. This functionality
1339 * allows RS485 driver to be written in user space.
1340 */
1341static int
Joe Perches475be4d2012-02-19 19:52:38 -08001342isdn_tty_get_lsr_info(modem_info *info, uint __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 u_char status;
1345 uint result;
1346
1347 status = info->lsr;
1348 result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
1349 return put_user(result, value);
1350}
1351
1352
1353static int
Alan Cox60b33c12011-02-14 16:26:14 +00001354isdn_tty_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 modem_info *info = (modem_info *) tty->driver_data;
1357 u_char control, status;
1358
Harvey Harrison156f1ed2008-04-28 02:14:40 -07001359 if (isdn_tty_paranoia_check(info, tty->name, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return -ENODEV;
1361 if (tty->flags & (1 << TTY_IO_ERROR))
1362 return -EIO;
1363
Arnd Bergmann72250d42010-09-14 09:35:04 +00001364 mutex_lock(&modem_info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365#ifdef ISDN_DEBUG_MODEM_IOCTL
1366 printk(KERN_DEBUG "ttyI%d ioctl TIOCMGET\n", info->line);
1367#endif
1368
1369 control = info->mcr;
1370 status = info->msr;
Arnd Bergmann72250d42010-09-14 09:35:04 +00001371 mutex_unlock(&modem_info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return ((control & UART_MCR_RTS) ? TIOCM_RTS : 0)
Joe Perches475be4d2012-02-19 19:52:38 -08001373 | ((control & UART_MCR_DTR) ? TIOCM_DTR : 0)
1374 | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0)
1375 | ((status & UART_MSR_RI) ? TIOCM_RNG : 0)
1376 | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0)
1377 | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
1380static int
Alan Cox20b9d172011-02-14 16:26:50 +00001381isdn_tty_tiocmset(struct tty_struct *tty,
Joe Perches475be4d2012-02-19 19:52:38 -08001382 unsigned int set, unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 modem_info *info = (modem_info *) tty->driver_data;
1385
Harvey Harrison156f1ed2008-04-28 02:14:40 -07001386 if (isdn_tty_paranoia_check(info, tty->name, __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return -ENODEV;
1388 if (tty->flags & (1 << TTY_IO_ERROR))
1389 return -EIO;
1390
1391#ifdef ISDN_DEBUG_MODEM_IOCTL
1392 printk(KERN_DEBUG "ttyI%d ioctl TIOCMxxx: %x %x\n", info->line, set, clear);
1393#endif
1394
Arnd Bergmann72250d42010-09-14 09:35:04 +00001395 mutex_lock(&modem_info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (set & TIOCM_RTS)
1397 info->mcr |= UART_MCR_RTS;
1398 if (set & TIOCM_DTR) {
1399 info->mcr |= UART_MCR_DTR;
1400 isdn_tty_modem_ncarrier(info);
1401 }
1402
1403 if (clear & TIOCM_RTS)
1404 info->mcr &= ~UART_MCR_RTS;
1405 if (clear & TIOCM_DTR) {
1406 info->mcr &= ~UART_MCR_DTR;
1407 if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
1408 isdn_tty_modem_reset_regs(info, 0);
1409#ifdef ISDN_DEBUG_MODEM_HUP
1410 printk(KERN_DEBUG "Mhup in TIOCMSET\n");
1411#endif
1412 if (info->online)
1413 info->ncarrier = 1;
1414 isdn_tty_modem_hup(info, 1);
1415 }
1416 }
Arnd Bergmann72250d42010-09-14 09:35:04 +00001417 mutex_unlock(&modem_info_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 return 0;
1419}
1420
1421static int
Alan Cox6caa76b2011-02-14 16:27:22 +00001422isdn_tty_ioctl(struct tty_struct *tty, uint cmd, ulong arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 modem_info *info = (modem_info *) tty->driver_data;
1425 int retval;
1426
1427 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_ioctl"))
1428 return -ENODEV;
1429 if (tty->flags & (1 << TTY_IO_ERROR))
1430 return -EIO;
1431 switch (cmd) {
Joe Perches475be4d2012-02-19 19:52:38 -08001432 case TCSBRK: /* SVID version: non-zero arg --> no break */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433#ifdef ISDN_DEBUG_MODEM_IOCTL
Joe Perches475be4d2012-02-19 19:52:38 -08001434 printk(KERN_DEBUG "ttyI%d ioctl TCSBRK\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001436 retval = tty_check_change(tty);
1437 if (retval)
1438 return retval;
1439 tty_wait_until_sent(tty, 0);
1440 return 0;
1441 case TCSBRKP: /* support for POSIX tcsendbreak() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442#ifdef ISDN_DEBUG_MODEM_IOCTL
Joe Perches475be4d2012-02-19 19:52:38 -08001443 printk(KERN_DEBUG "ttyI%d ioctl TCSBRKP\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001445 retval = tty_check_change(tty);
1446 if (retval)
1447 return retval;
1448 tty_wait_until_sent(tty, 0);
1449 return 0;
1450 case TIOCSERGETLSR: /* Get line status register */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451#ifdef ISDN_DEBUG_MODEM_IOCTL
Joe Perches475be4d2012-02-19 19:52:38 -08001452 printk(KERN_DEBUG "ttyI%d ioctl TIOCSERGETLSR\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001454 return isdn_tty_get_lsr_info(info, (uint __user *) arg);
1455 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456#ifdef ISDN_DEBUG_MODEM_IOCTL
Joe Perches475be4d2012-02-19 19:52:38 -08001457 printk(KERN_DEBUG "UNKNOWN ioctl 0x%08x on ttyi%d\n", cmd, info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458#endif
Joe Perches475be4d2012-02-19 19:52:38 -08001459 return -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
1461 return 0;
1462}
1463
1464static void
Alan Cox606d0992006-12-08 02:38:45 -08001465isdn_tty_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466{
1467 modem_info *info = (modem_info *) tty->driver_data;
1468
1469 if (!old_termios)
1470 isdn_tty_change_speed(info);
1471 else {
Alan Cox6e4d3762008-04-30 00:53:27 -07001472 if (tty->termios->c_cflag == old_termios->c_cflag &&
1473 tty->termios->c_ispeed == old_termios->c_ispeed &&
1474 tty->termios->c_ospeed == old_termios->c_ospeed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return;
1476 isdn_tty_change_speed(info);
1477 if ((old_termios->c_cflag & CRTSCTS) &&
Alan Cox6e4d3762008-04-30 00:53:27 -07001478 !(tty->termios->c_cflag & CRTSCTS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
1481}
1482
1483/*
1484 * ------------------------------------------------------------
1485 * isdn_tty_open() and friends
1486 * ------------------------------------------------------------
1487 */
1488static int
Joe Perches475be4d2012-02-19 19:52:38 -08001489isdn_tty_block_til_ready(struct tty_struct *tty, struct file *filp, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Jiri Slaby265d6f02012-04-02 13:53:59 +02001491 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 DECLARE_WAITQUEUE(wait, NULL);
1493 int do_clocal = 0;
1494 int retval;
1495
1496 /*
1497 * If the device is in the middle of being closed, then block
1498 * until it's done, and then try again.
1499 */
1500 if (tty_hung_up_p(filp) ||
Jiri Slaby265d6f02012-04-02 13:53:59 +02001501 (port->flags & ASYNC_CLOSING)) {
1502 if (port->flags & ASYNC_CLOSING)
1503 interruptible_sleep_on(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504#ifdef MODEM_DO_RESTART
Jiri Slaby265d6f02012-04-02 13:53:59 +02001505 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return -EAGAIN;
1507 else
1508 return -ERESTARTSYS;
1509#else
1510 return -EAGAIN;
1511#endif
1512 }
1513 /*
1514 * If non-blocking mode is set, then make the check up front
1515 * and then exit.
1516 */
1517 if ((filp->f_flags & O_NONBLOCK) ||
1518 (tty->flags & (1 << TTY_IO_ERROR))) {
Jiri Slaby265d6f02012-04-02 13:53:59 +02001519 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return 0;
1521 }
Jiri Slaby05eb48b2012-04-02 13:53:49 +02001522 if (tty->termios->c_cflag & CLOCAL)
1523 do_clocal = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /*
1525 * Block waiting for the carrier detect and the line to become
1526 * free (i.e., not in use by the callout). While we are in
1527 * this loop, info->count is dropped by one, so that
1528 * isdn_tty_close() knows when to free things. We restore it upon
1529 * exit, either normal or abnormal.
1530 */
1531 retval = 0;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001532 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533#ifdef ISDN_DEBUG_MODEM_OPEN
1534 printk(KERN_DEBUG "isdn_tty_block_til_ready before block: ttyi%d, count = %d\n",
1535 info->line, info->count);
1536#endif
1537 if (!(tty_hung_up_p(filp)))
Jiri Slaby265d6f02012-04-02 13:53:59 +02001538 port->count--;
1539 port->blocked_open++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 while (1) {
1541 set_current_state(TASK_INTERRUPTIBLE);
1542 if (tty_hung_up_p(filp) ||
Jiri Slaby265d6f02012-04-02 13:53:59 +02001543 !(port->flags & ASYNC_INITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544#ifdef MODEM_DO_RESTART
Jiri Slaby265d6f02012-04-02 13:53:59 +02001545 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 retval = -EAGAIN;
1547 else
1548 retval = -ERESTARTSYS;
1549#else
1550 retval = -EAGAIN;
1551#endif
1552 break;
1553 }
Jiri Slaby265d6f02012-04-02 13:53:59 +02001554 if (!(port->flags & ASYNC_CLOSING) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 (do_clocal || (info->msr & UART_MSR_DCD))) {
1556 break;
1557 }
1558 if (signal_pending(current)) {
1559 retval = -ERESTARTSYS;
1560 break;
1561 }
1562#ifdef ISDN_DEBUG_MODEM_OPEN
1563 printk(KERN_DEBUG "isdn_tty_block_til_ready blocking: ttyi%d, count = %d\n",
Jiri Slaby265d6f02012-04-02 13:53:59 +02001564 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565#endif
1566 schedule();
1567 }
1568 current->state = TASK_RUNNING;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001569 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (!tty_hung_up_p(filp))
Jiri Slaby265d6f02012-04-02 13:53:59 +02001571 port->count++;
1572 port->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573#ifdef ISDN_DEBUG_MODEM_OPEN
1574 printk(KERN_DEBUG "isdn_tty_block_til_ready after blocking: ttyi%d, count = %d\n",
Jiri Slaby265d6f02012-04-02 13:53:59 +02001575 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576#endif
1577 if (retval)
1578 return retval;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001579 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return 0;
1581}
1582
1583/*
1584 * This routine is called whenever a serial port is opened. It
1585 * enables interrupts for a serial port, linking in its async structure into
1586 * the IRQ chain. It also performs the serial-specific
1587 * initialization for the tty structure.
1588 */
1589static int
1590isdn_tty_open(struct tty_struct *tty, struct file *filp)
1591{
Jiri Slaby265d6f02012-04-02 13:53:59 +02001592 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 modem_info *info;
Jiri Slaby410235f2012-03-05 14:52:01 +01001594 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Jiri Slaby410235f2012-03-05 14:52:01 +01001596 info = &dev->mdm.info[tty->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_open"))
1598 return -ENODEV;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001599 port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600#ifdef ISDN_DEBUG_MODEM_OPEN
Joe Perches475be4d2012-02-19 19:52:38 -08001601 printk(KERN_DEBUG "isdn_tty_open %s, count = %d\n", tty->name,
Jiri Slaby265d6f02012-04-02 13:53:59 +02001602 port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603#endif
Jiri Slaby265d6f02012-04-02 13:53:59 +02001604 port->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 tty->driver_data = info;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001606 port->tty = tty;
1607 tty->port = port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 /*
1609 * Start up serial port
1610 */
1611 retval = isdn_tty_startup(info);
1612 if (retval) {
1613#ifdef ISDN_DEBUG_MODEM_OPEN
1614 printk(KERN_DEBUG "isdn_tty_open return after startup\n");
1615#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return retval;
1617 }
1618 retval = isdn_tty_block_til_ready(tty, filp, info);
1619 if (retval) {
1620#ifdef ISDN_DEBUG_MODEM_OPEN
1621 printk(KERN_DEBUG "isdn_tty_open return after isdn_tty_block_til_ready \n");
1622#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return retval;
1624 }
1625#ifdef ISDN_DEBUG_MODEM_OPEN
1626 printk(KERN_DEBUG "isdn_tty_open ttyi%d successful...\n", info->line);
1627#endif
1628 dev->modempoll++;
1629#ifdef ISDN_DEBUG_MODEM_OPEN
1630 printk(KERN_DEBUG "isdn_tty_open normal exit\n");
1631#endif
1632 return 0;
1633}
1634
1635static void
1636isdn_tty_close(struct tty_struct *tty, struct file *filp)
1637{
1638 modem_info *info = (modem_info *) tty->driver_data;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001639 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 ulong timeout;
1641
1642 if (!info || isdn_tty_paranoia_check(info, tty->name, "isdn_tty_close"))
1643 return;
1644 if (tty_hung_up_p(filp)) {
1645#ifdef ISDN_DEBUG_MODEM_OPEN
1646 printk(KERN_DEBUG "isdn_tty_close return after tty_hung_up_p\n");
1647#endif
1648 return;
1649 }
Jiri Slaby265d6f02012-04-02 13:53:59 +02001650 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 /*
1652 * Uh, oh. tty->count is 1, which means that the tty
1653 * structure will be freed. Info->count should always
1654 * be one in these conditions. If it's greater than
1655 * one, we've got real problems, since it means the
1656 * serial port won't be shutdown.
1657 */
1658 printk(KERN_ERR "isdn_tty_close: bad port count; tty->count is 1, "
Jiri Slaby265d6f02012-04-02 13:53:59 +02001659 "info->count is %d\n", port->count);
1660 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
Jiri Slaby265d6f02012-04-02 13:53:59 +02001662 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 printk(KERN_ERR "isdn_tty_close: bad port count for ttyi%d: %d\n",
Jiri Slaby265d6f02012-04-02 13:53:59 +02001664 info->line, port->count);
1665 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
Jiri Slaby265d6f02012-04-02 13:53:59 +02001667 if (port->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668#ifdef ISDN_DEBUG_MODEM_OPEN
1669 printk(KERN_DEBUG "isdn_tty_close after info->count != 0\n");
1670#endif
1671 return;
1672 }
Jiri Slaby265d6f02012-04-02 13:53:59 +02001673 port->flags |= ASYNC_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 tty->closing = 1;
1676 /*
1677 * At this point we stop accepting input. To do this, we
1678 * disable the receive line status interrupts, and tell the
1679 * interrupt driver to stop checking the data ready bit in the
1680 * line status register.
1681 */
Jiri Slaby265d6f02012-04-02 13:53:59 +02001682 if (port->flags & ASYNC_INITIALIZED) {
Jiri Slaby0b058352011-08-25 15:12:08 +02001683 tty_wait_until_sent_from_close(tty, 3000); /* 30 seconds timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /*
1685 * Before we drop DTR, make sure the UART transmitter
1686 * has completely drained; this is especially
1687 * important if there is a transmit FIFO!
1688 */
1689 timeout = jiffies + HZ;
1690 while (!(info->lsr & UART_LSR_TEMT)) {
Nishanth Aravamudan24763c42005-11-07 01:01:16 -08001691 schedule_timeout_interruptible(20);
Joe Perches475be4d2012-02-19 19:52:38 -08001692 if (time_after(jiffies, timeout))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 break;
1694 }
1695 }
1696 dev->modempoll--;
1697 isdn_tty_shutdown(info);
Alan Cox978e5952008-04-30 00:53:59 -07001698 isdn_tty_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 tty_ldisc_flush(tty);
Jiri Slaby265d6f02012-04-02 13:53:59 +02001700 port->tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 info->ncarrier = 0;
1702 tty->closing = 0;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001703 if (port->blocked_open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 msleep_interruptible(500);
Jiri Slaby265d6f02012-04-02 13:53:59 +02001705 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
Jiri Slaby265d6f02012-04-02 13:53:59 +02001707 port->flags &= ~(ASYNC_NORMAL_ACTIVE | ASYNC_CLOSING);
1708 wake_up_interruptible(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709#ifdef ISDN_DEBUG_MODEM_OPEN
1710 printk(KERN_DEBUG "isdn_tty_close normal exit\n");
1711#endif
1712}
1713
1714/*
1715 * isdn_tty_hangup() --- called by tty_hangup() when a hangup is signaled.
1716 */
1717static void
1718isdn_tty_hangup(struct tty_struct *tty)
1719{
1720 modem_info *info = (modem_info *) tty->driver_data;
Jiri Slaby265d6f02012-04-02 13:53:59 +02001721 struct tty_port *port = &info->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if (isdn_tty_paranoia_check(info, tty->name, "isdn_tty_hangup"))
1724 return;
1725 isdn_tty_shutdown(info);
Jiri Slaby265d6f02012-04-02 13:53:59 +02001726 port->count = 0;
1727 port->flags &= ~ASYNC_NORMAL_ACTIVE;
1728 port->tty = NULL;
1729 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
1731
1732/* This routine initializes all emulator-data.
1733 */
1734static void
Joe Perches475be4d2012-02-19 19:52:38 -08001735isdn_tty_reset_profile(atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
1737 m->profile[0] = 0;
1738 m->profile[1] = 0;
1739 m->profile[2] = 43;
1740 m->profile[3] = 13;
1741 m->profile[4] = 10;
1742 m->profile[5] = 8;
1743 m->profile[6] = 3;
1744 m->profile[7] = 60;
1745 m->profile[8] = 2;
1746 m->profile[9] = 6;
1747 m->profile[10] = 7;
1748 m->profile[11] = 70;
1749 m->profile[12] = 0x45;
1750 m->profile[13] = 4;
1751 m->profile[14] = ISDN_PROTO_L2_X75I;
1752 m->profile[15] = ISDN_PROTO_L3_TRANS;
1753 m->profile[16] = ISDN_SERIAL_XMIT_SIZE / 16;
1754 m->profile[17] = ISDN_MODEM_WINSIZE;
1755 m->profile[18] = 4;
1756 m->profile[19] = 0;
1757 m->profile[20] = 0;
1758 m->profile[23] = 0;
1759 m->pmsn[0] = '\0';
1760 m->plmsn[0] = '\0';
1761}
1762
1763#ifdef CONFIG_ISDN_AUDIO
1764static void
Joe Perches475be4d2012-02-19 19:52:38 -08001765isdn_tty_modem_reset_vpar(atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
1767 m->vpar[0] = 2; /* Voice-device (2 = phone line) */
1768 m->vpar[1] = 0; /* Silence detection level (0 = none ) */
1769 m->vpar[2] = 70; /* Silence interval (7 sec. ) */
1770 m->vpar[3] = 2; /* Compression type (1 = ADPCM-2 ) */
1771 m->vpar[4] = 0; /* DTMF detection level (0 = softcode ) */
1772 m->vpar[5] = 8; /* DTMF interval (8 * 5 ms. ) */
1773}
1774#endif
1775
1776#ifdef CONFIG_ISDN_TTY_FAX
1777static void
Joe Perches475be4d2012-02-19 19:52:38 -08001778isdn_tty_modem_reset_faxpar(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
1780 T30_s *f = info->fax;
1781
1782 f->code = 0;
1783 f->phase = ISDN_FAX_PHASE_IDLE;
1784 f->direction = 0;
1785 f->resolution = 1; /* fine */
1786 f->rate = 5; /* 14400 bit/s */
1787 f->width = 0;
1788 f->length = 0;
1789 f->compression = 0;
1790 f->ecm = 0;
1791 f->binary = 0;
1792 f->scantime = 0;
1793 memset(&f->id[0], 32, FAXIDLEN - 1);
1794 f->id[FAXIDLEN - 1] = 0;
1795 f->badlin = 0;
1796 f->badmul = 0;
1797 f->bor = 0;
1798 f->nbc = 0;
1799 f->cq = 0;
1800 f->cr = 0;
1801 f->ctcrty = 0;
1802 f->minsp = 0;
1803 f->phcto = 30;
1804 f->rel = 0;
1805 memset(&f->pollid[0], 32, FAXIDLEN - 1);
1806 f->pollid[FAXIDLEN - 1] = 0;
1807}
1808#endif
1809
1810static void
Joe Perches475be4d2012-02-19 19:52:38 -08001811isdn_tty_modem_reset_regs(modem_info *info, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 atemu *m = &info->emu;
1814 if ((m->mdmreg[REG_DTRR] & BIT_DTRR) || force) {
1815 memcpy(m->mdmreg, m->profile, ISDN_MODEM_NUMREG);
1816 memcpy(m->msn, m->pmsn, ISDN_MSNLEN);
1817 memcpy(m->lmsn, m->plmsn, ISDN_LMSNLEN);
1818 info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
1819 }
1820#ifdef CONFIG_ISDN_AUDIO
1821 isdn_tty_modem_reset_vpar(m);
1822#endif
1823#ifdef CONFIG_ISDN_TTY_FAX
1824 isdn_tty_modem_reset_faxpar(info);
1825#endif
1826 m->mdmcmdl = 0;
1827}
1828
1829static void
Joe Perches475be4d2012-02-19 19:52:38 -08001830modem_write_profile(atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 memcpy(m->profile, m->mdmreg, ISDN_MODEM_NUMREG);
1833 memcpy(m->pmsn, m->msn, ISDN_MSNLEN);
1834 memcpy(m->plmsn, m->lmsn, ISDN_LMSNLEN);
1835 if (dev->profd)
1836 send_sig(SIGIO, dev->profd, 1);
1837}
1838
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001839static const struct tty_operations modem_ops = {
Joe Perches475be4d2012-02-19 19:52:38 -08001840 .open = isdn_tty_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 .close = isdn_tty_close,
1842 .write = isdn_tty_write,
1843 .flush_chars = isdn_tty_flush_chars,
1844 .write_room = isdn_tty_write_room,
1845 .chars_in_buffer = isdn_tty_chars_in_buffer,
1846 .flush_buffer = isdn_tty_flush_buffer,
1847 .ioctl = isdn_tty_ioctl,
1848 .throttle = isdn_tty_throttle,
1849 .unthrottle = isdn_tty_unthrottle,
1850 .set_termios = isdn_tty_set_termios,
1851 .hangup = isdn_tty_hangup,
1852 .tiocmget = isdn_tty_tiocmget,
1853 .tiocmset = isdn_tty_tiocmset,
1854};
1855
1856int
1857isdn_tty_modem_init(void)
1858{
1859 isdn_modem_t *m;
1860 int i, retval;
1861 modem_info *info;
1862
1863 m = &dev->mdm;
1864 m->tty_modem = alloc_tty_driver(ISDN_MAX_CHANNELS);
1865 if (!m->tty_modem)
1866 return -ENOMEM;
1867 m->tty_modem->name = "ttyI";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 m->tty_modem->major = ISDN_TTY_MAJOR;
1869 m->tty_modem->minor_start = 0;
1870 m->tty_modem->type = TTY_DRIVER_TYPE_SERIAL;
1871 m->tty_modem->subtype = SERIAL_TYPE_NORMAL;
1872 m->tty_modem->init_termios = tty_std_termios;
1873 m->tty_modem->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07001874 m->tty_modem->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 m->tty_modem->driver_name = "isdn_tty";
1876 tty_set_operations(m->tty_modem, &modem_ops);
1877 retval = tty_register_driver(m->tty_modem);
1878 if (retval) {
1879 printk(KERN_WARNING "isdn_tty: Couldn't register modem-device\n");
1880 goto err;
1881 }
1882 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1883 info = &m->info[i];
1884#ifdef CONFIG_ISDN_TTY_FAX
1885 if (!(info->fax = kmalloc(sizeof(T30_s), GFP_KERNEL))) {
1886 printk(KERN_ERR "Could not allocate fax t30-buffer\n");
1887 retval = -ENOMEM;
1888 goto err_unregister;
1889 }
1890#endif
Jiri Slaby48decc12012-04-02 13:53:54 +02001891 tty_port_init(&info->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 spin_lock_init(&info->readlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 sprintf(info->last_cause, "0000");
1894 sprintf(info->last_num, "none");
1895 info->last_dir = 0;
1896 info->last_lhup = 1;
1897 info->last_l2 = -1;
1898 info->last_si = 0;
1899 isdn_tty_reset_profile(&info->emu);
1900 isdn_tty_modem_reset_regs(info, 1);
1901 info->magic = ISDN_ASYNC_MAGIC;
1902 info->line = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 info->x_char = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 info->isdn_driver = -1;
1905 info->isdn_channel = -1;
1906 info->drv_index = -1;
1907 info->xmit_size = ISDN_SERIAL_XMIT_SIZE;
1908 init_timer(&info->nc_timer);
1909 info->nc_timer.function = isdn_tty_modem_do_ncarrier;
1910 info->nc_timer.data = (unsigned long) info;
1911 skb_queue_head_init(&info->xmit_queue);
1912#ifdef CONFIG_ISDN_AUDIO
1913 skb_queue_head_init(&info->dtmf_queue);
1914#endif
Jiri Slaby82e46b32012-04-02 13:53:58 +02001915 info->port.xmit_buf = kmalloc(ISDN_SERIAL_XMIT_MAX + 5,
1916 GFP_KERNEL);
1917 if (!info->port.xmit_buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 printk(KERN_ERR "Could not allocate modem xmit-buffer\n");
1919 retval = -ENOMEM;
1920 goto err_unregister;
1921 }
1922 /* Make room for T.70 header */
Jiri Slaby82e46b32012-04-02 13:53:58 +02001923 info->port.xmit_buf += 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
1925 return 0;
1926err_unregister:
1927 for (i--; i >= 0; i--) {
1928 info = &m->info[i];
1929#ifdef CONFIG_ISDN_TTY_FAX
1930 kfree(info->fax);
1931#endif
Jiri Slaby82e46b32012-04-02 13:53:58 +02001932 kfree(info->port.xmit_buf - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934 tty_unregister_driver(m->tty_modem);
Joe Perches475be4d2012-02-19 19:52:38 -08001935err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 put_tty_driver(m->tty_modem);
1937 m->tty_modem = NULL;
1938 return retval;
1939}
1940
1941void
1942isdn_tty_exit(void)
1943{
1944 modem_info *info;
1945 int i;
1946
1947 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
1948 info = &dev->mdm.info[i];
1949 isdn_tty_cleanup_xmit(info);
1950#ifdef CONFIG_ISDN_TTY_FAX
1951 kfree(info->fax);
1952#endif
Jiri Slaby82e46b32012-04-02 13:53:58 +02001953 kfree(info->port.xmit_buf - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955 tty_unregister_driver(dev->mdm.tty_modem);
1956 put_tty_driver(dev->mdm.tty_modem);
1957 dev->mdm.tty_modem = NULL;
1958}
1959
1960
1961/*
1962 * isdn_tty_match_icall(char *MSN, atemu *tty_emulator, int dev_idx)
1963 * match the MSN against the MSNs (glob patterns) defined for tty_emulator,
1964 * and return 0 for match, 1 for no match, 2 if MSN could match if longer.
1965 */
1966
1967static int
1968isdn_tty_match_icall(char *cid, atemu *emu, int di)
1969{
1970#ifdef ISDN_DEBUG_MODEM_ICALL
1971 printk(KERN_DEBUG "m_fi: msn=%s lmsn=%s mmsn=%s mreg[SI1]=%d mreg[SI2]=%d\n",
1972 emu->msn, emu->lmsn, isdn_map_eaz2msn(emu->msn, di),
1973 emu->mdmreg[REG_SI1], emu->mdmreg[REG_SI2]);
1974#endif
1975 if (strlen(emu->lmsn)) {
1976 char *p = emu->lmsn;
1977 char *q;
1978 int tmp;
1979 int ret = 0;
1980
1981 while (1) {
1982 if ((q = strchr(p, ';')))
1983 *q = '\0';
1984 if ((tmp = isdn_msncmp(cid, isdn_map_eaz2msn(p, di))) > ret)
1985 ret = tmp;
1986#ifdef ISDN_DEBUG_MODEM_ICALL
1987 printk(KERN_DEBUG "m_fi: lmsnX=%s mmsn=%s -> tmp=%d\n",
1988 p, isdn_map_eaz2msn(emu->msn, di), tmp);
1989#endif
1990 if (q) {
1991 *q = ';';
1992 p = q;
1993 p++;
1994 }
1995 if (!tmp)
1996 return 0;
1997 if (!q)
1998 break;
1999 }
2000 return ret;
2001 } else {
2002 int tmp;
2003 tmp = isdn_msncmp(cid, isdn_map_eaz2msn(emu->msn, di));
2004#ifdef ISDN_DEBUG_MODEM_ICALL
Joe Perches475be4d2012-02-19 19:52:38 -08002005 printk(KERN_DEBUG "m_fi: mmsn=%s -> tmp=%d\n",
2006 isdn_map_eaz2msn(emu->msn, di), tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007#endif
2008 return tmp;
2009 }
2010}
2011
2012/*
2013 * An incoming call-request has arrived.
2014 * Search the tty-devices for an appropriate device and bind
2015 * it to the ISDN-Channel.
2016 * Return:
2017 *
2018 * 0 = No matching device found.
2019 * 1 = A matching device found.
2020 * 3 = No match found, but eventually would match, if
2021 * CID is longer.
2022 */
2023int
2024isdn_tty_find_icall(int di, int ch, setup_parm *setup)
2025{
2026 char *eaz;
2027 int i;
2028 int wret;
2029 int idx;
2030 int si1;
2031 int si2;
2032 char *nr;
2033 ulong flags;
2034
2035 if (!setup->phone[0]) {
2036 nr = "0";
2037 printk(KERN_INFO "isdn_tty: Incoming call without OAD, assuming '0'\n");
2038 } else
2039 nr = setup->phone;
2040 si1 = (int) setup->si1;
2041 si2 = (int) setup->si2;
2042 if (!setup->eazmsn[0]) {
2043 printk(KERN_WARNING "isdn_tty: Incoming call without CPN, assuming '0'\n");
2044 eaz = "0";
2045 } else
2046 eaz = setup->eazmsn;
2047#ifdef ISDN_DEBUG_MODEM_ICALL
2048 printk(KERN_DEBUG "m_fi: eaz=%s si1=%d si2=%d\n", eaz, si1, si2);
2049#endif
2050 wret = 0;
2051 spin_lock_irqsave(&dev->lock, flags);
2052 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
2053 modem_info *info = &dev->mdm.info[i];
2054
Jiri Slaby1b05f032012-04-02 13:53:56 +02002055 if (info->port.count == 0)
Joe Perches475be4d2012-02-19 19:52:38 -08002056 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if ((info->emu.mdmreg[REG_SI1] & si2bit[si1]) && /* SI1 is matching */
2058 (info->emu.mdmreg[REG_SI2] == si2)) { /* SI2 is matching */
2059 idx = isdn_dc2minor(di, ch);
2060#ifdef ISDN_DEBUG_MODEM_ICALL
2061 printk(KERN_DEBUG "m_fi: match1 wret=%d\n", wret);
2062 printk(KERN_DEBUG "m_fi: idx=%d flags=%08lx drv=%d ch=%d usg=%d\n", idx,
Jiri Slaby48decc12012-04-02 13:53:54 +02002063 info->port.flags, info->isdn_driver,
2064 info->isdn_channel, dev->usage[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065#endif
2066 if (
2067#ifndef FIX_FILE_TRANSFER
Jiri Slaby48decc12012-04-02 13:53:54 +02002068 (info->port.flags & ASYNC_NORMAL_ACTIVE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069#endif
2070 (info->isdn_driver == -1) &&
2071 (info->isdn_channel == -1) &&
2072 (USG_NONE(dev->usage[idx]))) {
2073 int matchret;
2074
2075 if ((matchret = isdn_tty_match_icall(eaz, &info->emu, di)) > wret)
2076 wret = matchret;
2077 if (!matchret) { /* EAZ is matching */
2078 info->isdn_driver = di;
2079 info->isdn_channel = ch;
2080 info->drv_index = idx;
2081 dev->m_idx[idx] = info->line;
2082 dev->usage[idx] &= ISDN_USAGE_EXCLUSIVE;
Joe Perches475be4d2012-02-19 19:52:38 -08002083 dev->usage[idx] |= isdn_calc_usage(si1, info->emu.mdmreg[REG_L2PROT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 strcpy(dev->num[idx], nr);
2085 strcpy(info->emu.cpn, eaz);
2086 info->emu.mdmreg[REG_SI1I] = si2bit[si1];
2087 info->emu.mdmreg[REG_PLAN] = setup->plan;
2088 info->emu.mdmreg[REG_SCREEN] = setup->screen;
2089 isdn_info_update();
2090 spin_unlock_irqrestore(&dev->lock, flags);
2091 printk(KERN_INFO "isdn_tty: call from %s, -> RING on ttyI%d\n", nr,
2092 info->line);
2093 info->msr |= UART_MSR_RI;
2094 isdn_tty_modem_result(RESULT_RING, info);
2095 isdn_timer_ctrl(ISDN_TIMER_MODEMRING, 1);
2096 return 1;
2097 }
2098 }
2099 }
2100 }
2101 spin_unlock_irqrestore(&dev->lock, flags);
2102 printk(KERN_INFO "isdn_tty: call from %s -> %s %s\n", nr, eaz,
Joe Perches475be4d2012-02-19 19:52:38 -08002103 ((dev->drv[di]->flags & DRV_FLAG_REJBUS) && (wret != 2)) ? "rejected" : "ignored");
2104 return (wret == 2) ? 3 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
Jiri Slaby48decc12012-04-02 13:53:54 +02002107#define TTY_IS_ACTIVE(info) (info->port.flags & ASYNC_NORMAL_ACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109int
2110isdn_tty_stat_callback(int i, isdn_ctrl *c)
2111{
2112 int mi;
2113 modem_info *info;
2114 char *e;
2115
2116 if (i < 0)
2117 return 0;
2118 if ((mi = dev->m_idx[i]) >= 0) {
2119 info = &dev->mdm.info[mi];
2120 switch (c->command) {
Joe Perches475be4d2012-02-19 19:52:38 -08002121 case ISDN_STAT_CINF:
2122 printk(KERN_DEBUG "CHARGEINFO on ttyI%d: %ld %s\n", info->line, c->arg, c->parm.num);
2123 info->emu.charge = (unsigned) simple_strtoul(c->parm.num, &e, 10);
2124 if (e == (char *)c->parm.num)
2125 info->emu.charge = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Joe Perches475be4d2012-02-19 19:52:38 -08002127 break;
2128 case ISDN_STAT_BSENT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129#ifdef ISDN_TTY_STAT_DEBUG
Joe Perches475be4d2012-02-19 19:52:38 -08002130 printk(KERN_DEBUG "tty_STAT_BSENT ttyI%d\n", info->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131#endif
Joe Perches475be4d2012-02-19 19:52:38 -08002132 if ((info->isdn_driver == c->driver) &&
2133 (info->isdn_channel == c->arg)) {
2134 info->msr |= UART_MSR_CTS;
2135 if (info->send_outstanding)
2136 if (!(--info->send_outstanding))
2137 info->lsr |= UART_LSR_TEMT;
2138 isdn_tty_tint(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 return 1;
Joe Perches475be4d2012-02-19 19:52:38 -08002140 }
2141 break;
2142 case ISDN_STAT_CAUSE:
2143#ifdef ISDN_TTY_STAT_DEBUG
2144 printk(KERN_DEBUG "tty_STAT_CAUSE ttyI%d\n", info->line);
2145#endif
2146 /* Signal cause to tty-device */
2147 strncpy(info->last_cause, c->parm.num, 5);
2148 return 1;
2149 case ISDN_STAT_DISPLAY:
2150#ifdef ISDN_TTY_STAT_DEBUG
2151 printk(KERN_DEBUG "tty_STAT_DISPLAY ttyI%d\n", info->line);
2152#endif
2153 /* Signal display to tty-device */
2154 if ((info->emu.mdmreg[REG_DISPLAY] & BIT_DISPLAY) &&
2155 !(info->emu.mdmreg[REG_RESPNUM] & BIT_RESPNUM)) {
2156 isdn_tty_at_cout("\r\n", info);
2157 isdn_tty_at_cout("DISPLAY: ", info);
2158 isdn_tty_at_cout(c->parm.display, info);
2159 isdn_tty_at_cout("\r\n", info);
2160 }
2161 return 1;
2162 case ISDN_STAT_DCONN:
2163#ifdef ISDN_TTY_STAT_DEBUG
2164 printk(KERN_DEBUG "tty_STAT_DCONN ttyI%d\n", info->line);
2165#endif
2166 if (TTY_IS_ACTIVE(info)) {
2167 if (info->dialing == 1) {
2168 info->dialing = 2;
2169 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
Joe Perches475be4d2012-02-19 19:52:38 -08002171 }
2172 break;
2173 case ISDN_STAT_DHUP:
2174#ifdef ISDN_TTY_STAT_DEBUG
2175 printk(KERN_DEBUG "tty_STAT_DHUP ttyI%d\n", info->line);
2176#endif
2177 if (TTY_IS_ACTIVE(info)) {
2178 if (info->dialing == 1)
2179 isdn_tty_modem_result(RESULT_BUSY, info);
2180 if (info->dialing > 1)
2181 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
2182 info->dialing = 0;
2183#ifdef ISDN_DEBUG_MODEM_HUP
2184 printk(KERN_DEBUG "Mhup in ISDN_STAT_DHUP\n");
2185#endif
2186 isdn_tty_modem_hup(info, 0);
2187 return 1;
2188 }
2189 break;
2190 case ISDN_STAT_BCONN:
2191#ifdef ISDN_TTY_STAT_DEBUG
2192 printk(KERN_DEBUG "tty_STAT_BCONN ttyI%d\n", info->line);
2193#endif
2194 /* Wake up any processes waiting
2195 * for incoming call of this device when
2196 * DCD follow the state of incoming carrier
2197 */
Jiri Slaby1b05f032012-04-02 13:53:56 +02002198 if (info->port.blocked_open &&
Joe Perches475be4d2012-02-19 19:52:38 -08002199 (info->emu.mdmreg[REG_DCD] & BIT_DCD)) {
Jiri Slabyc6e92b62012-04-02 13:53:55 +02002200 wake_up_interruptible(&info->port.open_wait);
Joe Perches475be4d2012-02-19 19:52:38 -08002201 }
2202
2203 /* Schedule CONNECT-Message to any tty
2204 * waiting for it and
2205 * set DCD-bit of its modem-status.
2206 */
2207 if (TTY_IS_ACTIVE(info) ||
Jiri Slaby1b05f032012-04-02 13:53:56 +02002208 (info->port.blocked_open &&
2209 (info->emu.mdmreg[REG_DCD] & BIT_DCD))) {
Joe Perches475be4d2012-02-19 19:52:38 -08002210 info->msr |= UART_MSR_DCD;
2211 info->emu.charge = 0;
2212 if (info->dialing & 0xf)
2213 info->last_dir = 1;
2214 else
2215 info->last_dir = 0;
2216 info->dialing = 0;
2217 info->rcvsched = 1;
2218 if (USG_MODEM(dev->usage[i])) {
2219 if (info->emu.mdmreg[REG_L2PROT] == ISDN_PROTO_L2_MODEM) {
2220 strcpy(info->emu.connmsg, c->parm.num);
2221 isdn_tty_modem_result(RESULT_CONNECT, info);
2222 } else
2223 isdn_tty_modem_result(RESULT_CONNECT64000, info);
2224 }
2225 if (USG_VOICE(dev->usage[i]))
2226 isdn_tty_modem_result(RESULT_VCON, info);
2227 return 1;
2228 }
2229 break;
2230 case ISDN_STAT_BHUP:
2231#ifdef ISDN_TTY_STAT_DEBUG
2232 printk(KERN_DEBUG "tty_STAT_BHUP ttyI%d\n", info->line);
2233#endif
2234 if (TTY_IS_ACTIVE(info)) {
2235#ifdef ISDN_DEBUG_MODEM_HUP
2236 printk(KERN_DEBUG "Mhup in ISDN_STAT_BHUP\n");
2237#endif
2238 isdn_tty_modem_hup(info, 0);
2239 return 1;
2240 }
2241 break;
2242 case ISDN_STAT_NODCH:
2243#ifdef ISDN_TTY_STAT_DEBUG
2244 printk(KERN_DEBUG "tty_STAT_NODCH ttyI%d\n", info->line);
2245#endif
2246 if (TTY_IS_ACTIVE(info)) {
2247 if (info->dialing) {
2248 info->dialing = 0;
2249 info->last_l2 = -1;
2250 info->last_si = 0;
2251 sprintf(info->last_cause, "0000");
2252 isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
2253 }
2254 isdn_tty_modem_hup(info, 0);
2255 return 1;
2256 }
2257 break;
2258 case ISDN_STAT_UNLOAD:
2259#ifdef ISDN_TTY_STAT_DEBUG
2260 printk(KERN_DEBUG "tty_STAT_UNLOAD ttyI%d\n", info->line);
2261#endif
2262 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
2263 info = &dev->mdm.info[i];
2264 if (info->isdn_driver == c->driver) {
2265 if (info->online)
2266 isdn_tty_modem_hup(info, 1);
2267 }
2268 }
2269 return 1;
2270#ifdef CONFIG_ISDN_TTY_FAX
2271 case ISDN_STAT_FAXIND:
2272 if (TTY_IS_ACTIVE(info)) {
2273 isdn_tty_fax_command(info, c);
2274 }
2275 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276#endif
2277#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -08002278 case ISDN_STAT_AUDIO:
2279 if (TTY_IS_ACTIVE(info)) {
2280 switch (c->parm.num[0]) {
2281 case ISDN_AUDIO_DTMF:
2282 if (info->vonline) {
2283 isdn_audio_put_dle_code(info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 c->parm.num[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 }
Joe Perches475be4d2012-02-19 19:52:38 -08002286 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
Joe Perches475be4d2012-02-19 19:52:38 -08002288 }
2289 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290#endif
2291 }
2292 }
2293 return 0;
2294}
2295
2296/*********************************************************************
2297 Modem-Emulator-Routines
Joe Perches475be4d2012-02-19 19:52:38 -08002298*********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Joe Perches475be4d2012-02-19 19:52:38 -08002300#define cmdchar(c) ((c >= ' ') && (c <= 0x7f))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302/*
2303 * Put a message from the AT-emulator into receive-buffer of tty,
2304 * convert CR, LF, and BS to values in modem-registers 3, 4 and 5.
2305 */
2306void
Joe Perches475be4d2012-02-19 19:52:38 -08002307isdn_tty_at_cout(char *msg, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 struct tty_struct *tty;
2310 atemu *m = &info->emu;
2311 char *p;
2312 char c;
2313 u_long flags;
2314 struct sk_buff *skb = NULL;
2315 char *sp = NULL;
Adrian Bunk1f4d4a82006-03-25 03:08:06 -08002316 int l;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 if (!msg) {
2319 printk(KERN_WARNING "isdn_tty: Null-Message in isdn_tty_at_cout\n");
2320 return;
2321 }
Adrian Bunk1f4d4a82006-03-25 03:08:06 -08002322
2323 l = strlen(msg);
2324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 spin_lock_irqsave(&info->readlock, flags);
Jiri Slabyba432942012-04-02 13:53:57 +02002326 tty = info->port.tty;
Jiri Slaby48decc12012-04-02 13:53:54 +02002327 if ((info->port.flags & ASYNC_CLOSING) || (!tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 spin_unlock_irqrestore(&info->readlock, flags);
2329 return;
2330 }
2331
Alan Cox33f0f882006-01-09 20:54:13 -08002332 /* use queue instead of direct, if online and */
2333 /* data is in queue or buffer is full */
Karsten Keil61b9a26a2006-02-14 13:53:06 -08002334 if (info->online && ((tty_buffer_request_room(tty, l) < l) ||
Joe Perches475be4d2012-02-19 19:52:38 -08002335 !skb_queue_empty(&dev->drv[info->isdn_driver]->rpqueue[info->isdn_channel]))) {
Alan Cox33f0f882006-01-09 20:54:13 -08002336 skb = alloc_skb(l, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (!skb) {
2338 spin_unlock_irqrestore(&info->readlock, flags);
2339 return;
2340 }
Alan Cox33f0f882006-01-09 20:54:13 -08002341 sp = skb_put(skb, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342#ifdef CONFIG_ISDN_AUDIO
2343 ISDN_AUDIO_SKB_DLECOUNT(skb) = 0;
2344 ISDN_AUDIO_SKB_LOCK(skb) = 0;
2345#endif
2346 }
2347
2348 for (p = msg; *p; p++) {
2349 switch (*p) {
Joe Perches475be4d2012-02-19 19:52:38 -08002350 case '\r':
2351 c = m->mdmreg[REG_CR];
2352 break;
2353 case '\n':
2354 c = m->mdmreg[REG_LF];
2355 break;
2356 case '\b':
2357 c = m->mdmreg[REG_BS];
2358 break;
2359 default:
2360 c = *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 }
2362 if (skb) {
2363 *sp++ = c;
2364 } else {
Joe Perches475be4d2012-02-19 19:52:38 -08002365 if (tty_insert_flip_char(tty, c, TTY_NORMAL) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
2368 }
2369 if (skb) {
2370 __skb_queue_tail(&dev->drv[info->isdn_driver]->rpqueue[info->isdn_channel], skb);
2371 dev->drv[info->isdn_driver]->rcvcount[info->isdn_channel] += skb->len;
2372 spin_unlock_irqrestore(&info->readlock, flags);
2373 /* Schedule dequeuing */
Alan Cox33f0f882006-01-09 20:54:13 -08002374 if (dev->modempoll && info->rcvsched)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 isdn_timer_ctrl(ISDN_TIMER_MODEMREAD, 1);
2376
2377 } else {
2378 spin_unlock_irqrestore(&info->readlock, flags);
Alan Cox33f0f882006-01-09 20:54:13 -08002379 tty_flip_buffer_push(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
2381}
2382
2383/*
2384 * Perform ATH Hangup
2385 */
2386static void
Joe Perches475be4d2012-02-19 19:52:38 -08002387isdn_tty_on_hook(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
2389 if (info->isdn_channel >= 0) {
2390#ifdef ISDN_DEBUG_MODEM_HUP
2391 printk(KERN_DEBUG "Mhup in isdn_tty_on_hook\n");
2392#endif
2393 isdn_tty_modem_hup(info, 1);
2394 }
2395}
2396
2397static void
2398isdn_tty_off_hook(void)
2399{
2400 printk(KERN_DEBUG "isdn_tty_off_hook\n");
2401}
2402
Joe Perches475be4d2012-02-19 19:52:38 -08002403#define PLUSWAIT1 (HZ / 2) /* 0.5 sec. */
2404#define PLUSWAIT2 (HZ * 3 / 2) /* 1.5 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406/*
2407 * Check Buffer for Modem-escape-sequence, activate timer-callback to
2408 * isdn_tty_modem_escape() if sequence found.
2409 *
2410 * Parameters:
2411 * p pointer to databuffer
2412 * plus escape-character
2413 * count length of buffer
2414 * pluscount count of valid escape-characters so far
2415 * lastplus timestamp of last character
2416 */
2417static void
Joe Perches475be4d2012-02-19 19:52:38 -08002418isdn_tty_check_esc(const u_char *p, u_char plus, int count, int *pluscount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 u_long *lastplus)
2420{
2421 if (plus > 127)
2422 return;
2423 if (count > 3) {
2424 p += count - 3;
2425 count = 3;
2426 *pluscount = 0;
2427 }
2428 while (count > 0) {
2429 if (*(p++) == plus) {
2430 if ((*pluscount)++) {
2431 /* Time since last '+' > 0.5 sec. ? */
2432 if (time_after(jiffies, *lastplus + PLUSWAIT1))
2433 *pluscount = 1;
2434 } else {
2435 /* Time since last non-'+' < 1.5 sec. ? */
2436 if (time_before(jiffies, *lastplus + PLUSWAIT2))
2437 *pluscount = 0;
2438 }
2439 if ((*pluscount == 3) && (count == 1))
2440 isdn_timer_ctrl(ISDN_TIMER_MODEMPLUS, 1);
2441 if (*pluscount > 3)
2442 *pluscount = 1;
2443 } else
2444 *pluscount = 0;
2445 *lastplus = jiffies;
2446 count--;
2447 }
2448}
2449
2450/*
2451 * Return result of AT-emulator to tty-receive-buffer, depending on
2452 * modem-register 12, bit 0 and 1.
2453 * For CONNECT-messages also switch to online-mode.
2454 * For RING-message handle auto-ATA if register 0 != 0
2455 */
2456
2457static void
Joe Perches475be4d2012-02-19 19:52:38 -08002458isdn_tty_modem_result(int code, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 atemu *m = &info->emu;
2461 static char *msg[] =
Joe Perches475be4d2012-02-19 19:52:38 -08002462 {"OK", "CONNECT", "RING", "NO CARRIER", "ERROR",
2463 "CONNECT 64000", "NO DIALTONE", "BUSY", "NO ANSWER",
2464 "RINGING", "NO MSN/EAZ", "VCON", "RUNG"};
2465 char s[ISDN_MSNLEN + 10];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 switch (code) {
Joe Perches475be4d2012-02-19 19:52:38 -08002468 case RESULT_RING:
2469 m->mdmreg[REG_RINGCNT]++;
2470 if (m->mdmreg[REG_RINGCNT] == m->mdmreg[REG_RINGATA])
2471 /* Automatically accept incoming call */
2472 isdn_tty_cmd_ATA(info);
2473 break;
2474 case RESULT_NO_CARRIER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475#ifdef ISDN_DEBUG_MODEM_HUP
Joe Perches475be4d2012-02-19 19:52:38 -08002476 printk(KERN_DEBUG "modem_result: NO CARRIER %d %d\n",
Jiri Slaby48decc12012-04-02 13:53:54 +02002477 (info->port.flags & ASYNC_CLOSING),
Jiri Slabyba432942012-04-02 13:53:57 +02002478 (!info->port.tty));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479#endif
Joe Perches475be4d2012-02-19 19:52:38 -08002480 m->mdmreg[REG_RINGCNT] = 0;
2481 del_timer(&info->nc_timer);
2482 info->ncarrier = 0;
Jiri Slabyba432942012-04-02 13:53:57 +02002483 if ((info->port.flags & ASYNC_CLOSING) || (!info->port.tty))
Joe Perches475be4d2012-02-19 19:52:38 -08002484 return;
Jiri Slaby6776a2f2012-04-02 13:53:50 +02002485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -08002487 if (info->vonline & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488#ifdef ISDN_DEBUG_MODEM_VOICE
Joe Perches475be4d2012-02-19 19:52:38 -08002489 printk(KERN_DEBUG "res3: send DLE-ETX on ttyI%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 info->line);
2491#endif
Joe Perches475be4d2012-02-19 19:52:38 -08002492 /* voice-recording, add DLE-ETX */
2493 isdn_tty_at_cout("\020\003", info);
2494 }
2495 if (info->vonline & 2) {
2496#ifdef ISDN_DEBUG_MODEM_VOICE
2497 printk(KERN_DEBUG "res3: send DLE-DC4 on ttyI%d\n",
2498 info->line);
2499#endif
2500 /* voice-playing, add DLE-DC4 */
2501 isdn_tty_at_cout("\020\024", info);
2502 }
2503#endif
2504 break;
2505 case RESULT_CONNECT:
2506 case RESULT_CONNECT64000:
2507 sprintf(info->last_cause, "0000");
2508 if (!info->online)
2509 info->online = 2;
2510 break;
2511 case RESULT_VCON:
2512#ifdef ISDN_DEBUG_MODEM_VOICE
2513 printk(KERN_DEBUG "res3: send VCON on ttyI%d\n",
2514 info->line);
2515#endif
2516 sprintf(info->last_cause, "0000");
2517 if (!info->online)
2518 info->online = 1;
2519 break;
2520 } /* switch (code) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 if (m->mdmreg[REG_RESP] & BIT_RESP) {
2523 /* Show results */
2524 if (m->mdmreg[REG_RESPNUM] & BIT_RESPNUM) {
2525 /* Show numeric results only */
2526 sprintf(s, "\r\n%d\r\n", code);
2527 isdn_tty_at_cout(s, info);
2528 } else {
2529 if (code == RESULT_RING) {
Joe Perches475be4d2012-02-19 19:52:38 -08002530 /* return if "show RUNG" and ringcounter>1 */
2531 if ((m->mdmreg[REG_RUNG] & BIT_RUNG) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 (m->mdmreg[REG_RINGCNT] > 1))
Joe Perches475be4d2012-02-19 19:52:38 -08002533 return;
2534 /* print CID, _before_ _every_ ring */
2535 if (!(m->mdmreg[REG_CIDONCE] & BIT_CIDONCE)) {
2536 isdn_tty_at_cout("\r\nCALLER NUMBER: ", info);
2537 isdn_tty_at_cout(dev->num[info->drv_index], info);
2538 if (m->mdmreg[REG_CDN] & BIT_CDN) {
2539 isdn_tty_at_cout("\r\nCALLED NUMBER: ", info);
2540 isdn_tty_at_cout(info->emu.cpn, info);
2541 }
2542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 }
2544 isdn_tty_at_cout("\r\n", info);
2545 isdn_tty_at_cout(msg[code], info);
2546 switch (code) {
Joe Perches475be4d2012-02-19 19:52:38 -08002547 case RESULT_CONNECT:
2548 switch (m->mdmreg[REG_L2PROT]) {
2549 case ISDN_PROTO_L2_MODEM:
2550 isdn_tty_at_cout(" ", info);
2551 isdn_tty_at_cout(m->connmsg, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002553 }
2554 break;
2555 case RESULT_RING:
2556 /* Append CPN, if enabled */
2557 if ((m->mdmreg[REG_CPN] & BIT_CPN)) {
2558 sprintf(s, "/%s", m->cpn);
2559 isdn_tty_at_cout(s, info);
2560 }
2561 /* Print CID only once, _after_ 1st RING */
2562 if ((m->mdmreg[REG_CIDONCE] & BIT_CIDONCE) &&
2563 (m->mdmreg[REG_RINGCNT] == 1)) {
2564 isdn_tty_at_cout("\r\n", info);
2565 isdn_tty_at_cout("CALLER NUMBER: ", info);
2566 isdn_tty_at_cout(dev->num[info->drv_index], info);
2567 if (m->mdmreg[REG_CDN] & BIT_CDN) {
2568 isdn_tty_at_cout("\r\nCALLED NUMBER: ", info);
2569 isdn_tty_at_cout(info->emu.cpn, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 }
Joe Perches475be4d2012-02-19 19:52:38 -08002571 }
2572 break;
2573 case RESULT_NO_CARRIER:
2574 case RESULT_NO_DIALTONE:
2575 case RESULT_BUSY:
2576 case RESULT_NO_ANSWER:
2577 m->mdmreg[REG_RINGCNT] = 0;
2578 /* Append Cause-Message if enabled */
2579 if (m->mdmreg[REG_RESPXT] & BIT_RESPXT) {
2580 sprintf(s, "/%s", info->last_cause);
2581 isdn_tty_at_cout(s, info);
2582 }
2583 break;
2584 case RESULT_CONNECT64000:
2585 /* Append Protocol to CONNECT message */
2586 switch (m->mdmreg[REG_L2PROT]) {
2587 case ISDN_PROTO_L2_X75I:
2588 case ISDN_PROTO_L2_X75UI:
2589 case ISDN_PROTO_L2_X75BUI:
2590 isdn_tty_at_cout("/X.75", info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002592 case ISDN_PROTO_L2_HDLC:
2593 isdn_tty_at_cout("/HDLC", info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002595 case ISDN_PROTO_L2_V11096:
2596 isdn_tty_at_cout("/V110/9600", info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002598 case ISDN_PROTO_L2_V11019:
2599 isdn_tty_at_cout("/V110/19200", info);
2600 break;
2601 case ISDN_PROTO_L2_V11038:
2602 isdn_tty_at_cout("/V110/38400", info);
2603 break;
2604 }
2605 if (m->mdmreg[REG_T70] & BIT_T70) {
2606 isdn_tty_at_cout("/T.70", info);
2607 if (m->mdmreg[REG_T70] & BIT_T70_EXT)
2608 isdn_tty_at_cout("+", info);
2609 }
2610 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
2612 isdn_tty_at_cout("\r\n", info);
2613 }
2614 }
2615 if (code == RESULT_NO_CARRIER) {
Jiri Slabyba432942012-04-02 13:53:57 +02002616 if ((info->port.flags & ASYNC_CLOSING) || (!info->port.tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 return;
Jiri Slaby6776a2f2012-04-02 13:53:50 +02002618
Jiri Slaby48decc12012-04-02 13:53:54 +02002619 if (info->port.flags & ASYNC_CHECK_CD)
Jiri Slabyba432942012-04-02 13:53:57 +02002620 tty_hangup(info->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
2622}
2623
2624
2625/*
2626 * Display a modem-register-value.
2627 */
2628static void
Joe Perches475be4d2012-02-19 19:52:38 -08002629isdn_tty_show_profile(int ridx, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
2631 char v[6];
2632
2633 sprintf(v, "\r\n%d", info->emu.mdmreg[ridx]);
2634 isdn_tty_at_cout(v, info);
2635}
2636
2637/*
2638 * Get MSN-string from char-pointer, set pointer to end of number
2639 */
2640static void
2641isdn_tty_get_msnstr(char *n, char **p)
2642{
2643 int limit = ISDN_MSNLEN - 1;
2644
2645 while (((*p[0] >= '0' && *p[0] <= '9') ||
2646 /* Why a comma ??? */
2647 (*p[0] == ',') || (*p[0] == ':')) &&
Joe Perches475be4d2012-02-19 19:52:38 -08002648 (limit--))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 *n++ = *p[0]++;
2650 *n = '\0';
2651}
2652
2653/*
2654 * Get phone-number from modem-commandbuffer
2655 */
2656static void
Joe Perches475be4d2012-02-19 19:52:38 -08002657isdn_tty_getdial(char *p, char *q, int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
2659 int first = 1;
2660 int limit = ISDN_MSNLEN - 1; /* MUST match the size of interface var to avoid
Joe Perches475be4d2012-02-19 19:52:38 -08002661 buffer overflow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Joe Perches475be4d2012-02-19 19:52:38 -08002663 while (strchr(" 0123456789,#.*WPTSR-", *p) && *p && --cnt > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 if ((*p >= '0' && *p <= '9') || ((*p == 'S') && first) ||
Karsten Keil924ad152007-06-01 00:46:55 -07002665 ((*p == 'R') && first) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 (*p == '*') || (*p == '#')) {
2667 *q++ = *p;
2668 limit--;
2669 }
Joe Perches475be4d2012-02-19 19:52:38 -08002670 if (!limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 break;
2672 p++;
2673 first = 0;
2674 }
2675 *q = 0;
2676}
2677
2678#define PARSE_ERROR { isdn_tty_modem_result(RESULT_ERROR, info); return; }
2679#define PARSE_ERROR1 { isdn_tty_modem_result(RESULT_ERROR, info); return 1; }
2680
2681static void
Joe Perches475be4d2012-02-19 19:52:38 -08002682isdn_tty_report(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
2684 atemu *m = &info->emu;
2685 char s[80];
2686
2687 isdn_tty_at_cout("\r\nStatistics of last connection:\r\n\r\n", info);
2688 sprintf(s, " Remote Number: %s\r\n", info->last_num);
2689 isdn_tty_at_cout(s, info);
2690 sprintf(s, " Direction: %s\r\n", info->last_dir ? "outgoing" : "incoming");
2691 isdn_tty_at_cout(s, info);
2692 isdn_tty_at_cout(" Layer-2 Protocol: ", info);
2693 switch (info->last_l2) {
Joe Perches475be4d2012-02-19 19:52:38 -08002694 case ISDN_PROTO_L2_X75I:
2695 isdn_tty_at_cout("X.75i", info);
2696 break;
2697 case ISDN_PROTO_L2_X75UI:
2698 isdn_tty_at_cout("X.75ui", info);
2699 break;
2700 case ISDN_PROTO_L2_X75BUI:
2701 isdn_tty_at_cout("X.75bui", info);
2702 break;
2703 case ISDN_PROTO_L2_HDLC:
2704 isdn_tty_at_cout("HDLC", info);
2705 break;
2706 case ISDN_PROTO_L2_V11096:
2707 isdn_tty_at_cout("V.110 9600 Baud", info);
2708 break;
2709 case ISDN_PROTO_L2_V11019:
2710 isdn_tty_at_cout("V.110 19200 Baud", info);
2711 break;
2712 case ISDN_PROTO_L2_V11038:
2713 isdn_tty_at_cout("V.110 38400 Baud", info);
2714 break;
2715 case ISDN_PROTO_L2_TRANS:
2716 isdn_tty_at_cout("transparent", info);
2717 break;
2718 case ISDN_PROTO_L2_MODEM:
2719 isdn_tty_at_cout("modem", info);
2720 break;
2721 case ISDN_PROTO_L2_FAX:
2722 isdn_tty_at_cout("fax", info);
2723 break;
2724 default:
2725 isdn_tty_at_cout("unknown", info);
2726 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728 if (m->mdmreg[REG_T70] & BIT_T70) {
2729 isdn_tty_at_cout("/T.70", info);
2730 if (m->mdmreg[REG_T70] & BIT_T70_EXT)
2731 isdn_tty_at_cout("+", info);
2732 }
2733 isdn_tty_at_cout("\r\n", info);
2734 isdn_tty_at_cout(" Service: ", info);
2735 switch (info->last_si) {
Joe Perches475be4d2012-02-19 19:52:38 -08002736 case 1:
2737 isdn_tty_at_cout("audio\r\n", info);
2738 break;
2739 case 5:
2740 isdn_tty_at_cout("btx\r\n", info);
2741 break;
2742 case 7:
2743 isdn_tty_at_cout("data\r\n", info);
2744 break;
2745 default:
2746 sprintf(s, "%d\r\n", info->last_si);
2747 isdn_tty_at_cout(s, info);
2748 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 }
2750 sprintf(s, " Hangup location: %s\r\n", info->last_lhup ? "local" : "remote");
2751 isdn_tty_at_cout(s, info);
2752 sprintf(s, " Last cause: %s\r\n", info->last_cause);
2753 isdn_tty_at_cout(s, info);
2754}
2755
2756/*
2757 * Parse AT&.. commands.
2758 */
2759static int
Joe Perches475be4d2012-02-19 19:52:38 -08002760isdn_tty_cmd_ATand(char **p, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
2762 atemu *m = &info->emu;
2763 int i;
2764 char rb[100];
2765
2766#define MAXRB (sizeof(rb) - 1)
2767
2768 switch (*p[0]) {
Joe Perches475be4d2012-02-19 19:52:38 -08002769 case 'B':
2770 /* &B - Set Buffersize */
2771 p[0]++;
2772 i = isdn_getnum(p);
2773 if ((i < 0) || (i > ISDN_SERIAL_XMIT_MAX))
2774 PARSE_ERROR1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775#ifdef CONFIG_ISDN_AUDIO
Joe Perches475be4d2012-02-19 19:52:38 -08002776 if ((m->mdmreg[REG_SI1] & 1) && (i > VBUF))
2777 PARSE_ERROR1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778#endif
Joe Perches475be4d2012-02-19 19:52:38 -08002779 m->mdmreg[REG_PSIZE] = i / 16;
2780 info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
2781 switch (m->mdmreg[REG_L2PROT]) {
2782 case ISDN_PROTO_L2_V11096:
2783 case ISDN_PROTO_L2_V11019:
2784 case ISDN_PROTO_L2_V11038:
2785 info->xmit_size /= 10;
2786 }
2787 break;
2788 case 'C':
2789 /* &C - DCD Status */
2790 p[0]++;
2791 switch (isdn_getnum(p)) {
2792 case 0:
2793 m->mdmreg[REG_DCD] &= ~BIT_DCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002795 case 1:
2796 m->mdmreg[REG_DCD] |= BIT_DCD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002798 default:
2799 PARSE_ERROR1
2800 }
2801 break;
2802 case 'D':
2803 /* &D - Set DTR-Low-behavior */
2804 p[0]++;
2805 switch (isdn_getnum(p)) {
2806 case 0:
2807 m->mdmreg[REG_DTRHUP] &= ~BIT_DTRHUP;
2808 m->mdmreg[REG_DTRR] &= ~BIT_DTRR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002810 case 2:
2811 m->mdmreg[REG_DTRHUP] |= BIT_DTRHUP;
2812 m->mdmreg[REG_DTRR] &= ~BIT_DTRR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002814 case 3:
2815 m->mdmreg[REG_DTRHUP] |= BIT_DTRHUP;
2816 m->mdmreg[REG_DTRR] |= BIT_DTRR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002818 default:
2819 PARSE_ERROR1
2820 }
2821 break;
2822 case 'E':
2823 /* &E -Set EAZ/MSN */
2824 p[0]++;
2825 isdn_tty_get_msnstr(m->msn, p);
2826 break;
2827 case 'F':
2828 /* &F -Set Factory-Defaults */
2829 p[0]++;
2830 if (info->msr & UART_MSR_DCD)
2831 PARSE_ERROR1;
2832 isdn_tty_reset_profile(m);
2833 isdn_tty_modem_reset_regs(info, 1);
2834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835#ifdef DUMMY_HAYES_AT
Joe Perches475be4d2012-02-19 19:52:38 -08002836 case 'K':
2837 /* only for be compilant with common scripts */
2838 /* &K Flowcontrol - no function */
2839 p[0]++;
2840 isdn_getnum(p);
2841 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842#endif
Joe Perches475be4d2012-02-19 19:52:38 -08002843 case 'L':
2844 /* &L -Set Numbers to listen on */
2845 p[0]++;
2846 i = 0;
2847 while (*p[0] && (strchr("0123456789,-*[]?;", *p[0])) &&
2848 (i < ISDN_LMSNLEN - 1))
2849 m->lmsn[i++] = *p[0]++;
2850 m->lmsn[i] = '\0';
2851 break;
2852 case 'R':
2853 /* &R - Set V.110 bitrate adaption */
2854 p[0]++;
2855 i = isdn_getnum(p);
2856 switch (i) {
2857 case 0:
2858 /* Switch off V.110, back to X.75 */
2859 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
2860 m->mdmreg[REG_SI2] = 0;
2861 info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002863 case 9600:
2864 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_V11096;
2865 m->mdmreg[REG_SI2] = 197;
2866 info->xmit_size = m->mdmreg[REG_PSIZE] * 16 / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002868 case 19200:
2869 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_V11019;
2870 m->mdmreg[REG_SI2] = 199;
2871 info->xmit_size = m->mdmreg[REG_PSIZE] * 16 / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 break;
Joe Perches475be4d2012-02-19 19:52:38 -08002873 case 38400:
2874 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_V11038;
2875 m->mdmreg[REG_SI2] = 198; /* no existing standard for this */
2876 info->xmit_size = m->mdmreg[REG_PSIZE] * 16 / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 break;
2878 default:
2879 PARSE_ERROR1;
Joe Perches475be4d2012-02-19 19:52:38 -08002880 }
2881 /* Switch off T.70 */
2882 m->mdmreg[REG_T70] &= ~(BIT_T70 | BIT_T70_EXT);
2883 /* Set Service 7 */
2884 m->mdmreg[REG_SI1] |= 4;
2885 break;
2886 case 'S':
2887 /* &S - Set Windowsize */
2888 p[0]++;
2889 i = isdn_getnum(p);
2890 if ((i > 0) && (i < 9))
2891 m->mdmreg[REG_WSIZE] = i;
2892 else
2893 PARSE_ERROR1;
2894 break;
2895 case 'V':
2896 /* &V - Show registers */
2897 p[0]++;
2898 isdn_tty_at_cout("\r\n", info);
2899 for (i = 0; i < ISDN_MODEM_NUMREG; i++) {
2900 sprintf(rb, "S%02d=%03d%s", i,
2901 m->mdmreg[i], ((i + 1) % 10) ? " " : "\r\n");
2902 isdn_tty_at_cout(rb, info);
2903 }
2904 sprintf(rb, "\r\nEAZ/MSN: %.50s\r\n",
2905 strlen(m->msn) ? m->msn : "None");
2906 isdn_tty_at_cout(rb, info);
2907 if (strlen(m->lmsn)) {
2908 isdn_tty_at_cout("\r\nListen: ", info);
2909 isdn_tty_at_cout(m->lmsn, info);
2910 isdn_tty_at_cout("\r\n", info);
2911 }
2912 break;
2913 case 'W':
2914 /* &W - Write Profile */
2915 p[0]++;
2916 switch (*p[0]) {
2917 case '0':
2918 p[0]++;
2919 modem_write_profile(m);
2920 break;
2921 default:
2922 PARSE_ERROR1;
2923 }
2924 break;
2925 case 'X':
2926 /* &X - Switch to BTX-Mode and T.70 */
2927 p[0]++;
2928 switch (isdn_getnum(p)) {
2929 case 0:
2930 m->mdmreg[REG_T70] &= ~(BIT_T70 | BIT_T70_EXT);
2931 info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
2932 break;
2933 case 1:
2934 m->mdmreg[REG_T70] |= BIT_T70;
2935 m->mdmreg[REG_T70] &= ~BIT_T70_EXT;
2936 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
2937 info->xmit_size = 112;
2938 m->mdmreg[REG_SI1] = 4;
2939 m->mdmreg[REG_SI2] = 0;
2940 break;
2941 case 2:
2942 m->mdmreg[REG_T70] |= (BIT_T70 | BIT_T70_EXT);
2943 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
2944 info->xmit_size = 112;
2945 m->mdmreg[REG_SI1] = 4;
2946 m->mdmreg[REG_SI2] = 0;
2947 break;
2948 default:
2949 PARSE_ERROR1;
2950 }
2951 break;
2952 default:
2953 PARSE_ERROR1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955 return 0;
2956}
2957
2958static int
Joe Perches475be4d2012-02-19 19:52:38 -08002959isdn_tty_check_ats(int mreg, int mval, modem_info *info, atemu *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960{
2961 /* Some plausibility checks */
2962 switch (mreg) {
Joe Perches475be4d2012-02-19 19:52:38 -08002963 case REG_L2PROT:
2964 if (mval > ISDN_PROTO_L2_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 return 1;
Joe Perches475be4d2012-02-19 19:52:38 -08002966 break;
2967 case REG_PSIZE:
2968 if ((mval * 16) > ISDN_SERIAL_XMIT_MAX)
2969 return 1;
2970#ifdef CONFIG_ISDN_AUDIO
2971 if ((m->mdmreg[REG_SI1] & 1) && (mval > VBUFX))
2972 return 1;
2973#endif
2974 info->xmit_size = mval * 16;
2975 switch (m->mdmreg[REG_L2PROT]) {
2976 case ISDN_PROTO_L2_V11096:
2977 case ISDN_PROTO_L2_V11019:
2978 case ISDN_PROTO_L2_V11038:
2979 info->xmit_size /= 10;
2980 }
2981 break;
2982 case REG_SI1I:
2983 case REG_PLAN:
2984 case REG_SCREEN:
2985 /* readonly registers */
2986 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
2988 return 0;
2989}
2990
2991/*
2992 * Perform ATS command
2993 */
2994static int
Joe Perches475be4d2012-02-19 19:52:38 -08002995isdn_tty_cmd_ATS(char **p, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
2997 atemu *m = &info->emu;
2998 int bitpos;
2999 int mreg;
3000 int mval;
3001 int bval;
3002
3003 mreg = isdn_getnum(p);
3004 if (mreg < 0 || mreg >= ISDN_MODEM_NUMREG)
3005 PARSE_ERROR1;
3006 switch (*p[0]) {
Joe Perches475be4d2012-02-19 19:52:38 -08003007 case '=':
3008 p[0]++;
3009 mval = isdn_getnum(p);
3010 if (mval < 0 || mval > 255)
3011 PARSE_ERROR1;
3012 if (isdn_tty_check_ats(mreg, mval, info, m))
3013 PARSE_ERROR1;
3014 m->mdmreg[mreg] = mval;
3015 break;
3016 case '.':
3017 /* Set/Clear a single bit */
3018 p[0]++;
3019 bitpos = isdn_getnum(p);
3020 if ((bitpos < 0) || (bitpos > 7))
3021 PARSE_ERROR1;
3022 switch (*p[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 case '=':
3024 p[0]++;
Joe Perches475be4d2012-02-19 19:52:38 -08003025 bval = isdn_getnum(p);
3026 if (bval < 0 || bval > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 PARSE_ERROR1;
Joe Perches475be4d2012-02-19 19:52:38 -08003028 if (bval)
3029 mval = m->mdmreg[mreg] | (1 << bitpos);
3030 else
3031 mval = m->mdmreg[mreg] & ~(1 << bitpos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 if (isdn_tty_check_ats(mreg, mval, info, m))
3033 PARSE_ERROR1;
3034 m->mdmreg[mreg] = mval;
3035 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 case '?':
3037 p[0]++;
Joe Perches475be4d2012-02-19 19:52:38 -08003038 isdn_tty_at_cout("\r\n", info);
3039 isdn_tty_at_cout((m->mdmreg[mreg] & (1 << bitpos)) ? "1" : "0",
3040 info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 break;
3042 default:
3043 PARSE_ERROR1;
Joe Perches475be4d2012-02-19 19:52:38 -08003044 }
3045 break;
3046 case '?':
3047 p[0]++;
3048 isdn_tty_show_profile(mreg, info);
3049 break;
3050 default:
3051 PARSE_ERROR1;
3052 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 }
3054 return 0;
3055}
3056
3057/*
3058 * Perform ATA command
3059 */
3060static void
Joe Perches475be4d2012-02-19 19:52:38 -08003061isdn_tty_cmd_ATA(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062{
3063 atemu *m = &info->emu;
3064 isdn_ctrl cmd;
3065 int l2;
3066
3067 if (info->msr & UART_MSR_RI) {
3068 /* Accept incoming call */
3069 info->last_dir = 0;
3070 strcpy(info->last_num, dev->num[info->drv_index]);
3071 m->mdmreg[REG_RINGCNT] = 0;
3072 info->msr &= ~UART_MSR_RI;
3073 l2 = m->mdmreg[REG_L2PROT];
3074#ifdef CONFIG_ISDN_AUDIO
3075 /* If more than one bit set in reg18, autoselect Layer2 */
3076 if ((m->mdmreg[REG_SI1] & m->mdmreg[REG_SI1I]) != m->mdmreg[REG_SI1]) {
3077 if (m->mdmreg[REG_SI1I] == 1) {
3078 if ((l2 != ISDN_PROTO_L2_MODEM) && (l2 != ISDN_PROTO_L2_FAX))
3079 l2 = ISDN_PROTO_L2_TRANS;
3080 } else
3081 l2 = ISDN_PROTO_L2_X75I;
3082 }
3083#endif
3084 cmd.driver = info->isdn_driver;
3085 cmd.command = ISDN_CMD_SETL2;
3086 cmd.arg = info->isdn_channel + (l2 << 8);
3087 info->last_l2 = l2;
3088 isdn_command(&cmd);
3089 cmd.driver = info->isdn_driver;
3090 cmd.command = ISDN_CMD_SETL3;
3091 cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
3092#ifdef CONFIG_ISDN_TTY_FAX
3093 if (l2 == ISDN_PROTO_L2_FAX) {
3094 cmd.parm.fax = info->fax;
3095 info->fax->direction = ISDN_TTY_FAX_CONN_IN;
3096 }
3097#endif
3098 isdn_command(&cmd);
3099 cmd.driver = info->isdn_driver;
3100 cmd.arg = info->isdn_channel;
3101 cmd.command = ISDN_CMD_ACCEPTD;
3102 info->dialing = 16;
3103 info->emu.carrierwait = 0;
3104 isdn_command(&cmd);
3105 isdn_timer_ctrl(ISDN_TIMER_CARRIER, 1);
3106 } else
3107 isdn_tty_modem_result(RESULT_NO_ANSWER, info);
3108}
3109
3110#ifdef CONFIG_ISDN_AUDIO
3111/*
3112 * Parse AT+F.. commands
3113 */
3114static int
Joe Perches475be4d2012-02-19 19:52:38 -08003115isdn_tty_cmd_PLUSF(char **p, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
3117 atemu *m = &info->emu;
3118 char rs[20];
3119
3120 if (!strncmp(p[0], "CLASS", 5)) {
3121 p[0] += 5;
3122 switch (*p[0]) {
Joe Perches475be4d2012-02-19 19:52:38 -08003123 case '?':
3124 p[0]++;
3125 sprintf(rs, "\r\n%d",
3126 (m->mdmreg[REG_SI1] & 1) ? 8 : 0);
3127#ifdef CONFIG_ISDN_TTY_FAX
3128 if (TTY_IS_FCLASS2(info))
3129 sprintf(rs, "\r\n2");
3130 else if (TTY_IS_FCLASS1(info))
3131 sprintf(rs, "\r\n1");
3132#endif
3133 isdn_tty_at_cout(rs, info);
3134 break;
3135 case '=':
3136 p[0]++;
3137 switch (*p[0]) {
3138 case '0':
3139 p[0]++;
3140 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
3141 m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_TRANS;
3142 m->mdmreg[REG_SI1] = 4;
3143 info->xmit_size =
3144 m->mdmreg[REG_PSIZE] * 16;
3145 break;
3146#ifdef CONFIG_ISDN_TTY_FAX
3147 case '1':
3148 p[0]++;
3149 if (!(dev->global_features &
3150 ISDN_FEATURE_L3_FCLASS1))
3151 PARSE_ERROR1;
3152 m->mdmreg[REG_SI1] = 1;
3153 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_FAX;
3154 m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_FCLASS1;
3155 info->xmit_size =
3156 m->mdmreg[REG_PSIZE] * 16;
3157 break;
3158 case '2':
3159 p[0]++;
3160 if (!(dev->global_features &
3161 ISDN_FEATURE_L3_FCLASS2))
3162 PARSE_ERROR1;
3163 m->mdmreg[REG_SI1] = 1;
3164 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_FAX;
3165 m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_FCLASS2;
3166 info->xmit_size =
3167 m->mdmreg[REG_PSIZE] * 16;
3168 break;
3169#endif
3170 case '8':
3171 p[0]++;
3172 /* L2 will change on dialout with si=1 */
3173 m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
3174 m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_TRANS;
3175 m->mdmreg[REG_SI1] = 5;
3176 info->xmit_size = VBUF;
3177 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 case '?':
3179 p[0]++;
Joe Perches475be4d2012-02-19 19:52:38 -08003180 strcpy(rs, "\r\n0,");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181#ifdef CONFIG_ISDN_TTY_FAX
Joe Perches475be4d2012-02-19 19:52:38 -08003182 if (dev->global_features &
3183 ISDN_FEATURE_L3_FCLASS1)
3184 strcat(rs, "1,");
3185 if (dev->global_features &
3186 ISDN_FEATURE_L3_FCLASS2)
3187 strcat(rs, "2,");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188#endif
Joe Perches475be4d2012-02-19 19:52:38 -08003189 strcat(rs, "8");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 isdn_tty_at_cout(rs, info);
3191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 default:
3193 PARSE_ERROR1;
Joe Perches475be4d2012-02-19 19:52:38 -08003194 }
3195 break;
3196 default:
3197 PARSE_ERROR1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 }
3199 return 0;
3200 }
3201#ifdef CONFIG_ISDN_TTY_FAX
3202 return (isdn_tty_cmd_PLUSF_FAX(p, info));
3203#else
3204 PARSE_ERROR1;
3205#endif
3206}
3207
3208/*
3209 * Parse AT+V.. commands
3210 */
3211static int
Joe Perches475be4d2012-02-19 19:52:38 -08003212isdn_tty_cmd_PLUSV(char **p, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213{
3214 atemu *m = &info->emu;
3215 isdn_ctrl cmd;
3216 static char *vcmd[] =
Joe Perches475be4d2012-02-19 19:52:38 -08003217 {"NH", "IP", "LS", "RX", "SD", "SM", "TX", "DD", NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 int i;
3219 int par1;
3220 int par2;
3221 char rs[20];
3222
3223 i = 0;
3224 while (vcmd[i]) {
3225 if (!strncmp(vcmd[i], p[0], 2)) {
3226 p[0] += 2;
3227 break;
3228 }
3229 i++;
3230 }
3231 switch (i) {
Joe Perches475be4d2012-02-19 19:52:38 -08003232 case 0:
3233 /* AT+VNH - Auto hangup feature */
3234 switch (*p[0]) {
3235 case '?':
3236 p[0]++;
3237 isdn_tty_at_cout("\r\n1", info);
3238 break;
3239 case '=':
3240 p[0]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 switch (*p[0]) {
Joe Perches475be4d2012-02-19 19:52:38 -08003242 case '1':
3243 p[0]++;
3244 break;
3245 case '?':
3246 p[0]++;
3247 isdn_tty_at_cout("\r\n1", info);
3248 break;
3249 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 PARSE_ERROR1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 }
3252 break;
3253 default:
3254 PARSE_ERROR1;
Joe Perches475be4d2012-02-19 19:52:38 -08003255 }
3256 break;
3257 case 1:
3258 /* AT+VIP - Reset all voice parameters */
3259 isdn_tty_modem_reset_vpar(m);
3260 break;
3261 case 2:
3262 /* AT+VLS - Select device, accept incoming call */
3263 switch (*p[0]) {
3264 case '?':
3265 p[0]++;
3266 sprintf(rs, "\r\n%d", m->vpar[0]);
3267 isdn_tty_at_cout(rs, info);
3268 break;
3269 case '=':
3270 p[0]++;
3271 switch (*p[0]) {
3272 case '0':
3273 p[0]++;
3274 m->vpar[0] = 0;
3275 break;
3276 case '2':
3277 p[0]++;
3278 m->vpar[0] = 2;
3279 break;
3280 case '?':
3281 p[0]++;
3282 isdn_tty_at_cout("\r\n0,2", info);
3283 break;
3284 default:
3285 PARSE_ERROR1;
3286 }
3287 break;
3288 default:
3289 PARSE_ERROR1;
3290 }
3291 break;
3292 case 3:
3293 /* AT+VRX - Start recording */
3294 if (!m->vpar[0])
3295 PARSE_ERROR1;
3296 if (info->online != 1) {
3297 isdn_tty_modem_result(RESULT_NO_ANSWER, info);
3298 return 1;
3299 }
3300 info->dtmf_state = isdn_audio_dtmf_init(info->dtmf_state);
3301 if (!info->dtmf_state) {
3302 printk(KERN_WARNING "isdn_tty: Couldn't malloc dtmf state\n");
3303 PARSE_ERROR1;
3304 }
3305 info->silence_state = isdn_audio_silence_init(info->silence_state);
3306 if (!info->silence_state) {
3307 printk(KERN_WARNING "isdn_tty: Couldn't malloc silence state\n");
3308 PARSE_ERROR1;
3309 }
3310 if (m->vpar[3] < 5) {
3311 info->adpcmr = isdn_audio_adpcm_init(info->adpcmr, m->vpar[3]);
3312 if (!info->adpcmr) {
3313 printk(KERN_WARNING "isdn_tty: Couldn't malloc adpcm state\n");
3314 PARSE_ERROR1;
3315 }
3316 }
3317#ifdef ISDN_DEBUG_AT
3318 printk(KERN_DEBUG "AT: +VRX\n");
3319#endif
3320 info->vonline |= 1;
3321 isdn_tty_modem_result(RESULT_CONNECT, info);
3322 return 0;
3323 break;
3324 case 4:
3325 /* AT+VSD - Silence detection */
3326 switch (*p[0]) {
3327 case '?':
3328 p[0]++;
3329 sprintf(rs, "\r\n<%d>,<%d>",
3330 m->vpar[1],
3331 m->vpar[2]);
3332 isdn_tty_at_cout(rs, info);
3333 break;
3334 case '=':
3335 p[0]++;
3336 if ((*p[0] >= '0') && (*p[0] <= '9')) {
3337 par1 = isdn_getnum(p);
3338 if ((par1 < 0) || (par1 > 31))
3339 PARSE_ERROR1;
3340 if (*p[0] != ',')
3341 PARSE_ERROR1;
3342 p[0]++;
3343 par2 = isdn_getnum(p);
3344 if ((par2 < 0) || (par2 > 255))
3345 PARSE_ERROR1;
3346 m->vpar[1] = par1;
3347 m->vpar[2] = par2;
3348 break;
3349 } else
3350 if (*p[0] == '?') {
3351 p[0]++;
3352 isdn_tty_at_cout("\r\n<0-31>,<0-255>",
3353 info);
3354 break;
3355 } else
3356 PARSE_ERROR1;
3357 break;
3358 default:
3359 PARSE_ERROR1;
3360 }
3361 break;
3362 case 5:
3363 /* AT+VSM - Select compression */
3364 switch (*p[0]) {
3365 case '?':
3366 p[0]++;
3367 sprintf(rs, "\r\n<%d>,<%d><8000>",
3368 m->vpar[3],
3369 m->vpar[1]);
3370 isdn_tty_at_cout(rs, info);
3371 break;
3372 case '=':
3373 p[0]++;
3374 switch (*p[0]) {
3375 case '2':
3376 case '3':
3377 case '4':
3378 case '5':
3379 case '6':
3380 par1 = isdn_getnum(p);
3381 if ((par1 < 2) || (par1 > 6))
3382 PARSE_ERROR1;
3383 m->vpar[3] = par1;
3384 break;
3385 case '?':
3386 p[0]++;
3387 isdn_tty_at_cout("\r\n2;ADPCM;2;0;(8000)\r\n",
3388 info);
3389 isdn_tty_at_cout("3;ADPCM;3;0;(8000)\r\n",
3390 info);
3391 isdn_tty_at_cout("4;ADPCM;4;0;(8000)\r\n",
3392 info);
3393 isdn_tty_at_cout("5;ALAW;8;0;(8000)\r\n",
3394 info);
3395 isdn_tty_at_cout("6;ULAW;8;0;(8000)\r\n",
3396 info);
3397 break;
3398 default:
3399 PARSE_ERROR1;
3400 }
3401 break;
3402 default:
3403 PARSE_ERROR1;
3404 }
3405 break;
3406 case 6:
3407 /* AT+VTX - Start sending */
3408 if (!m->vpar[0])
3409 PARSE_ERROR1;
3410 if (info->online != 1) {
3411 isdn_tty_modem_result(RESULT_NO_ANSWER, info);
3412 return 1;
3413 }
3414 info->dtmf_state = isdn_audio_dtmf_init(info->dtmf_state);
3415 if (!info->dtmf_state) {
3416 printk(KERN_WARNING "isdn_tty: Couldn't malloc dtmf state\n");
3417 PARSE_ERROR1;
3418 }
3419 if (m->vpar[3] < 5) {
3420 info->adpcms = isdn_audio_adpcm_init(info->adpcms, m->vpar[3]);
3421 if (!info->adpcms) {
3422 printk(KERN_WARNING "isdn_tty: Couldn't malloc adpcm state\n");
3423 PARSE_ERROR1;
3424 }
3425 }
3426#ifdef ISDN_DEBUG_AT
3427 printk(KERN_DEBUG "AT: +VTX\n");
3428#endif
3429 m->lastDLE = 0;
3430 info->vonline |= 2;
3431 isdn_tty_modem_result(RESULT_CONNECT, info);
3432 return 0;
3433 break;
3434 case 7:
3435 /* AT+VDD - DTMF detection */
3436 switch (*p[0]) {
3437 case '?':
3438 p[0]++;
3439 sprintf(rs, "\r\n<%d>,<%d>",
3440 m->vpar[4],
3441 m->vpar[5]);
3442 isdn_tty_at_cout(rs, info);
3443 break;
3444 case '=':
3445 p[0]++;
3446 if ((*p[0] >= '0') && (*p[0] <= '9')) {
3447 if (info->online != 1)
3448 PARSE_ERROR1;
3449 par1 = isdn_getnum(p);
3450 if ((par1 < 0) || (par1 > 15))
3451 PARSE_ERROR1;
3452 if (*p[0] != ',')
3453 PARSE_ERROR1;
3454 p[0]++;
3455 par2 = isdn_getnum(p);
3456 if ((par2 < 0) || (par2 > 255))
3457 PARSE_ERROR1;
3458 m->vpar[4] = par1;
3459 m->vpar[5] = par2;
3460 cmd.driver = info->isdn_driver;
3461 cmd.command = ISDN_CMD_AUDIO;
3462 cmd.arg = info->isdn_channel + (ISDN_AUDIO_SETDD << 8);
3463 cmd.parm.num[0] = par1;
3464 cmd.parm.num[1] = par2;
3465 isdn_command(&cmd);
3466 break;
3467 } else
3468 if (*p[0] == '?') {
3469 p[0]++;
3470 isdn_tty_at_cout("\r\n<0-15>,<0-255>",
3471 info);
3472 break;
3473 } else
3474 PARSE_ERROR1;
3475 break;
3476 default:
3477 PARSE_ERROR1;
3478 }
3479 break;
3480 default:
3481 PARSE_ERROR1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 }
3483 return 0;
3484}
3485#endif /* CONFIG_ISDN_AUDIO */
3486
3487/*
3488 * Parse and perform an AT-command-line.
3489 */
3490static void
Joe Perches475be4d2012-02-19 19:52:38 -08003491isdn_tty_parse_at(modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492{
3493 atemu *m = &info->emu;
3494 char *p;
Dan Carpenterf417f5e2010-09-04 08:33:03 +00003495 char ds[ISDN_MSNLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
3497#ifdef ISDN_DEBUG_AT
3498 printk(KERN_DEBUG "AT: '%s'\n", m->mdmcmd);
3499#endif
3500 for (p = &m->mdmcmd[2]; *p;) {
3501 switch (*p) {
Joe Perches475be4d2012-02-19 19:52:38 -08003502 case ' ':
3503 p++;
3504 break;
3505 case 'A':
3506 /* A - Accept incoming call */
3507 p++;
3508 isdn_tty_cmd_ATA(info);
3509 return;
3510 break;
3511 case 'D':
3512 /* D - Dial */
3513 if (info->msr & UART_MSR_DCD)
3514 PARSE_ERROR;
3515 if (info->msr & UART_MSR_RI) {
3516 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 return;
Joe Perches475be4d2012-02-19 19:52:38 -08003518 }
3519 isdn_tty_getdial(++p, ds, sizeof ds);
3520 p += strlen(p);
3521 if (!strlen(m->msn))
3522 isdn_tty_modem_result(RESULT_NO_MSN_EAZ, info);
3523 else if (strlen(ds))
3524 isdn_tty_dial(ds, info, m);
3525 else
3526 PARSE_ERROR;
3527 return;
3528 case 'E':
3529 /* E - Turn Echo on/off */
3530 p++;
3531 switch (isdn_getnum(&p)) {
3532 case 0:
3533 m->mdmreg[REG_ECHO] &= ~BIT_ECHO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 break;
Joe Perches475be4d2012-02-19 19:52:38 -08003535 case 1:
3536 m->mdmreg[REG_ECHO] |= BIT_ECHO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 break;
3538 default:
3539 PARSE_ERROR;
Joe Perches475be4d2012-02-19 19:52:38 -08003540 }
3541 break;
3542 case 'H':
3543 /* H - On/Off-hook */
3544 p++;
3545 switch (*p) {
3546 case '0':
3547 p++;
3548 isdn_tty_on_hook(info);
3549 break;
3550 case '1':
3551 p++;
3552 isdn_tty_off_hook();
3553 break;
3554 default:
3555 isdn_tty_on_hook(info);
3556 break;
3557 }
3558 break;
3559 case 'I':
3560 /* I - Information */
3561 p++;
3562 isdn_tty_at_cout("\r\nLinux ISDN", info);
3563 switch (*p) {
3564 case '0':
3565 case '1':
3566 p++;
3567 break;
3568 case '2':
3569 p++;
3570 isdn_tty_report(info);
3571 break;
3572 case '3':
3573 p++;
3574 snprintf(ds, sizeof(ds), "\r\n%d", info->emu.charge);
3575 isdn_tty_at_cout(ds, info);
3576 break;
3577 default:;
3578 }
3579 break;
3580#ifdef DUMMY_HAYES_AT
3581 case 'L':
3582 case 'M':
3583 /* only for be compilant with common scripts */
3584 /* no function */
3585 p++;
3586 isdn_getnum(&p);
3587 break;
3588#endif
3589 case 'O':
3590 /* O - Go online */
3591 p++;
3592 if (info->msr & UART_MSR_DCD)
3593 /* if B-Channel is up */
3594 isdn_tty_modem_result((m->mdmreg[REG_L2PROT] == ISDN_PROTO_L2_MODEM) ? RESULT_CONNECT : RESULT_CONNECT64000, info);
3595 else
3596 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
3597 return;
3598 case 'Q':
3599 /* Q - Turn Emulator messages on/off */
3600 p++;
3601 switch (isdn_getnum(&p)) {
3602 case 0:
3603 m->mdmreg[REG_RESP] |= BIT_RESP;
3604 break;
3605 case 1:
3606 m->mdmreg[REG_RESP] &= ~BIT_RESP;
3607 break;
3608 default:
3609 PARSE_ERROR;
3610 }
3611 break;
3612 case 'S':
3613 /* S - Set/Get Register */
3614 p++;
3615 if (isdn_tty_cmd_ATS(&p, info))
3616 return;
3617 break;
3618 case 'V':
3619 /* V - Numeric or ASCII Emulator-messages */
3620 p++;
3621 switch (isdn_getnum(&p)) {
3622 case 0:
3623 m->mdmreg[REG_RESP] |= BIT_RESPNUM;
3624 break;
3625 case 1:
3626 m->mdmreg[REG_RESP] &= ~BIT_RESPNUM;
3627 break;
3628 default:
3629 PARSE_ERROR;
3630 }
3631 break;
3632 case 'Z':
3633 /* Z - Load Registers from Profile */
3634 p++;
3635 if (info->msr & UART_MSR_DCD) {
3636 info->online = 0;
3637 isdn_tty_on_hook(info);
3638 }
3639 isdn_tty_modem_reset_regs(info, 1);
3640 break;
3641 case '+':
3642 p++;
3643 switch (*p) {
3644#ifdef CONFIG_ISDN_AUDIO
3645 case 'F':
3646 p++;
3647 if (isdn_tty_cmd_PLUSF(&p, info))
3648 return;
3649 break;
3650 case 'V':
3651 if ((!(m->mdmreg[REG_SI1] & 1)) ||
3652 (m->mdmreg[REG_L2PROT] == ISDN_PROTO_L2_MODEM))
3653 PARSE_ERROR;
3654 p++;
3655 if (isdn_tty_cmd_PLUSV(&p, info))
3656 return;
3657 break;
3658#endif /* CONFIG_ISDN_AUDIO */
3659 case 'S': /* SUSPEND */
3660 p++;
3661 isdn_tty_get_msnstr(ds, &p);
3662 isdn_tty_suspend(ds, info, m);
3663 break;
3664 case 'R': /* RESUME */
3665 p++;
3666 isdn_tty_get_msnstr(ds, &p);
3667 isdn_tty_resume(ds, info, m);
3668 break;
3669 case 'M': /* MESSAGE */
3670 p++;
3671 isdn_tty_send_msg(info, m, p);
3672 break;
3673 default:
3674 PARSE_ERROR;
3675 }
3676 break;
3677 case '&':
3678 p++;
3679 if (isdn_tty_cmd_ATand(&p, info))
3680 return;
3681 break;
3682 default:
3683 PARSE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 }
3685 }
3686#ifdef CONFIG_ISDN_AUDIO
3687 if (!info->vonline)
3688#endif
3689 isdn_tty_modem_result(RESULT_OK, info);
3690}
3691
3692/* Need own toupper() because standard-toupper is not available
3693 * within modules.
3694 */
Joe Perches475be4d2012-02-19 19:52:38 -08003695#define my_toupper(c) (((c >= 'a') && (c <= 'z')) ? (c & 0xdf) : c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
3697/*
3698 * Perform line-editing of AT-commands
3699 *
3700 * Parameters:
3701 * p inputbuffer
3702 * count length of buffer
3703 * channel index to line (minor-device)
3704 */
3705static int
Joe Perches475be4d2012-02-19 19:52:38 -08003706isdn_tty_edit_at(const char *p, int count, modem_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707{
3708 atemu *m = &info->emu;
3709 int total = 0;
3710 u_char c;
3711 char eb[2];
3712 int cnt;
3713
3714 for (cnt = count; cnt > 0; p++, cnt--) {
3715 c = *p;
3716 total++;
3717 if (c == m->mdmreg[REG_CR] || c == m->mdmreg[REG_LF]) {
3718 /* Separator (CR or LF) */
3719 m->mdmcmd[m->mdmcmdl] = 0;
3720 if (m->mdmreg[REG_ECHO] & BIT_ECHO) {
3721 eb[0] = c;
3722 eb[1] = 0;
3723 isdn_tty_at_cout(eb, info);
3724 }
3725 if ((m->mdmcmdl >= 2) && (!(strncmp(m->mdmcmd, "AT", 2))))
3726 isdn_tty_parse_at(info);
3727 m->mdmcmdl = 0;
3728 continue;
3729 }
3730 if (c == m->mdmreg[REG_BS] && m->mdmreg[REG_BS] < 128) {
3731 /* Backspace-Function */
3732 if ((m->mdmcmdl > 2) || (!m->mdmcmdl)) {
3733 if (m->mdmcmdl)
3734 m->mdmcmdl--;
3735 if (m->mdmreg[REG_ECHO] & BIT_ECHO)
3736 isdn_tty_at_cout("\b", info);
3737 }
3738 continue;
3739 }
3740 if (cmdchar(c)) {
3741 if (m->mdmreg[REG_ECHO] & BIT_ECHO) {
3742 eb[0] = c;
3743 eb[1] = 0;
3744 isdn_tty_at_cout(eb, info);
3745 }
3746 if (m->mdmcmdl < 255) {
3747 c = my_toupper(c);
3748 switch (m->mdmcmdl) {
Joe Perches475be4d2012-02-19 19:52:38 -08003749 case 1:
3750 if (c == 'T') {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 m->mdmcmd[m->mdmcmdl] = c;
3752 m->mdmcmd[++m->mdmcmdl] = 0;
Joe Perches475be4d2012-02-19 19:52:38 -08003753 break;
3754 } else
3755 m->mdmcmdl = 0;
3756 /* Fall through, check for 'A' */
3757 case 0:
3758 if (c == 'A') {
3759 m->mdmcmd[m->mdmcmdl] = c;
3760 m->mdmcmd[++m->mdmcmdl] = 0;
3761 }
3762 break;
3763 default:
3764 m->mdmcmd[m->mdmcmdl] = c;
3765 m->mdmcmd[++m->mdmcmdl] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 }
3767 }
3768 }
3769 }
3770 return total;
3771}
3772
3773/*
3774 * Switch all modem-channels who are online and got a valid
3775 * escape-sequence 1.5 seconds ago, to command-mode.
3776 * This function is called every second via timer-interrupt from within
3777 * timer-dispatcher isdn_timer_function()
3778 */
3779void
3780isdn_tty_modem_escape(void)
3781{
3782 int ton = 0;
3783 int i;
3784 int midx;
3785
3786 for (i = 0; i < ISDN_MAX_CHANNELS; i++)
Jiri Slaby37630f42012-04-02 13:53:52 +02003787 if (USG_MODEM(dev->usage[i]) && (midx = dev->m_idx[i]) >= 0) {
3788 modem_info *info = &dev->mdm.info[midx];
3789 if (info->online) {
3790 ton = 1;
3791 if ((info->emu.pluscount == 3) &&
3792 time_after(jiffies,
3793 info->emu.lastplus + PLUSWAIT2)) {
3794 info->emu.pluscount = 0;
3795 info->online = 0;
3796 isdn_tty_modem_result(RESULT_OK, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 }
3798 }
Jiri Slaby37630f42012-04-02 13:53:52 +02003799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 isdn_timer_ctrl(ISDN_TIMER_MODEMPLUS, ton);
3801}
3802
3803/*
3804 * Put a RING-message to all modem-channels who have the RI-bit set.
3805 * This function is called every second via timer-interrupt from within
3806 * timer-dispatcher isdn_timer_function()
3807 */
3808void
3809isdn_tty_modem_ring(void)
3810{
3811 int ton = 0;
3812 int i;
3813
3814 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
3815 modem_info *info = &dev->mdm.info[i];
3816 if (info->msr & UART_MSR_RI) {
3817 ton = 1;
3818 isdn_tty_modem_result(RESULT_RING, info);
3819 }
3820 }
3821 isdn_timer_ctrl(ISDN_TIMER_MODEMRING, ton);
3822}
3823
3824/*
3825 * For all online tty's, try sending data to
3826 * the lower levels.
3827 */
3828void
3829isdn_tty_modem_xmit(void)
3830{
3831 int ton = 1;
3832 int i;
3833
3834 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
3835 modem_info *info = &dev->mdm.info[i];
3836 if (info->online) {
3837 ton = 1;
3838 isdn_tty_senddown(info);
3839 isdn_tty_tint(info);
3840 }
3841 }
3842 isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT, ton);
3843}
3844
3845/*
3846 * Check all channels if we have a 'no carrier' timeout.
3847 * Timeout value is set by Register S7.
3848 */
3849void
3850isdn_tty_carrier_timeout(void)
3851{
3852 int ton = 0;
3853 int i;
3854
3855 for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
3856 modem_info *info = &dev->mdm.info[i];
Jiri Slaby37630f42012-04-02 13:53:52 +02003857 if (!info->dialing)
3858 continue;
3859 if (info->emu.carrierwait++ > info->emu.mdmreg[REG_WAITC]) {
3860 info->dialing = 0;
3861 isdn_tty_modem_result(RESULT_NO_CARRIER, info);
3862 isdn_tty_modem_hup(info, 1);
3863 } else
3864 ton = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 }
3866 isdn_timer_ctrl(ISDN_TIMER_CARRIER, ton);
3867}