isdn_tty.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:99k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: isdn_tty.c,v 1.1.4.1 2001/11/20 14:19:34 kai Exp $
  2.  *
  3.  * Linux ISDN subsystem, tty functions and AT-command emulator (linklevel).
  4.  *
  5.  * Copyright 1994-1999  by Fritz Elfert (fritz@isdn4linux.de)
  6.  * Copyright 1995,96    by Thinking Objects Software GmbH Wuerzburg
  7.  *
  8.  * This software may be used and distributed according to the terms
  9.  * of the GNU General Public License, incorporated herein by reference.
  10.  *
  11.  */
  12. #undef ISDN_TTY_STAT_DEBUG
  13. #include <linux/config.h>
  14. #include <linux/isdn.h>
  15. #include "isdn_common.h"
  16. #include "isdn_tty.h"
  17. #ifdef CONFIG_ISDN_AUDIO
  18. #include "isdn_audio.h"
  19. #define VBUF 0x3e0
  20. #define VBUFX (VBUF/16)
  21. #endif
  22. #define FIX_FILE_TRANSFER
  23. #define DUMMY_HAYES_AT
  24. /* Prototypes */
  25. static int isdn_tty_edit_at(const char *, int, modem_info *, int);
  26. static void isdn_tty_check_esc(const u_char *, u_char, int, int *, int *, int);
  27. static void isdn_tty_modem_reset_regs(modem_info *, int);
  28. static void isdn_tty_cmd_ATA(modem_info *);
  29. static void isdn_tty_flush_buffer(struct tty_struct *);
  30. static void isdn_tty_modem_result(int, modem_info *);
  31. #ifdef CONFIG_ISDN_AUDIO
  32. static int isdn_tty_countDLE(unsigned char *, int);
  33. #endif
  34. /* Leave this unchanged unless you know what you do! */
  35. #define MODEM_PARANOIA_CHECK
  36. #define MODEM_DO_RESTART
  37. #ifdef CONFIG_DEVFS_FS
  38. static char *isdn_ttyname_ttyI = "isdn/ttyI%d";
  39. static char *isdn_ttyname_cui = "isdn/cui%d";
  40. #else
  41. static char *isdn_ttyname_ttyI = "ttyI";
  42. static char *isdn_ttyname_cui = "cui";
  43. #endif
  44. static int bit2si[8] =
  45. {1, 5, 7, 7, 7, 7, 7, 7};
  46. static int si2bit[8] =
  47. {4, 1, 4, 4, 4, 4, 4, 4};
  48. char *isdn_tty_revision = "$Revision: 1.1.4.1 $";
  49. /* isdn_tty_try_read() is called from within isdn_tty_rcv_skb()
  50.  * to stuff incoming data directly into a tty's flip-buffer. This
  51.  * is done to speed up tty-receiving if the receive-queue is empty.
  52.  * This routine MUST be called with interrupts off.
  53.  * Return:
  54.  *  1 = Success
  55.  *  0 = Failure, data has to be buffered and later processed by
  56.  *      isdn_tty_readmodem().
  57.  */
  58. static int
  59. isdn_tty_try_read(modem_info * info, struct sk_buff *skb)
  60. {
  61. int c;
  62. int len;
  63. struct tty_struct *tty;
  64. if (info->online) {
  65. if ((tty = info->tty)) {
  66. if (info->mcr & UART_MCR_RTS) {
  67. c = TTY_FLIPBUF_SIZE - tty->flip.count;
  68. len = skb->len
  69. #ifdef CONFIG_ISDN_AUDIO
  70. + ISDN_AUDIO_SKB_DLECOUNT(skb)
  71. #endif
  72. ;
  73. if (c >= len) {
  74. #ifdef CONFIG_ISDN_AUDIO
  75. if (ISDN_AUDIO_SKB_DLECOUNT(skb))
  76. while (skb->len--) {
  77. if (*skb->data == DLE)
  78. tty_insert_flip_char(tty, DLE, 0);
  79. tty_insert_flip_char(tty, *skb->data++, 0);
  80. } else {
  81. #endif
  82. memcpy(tty->flip.char_buf_ptr,
  83.        skb->data, len);
  84. tty->flip.count += len;
  85. tty->flip.char_buf_ptr += len;
  86. memset(tty->flip.flag_buf_ptr, 0, len);
  87. tty->flip.flag_buf_ptr += len;
  88. #ifdef CONFIG_ISDN_AUDIO
  89. }
  90. #endif
  91. if (info->emu.mdmreg[REG_CPPP] & BIT_CPPP)
  92. tty->flip.flag_buf_ptr[len - 1] = 0xff;
  93. queue_task(&tty->flip.tqueue, &tq_timer);
  94. kfree_skb(skb);
  95. return 1;
  96. }
  97. }
  98. }
  99. }
  100. return 0;
  101. }
  102. /* isdn_tty_readmodem() is called periodically from within timer-interrupt.
  103.  * It tries getting received data from the receive queue an stuff it into
  104.  * the tty's flip-buffer.
  105.  */
  106. void
  107. isdn_tty_readmodem(void)
  108. {
  109. int resched = 0;
  110. int midx;
  111. int i;
  112. int c;
  113. int r;
  114. ulong flags;
  115. struct tty_struct *tty;
  116. modem_info *info;
  117. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  118. if ((midx = dev->m_idx[i]) >= 0) {
  119. info = &dev->mdm.info[midx];
  120. if (info->online) {
  121. r = 0;
  122. #ifdef CONFIG_ISDN_AUDIO
  123. isdn_audio_eval_dtmf(info);
  124. if ((info->vonline & 1) && (info->emu.vpar[1]))
  125. isdn_audio_eval_silence(info);
  126. #endif
  127. if ((tty = info->tty)) {
  128. if (info->mcr & UART_MCR_RTS) {
  129. c = TTY_FLIPBUF_SIZE - tty->flip.count;
  130. if (c > 0) {
  131. save_flags(flags);
  132. cli();
  133. r = isdn_readbchan(info->isdn_driver, info->isdn_channel,
  134.    tty->flip.char_buf_ptr,
  135.    tty->flip.flag_buf_ptr, c, 0);
  136. /* CISCO AsyncPPP Hack */
  137. if (!(info->emu.mdmreg[REG_CPPP] & BIT_CPPP))
  138. memset(tty->flip.flag_buf_ptr, 0, r);
  139. tty->flip.count += r;
  140. tty->flip.flag_buf_ptr += r;
  141. tty->flip.char_buf_ptr += r;
  142. if (r)
  143. queue_task(&tty->flip.tqueue, &tq_timer);
  144. restore_flags(flags);
  145. }
  146. } else
  147. r = 1;
  148. } else
  149. r = 1;
  150. if (r) {
  151. info->rcvsched = 0;
  152. resched = 1;
  153. } else
  154. info->rcvsched = 1;
  155. }
  156. }
  157. }
  158. if (!resched)
  159. isdn_timer_ctrl(ISDN_TIMER_MODEMREAD, 0);
  160. }
  161. int
  162. isdn_tty_rcv_skb(int i, int di, int channel, struct sk_buff *skb)
  163. {
  164. ulong flags;
  165. int midx;
  166. #ifdef CONFIG_ISDN_AUDIO
  167. int ifmt;
  168. #endif
  169. modem_info *info;
  170. if ((midx = dev->m_idx[i]) < 0) {
  171. /* if midx is invalid, packet is not for tty */
  172. return 0;
  173. }
  174. info = &dev->mdm.info[midx];
  175. #ifdef CONFIG_ISDN_AUDIO
  176. ifmt = 1;
  177. if ((info->vonline) && (!info->emu.vpar[4]))
  178. isdn_audio_calc_dtmf(info, skb->data, skb->len, ifmt);
  179. if ((info->vonline & 1) && (info->emu.vpar[1]))
  180. isdn_audio_calc_silence(info, skb->data, skb->len, ifmt);
  181. #endif
  182. if ((info->online < 2)
  183. #ifdef CONFIG_ISDN_AUDIO
  184.     && (!(info->vonline & 1))
  185. #endif
  186. ) {
  187. /* If Modem not listening, drop data */
  188. kfree_skb(skb);
  189. return 1;
  190. }
  191. if (info->emu.mdmreg[REG_T70] & BIT_T70) {
  192. if (info->emu.mdmreg[REG_T70] & BIT_T70_EXT) {
  193. /* T.70 decoding: throw away the T.70 header (2 or 4 bytes)   */
  194. if (skb->data[0] == 3) /* pure data packet -> 4 byte headers  */
  195. skb_pull(skb, 4);
  196. else
  197. if (skb->data[0] == 1) /* keepalive packet -> 2 byte hdr  */
  198. skb_pull(skb, 2);
  199. } else
  200. /* T.70 decoding: Simply throw away the T.70 header (4 bytes) */
  201. if ((skb->data[0] == 1) && ((skb->data[1] == 0) || (skb->data[1] == 1)))
  202. skb_pull(skb, 4);
  203. }
  204. #ifdef CONFIG_ISDN_AUDIO
  205. if (skb_headroom(skb) < sizeof(isdn_audio_skb)) {
  206. printk(KERN_WARNING
  207.        "isdn_audio: insufficient skb_headroom, droppingn");
  208. kfree_skb(skb);
  209. return 1;
  210. }
  211. ISDN_AUDIO_SKB_DLECOUNT(skb) = 0;
  212. ISDN_AUDIO_SKB_LOCK(skb) = 0;
  213. if (info->vonline & 1) {
  214. /* voice conversion/compression */
  215. switch (info->emu.vpar[3]) {
  216. case 2:
  217. case 3:
  218. case 4:
  219. /* adpcm
  220.  * Since compressed data takes less
  221.  * space, we can overwrite the buffer.
  222.  */
  223. skb_trim(skb, isdn_audio_xlaw2adpcm(info->adpcmr,
  224.     ifmt,
  225.     skb->data,
  226.     skb->data,
  227.     skb->len));
  228. break;
  229. case 5:
  230. /* a-law */
  231. if (!ifmt)
  232. isdn_audio_ulaw2alaw(skb->data, skb->len);
  233. break;
  234. case 6:
  235. /* u-law */
  236. if (ifmt)
  237. isdn_audio_alaw2ulaw(skb->data, skb->len);
  238. break;
  239. }
  240. ISDN_AUDIO_SKB_DLECOUNT(skb) =
  241. isdn_tty_countDLE(skb->data, skb->len);
  242. }
  243. #ifdef CONFIG_ISDN_TTY_FAX
  244. else {
  245. if (info->faxonline & 2) {
  246. isdn_tty_fax_bitorder(info, skb);
  247. ISDN_AUDIO_SKB_DLECOUNT(skb) =
  248. isdn_tty_countDLE(skb->data, skb->len);
  249. }
  250. }
  251. #endif
  252. #endif
  253. /* Try to deliver directly via tty-flip-buf if queue is empty */
  254. save_flags(flags);
  255. cli();
  256. if (skb_queue_empty(&dev->drv[di]->rpqueue[channel]))
  257. if (isdn_tty_try_read(info, skb)) {
  258. restore_flags(flags);
  259. return 1;
  260. }
  261. /* Direct deliver failed or queue wasn't empty.
  262.  * Queue up for later dequeueing via timer-irq.
  263.  */
  264. __skb_queue_tail(&dev->drv[di]->rpqueue[channel], skb);
  265. dev->drv[di]->rcvcount[channel] +=
  266. (skb->len
  267. #ifdef CONFIG_ISDN_AUDIO
  268.  + ISDN_AUDIO_SKB_DLECOUNT(skb)
  269. #endif
  270. );
  271. restore_flags(flags);
  272. /* Schedule dequeuing */
  273. if ((dev->modempoll) && (info->rcvsched))
  274. isdn_timer_ctrl(ISDN_TIMER_MODEMREAD, 1);
  275. return 1;
  276. }
  277. void
  278. isdn_tty_cleanup_xmit(modem_info * info)
  279. {
  280. unsigned long flags;
  281. save_flags(flags);
  282. cli();
  283. skb_queue_purge(&info->xmit_queue);
  284. #ifdef CONFIG_ISDN_AUDIO
  285. skb_queue_purge(&info->dtmf_queue);
  286. #endif
  287. restore_flags(flags);
  288. }
  289. static void
  290. isdn_tty_tint(modem_info * info)
  291. {
  292. struct sk_buff *skb = skb_dequeue(&info->xmit_queue);
  293. int len,
  294.  slen;
  295. if (!skb)
  296. return;
  297. len = skb->len;
  298. if ((slen = isdn_writebuf_skb_stub(info->isdn_driver,
  299.    info->isdn_channel, 1, skb)) == len) {
  300. struct tty_struct *tty = info->tty;
  301. info->send_outstanding++;
  302. info->msr &= ~UART_MSR_CTS;
  303. info->lsr &= ~UART_LSR_TEMT;
  304. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  305.     tty->ldisc.write_wakeup)
  306. (tty->ldisc.write_wakeup) (tty);
  307. wake_up_interruptible(&tty->write_wait);
  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. #ifdef CONFIG_ISDN_AUDIO
  318. static int
  319. isdn_tty_countDLE(unsigned char *buf, int len)
  320. {
  321. int count = 0;
  322. while (len--)
  323. if (*buf++ == DLE)
  324. count++;
  325. return count;
  326. }
  327. /* This routine is called from within isdn_tty_write() to perform
  328.  * DLE-decoding when sending audio-data.
  329.  */
  330. static int
  331. isdn_tty_handleDLEdown(modem_info * info, atemu * m, int len)
  332. {
  333. unsigned char *p = &info->xmit_buf[info->xmit_count];
  334. int count = 0;
  335. while (len > 0) {
  336. if (m->lastDLE) {
  337. m->lastDLE = 0;
  338. switch (*p) {
  339. case DLE:
  340. /* Escape code */
  341. if (len > 1)
  342. memmove(p, p + 1, len - 1);
  343. p--;
  344. count++;
  345. break;
  346. case ETX:
  347. /* End of data */
  348. info->vonline |= 4;
  349. return count;
  350. case DC4:
  351. /* Abort RX */
  352. info->vonline &= ~1;
  353. #ifdef ISDN_DEBUG_MODEM_VOICE
  354. printk(KERN_DEBUG
  355.        "DLEdown: got DLE-DC4, send DLE-ETX on ttyI%dn",
  356.        info->line);
  357. #endif
  358. isdn_tty_at_cout("2003", info);
  359. if (!info->vonline) {
  360. #ifdef ISDN_DEBUG_MODEM_VOICE
  361. printk(KERN_DEBUG
  362.        "DLEdown: send VCON on ttyI%dn",
  363.        info->line);
  364. #endif
  365. isdn_tty_at_cout("rnVCONrn", info);
  366. }
  367. /* Fall through */
  368. case 'q':
  369. case 's':
  370. /* Silence */
  371. if (len > 1)
  372. memmove(p, p + 1, len - 1);
  373. p--;
  374. break;
  375. }
  376. } else {
  377. if (*p == DLE)
  378. m->lastDLE = 1;
  379. else
  380. count++;
  381. }
  382. p++;
  383. len--;
  384. }
  385. if (len < 0) {
  386. printk(KERN_WARNING "isdn_tty: len<0 in DLEdownn");
  387. return 0;
  388. }
  389. return count;
  390. }
  391. /* This routine is called from within isdn_tty_write() when receiving
  392.  * audio-data. It interrupts receiving, if an character other than
  393.  * ^S or ^Q is sent.
  394.  */
  395. static int
  396. isdn_tty_end_vrx(const char *buf, int c, int from_user)
  397. {
  398. char ch;
  399. while (c--) {
  400. if (from_user)
  401. get_user(ch, buf);
  402. else
  403. ch = *buf;
  404. if ((ch != 0x11) && (ch != 0x13))
  405. return 1;
  406. buf++;
  407. }
  408. return 0;
  409. }
  410. static int voice_cf[7] =
  411. {0, 0, 4, 3, 2, 0, 0};
  412. #endif                          /* CONFIG_ISDN_AUDIO */
  413. /* isdn_tty_senddown() is called either directly from within isdn_tty_write()
  414.  * or via timer-interrupt from within isdn_tty_modem_xmit(). It pulls
  415.  * outgoing data from the tty's xmit-buffer, handles voice-decompression or
  416.  * T.70 if necessary, and finally queues it up for sending via isdn_tty_tint.
  417.  */
  418. static void
  419. isdn_tty_senddown(modem_info * info)
  420. {
  421. int buflen;
  422. int skb_res;
  423. #ifdef CONFIG_ISDN_AUDIO
  424. int audio_len;
  425. #endif
  426. struct sk_buff *skb;
  427. #ifdef CONFIG_ISDN_AUDIO
  428. if (info->vonline & 4) {
  429. info->vonline &= ~6;
  430. if (!info->vonline) {
  431. #ifdef ISDN_DEBUG_MODEM_VOICE
  432. printk(KERN_DEBUG
  433.        "senddown: send VCON on ttyI%dn",
  434.        info->line);
  435. #endif
  436. isdn_tty_at_cout("rnVCONrn", info);
  437. }
  438. }
  439. #endif
  440. if (!(buflen = info->xmit_count))
  441. return;
  442.   if ((info->emu.mdmreg[REG_CTS] & BIT_CTS) != 0)
  443. info->msr &= ~UART_MSR_CTS;
  444. info->lsr &= ~UART_LSR_TEMT;
  445. /* info->xmit_count is modified here and in isdn_tty_write().
  446.  * So we return here if isdn_tty_write() is in the
  447.  * critical section.
  448.  */
  449. atomic_inc(&info->xmit_lock);
  450. if (!(atomic_dec_and_test(&info->xmit_lock)))
  451. return;
  452. if (info->isdn_driver < 0) {
  453. info->xmit_count = 0;
  454. return;
  455. }
  456. skb_res = dev->drv[info->isdn_driver]->interface->hl_hdrlen + 4;
  457. #ifdef CONFIG_ISDN_AUDIO
  458. if (info->vonline & 2)
  459. audio_len = buflen * voice_cf[info->emu.vpar[3]];
  460. else
  461. audio_len = 0;
  462. skb = dev_alloc_skb(skb_res + buflen + audio_len);
  463. #else
  464. skb = dev_alloc_skb(skb_res + buflen);
  465. #endif
  466. if (!skb) {
  467. printk(KERN_WARNING
  468.        "isdn_tty: Out of memory in ttyI%d senddownn",
  469.        info->line);
  470. return;
  471. }
  472. skb_reserve(skb, skb_res);
  473. memcpy(skb_put(skb, buflen), info->xmit_buf, buflen);
  474. info->xmit_count = 0;
  475. #ifdef CONFIG_ISDN_AUDIO
  476. if (info->vonline & 2) {
  477. /* For now, ifmt is fixed to 1 (alaw), since this
  478.  * is used with ISDN everywhere in the world, except
  479.  * US, Canada and Japan.
  480.  * Later, when US-ISDN protocols are implemented,
  481.  * this setting will depend on the D-channel protocol.
  482.  */
  483. int ifmt = 1;
  484. /* voice conversion/decompression */
  485. switch (info->emu.vpar[3]) {
  486. case 2:
  487. case 3:
  488. case 4:
  489. /* adpcm, compatible to ZyXel 1496 modem
  490.  * with ROM revision 6.01
  491.  */
  492. audio_len = isdn_audio_adpcm2xlaw(info->adpcms,
  493.   ifmt,
  494.   skb->data,
  495.     skb_put(skb, audio_len),
  496.   buflen);
  497. skb_pull(skb, buflen);
  498. skb_trim(skb, audio_len);
  499. break;
  500. case 5:
  501. /* a-law */
  502. if (!ifmt)
  503. isdn_audio_alaw2ulaw(skb->data,
  504.      buflen);
  505. break;
  506. case 6:
  507. /* u-law */
  508. if (ifmt)
  509. isdn_audio_ulaw2alaw(skb->data,
  510.      buflen);
  511. break;
  512. }
  513. }
  514. #endif                          /* CONFIG_ISDN_AUDIO */
  515. if (info->emu.mdmreg[REG_T70] & BIT_T70) {
  516. /* Add T.70 simplified header */
  517. if (info->emu.mdmreg[REG_T70] & BIT_T70_EXT)
  518. memcpy(skb_push(skb, 2), "1", 2);
  519. else
  520. memcpy(skb_push(skb, 4), "11", 4);
  521. }
  522. skb_queue_tail(&info->xmit_queue, skb);
  523. }
  524. /************************************************************
  525.  *
  526.  * Modem-functions
  527.  *
  528.  * mostly "stolen" from original Linux-serial.c and friends.
  529.  *
  530.  ************************************************************/
  531. /* The next routine is called once from within timer-interrupt
  532.  * triggered within isdn_tty_modem_ncarrier(). It calls
  533.  * isdn_tty_modem_result() to stuff a "NO CARRIER" Message
  534.  * into the tty's flip-buffer.
  535.  */
  536. static void
  537. isdn_tty_modem_do_ncarrier(unsigned long data)
  538. {
  539. modem_info *info = (modem_info *) data;
  540. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  541. }
  542. /* Next routine is called, whenever the DTR-signal is raised.
  543.  * It checks the ncarrier-flag, and triggers the above routine
  544.  * when necessary. The ncarrier-flag is set, whenever DTR goes
  545.  * low.
  546.  */
  547. static void
  548. isdn_tty_modem_ncarrier(modem_info * info)
  549. {
  550. if (info->ncarrier) {
  551. info->nc_timer.expires = jiffies + HZ;
  552. info->nc_timer.function = isdn_tty_modem_do_ncarrier;
  553. info->nc_timer.data = (unsigned long) info;
  554. add_timer(&info->nc_timer);
  555. }
  556. }
  557. /*
  558.  * return the usage calculated by si and layer 2 protocol
  559.  */
  560. int
  561. isdn_calc_usage(int si, int l2)
  562. {
  563. int usg = ISDN_USAGE_MODEM;
  564. #ifdef CONFIG_ISDN_AUDIO
  565. if (si == 1) {
  566. switch(l2) {
  567. case ISDN_PROTO_L2_MODEM: 
  568. usg = ISDN_USAGE_MODEM;
  569. break;
  570. #ifdef CONFIG_ISDN_TTY_FAX
  571. case ISDN_PROTO_L2_FAX: 
  572. usg = ISDN_USAGE_FAX;
  573. break;
  574. #endif
  575. case ISDN_PROTO_L2_TRANS: 
  576. default:
  577. usg = ISDN_USAGE_VOICE;
  578. break;
  579. }
  580. }
  581. #endif
  582. return(usg);
  583. }
  584. /* isdn_tty_dial() performs dialing of a tty an the necessary
  585.  * setup of the lower levels before that.
  586.  */
  587. static void
  588. isdn_tty_dial(char *n, modem_info * info, atemu * m)
  589. {
  590. int usg = ISDN_USAGE_MODEM;
  591. int si = 7;
  592. int l2 = m->mdmreg[REG_L2PROT];
  593. isdn_ctrl cmd;
  594. ulong flags;
  595. int i;
  596. int j;
  597. for (j = 7; j >= 0; j--)
  598. if (m->mdmreg[REG_SI1] & (1 << j)) {
  599. si = bit2si[j];
  600. break;
  601. }
  602. usg = isdn_calc_usage(si, l2);
  603. #ifdef CONFIG_ISDN_AUDIO
  604. if ((si == 1) && 
  605. (l2 != ISDN_PROTO_L2_MODEM)
  606. #ifdef CONFIG_ISDN_TTY_FAX
  607. && (l2 != ISDN_PROTO_L2_FAX)
  608. #endif
  609. ) {
  610. l2 = ISDN_PROTO_L2_TRANS;
  611. usg = ISDN_USAGE_VOICE;
  612. }
  613. #endif
  614. m->mdmreg[REG_SI1I] = si2bit[si];
  615. save_flags(flags);
  616. cli();
  617. i = isdn_get_free_channel(usg, l2, m->mdmreg[REG_L3PROT], -1, -1, m->msn);
  618. if (i < 0) {
  619. restore_flags(flags);
  620. isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
  621. } else {
  622. info->isdn_driver = dev->drvmap[i];
  623. info->isdn_channel = dev->chanmap[i];
  624. info->drv_index = i;
  625. dev->m_idx[i] = info->line;
  626. dev->usage[i] |= ISDN_USAGE_OUTGOING;
  627. info->last_dir = 1;
  628. strcpy(info->last_num, n);
  629. isdn_info_update();
  630. restore_flags(flags);
  631. cmd.driver = info->isdn_driver;
  632. cmd.arg = info->isdn_channel;
  633. cmd.command = ISDN_CMD_CLREAZ;
  634. isdn_command(&cmd);
  635. strcpy(cmd.parm.num, isdn_map_eaz2msn(m->msn, info->isdn_driver));
  636. cmd.driver = info->isdn_driver;
  637. cmd.command = ISDN_CMD_SETEAZ;
  638. isdn_command(&cmd);
  639. cmd.driver = info->isdn_driver;
  640. cmd.command = ISDN_CMD_SETL2;
  641. info->last_l2 = l2;
  642. cmd.arg = info->isdn_channel + (l2 << 8);
  643. isdn_command(&cmd);
  644. cmd.driver = info->isdn_driver;
  645. cmd.command = ISDN_CMD_SETL3;
  646. cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
  647. #ifdef CONFIG_ISDN_TTY_FAX
  648. if (l2 == ISDN_PROTO_L2_FAX) {
  649. cmd.parm.fax = info->fax;
  650. info->fax->direction = ISDN_TTY_FAX_CONN_OUT;
  651. }
  652. #endif
  653. isdn_command(&cmd);
  654. cmd.driver = info->isdn_driver;
  655. cmd.arg = info->isdn_channel;
  656. sprintf(cmd.parm.setup.phone, "%s", n);
  657. sprintf(cmd.parm.setup.eazmsn, "%s",
  658. isdn_map_eaz2msn(m->msn, info->isdn_driver));
  659. cmd.parm.setup.si1 = si;
  660. cmd.parm.setup.si2 = m->mdmreg[REG_SI2];
  661. cmd.command = ISDN_CMD_DIAL;
  662. info->dialing = 1;
  663. info->emu.carrierwait = 0;
  664. strcpy(dev->num[i], n);
  665. isdn_info_update();
  666. isdn_command(&cmd);
  667. isdn_timer_ctrl(ISDN_TIMER_CARRIER, 1);
  668. }
  669. }
  670. /* isdn_tty_hangup() disassociates a tty from the real
  671.  * ISDN-line (hangup). The usage-status is cleared
  672.  * and some cleanup is done also.
  673.  */
  674. void
  675. isdn_tty_modem_hup(modem_info * info, int local)
  676. {
  677. isdn_ctrl cmd;
  678. int di, ch;
  679. if (!info)
  680. return;
  681. di = info->isdn_driver;
  682. ch = info->isdn_channel;
  683. if (di < 0 || ch < 0)
  684. return;
  685. info->isdn_driver = -1;
  686. info->isdn_channel = -1;
  687. #ifdef ISDN_DEBUG_MODEM_HUP
  688. printk(KERN_DEBUG "Mhup ttyI%dn", info->line);
  689. #endif
  690. info->rcvsched = 0;
  691. isdn_tty_flush_buffer(info->tty);
  692. if (info->online) {
  693. info->last_lhup = local;
  694. info->online = 0;
  695. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  696. }
  697. #ifdef CONFIG_ISDN_AUDIO
  698. info->vonline = 0;
  699. #ifdef CONFIG_ISDN_TTY_FAX
  700. info->faxonline = 0;
  701. info->fax->phase = ISDN_FAX_PHASE_IDLE;
  702. #endif
  703. info->emu.vpar[4] = 0;
  704. info->emu.vpar[5] = 8;
  705. if (info->dtmf_state) {
  706. kfree(info->dtmf_state);
  707. info->dtmf_state = NULL;
  708. }
  709. if (info->silence_state) {
  710. kfree(info->silence_state);
  711. info->silence_state = NULL;
  712. }
  713. if (info->adpcms) {
  714. kfree(info->adpcms);
  715. info->adpcms = NULL;
  716. }
  717. if (info->adpcmr) {
  718. kfree(info->adpcmr);
  719. info->adpcmr = NULL;
  720. }
  721. #endif
  722. if ((info->msr & UART_MSR_RI) &&
  723. (info->emu.mdmreg[REG_RUNG] & BIT_RUNG))
  724. isdn_tty_modem_result(RESULT_RUNG, info);
  725. info->msr &= ~(UART_MSR_DCD | UART_MSR_RI);
  726. info->lsr |= UART_LSR_TEMT;
  727. if (local) {
  728. cmd.driver = di;
  729. cmd.command = ISDN_CMD_HANGUP;
  730. cmd.arg = ch;
  731. isdn_command(&cmd);
  732. }
  733. isdn_all_eaz(di, ch);
  734. info->emu.mdmreg[REG_RINGCNT] = 0;
  735. isdn_free_channel(di, ch, 0);
  736. if (info->drv_index >= 0) {
  737. dev->m_idx[info->drv_index] = -1;
  738. info->drv_index = -1;
  739. }
  740. }
  741. /*
  742.  * Begin of a CAPI like interface, currently used only for 
  743.  * supplementary service (CAPI 2.0 part III)
  744.  */
  745. #include "avmb1/capicmd.h"  /* this should be moved in a common place */
  746. int
  747. isdn_tty_capi_facility(capi_msg *cm) {
  748. return(-1); /* dummy */
  749. }
  750. /* isdn_tty_suspend() tries to suspend the current tty connection
  751.  */
  752. static void
  753. isdn_tty_suspend(char *id, modem_info * info, atemu * m)
  754. {
  755. isdn_ctrl cmd;
  756. int l;
  757. if (!info)
  758. return;
  759. #ifdef ISDN_DEBUG_MODEM_SERVICES
  760. printk(KERN_DEBUG "Msusp ttyI%dn", info->line);
  761. #endif
  762. l = strlen(id);
  763. if ((info->isdn_driver >= 0)) {
  764. cmd.parm.cmsg.Length = l+18;
  765. cmd.parm.cmsg.Command = CAPI_FACILITY;
  766. cmd.parm.cmsg.Subcommand = CAPI_REQ;
  767. cmd.parm.cmsg.adr.Controller = info->isdn_driver + 1;
  768. cmd.parm.cmsg.para[0] = 3; /* 16 bit 0x0003 suplementary service */
  769. cmd.parm.cmsg.para[1] = 0;
  770. cmd.parm.cmsg.para[2] = l + 3;
  771. cmd.parm.cmsg.para[3] = 4; /* 16 bit 0x0004 Suspend */
  772. cmd.parm.cmsg.para[4] = 0;
  773. cmd.parm.cmsg.para[5] = l;
  774. strncpy(&cmd.parm.cmsg.para[6], id, l);
  775. cmd.command = CAPI_PUT_MESSAGE;
  776. cmd.driver = info->isdn_driver;
  777. cmd.arg = info->isdn_channel;
  778. isdn_command(&cmd);
  779. }
  780. }
  781. /* isdn_tty_resume() tries to resume a suspended call
  782.  * setup of the lower levels before that. unfortunatly here is no
  783.  * checking for compatibility of used protocols implemented by Q931
  784.  * It does the same things like isdn_tty_dial, the last command
  785.  * is different, may be we can merge it.
  786.  */
  787. static void
  788. isdn_tty_resume(char *id, modem_info * info, atemu * m)
  789. {
  790. int usg = ISDN_USAGE_MODEM;
  791. int si = 7;
  792. int l2 = m->mdmreg[REG_L2PROT];
  793. isdn_ctrl cmd;
  794. ulong flags;
  795. int i;
  796. int j;
  797. int l;
  798. l = strlen(id);
  799. for (j = 7; j >= 0; j--)
  800. if (m->mdmreg[REG_SI1] & (1 << j)) {
  801. si = bit2si[j];
  802. break;
  803. }
  804. usg = isdn_calc_usage(si, l2);
  805. #ifdef CONFIG_ISDN_AUDIO
  806. if ((si == 1) && 
  807. (l2 != ISDN_PROTO_L2_MODEM)
  808. #ifdef CONFIG_ISDN_TTY_FAX
  809. && (l2 != ISDN_PROTO_L2_FAX)
  810. #endif
  811. ) {
  812. l2 = ISDN_PROTO_L2_TRANS;
  813. usg = ISDN_USAGE_VOICE;
  814. }
  815. #endif
  816. m->mdmreg[REG_SI1I] = si2bit[si];
  817. save_flags(flags);
  818. cli();
  819. i = isdn_get_free_channel(usg, l2, m->mdmreg[REG_L3PROT], -1, -1, m->msn);
  820. if (i < 0) {
  821. restore_flags(flags);
  822. isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
  823. } else {
  824. info->isdn_driver = dev->drvmap[i];
  825. info->isdn_channel = dev->chanmap[i];
  826. info->drv_index = i;
  827. dev->m_idx[i] = info->line;
  828. dev->usage[i] |= ISDN_USAGE_OUTGOING;
  829. info->last_dir = 1;
  830. // strcpy(info->last_num, n);
  831. isdn_info_update();
  832. restore_flags(flags);
  833. cmd.driver = info->isdn_driver;
  834. cmd.arg = info->isdn_channel;
  835. cmd.command = ISDN_CMD_CLREAZ;
  836. isdn_command(&cmd);
  837. strcpy(cmd.parm.num, isdn_map_eaz2msn(m->msn, info->isdn_driver));
  838. cmd.driver = info->isdn_driver;
  839. cmd.command = ISDN_CMD_SETEAZ;
  840. isdn_command(&cmd);
  841. cmd.driver = info->isdn_driver;
  842. cmd.command = ISDN_CMD_SETL2;
  843. info->last_l2 = l2;
  844. cmd.arg = info->isdn_channel + (l2 << 8);
  845. isdn_command(&cmd);
  846. cmd.driver = info->isdn_driver;
  847. cmd.command = ISDN_CMD_SETL3;
  848. cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
  849. isdn_command(&cmd);
  850. cmd.driver = info->isdn_driver;
  851. cmd.arg = info->isdn_channel;
  852. cmd.parm.cmsg.Length = l+18;
  853. cmd.parm.cmsg.Command = CAPI_FACILITY;
  854. cmd.parm.cmsg.Subcommand = CAPI_REQ;
  855. cmd.parm.cmsg.adr.Controller = info->isdn_driver + 1;
  856. cmd.parm.cmsg.para[0] = 3; /* 16 bit 0x0003 suplementary service */
  857. cmd.parm.cmsg.para[1] = 0;
  858. cmd.parm.cmsg.para[2] = l+3;
  859. cmd.parm.cmsg.para[3] = 5; /* 16 bit 0x0005 Resume */
  860. cmd.parm.cmsg.para[4] = 0;
  861. cmd.parm.cmsg.para[5] = l;
  862. strncpy(&cmd.parm.cmsg.para[6], id, l);
  863. cmd.command =CAPI_PUT_MESSAGE;
  864. info->dialing = 1;
  865. // strcpy(dev->num[i], n);
  866. isdn_info_update();
  867. isdn_command(&cmd);
  868. isdn_timer_ctrl(ISDN_TIMER_CARRIER, 1);
  869. }
  870. }
  871. /* isdn_tty_send_msg() sends a message to a HL driver
  872.  * This is used for hybrid modem cards to send AT commands to it
  873.  */
  874. static void
  875. isdn_tty_send_msg(modem_info * info, atemu * m, char *msg)
  876. {
  877. int usg = ISDN_USAGE_MODEM;
  878. int si = 7;
  879. int l2 = m->mdmreg[REG_L2PROT];
  880. isdn_ctrl cmd;
  881. ulong flags;
  882. int i;
  883. int j;
  884. int l;
  885. l = strlen(msg);
  886. if (!l) {
  887. isdn_tty_modem_result(RESULT_ERROR, info);
  888. return;
  889. }
  890. for (j = 7; j >= 0; j--)
  891. if (m->mdmreg[REG_SI1] & (1 << j)) {
  892. si = bit2si[j];
  893. break;
  894. }
  895. usg = isdn_calc_usage(si, l2);
  896. #ifdef CONFIG_ISDN_AUDIO
  897. if ((si == 1) && 
  898. (l2 != ISDN_PROTO_L2_MODEM)
  899. #ifdef CONFIG_ISDN_TTY_FAX
  900. && (l2 != ISDN_PROTO_L2_FAX)
  901. #endif
  902. ) {
  903. l2 = ISDN_PROTO_L2_TRANS;
  904. usg = ISDN_USAGE_VOICE;
  905. }
  906. #endif
  907. m->mdmreg[REG_SI1I] = si2bit[si];
  908. save_flags(flags);
  909. cli();
  910. i = isdn_get_free_channel(usg, l2, m->mdmreg[REG_L3PROT], -1, -1, m->msn);
  911. if (i < 0) {
  912. restore_flags(flags);
  913. isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
  914. } else {
  915. info->isdn_driver = dev->drvmap[i];
  916. info->isdn_channel = dev->chanmap[i];
  917. info->drv_index = i;
  918. dev->m_idx[i] = info->line;
  919. dev->usage[i] |= ISDN_USAGE_OUTGOING;
  920. info->last_dir = 1;
  921. isdn_info_update();
  922. restore_flags(flags);
  923. cmd.driver = info->isdn_driver;
  924. cmd.arg = info->isdn_channel;
  925. cmd.command = ISDN_CMD_CLREAZ;
  926. isdn_command(&cmd);
  927. strcpy(cmd.parm.num, isdn_map_eaz2msn(m->msn, info->isdn_driver));
  928. cmd.driver = info->isdn_driver;
  929. cmd.command = ISDN_CMD_SETEAZ;
  930. isdn_command(&cmd);
  931. cmd.driver = info->isdn_driver;
  932. cmd.command = ISDN_CMD_SETL2;
  933. info->last_l2 = l2;
  934. cmd.arg = info->isdn_channel + (l2 << 8);
  935. isdn_command(&cmd);
  936. cmd.driver = info->isdn_driver;
  937. cmd.command = ISDN_CMD_SETL3;
  938. cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
  939. isdn_command(&cmd);
  940. cmd.driver = info->isdn_driver;
  941. cmd.arg = info->isdn_channel;
  942. cmd.parm.cmsg.Length = l+14;
  943. cmd.parm.cmsg.Command = CAPI_MANUFACTURER;
  944. cmd.parm.cmsg.Subcommand = CAPI_REQ;
  945. cmd.parm.cmsg.adr.Controller = info->isdn_driver + 1;
  946. cmd.parm.cmsg.para[0] = l+1;
  947. strncpy(&cmd.parm.cmsg.para[1], msg, l);
  948. cmd.parm.cmsg.para[l+1] = 0xd;
  949. cmd.command =CAPI_PUT_MESSAGE;
  950. /* info->dialing = 1;
  951. strcpy(dev->num[i], n);
  952. isdn_info_update();
  953. */
  954. isdn_command(&cmd);
  955. }
  956. }
  957. static inline int
  958. isdn_tty_paranoia_check(modem_info * info, kdev_t device, const char *routine)
  959. {
  960. #ifdef MODEM_PARANOIA_CHECK
  961. if (!info) {
  962. printk(KERN_WARNING "isdn_tty: null info_struct for (%d, %d) in %sn",
  963.        MAJOR(device), MINOR(device), routine);
  964. return 1;
  965. }
  966. if (info->magic != ISDN_ASYNC_MAGIC) {
  967. printk(KERN_WARNING "isdn_tty: bad magic for modem struct (%d, %d) in %sn",
  968.        MAJOR(device), MINOR(device), routine);
  969. return 1;
  970. }
  971. #endif
  972. return 0;
  973. }
  974. /*
  975.  * This routine is called to set the UART divisor registers to match
  976.  * the specified baud rate for a serial port.
  977.  */
  978. static void
  979. isdn_tty_change_speed(modem_info * info)
  980. {
  981. uint cflag,
  982.  cval,
  983.  fcr,
  984.  quot;
  985. int i;
  986. if (!info->tty || !info->tty->termios)
  987. return;
  988. cflag = info->tty->termios->c_cflag;
  989. quot = i = cflag & CBAUD;
  990. if (i & CBAUDEX) {
  991. i &= ~CBAUDEX;
  992. if (i < 1 || i > 2)
  993. info->tty->termios->c_cflag &= ~CBAUDEX;
  994. else
  995. i += 15;
  996. }
  997. if (quot) {
  998. info->mcr |= UART_MCR_DTR;
  999. isdn_tty_modem_ncarrier(info);
  1000. } else {
  1001. info->mcr &= ~UART_MCR_DTR;
  1002. if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
  1003. #ifdef ISDN_DEBUG_MODEM_HUP
  1004. printk(KERN_DEBUG "Mhup in changespeedn");
  1005. #endif
  1006. if (info->online)
  1007. info->ncarrier = 1;
  1008. isdn_tty_modem_reset_regs(info, 0);
  1009. isdn_tty_modem_hup(info, 1);
  1010. }
  1011. return;
  1012. }
  1013. /* byte size and parity */
  1014. cval = cflag & (CSIZE | CSTOPB);
  1015. cval >>= 4;
  1016. if (cflag & PARENB)
  1017. cval |= UART_LCR_PARITY;
  1018. if (!(cflag & PARODD))
  1019. cval |= UART_LCR_EPAR;
  1020. fcr = 0;
  1021. /* CTS flow control flag and modem status interrupts */
  1022. if (cflag & CRTSCTS) {
  1023. info->flags |= ISDN_ASYNC_CTS_FLOW;
  1024. } else
  1025. info->flags &= ~ISDN_ASYNC_CTS_FLOW;
  1026. if (cflag & CLOCAL)
  1027. info->flags &= ~ISDN_ASYNC_CHECK_CD;
  1028. else {
  1029. info->flags |= ISDN_ASYNC_CHECK_CD;
  1030. }
  1031. }
  1032. static int
  1033. isdn_tty_startup(modem_info * info)
  1034. {
  1035. ulong flags;
  1036. if (info->flags & ISDN_ASYNC_INITIALIZED)
  1037. return 0;
  1038. save_flags(flags);
  1039. cli();
  1040. isdn_MOD_INC_USE_COUNT();
  1041. #ifdef ISDN_DEBUG_MODEM_OPEN
  1042. printk(KERN_DEBUG "starting up ttyi%d ...n", info->line);
  1043. #endif
  1044. /*
  1045.  * Now, initialize the UART
  1046.  */
  1047. info->mcr = UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2;
  1048. if (info->tty)
  1049. clear_bit(TTY_IO_ERROR, &info->tty->flags);
  1050. /*
  1051.  * and set the speed of the serial port
  1052.  */
  1053. isdn_tty_change_speed(info);
  1054. info->flags |= ISDN_ASYNC_INITIALIZED;
  1055. info->msr |= (UART_MSR_DSR | UART_MSR_CTS);
  1056. info->send_outstanding = 0;
  1057. restore_flags(flags);
  1058. return 0;
  1059. }
  1060. /*
  1061.  * This routine will shutdown a serial port; interrupts are disabled, and
  1062.  * DTR is dropped if the hangup on close termio flag is on.
  1063.  */
  1064. static void
  1065. isdn_tty_shutdown(modem_info * info)
  1066. {
  1067. ulong flags;
  1068. if (!(info->flags & ISDN_ASYNC_INITIALIZED))
  1069. return;
  1070. #ifdef ISDN_DEBUG_MODEM_OPEN
  1071. printk(KERN_DEBUG "Shutting down isdnmodem port %d ....n", info->line);
  1072. #endif
  1073. save_flags(flags);
  1074. cli();                  /* Disable interrupts */
  1075. isdn_MOD_DEC_USE_COUNT();
  1076. info->msr &= ~UART_MSR_RI;
  1077. if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) {
  1078. info->mcr &= ~(UART_MCR_DTR | UART_MCR_RTS);
  1079. if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
  1080. isdn_tty_modem_reset_regs(info, 0);
  1081. #ifdef ISDN_DEBUG_MODEM_HUP
  1082. printk(KERN_DEBUG "Mhup in isdn_tty_shutdownn");
  1083. #endif
  1084. isdn_tty_modem_hup(info, 1);
  1085. }
  1086. }
  1087. if (info->tty)
  1088. set_bit(TTY_IO_ERROR, &info->tty->flags);
  1089. info->flags &= ~ISDN_ASYNC_INITIALIZED;
  1090. restore_flags(flags);
  1091. }
  1092. /* isdn_tty_write() is the main send-routine. It is called from the upper
  1093.  * levels within the kernel to perform sending data. Depending on the
  1094.  * online-flag it either directs output to the at-command-interpreter or
  1095.  * to the lower level. Additional tasks done here:
  1096.  *  - If online, check for escape-sequence (+++)
  1097.  *  - If sending audio-data, call isdn_tty_DLEdown() to parse DLE-codes.
  1098.  *  - If receiving audio-data, call isdn_tty_end_vrx() to abort if needed.
  1099.  *  - If dialing, abort dial.
  1100.  */
  1101. static int
  1102. isdn_tty_write(struct tty_struct *tty, int from_user, const u_char * buf, int count)
  1103. {
  1104. int c;
  1105. int total = 0;
  1106. modem_info *info = (modem_info *) tty->driver_data;
  1107. atemu *m = &info->emu;
  1108. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_write"))
  1109. return 0;
  1110. if (from_user)
  1111. down(&info->write_sem);
  1112. /* See isdn_tty_senddown() */
  1113. atomic_inc(&info->xmit_lock);
  1114. while (1) {
  1115. c = count;
  1116. if (c > info->xmit_size - info->xmit_count)
  1117. c = info->xmit_size - info->xmit_count;
  1118. if (info->isdn_driver >= 0 && c > dev->drv[info->isdn_driver]->maxbufsize)
  1119. c = dev->drv[info->isdn_driver]->maxbufsize;
  1120. if (c <= 0)
  1121. break;
  1122. if ((info->online > 1)
  1123. #ifdef CONFIG_ISDN_AUDIO
  1124.     || (info->vonline & 3)
  1125. #endif
  1126. ) {
  1127. #ifdef CONFIG_ISDN_AUDIO
  1128. if (!info->vonline)
  1129. #endif
  1130. isdn_tty_check_esc(buf, m->mdmreg[REG_ESC], c,
  1131.    &(m->pluscount),
  1132.    &(m->lastplus),
  1133.    from_user);
  1134. if (from_user)
  1135. copy_from_user(&(info->xmit_buf[info->xmit_count]), buf, c);
  1136. else
  1137. memcpy(&(info->xmit_buf[info->xmit_count]), buf, c);
  1138. #ifdef CONFIG_ISDN_AUDIO
  1139. if (info->vonline) {
  1140. int cc = isdn_tty_handleDLEdown(info, m, c);
  1141. if (info->vonline & 2) {
  1142. if (!cc) {
  1143. /* If DLE decoding results in zero-transmit, but
  1144.  * c originally was non-zero, do a wakeup.
  1145.  */
  1146. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  1147.  tty->ldisc.write_wakeup)
  1148. (tty->ldisc.write_wakeup) (tty);
  1149. wake_up_interruptible(&tty->write_wait);
  1150. info->msr |= UART_MSR_CTS;
  1151. info->lsr |= UART_LSR_TEMT;
  1152. }
  1153. info->xmit_count += cc;
  1154. }
  1155. if ((info->vonline & 3) == 1) {
  1156. /* Do NOT handle Ctrl-Q or Ctrl-S
  1157.  * when in full-duplex audio mode.
  1158.  */
  1159. if (isdn_tty_end_vrx(buf, c, from_user)) {
  1160. info->vonline &= ~1;
  1161. #ifdef ISDN_DEBUG_MODEM_VOICE
  1162. printk(KERN_DEBUG
  1163.        "got !^Q/^S, send DLE-ETX,VCON on ttyI%dn",
  1164.        info->line);
  1165. #endif
  1166. isdn_tty_at_cout("2003rnVCONrn", info);
  1167. }
  1168. }
  1169. } else
  1170. if (TTY_IS_FCLASS1(info)) {
  1171. int cc = isdn_tty_handleDLEdown(info, m, c);
  1172. if (info->vonline & 4) { /* ETX seen */
  1173. isdn_ctrl c;
  1174. c.command = ISDN_CMD_FAXCMD;
  1175. c.driver = info->isdn_driver;
  1176. c.arg = info->isdn_channel;
  1177. c.parm.aux.cmd = ISDN_FAX_CLASS1_CTRL;
  1178. c.parm.aux.subcmd = ETX;
  1179. isdn_command(&c);
  1180. }
  1181. info->vonline = 0;
  1182. #ifdef ISDN_DEBUG_MODEM_VOICE
  1183. printk(KERN_DEBUG "fax dle cc/c %d/%dn", cc, c);
  1184. #endif
  1185. info->xmit_count += cc;
  1186. } else
  1187. #endif
  1188. info->xmit_count += c;
  1189. } else {
  1190. info->msr |= UART_MSR_CTS;
  1191. info->lsr |= UART_LSR_TEMT;
  1192. if (info->dialing) {
  1193. info->dialing = 0;
  1194. #ifdef ISDN_DEBUG_MODEM_HUP
  1195. printk(KERN_DEBUG "Mhup in isdn_tty_writen");
  1196. #endif
  1197. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  1198. isdn_tty_modem_hup(info, 1);
  1199. } else
  1200. c = isdn_tty_edit_at(buf, c, info, from_user);
  1201. }
  1202. buf += c;
  1203. count -= c;
  1204. total += c;
  1205. }
  1206. atomic_dec(&info->xmit_lock);
  1207. if ((info->xmit_count) || (skb_queue_len(&info->xmit_queue))) {
  1208. if (m->mdmreg[REG_DXMT] & BIT_DXMT) {
  1209. isdn_tty_senddown(info);
  1210. isdn_tty_tint(info);
  1211. }
  1212. isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT, 1);
  1213. }
  1214. if (from_user)
  1215. up(&info->write_sem);
  1216. return total;
  1217. }
  1218. static int
  1219. isdn_tty_write_room(struct tty_struct *tty)
  1220. {
  1221. modem_info *info = (modem_info *) tty->driver_data;
  1222. int ret;
  1223. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_write_room"))
  1224. return 0;
  1225. if (!info->online)
  1226. return info->xmit_size;
  1227. ret = info->xmit_size - info->xmit_count;
  1228. return (ret < 0) ? 0 : ret;
  1229. }
  1230. static int
  1231. isdn_tty_chars_in_buffer(struct tty_struct *tty)
  1232. {
  1233. modem_info *info = (modem_info *) tty->driver_data;
  1234. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_chars_in_buffer"))
  1235. return 0;
  1236. if (!info->online)
  1237. return 0;
  1238. return (info->xmit_count);
  1239. }
  1240. static void
  1241. isdn_tty_flush_buffer(struct tty_struct *tty)
  1242. {
  1243. modem_info *info;
  1244. unsigned long flags;
  1245. save_flags(flags);
  1246. cli();
  1247. if (!tty) {
  1248. restore_flags(flags);
  1249. return;
  1250. }
  1251. info = (modem_info *) tty->driver_data;
  1252. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_flush_buffer")) {
  1253. restore_flags(flags);
  1254. return;
  1255. }
  1256. isdn_tty_cleanup_xmit(info);
  1257. info->xmit_count = 0;
  1258. restore_flags(flags);
  1259. wake_up_interruptible(&tty->write_wait);
  1260. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  1261.     tty->ldisc.write_wakeup)
  1262. (tty->ldisc.write_wakeup) (tty);
  1263. }
  1264. static void
  1265. isdn_tty_flush_chars(struct tty_struct *tty)
  1266. {
  1267. modem_info *info = (modem_info *) tty->driver_data;
  1268. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_flush_chars"))
  1269. return;
  1270. if ((info->xmit_count) || (skb_queue_len(&info->xmit_queue)))
  1271. isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT, 1);
  1272. }
  1273. /*
  1274.  * ------------------------------------------------------------
  1275.  * isdn_tty_throttle()
  1276.  *
  1277.  * This routine is called by the upper-layer tty layer to signal that
  1278.  * incoming characters should be throttled.
  1279.  * ------------------------------------------------------------
  1280.  */
  1281. static void
  1282. isdn_tty_throttle(struct tty_struct *tty)
  1283. {
  1284. modem_info *info = (modem_info *) tty->driver_data;
  1285. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_throttle"))
  1286. return;
  1287. if (I_IXOFF(tty))
  1288. info->x_char = STOP_CHAR(tty);
  1289. info->mcr &= ~UART_MCR_RTS;
  1290. }
  1291. static void
  1292. isdn_tty_unthrottle(struct tty_struct *tty)
  1293. {
  1294. modem_info *info = (modem_info *) tty->driver_data;
  1295. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_unthrottle"))
  1296. return;
  1297. if (I_IXOFF(tty)) {
  1298. if (info->x_char)
  1299. info->x_char = 0;
  1300. else
  1301. info->x_char = START_CHAR(tty);
  1302. }
  1303. info->mcr |= UART_MCR_RTS;
  1304. }
  1305. /*
  1306.  * ------------------------------------------------------------
  1307.  * isdn_tty_ioctl() and friends
  1308.  * ------------------------------------------------------------
  1309.  */
  1310. /*
  1311.  * isdn_tty_get_lsr_info - get line status register info
  1312.  *
  1313.  * Purpose: Let user call ioctl() to get info when the UART physically
  1314.  *          is emptied.  On bus types like RS485, the transmitter must
  1315.  *          release the bus after transmitting. This must be done when
  1316.  *          the transmit shift register is empty, not be done when the
  1317.  *          transmit holding register is empty.  This functionality
  1318.  *          allows RS485 driver to be written in user space.
  1319.  */
  1320. static int
  1321. isdn_tty_get_lsr_info(modem_info * info, uint * value)
  1322. {
  1323. u_char status;
  1324. uint result;
  1325. ulong flags;
  1326. save_flags(flags);
  1327. cli();
  1328. status = info->lsr;
  1329. restore_flags(flags);
  1330. result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
  1331. return put_user(result, (uint *) value);
  1332. }
  1333. static int
  1334. isdn_tty_get_modem_info(modem_info * info, uint * value)
  1335. {
  1336. u_char control,
  1337.  status;
  1338. uint result;
  1339. ulong flags;
  1340. control = info->mcr;
  1341. save_flags(flags);
  1342. cli();
  1343. status = info->msr;
  1344. restore_flags(flags);
  1345. result = ((control & UART_MCR_RTS) ? TIOCM_RTS : 0)
  1346.     | ((control & UART_MCR_DTR) ? TIOCM_DTR : 0)
  1347.     | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0)
  1348.     | ((status & UART_MSR_RI) ? TIOCM_RNG : 0)
  1349.     | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0)
  1350.     | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
  1351. return put_user(result, (uint *) value);
  1352. }
  1353. static int
  1354. isdn_tty_set_modem_info(modem_info * info, uint cmd, uint * value)
  1355. {
  1356. uint arg;
  1357. int pre_dtr;
  1358. if (get_user(arg, (uint *) value))
  1359. return -EFAULT;
  1360. switch (cmd) {
  1361. case TIOCMBIS:
  1362. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1363. printk(KERN_DEBUG "ttyI%d ioctl TIOCMBISn", info->line);
  1364. #endif
  1365. if (arg & TIOCM_RTS) {
  1366. info->mcr |= UART_MCR_RTS;
  1367. }
  1368. if (arg & TIOCM_DTR) {
  1369. info->mcr |= UART_MCR_DTR;
  1370. isdn_tty_modem_ncarrier(info);
  1371. }
  1372. break;
  1373. case TIOCMBIC:
  1374. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1375. printk(KERN_DEBUG "ttyI%d ioctl TIOCMBICn", info->line);
  1376. #endif
  1377. if (arg & TIOCM_RTS) {
  1378. info->mcr &= ~UART_MCR_RTS;
  1379. }
  1380. if (arg & TIOCM_DTR) {
  1381. info->mcr &= ~UART_MCR_DTR;
  1382. if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
  1383. isdn_tty_modem_reset_regs(info, 0);
  1384. #ifdef ISDN_DEBUG_MODEM_HUP
  1385. printk(KERN_DEBUG "Mhup in TIOCMBICn");
  1386. #endif
  1387. if (info->online)
  1388. info->ncarrier = 1;
  1389. isdn_tty_modem_hup(info, 1);
  1390. }
  1391. }
  1392. break;
  1393. case TIOCMSET:
  1394. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1395. printk(KERN_DEBUG "ttyI%d ioctl TIOCMSETn", info->line);
  1396. #endif
  1397. pre_dtr = (info->mcr & UART_MCR_DTR);
  1398. info->mcr = ((info->mcr & ~(UART_MCR_RTS | UART_MCR_DTR))
  1399.  | ((arg & TIOCM_RTS) ? UART_MCR_RTS : 0)
  1400.        | ((arg & TIOCM_DTR) ? UART_MCR_DTR : 0));
  1401. if (pre_dtr |= (info->mcr & UART_MCR_DTR)) {
  1402. if (!(info->mcr & UART_MCR_DTR)) {
  1403. if (info->emu.mdmreg[REG_DTRHUP] & BIT_DTRHUP) {
  1404. isdn_tty_modem_reset_regs(info, 0);
  1405. #ifdef ISDN_DEBUG_MODEM_HUP
  1406. printk(KERN_DEBUG "Mhup in TIOCMSETn");
  1407. #endif
  1408. if (info->online)
  1409. info->ncarrier = 1;
  1410. isdn_tty_modem_hup(info, 1);
  1411. }
  1412. } else
  1413. isdn_tty_modem_ncarrier(info);
  1414. }
  1415. break;
  1416. default:
  1417. return -EINVAL;
  1418. }
  1419. return 0;
  1420. }
  1421. static int
  1422. isdn_tty_ioctl(struct tty_struct *tty, struct file *file,
  1423.        uint cmd, ulong arg)
  1424. {
  1425. modem_info *info = (modem_info *) tty->driver_data;
  1426. int retval;
  1427. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_ioctl"))
  1428. return -ENODEV;
  1429. if (tty->flags & (1 << TTY_IO_ERROR))
  1430. return -EIO;
  1431. switch (cmd) {
  1432. case TCSBRK:   /* SVID version: non-zero arg --> no break */
  1433. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1434. printk(KERN_DEBUG "ttyI%d ioctl TCSBRKn", info->line);
  1435. #endif
  1436. 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() */
  1442. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1443. printk(KERN_DEBUG "ttyI%d ioctl TCSBRKPn", info->line);
  1444. #endif
  1445. retval = tty_check_change(tty);
  1446. if (retval)
  1447. return retval;
  1448. tty_wait_until_sent(tty, 0);
  1449. return 0;
  1450. case TIOCGSOFTCAR:
  1451. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1452. printk(KERN_DEBUG "ttyI%d ioctl TIOCGSOFTCARn", info->line);
  1453. #endif
  1454. return put_user(C_CLOCAL(tty) ? 1 : 0, (ulong *) arg);
  1455. case TIOCSSOFTCAR:
  1456. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1457. printk(KERN_DEBUG "ttyI%d ioctl TIOCSSOFTCARn", info->line);
  1458. #endif
  1459. if (get_user(arg, (ulong *) arg))
  1460. return -EFAULT;
  1461. tty->termios->c_cflag =
  1462.     ((tty->termios->c_cflag & ~CLOCAL) |
  1463.      (arg ? CLOCAL : 0));
  1464. return 0;
  1465. case TIOCMGET:
  1466. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1467. printk(KERN_DEBUG "ttyI%d ioctl TIOCMGETn", info->line);
  1468. #endif
  1469. return isdn_tty_get_modem_info(info, (uint *) arg);
  1470. case TIOCMBIS:
  1471. case TIOCMBIC:
  1472. case TIOCMSET:
  1473. return isdn_tty_set_modem_info(info, cmd, (uint *) arg);
  1474. case TIOCSERGETLSR: /* Get line status register */
  1475. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1476. printk(KERN_DEBUG "ttyI%d ioctl TIOCSERGETLSRn", info->line);
  1477. #endif
  1478. return isdn_tty_get_lsr_info(info, (uint *) arg);
  1479. default:
  1480. #ifdef ISDN_DEBUG_MODEM_IOCTL
  1481. printk(KERN_DEBUG "UNKNOWN ioctl 0x%08x on ttyi%dn", cmd, info->line);
  1482. #endif
  1483. return -ENOIOCTLCMD;
  1484. }
  1485. return 0;
  1486. }
  1487. static void
  1488. isdn_tty_set_termios(struct tty_struct *tty, struct termios *old_termios)
  1489. {
  1490. modem_info *info = (modem_info *) tty->driver_data;
  1491. if (!old_termios)
  1492. isdn_tty_change_speed(info);
  1493. else {
  1494. if (tty->termios->c_cflag == old_termios->c_cflag)
  1495. return;
  1496. isdn_tty_change_speed(info);
  1497. if ((old_termios->c_cflag & CRTSCTS) &&
  1498.     !(tty->termios->c_cflag & CRTSCTS)) {
  1499. tty->hw_stopped = 0;
  1500. }
  1501. }
  1502. }
  1503. /*
  1504.  * ------------------------------------------------------------
  1505.  * isdn_tty_open() and friends
  1506.  * ------------------------------------------------------------
  1507.  */
  1508. static int
  1509. isdn_tty_block_til_ready(struct tty_struct *tty, struct file *filp, modem_info * info)
  1510. {
  1511. DECLARE_WAITQUEUE(wait, NULL);
  1512. int do_clocal = 0;
  1513. unsigned long flags;
  1514. int retval;
  1515. /*
  1516.  * If the device is in the middle of being closed, then block
  1517.  * until it's done, and then try again.
  1518.  */
  1519. if (tty_hung_up_p(filp) ||
  1520.     (info->flags & ISDN_ASYNC_CLOSING)) {
  1521. if (info->flags & ISDN_ASYNC_CLOSING)
  1522. interruptible_sleep_on(&info->close_wait);
  1523. #ifdef MODEM_DO_RESTART
  1524. if (info->flags & ISDN_ASYNC_HUP_NOTIFY)
  1525. return -EAGAIN;
  1526. else
  1527. return -ERESTARTSYS;
  1528. #else
  1529. return -EAGAIN;
  1530. #endif
  1531. }
  1532. /*
  1533.  * If this is a callout device, then just make sure the normal
  1534.  * device isn't being used.
  1535.  */
  1536. if (tty->driver.subtype == ISDN_SERIAL_TYPE_CALLOUT) {
  1537. if (info->flags & ISDN_ASYNC_NORMAL_ACTIVE)
  1538. return -EBUSY;
  1539. if ((info->flags & ISDN_ASYNC_CALLOUT_ACTIVE) &&
  1540.     (info->flags & ISDN_ASYNC_SESSION_LOCKOUT) &&
  1541.     (info->session != current->session))
  1542. return -EBUSY;
  1543. if ((info->flags & ISDN_ASYNC_CALLOUT_ACTIVE) &&
  1544.     (info->flags & ISDN_ASYNC_PGRP_LOCKOUT) &&
  1545.     (info->pgrp != current->pgrp))
  1546. return -EBUSY;
  1547. info->flags |= ISDN_ASYNC_CALLOUT_ACTIVE;
  1548. return 0;
  1549. }
  1550. /*
  1551.  * If non-blocking mode is set, then make the check up front
  1552.  * and then exit.
  1553.  */
  1554. if ((filp->f_flags & O_NONBLOCK) ||
  1555.     (tty->flags & (1 << TTY_IO_ERROR))) {
  1556. if (info->flags & ISDN_ASYNC_CALLOUT_ACTIVE)
  1557. return -EBUSY;
  1558. info->flags |= ISDN_ASYNC_NORMAL_ACTIVE;
  1559. return 0;
  1560. }
  1561. if (info->flags & ISDN_ASYNC_CALLOUT_ACTIVE) {
  1562. if (info->normal_termios.c_cflag & CLOCAL)
  1563. do_clocal = 1;
  1564. } else {
  1565. if (tty->termios->c_cflag & CLOCAL)
  1566. do_clocal = 1;
  1567. }
  1568. /*
  1569.  * Block waiting for the carrier detect and the line to become
  1570.  * free (i.e., not in use by the callout).  While we are in
  1571.  * this loop, info->count is dropped by one, so that
  1572.  * isdn_tty_close() knows when to free things.  We restore it upon
  1573.  * exit, either normal or abnormal.
  1574.  */
  1575. retval = 0;
  1576. add_wait_queue(&info->open_wait, &wait);
  1577. #ifdef ISDN_DEBUG_MODEM_OPEN
  1578. printk(KERN_DEBUG "isdn_tty_block_til_ready before block: ttyi%d, count = %dn",
  1579.        info->line, info->count);
  1580. #endif
  1581. save_flags(flags);
  1582. cli();
  1583. if (!(tty_hung_up_p(filp)))
  1584. info->count--;
  1585. restore_flags(flags);
  1586. info->blocked_open++;
  1587. while (1) {
  1588. set_current_state(TASK_INTERRUPTIBLE);
  1589. if (tty_hung_up_p(filp) ||
  1590.     !(info->flags & ISDN_ASYNC_INITIALIZED)) {
  1591. #ifdef MODEM_DO_RESTART
  1592. if (info->flags & ISDN_ASYNC_HUP_NOTIFY)
  1593. retval = -EAGAIN;
  1594. else
  1595. retval = -ERESTARTSYS;
  1596. #else
  1597. retval = -EAGAIN;
  1598. #endif
  1599. break;
  1600. }
  1601. if (!(info->flags & ISDN_ASYNC_CALLOUT_ACTIVE) &&
  1602.     !(info->flags & ISDN_ASYNC_CLOSING) &&
  1603.     (do_clocal || (info->msr & UART_MSR_DCD))) {
  1604. break;
  1605. }
  1606. if (signal_pending(current)) {
  1607. retval = -ERESTARTSYS;
  1608. break;
  1609. }
  1610. #ifdef ISDN_DEBUG_MODEM_OPEN
  1611. printk(KERN_DEBUG "isdn_tty_block_til_ready blocking: ttyi%d, count = %dn",
  1612.        info->line, info->count);
  1613. #endif
  1614. schedule();
  1615. }
  1616. current->state = TASK_RUNNING;
  1617. remove_wait_queue(&info->open_wait, &wait);
  1618. if (!tty_hung_up_p(filp))
  1619. info->count++;
  1620. info->blocked_open--;
  1621. #ifdef ISDN_DEBUG_MODEM_OPEN
  1622. printk(KERN_DEBUG "isdn_tty_block_til_ready after blocking: ttyi%d, count = %dn",
  1623.        info->line, info->count);
  1624. #endif
  1625. if (retval)
  1626. return retval;
  1627. info->flags |= ISDN_ASYNC_NORMAL_ACTIVE;
  1628. return 0;
  1629. }
  1630. /*
  1631.  * This routine is called whenever a serial port is opened.  It
  1632.  * enables interrupts for a serial port, linking in its async structure into
  1633.  * the IRQ chain.   It also performs the serial-specific
  1634.  * initialization for the tty structure.
  1635.  */
  1636. static int
  1637. isdn_tty_open(struct tty_struct *tty, struct file *filp)
  1638. {
  1639. modem_info *info;
  1640. int retval,
  1641.  line;
  1642. line = MINOR(tty->device) - tty->driver.minor_start;
  1643. if (line < 0 || line > ISDN_MAX_CHANNELS)
  1644. return -ENODEV;
  1645. info = &dev->mdm.info[line];
  1646. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_open"))
  1647. return -ENODEV;
  1648. #ifdef ISDN_DEBUG_MODEM_OPEN
  1649. printk(KERN_DEBUG "isdn_tty_open %s%d, count = %dn", tty->driver.name,
  1650.        info->line, info->count);
  1651. #endif
  1652. info->count++;
  1653. tty->driver_data = info;
  1654. info->tty = tty;
  1655. /*
  1656.  * Start up serial port
  1657.  */
  1658. retval = isdn_tty_startup(info);
  1659. if (retval) {
  1660. #ifdef ISDN_DEBUG_MODEM_OPEN
  1661. printk(KERN_DEBUG "isdn_tty_open return after startupn");
  1662. #endif
  1663. return retval;
  1664. }
  1665. retval = isdn_tty_block_til_ready(tty, filp, info);
  1666. if (retval) {
  1667. #ifdef ISDN_DEBUG_MODEM_OPEN
  1668. printk(KERN_DEBUG "isdn_tty_open return after isdn_tty_block_til_ready n");
  1669. #endif
  1670. return retval;
  1671. }
  1672. if ((info->count == 1) && (info->flags & ISDN_ASYNC_SPLIT_TERMIOS)) {
  1673. if (tty->driver.subtype == ISDN_SERIAL_TYPE_NORMAL)
  1674. *tty->termios = info->normal_termios;
  1675. else
  1676. *tty->termios = info->callout_termios;
  1677. isdn_tty_change_speed(info);
  1678. }
  1679. info->session = current->session;
  1680. info->pgrp = current->pgrp;
  1681. #ifdef ISDN_DEBUG_MODEM_OPEN
  1682. printk(KERN_DEBUG "isdn_tty_open ttyi%d successful...n", info->line);
  1683. #endif
  1684. dev->modempoll++;
  1685. #ifdef ISDN_DEBUG_MODEM_OPEN
  1686. printk(KERN_DEBUG "isdn_tty_open normal exitn");
  1687. #endif
  1688. return 0;
  1689. }
  1690. static void
  1691. isdn_tty_close(struct tty_struct *tty, struct file *filp)
  1692. {
  1693. modem_info *info = (modem_info *) tty->driver_data;
  1694. ulong flags;
  1695. ulong timeout;
  1696. if (!info || isdn_tty_paranoia_check(info, tty->device, "isdn_tty_close"))
  1697. return;
  1698. save_flags(flags);
  1699. cli();
  1700. if (tty_hung_up_p(filp)) {
  1701. restore_flags(flags);
  1702. #ifdef ISDN_DEBUG_MODEM_OPEN
  1703. printk(KERN_DEBUG "isdn_tty_close return after tty_hung_up_pn");
  1704. #endif
  1705. return;
  1706. }
  1707. if ((tty->count == 1) && (info->count != 1)) {
  1708. /*
  1709.  * Uh, oh.  tty->count is 1, which means that the tty
  1710.  * structure will be freed.  Info->count should always
  1711.  * be one in these conditions.  If it's greater than
  1712.  * one, we've got real problems, since it means the
  1713.  * serial port won't be shutdown.
  1714.  */
  1715. printk(KERN_ERR "isdn_tty_close: bad port count; tty->count is 1, "
  1716.        "info->count is %dn", info->count);
  1717. info->count = 1;
  1718. }
  1719. if (--info->count < 0) {
  1720. printk(KERN_ERR "isdn_tty_close: bad port count for ttyi%d: %dn",
  1721.        info->line, info->count);
  1722. info->count = 0;
  1723. }
  1724. if (info->count) {
  1725. restore_flags(flags);
  1726. #ifdef ISDN_DEBUG_MODEM_OPEN
  1727. printk(KERN_DEBUG "isdn_tty_close after info->count != 0n");
  1728. #endif
  1729. return;
  1730. }
  1731. info->flags |= ISDN_ASYNC_CLOSING;
  1732. /*
  1733.  * Save the termios structure, since this port may have
  1734.  * separate termios for callout and dialin.
  1735.  */
  1736. if (info->flags & ISDN_ASYNC_NORMAL_ACTIVE)
  1737. info->normal_termios = *tty->termios;
  1738. if (info->flags & ISDN_ASYNC_CALLOUT_ACTIVE)
  1739. info->callout_termios = *tty->termios;
  1740. tty->closing = 1;
  1741. /*
  1742.  * At this point we stop accepting input.  To do this, we
  1743.  * disable the receive line status interrupts, and tell the
  1744.  * interrupt driver to stop checking the data ready bit in the
  1745.  * line status register.
  1746.  */
  1747. if (info->flags & ISDN_ASYNC_INITIALIZED) {
  1748. tty_wait_until_sent(tty, 3000); /* 30 seconds timeout */
  1749. /*
  1750.  * Before we drop DTR, make sure the UART transmitter
  1751.  * has completely drained; this is especially
  1752.  * important if there is a transmit FIFO!
  1753.  */
  1754. timeout = jiffies + HZ;
  1755. while (!(info->lsr & UART_LSR_TEMT)) {
  1756. set_current_state(TASK_INTERRUPTIBLE);
  1757. schedule_timeout(20);
  1758. if (time_after(jiffies,timeout))
  1759. break;
  1760. }
  1761. }
  1762. dev->modempoll--;
  1763. isdn_tty_shutdown(info);
  1764. if (tty->driver.flush_buffer)
  1765. tty->driver.flush_buffer(tty);
  1766. if (tty->ldisc.flush_buffer)
  1767. tty->ldisc.flush_buffer(tty);
  1768. info->tty = 0;
  1769. info->ncarrier = 0;
  1770. tty->closing = 0;
  1771. if (info->blocked_open) {
  1772. set_current_state(TASK_INTERRUPTIBLE);
  1773. schedule_timeout(50);
  1774. wake_up_interruptible(&info->open_wait);
  1775. }
  1776. info->flags &= ~(ISDN_ASYNC_NORMAL_ACTIVE | ISDN_ASYNC_CALLOUT_ACTIVE |
  1777.  ISDN_ASYNC_CLOSING);
  1778. wake_up_interruptible(&info->close_wait);
  1779. restore_flags(flags);
  1780. #ifdef ISDN_DEBUG_MODEM_OPEN
  1781. printk(KERN_DEBUG "isdn_tty_close normal exitn");
  1782. #endif
  1783. }
  1784. /*
  1785.  * isdn_tty_hangup() --- called by tty_hangup() when a hangup is signaled.
  1786.  */
  1787. static void
  1788. isdn_tty_hangup(struct tty_struct *tty)
  1789. {
  1790. modem_info *info = (modem_info *) tty->driver_data;
  1791. if (isdn_tty_paranoia_check(info, tty->device, "isdn_tty_hangup"))
  1792. return;
  1793. isdn_tty_shutdown(info);
  1794. info->count = 0;
  1795. info->flags &= ~(ISDN_ASYNC_NORMAL_ACTIVE | ISDN_ASYNC_CALLOUT_ACTIVE);
  1796. info->tty = 0;
  1797. wake_up_interruptible(&info->open_wait);
  1798. }
  1799. /* This routine initializes all emulator-data.
  1800.  */
  1801. static void
  1802. isdn_tty_reset_profile(atemu * m)
  1803. {
  1804. m->profile[0] = 0;
  1805. m->profile[1] = 0;
  1806. m->profile[2] = 43;
  1807. m->profile[3] = 13;
  1808. m->profile[4] = 10;
  1809. m->profile[5] = 8;
  1810. m->profile[6] = 3;
  1811. m->profile[7] = 60;
  1812. m->profile[8] = 2;
  1813. m->profile[9] = 6;
  1814. m->profile[10] = 7;
  1815. m->profile[11] = 70;
  1816. m->profile[12] = 0x45;
  1817. m->profile[13] = 4;
  1818. m->profile[14] = ISDN_PROTO_L2_X75I;
  1819. m->profile[15] = ISDN_PROTO_L3_TRANS;
  1820. m->profile[16] = ISDN_SERIAL_XMIT_SIZE / 16;
  1821. m->profile[17] = ISDN_MODEM_WINSIZE;
  1822. m->profile[18] = 4;
  1823. m->profile[19] = 0;
  1824. m->profile[20] = 0;
  1825. m->profile[23] = 0;
  1826. m->pmsn[0] = '';
  1827. m->plmsn[0] = '';
  1828. }
  1829. #ifdef CONFIG_ISDN_AUDIO
  1830. static void
  1831. isdn_tty_modem_reset_vpar(atemu * m)
  1832. {
  1833. m->vpar[0] = 2;         /* Voice-device            (2 = phone line) */
  1834. m->vpar[1] = 0;         /* Silence detection level (0 = none      ) */
  1835. m->vpar[2] = 70;        /* Silence interval        (7 sec.        ) */
  1836. m->vpar[3] = 2;         /* Compression type        (1 = ADPCM-2   ) */
  1837. m->vpar[4] = 0;         /* DTMF detection level    (0 = softcode  ) */
  1838. m->vpar[5] = 8;         /* DTMF interval           (8 * 5 ms.     ) */
  1839. }
  1840. #endif
  1841. #ifdef CONFIG_ISDN_TTY_FAX
  1842. static void
  1843. isdn_tty_modem_reset_faxpar(modem_info * info)
  1844. {
  1845. T30_s *f = info->fax;
  1846. f->code = 0;
  1847. f->phase = ISDN_FAX_PHASE_IDLE;
  1848. f->direction = 0;
  1849. f->resolution = 1; /* fine */
  1850. f->rate = 5; /* 14400 bit/s */
  1851. f->width = 0;
  1852. f->length = 0;
  1853. f->compression = 0;
  1854. f->ecm = 0;
  1855. f->binary = 0;
  1856. f->scantime = 0;
  1857. memset(&f->id[0], 32, FAXIDLEN - 1);
  1858. f->id[FAXIDLEN - 1] = 0;
  1859. f->badlin = 0;
  1860. f->badmul = 0;
  1861. f->bor = 0;
  1862. f->nbc = 0;
  1863. f->cq = 0;
  1864. f->cr = 0;
  1865. f->ctcrty = 0;
  1866. f->minsp = 0;
  1867. f->phcto = 30;
  1868. f->rel = 0;
  1869. memset(&f->pollid[0], 32, FAXIDLEN - 1);
  1870. f->pollid[FAXIDLEN - 1] = 0;
  1871. }
  1872. #endif
  1873. static void
  1874. isdn_tty_modem_reset_regs(modem_info * info, int force)
  1875. {
  1876. atemu *m = &info->emu;
  1877. if ((m->mdmreg[REG_DTRR] & BIT_DTRR) || force) {
  1878. memcpy(m->mdmreg, m->profile, ISDN_MODEM_NUMREG);
  1879. memcpy(m->msn, m->pmsn, ISDN_MSNLEN);
  1880. memcpy(m->lmsn, m->plmsn, ISDN_LMSNLEN);
  1881. info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
  1882. }
  1883. #ifdef CONFIG_ISDN_AUDIO
  1884. isdn_tty_modem_reset_vpar(m);
  1885. #endif
  1886. #ifdef CONFIG_ISDN_TTY_FAX
  1887. isdn_tty_modem_reset_faxpar(info);
  1888. #endif
  1889. m->mdmcmdl = 0;
  1890. }
  1891. static void
  1892. modem_write_profile(atemu * m)
  1893. {
  1894. memcpy(m->profile, m->mdmreg, ISDN_MODEM_NUMREG);
  1895. memcpy(m->pmsn, m->msn, ISDN_MSNLEN);
  1896. memcpy(m->plmsn, m->lmsn, ISDN_LMSNLEN);
  1897. if (dev->profd)
  1898. send_sig(SIGIO, dev->profd, 1);
  1899. }
  1900. int
  1901. isdn_tty_modem_init(void)
  1902. {
  1903. modem *m;
  1904. int i;
  1905. modem_info *info;
  1906. m = &dev->mdm;
  1907. memset(&m->tty_modem, 0, sizeof(struct tty_driver));
  1908. m->tty_modem.magic = TTY_DRIVER_MAGIC;
  1909. m->tty_modem.name = isdn_ttyname_ttyI;
  1910. m->tty_modem.major = ISDN_TTY_MAJOR;
  1911. m->tty_modem.minor_start = 0;
  1912. m->tty_modem.num = ISDN_MAX_CHANNELS;
  1913. m->tty_modem.type = TTY_DRIVER_TYPE_SERIAL;
  1914. m->tty_modem.subtype = ISDN_SERIAL_TYPE_NORMAL;
  1915. m->tty_modem.init_termios = tty_std_termios;
  1916. m->tty_modem.init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
  1917. m->tty_modem.flags = TTY_DRIVER_REAL_RAW;
  1918. m->tty_modem.refcount = &m->refcount;
  1919. m->tty_modem.table = m->modem_table;
  1920. m->tty_modem.termios = m->modem_termios;
  1921. m->tty_modem.termios_locked = m->modem_termios_locked;
  1922. m->tty_modem.open = isdn_tty_open;
  1923. m->tty_modem.close = isdn_tty_close;
  1924. m->tty_modem.write = isdn_tty_write;
  1925. m->tty_modem.put_char = NULL;
  1926. m->tty_modem.flush_chars = isdn_tty_flush_chars;
  1927. m->tty_modem.write_room = isdn_tty_write_room;
  1928. m->tty_modem.chars_in_buffer = isdn_tty_chars_in_buffer;
  1929. m->tty_modem.flush_buffer = isdn_tty_flush_buffer;
  1930. m->tty_modem.ioctl = isdn_tty_ioctl;
  1931. m->tty_modem.throttle = isdn_tty_throttle;
  1932. m->tty_modem.unthrottle = isdn_tty_unthrottle;
  1933. m->tty_modem.set_termios = isdn_tty_set_termios;
  1934. m->tty_modem.stop = NULL;
  1935. m->tty_modem.start = NULL;
  1936. m->tty_modem.hangup = isdn_tty_hangup;
  1937. m->tty_modem.driver_name = "isdn_tty";
  1938. /*
  1939.  * The callout device is just like normal device except for
  1940.  * major number and the subtype code.
  1941.  */
  1942. m->cua_modem = m->tty_modem;
  1943. m->cua_modem.name = isdn_ttyname_cui;
  1944. m->cua_modem.major = ISDN_TTYAUX_MAJOR;
  1945. m->tty_modem.minor_start = 0;
  1946. m->cua_modem.subtype = ISDN_SERIAL_TYPE_CALLOUT;
  1947. if (tty_register_driver(&m->tty_modem)) {
  1948. printk(KERN_WARNING "isdn_tty: Couldn't register modem-devicen");
  1949. return -1;
  1950. }
  1951. if (tty_register_driver(&m->cua_modem)) {
  1952. printk(KERN_WARNING "isdn_tty: Couldn't register modem-callout-devicen");
  1953. return -2;
  1954. }
  1955. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  1956. info = &m->info[i];
  1957. #ifdef CONFIG_ISDN_TTY_FAX
  1958. if (!(info->fax = kmalloc(sizeof(T30_s), GFP_KERNEL))) {
  1959. printk(KERN_ERR "Could not allocate fax t30-buffern");
  1960. return -3;
  1961. }
  1962. #endif
  1963. init_MUTEX(&info->write_sem);
  1964. sprintf(info->last_cause, "0000");
  1965. sprintf(info->last_num, "none");
  1966. info->last_dir = 0;
  1967. info->last_lhup = 1;
  1968. info->last_l2 = -1;
  1969. info->last_si = 0;
  1970. isdn_tty_reset_profile(&info->emu);
  1971. isdn_tty_modem_reset_regs(info, 1);
  1972. info->magic = ISDN_ASYNC_MAGIC;
  1973. info->line = i;
  1974. info->tty = 0;
  1975. info->x_char = 0;
  1976. info->count = 0;
  1977. info->blocked_open = 0;
  1978. info->callout_termios = m->cua_modem.init_termios;
  1979. info->normal_termios = m->tty_modem.init_termios;
  1980. init_waitqueue_head(&info->open_wait);
  1981. init_waitqueue_head(&info->close_wait);
  1982. info->isdn_driver = -1;
  1983. info->isdn_channel = -1;
  1984. info->drv_index = -1;
  1985. info->xmit_size = ISDN_SERIAL_XMIT_SIZE;
  1986. skb_queue_head_init(&info->xmit_queue);
  1987. #ifdef CONFIG_ISDN_AUDIO
  1988. skb_queue_head_init(&info->dtmf_queue);
  1989. #endif
  1990. if (!(info->xmit_buf = kmalloc(ISDN_SERIAL_XMIT_MAX + 5, GFP_KERNEL))) {
  1991. printk(KERN_ERR "Could not allocate modem xmit-buffern");
  1992. return -3;
  1993. }
  1994. /* Make room for T.70 header */
  1995. info->xmit_buf += 4;
  1996. }
  1997. return 0;
  1998. }
  1999. /*
  2000.  * isdn_tty_match_icall(char *MSN, atemu *tty_emulator, int dev_idx)
  2001.  *      match the MSN against the MSNs (glob patterns) defined for tty_emulator,
  2002.  *      and return 0 for match, 1 for no match, 2 if MSN could match if longer.
  2003.  */
  2004. static int
  2005. isdn_tty_match_icall(char *cid, atemu *emu, int di)
  2006. {
  2007. #ifdef ISDN_DEBUG_MODEM_ICALL
  2008. printk(KERN_DEBUG "m_fi: msn=%s lmsn=%s mmsn=%s mreg[SI1]=%d mreg[SI2]=%dn",
  2009.        emu->msn, emu->lmsn, isdn_map_eaz2msn(emu->msn, di),
  2010.        emu->mdmreg[REG_SI1], emu->mdmreg[REG_SI2]);
  2011. #endif
  2012. if (strlen(emu->lmsn)) {
  2013. char *p = emu->lmsn;
  2014. char *q;
  2015. int  tmp;
  2016. int  ret = 0;
  2017. while (1) {
  2018. if ((q = strchr(p, ';')))
  2019. *q = '';
  2020. if ((tmp = isdn_msncmp(cid, isdn_map_eaz2msn(p, di))) > ret)
  2021. ret = tmp;
  2022. #ifdef ISDN_DEBUG_MODEM_ICALL
  2023. printk(KERN_DEBUG "m_fi: lmsnX=%s mmsn=%s -> tmp=%dn",
  2024.        p, isdn_map_eaz2msn(emu->msn, di), tmp);
  2025. #endif
  2026. if (q) {
  2027. *q = ';';
  2028. p = q;
  2029. p++;
  2030. }
  2031. if (!tmp)
  2032. return 0;
  2033. if (!q)
  2034. break;
  2035. }
  2036. return ret;
  2037. } else {
  2038. int tmp;
  2039. tmp = isdn_msncmp(cid, isdn_map_eaz2msn(emu->msn, di));
  2040. #ifdef ISDN_DEBUG_MODEM_ICALL
  2041. printk(KERN_DEBUG "m_fi: mmsn=%s -> tmp=%dn",
  2042.        isdn_map_eaz2msn(emu->msn, di), tmp);
  2043. #endif
  2044. return tmp;
  2045. }
  2046. }
  2047. /*
  2048.  * An incoming call-request has arrived.
  2049.  * Search the tty-devices for an appropriate device and bind
  2050.  * it to the ISDN-Channel.
  2051.  * Return:
  2052.  *
  2053.  *  0 = No matching device found.
  2054.  *  1 = A matching device found.
  2055.  *  3 = No match found, but eventually would match, if
  2056.  *      CID is longer.
  2057.  */
  2058. int
  2059. isdn_tty_find_icall(int di, int ch, setup_parm *setup)
  2060. {
  2061. char *eaz;
  2062. int i;
  2063. int wret;
  2064. int idx;
  2065. int si1;
  2066. int si2;
  2067. char *nr;
  2068. ulong flags;
  2069. if (!setup->phone[0]) {
  2070. nr = "0";
  2071. printk(KERN_INFO "isdn_tty: Incoming call without OAD, assuming '0'n");
  2072. } else
  2073. nr = setup->phone;
  2074. si1 = (int) setup->si1;
  2075. si2 = (int) setup->si2;
  2076. if (!setup->eazmsn[0]) {
  2077. printk(KERN_WARNING "isdn_tty: Incoming call without CPN, assuming '0'n");
  2078. eaz = "0";
  2079. } else
  2080. eaz = setup->eazmsn;
  2081. #ifdef ISDN_DEBUG_MODEM_ICALL
  2082. printk(KERN_DEBUG "m_fi: eaz=%s si1=%d si2=%dn", eaz, si1, si2);
  2083. #endif
  2084. wret = 0;
  2085. save_flags(flags);
  2086. cli();
  2087. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  2088. modem_info *info = &dev->mdm.info[i];
  2089.                 if (info->count == 0)
  2090.                     continue;
  2091. if ((info->emu.mdmreg[REG_SI1] & si2bit[si1]) &&  /* SI1 is matching */
  2092.     (info->emu.mdmreg[REG_SI2] == si2)) {         /* SI2 is matching */
  2093. idx = isdn_dc2minor(di, ch);
  2094. #ifdef ISDN_DEBUG_MODEM_ICALL
  2095. printk(KERN_DEBUG "m_fi: match1 wret=%dn", wret);
  2096. printk(KERN_DEBUG "m_fi: idx=%d flags=%08lx drv=%d ch=%d usg=%dn", idx,
  2097.        info->flags, info->isdn_driver, info->isdn_channel,
  2098.        dev->usage[idx]);
  2099. #endif
  2100. if (
  2101. #ifndef FIX_FILE_TRANSFER
  2102. (info->flags & ISDN_ASYNC_NORMAL_ACTIVE) &&
  2103. #endif
  2104. (info->isdn_driver == -1) &&
  2105. (info->isdn_channel == -1) &&
  2106. (USG_NONE(dev->usage[idx]))) {
  2107. int matchret;
  2108. if ((matchret = isdn_tty_match_icall(eaz, &info->emu, di)) > wret)
  2109. wret = matchret;
  2110. if (!matchret) {                  /* EAZ is matching */
  2111. info->isdn_driver = di;
  2112. info->isdn_channel = ch;
  2113. info->drv_index = idx;
  2114. dev->m_idx[idx] = info->line;
  2115. dev->usage[idx] &= ISDN_USAGE_EXCLUSIVE;
  2116. dev->usage[idx] |= isdn_calc_usage(si1, info->emu.mdmreg[REG_L2PROT]); 
  2117. strcpy(dev->num[idx], nr);
  2118. strcpy(info->emu.cpn, eaz);
  2119. info->emu.mdmreg[REG_SI1I] = si2bit[si1];
  2120. info->emu.mdmreg[REG_PLAN] = setup->plan;
  2121. info->emu.mdmreg[REG_SCREEN] = setup->screen;
  2122. isdn_info_update();
  2123. restore_flags(flags);
  2124. printk(KERN_INFO "isdn_tty: call from %s, -> RING on ttyI%dn", nr,
  2125.        info->line);
  2126. info->msr |= UART_MSR_RI;
  2127. isdn_tty_modem_result(RESULT_RING, info);
  2128. isdn_timer_ctrl(ISDN_TIMER_MODEMRING, 1);
  2129. return 1;
  2130. }
  2131. }
  2132. }
  2133. }
  2134. restore_flags(flags);
  2135. printk(KERN_INFO "isdn_tty: call from %s -> %s %sn", nr, eaz,
  2136.        ((dev->drv[di]->flags & DRV_FLAG_REJBUS) && (wret != 2))? "rejected" : "ignored");
  2137. return (wret == 2)?3:0;
  2138. }
  2139. #define TTY_IS_ACTIVE(info) 
  2140. (info->flags & (ISDN_ASYNC_NORMAL_ACTIVE | ISDN_ASYNC_CALLOUT_ACTIVE))
  2141. int
  2142. isdn_tty_stat_callback(int i, isdn_ctrl *c)
  2143. {
  2144. int mi;
  2145. modem_info *info;
  2146. char *e;
  2147. if (i < 0)
  2148. return 0;
  2149. if ((mi = dev->m_idx[i]) >= 0) {
  2150. info = &dev->mdm.info[mi];
  2151. switch (c->command) {
  2152.                         case ISDN_STAT_CINF:
  2153.                                 printk(KERN_DEBUG "CHARGEINFO on ttyI%d: %ld %sn", info->line, c->arg, c->parm.num);
  2154.                                 info->emu.charge = (unsigned) simple_strtoul(c->parm.num, &e, 10);
  2155.                                 if (e == (char *)c->parm.num)
  2156. info->emu.charge = 0;
  2157.                                 break;
  2158. case ISDN_STAT_BSENT:
  2159. #ifdef ISDN_TTY_STAT_DEBUG
  2160. printk(KERN_DEBUG "tty_STAT_BSENT ttyI%dn", info->line);
  2161. #endif
  2162. if ((info->isdn_driver == c->driver) &&
  2163.     (info->isdn_channel == c->arg)) {
  2164. info->msr |= UART_MSR_CTS;
  2165. if (info->send_outstanding)
  2166. if (!(--info->send_outstanding))
  2167. info->lsr |= UART_LSR_TEMT;
  2168. isdn_tty_tint(info);
  2169. return 1;
  2170. }
  2171. break;
  2172. case ISDN_STAT_CAUSE:
  2173. #ifdef ISDN_TTY_STAT_DEBUG
  2174. printk(KERN_DEBUG "tty_STAT_CAUSE ttyI%dn", info->line);
  2175. #endif
  2176. /* Signal cause to tty-device */
  2177. strncpy(info->last_cause, c->parm.num, 5);
  2178. return 1;
  2179. case ISDN_STAT_DISPLAY:
  2180. #ifdef ISDN_TTY_STAT_DEBUG
  2181. printk(KERN_DEBUG "tty_STAT_DISPLAY ttyI%dn", info->line);
  2182. #endif
  2183. /* Signal display to tty-device */
  2184. if ((info->emu.mdmreg[REG_DISPLAY] & BIT_DISPLAY) && 
  2185. !(info->emu.mdmreg[REG_RESPNUM] & BIT_RESPNUM)) {
  2186.   isdn_tty_at_cout("rn", info);
  2187.   isdn_tty_at_cout("DISPLAY: ", info);
  2188.   isdn_tty_at_cout(c->parm.display, info);
  2189.   isdn_tty_at_cout("rn", info);
  2190. }
  2191. return 1;
  2192. case ISDN_STAT_DCONN:
  2193. #ifdef ISDN_TTY_STAT_DEBUG
  2194. printk(KERN_DEBUG "tty_STAT_DCONN ttyI%dn", info->line);
  2195. #endif
  2196. if (TTY_IS_ACTIVE(info)) {
  2197. if (info->dialing == 1) {
  2198. info->dialing = 2;
  2199. return 1;
  2200. }
  2201. }
  2202. break;
  2203. case ISDN_STAT_DHUP:
  2204. #ifdef ISDN_TTY_STAT_DEBUG
  2205. printk(KERN_DEBUG "tty_STAT_DHUP ttyI%dn", info->line);
  2206. #endif
  2207. if (TTY_IS_ACTIVE(info)) {
  2208. if (info->dialing == 1) 
  2209. isdn_tty_modem_result(RESULT_BUSY, info);
  2210. if (info->dialing > 1) 
  2211. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  2212. info->dialing = 0;
  2213. #ifdef ISDN_DEBUG_MODEM_HUP
  2214. printk(KERN_DEBUG "Mhup in ISDN_STAT_DHUPn");
  2215. #endif
  2216. isdn_tty_modem_hup(info, 0);
  2217. return 1;
  2218. }
  2219. break;
  2220. case ISDN_STAT_BCONN:
  2221. #ifdef ISDN_TTY_STAT_DEBUG
  2222. printk(KERN_DEBUG "tty_STAT_BCONN ttyI%dn", info->line);
  2223. #endif
  2224. /* Wake up any processes waiting
  2225.  * for incoming call of this device when
  2226.  * DCD follow the state of incoming carrier
  2227.  */
  2228. if (info->blocked_open &&
  2229.    (info->emu.mdmreg[REG_DCD] & BIT_DCD)) {
  2230. wake_up_interruptible(&info->open_wait);
  2231. }
  2232. /* Schedule CONNECT-Message to any tty
  2233.  * waiting for it and
  2234.  * set DCD-bit of its modem-status.
  2235.  */
  2236. if (TTY_IS_ACTIVE(info) ||
  2237.     (info->blocked_open && (info->emu.mdmreg[REG_DCD] & BIT_DCD))) {
  2238. info->msr |= UART_MSR_DCD;
  2239. info->emu.charge = 0;
  2240. if (info->dialing & 0xf)
  2241. info->last_dir = 1;
  2242. else
  2243. info->last_dir = 0;
  2244. info->dialing = 0;
  2245. info->rcvsched = 1;
  2246. if (USG_MODEM(dev->usage[i])) {
  2247. if (info->emu.mdmreg[REG_L2PROT] == ISDN_PROTO_L2_MODEM) {
  2248. strcpy(info->emu.connmsg, c->parm.num);
  2249. isdn_tty_modem_result(RESULT_CONNECT, info);
  2250. } else
  2251. isdn_tty_modem_result(RESULT_CONNECT64000, info);
  2252. }
  2253. if (USG_VOICE(dev->usage[i]))
  2254. isdn_tty_modem_result(RESULT_VCON, info);
  2255. return 1;
  2256. }
  2257. break;
  2258. case ISDN_STAT_BHUP:
  2259. #ifdef ISDN_TTY_STAT_DEBUG
  2260. printk(KERN_DEBUG "tty_STAT_BHUP ttyI%dn", info->line);
  2261. #endif
  2262. if (TTY_IS_ACTIVE(info)) {
  2263. #ifdef ISDN_DEBUG_MODEM_HUP
  2264. printk(KERN_DEBUG "Mhup in ISDN_STAT_BHUPn");
  2265. #endif
  2266. isdn_tty_modem_hup(info, 0);
  2267. return 1;
  2268. }
  2269. break;
  2270. case ISDN_STAT_NODCH:
  2271. #ifdef ISDN_TTY_STAT_DEBUG
  2272. printk(KERN_DEBUG "tty_STAT_NODCH ttyI%dn", info->line);
  2273. #endif
  2274. if (TTY_IS_ACTIVE(info)) {
  2275. if (info->dialing) {
  2276. info->dialing = 0;
  2277. info->last_l2 = -1;
  2278. info->last_si = 0;
  2279. sprintf(info->last_cause, "0000");
  2280. isdn_tty_modem_result(RESULT_NO_DIALTONE, info);
  2281. }
  2282. isdn_tty_modem_hup(info, 0);
  2283. return 1;
  2284. }
  2285. break;
  2286. case ISDN_STAT_UNLOAD:
  2287. #ifdef ISDN_TTY_STAT_DEBUG
  2288. printk(KERN_DEBUG "tty_STAT_UNLOAD ttyI%dn", info->line);
  2289. #endif
  2290. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  2291. info = &dev->mdm.info[i];
  2292. if (info->isdn_driver == c->driver) {
  2293. if (info->online)
  2294. isdn_tty_modem_hup(info, 1);
  2295. }
  2296. }
  2297. return 1;
  2298. #ifdef CONFIG_ISDN_TTY_FAX
  2299. case ISDN_STAT_FAXIND:
  2300. if (TTY_IS_ACTIVE(info)) {
  2301. isdn_tty_fax_command(info, c); 
  2302. }
  2303. break;
  2304. #endif
  2305. #ifdef CONFIG_ISDN_AUDIO
  2306. case ISDN_STAT_AUDIO:
  2307. if (TTY_IS_ACTIVE(info)) {
  2308. switch(c->parm.num[0]) {
  2309. case ISDN_AUDIO_DTMF:
  2310. if (info->vonline) {
  2311. isdn_audio_put_dle_code(info,
  2312. c->parm.num[1]);
  2313. }
  2314. break;
  2315. }
  2316. }
  2317. break;
  2318. #endif
  2319. }
  2320. }
  2321. return 0;
  2322. }
  2323. /*********************************************************************
  2324.  Modem-Emulator-Routines
  2325.  *********************************************************************/
  2326. #define cmdchar(c) ((c>=' ')&&(c<=0x7f))
  2327. /*
  2328.  * Put a message from the AT-emulator into receive-buffer of tty,
  2329.  * convert CR, LF, and BS to values in modem-registers 3, 4 and 5.
  2330.  */
  2331. void
  2332. isdn_tty_at_cout(char *msg, modem_info * info)
  2333. {
  2334. struct tty_struct *tty;
  2335. atemu *m = &info->emu;
  2336. char *p;
  2337. char c;
  2338. ulong flags;
  2339. struct sk_buff *skb = 0;
  2340. char *sp = 0;
  2341. if (!msg) {
  2342. printk(KERN_WARNING "isdn_tty: Null-Message in isdn_tty_at_coutn");
  2343. return;
  2344. }
  2345. save_flags(flags);
  2346. cli();
  2347. tty = info->tty;
  2348. if ((info->flags & ISDN_ASYNC_CLOSING) || (!tty)) {
  2349. restore_flags(flags);
  2350. return;
  2351. }
  2352. /* use queue instead of direct flip, if online and */
  2353. /* data is in queue or flip buffer is full */
  2354. if ((info->online) && (((tty->flip.count + strlen(msg)) >= TTY_FLIPBUF_SIZE) ||
  2355.     (!skb_queue_empty(&dev->drv[info->isdn_driver]->rpqueue[info->isdn_channel])))) {
  2356. skb = alloc_skb(strlen(msg)
  2357. #ifdef CONFIG_ISDN_AUDIO
  2358. + sizeof(isdn_audio_skb)
  2359. #endif
  2360. , GFP_ATOMIC);
  2361. if (!skb) {
  2362. restore_flags(flags);
  2363. return;
  2364. }
  2365. #ifdef CONFIG_ISDN_AUDIO
  2366. skb_reserve(skb, sizeof(isdn_audio_skb));
  2367. #endif
  2368. sp = skb_put(skb, strlen(msg));
  2369. #ifdef CONFIG_ISDN_AUDIO
  2370. ISDN_AUDIO_SKB_DLECOUNT(skb) = 0;
  2371. ISDN_AUDIO_SKB_LOCK(skb) = 0;
  2372. #endif
  2373. }
  2374. for (p = msg; *p; p++) {
  2375. switch (*p) {
  2376. case 'r':
  2377. c = m->mdmreg[REG_CR];
  2378. break;
  2379. case 'n':
  2380. c = m->mdmreg[REG_LF];
  2381. break;
  2382. case 'b':
  2383. c = m->mdmreg[REG_BS];
  2384. break;
  2385. default:
  2386. c = *p;
  2387. }
  2388. if (skb) {
  2389. *sp++ = c;
  2390. } else {
  2391. if (tty->flip.count >= TTY_FLIPBUF_SIZE)
  2392. break;
  2393. tty_insert_flip_char(tty, c, 0);
  2394. }
  2395. }
  2396. if (skb) {
  2397. __skb_queue_tail(&dev->drv[info->isdn_driver]->rpqueue[info->isdn_channel], skb);
  2398. dev->drv[info->isdn_driver]->rcvcount[info->isdn_channel] += skb->len;
  2399. restore_flags(flags);
  2400. /* Schedule dequeuing */
  2401. if ((dev->modempoll) && (info->rcvsched))
  2402. isdn_timer_ctrl(ISDN_TIMER_MODEMREAD, 1);
  2403. } else {
  2404. restore_flags(flags);
  2405. queue_task(&tty->flip.tqueue, &tq_timer);
  2406. }
  2407. }
  2408. /*
  2409.  * Perform ATH Hangup
  2410.  */
  2411. static void
  2412. isdn_tty_on_hook(modem_info * info)
  2413. {
  2414. if (info->isdn_channel >= 0) {
  2415. #ifdef ISDN_DEBUG_MODEM_HUP
  2416. printk(KERN_DEBUG "Mhup in isdn_tty_on_hookn");
  2417. #endif
  2418. isdn_tty_modem_hup(info, 1);
  2419. }
  2420. }
  2421. static void
  2422. isdn_tty_off_hook(void)
  2423. {
  2424. printk(KERN_DEBUG "isdn_tty_off_hookn");
  2425. }
  2426. #define PLUSWAIT1 (HZ/2)        /* 0.5 sec. */
  2427. #define PLUSWAIT2 (HZ*3/2)      /* 1.5 sec */
  2428. /*
  2429.  * Check Buffer for Modem-escape-sequence, activate timer-callback to
  2430.  * isdn_tty_modem_escape() if sequence found.
  2431.  *
  2432.  * Parameters:
  2433.  *   p          pointer to databuffer
  2434.  *   plus       escape-character
  2435.  *   count      length of buffer
  2436.  *   pluscount  count of valid escape-characters so far
  2437.  *   lastplus   timestamp of last character
  2438.  */
  2439. static void
  2440. isdn_tty_check_esc(const u_char * p, u_char plus, int count, int *pluscount,
  2441.    int *lastplus, int from_user)
  2442. {
  2443. char cbuf[3];
  2444. if (plus > 127)
  2445. return;
  2446. if (count > 3) {
  2447. p += count - 3;
  2448. count = 3;
  2449. *pluscount = 0;
  2450. }
  2451. if (from_user) {
  2452. copy_from_user(cbuf, p, count);
  2453. p = cbuf;
  2454. }
  2455. while (count > 0) {
  2456. if (*(p++) == plus) {
  2457. if ((*pluscount)++) {
  2458. /* Time since last '+' > 0.5 sec. ? */
  2459. if (time_after(jiffies, *lastplus + PLUSWAIT1))
  2460. *pluscount = 1;
  2461. } else {
  2462. /* Time since last non-'+' < 1.5 sec. ? */
  2463. if (time_before(jiffies, *lastplus + PLUSWAIT2))
  2464. *pluscount = 0;
  2465. }
  2466. if ((*pluscount == 3) && (count == 1))
  2467. isdn_timer_ctrl(ISDN_TIMER_MODEMPLUS, 1);
  2468. if (*pluscount > 3)
  2469. *pluscount = 1;
  2470. } else
  2471. *pluscount = 0;
  2472. *lastplus = jiffies;
  2473. count--;
  2474. }
  2475. }
  2476. /*
  2477.  * Return result of AT-emulator to tty-receive-buffer, depending on
  2478.  * modem-register 12, bit 0 and 1.
  2479.  * For CONNECT-messages also switch to online-mode.
  2480.  * For RING-message handle auto-ATA if register 0 != 0
  2481.  */
  2482. static void
  2483. isdn_tty_modem_result(int code, modem_info * info)
  2484. {
  2485. atemu *m = &info->emu;
  2486. static char *msg[] =
  2487. {"OK", "CONNECT", "RING", "NO CARRIER", "ERROR",
  2488.  "CONNECT 64000", "NO DIALTONE", "BUSY", "NO ANSWER",
  2489.  "RINGING", "NO MSN/EAZ", "VCON", "RUNG"};
  2490. ulong flags;
  2491. char s[ISDN_MSNLEN+10];
  2492. switch (code) {
  2493. case RESULT_RING:
  2494. m->mdmreg[REG_RINGCNT]++;
  2495. if (m->mdmreg[REG_RINGCNT] == m->mdmreg[REG_RINGATA])
  2496. /* Automatically accept incoming call */
  2497. isdn_tty_cmd_ATA(info);
  2498. break;
  2499. case RESULT_NO_CARRIER:
  2500. #ifdef ISDN_DEBUG_MODEM_HUP
  2501. printk(KERN_DEBUG "modem_result: NO CARRIER %d %dn",
  2502.        (info->flags & ISDN_ASYNC_CLOSING),
  2503.        (!info->tty));
  2504. #endif
  2505. save_flags(flags);
  2506. cli();
  2507. m->mdmreg[REG_RINGCNT] = 0;
  2508. del_timer(&info->nc_timer);
  2509. info->ncarrier = 0;
  2510. if ((info->flags & ISDN_ASYNC_CLOSING) || (!info->tty)) {
  2511. restore_flags(flags);
  2512. return;
  2513. }
  2514. restore_flags(flags);
  2515. #ifdef CONFIG_ISDN_AUDIO
  2516. if (info->vonline & 1) {
  2517. #ifdef ISDN_DEBUG_MODEM_VOICE
  2518. printk(KERN_DEBUG "res3: send DLE-ETX on ttyI%dn",
  2519.        info->line);
  2520. #endif
  2521. /* voice-recording, add DLE-ETX */
  2522. isdn_tty_at_cout("2003", info);
  2523. }
  2524. if (info->vonline & 2) {
  2525. #ifdef ISDN_DEBUG_MODEM_VOICE
  2526. printk(KERN_DEBUG "res3: send DLE-DC4 on ttyI%dn",
  2527.        info->line);
  2528. #endif
  2529. /* voice-playing, add DLE-DC4 */
  2530. isdn_tty_at_cout("2024", info);
  2531. }
  2532. #endif
  2533. break;
  2534. case RESULT_CONNECT:
  2535. case RESULT_CONNECT64000:
  2536. sprintf(info->last_cause, "0000");
  2537. if (!info->online)
  2538. info->online = 2;
  2539. break;
  2540. case RESULT_VCON:
  2541. #ifdef ISDN_DEBUG_MODEM_VOICE
  2542. printk(KERN_DEBUG "res3: send VCON on ttyI%dn",
  2543.        info->line);
  2544. #endif
  2545. sprintf(info->last_cause, "0000");
  2546. if (!info->online)
  2547. info->online = 1;
  2548. break;
  2549. } /* switch(code) */
  2550. if (m->mdmreg[REG_RESP] & BIT_RESP) {
  2551. /* Show results */
  2552. if (m->mdmreg[REG_RESPNUM] & BIT_RESPNUM) {
  2553. /* Show numeric results only */
  2554. sprintf(s, "rn%drn", code);
  2555. isdn_tty_at_cout(s, info);
  2556. } else {
  2557. if (code == RESULT_RING) {
  2558.     /* return if "show RUNG" and ringcounter>1 */
  2559.     if ((m->mdmreg[REG_RUNG] & BIT_RUNG) &&
  2560.     (m->mdmreg[REG_RINGCNT] > 1))
  2561. return;
  2562.     /* print CID, _before_ _every_ ring */
  2563.     if (!(m->mdmreg[REG_CIDONCE] & BIT_CIDONCE)) {
  2564.     isdn_tty_at_cout("rnCALLER NUMBER: ", info);
  2565.     isdn_tty_at_cout(dev->num[info->drv_index], info);
  2566.     if (m->mdmreg[REG_CDN] & BIT_CDN) {
  2567.     isdn_tty_at_cout("rnCALLED NUMBER: ", info);
  2568.     isdn_tty_at_cout(info->emu.cpn, info);
  2569.     }
  2570.     }
  2571. }
  2572. isdn_tty_at_cout("rn", info);
  2573. isdn_tty_at_cout(msg[code], info);
  2574. switch (code) {
  2575. case RESULT_CONNECT:
  2576. switch (m->mdmreg[REG_L2PROT]) {
  2577. case ISDN_PROTO_L2_MODEM:
  2578. isdn_tty_at_cout(" ", info);
  2579. isdn_tty_at_cout(m->connmsg, info);
  2580. break;
  2581. }
  2582. break;
  2583. case RESULT_RING:
  2584. /* Append CPN, if enabled */
  2585. if ((m->mdmreg[REG_CPN] & BIT_CPN)) {
  2586. sprintf(s, "/%s", m->cpn);
  2587. isdn_tty_at_cout(s, info);
  2588. }
  2589. /* Print CID only once, _after_ 1st RING */
  2590. if ((m->mdmreg[REG_CIDONCE] & BIT_CIDONCE) &&
  2591.     (m->mdmreg[REG_RINGCNT] == 1)) {
  2592. isdn_tty_at_cout("rn", info);
  2593. isdn_tty_at_cout("CALLER NUMBER: ", info);
  2594. isdn_tty_at_cout(dev->num[info->drv_index], info);
  2595. if (m->mdmreg[REG_CDN] & BIT_CDN) {
  2596. isdn_tty_at_cout("rnCALLED NUMBER: ", info);
  2597. isdn_tty_at_cout(info->emu.cpn, info);
  2598. }
  2599. }
  2600. break;
  2601. case RESULT_NO_CARRIER:
  2602. case RESULT_NO_DIALTONE:
  2603. case RESULT_BUSY:
  2604. case RESULT_NO_ANSWER:
  2605. m->mdmreg[REG_RINGCNT] = 0;
  2606. /* Append Cause-Message if enabled */
  2607. if (m->mdmreg[REG_RESPXT] & BIT_RESPXT) {
  2608. sprintf(s, "/%s", info->last_cause);
  2609. isdn_tty_at_cout(s, info);
  2610. }
  2611. break;
  2612. case RESULT_CONNECT64000:
  2613. /* Append Protocol to CONNECT message */
  2614. switch (m->mdmreg[REG_L2PROT]) {
  2615. case ISDN_PROTO_L2_X75I:
  2616. case ISDN_PROTO_L2_X75UI:
  2617. case ISDN_PROTO_L2_X75BUI:
  2618. isdn_tty_at_cout("/X.75", info);
  2619. break;
  2620. case ISDN_PROTO_L2_HDLC:
  2621. isdn_tty_at_cout("/HDLC", info);
  2622. break;
  2623. case ISDN_PROTO_L2_V11096:
  2624. isdn_tty_at_cout("/V110/9600", info);
  2625. break;
  2626. case ISDN_PROTO_L2_V11019:
  2627. isdn_tty_at_cout("/V110/19200", info);
  2628. break;
  2629. case ISDN_PROTO_L2_V11038:
  2630. isdn_tty_at_cout("/V110/38400", info);
  2631. break;
  2632. }
  2633. if (m->mdmreg[REG_T70] & BIT_T70) {
  2634. isdn_tty_at_cout("/T.70", info);
  2635. if (m->mdmreg[REG_T70] & BIT_T70_EXT)
  2636. isdn_tty_at_cout("+", info);
  2637. }
  2638. break;
  2639. }
  2640. isdn_tty_at_cout("rn", info);
  2641. }
  2642. }
  2643. if (code == RESULT_NO_CARRIER) {
  2644. save_flags(flags);
  2645. cli();
  2646. if ((info->flags & ISDN_ASYNC_CLOSING) || (!info->tty)) {
  2647. restore_flags(flags);
  2648. return;
  2649. }
  2650. if (info->tty->ldisc.flush_buffer)
  2651. info->tty->ldisc.flush_buffer(info->tty);
  2652. if ((info->flags & ISDN_ASYNC_CHECK_CD) &&
  2653.     (!((info->flags & ISDN_ASYNC_CALLOUT_ACTIVE) &&
  2654.        (info->flags & ISDN_ASYNC_CALLOUT_NOHUP)))) {
  2655. tty_hangup(info->tty);
  2656. }
  2657. restore_flags(flags);
  2658. }
  2659. }
  2660. /*
  2661.  * Display a modem-register-value.
  2662.  */
  2663. static void
  2664. isdn_tty_show_profile(int ridx, modem_info * info)
  2665. {
  2666. char v[6];
  2667. sprintf(v, "rn%d", info->emu.mdmreg[ridx]);
  2668. isdn_tty_at_cout(v, info);
  2669. }
  2670. /*
  2671.  * Get MSN-string from char-pointer, set pointer to end of number
  2672.  */
  2673. static void
  2674. isdn_tty_get_msnstr(char *n, char **p)
  2675. {
  2676. int limit = ISDN_MSNLEN - 1;
  2677. while (((*p[0] >= '0' && *p[0] <= '9') ||
  2678. /* Why a comma ??? */
  2679. (*p[0] == ',') || (*p[0] == ':')) &&
  2680. (limit--))
  2681. *n++ = *p[0]++;
  2682. *n = '';
  2683. }
  2684. /*
  2685.  * Get phone-number from modem-commandbuffer
  2686.  */
  2687. static void
  2688. isdn_tty_getdial(char *p, char *q,int cnt)
  2689. {
  2690. int first = 1;
  2691. int limit = ISDN_MSNLEN - 1; /* MUST match the size of interface var to avoid
  2692. buffer overflow */
  2693. while (strchr(" 0123456789,#.*WPTS-", *p) && *p && --cnt>0) {
  2694. if ((*p >= '0' && *p <= '9') || ((*p == 'S') && first) ||
  2695.     (*p == '*') || (*p == '#')) {
  2696. *q++ = *p;
  2697. limit--;
  2698. }
  2699. if(!limit)
  2700. break;
  2701. p++;
  2702. first = 0;
  2703. }
  2704. *q = 0;
  2705. }
  2706. #define PARSE_ERROR { isdn_tty_modem_result(RESULT_ERROR, info); return; }
  2707. #define PARSE_ERROR1 { isdn_tty_modem_result(RESULT_ERROR, info); return 1; }
  2708. static void
  2709. isdn_tty_report(modem_info * info)
  2710. {
  2711. atemu *m = &info->emu;
  2712. char s[80];
  2713. isdn_tty_at_cout("rnStatistics of last connection:rnrn", info);
  2714. sprintf(s, "    Remote Number:    %srn", info->last_num);
  2715. isdn_tty_at_cout(s, info);
  2716. sprintf(s, "    Direction:        %srn", info->last_dir ? "outgoing" : "incoming");
  2717. isdn_tty_at_cout(s, info);
  2718. isdn_tty_at_cout("    Layer-2 Protocol: ", info);
  2719. switch (info->last_l2) {
  2720. case ISDN_PROTO_L2_X75I:
  2721. isdn_tty_at_cout("X.75i", info);
  2722. break;
  2723. case ISDN_PROTO_L2_X75UI:
  2724. isdn_tty_at_cout("X.75ui", info);
  2725. break;
  2726. case ISDN_PROTO_L2_X75BUI:
  2727. isdn_tty_at_cout("X.75bui", info);
  2728. break;
  2729. case ISDN_PROTO_L2_HDLC:
  2730. isdn_tty_at_cout("HDLC", info);
  2731. break;
  2732. case ISDN_PROTO_L2_V11096:
  2733. isdn_tty_at_cout("V.110 9600 Baud", info);
  2734. break;
  2735. case ISDN_PROTO_L2_V11019:
  2736. isdn_tty_at_cout("V.110 19200 Baud", info);
  2737. break;
  2738. case ISDN_PROTO_L2_V11038:
  2739. isdn_tty_at_cout("V.110 38400 Baud", info);
  2740. break;
  2741. case ISDN_PROTO_L2_TRANS:
  2742. isdn_tty_at_cout("transparent", info);
  2743. break;
  2744. case ISDN_PROTO_L2_MODEM:
  2745. isdn_tty_at_cout("modem", info);
  2746. break;
  2747. case ISDN_PROTO_L2_FAX:
  2748. isdn_tty_at_cout("fax", info);
  2749. break;
  2750. default:
  2751. isdn_tty_at_cout("unknown", info);
  2752. break;
  2753. }
  2754. if (m->mdmreg[REG_T70] & BIT_T70) {
  2755. isdn_tty_at_cout("/T.70", info);
  2756. if (m->mdmreg[REG_T70] & BIT_T70_EXT)
  2757. isdn_tty_at_cout("+", info);
  2758. }
  2759. isdn_tty_at_cout("rn", info);
  2760. isdn_tty_at_cout("    Service:          ", info);
  2761. switch (info->last_si) {
  2762. case 1:
  2763. isdn_tty_at_cout("audiorn", info);
  2764. break;
  2765. case 5:
  2766. isdn_tty_at_cout("btxrn", info);
  2767. break;
  2768. case 7:
  2769. isdn_tty_at_cout("datarn", info);
  2770. break;
  2771. default:
  2772. sprintf(s, "%drn", info->last_si);
  2773. isdn_tty_at_cout(s, info);
  2774. break;
  2775. }
  2776. sprintf(s, "    Hangup location:  %srn", info->last_lhup ? "local" : "remote");
  2777. isdn_tty_at_cout(s, info);
  2778. sprintf(s, "    Last cause:       %srn", info->last_cause);
  2779. isdn_tty_at_cout(s, info);
  2780. }
  2781. /*
  2782.  * Parse AT&.. commands.
  2783.  */
  2784. static int
  2785. isdn_tty_cmd_ATand(char **p, modem_info * info)
  2786. {
  2787. atemu *m = &info->emu;
  2788. int i;
  2789. char rb[100];
  2790. #define MAXRB (sizeof(rb) - 1)
  2791. switch (*p[0]) {
  2792. case 'B':
  2793. /* &B - Set Buffersize */
  2794. p[0]++;
  2795. i = isdn_getnum(p);
  2796. if ((i < 0) || (i > ISDN_SERIAL_XMIT_MAX))
  2797. PARSE_ERROR1;
  2798. #ifdef CONFIG_ISDN_AUDIO
  2799. if ((m->mdmreg[REG_SI1] & 1) && (i > VBUF))
  2800. PARSE_ERROR1;
  2801. #endif
  2802. m->mdmreg[REG_PSIZE] = i / 16;
  2803. info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
  2804. switch (m->mdmreg[REG_L2PROT]) {
  2805. case ISDN_PROTO_L2_V11096:
  2806. case ISDN_PROTO_L2_V11019:
  2807. case ISDN_PROTO_L2_V11038:
  2808. info->xmit_size /= 10;
  2809. }
  2810. break;
  2811. case 'C':
  2812. /* &C - DCD Status */
  2813. p[0]++;
  2814. switch (isdn_getnum(p)) {
  2815. case 0:
  2816. m->mdmreg[REG_DCD] &= ~BIT_DCD;
  2817. break;
  2818. case 1:
  2819. m->mdmreg[REG_DCD] |= BIT_DCD;
  2820. break;
  2821. default:
  2822. PARSE_ERROR1
  2823. }
  2824. break;
  2825. case 'D':
  2826. /* &D - Set DTR-Low-behavior */
  2827. p[0]++;
  2828. switch (isdn_getnum(p)) {
  2829. case 0:
  2830. m->mdmreg[REG_DTRHUP] &= ~BIT_DTRHUP;
  2831. m->mdmreg[REG_DTRR] &= ~BIT_DTRR;
  2832. break;
  2833. case 2:
  2834. m->mdmreg[REG_DTRHUP] |= BIT_DTRHUP;
  2835. m->mdmreg[REG_DTRR] &= ~BIT_DTRR;
  2836. break;
  2837. case 3:
  2838. m->mdmreg[REG_DTRHUP] |= BIT_DTRHUP;
  2839. m->mdmreg[REG_DTRR] |= BIT_DTRR;
  2840. break;
  2841. default:
  2842. PARSE_ERROR1
  2843. }
  2844. break;
  2845. case 'E':
  2846. /* &E -Set EAZ/MSN */
  2847. p[0]++;
  2848. isdn_tty_get_msnstr(m->msn, p);
  2849. break;
  2850. case 'F':
  2851. /* &F -Set Factory-Defaults */
  2852. p[0]++;
  2853. if (info->msr & UART_MSR_DCD)
  2854. PARSE_ERROR1;
  2855. isdn_tty_reset_profile(m);
  2856. isdn_tty_modem_reset_regs(info, 1);
  2857. break;
  2858. #ifdef DUMMY_HAYES_AT
  2859. case 'K':
  2860. /* only for be compilant with common scripts */
  2861. /* &K Flowcontrol - no function */
  2862. p[0]++;
  2863. isdn_getnum(p);
  2864. break;
  2865. #endif
  2866. case 'L':
  2867. /* &L -Set Numbers to listen on */
  2868. p[0]++;
  2869. i = 0;
  2870. while (*p[0] && (strchr("0123456789,-*[]?;", *p[0])) &&
  2871.        (i < ISDN_LMSNLEN))
  2872. m->lmsn[i++] = *p[0]++;
  2873. m->lmsn[i] = '';
  2874. break;
  2875. case 'R':
  2876. /* &R - Set V.110 bitrate adaption */
  2877. p[0]++;
  2878. i = isdn_getnum(p);
  2879. switch (i) {
  2880. case 0:
  2881. /* Switch off V.110, back to X.75 */
  2882. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
  2883. m->mdmreg[REG_SI2] = 0;
  2884. info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
  2885. break;
  2886. case 9600:
  2887. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_V11096;
  2888. m->mdmreg[REG_SI2] = 197;
  2889. info->xmit_size = m->mdmreg[REG_PSIZE] * 16 / 10;
  2890. break;
  2891. case 19200:
  2892. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_V11019;
  2893. m->mdmreg[REG_SI2] = 199;
  2894. info->xmit_size = m->mdmreg[REG_PSIZE] * 16 / 10;
  2895. break;
  2896. case 38400:
  2897. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_V11038;
  2898. m->mdmreg[REG_SI2] = 198; /* no existing standard for this */
  2899. info->xmit_size = m->mdmreg[REG_PSIZE] * 16 / 10;
  2900. break;
  2901. default:
  2902. PARSE_ERROR1;
  2903. }
  2904. /* Switch off T.70 */
  2905. m->mdmreg[REG_T70] &= ~(BIT_T70 | BIT_T70_EXT);
  2906. /* Set Service 7 */
  2907. m->mdmreg[REG_SI1] |= 4;
  2908. break;
  2909. case 'S':
  2910. /* &S - Set Windowsize */
  2911. p[0]++;
  2912. i = isdn_getnum(p);
  2913. if ((i > 0) && (i < 9))
  2914. m->mdmreg[REG_WSIZE] = i;
  2915. else
  2916. PARSE_ERROR1;
  2917. break;
  2918. case 'V':
  2919. /* &V - Show registers */
  2920. p[0]++;
  2921. isdn_tty_at_cout("rn", info);
  2922. for (i = 0; i < ISDN_MODEM_NUMREG; i++) {
  2923. sprintf(rb, "S%02d=%03d%s", i,
  2924. m->mdmreg[i], ((i + 1) % 10) ? " " : "rn");
  2925. isdn_tty_at_cout(rb, info);
  2926. }
  2927. sprintf(rb, "rnEAZ/MSN: %.50srn",
  2928. strlen(m->msn) ? m->msn : "None");
  2929. isdn_tty_at_cout(rb, info);
  2930. if (strlen(m->lmsn)) {
  2931. isdn_tty_at_cout("rnListen: ", info);
  2932. isdn_tty_at_cout(m->lmsn, info);
  2933. isdn_tty_at_cout("rn", info);
  2934. }
  2935. break;
  2936. case 'W':
  2937. /* &W - Write Profile */
  2938. p[0]++;
  2939. switch (*p[0]) {
  2940. case '0':
  2941. p[0]++;
  2942. modem_write_profile(m);
  2943. break;
  2944. default:
  2945. PARSE_ERROR1;
  2946. }
  2947. break;
  2948. case 'X':
  2949. /* &X - Switch to BTX-Mode and T.70 */
  2950. p[0]++;
  2951. switch (isdn_getnum(p)) {
  2952. case 0:
  2953. m->mdmreg[REG_T70] &= ~(BIT_T70 | BIT_T70_EXT);
  2954. info->xmit_size = m->mdmreg[REG_PSIZE] * 16;
  2955. break;
  2956. case 1:
  2957. m->mdmreg[REG_T70] |= BIT_T70;
  2958. m->mdmreg[REG_T70] &= ~BIT_T70_EXT;
  2959. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
  2960. info->xmit_size = 112;
  2961. m->mdmreg[REG_SI1] = 4;
  2962. m->mdmreg[REG_SI2] = 0;
  2963. break;
  2964. case 2:
  2965. m->mdmreg[REG_T70] |= (BIT_T70 | BIT_T70_EXT);
  2966. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
  2967. info->xmit_size = 112;
  2968. m->mdmreg[REG_SI1] = 4;
  2969. m->mdmreg[REG_SI2] = 0;
  2970. break;
  2971. default:
  2972. PARSE_ERROR1;
  2973. }
  2974. break;
  2975. default:
  2976. PARSE_ERROR1;
  2977. }
  2978. return 0;
  2979. }
  2980. static int
  2981. isdn_tty_check_ats(int mreg, int mval, modem_info * info, atemu * m)
  2982. {
  2983. /* Some plausibility checks */
  2984. switch (mreg) {
  2985. case REG_L2PROT:
  2986. if (mval > ISDN_PROTO_L2_MAX)
  2987. return 1;
  2988. break;
  2989. case REG_PSIZE:
  2990. if ((mval * 16) > ISDN_SERIAL_XMIT_MAX)
  2991. return 1;
  2992. #ifdef CONFIG_ISDN_AUDIO
  2993. if ((m->mdmreg[REG_SI1] & 1) && (mval > VBUFX))
  2994. return 1;
  2995. #endif
  2996. info->xmit_size = mval * 16;
  2997. switch (m->mdmreg[REG_L2PROT]) {
  2998. case ISDN_PROTO_L2_V11096:
  2999. case ISDN_PROTO_L2_V11019:
  3000. case ISDN_PROTO_L2_V11038:
  3001. info->xmit_size /= 10;
  3002. }
  3003. break;
  3004. case REG_SI1I:
  3005. case REG_PLAN:
  3006. case REG_SCREEN:
  3007. /* readonly registers */
  3008. return 1;
  3009. }
  3010. return 0;
  3011. }
  3012. /*
  3013.  * Perform ATS command
  3014.  */
  3015. static int
  3016. isdn_tty_cmd_ATS(char **p, modem_info * info)
  3017. {
  3018. atemu *m = &info->emu;
  3019. int bitpos;
  3020. int mreg;
  3021. int mval;
  3022. int bval;
  3023. mreg = isdn_getnum(p);
  3024. if (mreg < 0 || mreg >= ISDN_MODEM_NUMREG)
  3025. PARSE_ERROR1;
  3026. switch (*p[0]) {
  3027. case '=':
  3028. p[0]++;
  3029. mval = isdn_getnum(p);
  3030. if (mval < 0 || mval > 255)
  3031. PARSE_ERROR1;
  3032. if (isdn_tty_check_ats(mreg, mval, info, m))
  3033. PARSE_ERROR1;
  3034. m->mdmreg[mreg] = mval;
  3035. break;
  3036. case '.':
  3037. /* Set/Clear a single bit */
  3038. p[0]++;
  3039. bitpos = isdn_getnum(p);
  3040. if ((bitpos < 0) || (bitpos > 7))
  3041. PARSE_ERROR1;
  3042. switch (*p[0]) {
  3043. case '=':
  3044. p[0]++;
  3045. bval = isdn_getnum(p);
  3046. if (bval < 0 || bval > 1)
  3047. PARSE_ERROR1;
  3048. if (bval)
  3049. mval = m->mdmreg[mreg] | (1 << bitpos);
  3050. else
  3051. mval = m->mdmreg[mreg] & ~(1 << bitpos);
  3052. if (isdn_tty_check_ats(mreg, mval, info, m))
  3053. PARSE_ERROR1;
  3054. m->mdmreg[mreg] = mval;
  3055. break;
  3056. case '?':
  3057. p[0]++;
  3058. isdn_tty_at_cout("rn", info);
  3059. isdn_tty_at_cout((m->mdmreg[mreg] & (1 << bitpos)) ? "1" : "0",
  3060.  info);
  3061. break;
  3062. default:
  3063. PARSE_ERROR1;
  3064. }
  3065. break;
  3066. case '?':
  3067. p[0]++;
  3068. isdn_tty_show_profile(mreg, info);
  3069. break;
  3070. default:
  3071. PARSE_ERROR1;
  3072. break;
  3073. }
  3074. return 0;
  3075. }
  3076. /*
  3077.  * Perform ATA command
  3078.  */
  3079. static void
  3080. isdn_tty_cmd_ATA(modem_info * info)
  3081. {
  3082. atemu *m = &info->emu;
  3083. isdn_ctrl cmd;
  3084. int l2;
  3085. if (info->msr & UART_MSR_RI) {
  3086. /* Accept incoming call */
  3087. info->last_dir = 0;
  3088. strcpy(info->last_num, dev->num[info->drv_index]);
  3089. m->mdmreg[REG_RINGCNT] = 0;
  3090. info->msr &= ~UART_MSR_RI;
  3091. l2 = m->mdmreg[REG_L2PROT];
  3092. #ifdef CONFIG_ISDN_AUDIO
  3093. /* If more than one bit set in reg18, autoselect Layer2 */
  3094. if ((m->mdmreg[REG_SI1] & m->mdmreg[REG_SI1I]) != m->mdmreg[REG_SI1]) {
  3095. if (m->mdmreg[REG_SI1I] == 1) {
  3096. if ((l2 != ISDN_PROTO_L2_MODEM) && (l2 != ISDN_PROTO_L2_FAX))
  3097. l2 = ISDN_PROTO_L2_TRANS;
  3098. } else
  3099. l2 = ISDN_PROTO_L2_X75I;
  3100. }
  3101. #endif
  3102. cmd.driver = info->isdn_driver;
  3103. cmd.command = ISDN_CMD_SETL2;
  3104. cmd.arg = info->isdn_channel + (l2 << 8);
  3105. info->last_l2 = l2;
  3106. isdn_command(&cmd);
  3107. cmd.driver = info->isdn_driver;
  3108. cmd.command = ISDN_CMD_SETL3;
  3109. cmd.arg = info->isdn_channel + (m->mdmreg[REG_L3PROT] << 8);
  3110. #ifdef CONFIG_ISDN_TTY_FAX
  3111. if (l2 == ISDN_PROTO_L2_FAX) {
  3112. cmd.parm.fax = info->fax;
  3113. info->fax->direction = ISDN_TTY_FAX_CONN_IN;
  3114. }
  3115. #endif
  3116. isdn_command(&cmd);
  3117. cmd.driver = info->isdn_driver;
  3118. cmd.arg = info->isdn_channel;
  3119. cmd.command = ISDN_CMD_ACCEPTD;
  3120. info->dialing = 16;
  3121. info->emu.carrierwait = 0;
  3122. isdn_command(&cmd);
  3123. isdn_timer_ctrl(ISDN_TIMER_CARRIER, 1);
  3124. } else
  3125. isdn_tty_modem_result(RESULT_NO_ANSWER, info);
  3126. }
  3127. #ifdef CONFIG_ISDN_AUDIO
  3128. /*
  3129.  * Parse AT+F.. commands
  3130.  */
  3131. static int
  3132. isdn_tty_cmd_PLUSF(char **p, modem_info * info)
  3133. {
  3134. atemu *m = &info->emu;
  3135. char rs[20];
  3136. if (!strncmp(p[0], "CLASS", 5)) {
  3137. p[0] += 5;
  3138. switch (*p[0]) {
  3139. case '?':
  3140. p[0]++;
  3141. sprintf(rs, "rn%d",
  3142. (m->mdmreg[REG_SI1] & 1) ? 8 : 0);
  3143. #ifdef CONFIG_ISDN_TTY_FAX
  3144. if (TTY_IS_FCLASS2(info))
  3145. sprintf(rs, "rn2");
  3146. else if (TTY_IS_FCLASS1(info))
  3147. sprintf(rs, "rn1");
  3148. #endif
  3149. isdn_tty_at_cout(rs, info);
  3150. break;
  3151. case '=':
  3152. p[0]++;
  3153. switch (*p[0]) {
  3154. case '0':
  3155. p[0]++;
  3156. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
  3157. m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_TRANS;
  3158. m->mdmreg[REG_SI1] = 4;
  3159. info->xmit_size =
  3160.     m->mdmreg[REG_PSIZE] * 16;
  3161. break;
  3162. #ifdef CONFIG_ISDN_TTY_FAX
  3163. case '1':
  3164. p[0]++;
  3165. if (!(dev->global_features &
  3166. ISDN_FEATURE_L3_FCLASS1))
  3167. PARSE_ERROR1;
  3168. m->mdmreg[REG_SI1] = 1;
  3169. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_FAX;
  3170. m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_FCLASS1;
  3171. info->xmit_size =
  3172.     m->mdmreg[REG_PSIZE] * 16;
  3173. break;
  3174. case '2':
  3175. p[0]++;
  3176. if (!(dev->global_features &
  3177. ISDN_FEATURE_L3_FCLASS2))
  3178. PARSE_ERROR1;
  3179. m->mdmreg[REG_SI1] = 1;
  3180. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_FAX;
  3181. m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_FCLASS2;
  3182. info->xmit_size =
  3183.     m->mdmreg[REG_PSIZE] * 16;
  3184. break;
  3185. #endif
  3186. case '8':
  3187. p[0]++;
  3188. /* L2 will change on dialout with si=1 */
  3189. m->mdmreg[REG_L2PROT] = ISDN_PROTO_L2_X75I;
  3190. m->mdmreg[REG_L3PROT] = ISDN_PROTO_L3_TRANS;
  3191. m->mdmreg[REG_SI1] = 5;
  3192. info->xmit_size = VBUF;
  3193. break;
  3194. case '?':
  3195. p[0]++;
  3196. strcpy(rs, "rn0,");
  3197. #ifdef CONFIG_ISDN_TTY_FAX
  3198. if (dev->global_features &
  3199. ISDN_FEATURE_L3_FCLASS1)
  3200. strcat(rs, "1,");
  3201. if (dev->global_features &
  3202. ISDN_FEATURE_L3_FCLASS2)
  3203. strcat(rs, "2,");
  3204. #endif
  3205. strcat(rs, "8");
  3206. isdn_tty_at_cout(rs, info);
  3207. break;
  3208. default:
  3209. PARSE_ERROR1;
  3210. }
  3211. break;
  3212. default:
  3213. PARSE_ERROR1;
  3214. }
  3215. return 0;
  3216. }
  3217. #ifdef CONFIG_ISDN_TTY_FAX
  3218. return (isdn_tty_cmd_PLUSF_FAX(p, info));
  3219. #else
  3220. PARSE_ERROR1;
  3221. #endif
  3222. }
  3223. /*
  3224.  * Parse AT+V.. commands
  3225.  */
  3226. static int
  3227. isdn_tty_cmd_PLUSV(char **p, modem_info * info)
  3228. {
  3229. atemu *m = &info->emu;
  3230. isdn_ctrl cmd;
  3231. static char *vcmd[] =
  3232. {"NH", "IP", "LS", "RX", "SD", "SM", "TX", "DD", NULL};
  3233. int i;
  3234. int par1;
  3235. int par2;
  3236. char rs[20];
  3237. i = 0;
  3238. while (vcmd[i]) {
  3239. if (!strncmp(vcmd[i], p[0], 2)) {
  3240. p[0] += 2;
  3241. break;
  3242. }
  3243. i++;
  3244. }
  3245. switch (i) {
  3246. case 0:
  3247. /* AT+VNH - Auto hangup feature */
  3248. switch (*p[0]) {
  3249. case '?':
  3250. p[0]++;
  3251. isdn_tty_at_cout("rn1", info);
  3252. break;
  3253. case '=':
  3254. p[0]++;
  3255. switch (*p[0]) {
  3256. case '1':
  3257. p[0]++;
  3258. break;
  3259. case '?':
  3260. p[0]++;
  3261. isdn_tty_at_cout("rn1", info);
  3262. break;
  3263. default:
  3264. PARSE_ERROR1;
  3265. }
  3266. break;
  3267. default:
  3268. PARSE_ERROR1;
  3269. }
  3270. break;
  3271. case 1:
  3272. /* AT+VIP - Reset all voice parameters */
  3273. isdn_tty_modem_reset_vpar(m);
  3274. break;
  3275. case 2:
  3276. /* AT+VLS - Select device, accept incoming call */
  3277. switch (*p[0]) {
  3278. case '?':
  3279. p[0]++;
  3280. sprintf(rs, "rn%d", m->vpar[0]);
  3281. isdn_tty_at_cout(rs, info);
  3282. break;
  3283. case '=':
  3284. p[0]++;
  3285. switch (*p[0]) {
  3286. case '0':
  3287. p[0]++;
  3288. m->vpar[0] = 0;
  3289. break;
  3290. case '2':
  3291. p[0]++;
  3292. m->vpar[0] = 2;
  3293. break;
  3294. case '?':
  3295. p[0]++;
  3296. isdn_tty_at_cout("rn0,2", info);
  3297. break;
  3298. default:
  3299. PARSE_ERROR1;
  3300. }
  3301. break;
  3302. default:
  3303. PARSE_ERROR1;
  3304. }
  3305. break;
  3306. case 3:
  3307. /* AT+VRX - Start recording */
  3308. if (!m->vpar[0])
  3309. PARSE_ERROR1;
  3310. if (info->online != 1) {
  3311. isdn_tty_modem_result(RESULT_NO_ANSWER, info);
  3312. return 1;
  3313. }
  3314. info->dtmf_state = isdn_audio_dtmf_init(info->dtmf_state);
  3315. if (!info->dtmf_state) {
  3316. printk(KERN_WARNING "isdn_tty: Couldn't malloc dtmf staten");
  3317. PARSE_ERROR1;
  3318. }
  3319. info->silence_state = isdn_audio_silence_init(info->silence_state);
  3320. if (!info->silence_state) {
  3321. printk(KERN_WARNING "isdn_tty: Couldn't malloc silence staten");
  3322. PARSE_ERROR1;
  3323. }
  3324. if (m->vpar[3] < 5) {
  3325. info->adpcmr = isdn_audio_adpcm_init(info->adpcmr, m->vpar[3]);
  3326. if (!info->adpcmr) {
  3327. printk(KERN_WARNING "isdn_tty: Couldn't malloc adpcm staten");
  3328. PARSE_ERROR1;
  3329. }
  3330. }
  3331. #ifdef ISDN_DEBUG_AT
  3332. printk(KERN_DEBUG "AT: +VRXn");
  3333. #endif
  3334. info->vonline |= 1;
  3335. isdn_tty_modem_result(RESULT_CONNECT, info);
  3336. return 0;
  3337. break;
  3338. case 4:
  3339. /* AT+VSD - Silence detection */
  3340. switch (*p[0]) {
  3341. case '?':
  3342. p[0]++;
  3343. sprintf(rs, "rn<%d>,<%d>",
  3344. m->vpar[1],
  3345. m->vpar[2]);
  3346. isdn_tty_at_cout(rs, info);
  3347. break;
  3348. case '=':
  3349. p[0]++;
  3350. if ((*p[0]>='0') && (*p[0]<='9')) {
  3351. par1 = isdn_getnum(p);
  3352. if ((par1 < 0) || (par1 > 31))
  3353. PARSE_ERROR1;
  3354. if (*p[0] != ',')
  3355. PARSE_ERROR1;
  3356. p[0]++;
  3357. par2 = isdn_getnum(p);
  3358. if ((par2 < 0) || (par2 > 255))
  3359. PARSE_ERROR1;
  3360. m->vpar[1] = par1;
  3361. m->vpar[2] = par2;
  3362. break;
  3363. } else 
  3364. if (*p[0] == '?') {
  3365. p[0]++;
  3366. isdn_tty_at_cout("rn<0-31>,<0-255>",
  3367.    info);
  3368. break;
  3369. } else
  3370. PARSE_ERROR1;
  3371. break;
  3372. default:
  3373. PARSE_ERROR1;
  3374. }
  3375. break;
  3376. case 5:
  3377. /* AT+VSM - Select compression */
  3378. switch (*p[0]) {
  3379. case '?':
  3380. p[0]++;
  3381. sprintf(rs, "rn<%d>,<%d><8000>",
  3382. m->vpar[3],
  3383. m->vpar[1]);
  3384. isdn_tty_at_cout(rs, info);
  3385. break;
  3386. case '=':
  3387. p[0]++;
  3388. switch (*p[0]) {
  3389. case '2':
  3390. case '3':
  3391. case '4':
  3392. case '5':
  3393. case '6':
  3394. par1 = isdn_getnum(p);
  3395. if ((par1 < 2) || (par1 > 6))
  3396. PARSE_ERROR1;
  3397. m->vpar[3] = par1;
  3398. break;
  3399. case '?':
  3400. p[0]++;
  3401. isdn_tty_at_cout("rn2;ADPCM;2;0;(8000)rn",
  3402.    info);
  3403. isdn_tty_at_cout("3;ADPCM;3;0;(8000)rn",
  3404.    info);
  3405. isdn_tty_at_cout("4;ADPCM;4;0;(8000)rn",
  3406.    info);
  3407. isdn_tty_at_cout("5;ALAW;8;0;(8000)rn",
  3408.    info);
  3409. isdn_tty_at_cout("6;ULAW;8;0;(8000)rn",
  3410.    info);
  3411. break;
  3412. default:
  3413. PARSE_ERROR1;
  3414. }
  3415. break;
  3416. default:
  3417. PARSE_ERROR1;
  3418. }
  3419. break;
  3420. case 6:
  3421. /* AT+VTX - Start sending */
  3422. if (!m->vpar[0])
  3423. PARSE_ERROR1;
  3424. if (info->online != 1) {
  3425. isdn_tty_modem_result(RESULT_NO_ANSWER, info);
  3426. return 1;
  3427. }
  3428. info->dtmf_state = isdn_audio_dtmf_init(info->dtmf_state);
  3429. if (!info->dtmf_state) {
  3430. printk(KERN_WARNING "isdn_tty: Couldn't malloc dtmf staten");
  3431. PARSE_ERROR1;
  3432. }
  3433. if (m->vpar[3] < 5) {
  3434. info->adpcms = isdn_audio_adpcm_init(info->adpcms, m->vpar[3]);
  3435. if (!info->adpcms) {
  3436. printk(KERN_WARNING "isdn_tty: Couldn't malloc adpcm staten");
  3437. PARSE_ERROR1;
  3438. }
  3439. }
  3440. #ifdef ISDN_DEBUG_AT
  3441. printk(KERN_DEBUG "AT: +VTXn");
  3442. #endif
  3443. m->lastDLE = 0;
  3444. info->vonline |= 2;
  3445. isdn_tty_modem_result(RESULT_CONNECT, info);
  3446. return 0;
  3447. break;
  3448. case 7:
  3449. /* AT+VDD - DTMF detection */
  3450. switch (*p[0]) {
  3451. case '?':
  3452. p[0]++;
  3453. sprintf(rs, "rn<%d>,<%d>",
  3454. m->vpar[4],
  3455. m->vpar[5]);
  3456. isdn_tty_at_cout(rs, info);
  3457. break;
  3458. case '=':
  3459. p[0]++;
  3460. if ((*p[0]>='0') && (*p[0]<='9')) {
  3461. if (info->online != 1)
  3462. PARSE_ERROR1;
  3463. par1 = isdn_getnum(p);
  3464. if ((par1 < 0) || (par1 > 15))
  3465. PARSE_ERROR1;
  3466. if (*p[0] != ',')
  3467. PARSE_ERROR1;
  3468. p[0]++;
  3469. par2 = isdn_getnum(p);
  3470. if ((par2 < 0) || (par2 > 255))
  3471. PARSE_ERROR1;
  3472. m->vpar[4] = par1;
  3473. m->vpar[5] = par2;
  3474. cmd.driver = info->isdn_driver;
  3475. cmd.command = ISDN_CMD_AUDIO;
  3476. cmd.arg = info->isdn_channel + (ISDN_AUDIO_SETDD << 8);
  3477. cmd.parm.num[0] = par1;
  3478. cmd.parm.num[1] = par2;
  3479. isdn_command(&cmd);
  3480. break;
  3481. } else
  3482. if (*p[0] == '?') {
  3483. p[0]++;
  3484. isdn_tty_at_cout("rn<0-15>,<0-255>",
  3485. info);
  3486. break;
  3487. } else
  3488. PARSE_ERROR1;
  3489. break;
  3490. default:
  3491. PARSE_ERROR1;
  3492. }
  3493. break;
  3494. default:
  3495. PARSE_ERROR1;
  3496. }
  3497. return 0;
  3498. }
  3499. #endif                          /* CONFIG_ISDN_AUDIO */
  3500. /*
  3501.  * Parse and perform an AT-command-line.
  3502.  */
  3503. static void
  3504. isdn_tty_parse_at(modem_info * info)
  3505. {
  3506. atemu *m = &info->emu;
  3507. char *p;
  3508. char ds[40];
  3509. #ifdef ISDN_DEBUG_AT
  3510. printk(KERN_DEBUG "AT: '%s'n", m->mdmcmd);
  3511. #endif
  3512. for (p = &m->mdmcmd[2]; *p;) {
  3513. switch (*p) {
  3514. case ' ':
  3515. p++;
  3516. break;
  3517. case 'A':
  3518. /* A - Accept incoming call */
  3519. p++;
  3520. isdn_tty_cmd_ATA(info);
  3521. return;
  3522. break;
  3523. case 'D':
  3524. /* D - Dial */
  3525. if (info->msr & UART_MSR_DCD)
  3526. PARSE_ERROR;
  3527. if (info->msr & UART_MSR_RI) {
  3528. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  3529. return;
  3530. }
  3531. isdn_tty_getdial(++p, ds, sizeof ds);
  3532. p += strlen(p);
  3533. if (!strlen(m->msn))
  3534. isdn_tty_modem_result(RESULT_NO_MSN_EAZ, info);
  3535. else if (strlen(ds))
  3536. isdn_tty_dial(ds, info, m);
  3537. else
  3538. PARSE_ERROR;
  3539. return;
  3540. case 'E':
  3541. /* E - Turn Echo on/off */
  3542. p++;
  3543. switch (isdn_getnum(&p)) {
  3544. case 0:
  3545. m->mdmreg[REG_ECHO] &= ~BIT_ECHO;
  3546. break;
  3547. case 1:
  3548. m->mdmreg[REG_ECHO] |= BIT_ECHO;
  3549. break;
  3550. default:
  3551. PARSE_ERROR;
  3552. }
  3553. break;
  3554. case 'H':
  3555. /* H - On/Off-hook */
  3556. p++;
  3557. switch (*p) {
  3558. case '0':
  3559. p++;
  3560. isdn_tty_on_hook(info);
  3561. break;
  3562. case '1':
  3563. p++;
  3564. isdn_tty_off_hook();
  3565. break;
  3566. default:
  3567. isdn_tty_on_hook(info);
  3568. break;
  3569. }
  3570. break;
  3571. case 'I':
  3572. /* I - Information */
  3573. p++;
  3574. isdn_tty_at_cout("rnLinux ISDN", info);
  3575. switch (*p) {
  3576. case '0':
  3577. case '1':
  3578. p++;
  3579. break;
  3580. case '2':
  3581. p++;
  3582. isdn_tty_report(info);
  3583. break;
  3584. case '3':
  3585.                                                 p++;
  3586.                                                 sprintf(ds, "rn%d", info->emu.charge);
  3587.                                                 isdn_tty_at_cout(ds, info);
  3588.                                                 break;
  3589. default:;
  3590. }
  3591. break;
  3592. #ifdef DUMMY_HAYES_AT
  3593. case 'L':
  3594. case 'M':
  3595. /* only for be compilant with common scripts */
  3596. /* no function */
  3597. p++;
  3598. isdn_getnum(&p);
  3599. break;
  3600. #endif
  3601. case 'O':
  3602. /* O - Go online */
  3603. p++;
  3604. if (info->msr & UART_MSR_DCD)
  3605. /* if B-Channel is up */
  3606. isdn_tty_modem_result((m->mdmreg[REG_L2PROT] == ISDN_PROTO_L2_MODEM) ? RESULT_CONNECT:RESULT_CONNECT64000, info);
  3607. else
  3608. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  3609. return;
  3610. case 'Q':
  3611. /* Q - Turn Emulator messages on/off */
  3612. p++;
  3613. switch (isdn_getnum(&p)) {
  3614. case 0:
  3615. m->mdmreg[REG_RESP] |= BIT_RESP;
  3616. break;
  3617. case 1:
  3618. m->mdmreg[REG_RESP] &= ~BIT_RESP;
  3619. break;
  3620. default:
  3621. PARSE_ERROR;
  3622. }
  3623. break;
  3624. case 'S':
  3625. /* S - Set/Get Register */
  3626. p++;
  3627. if (isdn_tty_cmd_ATS(&p, info))
  3628. return;
  3629. break;
  3630. case 'V':
  3631. /* V - Numeric or ASCII Emulator-messages */
  3632. p++;
  3633. switch (isdn_getnum(&p)) {
  3634. case 0:
  3635. m->mdmreg[REG_RESP] |= BIT_RESPNUM;
  3636. break;
  3637. case 1:
  3638. m->mdmreg[REG_RESP] &= ~BIT_RESPNUM;
  3639. break;
  3640. default:
  3641. PARSE_ERROR;
  3642. }
  3643. break;
  3644. case 'Z':
  3645. /* Z - Load Registers from Profile */
  3646. p++;
  3647. if (info->msr & UART_MSR_DCD) {
  3648. info->online = 0;
  3649. isdn_tty_on_hook(info);
  3650. }
  3651. isdn_tty_modem_reset_regs(info, 1);
  3652. break;
  3653. case '+':
  3654. p++;
  3655. switch (*p) {
  3656. #ifdef CONFIG_ISDN_AUDIO
  3657. case 'F':
  3658. p++;
  3659. if (isdn_tty_cmd_PLUSF(&p, info))
  3660. return;
  3661. break;
  3662. case 'V':
  3663. if ((!(m->mdmreg[REG_SI1] & 1)) ||
  3664. (m->mdmreg[REG_L2PROT] == ISDN_PROTO_L2_MODEM))
  3665. PARSE_ERROR;
  3666. p++;
  3667. if (isdn_tty_cmd_PLUSV(&p, info))
  3668. return;
  3669. break;
  3670. #endif                          /* CONFIG_ISDN_AUDIO */
  3671. case 'S': /* SUSPEND */
  3672. p++;
  3673. isdn_tty_get_msnstr(ds, &p);
  3674. isdn_tty_suspend(ds, info, m);
  3675. break;
  3676. case 'R': /* RESUME */
  3677. p++;
  3678. isdn_tty_get_msnstr(ds, &p);
  3679. isdn_tty_resume(ds, info, m);
  3680. break;
  3681. case 'M': /* MESSAGE */
  3682. p++;
  3683. isdn_tty_send_msg(info, m, p);
  3684. break;
  3685. default:
  3686. PARSE_ERROR;
  3687. }
  3688. break;
  3689. case '&':
  3690. p++;
  3691. if (isdn_tty_cmd_ATand(&p, info))
  3692. return;
  3693. break;
  3694. default:
  3695. PARSE_ERROR;
  3696. }
  3697. }
  3698. #ifdef CONFIG_ISDN_AUDIO
  3699. if (!info->vonline)
  3700. #endif
  3701. isdn_tty_modem_result(RESULT_OK, info);
  3702. }
  3703. /* Need own toupper() because standard-toupper is not available
  3704.  * within modules.
  3705.  */
  3706. #define my_toupper(c) (((c>='a')&&(c<='z'))?(c&0xdf):c)
  3707. /*
  3708.  * Perform line-editing of AT-commands
  3709.  *
  3710.  * Parameters:
  3711.  *   p        inputbuffer
  3712.  *   count    length of buffer
  3713.  *   channel  index to line (minor-device)
  3714.  *   user     flag: buffer is in userspace
  3715.  */
  3716. static int
  3717. isdn_tty_edit_at(const char *p, int count, modem_info * info, int user)
  3718. {
  3719. atemu *m = &info->emu;
  3720. int total = 0;
  3721. u_char c;
  3722. char eb[2];
  3723. int cnt;
  3724. for (cnt = count; cnt > 0; p++, cnt--) {
  3725. if (user)
  3726. get_user(c, p);
  3727. else
  3728. c = *p;
  3729. total++;
  3730. if (c == m->mdmreg[REG_CR] || c == m->mdmreg[REG_LF]) {
  3731. /* Separator (CR or LF) */
  3732. m->mdmcmd[m->mdmcmdl] = 0;
  3733. if (m->mdmreg[REG_ECHO] & BIT_ECHO) {
  3734. eb[0] = c;
  3735. eb[1] = 0;
  3736. isdn_tty_at_cout(eb, info);
  3737. }
  3738. if ((m->mdmcmdl >= 2) && (!(strncmp(m->mdmcmd, "AT", 2))))
  3739. isdn_tty_parse_at(info);
  3740. m->mdmcmdl = 0;
  3741. continue;
  3742. }
  3743. if (c == m->mdmreg[REG_BS] && m->mdmreg[REG_BS] < 128) {
  3744. /* Backspace-Function */
  3745. if ((m->mdmcmdl > 2) || (!m->mdmcmdl)) {
  3746. if (m->mdmcmdl)
  3747. m->mdmcmdl--;
  3748. if (m->mdmreg[REG_ECHO] & BIT_ECHO)
  3749. isdn_tty_at_cout("b", info);
  3750. }
  3751. continue;
  3752. }
  3753. if (cmdchar(c)) {
  3754. if (m->mdmreg[REG_ECHO] & BIT_ECHO) {
  3755. eb[0] = c;
  3756. eb[1] = 0;
  3757. isdn_tty_at_cout(eb, info);
  3758. }
  3759. if (m->mdmcmdl < 255) {
  3760. c = my_toupper(c);
  3761. switch (m->mdmcmdl) {
  3762. case 1:
  3763. if (c == 'T') {
  3764. m->mdmcmd[m->mdmcmdl] = c;
  3765. m->mdmcmd[++m->mdmcmdl] = 0;
  3766. break;
  3767. } else
  3768. m->mdmcmdl = 0;
  3769. /* Fall through, check for 'A' */
  3770. case 0:
  3771. if (c == 'A') {
  3772. m->mdmcmd[m->mdmcmdl] = c;
  3773. m->mdmcmd[++m->mdmcmdl] = 0;
  3774. }
  3775. break;
  3776. default:
  3777. m->mdmcmd[m->mdmcmdl] = c;
  3778. m->mdmcmd[++m->mdmcmdl] = 0;
  3779. }
  3780. }
  3781. }
  3782. }
  3783. return total;
  3784. }
  3785. /*
  3786.  * Switch all modem-channels who are online and got a valid
  3787.  * escape-sequence 1.5 seconds ago, to command-mode.
  3788.  * This function is called every second via timer-interrupt from within
  3789.  * timer-dispatcher isdn_timer_function()
  3790.  */
  3791. void
  3792. isdn_tty_modem_escape(void)
  3793. {
  3794. int ton = 0;
  3795. int i;
  3796. int midx;
  3797. for (i = 0; i < ISDN_MAX_CHANNELS; i++)
  3798. if (USG_MODEM(dev->usage[i]))
  3799. if ((midx = dev->m_idx[i]) >= 0) {
  3800. modem_info *info = &dev->mdm.info[midx];
  3801. if (info->online) {
  3802. ton = 1;
  3803. if ((info->emu.pluscount == 3) &&
  3804.     time_after(jiffies , info->emu.lastplus + PLUSWAIT2)) {
  3805. info->emu.pluscount = 0;
  3806. info->online = 0;
  3807. isdn_tty_modem_result(RESULT_OK, info);
  3808. }
  3809. }
  3810. }
  3811. isdn_timer_ctrl(ISDN_TIMER_MODEMPLUS, ton);
  3812. }
  3813. /*
  3814.  * Put a RING-message to all modem-channels who have the RI-bit set.
  3815.  * This function is called every second via timer-interrupt from within
  3816.  * timer-dispatcher isdn_timer_function()
  3817.  */
  3818. void
  3819. isdn_tty_modem_ring(void)
  3820. {
  3821. int ton = 0;
  3822. int i;
  3823. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  3824. modem_info *info = &dev->mdm.info[i];
  3825. if (info->msr & UART_MSR_RI) {
  3826. ton = 1;
  3827. isdn_tty_modem_result(RESULT_RING, info);
  3828. }
  3829. }
  3830. isdn_timer_ctrl(ISDN_TIMER_MODEMRING, ton);
  3831. }
  3832. /*
  3833.  * For all online tty's, try sending data to
  3834.  * the lower levels.
  3835.  */
  3836. void
  3837. isdn_tty_modem_xmit(void)
  3838. {
  3839. int ton = 1;
  3840. int i;
  3841. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  3842. modem_info *info = &dev->mdm.info[i];
  3843. if (info->online) {
  3844. ton = 1;
  3845. isdn_tty_senddown(info);
  3846. isdn_tty_tint(info);
  3847. }
  3848. }
  3849. isdn_timer_ctrl(ISDN_TIMER_MODEMXMIT, ton);
  3850. }
  3851. /*
  3852.  * Check all channels if we have a 'no carrier' timeout.
  3853.  * Timeout value is set by Register S7.
  3854.  */
  3855. void
  3856. isdn_tty_carrier_timeout(void)
  3857. {
  3858. int ton = 0;
  3859. int i;
  3860. for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
  3861. modem_info *info = &dev->mdm.info[i];
  3862. if (info->dialing) {
  3863. if (info->emu.carrierwait++ > info->emu.mdmreg[REG_WAITC]) {
  3864. info->dialing = 0;
  3865. isdn_tty_modem_result(RESULT_NO_CARRIER, info);
  3866. isdn_tty_modem_hup(info, 1);
  3867. }
  3868. else
  3869. ton = 1;
  3870. }
  3871. }
  3872. isdn_timer_ctrl(ISDN_TIMER_CARRIER, ton);
  3873. }