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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: hfc_2bds0.c,v 1.1.4.1 2001/11/20 14:19:35 kai Exp $
  2.  *
  3.  * specific routines for CCD's HFC 2BDS0
  4.  *
  5.  * Author       Karsten Keil
  6.  * Copyright    by Karsten Keil      <keil@isdn4linux.de>
  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. #define __NO_VERSION__
  13. #include <linux/init.h>
  14. #include "hisax.h"
  15. #include "hfc_2bds0.h"
  16. #include "isdnl1.h"
  17. #include <linux/interrupt.h>
  18. /*
  19. #define KDEBUG_DEF
  20. #include "kdebug.h"
  21. */
  22. #define byteout(addr,val) outb(val,addr)
  23. #define bytein(addr) inb(addr)
  24. static void
  25. dummyf(struct IsdnCardState *cs, u_char * data, int size)
  26. {
  27. printk(KERN_WARNING "HiSax: hfcd dummy fifo calledn");
  28. }
  29. static inline u_char
  30. ReadReg(struct IsdnCardState *cs, int data, u_char reg)
  31. {
  32. register u_char ret;
  33. if (data) {
  34. if (cs->hw.hfcD.cip != reg) { 
  35. cs->hw.hfcD.cip = reg;
  36. byteout(cs->hw.hfcD.addr | 1, reg);
  37. }
  38. ret = bytein(cs->hw.hfcD.addr);
  39. #if HFC_REG_DEBUG
  40. if (cs->debug & L1_DEB_HSCX_FIFO && (data != 2))
  41. debugl1(cs, "t3c RD %02x %02x", reg, ret);
  42. #endif
  43. } else
  44. ret = bytein(cs->hw.hfcD.addr | 1);
  45. return (ret);
  46. }
  47. static inline void
  48. WriteReg(struct IsdnCardState *cs, int data, u_char reg, u_char value)
  49. {
  50. if (cs->hw.hfcD.cip != reg) { 
  51. cs->hw.hfcD.cip = reg;
  52. byteout(cs->hw.hfcD.addr | 1, reg);
  53. }
  54. if (data)
  55. byteout(cs->hw.hfcD.addr, value);
  56. #if HFC_REG_DEBUG
  57. if (cs->debug & L1_DEB_HSCX_FIFO && (data != HFCD_DATA_NODEB))
  58. debugl1(cs, "t3c W%c %02x %02x", data ? 'D' : 'C', reg, value);
  59. #endif
  60. }
  61. /* Interface functions */
  62. static u_char
  63. readreghfcd(struct IsdnCardState *cs, u_char offset)
  64. {
  65. return(ReadReg(cs, HFCD_DATA, offset));
  66. }
  67. static void
  68. writereghfcd(struct IsdnCardState *cs, u_char offset, u_char value)
  69. {
  70. WriteReg(cs, HFCD_DATA, offset, value);
  71. }
  72. void
  73. set_cs_func(struct IsdnCardState *cs)
  74. {
  75. cs->readisac = &readreghfcd;
  76. cs->writeisac = &writereghfcd;
  77. cs->readisacfifo = &dummyf;
  78. cs->writeisacfifo = &dummyf;
  79. cs->BC_Read_Reg = &ReadReg;
  80. cs->BC_Write_Reg = &WriteReg;
  81. }
  82. static inline int
  83. WaitForBusy(struct IsdnCardState *cs)
  84. {
  85. int to = 130;
  86. while (!(ReadReg(cs, HFCD_DATA, HFCD_STAT) & HFCD_BUSY) && to) {
  87. udelay(1);
  88. to--;
  89. }
  90. if (!to)
  91. printk(KERN_WARNING "HiSax: WaitForBusy timeoutn");
  92. return (to);
  93. }
  94. static inline int
  95. WaitNoBusy(struct IsdnCardState *cs)
  96. {
  97. long flags;
  98. int to = 130;
  99. while ((ReadReg(cs, HFCD_STATUS, HFCD_STATUS) & HFCD_BUSY) && to) {
  100. save_flags(flags);
  101. sti();
  102. udelay(1);
  103. to--;
  104. restore_flags(flags);
  105. }
  106. if (!to) 
  107. printk(KERN_WARNING "HiSax: WaitNoBusy timeoutn");
  108. return (to);
  109. }
  110. static int
  111. SelFiFo(struct IsdnCardState *cs, u_char FiFo)
  112. {
  113. u_char cip;
  114. long flags;
  115. if (cs->hw.hfcD.fifo == FiFo)
  116. return(1);
  117. save_flags(flags);
  118. cli();
  119. switch(FiFo) {
  120. case 0: cip = HFCB_FIFO | HFCB_Z1 | HFCB_SEND | HFCB_B1;
  121. break;
  122. case 1: cip = HFCB_FIFO | HFCB_Z1 | HFCB_REC | HFCB_B1;
  123. break;
  124. case 2: cip = HFCB_FIFO | HFCB_Z1 | HFCB_SEND | HFCB_B2;
  125. break;
  126. case 3: cip = HFCB_FIFO | HFCB_Z1 | HFCB_REC | HFCB_B2;
  127. break;
  128. case 4: cip = HFCD_FIFO | HFCD_Z1 | HFCD_SEND;
  129. break;
  130. case 5: cip = HFCD_FIFO | HFCD_Z1 | HFCD_REC;
  131. break;
  132. default:
  133. restore_flags(flags);
  134. debugl1(cs, "SelFiFo Error");
  135. return(0);
  136. }
  137. cs->hw.hfcD.fifo = FiFo;
  138. WaitNoBusy(cs);
  139. cs->BC_Write_Reg(cs, HFCD_DATA, cip, 0);
  140. sti();
  141. WaitForBusy(cs);
  142. restore_flags(flags);
  143. return(2);
  144. }
  145. static int
  146. GetFreeFifoBytes_B(struct BCState *bcs)
  147. {
  148. int s;
  149. if (bcs->hw.hfc.f1 == bcs->hw.hfc.f2)
  150. return (bcs->cs->hw.hfcD.bfifosize);
  151. s = bcs->hw.hfc.send[bcs->hw.hfc.f1] - bcs->hw.hfc.send[bcs->hw.hfc.f2];
  152. if (s <= 0)
  153. s += bcs->cs->hw.hfcD.bfifosize;
  154. s = bcs->cs->hw.hfcD.bfifosize - s;
  155. return (s);
  156. }
  157. static int
  158. GetFreeFifoBytes_D(struct IsdnCardState *cs)
  159. {
  160. int s;
  161. if (cs->hw.hfcD.f1 == cs->hw.hfcD.f2)
  162. return (cs->hw.hfcD.dfifosize);
  163. s = cs->hw.hfcD.send[cs->hw.hfcD.f1] - cs->hw.hfcD.send[cs->hw.hfcD.f2];
  164. if (s <= 0)
  165. s += cs->hw.hfcD.dfifosize;
  166. s = cs->hw.hfcD.dfifosize - s;
  167. return (s);
  168. }
  169. static int
  170. ReadZReg(struct IsdnCardState *cs, u_char reg)
  171. {
  172. int val;
  173. WaitNoBusy(cs);
  174. val = 256 * ReadReg(cs, HFCD_DATA, reg | HFCB_Z_HIGH);
  175. WaitNoBusy(cs);
  176. val += ReadReg(cs, HFCD_DATA, reg | HFCB_Z_LOW);
  177. return (val);
  178. }
  179. static void
  180. hfc_sched_event(struct BCState *bcs, int event)
  181. {
  182. bcs->event |= 1 << event;
  183. queue_task(&bcs->tqueue, &tq_immediate);
  184. mark_bh(IMMEDIATE_BH);
  185. }
  186. static struct sk_buff
  187. *hfc_empty_fifo(struct BCState *bcs, int count)
  188. {
  189. u_char *ptr;
  190. struct sk_buff *skb;
  191. struct IsdnCardState *cs = bcs->cs;
  192. int idx;
  193. int chksum;
  194. long flags;
  195. u_char stat, cip;
  196. if ((cs->debug & L1_DEB_HSCX) && !(cs->debug & L1_DEB_HSCX_FIFO))
  197. debugl1(cs, "hfc_empty_fifo");
  198. idx = 0;
  199. save_flags(flags);
  200. if (count > HSCX_BUFMAX + 3) {
  201. if (cs->debug & L1_DEB_WARN)
  202. debugl1(cs, "hfc_empty_fifo: incoming packet too large");
  203. cip = HFCB_FIFO | HFCB_FIFO_OUT | HFCB_REC | HFCB_CHANNEL(bcs->channel);
  204. while (idx++ < count) {
  205. cli();
  206. WaitNoBusy(cs);
  207. ReadReg(cs, HFCD_DATA_NODEB, cip);
  208. sti();
  209. }
  210. skb = NULL;
  211. } else if (count < 4) {
  212. if (cs->debug & L1_DEB_WARN)
  213. debugl1(cs, "hfc_empty_fifo: incoming packet too small");
  214. cip = HFCB_FIFO | HFCB_FIFO_OUT | HFCB_REC | HFCB_CHANNEL(bcs->channel);
  215. #ifdef ERROR_STATISTIC
  216. bcs->err_inv++;
  217. #endif
  218. cli();
  219. while ((idx++ < count) && WaitNoBusy(cs))
  220. ReadReg(cs, HFCD_DATA_NODEB, cip);
  221. skb = NULL;
  222. } else if (!(skb = dev_alloc_skb(count - 3)))
  223. printk(KERN_WARNING "HFC: receive out of memoryn");
  224. else {
  225. ptr = skb_put(skb, count - 3);
  226. idx = 0;
  227. cip = HFCB_FIFO | HFCB_FIFO_OUT | HFCB_REC | HFCB_CHANNEL(bcs->channel);
  228. cli();
  229. while (idx < (count - 3)) {
  230. cli();
  231. if (!WaitNoBusy(cs))
  232. break;
  233. *ptr = ReadReg(cs,  HFCD_DATA_NODEB, cip);
  234. sti();
  235. ptr++;
  236. idx++;
  237. }
  238. if (idx != count - 3) {
  239. sti();
  240. debugl1(cs, "RFIFO BUSY error");
  241. printk(KERN_WARNING "HFC FIFO channel %d BUSY Errorn", bcs->channel);
  242. dev_kfree_skb_irq(skb);
  243. skb = NULL;
  244. } else {
  245. cli();
  246. WaitNoBusy(cs);
  247. chksum = (ReadReg(cs, HFCD_DATA, cip) << 8);
  248. WaitNoBusy(cs);
  249. chksum += ReadReg(cs, HFCD_DATA, cip);
  250. WaitNoBusy(cs);
  251. stat = ReadReg(cs, HFCD_DATA, cip);
  252. sti();
  253. if (cs->debug & L1_DEB_HSCX)
  254. debugl1(cs, "hfc_empty_fifo %d chksum %x stat %x",
  255. bcs->channel, chksum, stat);
  256. if (stat) {
  257. debugl1(cs, "FIFO CRC error");
  258. dev_kfree_skb_irq(skb);
  259. skb = NULL;
  260. #ifdef ERROR_STATISTIC
  261. bcs->err_crc++;
  262. #endif
  263. }
  264. }
  265. }
  266. sti();
  267. WaitForBusy(cs);
  268. cli();
  269. WaitNoBusy(cs);
  270. stat = ReadReg(cs, HFCD_DATA, HFCB_FIFO | HFCB_F2_INC |
  271. HFCB_REC | HFCB_CHANNEL(bcs->channel));
  272. sti();
  273. WaitForBusy(cs);
  274. restore_flags(flags);
  275. return (skb);
  276. }
  277. static void
  278. hfc_fill_fifo(struct BCState *bcs)
  279. {
  280. struct IsdnCardState *cs = bcs->cs;
  281. long flags;
  282. int idx, fcnt;
  283. int count;
  284. u_char cip;
  285. if (!bcs->tx_skb)
  286. return;
  287. if (bcs->tx_skb->len <= 0)
  288. return;
  289. save_flags(flags);
  290. cli();
  291. SelFiFo(cs, HFCB_SEND | HFCB_CHANNEL(bcs->channel)); 
  292. cip = HFCB_FIFO | HFCB_F1 | HFCB_SEND | HFCB_CHANNEL(bcs->channel);
  293. WaitNoBusy(cs);
  294. bcs->hw.hfc.f1 = ReadReg(cs, HFCD_DATA, cip);
  295. WaitNoBusy(cs);
  296. cip = HFCB_FIFO | HFCB_F2 | HFCB_SEND | HFCB_CHANNEL(bcs->channel);
  297. WaitNoBusy(cs);
  298. bcs->hw.hfc.f2 = ReadReg(cs, HFCD_DATA, cip);
  299. bcs->hw.hfc.send[bcs->hw.hfc.f1] = ReadZReg(cs, HFCB_FIFO | HFCB_Z1 | HFCB_SEND | HFCB_CHANNEL(bcs->channel));
  300. sti();
  301.   if (cs->debug & L1_DEB_HSCX)
  302. debugl1(cs, "hfc_fill_fifo %d f1(%d) f2(%d) z1(%x)",
  303. bcs->channel, bcs->hw.hfc.f1, bcs->hw.hfc.f2,
  304. bcs->hw.hfc.send[bcs->hw.hfc.f1]);
  305. fcnt = bcs->hw.hfc.f1 - bcs->hw.hfc.f2;
  306. if (fcnt < 0)
  307. fcnt += 32;
  308. if (fcnt > 30) {
  309. if (cs->debug & L1_DEB_HSCX)
  310. debugl1(cs, "hfc_fill_fifo more as 30 frames");
  311. restore_flags(flags);
  312. return;
  313. }
  314. count = GetFreeFifoBytes_B(bcs);
  315. if (cs->debug & L1_DEB_HSCX)
  316. debugl1(cs, "hfc_fill_fifo %d count(%ld/%d),%lx",
  317. bcs->channel, bcs->tx_skb->len,
  318. count, current->state);
  319. if (count < bcs->tx_skb->len) {
  320. if (cs->debug & L1_DEB_HSCX)
  321. debugl1(cs, "hfc_fill_fifo no fifo mem");
  322. restore_flags(flags);
  323. return;
  324. }
  325. cip = HFCB_FIFO | HFCB_FIFO_IN | HFCB_SEND | HFCB_CHANNEL(bcs->channel);
  326. idx = 0;
  327. cli();
  328. WaitForBusy(cs);
  329. WaitNoBusy(cs);
  330. WriteReg(cs, HFCD_DATA_NODEB, cip, bcs->tx_skb->data[idx++]);
  331. while (idx < bcs->tx_skb->len) {
  332. cli();
  333. if (!WaitNoBusy(cs))
  334. break;
  335. WriteReg(cs, HFCD_DATA_NODEB, cip, bcs->tx_skb->data[idx]);
  336. sti();
  337. idx++;
  338. }
  339. if (idx != bcs->tx_skb->len) {
  340. sti();
  341. debugl1(cs, "FIFO Send BUSY error");
  342. printk(KERN_WARNING "HFC S FIFO channel %d BUSY Errorn", bcs->channel);
  343. } else {
  344. bcs->tx_cnt -= bcs->tx_skb->len;
  345. if (bcs->st->lli.l1writewakeup &&
  346. (PACKET_NOACK != bcs->tx_skb->pkt_type))
  347. bcs->st->lli.l1writewakeup(bcs->st, bcs->tx_skb->len);
  348. dev_kfree_skb_any(bcs->tx_skb);
  349. bcs->tx_skb = NULL;
  350. }
  351. WaitForBusy(cs);
  352. cli();
  353. WaitNoBusy(cs);
  354. ReadReg(cs, HFCD_DATA, HFCB_FIFO | HFCB_F1_INC | HFCB_SEND | HFCB_CHANNEL(bcs->channel));
  355. sti();
  356. WaitForBusy(cs);
  357. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  358. restore_flags(flags);
  359. return;
  360. }
  361. static void
  362. hfc_send_data(struct BCState *bcs)
  363. {
  364. struct IsdnCardState *cs = bcs->cs;
  365. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  366. hfc_fill_fifo(bcs);
  367. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  368. } else
  369. debugl1(cs,"send_data %d blocked", bcs->channel);
  370. }
  371. void
  372. main_rec_2bds0(struct BCState *bcs)
  373. {
  374. long flags;
  375. struct IsdnCardState *cs = bcs->cs;
  376. int z1, z2, rcnt;
  377. u_char f1, f2, cip;
  378. int receive, count = 5;
  379. struct sk_buff *skb;
  380. save_flags(flags);
  381.     Begin:
  382. count--;
  383. cli();
  384. if (test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  385. debugl1(cs,"rec_data %d blocked", bcs->channel);
  386. restore_flags(flags);
  387. return;
  388. }
  389. SelFiFo(cs, HFCB_REC | HFCB_CHANNEL(bcs->channel));
  390. cip = HFCB_FIFO | HFCB_F1 | HFCB_REC | HFCB_CHANNEL(bcs->channel);
  391. WaitNoBusy(cs);
  392. f1 = ReadReg(cs, HFCD_DATA, cip);
  393. cip = HFCB_FIFO | HFCB_F2 | HFCB_REC | HFCB_CHANNEL(bcs->channel);
  394. WaitNoBusy(cs);
  395. f2 = ReadReg(cs, HFCD_DATA, cip);
  396. sti();
  397. if (f1 != f2) {
  398. if (cs->debug & L1_DEB_HSCX)
  399. debugl1(cs, "hfc rec %d f1(%d) f2(%d)",
  400. bcs->channel, f1, f2);
  401. cli();
  402. z1 = ReadZReg(cs, HFCB_FIFO | HFCB_Z1 | HFCB_REC | HFCB_CHANNEL(bcs->channel));
  403. z2 = ReadZReg(cs, HFCB_FIFO | HFCB_Z2 | HFCB_REC | HFCB_CHANNEL(bcs->channel));
  404. sti();
  405. rcnt = z1 - z2;
  406. if (rcnt < 0)
  407. rcnt += cs->hw.hfcD.bfifosize;
  408. rcnt++;
  409. if (cs->debug & L1_DEB_HSCX)
  410. debugl1(cs, "hfc rec %d z1(%x) z2(%x) cnt(%d)",
  411. bcs->channel, z1, z2, rcnt);
  412. if ((skb = hfc_empty_fifo(bcs, rcnt))) {
  413. cli();
  414. skb_queue_tail(&bcs->rqueue, skb);
  415. sti();
  416. hfc_sched_event(bcs, B_RCVBUFREADY);
  417. }
  418. rcnt = f1 -f2;
  419. if (rcnt<0)
  420. rcnt += 32;
  421. if (rcnt>1)
  422. receive = 1;
  423. else
  424. receive = 0;
  425. } else
  426. receive = 0;
  427. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  428. if (count && receive)
  429. goto Begin;
  430. restore_flags(flags);
  431. return;
  432. }
  433. void
  434. mode_2bs0(struct BCState *bcs, int mode, int bc)
  435. {
  436. struct IsdnCardState *cs = bcs->cs;
  437. if (cs->debug & L1_DEB_HSCX)
  438. debugl1(cs, "HFCD bchannel mode %d bchan %d/%d",
  439. mode, bc, bcs->channel);
  440. bcs->mode = mode;
  441. bcs->channel = bc;
  442. switch (mode) {
  443. case (L1_MODE_NULL):
  444. if (bc) {
  445. cs->hw.hfcD.conn |= 0x18;
  446. cs->hw.hfcD.sctrl &= ~SCTRL_B2_ENA;
  447. } else {
  448. cs->hw.hfcD.conn |= 0x3;
  449. cs->hw.hfcD.sctrl &= ~SCTRL_B1_ENA;
  450. }
  451. break;
  452. case (L1_MODE_TRANS):
  453. if (bc) {
  454. cs->hw.hfcD.ctmt |= 2;
  455. cs->hw.hfcD.conn &= ~0x18;
  456. cs->hw.hfcD.sctrl |= SCTRL_B2_ENA;
  457. } else {
  458. cs->hw.hfcD.ctmt |= 1;
  459. cs->hw.hfcD.conn &= ~0x3;
  460. cs->hw.hfcD.sctrl |= SCTRL_B1_ENA;
  461. }
  462. break;
  463. case (L1_MODE_HDLC):
  464. if (bc) {
  465. cs->hw.hfcD.ctmt &= ~2;
  466. cs->hw.hfcD.conn &= ~0x18;
  467. cs->hw.hfcD.sctrl |= SCTRL_B2_ENA;
  468. } else {
  469. cs->hw.hfcD.ctmt &= ~1;
  470. cs->hw.hfcD.conn &= ~0x3;
  471. cs->hw.hfcD.sctrl |= SCTRL_B1_ENA;
  472. }
  473. break;
  474. }
  475. WriteReg(cs, HFCD_DATA, HFCD_SCTRL, cs->hw.hfcD.sctrl);
  476. WriteReg(cs, HFCD_DATA, HFCD_CTMT, cs->hw.hfcD.ctmt);
  477. WriteReg(cs, HFCD_DATA, HFCD_CONN, cs->hw.hfcD.conn);
  478. }
  479. static void
  480. hfc_l2l1(struct PStack *st, int pr, void *arg)
  481. {
  482. struct sk_buff *skb = arg;
  483. long flags;
  484. switch (pr) {
  485. case (PH_DATA | REQUEST):
  486. save_flags(flags);
  487. cli();
  488. if (st->l1.bcs->tx_skb) {
  489. skb_queue_tail(&st->l1.bcs->squeue, skb);
  490. restore_flags(flags);
  491. } else {
  492. st->l1.bcs->tx_skb = skb;
  493. /* test_and_set_bit(BC_FLG_BUSY, &st->l1.bcs->Flag);
  494. */ st->l1.bcs->cs->BC_Send_Data(st->l1.bcs);
  495. restore_flags(flags);
  496. }
  497. break;
  498. case (PH_PULL | INDICATION):
  499. if (st->l1.bcs->tx_skb) {
  500. printk(KERN_WARNING "hfc_l2l1: this shouldn't happenn");
  501. break;
  502. }
  503. save_flags(flags);
  504. cli();
  505. /* test_and_set_bit(BC_FLG_BUSY, &st->l1.bcs->Flag);
  506. */ st->l1.bcs->tx_skb = skb;
  507. st->l1.bcs->cs->BC_Send_Data(st->l1.bcs);
  508. restore_flags(flags);
  509. break;
  510. case (PH_PULL | REQUEST):
  511. if (!st->l1.bcs->tx_skb) {
  512. test_and_clear_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  513. st->l1.l1l2(st, PH_PULL | CONFIRM, NULL);
  514. } else
  515. test_and_set_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  516. break;
  517. case (PH_ACTIVATE | REQUEST):
  518. test_and_set_bit(BC_FLG_ACTIV, &st->l1.bcs->Flag);
  519. mode_2bs0(st->l1.bcs, st->l1.mode, st->l1.bc);
  520. l1_msg_b(st, pr, arg);
  521. break;
  522. case (PH_DEACTIVATE | REQUEST):
  523. l1_msg_b(st, pr, arg);
  524. break;
  525. case (PH_DEACTIVATE | CONFIRM):
  526. test_and_clear_bit(BC_FLG_ACTIV, &st->l1.bcs->Flag);
  527. test_and_clear_bit(BC_FLG_BUSY, &st->l1.bcs->Flag);
  528. mode_2bs0(st->l1.bcs, 0, st->l1.bc);
  529. st->l1.l1l2(st, PH_DEACTIVATE | CONFIRM, NULL);
  530. break;
  531. }
  532. }
  533. void
  534. close_2bs0(struct BCState *bcs)
  535. {
  536. mode_2bs0(bcs, 0, bcs->channel);
  537. if (test_and_clear_bit(BC_FLG_INIT, &bcs->Flag)) {
  538. skb_queue_purge(&bcs->rqueue);
  539. skb_queue_purge(&bcs->squeue);
  540. if (bcs->tx_skb) {
  541. dev_kfree_skb_any(bcs->tx_skb);
  542. bcs->tx_skb = NULL;
  543. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  544. }
  545. }
  546. }
  547. static int
  548. open_hfcstate(struct IsdnCardState *cs, struct BCState *bcs)
  549. {
  550. if (!test_and_set_bit(BC_FLG_INIT, &bcs->Flag)) {
  551. skb_queue_head_init(&bcs->rqueue);
  552. skb_queue_head_init(&bcs->squeue);
  553. }
  554. bcs->tx_skb = NULL;
  555. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  556. bcs->event = 0;
  557. bcs->tx_cnt = 0;
  558. return (0);
  559. }
  560. int
  561. setstack_2b(struct PStack *st, struct BCState *bcs)
  562. {
  563. bcs->channel = st->l1.bc;
  564. if (open_hfcstate(st->l1.hardware, bcs))
  565. return (-1);
  566. st->l1.bcs = bcs;
  567. st->l2.l2l1 = hfc_l2l1;
  568. setstack_manager(st);
  569. bcs->st = st;
  570. setstack_l1_B(st);
  571. return (0);
  572. }
  573. static void
  574. hfcd_bh(struct IsdnCardState *cs)
  575. {
  576. /* struct PStack *stptr;
  577. */
  578. if (!cs)
  579. return;
  580. if (test_and_clear_bit(D_L1STATECHANGE, &cs->event)) {
  581. switch (cs->dc.hfcd.ph_state) {
  582. case (0):
  583. l1_msg(cs, HW_RESET | INDICATION, NULL);
  584. break;
  585. case (3):
  586. l1_msg(cs, HW_DEACTIVATE | INDICATION, NULL);
  587. break;
  588. case (8):
  589. l1_msg(cs, HW_RSYNC | INDICATION, NULL);
  590. break;
  591. case (6):
  592. l1_msg(cs, HW_INFO2 | INDICATION, NULL);
  593. break;
  594. case (7):
  595. l1_msg(cs, HW_INFO4_P8 | INDICATION, NULL);
  596. break;
  597. default:
  598. break;
  599. }
  600. }
  601. if (test_and_clear_bit(D_RCVBUFREADY, &cs->event))
  602. DChannel_proc_rcv(cs);
  603. if (test_and_clear_bit(D_XMTBUFREADY, &cs->event))
  604. DChannel_proc_xmt(cs);
  605. }
  606. void
  607. sched_event_D(struct IsdnCardState *cs, int event)
  608. {
  609. test_and_set_bit(event, &cs->event);
  610. queue_task(&cs->tqueue, &tq_immediate);
  611. mark_bh(IMMEDIATE_BH);
  612. }
  613. static
  614. int receive_dmsg(struct IsdnCardState *cs)
  615. {
  616. struct sk_buff *skb;
  617. long flags;
  618. int idx;
  619. int rcnt, z1, z2;
  620. u_char stat, cip, f1, f2;
  621. int chksum;
  622. int count=5;
  623. u_char *ptr;
  624. save_flags(flags);
  625. cli();
  626. if (test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  627. debugl1(cs, "rec_dmsg blocked");
  628. restore_flags(flags);
  629. return(1);
  630. }
  631. SelFiFo(cs, 4 | HFCD_REC);
  632. cip = HFCD_FIFO | HFCD_F1 | HFCD_REC;
  633. WaitNoBusy(cs);
  634. f1 = cs->readisac(cs, cip) & 0xf;
  635. cip = HFCD_FIFO | HFCD_F2 | HFCD_REC;
  636. WaitNoBusy(cs);
  637. f2 = cs->readisac(cs, cip) & 0xf;
  638. while ((f1 != f2) && count--) {
  639. z1 = ReadZReg(cs, HFCD_FIFO | HFCD_Z1 | HFCD_REC);
  640. z2 = ReadZReg(cs, HFCD_FIFO | HFCD_Z2 | HFCD_REC);
  641. rcnt = z1 - z2;
  642. if (rcnt < 0)
  643. rcnt += cs->hw.hfcD.dfifosize;
  644. rcnt++;
  645. if (cs->debug & L1_DEB_ISAC)
  646. debugl1(cs, "hfcd recd f1(%d) f2(%d) z1(%x) z2(%x) cnt(%d)",
  647. f1, f2, z1, z2, rcnt);
  648. sti();
  649. idx = 0;
  650. cip = HFCD_FIFO | HFCD_FIFO_OUT | HFCD_REC;
  651. if (rcnt > MAX_DFRAME_LEN + 3) {
  652. if (cs->debug & L1_DEB_WARN)
  653. debugl1(cs, "empty_fifo d: incoming packet too large");
  654. while (idx < rcnt) {
  655. cli();
  656. if (!(WaitNoBusy(cs)))
  657. break;
  658. ReadReg(cs, HFCD_DATA_NODEB, cip);
  659. sti();
  660. idx++;
  661. }
  662. } else if (rcnt < 4) {
  663. if (cs->debug & L1_DEB_WARN)
  664. debugl1(cs, "empty_fifo d: incoming packet too small");
  665. cli();
  666. while ((idx++ < rcnt) && WaitNoBusy(cs))
  667. ReadReg(cs, HFCD_DATA_NODEB, cip);
  668. } else if ((skb = dev_alloc_skb(rcnt - 3))) {
  669. ptr = skb_put(skb, rcnt - 3);
  670. while (idx < (rcnt - 3)) {
  671. cli();
  672. if (!(WaitNoBusy(cs)))
  673. break;
  674. *ptr = ReadReg(cs, HFCD_DATA_NODEB, cip);
  675. sti();
  676. idx++;
  677. ptr++;
  678. }
  679. if (idx != (rcnt - 3)) {
  680. sti();
  681. debugl1(cs, "RFIFO D BUSY error");
  682. printk(KERN_WARNING "HFC DFIFO channel BUSY Errorn");
  683. dev_kfree_skb_irq(skb);
  684. skb = NULL;
  685. #ifdef ERROR_STATISTIC
  686. cs->err_rx++;
  687. #endif
  688. } else {
  689. cli();
  690. WaitNoBusy(cs);
  691. chksum = (ReadReg(cs, HFCD_DATA, cip) << 8);
  692. WaitNoBusy(cs);
  693. chksum += ReadReg(cs, HFCD_DATA, cip);
  694. WaitNoBusy(cs);
  695. stat = ReadReg(cs, HFCD_DATA, cip);
  696. sti();
  697. if (cs->debug & L1_DEB_ISAC)
  698. debugl1(cs, "empty_dfifo chksum %x stat %x",
  699. chksum, stat);
  700. if (stat) {
  701. debugl1(cs, "FIFO CRC error");
  702. dev_kfree_skb_irq(skb);
  703. skb = NULL;
  704. #ifdef ERROR_STATISTIC
  705. cs->err_crc++;
  706. #endif
  707. } else {
  708. skb_queue_tail(&cs->rq, skb);
  709. sched_event_D(cs, D_RCVBUFREADY);
  710. }
  711. }
  712. } else
  713. printk(KERN_WARNING "HFC: D receive out of memoryn");
  714. sti();
  715. WaitForBusy(cs);
  716. cip = HFCD_FIFO | HFCD_F2_INC | HFCD_REC;
  717. cli();
  718. WaitNoBusy(cs);
  719. stat = ReadReg(cs, HFCD_DATA, cip);
  720. sti();
  721. WaitForBusy(cs);
  722. cip = HFCD_FIFO | HFCD_F2 | HFCD_REC;
  723. cli();
  724. WaitNoBusy(cs);
  725. f2 = cs->readisac(cs, cip) & 0xf;
  726. }
  727. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  728. restore_flags(flags);
  729. return(1);
  730. static void
  731. hfc_fill_dfifo(struct IsdnCardState *cs)
  732. {
  733. long flags;
  734. int idx, fcnt;
  735. int count;
  736. u_char cip;
  737. if (!cs->tx_skb)
  738. return;
  739. if (cs->tx_skb->len <= 0)
  740. return;
  741. save_flags(flags);
  742. cli();
  743. SelFiFo(cs, 4 | HFCD_SEND);
  744. cip = HFCD_FIFO | HFCD_F1 | HFCD_SEND;
  745. WaitNoBusy(cs);
  746. cs->hw.hfcD.f1 = ReadReg(cs, HFCD_DATA, cip) & 0xf;
  747. WaitNoBusy(cs);
  748. cip = HFCD_FIFO | HFCD_F2 | HFCD_SEND;
  749. cs->hw.hfcD.f2 = ReadReg(cs, HFCD_DATA, cip) & 0xf;
  750. cs->hw.hfcD.send[cs->hw.hfcD.f1] = ReadZReg(cs, HFCD_FIFO | HFCD_Z1 | HFCD_SEND);
  751. sti();
  752. if (cs->debug & L1_DEB_ISAC)
  753. debugl1(cs, "hfc_fill_Dfifo f1(%d) f2(%d) z1(%x)",
  754. cs->hw.hfcD.f1, cs->hw.hfcD.f2,
  755. cs->hw.hfcD.send[cs->hw.hfcD.f1]);
  756. fcnt = cs->hw.hfcD.f1 - cs->hw.hfcD.f2;
  757. if (fcnt < 0)
  758. fcnt += 16;
  759. if (fcnt > 14) {
  760. if (cs->debug & L1_DEB_HSCX)
  761. debugl1(cs, "hfc_fill_Dfifo more as 14 frames");
  762. restore_flags(flags);
  763. return;
  764. }
  765. count = GetFreeFifoBytes_D(cs);
  766. if (cs->debug & L1_DEB_ISAC)
  767. debugl1(cs, "hfc_fill_Dfifo count(%ld/%d)",
  768. cs->tx_skb->len, count);
  769. if (count < cs->tx_skb->len) {
  770. if (cs->debug & L1_DEB_ISAC)
  771. debugl1(cs, "hfc_fill_Dfifo no fifo mem");
  772. restore_flags(flags);
  773. return;
  774. }
  775. cip = HFCD_FIFO | HFCD_FIFO_IN | HFCD_SEND;
  776. idx = 0;
  777. cli();
  778. WaitForBusy(cs);
  779. WaitNoBusy(cs);
  780. WriteReg(cs, HFCD_DATA_NODEB, cip, cs->tx_skb->data[idx++]);
  781. while (idx < cs->tx_skb->len) {
  782. cli();
  783. if (!(WaitNoBusy(cs)))
  784. break;
  785. WriteReg(cs, HFCD_DATA_NODEB, cip, cs->tx_skb->data[idx]);
  786. sti();
  787. idx++;
  788. }
  789. if (idx != cs->tx_skb->len) {
  790. sti();
  791. debugl1(cs, "DFIFO Send BUSY error");
  792. printk(KERN_WARNING "HFC S DFIFO channel BUSY Errorn");
  793. }
  794. WaitForBusy(cs);
  795. cli();
  796. WaitNoBusy(cs);
  797. ReadReg(cs, HFCD_DATA, HFCD_FIFO | HFCD_F1_INC | HFCD_SEND);
  798. dev_kfree_skb_any(cs->tx_skb);
  799. cs->tx_skb = NULL;
  800. sti();
  801. WaitForBusy(cs);
  802. restore_flags(flags);
  803. return;
  804. }
  805. static 
  806. struct BCState *Sel_BCS(struct IsdnCardState *cs, int channel)
  807. {
  808. if (cs->bcs[0].mode && (cs->bcs[0].channel == channel))
  809. return(&cs->bcs[0]);
  810. else if (cs->bcs[1].mode && (cs->bcs[1].channel == channel))
  811. return(&cs->bcs[1]);
  812. else
  813. return(NULL);
  814. }
  815. void
  816. hfc2bds0_interrupt(struct IsdnCardState *cs, u_char val)
  817. {
  818.         u_char exval;
  819.         struct BCState *bcs;
  820. int count=15;
  821. long flags;
  822. if (cs->debug & L1_DEB_ISAC)
  823. debugl1(cs, "HFCD irq %x %s", val,
  824. test_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags) ?
  825. "locked" : "unlocked");
  826. val &= cs->hw.hfcD.int_m1;
  827. if (val & 0x40) { /* TE state machine irq */
  828. exval = cs->readisac(cs, HFCD_STATES) & 0xf;
  829. if (cs->debug & L1_DEB_ISAC)
  830. debugl1(cs, "ph_state chg %d->%d", cs->dc.hfcd.ph_state,
  831. exval);
  832. cs->dc.hfcd.ph_state = exval;
  833. sched_event_D(cs, D_L1STATECHANGE);
  834. val &= ~0x40;
  835. }
  836. while (val) {
  837. save_flags(flags);
  838. cli();
  839. if (test_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  840. cs->hw.hfcD.int_s1 |= val;
  841. restore_flags(flags);
  842. return;
  843. }
  844. if (cs->hw.hfcD.int_s1 & 0x18) {
  845. exval = val;
  846. val =  cs->hw.hfcD.int_s1;
  847. cs->hw.hfcD.int_s1 = exval;
  848. }
  849. if (val & 0x08) {
  850. if (!(bcs=Sel_BCS(cs, 0))) {
  851. if (cs->debug)
  852. debugl1(cs, "hfcd spurious 0x08 IRQ");
  853. } else 
  854. main_rec_2bds0(bcs);
  855. }
  856. if (val & 0x10) {
  857. if (!(bcs=Sel_BCS(cs, 1))) {
  858. if (cs->debug)
  859. debugl1(cs, "hfcd spurious 0x10 IRQ");
  860. } else 
  861. main_rec_2bds0(bcs);
  862. }
  863. if (val & 0x01) {
  864. if (!(bcs=Sel_BCS(cs, 0))) {
  865. if (cs->debug)
  866. debugl1(cs, "hfcd spurious 0x01 IRQ");
  867. } else {
  868. if (bcs->tx_skb) {
  869. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  870. hfc_fill_fifo(bcs);
  871. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  872. } else
  873. debugl1(cs,"fill_data %d blocked", bcs->channel);
  874. } else {
  875. if ((bcs->tx_skb = skb_dequeue(&bcs->squeue))) {
  876. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  877. hfc_fill_fifo(bcs);
  878. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  879. } else
  880. debugl1(cs,"fill_data %d blocked", bcs->channel);
  881. } else {
  882. hfc_sched_event(bcs, B_XMTBUFREADY);
  883. }
  884. }
  885. }
  886. }
  887. if (val & 0x02) {
  888. if (!(bcs=Sel_BCS(cs, 1))) {
  889. if (cs->debug)
  890. debugl1(cs, "hfcd spurious 0x02 IRQ");
  891. } else {
  892. if (bcs->tx_skb) {
  893. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  894. hfc_fill_fifo(bcs);
  895. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  896. } else
  897. debugl1(cs,"fill_data %d blocked", bcs->channel);
  898. } else {
  899. if ((bcs->tx_skb = skb_dequeue(&bcs->squeue))) {
  900. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  901. hfc_fill_fifo(bcs);
  902. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  903. } else
  904. debugl1(cs,"fill_data %d blocked", bcs->channel);
  905. } else {
  906. hfc_sched_event(bcs, B_XMTBUFREADY);
  907. }
  908. }
  909. }
  910. }
  911. if (val & 0x20) { /* receive dframe */
  912. receive_dmsg(cs);
  913. }
  914. if (val & 0x04) { /* dframe transmitted */
  915. if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
  916. del_timer(&cs->dbusytimer);
  917. if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
  918. sched_event_D(cs, D_CLEARBUSY);
  919. if (cs->tx_skb) {
  920. if (cs->tx_skb->len) {
  921. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  922. hfc_fill_dfifo(cs);
  923. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  924. } else {
  925. debugl1(cs, "hfc_fill_dfifo irq blocked");
  926. }
  927. goto afterXPR;
  928. } else {
  929. dev_kfree_skb_irq(cs->tx_skb);
  930. cs->tx_cnt = 0;
  931. cs->tx_skb = NULL;
  932. }
  933. }
  934. if ((cs->tx_skb = skb_dequeue(&cs->sq))) {
  935. cs->tx_cnt = 0;
  936. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  937. hfc_fill_dfifo(cs);
  938. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  939. } else {
  940. debugl1(cs, "hfc_fill_dfifo irq blocked");
  941. }
  942. } else
  943. sched_event_D(cs, D_XMTBUFREADY);
  944. }
  945.       afterXPR:
  946. if (cs->hw.hfcD.int_s1 && count--) {
  947. val = cs->hw.hfcD.int_s1;
  948. cs->hw.hfcD.int_s1 = 0;
  949. if (cs->debug & L1_DEB_ISAC)
  950. debugl1(cs, "HFCD irq %x loop %d", val, 15-count);
  951. } else
  952. val = 0;
  953. restore_flags(flags);
  954. }
  955. }
  956. static void
  957. HFCD_l1hw(struct PStack *st, int pr, void *arg)
  958. {
  959. struct IsdnCardState *cs = (struct IsdnCardState *) st->l1.hardware;
  960. struct sk_buff *skb = arg;
  961. switch (pr) {
  962. case (PH_DATA | REQUEST):
  963. if (cs->debug & DEB_DLOG_HEX)
  964. LogFrame(cs, skb->data, skb->len);
  965. if (cs->debug & DEB_DLOG_VERBOSE)
  966. dlogframe(cs, skb, 0);
  967. if (cs->tx_skb) {
  968. skb_queue_tail(&cs->sq, skb);
  969. #ifdef L2FRAME_DEBUG /* psa */
  970. if (cs->debug & L1_DEB_LAPD)
  971. Logl2Frame(cs, skb, "PH_DATA Queued", 0);
  972. #endif
  973. } else {
  974. cs->tx_skb = skb;
  975. cs->tx_cnt = 0;
  976. #ifdef L2FRAME_DEBUG /* psa */
  977. if (cs->debug & L1_DEB_LAPD)
  978. Logl2Frame(cs, skb, "PH_DATA", 0);
  979. #endif
  980. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  981. hfc_fill_dfifo(cs);
  982. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  983. } else
  984. debugl1(cs, "hfc_fill_dfifo blocked");
  985. }
  986. break;
  987. case (PH_PULL | INDICATION):
  988. if (cs->tx_skb) {
  989. if (cs->debug & L1_DEB_WARN)
  990. debugl1(cs, " l2l1 tx_skb exist this shouldn't happen");
  991. skb_queue_tail(&cs->sq, skb);
  992. break;
  993. }
  994. if (cs->debug & DEB_DLOG_HEX)
  995. LogFrame(cs, skb->data, skb->len);
  996. if (cs->debug & DEB_DLOG_VERBOSE)
  997. dlogframe(cs, skb, 0);
  998. cs->tx_skb = skb;
  999. cs->tx_cnt = 0;
  1000. #ifdef L2FRAME_DEBUG /* psa */
  1001. if (cs->debug & L1_DEB_LAPD)
  1002. Logl2Frame(cs, skb, "PH_DATA_PULLED", 0);
  1003. #endif
  1004. if (!test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
  1005. hfc_fill_dfifo(cs);
  1006. test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
  1007. } else
  1008. debugl1(cs, "hfc_fill_dfifo blocked");
  1009. break;
  1010. case (PH_PULL | REQUEST):
  1011. #ifdef L2FRAME_DEBUG /* psa */
  1012. if (cs->debug & L1_DEB_LAPD)
  1013. debugl1(cs, "-> PH_REQUEST_PULL");
  1014. #endif
  1015. if (!cs->tx_skb) {
  1016. test_and_clear_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  1017. st->l1.l1l2(st, PH_PULL | CONFIRM, NULL);
  1018. } else
  1019. test_and_set_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  1020. break;
  1021. case (HW_RESET | REQUEST):
  1022. cs->writeisac(cs, HFCD_STATES, HFCD_LOAD_STATE | 3); /* HFC ST 3 */
  1023. udelay(6);
  1024. cs->writeisac(cs, HFCD_STATES, 3); /* HFC ST 2 */
  1025. cs->hw.hfcD.mst_m |= HFCD_MASTER;
  1026. cs->writeisac(cs, HFCD_MST_MODE, cs->hw.hfcD.mst_m);
  1027. cs->writeisac(cs, HFCD_STATES, HFCD_ACTIVATE | HFCD_DO_ACTION);
  1028. l1_msg(cs, HW_POWERUP | CONFIRM, NULL);
  1029. break;
  1030. case (HW_ENABLE | REQUEST):
  1031. cs->writeisac(cs, HFCD_STATES, HFCD_ACTIVATE | HFCD_DO_ACTION);
  1032. break;
  1033. case (HW_DEACTIVATE | REQUEST):
  1034. cs->hw.hfcD.mst_m &= ~HFCD_MASTER;
  1035. cs->writeisac(cs, HFCD_MST_MODE, cs->hw.hfcD.mst_m);
  1036. break;
  1037. case (HW_INFO3 | REQUEST):
  1038. cs->hw.hfcD.mst_m |= HFCD_MASTER;
  1039. cs->writeisac(cs, HFCD_MST_MODE, cs->hw.hfcD.mst_m);
  1040. break;
  1041. default:
  1042. if (cs->debug & L1_DEB_WARN)
  1043. debugl1(cs, "hfcd_l1hw unknown pr %4x", pr);
  1044. break;
  1045. }
  1046. }
  1047. void
  1048. setstack_hfcd(struct PStack *st, struct IsdnCardState *cs)
  1049. {
  1050. st->l1.l1hw = HFCD_l1hw;
  1051. }
  1052. static void
  1053. hfc_dbusy_timer(struct IsdnCardState *cs)
  1054. {
  1055. }
  1056. unsigned int __init
  1057. *init_send_hfcd(int cnt)
  1058. {
  1059. int i, *send;
  1060. if (!(send = kmalloc(cnt * sizeof(unsigned int), GFP_ATOMIC))) {
  1061. printk(KERN_WARNING
  1062.        "HiSax: No memory for hfcd.sendn");
  1063. return(NULL);
  1064. }
  1065. for (i = 0; i < cnt; i++)
  1066. send[i] = 0x1fff;
  1067. return(send);
  1068. }
  1069. void __init
  1070. init2bds0(struct IsdnCardState *cs)
  1071. {
  1072. cs->setstack_d = setstack_hfcd;
  1073. cs->dbusytimer.function = (void *) hfc_dbusy_timer;
  1074. cs->dbusytimer.data = (long) cs;
  1075. init_timer(&cs->dbusytimer);
  1076. cs->tqueue.routine = (void *) (void *) hfcd_bh;
  1077. if (!cs->hw.hfcD.send)
  1078. cs->hw.hfcD.send = init_send_hfcd(16);
  1079. if (!cs->bcs[0].hw.hfc.send)
  1080. cs->bcs[0].hw.hfc.send = init_send_hfcd(32);
  1081. if (!cs->bcs[1].hw.hfc.send)
  1082. cs->bcs[1].hw.hfc.send = init_send_hfcd(32);
  1083. cs->BC_Send_Data = &hfc_send_data;
  1084. cs->bcs[0].BC_SetStack = setstack_2b;
  1085. cs->bcs[1].BC_SetStack = setstack_2b;
  1086. cs->bcs[0].BC_Close = close_2bs0;
  1087. cs->bcs[1].BC_Close = close_2bs0;
  1088. mode_2bs0(cs->bcs, 0, 0);
  1089. mode_2bs0(cs->bcs + 1, 0, 1);
  1090. }
  1091. void
  1092. release2bds0(struct IsdnCardState *cs)
  1093. {
  1094. if (cs->bcs[0].hw.hfc.send) {
  1095. kfree(cs->bcs[0].hw.hfc.send);
  1096. cs->bcs[0].hw.hfc.send = NULL;
  1097. }
  1098. if (cs->bcs[1].hw.hfc.send) {
  1099. kfree(cs->bcs[1].hw.hfc.send);
  1100. cs->bcs[1].hw.hfc.send = NULL;
  1101. }
  1102. if (cs->hw.hfcD.send) {
  1103. kfree(cs->hw.hfcD.send);
  1104. cs->hw.hfcD.send = NULL;
  1105. }
  1106. }