callc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:49k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: callc.c,v 1.1.4.1 2001/11/20 14:19:35 kai Exp $
  2.  *
  3.  * Author       Karsten Keil
  4.  * Copyright    by Karsten Keil      <keil@isdn4linux.de>
  5.  * 
  6.  * This software may be used and distributed according to the terms
  7.  * of the GNU General Public License, incorporated herein by reference.
  8.  *
  9.  * For changes and modifications please read
  10.  * ../../../Documentation/isdn/HiSax.cert
  11.  *
  12.  * based on the teles driver from Jan den Ouden
  13.  *
  14.  * Thanks to    Jan den Ouden
  15.  *              Fritz Elfert
  16.  *
  17.  */
  18. #define __NO_VERSION__
  19. #include <linux/module.h>
  20. #include <linux/init.h>
  21. #include "hisax.h"
  22. #include "../avmb1/capicmd.h"  /* this should be moved in a common place */
  23. #ifdef MODULE
  24. #define MOD_USE_COUNT ( GET_USE_COUNT (&__this_module))
  25. #endif /* MODULE */
  26. const char *lli_revision = "$Revision: 1.1.4.1 $";
  27. extern struct IsdnCard cards[];
  28. extern int nrcards;
  29. extern void HiSax_mod_dec_use_count(struct IsdnCardState *cs);
  30. extern void HiSax_mod_inc_use_count(struct IsdnCardState *cs);
  31. static int init_b_st(struct Channel *chanp, int incoming);
  32. static void release_b_st(struct Channel *chanp);
  33. static struct Fsm callcfsm;
  34. static int chancount;
  35. /* experimental REJECT after ALERTING for CALLBACK to beat the 4s delay */
  36. #define ALERT_REJECT 0
  37. /* Value to delay the sending of the first B-channel paket after CONNECT
  38.  * here is no value given by ITU, but experience shows that 300 ms will
  39.  * work on many networks, if you or your other side is behind local exchanges
  40.  * a greater value may be recommented. If the delay is to short the first paket
  41.  * will be lost and autodetect on many comercial routers goes wrong !
  42.  * You can adjust this value on runtime with
  43.  * hisaxctrl <id> 2 <value>
  44.  * value is in milliseconds
  45.  */
  46. #define DEFAULT_B_DELAY 300
  47. /* Flags for remembering action done in lli */
  48. #define  FLG_START_B 0
  49. /*
  50.  * Find card with given driverId
  51.  */
  52. static inline struct IsdnCardState *
  53. hisax_findcard(int driverid)
  54. {
  55. int i;
  56. for (i = 0; i < nrcards; i++)
  57. if (cards[i].cs)
  58. if (cards[i].cs->myid == driverid)
  59. return (cards[i].cs);
  60. return (struct IsdnCardState *) 0;
  61. }
  62. static void
  63. link_debug(struct Channel *chanp, int direction, char *fmt, ...)
  64. {
  65. va_list args;
  66. char tmp[16];
  67. va_start(args, fmt);
  68. sprintf(tmp, "Ch%d %s ", chanp->chan,
  69. direction ? "LL->HL" : "HL->LL");
  70. VHiSax_putstatus(chanp->cs, tmp, fmt, args);
  71. va_end(args);
  72. }
  73. enum {
  74. ST_NULL, /*  0 inactive */
  75. ST_OUT_DIAL, /*  1 outgoing, SETUP send; awaiting confirm */
  76. ST_IN_WAIT_LL, /*  2 incoming call received; wait for LL confirm */
  77. ST_IN_ALERT_SENT, /*  3 incoming call received; ALERT send */
  78. ST_IN_WAIT_CONN_ACK, /*  4 incoming CONNECT send; awaiting CONN_ACK */
  79. ST_WAIT_BCONN, /*  5 CONNECT/CONN_ACK received, awaiting b-channel prot. estbl. */
  80. ST_ACTIVE, /*  6 active, b channel prot. established */
  81. ST_WAIT_BRELEASE, /*  7 call clear. (initiator), awaiting b channel prot. rel. */
  82. ST_WAIT_BREL_DISC, /*  8 call clear. (receiver), DISCONNECT req. received */
  83. ST_WAIT_DCOMMAND, /*  9 call clear. (receiver), awaiting DCHANNEL message */
  84. ST_WAIT_DRELEASE, /* 10 DISCONNECT sent, awaiting RELEASE */
  85. ST_WAIT_D_REL_CNF, /* 11 RELEASE sent, awaiting RELEASE confirm */
  86. ST_IN_PROCEED_SEND, /* 12 incoming call, proceeding send */ 
  87. };
  88.   
  89. #define STATE_COUNT (ST_IN_PROCEED_SEND + 1)
  90. static char *strState[] =
  91. {
  92. "ST_NULL",
  93. "ST_OUT_DIAL",
  94. "ST_IN_WAIT_LL",
  95. "ST_IN_ALERT_SENT",
  96. "ST_IN_WAIT_CONN_ACK",
  97. "ST_WAIT_BCONN",
  98. "ST_ACTIVE",
  99. "ST_WAIT_BRELEASE",
  100. "ST_WAIT_BREL_DISC",
  101. "ST_WAIT_DCOMMAND",
  102. "ST_WAIT_DRELEASE",
  103. "ST_WAIT_D_REL_CNF",
  104. "ST_IN_PROCEED_SEND",
  105. };
  106. enum {
  107. EV_DIAL, /*  0 */
  108. EV_SETUP_CNF, /*  1 */
  109. EV_ACCEPTB, /*  2 */
  110. EV_DISCONNECT_IND, /*  3 */
  111. EV_RELEASE,  /*  4 */
  112. EV_LEASED, /*  5 */
  113. EV_LEASED_REL, /*  6 */
  114. EV_SETUP_IND, /*  7 */
  115. EV_ACCEPTD, /*  8 */
  116. EV_SETUP_CMPL_IND, /*  9 */
  117. EV_BC_EST, /* 10 */
  118. EV_WRITEBUF, /* 11 */
  119. EV_HANGUP, /* 12 */
  120. EV_BC_REL, /* 13 */
  121. EV_CINF, /* 14 */
  122. EV_SUSPEND, /* 15 */
  123. EV_RESUME, /* 16 */
  124. EV_NOSETUP_RSP, /* 17 */
  125. EV_SETUP_ERR, /* 18 */
  126. EV_CONNECT_ERR, /* 19 */
  127. EV_PROCEED, /* 20 */
  128. EV_ALERT, /* 21 */ 
  129. EV_REDIR, /* 22 */ 
  130. };
  131. #define EVENT_COUNT (EV_REDIR + 1)
  132. static char *strEvent[] =
  133. {
  134. "EV_DIAL",
  135. "EV_SETUP_CNF",
  136. "EV_ACCEPTB",
  137. "EV_DISCONNECT_IND",
  138. "EV_RELEASE",
  139. "EV_LEASED",
  140. "EV_LEASED_REL",
  141. "EV_SETUP_IND",
  142. "EV_ACCEPTD",
  143. "EV_SETUP_CMPL_IND",
  144. "EV_BC_EST",
  145. "EV_WRITEBUF",
  146. "EV_HANGUP",
  147. "EV_BC_REL",
  148. "EV_CINF",
  149. "EV_SUSPEND",
  150. "EV_RESUME",
  151. "EV_NOSETUP_RSP",
  152. "EV_SETUP_ERR",
  153. "EV_CONNECT_ERR",
  154. "EV_PROCEED",
  155. "EV_ALERT",
  156. "EV_REDIR",
  157. };
  158. static inline void
  159. HL_LL(struct Channel *chanp, int command)
  160. {
  161. isdn_ctrl ic;
  162. ic.driver = chanp->cs->myid;
  163. ic.command = command;
  164. ic.arg = chanp->chan;
  165. chanp->cs->iif.statcallb(&ic);
  166. }
  167. static inline void
  168. lli_deliver_cause(struct Channel *chanp)
  169. {
  170. isdn_ctrl ic;
  171. if (!chanp->proc)
  172. return;
  173. if (chanp->proc->para.cause == NO_CAUSE)
  174. return;
  175. ic.driver = chanp->cs->myid;
  176. ic.command = ISDN_STAT_CAUSE;
  177. ic.arg = chanp->chan;
  178. if (chanp->cs->protocol == ISDN_PTYPE_EURO)
  179. sprintf(ic.parm.num, "E%02X%02X", chanp->proc->para.loc & 0x7f,
  180. chanp->proc->para.cause & 0x7f);
  181. else
  182. sprintf(ic.parm.num, "%02X%02X", chanp->proc->para.loc & 0x7f,
  183. chanp->proc->para.cause & 0x7f);
  184. chanp->cs->iif.statcallb(&ic);
  185. }
  186. static inline void
  187. lli_close(struct FsmInst *fi)
  188. {
  189. struct Channel *chanp = fi->userdata;
  190. FsmChangeState(fi, ST_NULL);
  191. chanp->Flags = 0;
  192. chanp->cs->cardmsg(chanp->cs, MDL_INFO_REL, (void *) (long)chanp->chan);
  193. }
  194. static void
  195. lli_leased_in(struct FsmInst *fi, int event, void *arg)
  196. {
  197. struct Channel *chanp = fi->userdata;
  198. isdn_ctrl ic;
  199. int ret;
  200. if (!chanp->leased)
  201. return;
  202. chanp->cs->cardmsg(chanp->cs, MDL_INFO_SETUP, (void *) (long)chanp->chan);
  203. FsmChangeState(fi, ST_IN_WAIT_LL);
  204. if (chanp->debug & 1)
  205. link_debug(chanp, 0, "STAT_ICALL_LEASED");
  206. ic.driver = chanp->cs->myid;
  207. ic.command = ((chanp->chan < 2) ? ISDN_STAT_ICALL : ISDN_STAT_ICALLW);
  208. ic.arg = chanp->chan;
  209. ic.parm.setup.si1 = 7;
  210. ic.parm.setup.si2 = 0;
  211. ic.parm.setup.plan = 0;
  212. ic.parm.setup.screen = 0;
  213. sprintf(ic.parm.setup.eazmsn,"%d", chanp->chan + 1);
  214. sprintf(ic.parm.setup.phone,"LEASED%d", chanp->cs->myid);
  215. ret = chanp->cs->iif.statcallb(&ic);
  216. if (chanp->debug & 1)
  217. link_debug(chanp, 1, "statcallb ret=%d", ret);
  218. if (!ret) {
  219. chanp->cs->cardmsg(chanp->cs, MDL_INFO_REL, (void *) (long)chanp->chan);
  220. FsmChangeState(fi, ST_NULL);
  221. }
  222. }
  223. /*
  224.  * Dial out
  225.  */
  226. static void
  227. lli_init_bchan_out(struct FsmInst *fi, int event, void *arg)
  228. {
  229. struct Channel *chanp = fi->userdata;
  230. FsmChangeState(fi, ST_WAIT_BCONN);
  231. if (chanp->debug & 1)
  232. link_debug(chanp, 0, "STAT_DCONN");
  233. HL_LL(chanp, ISDN_STAT_DCONN);
  234. init_b_st(chanp, 0);
  235. chanp->b_st->lli.l4l3(chanp->b_st, DL_ESTABLISH | REQUEST, NULL);
  236. }
  237. static void
  238. lli_prep_dialout(struct FsmInst *fi, int event, void *arg)
  239. {
  240. struct Channel *chanp = fi->userdata;
  241. FsmDelTimer(&chanp->drel_timer, 60);
  242. FsmDelTimer(&chanp->dial_timer, 73);
  243. chanp->l2_active_protocol = chanp->l2_protocol;
  244. chanp->incoming = 0;
  245. chanp->cs->cardmsg(chanp->cs, MDL_INFO_SETUP, (void *) (long)chanp->chan);
  246. if (chanp->leased) {
  247. lli_init_bchan_out(fi, event, arg);
  248. } else {
  249. FsmChangeState(fi, ST_OUT_DIAL);
  250. chanp->d_st->lli.l4l3(chanp->d_st, CC_SETUP | REQUEST, chanp);
  251. }
  252. }
  253. static void
  254. lli_resume(struct FsmInst *fi, int event, void *arg)
  255. {
  256. struct Channel *chanp = fi->userdata;
  257. FsmDelTimer(&chanp->drel_timer, 60);
  258. FsmDelTimer(&chanp->dial_timer, 73);
  259. chanp->l2_active_protocol = chanp->l2_protocol;
  260. chanp->incoming = 0;
  261. chanp->cs->cardmsg(chanp->cs, MDL_INFO_SETUP, (void *) (long)chanp->chan);
  262. if (chanp->leased) {
  263. lli_init_bchan_out(fi, event, arg);
  264. } else {
  265. FsmChangeState(fi, ST_OUT_DIAL);
  266. chanp->d_st->lli.l4l3(chanp->d_st, CC_RESUME | REQUEST, chanp);
  267. }
  268. }
  269. static void
  270. lli_go_active(struct FsmInst *fi, int event, void *arg)
  271. {
  272. struct Channel *chanp = fi->userdata;
  273. isdn_ctrl ic;
  274. FsmChangeState(fi, ST_ACTIVE);
  275. chanp->data_open = !0;
  276. if (chanp->bcs->conmsg)
  277. strcpy(ic.parm.num, chanp->bcs->conmsg);
  278. else
  279. ic.parm.num[0] = 0;
  280. if (chanp->debug & 1)
  281. link_debug(chanp, 0, "STAT_BCONN %s", ic.parm.num);
  282. ic.driver = chanp->cs->myid;
  283. ic.command = ISDN_STAT_BCONN;
  284. ic.arg = chanp->chan;
  285. chanp->cs->iif.statcallb(&ic);
  286. chanp->cs->cardmsg(chanp->cs, MDL_INFO_CONN, (void *) (long)chanp->chan);
  287. }
  288. /*
  289.  * RESUME
  290.  */
  291. /* incoming call */
  292. static void
  293. lli_deliver_call(struct FsmInst *fi, int event, void *arg)
  294. {
  295. struct Channel *chanp = fi->userdata;
  296. isdn_ctrl ic;
  297. int ret;
  298. chanp->cs->cardmsg(chanp->cs, MDL_INFO_SETUP, (void *) (long)chanp->chan);
  299. /*
  300.  * Report incoming calls only once to linklevel, use CallFlags
  301.  * which is set to 3 with each broadcast message in isdnl1.c
  302.  * and resetted if a interface  answered the STAT_ICALL.
  303.  */
  304. if (1) { /* for only one TEI */
  305. FsmChangeState(fi, ST_IN_WAIT_LL);
  306. if (chanp->debug & 1)
  307. link_debug(chanp, 0, (chanp->chan < 2) ? "STAT_ICALL" : "STAT_ICALLW");
  308. ic.driver = chanp->cs->myid;
  309. ic.command = ((chanp->chan < 2) ? ISDN_STAT_ICALL : ISDN_STAT_ICALLW);
  310. ic.arg = chanp->chan;
  311. /*
  312.  * No need to return "unknown" for calls without OAD,
  313.  * cause that's handled in linklevel now (replaced by '0')
  314.  */
  315. memcpy(&ic.parm.setup, &chanp->proc->para.setup, sizeof(setup_parm));
  316. ret = chanp->cs->iif.statcallb(&ic);
  317. if (chanp->debug & 1)
  318. link_debug(chanp, 1, "statcallb ret=%d", ret);
  319. switch (ret) {
  320. case 1: /* OK, someone likes this call */
  321. FsmDelTimer(&chanp->drel_timer, 61);
  322. FsmChangeState(fi, ST_IN_ALERT_SENT);
  323. chanp->d_st->lli.l4l3(chanp->d_st, CC_ALERTING | REQUEST, chanp->proc);
  324. break;
  325. case 5: /* direct redirect */
  326. case 4: /* Proceeding desired */
  327. FsmDelTimer(&chanp->drel_timer, 61);
  328. FsmChangeState(fi, ST_IN_PROCEED_SEND);
  329. chanp->d_st->lli.l4l3(chanp->d_st, CC_PROCEED_SEND | REQUEST, chanp->proc);
  330. if (ret == 5) {
  331. memcpy(&chanp->setup, &ic.parm.setup, sizeof(setup_parm));
  332. chanp->d_st->lli.l4l3(chanp->d_st, CC_REDIR | REQUEST, chanp->proc);
  333. }
  334. break;
  335. case 2: /* Rejecting Call */
  336. break;
  337. case 3: /* incomplete number */
  338. FsmDelTimer(&chanp->drel_timer, 61);
  339. chanp->d_st->lli.l4l3(chanp->d_st, CC_MORE_INFO | REQUEST, chanp->proc);
  340. break;
  341. case 0: /* OK, nobody likes this call */
  342. default: /* statcallb problems */
  343. chanp->d_st->lli.l4l3(chanp->d_st, CC_IGNORE | REQUEST, chanp->proc);
  344. chanp->cs->cardmsg(chanp->cs, MDL_INFO_REL, (void *) (long)chanp->chan);
  345. FsmChangeState(fi, ST_NULL);
  346. break;
  347. }
  348. } else {
  349. chanp->d_st->lli.l4l3(chanp->d_st, CC_IGNORE | REQUEST, chanp->proc);
  350. chanp->cs->cardmsg(chanp->cs, MDL_INFO_REL, (void *) (long)chanp->chan);
  351. }
  352. }
  353. static void
  354. lli_send_dconnect(struct FsmInst *fi, int event, void *arg)
  355. {
  356. struct Channel *chanp = fi->userdata;
  357. FsmChangeState(fi, ST_IN_WAIT_CONN_ACK);
  358. chanp->d_st->lli.l4l3(chanp->d_st, CC_SETUP | RESPONSE, chanp->proc);
  359. }
  360. static void
  361. lli_send_alert(struct FsmInst *fi, int event, void *arg)
  362. {
  363. struct Channel *chanp = fi->userdata;
  364. FsmChangeState(fi, ST_IN_ALERT_SENT);
  365. chanp->d_st->lli.l4l3(chanp->d_st, CC_ALERTING | REQUEST, chanp->proc);
  366. }
  367. static void
  368. lli_send_redir(struct FsmInst *fi, int event, void *arg)
  369. {
  370. struct Channel *chanp = fi->userdata;
  371. chanp->d_st->lli.l4l3(chanp->d_st, CC_REDIR | REQUEST, chanp->proc);
  372. }
  373. static void
  374. lli_init_bchan_in(struct FsmInst *fi, int event, void *arg)
  375. {
  376. struct Channel *chanp = fi->userdata;
  377. FsmChangeState(fi, ST_WAIT_BCONN);
  378. if (chanp->debug & 1)
  379. link_debug(chanp, 0, "STAT_DCONN");
  380. HL_LL(chanp, ISDN_STAT_DCONN);
  381. chanp->l2_active_protocol = chanp->l2_protocol;
  382. chanp->incoming = !0;
  383. init_b_st(chanp, !0);
  384. chanp->b_st->lli.l4l3(chanp->b_st, DL_ESTABLISH | REQUEST, NULL);
  385. }
  386. static void
  387. lli_setup_rsp(struct FsmInst *fi, int event, void *arg)
  388. {
  389. struct Channel *chanp = fi->userdata;
  390. if (chanp->leased) {
  391. lli_init_bchan_in(fi, event, arg);
  392. } else {
  393. FsmChangeState(fi, ST_IN_WAIT_CONN_ACK);
  394. #ifdef WANT_ALERT
  395. chanp->d_st->lli.l4l3(chanp->d_st, CC_ALERTING | REQUEST, chanp->proc);
  396. #endif
  397. chanp->d_st->lli.l4l3(chanp->d_st, CC_SETUP | RESPONSE, chanp->proc);
  398. }
  399. }
  400. /* Call suspend */
  401. static void
  402. lli_suspend(struct FsmInst *fi, int event, void *arg)
  403. {
  404. struct Channel *chanp = fi->userdata;
  405. chanp->d_st->lli.l4l3(chanp->d_st, CC_SUSPEND | REQUEST, chanp->proc);
  406. }
  407. /* Call clearing */
  408. static void
  409. lli_leased_hup(struct FsmInst *fi, struct Channel *chanp)
  410. {
  411. isdn_ctrl ic;
  412. ic.driver = chanp->cs->myid;
  413. ic.command = ISDN_STAT_CAUSE;
  414. ic.arg = chanp->chan;
  415. sprintf(ic.parm.num, "L0010");
  416. chanp->cs->iif.statcallb(&ic);
  417. if (chanp->debug & 1)
  418. link_debug(chanp, 0, "STAT_DHUP");
  419. HL_LL(chanp, ISDN_STAT_DHUP);
  420. lli_close(fi);
  421. }
  422. static void
  423. lli_disconnect_req(struct FsmInst *fi, int event, void *arg)
  424. {
  425. struct Channel *chanp = fi->userdata;
  426. if (chanp->leased) {
  427. lli_leased_hup(fi, chanp);
  428. } else {
  429. FsmChangeState(fi, ST_WAIT_DRELEASE);
  430. if (chanp->proc)
  431. chanp->proc->para.cause = 0x10; /* Normal Call Clearing */
  432. chanp->d_st->lli.l4l3(chanp->d_st, CC_DISCONNECT | REQUEST,
  433. chanp->proc);
  434. }
  435. }
  436. static void
  437. lli_disconnect_reject(struct FsmInst *fi, int event, void *arg)
  438. {
  439. struct Channel *chanp = fi->userdata;
  440. if (chanp->leased) {
  441. lli_leased_hup(fi, chanp);
  442. } else {
  443. FsmChangeState(fi, ST_WAIT_DRELEASE);
  444. if (chanp->proc)
  445. chanp->proc->para.cause = 0x15; /* Call Rejected */
  446. chanp->d_st->lli.l4l3(chanp->d_st, CC_DISCONNECT | REQUEST,
  447. chanp->proc);
  448. }
  449. }
  450. static void
  451. lli_dhup_close(struct FsmInst *fi, int event, void *arg)
  452. {
  453. struct Channel *chanp = fi->userdata;
  454. if (chanp->leased) {
  455. lli_leased_hup(fi, chanp);
  456. } else {
  457. if (chanp->debug & 1)
  458. link_debug(chanp, 0, "STAT_DHUP");
  459. lli_deliver_cause(chanp);
  460. HL_LL(chanp, ISDN_STAT_DHUP);
  461. lli_close(fi);
  462. }
  463. }
  464. static void
  465. lli_reject_req(struct FsmInst *fi, int event, void *arg)
  466. {
  467. struct Channel *chanp = fi->userdata;
  468. if (chanp->leased) {
  469. lli_leased_hup(fi, chanp);
  470. return;
  471. }
  472. #ifndef ALERT_REJECT
  473. if (chanp->proc)
  474. chanp->proc->para.cause = 0x15; /* Call Rejected */
  475. chanp->d_st->lli.l4l3(chanp->d_st, CC_REJECT | REQUEST, chanp->proc);
  476. lli_dhup_close(fi, event, arg);
  477. #else
  478. FsmRestartTimer(&chanp->drel_timer, 40, EV_HANGUP, NULL, 63);
  479. FsmChangeState(fi, ST_IN_ALERT_SENT);
  480. chanp->d_st->lli.l4l3(chanp->d_st, CC_ALERTING | REQUEST, chanp->proc);
  481. #endif
  482. }
  483. static void
  484. lli_disconn_bchan(struct FsmInst *fi, int event, void *arg)
  485. {
  486. struct Channel *chanp = fi->userdata;
  487. chanp->data_open = 0;
  488. FsmChangeState(fi, ST_WAIT_BRELEASE);
  489. chanp->b_st->lli.l4l3(chanp->b_st, DL_RELEASE | REQUEST, NULL);
  490. }
  491. static void
  492. lli_start_disc(struct FsmInst *fi, int event, void *arg)
  493. {
  494. struct Channel *chanp = fi->userdata;
  495. if (chanp->leased) {
  496. lli_leased_hup(fi, chanp);
  497. } else {
  498. lli_disconnect_req(fi, event, arg);
  499. }
  500. }
  501. static void
  502. lli_rel_b_disc(struct FsmInst *fi, int event, void *arg)
  503. {
  504. struct Channel *chanp = fi->userdata;
  505. release_b_st(chanp);
  506. lli_start_disc(fi, event, arg);
  507. }
  508. static void
  509. lli_bhup_disc(struct FsmInst *fi, int event, void *arg)
  510. {
  511. struct Channel *chanp = fi->userdata;
  512.  
  513. if (chanp->debug & 1)
  514. link_debug(chanp, 0, "STAT_BHUP");
  515. HL_LL(chanp, ISDN_STAT_BHUP);
  516. lli_rel_b_disc(fi, event, arg);
  517. }
  518. static void
  519. lli_bhup_rel_b(struct FsmInst *fi, int event, void *arg)
  520. {
  521. struct Channel *chanp = fi->userdata;
  522. FsmChangeState(fi, ST_WAIT_DCOMMAND);
  523. chanp->data_open = 0;
  524. if (chanp->debug & 1)
  525. link_debug(chanp, 0, "STAT_BHUP");
  526. HL_LL(chanp, ISDN_STAT_BHUP);
  527. release_b_st(chanp);
  528. }
  529. static void
  530. lli_release_bchan(struct FsmInst *fi, int event, void *arg)
  531. {
  532. struct Channel *chanp = fi->userdata;
  533. chanp->data_open = 0;
  534. FsmChangeState(fi, ST_WAIT_BREL_DISC);
  535. chanp->b_st->lli.l4l3(chanp->b_st, DL_RELEASE | REQUEST, NULL);
  536. }
  537. static void
  538. lli_rel_b_dhup(struct FsmInst *fi, int event, void *arg)
  539. {
  540. struct Channel *chanp = fi->userdata;
  541. release_b_st(chanp);
  542. lli_dhup_close(fi, event, arg);
  543. }
  544. static void
  545. lli_bhup_dhup(struct FsmInst *fi, int event, void *arg)
  546. {
  547. struct Channel *chanp = fi->userdata;
  548. if (chanp->debug & 1)
  549. link_debug(chanp, 0, "STAT_BHUP");
  550. HL_LL(chanp, ISDN_STAT_BHUP);
  551. lli_rel_b_dhup(fi, event, arg);
  552. }
  553. static void
  554. lli_abort(struct FsmInst *fi, int event, void *arg)
  555. {
  556. struct Channel *chanp = fi->userdata;
  557. chanp->data_open = 0;
  558. chanp->b_st->lli.l4l3(chanp->b_st, DL_RELEASE | REQUEST, NULL);
  559. lli_bhup_dhup(fi, event, arg);
  560. }
  561.  
  562. static void
  563. lli_release_req(struct FsmInst *fi, int event, void *arg)
  564. {
  565. struct Channel *chanp = fi->userdata;
  566. if (chanp->leased) {
  567. lli_leased_hup(fi, chanp);
  568. } else {
  569. FsmChangeState(fi, ST_WAIT_D_REL_CNF);
  570. chanp->d_st->lli.l4l3(chanp->d_st, CC_RELEASE | REQUEST,
  571. chanp->proc);
  572. }
  573. }
  574. static void
  575. lli_rel_b_release_req(struct FsmInst *fi, int event, void *arg)
  576. {
  577. struct Channel *chanp = fi->userdata;
  578. release_b_st(chanp);
  579. lli_release_req(fi, event, arg);
  580. }
  581. static void
  582. lli_bhup_release_req(struct FsmInst *fi, int event, void *arg)
  583. {
  584. struct Channel *chanp = fi->userdata;
  585.  
  586. if (chanp->debug & 1)
  587. link_debug(chanp, 0, "STAT_BHUP");
  588. HL_LL(chanp, ISDN_STAT_BHUP);
  589. lli_rel_b_release_req(fi, event, arg);
  590. }
  591. /* processing charge info */
  592. static void
  593. lli_charge_info(struct FsmInst *fi, int event, void *arg)
  594. {
  595. struct Channel *chanp = fi->userdata;
  596. isdn_ctrl ic;
  597. ic.driver = chanp->cs->myid;
  598. ic.command = ISDN_STAT_CINF;
  599. ic.arg = chanp->chan;
  600. sprintf(ic.parm.num, "%d", chanp->proc->para.chargeinfo);
  601. chanp->cs->iif.statcallb(&ic);
  602. }
  603. /* error procedures */
  604. static void
  605. lli_dchan_not_ready(struct FsmInst *fi, int event, void *arg)
  606. {
  607. struct Channel *chanp = fi->userdata;
  608. if (chanp->debug & 1)
  609. link_debug(chanp, 0, "STAT_DHUP");
  610. HL_LL(chanp, ISDN_STAT_DHUP); 
  611. }
  612. static void
  613. lli_no_setup_rsp(struct FsmInst *fi, int event, void *arg)
  614. {
  615. struct Channel *chanp = fi->userdata;
  616. if (chanp->debug & 1)
  617. link_debug(chanp, 0, "STAT_DHUP");
  618. HL_LL(chanp, ISDN_STAT_DHUP);
  619. lli_close(fi); 
  620. }
  621. static void
  622. lli_error(struct FsmInst *fi, int event, void *arg)
  623. {
  624. FsmChangeState(fi, ST_WAIT_DRELEASE);
  625. }
  626. static void
  627. lli_failure_l(struct FsmInst *fi, int event, void *arg)
  628. {
  629. struct Channel *chanp = fi->userdata;
  630. isdn_ctrl ic;
  631. FsmChangeState(fi, ST_NULL);
  632. ic.driver = chanp->cs->myid;
  633. ic.command = ISDN_STAT_CAUSE;
  634. ic.arg = chanp->chan;
  635. sprintf(ic.parm.num, "L%02X%02X", 0, 0x2f);
  636. chanp->cs->iif.statcallb(&ic);
  637. HL_LL(chanp, ISDN_STAT_DHUP);
  638. chanp->Flags = 0;
  639. chanp->cs->cardmsg(chanp->cs, MDL_INFO_REL, (void *) (long)chanp->chan);
  640. }
  641. static void
  642. lli_rel_b_fail(struct FsmInst *fi, int event, void *arg)
  643. {
  644. struct Channel *chanp = fi->userdata;
  645. release_b_st(chanp);
  646. lli_failure_l(fi, event, arg);
  647. }
  648. static void
  649. lli_bhup_fail(struct FsmInst *fi, int event, void *arg)
  650. {
  651. struct Channel *chanp = fi->userdata;
  652. if (chanp->debug & 1)
  653. link_debug(chanp, 0, "STAT_BHUP");
  654. HL_LL(chanp, ISDN_STAT_BHUP);
  655. lli_rel_b_fail(fi, event, arg);
  656. }
  657. static void
  658. lli_failure_a(struct FsmInst *fi, int event, void *arg)
  659. {
  660. struct Channel *chanp = fi->userdata;
  661. chanp->data_open = 0;
  662. chanp->b_st->lli.l4l3(chanp->b_st, DL_RELEASE | REQUEST, NULL);
  663. lli_bhup_fail(fi, event, arg);
  664. }
  665. /* *INDENT-OFF* */
  666. static struct FsmNode fnlist[] __initdata =
  667. {
  668.         {ST_NULL,               EV_DIAL,                lli_prep_dialout},
  669.         {ST_NULL,               EV_RESUME,              lli_resume},
  670.         {ST_NULL,               EV_SETUP_IND,           lli_deliver_call},
  671.         {ST_NULL,               EV_LEASED,              lli_leased_in},
  672.         {ST_OUT_DIAL,           EV_SETUP_CNF,           lli_init_bchan_out},
  673.         {ST_OUT_DIAL,           EV_HANGUP,              lli_disconnect_req},
  674.         {ST_OUT_DIAL,           EV_DISCONNECT_IND,      lli_release_req},
  675.         {ST_OUT_DIAL,           EV_RELEASE,             lli_dhup_close},
  676.         {ST_OUT_DIAL,           EV_NOSETUP_RSP,         lli_no_setup_rsp},
  677.         {ST_OUT_DIAL,           EV_SETUP_ERR,           lli_error},
  678.         {ST_IN_WAIT_LL,         EV_LEASED_REL,          lli_failure_l},
  679.         {ST_IN_WAIT_LL,         EV_ACCEPTD,             lli_setup_rsp},
  680.         {ST_IN_WAIT_LL,         EV_HANGUP,              lli_reject_req},
  681.         {ST_IN_WAIT_LL,         EV_DISCONNECT_IND,      lli_release_req},
  682.         {ST_IN_WAIT_LL,         EV_RELEASE,             lli_dhup_close},
  683.         {ST_IN_WAIT_LL,         EV_SETUP_IND,           lli_deliver_call},
  684.         {ST_IN_WAIT_LL,         EV_SETUP_ERR,           lli_error},
  685.         {ST_IN_ALERT_SENT,      EV_SETUP_CMPL_IND,      lli_init_bchan_in},
  686.         {ST_IN_ALERT_SENT,      EV_ACCEPTD,             lli_send_dconnect},
  687.         {ST_IN_ALERT_SENT,      EV_HANGUP,              lli_disconnect_reject},
  688.         {ST_IN_ALERT_SENT,      EV_DISCONNECT_IND,      lli_release_req},
  689.         {ST_IN_ALERT_SENT,      EV_RELEASE,             lli_dhup_close},
  690. {ST_IN_ALERT_SENT, EV_REDIR, lli_send_redir},
  691. {ST_IN_PROCEED_SEND, EV_REDIR, lli_send_redir},
  692. {ST_IN_PROCEED_SEND, EV_ALERT, lli_send_alert},
  693. {ST_IN_PROCEED_SEND, EV_ACCEPTD, lli_send_dconnect},
  694. {ST_IN_PROCEED_SEND, EV_HANGUP, lli_disconnect_reject},
  695. {ST_IN_PROCEED_SEND, EV_DISCONNECT_IND, lli_dhup_close},
  696.         {ST_IN_ALERT_SENT,      EV_RELEASE,             lli_dhup_close},
  697.         {ST_IN_WAIT_CONN_ACK,   EV_SETUP_CMPL_IND,      lli_init_bchan_in},
  698.         {ST_IN_WAIT_CONN_ACK,   EV_HANGUP,              lli_disconnect_req},
  699.         {ST_IN_WAIT_CONN_ACK,   EV_DISCONNECT_IND,      lli_release_req},
  700.         {ST_IN_WAIT_CONN_ACK,   EV_RELEASE,             lli_dhup_close},
  701.         {ST_IN_WAIT_CONN_ACK,   EV_CONNECT_ERR,         lli_error},
  702.         {ST_WAIT_BCONN,         EV_BC_EST,              lli_go_active},
  703.         {ST_WAIT_BCONN,         EV_BC_REL,              lli_rel_b_disc},
  704.         {ST_WAIT_BCONN,         EV_HANGUP,              lli_rel_b_disc},
  705.         {ST_WAIT_BCONN,         EV_DISCONNECT_IND,      lli_rel_b_release_req},
  706.         {ST_WAIT_BCONN,         EV_RELEASE,             lli_rel_b_dhup},
  707.         {ST_WAIT_BCONN,         EV_LEASED_REL,          lli_rel_b_fail},
  708.         {ST_WAIT_BCONN,         EV_CINF,                lli_charge_info},
  709.         {ST_ACTIVE,             EV_CINF,                lli_charge_info},
  710.         {ST_ACTIVE,             EV_BC_REL,              lli_bhup_rel_b},
  711.         {ST_ACTIVE,             EV_SUSPEND,             lli_suspend},
  712.         {ST_ACTIVE,             EV_HANGUP,              lli_disconn_bchan},
  713.         {ST_ACTIVE,             EV_DISCONNECT_IND,      lli_release_bchan},
  714.         {ST_ACTIVE,             EV_RELEASE,             lli_abort},
  715.         {ST_ACTIVE,             EV_LEASED_REL,          lli_failure_a},
  716.         {ST_WAIT_BRELEASE,      EV_BC_REL,              lli_bhup_disc},
  717.         {ST_WAIT_BRELEASE,      EV_DISCONNECT_IND,      lli_bhup_release_req},
  718.         {ST_WAIT_BRELEASE,      EV_RELEASE,             lli_bhup_dhup},
  719.         {ST_WAIT_BRELEASE,      EV_LEASED_REL,          lli_bhup_fail},
  720.         {ST_WAIT_BREL_DISC,     EV_BC_REL,              lli_bhup_release_req},
  721.         {ST_WAIT_BREL_DISC,     EV_RELEASE,             lli_bhup_dhup},
  722.         {ST_WAIT_DCOMMAND,      EV_HANGUP,              lli_start_disc},
  723.         {ST_WAIT_DCOMMAND,      EV_DISCONNECT_IND,      lli_release_req},
  724.         {ST_WAIT_DCOMMAND,      EV_RELEASE,             lli_dhup_close},
  725.         {ST_WAIT_DCOMMAND,      EV_LEASED_REL,          lli_failure_l},
  726.         {ST_WAIT_DRELEASE,      EV_RELEASE,             lli_dhup_close},
  727.         {ST_WAIT_DRELEASE,      EV_DIAL,                lli_dchan_not_ready},
  728.   /* ETS 300-104 16.1 */
  729.         {ST_WAIT_D_REL_CNF,     EV_RELEASE,             lli_dhup_close},
  730.         {ST_WAIT_D_REL_CNF,     EV_DIAL,                lli_dchan_not_ready},
  731. };
  732. /* *INDENT-ON* */
  733. #define FNCOUNT (sizeof(fnlist)/sizeof(struct FsmNode))
  734. int __init
  735. CallcNew(void)
  736. {
  737. callcfsm.state_count = STATE_COUNT;
  738. callcfsm.event_count = EVENT_COUNT;
  739. callcfsm.strEvent = strEvent;
  740. callcfsm.strState = strState;
  741. return FsmNew(&callcfsm, fnlist, FNCOUNT);
  742. }
  743. void
  744. CallcFree(void)
  745. {
  746. FsmFree(&callcfsm);
  747. }
  748. static void
  749. release_b_st(struct Channel *chanp)
  750. {
  751. struct PStack *st = chanp->b_st;
  752. if(test_and_clear_bit(FLG_START_B, &chanp->Flags)) {
  753. chanp->bcs->BC_Close(chanp->bcs);
  754. switch (chanp->l2_active_protocol) {
  755. case (ISDN_PROTO_L2_X75I):
  756. releasestack_isdnl2(st);
  757. break;
  758. case (ISDN_PROTO_L2_HDLC):
  759. case (ISDN_PROTO_L2_HDLC_56K):
  760. case (ISDN_PROTO_L2_TRANS):
  761. case (ISDN_PROTO_L2_MODEM):
  762. case (ISDN_PROTO_L2_FAX):
  763. releasestack_transl2(st);
  764. break;
  765. }
  766. }
  767. struct Channel
  768. *selectfreechannel(struct PStack *st, int bch)
  769. {
  770. struct IsdnCardState *cs = st->l1.hardware;
  771. struct Channel *chanp = st->lli.userdata;
  772. int i;
  773. if (test_bit(FLG_TWO_DCHAN, &cs->HW_Flags))
  774. i=1;
  775. else
  776. i=0;
  777. if (!bch) {
  778. i = 2; /* virtual channel */
  779. chanp += 2;
  780. }
  781. while (i < ((bch) ? cs->chanlimit : (2 + MAX_WAITING_CALLS))) {
  782. if (chanp->fi.state == ST_NULL)
  783. return (chanp);
  784. chanp++;
  785. i++;
  786. }
  787. if (bch) /* number of channels is limited */ {
  788. i = 2; /* virtual channel */
  789. chanp = st->lli.userdata;
  790. chanp += i;
  791. while (i < (2 + MAX_WAITING_CALLS)) {
  792. if (chanp->fi.state == ST_NULL)
  793. return (chanp);
  794. chanp++;
  795. i++;
  796. }
  797. }
  798. return (NULL);
  799. }
  800. static void stat_redir_result(struct IsdnCardState *cs, int chan, ulong result)
  801. { isdn_ctrl ic;
  802.   
  803. ic.driver = cs->myid;
  804. ic.command = ISDN_STAT_REDIR;
  805. ic.arg = chan; 
  806. (ulong)(ic.parm.num[0]) = result;
  807. cs->iif.statcallb(&ic);
  808. } /* stat_redir_result */
  809. static void
  810. dchan_l3l4(struct PStack *st, int pr, void *arg)
  811. {
  812. struct l3_process *pc = arg;
  813. struct IsdnCardState *cs = st->l1.hardware;
  814. struct Channel *chanp;
  815. if(!pc)
  816. return;
  817. if (pr == (CC_SETUP | INDICATION)) {
  818. if (!(chanp = selectfreechannel(pc->st, pc->para.bchannel))) {
  819. pc->para.cause = 0x11; /* User busy */
  820. pc->st->lli.l4l3(pc->st, CC_REJECT | REQUEST, pc);
  821. } else {
  822. chanp->proc = pc;
  823. pc->chan = chanp;
  824. FsmEvent(&chanp->fi, EV_SETUP_IND, NULL);
  825. }
  826. return;
  827. }
  828. if (!(chanp = pc->chan))
  829. return;
  830. switch (pr) {
  831. case (CC_MORE_INFO | INDICATION):
  832. FsmEvent(&chanp->fi, EV_SETUP_IND, NULL);
  833. break;
  834. case (CC_DISCONNECT | INDICATION):
  835. FsmEvent(&chanp->fi, EV_DISCONNECT_IND, NULL);
  836. break;
  837. case (CC_RELEASE | CONFIRM):
  838. FsmEvent(&chanp->fi, EV_RELEASE, NULL);
  839. break;
  840. case (CC_SUSPEND | CONFIRM):
  841. FsmEvent(&chanp->fi, EV_RELEASE, NULL);
  842. break;
  843. case (CC_RESUME | CONFIRM):
  844. FsmEvent(&chanp->fi, EV_SETUP_CNF, NULL);
  845. break;
  846. case (CC_RESUME_ERR):
  847. FsmEvent(&chanp->fi, EV_RELEASE, NULL);
  848. break;
  849. case (CC_RELEASE | INDICATION):
  850. FsmEvent(&chanp->fi, EV_RELEASE, NULL);
  851. break;
  852. case (CC_SETUP_COMPL | INDICATION):
  853. FsmEvent(&chanp->fi, EV_SETUP_CMPL_IND, NULL);
  854. break;
  855. case (CC_SETUP | CONFIRM):
  856. FsmEvent(&chanp->fi, EV_SETUP_CNF, NULL);
  857. break;
  858. case (CC_CHARGE | INDICATION):
  859. FsmEvent(&chanp->fi, EV_CINF, NULL);
  860. break;
  861. case (CC_NOSETUP_RSP):
  862. FsmEvent(&chanp->fi, EV_NOSETUP_RSP, NULL);
  863. break;
  864. case (CC_SETUP_ERR):
  865. FsmEvent(&chanp->fi, EV_SETUP_ERR, NULL);
  866. break;
  867. case (CC_CONNECT_ERR):
  868. FsmEvent(&chanp->fi, EV_CONNECT_ERR, NULL);
  869. break;
  870. case (CC_RELEASE_ERR):
  871. FsmEvent(&chanp->fi, EV_RELEASE, NULL);
  872. break;
  873. case (CC_PROCEED_SEND | INDICATION):
  874. case (CC_PROCEEDING | INDICATION):
  875. case (CC_ALERTING | INDICATION):
  876. case (CC_PROGRESS | INDICATION):
  877. case (CC_NOTIFY | INDICATION):
  878. break;
  879. case (CC_REDIR | INDICATION):
  880. stat_redir_result(cs, chanp->chan, pc->redir_result); 
  881. break;
  882. default:
  883. if (chanp->debug & 0x800) {
  884. HiSax_putstatus(chanp->cs, "Ch",
  885. "%d L3->L4 unknown primitiv %#x",
  886. chanp->chan, pr);
  887. }
  888. }
  889. }
  890. static void
  891. dummy_pstack(struct PStack *st, int pr, void *arg) {
  892. printk(KERN_WARNING"call to dummy_pstack pr=%04x arg %lxn", pr, (long)arg);
  893. }
  894. static int
  895. init_PStack(struct PStack **stp) {
  896. *stp = kmalloc(sizeof(struct PStack), GFP_ATOMIC);
  897. if (!*stp)
  898. return -ENOMEM;
  899. (*stp)->next = NULL;
  900. (*stp)->l1.l1l2 = dummy_pstack;
  901. (*stp)->l1.l1hw = dummy_pstack;
  902. (*stp)->l1.l1tei = dummy_pstack;
  903. (*stp)->l2.l2tei = dummy_pstack;
  904. (*stp)->l2.l2l1 = dummy_pstack;
  905. (*stp)->l2.l2l3 = dummy_pstack;
  906. (*stp)->l3.l3l2 = dummy_pstack;
  907. (*stp)->l3.l3ml3 = dummy_pstack;
  908. (*stp)->l3.l3l4 = dummy_pstack;
  909. (*stp)->lli.l4l3 = dummy_pstack;
  910. (*stp)->ma.layer = dummy_pstack;
  911. return 0;
  912. }
  913. static int
  914. init_d_st(struct Channel *chanp)
  915. {
  916. struct PStack *st;
  917. struct IsdnCardState *cs = chanp->cs;
  918. char tmp[16];
  919. int err;
  920. err = init_PStack(&chanp->d_st);
  921. if (err)
  922. return err;
  923. st = chanp->d_st;
  924. st->next = NULL;
  925. HiSax_addlist(cs, st);
  926. setstack_HiSax(st, cs);
  927. st->l2.sap = 0;
  928. st->l2.tei = -1;
  929. st->l2.flag = 0;
  930. test_and_set_bit(FLG_MOD128, &st->l2.flag);
  931. test_and_set_bit(FLG_LAPD, &st->l2.flag);
  932. test_and_set_bit(FLG_ORIG, &st->l2.flag);
  933. st->l2.maxlen = MAX_DFRAME_LEN;
  934. st->l2.window = 1;
  935. st->l2.T200 = 1000; /* 1000 milliseconds  */
  936. st->l2.N200 = 3; /* try 3 times        */
  937. st->l2.T203 = 10000; /* 10000 milliseconds */
  938. if (test_bit(FLG_TWO_DCHAN, &cs->HW_Flags))
  939. sprintf(tmp, "DCh%d Q.921 ", chanp->chan);
  940. else
  941. sprintf(tmp, "DCh Q.921 ");
  942. setstack_isdnl2(st, tmp);
  943. setstack_l3dc(st, chanp);
  944. st->lli.userdata = chanp;
  945. st->lli.l2writewakeup = NULL;
  946. st->l3.l3l4 = dchan_l3l4;
  947. return 0;
  948. }
  949. static void
  950. callc_debug(struct FsmInst *fi, char *fmt, ...)
  951. {
  952. va_list args;
  953. struct Channel *chanp = fi->userdata;
  954. char tmp[16];
  955. va_start(args, fmt);
  956. sprintf(tmp, "Ch%d callc ", chanp->chan);
  957. VHiSax_putstatus(chanp->cs, tmp, fmt, args);
  958. va_end(args);
  959. }
  960. static int
  961. init_chan(int chan, struct IsdnCardState *csta)
  962. {
  963. struct Channel *chanp = csta->channel + chan;
  964. int err;
  965. chanp->cs = csta;
  966. chanp->bcs = csta->bcs + chan;
  967. chanp->chan = chan;
  968. chanp->incoming = 0;
  969. chanp->debug = 0;
  970. chanp->Flags = 0;
  971. chanp->leased = 0;
  972. err = init_PStack(&chanp->b_st);
  973. if (err)
  974. return err;
  975. chanp->b_st->l1.delay = DEFAULT_B_DELAY;
  976. chanp->fi.fsm = &callcfsm;
  977. chanp->fi.state = ST_NULL;
  978. chanp->fi.debug = 0;
  979. chanp->fi.userdata = chanp;
  980. chanp->fi.printdebug = callc_debug;
  981. FsmInitTimer(&chanp->fi, &chanp->dial_timer);
  982. FsmInitTimer(&chanp->fi, &chanp->drel_timer);
  983. if (!chan || (test_bit(FLG_TWO_DCHAN, &csta->HW_Flags) && chan < 2)) {
  984. err = init_d_st(chanp);
  985. if (err)
  986. return err;
  987. } else {
  988. chanp->d_st = csta->channel->d_st;
  989. }
  990. chanp->data_open = 0;
  991. return 0;
  992. }
  993. int
  994. CallcNewChan(struct IsdnCardState *csta) {
  995. int i, err;
  996. chancount += 2;
  997. err = init_chan(0, csta);
  998. if (err)
  999. return err;
  1000. err = init_chan(1, csta);
  1001. if (err)
  1002. return err;
  1003. printk(KERN_INFO "HiSax: 2 channels addedn");
  1004. for (i = 0; i < MAX_WAITING_CALLS; i++) { 
  1005. err = init_chan(i+2,csta);
  1006. if (err)
  1007. return err;
  1008. }
  1009. printk(KERN_INFO "HiSax: MAX_WAITING_CALLS addedn");
  1010. if (test_bit(FLG_PTP, &csta->channel->d_st->l2.flag)) {
  1011. printk(KERN_INFO "LAYER2 WATCHING ESTABLISHn");
  1012. csta->channel->d_st->lli.l4l3(csta->channel->d_st,
  1013. DL_ESTABLISH | REQUEST, NULL);
  1014. }
  1015. return (0);
  1016. }
  1017. static void
  1018. release_d_st(struct Channel *chanp)
  1019. {
  1020. struct PStack *st = chanp->d_st;
  1021. if (!st)
  1022. return;
  1023. releasestack_isdnl2(st);
  1024. releasestack_isdnl3(st);
  1025. HiSax_rmlist(st->l1.hardware, st);
  1026. kfree(st);
  1027. chanp->d_st = NULL;
  1028. }
  1029. void
  1030. CallcFreeChan(struct IsdnCardState *csta)
  1031. {
  1032. int i;
  1033. for (i = 0; i < 2; i++) {
  1034. FsmDelTimer(&csta->channel[i].drel_timer, 74);
  1035. FsmDelTimer(&csta->channel[i].dial_timer, 75);
  1036. if (i || test_bit(FLG_TWO_DCHAN, &csta->HW_Flags))
  1037. release_d_st(csta->channel + i);
  1038. if (csta->channel[i].b_st) {
  1039. release_b_st(csta->channel + i);
  1040. kfree(csta->channel[i].b_st);
  1041. csta->channel[i].b_st = NULL;
  1042. } else
  1043. printk(KERN_WARNING "CallcFreeChan b_st ch%d allready freedn", i);
  1044. if (i || test_bit(FLG_TWO_DCHAN, &csta->HW_Flags)) {
  1045. release_d_st(csta->channel + i);
  1046. } else
  1047. csta->channel[i].d_st = NULL;
  1048. }
  1049. }
  1050. static void
  1051. lldata_handler(struct PStack *st, int pr, void *arg)
  1052. {
  1053. struct Channel *chanp = (struct Channel *) st->lli.userdata;
  1054. struct sk_buff *skb = arg;
  1055. switch (pr) {
  1056. case (DL_DATA  | INDICATION):
  1057. if (chanp->data_open) {
  1058. if (chanp->debug & 0x800)
  1059. link_debug(chanp, 0, "lldata: %d", skb->len);
  1060. chanp->cs->iif.rcvcallb_skb(chanp->cs->myid, chanp->chan, skb);
  1061. } else {
  1062. link_debug(chanp, 0, "lldata: channel not open");
  1063. dev_kfree_skb(skb);
  1064. }
  1065. break;
  1066. case (DL_ESTABLISH | INDICATION):
  1067. case (DL_ESTABLISH | CONFIRM):
  1068. FsmEvent(&chanp->fi, EV_BC_EST, NULL);
  1069. break;
  1070. case (DL_RELEASE | INDICATION):
  1071. case (DL_RELEASE | CONFIRM):
  1072. FsmEvent(&chanp->fi, EV_BC_REL, NULL);
  1073. break;
  1074. default:
  1075. printk(KERN_WARNING "lldata_handler unknown primitive %#xn",
  1076. pr);
  1077. break;
  1078. }
  1079. }
  1080. static void
  1081. lltrans_handler(struct PStack *st, int pr, void *arg)
  1082. {
  1083. struct Channel *chanp = (struct Channel *) st->lli.userdata;
  1084. struct sk_buff *skb = arg;
  1085. switch (pr) {
  1086. case (PH_DATA | INDICATION):
  1087. if (chanp->data_open) {
  1088. if (chanp->debug & 0x800)
  1089. link_debug(chanp, 0, "lltrans: %d", skb->len);
  1090. chanp->cs->iif.rcvcallb_skb(chanp->cs->myid, chanp->chan, skb);
  1091. } else {
  1092. link_debug(chanp, 0, "lltrans: channel not open");
  1093. dev_kfree_skb(skb);
  1094. }
  1095. break;
  1096. case (PH_ACTIVATE | INDICATION):
  1097. case (PH_ACTIVATE | CONFIRM):
  1098. FsmEvent(&chanp->fi, EV_BC_EST, NULL);
  1099. break;
  1100. case (PH_DEACTIVATE | INDICATION):
  1101. case (PH_DEACTIVATE | CONFIRM):
  1102. FsmEvent(&chanp->fi, EV_BC_REL, NULL);
  1103. break;
  1104. default:
  1105. printk(KERN_WARNING "lltrans_handler unknown primitive %#xn",
  1106. pr);
  1107. break;
  1108. }
  1109. }
  1110. static void
  1111. ll_writewakeup(struct PStack *st, int len)
  1112. {
  1113. struct Channel *chanp = st->lli.userdata;
  1114. isdn_ctrl ic;
  1115. if (chanp->debug & 0x800)
  1116. link_debug(chanp, 0, "llwakeup: %d", len);
  1117. ic.driver = chanp->cs->myid;
  1118. ic.command = ISDN_STAT_BSENT;
  1119. ic.arg = chanp->chan;
  1120. ic.parm.length = len;
  1121. chanp->cs->iif.statcallb(&ic);
  1122. }
  1123. static int
  1124. init_b_st(struct Channel *chanp, int incoming)
  1125. {
  1126. struct PStack *st = chanp->b_st;
  1127. struct IsdnCardState *cs = chanp->cs;
  1128. char tmp[16];
  1129. st->l1.hardware = cs;
  1130. if (chanp->leased)
  1131. st->l1.bc = chanp->chan & 1;
  1132. else
  1133. st->l1.bc = chanp->proc->para.bchannel - 1;
  1134. switch (chanp->l2_active_protocol) {
  1135. case (ISDN_PROTO_L2_X75I):
  1136. case (ISDN_PROTO_L2_HDLC):
  1137. st->l1.mode = L1_MODE_HDLC;
  1138. break;
  1139. case (ISDN_PROTO_L2_HDLC_56K):
  1140. st->l1.mode = L1_MODE_HDLC_56K;
  1141. break;
  1142. case (ISDN_PROTO_L2_TRANS):
  1143. st->l1.mode = L1_MODE_TRANS;
  1144. break;
  1145. case (ISDN_PROTO_L2_MODEM):
  1146. st->l1.mode = L1_MODE_V32;
  1147. break;
  1148. case (ISDN_PROTO_L2_FAX):
  1149. st->l1.mode = L1_MODE_FAX;
  1150. break;
  1151. }
  1152. chanp->bcs->conmsg = NULL;
  1153. if (chanp->bcs->BC_SetStack(st, chanp->bcs))
  1154. return (-1);
  1155. st->l2.flag = 0;
  1156. test_and_set_bit(FLG_LAPB, &st->l2.flag);
  1157. st->l2.maxlen = MAX_DATA_SIZE;
  1158. if (!incoming)
  1159. test_and_set_bit(FLG_ORIG, &st->l2.flag);
  1160. st->l2.T200 = 1000; /* 1000 milliseconds */
  1161. st->l2.window = 7;
  1162. st->l2.N200 = 4; /* try 4 times       */
  1163. st->l2.T203 = 5000; /* 5000 milliseconds */
  1164. st->l3.debug = 0;
  1165. switch (chanp->l2_active_protocol) {
  1166. case (ISDN_PROTO_L2_X75I):
  1167. sprintf(tmp, "Ch%d X.75", chanp->chan);
  1168. setstack_isdnl2(st, tmp);
  1169. setstack_l3bc(st, chanp);
  1170. st->l2.l2l3 = lldata_handler;
  1171. st->lli.userdata = chanp;
  1172. st->lli.l1writewakeup = NULL;
  1173. st->lli.l2writewakeup = ll_writewakeup;
  1174. st->l2.l2m.debug = chanp->debug & 16;
  1175. st->l2.debug = chanp->debug & 64;
  1176. break;
  1177. case (ISDN_PROTO_L2_HDLC):
  1178. case (ISDN_PROTO_L2_HDLC_56K):
  1179. case (ISDN_PROTO_L2_TRANS):
  1180. case (ISDN_PROTO_L2_MODEM):
  1181. case (ISDN_PROTO_L2_FAX):
  1182. st->l1.l1l2 = lltrans_handler;
  1183. st->lli.userdata = chanp;
  1184. st->lli.l1writewakeup = ll_writewakeup;
  1185. setstack_transl2(st);
  1186. setstack_l3bc(st, chanp);
  1187. break;
  1188. }
  1189. test_and_set_bit(FLG_START_B, &chanp->Flags);
  1190. return (0);
  1191. }
  1192. static void
  1193. leased_l4l3(struct PStack *st, int pr, void *arg)
  1194. {
  1195. struct Channel *chanp = (struct Channel *) st->lli.userdata;
  1196. struct sk_buff *skb = arg;
  1197. switch (pr) {
  1198. case (DL_DATA | REQUEST):
  1199. link_debug(chanp, 0, "leased line d-channel DATA");
  1200. dev_kfree_skb(skb);
  1201. break;
  1202. case (DL_ESTABLISH | REQUEST):
  1203. st->l2.l2l1(st, PH_ACTIVATE | REQUEST, NULL);
  1204. break;
  1205. case (DL_RELEASE | REQUEST):
  1206. break;
  1207. default:
  1208. printk(KERN_WARNING "transd_l4l3 unknown primitive %#xn",
  1209. pr);
  1210. break;
  1211. }
  1212. }
  1213. static void
  1214. leased_l1l2(struct PStack *st, int pr, void *arg)
  1215. {
  1216. struct Channel *chanp = (struct Channel *) st->lli.userdata;
  1217. struct sk_buff *skb = arg;
  1218. int i,event = EV_LEASED_REL;
  1219. switch (pr) {
  1220. case (PH_DATA | INDICATION):
  1221. link_debug(chanp, 0, "leased line d-channel DATA");
  1222. dev_kfree_skb(skb);
  1223. break;
  1224. case (PH_ACTIVATE | INDICATION):
  1225. case (PH_ACTIVATE | CONFIRM):
  1226. event = EV_LEASED;
  1227. case (PH_DEACTIVATE | INDICATION):
  1228. case (PH_DEACTIVATE | CONFIRM):
  1229. if (test_bit(FLG_TWO_DCHAN, &chanp->cs->HW_Flags))
  1230. i = 1;
  1231. else
  1232. i = 0;
  1233. while (i < 2) {
  1234. FsmEvent(&chanp->fi, event, NULL);
  1235. chanp++;
  1236. i++;
  1237. }
  1238. break;
  1239. default:
  1240. printk(KERN_WARNING
  1241. "transd_l1l2 unknown primitive %#xn", pr);
  1242. break;
  1243. }
  1244. }
  1245. static void
  1246. distr_debug(struct IsdnCardState *csta, int debugflags)
  1247. {
  1248. int i;
  1249. struct Channel *chanp = csta->channel;
  1250. for (i = 0; i < (2 + MAX_WAITING_CALLS) ; i++) {
  1251. chanp[i].debug = debugflags;
  1252. chanp[i].fi.debug = debugflags & 2;
  1253. chanp[i].d_st->l2.l2m.debug = debugflags & 8;
  1254. chanp[i].b_st->l2.l2m.debug = debugflags & 0x10;
  1255. chanp[i].d_st->l2.debug = debugflags & 0x20;
  1256. chanp[i].b_st->l2.debug = debugflags & 0x40;
  1257. chanp[i].d_st->l3.l3m.debug = debugflags & 0x80;
  1258. chanp[i].b_st->l3.l3m.debug = debugflags & 0x100;
  1259. chanp[i].b_st->ma.tei_m.debug = debugflags & 0x200;
  1260. chanp[i].b_st->ma.debug = debugflags & 0x200;
  1261. chanp[i].d_st->l1.l1m.debug = debugflags & 0x1000;
  1262. chanp[i].b_st->l1.l1m.debug = debugflags & 0x2000;
  1263. }
  1264. if (debugflags & 4)
  1265. csta->debug |= DEB_DLOG_HEX;
  1266. else
  1267. csta->debug &= ~DEB_DLOG_HEX;
  1268. }
  1269. static char tmpbuf[256];
  1270. static void
  1271. capi_debug(struct Channel *chanp, capi_msg *cm)
  1272. {
  1273. char *t = tmpbuf;
  1274. t += QuickHex(t, (u_char *)cm, (cm->Length>50)? 50: cm->Length);
  1275. t--;
  1276. *t= 0;
  1277. HiSax_putstatus(chanp->cs, "Ch", "%d CAPIMSG %s", chanp->chan, tmpbuf);
  1278. }
  1279. void
  1280. lli_got_fac_req(struct Channel *chanp, capi_msg *cm) {
  1281. if ((cm->para[0] != 3) || (cm->para[1] != 0))
  1282. return;
  1283. if (cm->para[2]<3)
  1284. return;
  1285. if (cm->para[4] != 0)
  1286. return;
  1287. switch(cm->para[3]) {
  1288. case 4: /* Suspend */
  1289. strncpy(chanp->setup.phone, &cm->para[5], cm->para[5] +1);
  1290. FsmEvent(&chanp->fi, EV_SUSPEND, cm);
  1291. break;
  1292. case 5: /* Resume */
  1293. strncpy(chanp->setup.phone, &cm->para[5], cm->para[5] +1);
  1294. if (chanp->fi.state == ST_NULL) {
  1295. FsmEvent(&chanp->fi, EV_RESUME, cm);
  1296. } else {
  1297. FsmDelTimer(&chanp->dial_timer, 72);
  1298. FsmAddTimer(&chanp->dial_timer, 80, EV_RESUME, cm, 73);
  1299. }
  1300. break;
  1301. }
  1302. }
  1303. void
  1304. lli_got_manufacturer(struct Channel *chanp, struct IsdnCardState *cs, capi_msg *cm) {
  1305. if ((cs->typ == ISDN_CTYPE_ELSA) || (cs->typ == ISDN_CTYPE_ELSA_PNP) ||
  1306. (cs->typ == ISDN_CTYPE_ELSA_PCI)) {
  1307. if (cs->hw.elsa.MFlag) {
  1308. cs->cardmsg(cs, CARD_AUX_IND, cm->para);
  1309. }
  1310. }
  1311. }
  1312. /***************************************************************/
  1313. /* Limit the available number of channels for the current card */
  1314. /***************************************************************/
  1315. static int 
  1316. set_channel_limit(struct IsdnCardState *cs, int chanmax)
  1317. {
  1318. isdn_ctrl ic;
  1319. int i, ii;
  1320. if ((chanmax < 0) || (chanmax > 2))
  1321. return(-EINVAL);
  1322. cs->chanlimit = 0;
  1323. for (ii = 0; ii < 2; ii++) {
  1324. ic.driver = cs->myid;
  1325. ic.command = ISDN_STAT_DISCH;
  1326. ic.arg = ii;
  1327. if (ii >= chanmax)
  1328. ic.parm.num[0] = 0; /* disabled */
  1329. else
  1330. ic.parm.num[0] = 1; /* enabled */
  1331. i = cs->iif.statcallb(&ic); 
  1332. if (i) return(-EINVAL);
  1333. if (ii < chanmax) 
  1334. cs->chanlimit++;
  1335. }
  1336. return(0);
  1337. } /* set_channel_limit */
  1338. int
  1339. HiSax_command(isdn_ctrl * ic)
  1340. {
  1341. struct IsdnCardState *csta = hisax_findcard(ic->driver);
  1342. struct PStack *st;
  1343. struct Channel *chanp;
  1344. int i;
  1345. u_int num;
  1346. if (!csta) {
  1347. printk(KERN_ERR
  1348. "HiSax: if_command %d called with invalid driverId %d!n",
  1349. ic->command, ic->driver);
  1350. return -ENODEV;
  1351. }
  1352. switch (ic->command) {
  1353. case (ISDN_CMD_SETEAZ):
  1354. chanp = csta->channel + ic->arg;
  1355. break;
  1356. case (ISDN_CMD_SETL2):
  1357. chanp = csta->channel + (ic->arg & 0xff);
  1358. if (chanp->debug & 1)
  1359. link_debug(chanp, 1, "SETL2 card %d %ld",
  1360. csta->cardnr + 1, ic->arg >> 8);
  1361. chanp->l2_protocol = ic->arg >> 8;
  1362. break;
  1363. case (ISDN_CMD_SETL3):
  1364. chanp = csta->channel + (ic->arg & 0xff);
  1365. if (chanp->debug & 1)
  1366. link_debug(chanp, 1, "SETL3 card %d %ld",
  1367. csta->cardnr + 1, ic->arg >> 8);
  1368. chanp->l3_protocol = ic->arg >> 8;
  1369. break;
  1370. case (ISDN_CMD_DIAL):
  1371. chanp = csta->channel + (ic->arg & 0xff);
  1372. if (chanp->debug & 1)
  1373. link_debug(chanp, 1, "DIAL %s -> %s (%d,%d)",
  1374. ic->parm.setup.eazmsn, ic->parm.setup.phone,
  1375. ic->parm.setup.si1, ic->parm.setup.si2);
  1376. memcpy(&chanp->setup, &ic->parm.setup, sizeof(setup_parm));
  1377. if (!strcmp(chanp->setup.eazmsn, "0"))
  1378. chanp->setup.eazmsn[0] = '';
  1379. /* this solution is dirty and may be change, if
  1380.  * we make a callreference based callmanager */
  1381. if (chanp->fi.state == ST_NULL) {
  1382. FsmEvent(&chanp->fi, EV_DIAL, NULL);
  1383. } else {
  1384. FsmDelTimer(&chanp->dial_timer, 70);
  1385. FsmAddTimer(&chanp->dial_timer, 50, EV_DIAL, NULL, 71);
  1386. }
  1387. break;
  1388. case (ISDN_CMD_ACCEPTB):
  1389. chanp = csta->channel + ic->arg;
  1390. if (chanp->debug & 1)
  1391. link_debug(chanp, 1, "ACCEPTB");
  1392. FsmEvent(&chanp->fi, EV_ACCEPTB, NULL);
  1393. break;
  1394. case (ISDN_CMD_ACCEPTD):
  1395. chanp = csta->channel + ic->arg;
  1396. memcpy(&chanp->setup, &ic->parm.setup, sizeof(setup_parm));
  1397. if (chanp->debug & 1)
  1398. link_debug(chanp, 1, "ACCEPTD");
  1399. FsmEvent(&chanp->fi, EV_ACCEPTD, NULL);
  1400. break;
  1401. case (ISDN_CMD_HANGUP):
  1402. chanp = csta->channel + ic->arg;
  1403. if (chanp->debug & 1)
  1404. link_debug(chanp, 1, "HANGUP");
  1405. FsmEvent(&chanp->fi, EV_HANGUP, NULL);
  1406. break;
  1407. case (CAPI_PUT_MESSAGE):
  1408. chanp = csta->channel + ic->arg;
  1409. if (chanp->debug & 1)
  1410. capi_debug(chanp, &ic->parm.cmsg);
  1411. if (ic->parm.cmsg.Length < 8)
  1412. break;
  1413. switch(ic->parm.cmsg.Command) {
  1414. case CAPI_FACILITY:
  1415. if (ic->parm.cmsg.Subcommand == CAPI_REQ)
  1416. lli_got_fac_req(chanp, &ic->parm.cmsg);
  1417. break;
  1418. case CAPI_MANUFACTURER:
  1419. if (ic->parm.cmsg.Subcommand == CAPI_REQ)
  1420. lli_got_manufacturer(chanp, csta, &ic->parm.cmsg);
  1421. break;
  1422. default:
  1423. break;
  1424. }
  1425. break;
  1426. case (ISDN_CMD_LOCK):
  1427. HiSax_mod_inc_use_count(csta);
  1428. #ifdef MODULE
  1429. if (csta->channel[0].debug & 0x400)
  1430. HiSax_putstatus(csta, "   LOCK ", "modcnt %lx",
  1431. MOD_USE_COUNT);
  1432. #endif /* MODULE */
  1433. break;
  1434. case (ISDN_CMD_UNLOCK):
  1435. HiSax_mod_dec_use_count(csta);
  1436. #ifdef MODULE
  1437. if (csta->channel[0].debug & 0x400)
  1438. HiSax_putstatus(csta, " UNLOCK ", "modcnt %lx",
  1439. MOD_USE_COUNT);
  1440. #endif /* MODULE */
  1441. break;
  1442. case (ISDN_CMD_IOCTL):
  1443. switch (ic->arg) {
  1444. case (0):
  1445. num = *(unsigned int *) ic->parm.num;
  1446. HiSax_reportcard(csta->cardnr, num);
  1447. break;
  1448. case (1):
  1449. num = *(unsigned int *) ic->parm.num;
  1450. distr_debug(csta, num);
  1451. printk(KERN_DEBUG "HiSax: debugging flags card %d set to %xn",
  1452. csta->cardnr + 1, num);
  1453. HiSax_putstatus(csta, "debugging flags ",
  1454. "card %d set to %x", csta->cardnr + 1, num);
  1455. break;
  1456. case (2):
  1457. num = *(unsigned int *) ic->parm.num;
  1458. csta->channel[0].b_st->l1.delay = num;
  1459. csta->channel[1].b_st->l1.delay = num;
  1460. HiSax_putstatus(csta, "delay ", "card %d set to %d ms",
  1461. csta->cardnr + 1, num);
  1462. printk(KERN_DEBUG "HiSax: delay card %d set to %d msn",
  1463. csta->cardnr + 1, num);
  1464. break;
  1465. case (3):
  1466. for (i = 0; i < *(unsigned int *) ic->parm.num; i++)
  1467. HiSax_mod_dec_use_count(NULL);
  1468. break;
  1469. case (4):
  1470. for (i = 0; i < *(unsigned int *) ic->parm.num; i++)
  1471. HiSax_mod_inc_use_count(NULL);
  1472. break;
  1473. case (5): /* set card in leased mode */
  1474. num = *(unsigned int *) ic->parm.num;
  1475. if ((num <1) || (num > 2)) {
  1476. HiSax_putstatus(csta, "Set LEASED ",
  1477. "wrong channel %d", num);
  1478. printk(KERN_WARNING "HiSax: Set LEASED wrong channel %dn",
  1479. num);
  1480. } else {
  1481. num--;
  1482. chanp = csta->channel +num;
  1483. chanp->leased = 1;
  1484. HiSax_putstatus(csta, "Card",
  1485. "%d channel %d set leased moden",
  1486. csta->cardnr + 1, num + 1);
  1487. chanp->d_st->l1.l1l2 = leased_l1l2;
  1488. chanp->d_st->lli.l4l3 = leased_l4l3;
  1489. chanp->d_st->lli.l4l3(chanp->d_st,
  1490. DL_ESTABLISH | REQUEST, NULL);
  1491. }
  1492. break;
  1493. case (6): /* set B-channel test loop */
  1494. num = *(unsigned int *) ic->parm.num;
  1495. if (csta->stlist)
  1496. csta->stlist->l2.l2l1(csta->stlist,
  1497. PH_TESTLOOP | REQUEST, (void *) (long)num);
  1498. break;
  1499. case (7): /* set card in PTP mode */
  1500. num = *(unsigned int *) ic->parm.num;
  1501. if (test_bit(FLG_TWO_DCHAN, &csta->HW_Flags)) {
  1502. printk(KERN_ERR "HiSax PTP mode only with one TEI possiblen");
  1503. } else if (num) {
  1504. test_and_set_bit(FLG_PTP, &csta->channel[0].d_st->l2.flag);
  1505. test_and_set_bit(FLG_FIXED_TEI, &csta->channel[0].d_st->l2.flag);
  1506. csta->channel[0].d_st->l2.tei = 0;
  1507. HiSax_putstatus(csta, "set card ", "in PTP mode");
  1508. printk(KERN_DEBUG "HiSax: set card in PTP moden");
  1509. printk(KERN_INFO "LAYER2 WATCHING ESTABLISHn");
  1510. csta->channel[0].d_st->lli.l4l3(csta->channel[0].d_st,
  1511. DL_ESTABLISH | REQUEST, NULL);
  1512. } else {
  1513. test_and_clear_bit(FLG_PTP, &csta->channel[0].d_st->l2.flag);
  1514. test_and_clear_bit(FLG_FIXED_TEI, &csta->channel[0].d_st->l2.flag);
  1515. HiSax_putstatus(csta, "set card ", "in PTMP mode");
  1516. printk(KERN_DEBUG "HiSax: set card in PTMP moden");
  1517. }
  1518. break;
  1519. case (8): /* set card in FIXED TEI mode */
  1520. num = *(unsigned int *) ic->parm.num;
  1521. chanp = csta->channel + (num & 1);
  1522. num = num >>1;
  1523. if (num == 127) {
  1524. test_and_clear_bit(FLG_FIXED_TEI, &chanp->d_st->l2.flag);
  1525. chanp->d_st->l2.tei = -1;
  1526. HiSax_putstatus(csta, "set card ", "in VAR TEI mode");
  1527. printk(KERN_DEBUG "HiSax: set card in VAR TEI moden");
  1528. } else {
  1529. test_and_set_bit(FLG_FIXED_TEI, &chanp->d_st->l2.flag);
  1530. chanp->d_st->l2.tei = num;
  1531. HiSax_putstatus(csta, "set card ", "in FIXED TEI (%d) mode", num);
  1532. printk(KERN_DEBUG "HiSax: set card in FIXED TEI (%d) moden",
  1533. num);
  1534. }
  1535. chanp->d_st->lli.l4l3(chanp->d_st,
  1536. DL_ESTABLISH | REQUEST, NULL);
  1537. break;
  1538. #ifdef MODULE
  1539. case (55):
  1540. MOD_USE_COUNT = 0;
  1541. HiSax_mod_inc_use_count(NULL);
  1542. break;
  1543. #endif /* MODULE */
  1544. case (11):
  1545. num = csta->debug & DEB_DLOG_HEX;
  1546. csta->debug = *(unsigned int *) ic->parm.num;
  1547. csta->debug |= num;
  1548. HiSax_putstatus(cards[0].cs, "l1 debugging ",
  1549. "flags card %d set to %x",
  1550. csta->cardnr + 1, csta->debug);
  1551. printk(KERN_DEBUG "HiSax: l1 debugging flags card %d set to %xn",
  1552. csta->cardnr + 1, csta->debug);
  1553. break;
  1554. case (13):
  1555. csta->channel[0].d_st->l3.debug = *(unsigned int *) ic->parm.num;
  1556. csta->channel[1].d_st->l3.debug = *(unsigned int *) ic->parm.num;
  1557. HiSax_putstatus(cards[0].cs, "l3 debugging ",
  1558. "flags card %d set to %xn", csta->cardnr + 1,
  1559. *(unsigned int *) ic->parm.num);
  1560. printk(KERN_DEBUG "HiSax: l3 debugging flags card %d set to %xn",
  1561. csta->cardnr + 1, *(unsigned int *) ic->parm.num);
  1562. break;
  1563. case (10):
  1564. i = *(unsigned int *) ic->parm.num;
  1565. return(set_channel_limit(csta, i));
  1566. default:
  1567. if (csta->auxcmd)
  1568. return(csta->auxcmd(csta, ic));
  1569. printk(KERN_DEBUG "HiSax: invalid ioclt %dn",
  1570. (int) ic->arg);
  1571. return (-EINVAL);
  1572. }
  1573. break;
  1574. case (ISDN_CMD_PROCEED):
  1575. chanp = csta->channel + ic->arg;
  1576. if (chanp->debug & 1)
  1577. link_debug(chanp, 1, "PROCEED");
  1578. FsmEvent(&chanp->fi, EV_PROCEED, NULL);
  1579. break;
  1580. case (ISDN_CMD_ALERT):
  1581. chanp = csta->channel + ic->arg;
  1582. if (chanp->debug & 1)
  1583. link_debug(chanp, 1, "ALERT");
  1584. FsmEvent(&chanp->fi, EV_ALERT, NULL);
  1585. break;
  1586. case (ISDN_CMD_REDIR):
  1587. chanp = csta->channel + ic->arg;
  1588. if (chanp->debug & 1)
  1589. link_debug(chanp, 1, "REDIR");
  1590. memcpy(&chanp->setup, &ic->parm.setup, sizeof(setup_parm));
  1591. FsmEvent(&chanp->fi, EV_REDIR, NULL);
  1592. break;
  1593. /* protocol specific io commands */
  1594. case (ISDN_CMD_PROT_IO):
  1595. for (st = csta->stlist; st; st = st->next)
  1596. if (st->protocol == (ic->arg & 0xFF))
  1597. return(st->lli.l4l3_proto(st, ic));
  1598. return(-EINVAL);
  1599. break;
  1600. default:
  1601. if (csta->auxcmd)
  1602. return(csta->auxcmd(csta, ic));
  1603. return(-EINVAL);
  1604. }
  1605. return (0);
  1606. }
  1607. int
  1608. HiSax_writebuf_skb(int id, int chan, int ack, struct sk_buff *skb)
  1609. {
  1610. struct IsdnCardState *csta = hisax_findcard(id);
  1611. struct Channel *chanp;
  1612. struct PStack *st;
  1613. int len = skb->len;
  1614. unsigned long flags;
  1615. struct sk_buff *nskb;
  1616. if (!csta) {
  1617. printk(KERN_ERR
  1618. "HiSax: if_sendbuf called with invalid driverId!n");
  1619. return -ENODEV;
  1620. }
  1621. chanp = csta->channel + chan;
  1622. st = chanp->b_st;
  1623. if (!chanp->data_open) {
  1624. link_debug(chanp, 1, "writebuf: channel not open");
  1625. return -EIO;
  1626. }
  1627. if (len > MAX_DATA_SIZE) {
  1628. link_debug(chanp, 1, "writebuf: packet too large (%d bytes)", len);
  1629. printk(KERN_WARNING "HiSax_writebuf: packet too large (%d bytes) !n",
  1630. len);
  1631. return -EINVAL;
  1632. }
  1633. if (len) {
  1634. if ((len + chanp->bcs->tx_cnt) > MAX_DATA_MEM) {
  1635. /* Must return 0 here, since this is not an error
  1636.  * but a temporary lack of resources.
  1637.  */
  1638. if (chanp->debug & 0x800)
  1639. link_debug(chanp, 1, "writebuf: no buffers for %d bytes", len);
  1640. return 0;
  1641. } else if (chanp->debug & 0x800)
  1642. link_debug(chanp, 1, "writebuf %d/%d/%d", len, chanp->bcs->tx_cnt,MAX_DATA_MEM);
  1643. save_flags(flags);
  1644. cli();
  1645. nskb = skb_clone(skb, GFP_ATOMIC);
  1646. if (nskb) {
  1647. nskb->truesize = nskb->len;
  1648. if (!ack)
  1649. nskb->pkt_type = PACKET_NOACK;
  1650. if (chanp->l2_active_protocol == ISDN_PROTO_L2_X75I)
  1651. st->l3.l3l2(st, DL_DATA | REQUEST, nskb);
  1652. else {
  1653. chanp->bcs->tx_cnt += len;
  1654. st->l2.l2l1(st, PH_DATA | REQUEST, nskb);
  1655. }
  1656. dev_kfree_skb(skb);
  1657. } else
  1658. len = 0;
  1659. restore_flags(flags);
  1660. }
  1661. return (len);
  1662. }