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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: w6692.c,v 1.1.4.1 2001/11/20 14:19:36 kai Exp $
  2.  *
  3.  * Winbond W6692 specific routines
  4.  *
  5.  * Author       Petr Novak
  6.  * Copyright    by Petr Novak        <petr.novak@i.cz>
  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. #include <linux/config.h>
  13. #include <linux/init.h>
  14. #define __NO_VERSION__
  15. #include "hisax.h"
  16. #include "w6692.h"
  17. #include "isdnl1.h"
  18. #include <linux/interrupt.h>
  19. #include <linux/pci.h>
  20. /* table entry in the PCI devices list */
  21. typedef struct {
  22. int vendor_id;
  23. int device_id;
  24. char *vendor_name;
  25. char *card_name;
  26. } PCI_ENTRY;
  27. static const PCI_ENTRY id_list[] =
  28. {
  29. {PCI_VENDOR_ID_DYNALINK, PCI_DEVICE_ID_DYNALINK_IS64PH, "Dynalink/AsusCom", "IS64PH"},
  30. {PCI_VENDOR_ID_WINBOND2, PCI_DEVICE_ID_WINBOND2_6692, "Winbond", "W6692"},
  31. {0, 0, NULL, NULL}
  32. };
  33. extern const char *CardType[];
  34. const char *w6692_revision = "$Revision: 1.1.4.1 $";
  35. #define DBUSY_TIMER_VALUE 80
  36. static char *W6692Ver[] __initdata =
  37. {"W6692 V00", "W6692 V01", "W6692 V10",
  38.  "W6692 V11"};
  39. static void
  40. W6692Version(struct IsdnCardState *cs, char *s)
  41. {
  42. int val;
  43. val = cs->readW6692(cs, W_D_RBCH);
  44. printk(KERN_INFO "%s Winbond W6692 version (%x): %sn", s, val, W6692Ver[(val >> 6) & 3]);
  45. }
  46. static void
  47. ph_command(struct IsdnCardState *cs, unsigned int command)
  48. {
  49. if (cs->debug & L1_DEB_ISAC)
  50. debugl1(cs, "ph_command %x", command);
  51. cs->writeisac(cs, W_CIX, command);
  52. }
  53. static void
  54. W6692_new_ph(struct IsdnCardState *cs)
  55. {
  56. switch (cs->dc.w6692.ph_state) {
  57. case (W_L1CMD_RST):
  58. ph_command(cs, W_L1CMD_DRC);
  59. l1_msg(cs, HW_RESET | INDICATION, NULL);
  60. /* fallthru */
  61. case (W_L1IND_CD):
  62. l1_msg(cs, HW_DEACTIVATE | CONFIRM, NULL);
  63. break;
  64. case (W_L1IND_DRD):
  65. l1_msg(cs, HW_DEACTIVATE | INDICATION, NULL);
  66. break;
  67. case (W_L1IND_CE):
  68. l1_msg(cs, HW_POWERUP | CONFIRM, NULL);
  69. break;
  70. case (W_L1IND_LD):
  71. l1_msg(cs, HW_RSYNC | INDICATION, NULL);
  72. break;
  73. case (W_L1IND_ARD):
  74. l1_msg(cs, HW_INFO2 | INDICATION, NULL);
  75. break;
  76. case (W_L1IND_AI8):
  77. l1_msg(cs, HW_INFO4_P8 | INDICATION, NULL);
  78. break;
  79. case (W_L1IND_AI10):
  80. l1_msg(cs, HW_INFO4_P10 | INDICATION, NULL);
  81. break;
  82. default:
  83. break;
  84. }
  85. }
  86. static void
  87. W6692_bh(struct IsdnCardState *cs)
  88. {
  89. struct PStack *stptr;
  90. if (!cs)
  91. return;
  92. if (test_and_clear_bit(D_CLEARBUSY, &cs->event)) {
  93. if (cs->debug)
  94. debugl1(cs, "D-Channel Busy cleared");
  95. stptr = cs->stlist;
  96. while (stptr != NULL) {
  97. stptr->l1.l1l2(stptr, PH_PAUSE | CONFIRM, NULL);
  98. stptr = stptr->next;
  99. }
  100. }
  101. if (test_and_clear_bit(D_L1STATECHANGE, &cs->event))
  102. W6692_new_ph(cs);
  103. if (test_and_clear_bit(D_RCVBUFREADY, &cs->event))
  104. DChannel_proc_rcv(cs);
  105. if (test_and_clear_bit(D_XMTBUFREADY, &cs->event))
  106. DChannel_proc_xmt(cs);
  107. /*
  108.    if (test_and_clear_bit(D_RX_MON1, &cs->event))
  109.    arcofi_fsm(cs, ARCOFI_RX_END, NULL);
  110.    if (test_and_clear_bit(D_TX_MON1, &cs->event))
  111.    arcofi_fsm(cs, ARCOFI_TX_END, NULL);
  112.  */
  113. }
  114. void
  115. W6692_sched_event(struct IsdnCardState *cs, int event)
  116. {
  117. test_and_set_bit(event, &cs->event);
  118. queue_task(&cs->tqueue, &tq_immediate);
  119. mark_bh(IMMEDIATE_BH);
  120. }
  121. static void
  122. W6692B_sched_event(struct BCState *bcs, int event)
  123. {
  124. bcs->event |= 1 << event;
  125. queue_task(&bcs->tqueue, &tq_immediate);
  126. mark_bh(IMMEDIATE_BH);
  127. }
  128. static void
  129. W6692_empty_fifo(struct IsdnCardState *cs, int count)
  130. {
  131. u_char *ptr;
  132. long flags;
  133. if ((cs->debug & L1_DEB_ISAC) && !(cs->debug & L1_DEB_ISAC_FIFO))
  134. debugl1(cs, "W6692_empty_fifo");
  135. if ((cs->rcvidx + count) >= MAX_DFRAME_LEN_L1) {
  136. if (cs->debug & L1_DEB_WARN)
  137. debugl1(cs, "W6692_empty_fifo overrun %d",
  138. cs->rcvidx + count);
  139. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_RACK);
  140. cs->rcvidx = 0;
  141. return;
  142. }
  143. ptr = cs->rcvbuf + cs->rcvidx;
  144. cs->rcvidx += count;
  145. save_flags(flags);
  146. cli();
  147. cs->readW6692fifo(cs, ptr, count);
  148. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_RACK);
  149. restore_flags(flags);
  150. if (cs->debug & L1_DEB_ISAC_FIFO) {
  151. char *t = cs->dlog;
  152. t += sprintf(t, "W6692_empty_fifo cnt %d", count);
  153. QuickHex(t, ptr, count);
  154. debugl1(cs, cs->dlog);
  155. }
  156. }
  157. static void
  158. W6692_fill_fifo(struct IsdnCardState *cs)
  159. {
  160. int count, more;
  161. u_char *ptr;
  162. long flags;
  163. if ((cs->debug & L1_DEB_ISAC) && !(cs->debug & L1_DEB_ISAC_FIFO))
  164. debugl1(cs, "W6692_fill_fifo");
  165. if (!cs->tx_skb)
  166. return;
  167. count = cs->tx_skb->len;
  168. if (count <= 0)
  169. return;
  170. more = 0;
  171. if (count > W_D_FIFO_THRESH) {
  172. more = !0;
  173. count = W_D_FIFO_THRESH;
  174. }
  175. save_flags(flags);
  176. cli();
  177. ptr = cs->tx_skb->data;
  178. skb_pull(cs->tx_skb, count);
  179. cs->tx_cnt += count;
  180. cs->writeW6692fifo(cs, ptr, count);
  181. cs->writeW6692(cs, W_D_CMDR, more ? W_D_CMDR_XMS : (W_D_CMDR_XMS | W_D_CMDR_XME));
  182. restore_flags(flags);
  183. if (test_and_set_bit(FLG_DBUSY_TIMER, &cs->HW_Flags)) {
  184. debugl1(cs, "W6692_fill_fifo dbusytimer running");
  185. del_timer(&cs->dbusytimer);
  186. }
  187. init_timer(&cs->dbusytimer);
  188. cs->dbusytimer.expires = jiffies + ((DBUSY_TIMER_VALUE * HZ) / 1000);
  189. add_timer(&cs->dbusytimer);
  190. if (cs->debug & L1_DEB_ISAC_FIFO) {
  191. char *t = cs->dlog;
  192. t += sprintf(t, "W6692_fill_fifo cnt %d", count);
  193. QuickHex(t, ptr, count);
  194. debugl1(cs, cs->dlog);
  195. }
  196. }
  197. static void
  198. W6692B_empty_fifo(struct BCState *bcs, int count)
  199. {
  200. u_char *ptr;
  201. struct IsdnCardState *cs = bcs->cs;
  202. long flags;
  203. if ((cs->debug & L1_DEB_HSCX) && !(cs->debug & L1_DEB_HSCX_FIFO))
  204. debugl1(cs, "W6692B_empty_fifo");
  205. if (bcs->hw.w6692.rcvidx + count > HSCX_BUFMAX) {
  206. if (cs->debug & L1_DEB_WARN)
  207. debugl1(cs, "W6692B_empty_fifo: incoming packet too large");
  208. cs->BC_Write_Reg(cs, bcs->channel, W_B_CMDR, W_B_CMDR_RACK | W_B_CMDR_RACT);
  209. bcs->hw.w6692.rcvidx = 0;
  210. return;
  211. }
  212. ptr = bcs->hw.w6692.rcvbuf + bcs->hw.w6692.rcvidx;
  213. bcs->hw.w6692.rcvidx += count;
  214. save_flags(flags);
  215. cli();
  216. READW6692BFIFO(cs, bcs->channel, ptr, count);
  217. cs->BC_Write_Reg(cs, bcs->channel, W_B_CMDR, W_B_CMDR_RACK | W_B_CMDR_RACT);
  218. restore_flags(flags);
  219. if (cs->debug & L1_DEB_HSCX_FIFO) {
  220. char *t = bcs->blog;
  221. t += sprintf(t, "W6692B_empty_fifo %c cnt %d",
  222.      bcs->channel + '1', count);
  223. QuickHex(t, ptr, count);
  224. debugl1(cs, bcs->blog);
  225. }
  226. }
  227. static void
  228. W6692B_fill_fifo(struct BCState *bcs)
  229. {
  230. struct IsdnCardState *cs = bcs->cs;
  231. int more, count;
  232. u_char *ptr;
  233. long flags;
  234. if ((cs->debug & L1_DEB_HSCX) && !(cs->debug & L1_DEB_HSCX_FIFO))
  235. debugl1(cs, "W6692B_fill_fifo");
  236. if (!bcs->tx_skb)
  237. return;
  238. if (bcs->tx_skb->len <= 0)
  239. return;
  240. more = (bcs->mode == L1_MODE_TRANS) ? 1 : 0;
  241. if (bcs->tx_skb->len > W_B_FIFO_THRESH) {
  242. more = !0;
  243. count = W_B_FIFO_THRESH;
  244. } else
  245. count = bcs->tx_skb->len;
  246. save_flags(flags);
  247. cli();
  248. ptr = bcs->tx_skb->data;
  249. skb_pull(bcs->tx_skb, count);
  250. bcs->tx_cnt -= count;
  251. bcs->hw.w6692.count += count;
  252. WRITEW6692BFIFO(cs, bcs->channel, ptr, count);
  253. cs->BC_Write_Reg(cs, bcs->channel, W_B_CMDR, W_B_CMDR_RACT | W_B_CMDR_XMS | (more ? 0 : W_B_CMDR_XME));
  254. restore_flags(flags);
  255. if (cs->debug & L1_DEB_HSCX_FIFO) {
  256. char *t = bcs->blog;
  257. t += sprintf(t, "W6692B_fill_fifo %c cnt %d",
  258.      bcs->channel + '1', count);
  259. QuickHex(t, ptr, count);
  260. debugl1(cs, bcs->blog);
  261. }
  262. }
  263. static void
  264. W6692B_interrupt(struct IsdnCardState *cs, u_char bchan)
  265. {
  266. u_char val;
  267. u_char r;
  268. struct BCState *bcs;
  269. struct sk_buff *skb;
  270. int count;
  271. bcs = (cs->bcs->channel == bchan) ? cs->bcs : (cs->bcs+1);
  272. val = cs->BC_Read_Reg(cs, bchan, W_B_EXIR);
  273. debugl1(cs, "W6692B chan %d B_EXIR 0x%02X", bchan, val);
  274. if (!test_bit(BC_FLG_INIT, &bcs->Flag)) {
  275. debugl1(cs, "W6692B not INIT yet");
  276. return;
  277. }
  278. if (val & W_B_EXI_RME) { /* RME */
  279. r = cs->BC_Read_Reg(cs, bchan, W_B_STAR);
  280. if (r & (W_B_STAR_RDOV | W_B_STAR_CRCE | W_B_STAR_RMB | W_B_STAR_XDOW)) {
  281. if ((r & W_B_STAR_RDOV) && bcs->mode)
  282. if (cs->debug & L1_DEB_WARN)
  283. debugl1(cs, "W6692 B RDOV mode=%d",
  284. bcs->mode);
  285. if (r & W_B_STAR_CRCE)
  286. if (cs->debug & L1_DEB_WARN)
  287. debugl1(cs, "W6692 B CRC error");
  288. cs->BC_Write_Reg(cs, bchan, W_B_CMDR, W_B_CMDR_RACK | W_B_CMDR_RRST | W_B_CMDR_RACT);
  289. } else {
  290. count = cs->BC_Read_Reg(cs, bchan, W_B_RBCL) & (W_B_FIFO_THRESH - 1);
  291. if (count == 0)
  292. count = W_B_FIFO_THRESH;
  293. W6692B_empty_fifo(bcs, count);
  294. if ((count = bcs->hw.w6692.rcvidx) > 0) {
  295. if (cs->debug & L1_DEB_HSCX_FIFO)
  296. debugl1(cs, "W6692 Bchan Frame %d", count);
  297. if (!(skb = dev_alloc_skb(count)))
  298. printk(KERN_WARNING "W6692: Bchan receive out of memoryn");
  299. else {
  300. memcpy(skb_put(skb, count), bcs->hw.w6692.rcvbuf, count);
  301. skb_queue_tail(&bcs->rqueue, skb);
  302. }
  303. }
  304. }
  305. bcs->hw.w6692.rcvidx = 0;
  306. W6692B_sched_event(bcs, B_RCVBUFREADY);
  307. }
  308. if (val & W_B_EXI_RMR) { /* RMR */
  309. W6692B_empty_fifo(bcs, W_B_FIFO_THRESH);
  310. if (bcs->mode == L1_MODE_TRANS) {
  311. /* receive audio data */
  312. if (!(skb = dev_alloc_skb(W_B_FIFO_THRESH)))
  313. printk(KERN_WARNING "HiSax: receive out of memoryn");
  314. else {
  315. memcpy(skb_put(skb, W_B_FIFO_THRESH), bcs->hw.w6692.rcvbuf, W_B_FIFO_THRESH);
  316. skb_queue_tail(&bcs->rqueue, skb);
  317. }
  318. bcs->hw.w6692.rcvidx = 0;
  319. W6692B_sched_event(bcs, B_RCVBUFREADY);
  320. }
  321. }
  322. if (val & W_B_EXI_XFR) { /* XFR */
  323. if (bcs->tx_skb) {
  324. if (bcs->tx_skb->len) {
  325. W6692B_fill_fifo(bcs);
  326. return;
  327. } else {
  328. if (bcs->st->lli.l1writewakeup &&
  329.  (PACKET_NOACK != bcs->tx_skb->pkt_type))
  330. bcs->st->lli.l1writewakeup(bcs->st, bcs->hw.w6692.count);
  331. dev_kfree_skb_irq(bcs->tx_skb);
  332. bcs->hw.w6692.count = 0;
  333. bcs->tx_skb = NULL;
  334. }
  335. }
  336. if ((bcs->tx_skb = skb_dequeue(&bcs->squeue))) {
  337. bcs->hw.w6692.count = 0;
  338. test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
  339. W6692B_fill_fifo(bcs);
  340. } else {
  341. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  342. W6692B_sched_event(bcs, B_XMTBUFREADY);
  343. }
  344. }
  345. if (val & W_B_EXI_XDUN) { /* XDUN */
  346. if (bcs->mode == 1)
  347. W6692B_fill_fifo(bcs);
  348. else {
  349. /* Here we lost an TX interrupt, so
  350.    * restart transmitting the whole frame.
  351.  */
  352. if (bcs->tx_skb) {
  353. skb_push(bcs->tx_skb, bcs->hw.w6692.count);
  354. bcs->tx_cnt += bcs->hw.w6692.count;
  355. bcs->hw.w6692.count = 0;
  356. }
  357. cs->BC_Write_Reg(cs, bchan, W_B_CMDR, W_B_CMDR_XRST | W_B_CMDR_RACT);
  358. if (cs->debug & L1_DEB_WARN)
  359. debugl1(cs, "W6692 B EXIR %x Lost TX", val);
  360. }
  361. }
  362. }
  363. static void
  364. W6692_interrupt(int intno, void *dev_id, struct pt_regs *regs)
  365. {
  366. struct IsdnCardState *cs = dev_id;
  367. u_char val, exval, v1;
  368. struct sk_buff *skb;
  369. unsigned int count;
  370. long flags;
  371. int icnt = 5;
  372. if (!cs) {
  373. printk(KERN_WARNING "W6692: Spurious interrupt!n");
  374. return;
  375. }
  376. val = cs->readW6692(cs, W_ISTA);
  377.       StartW6692:
  378. if (cs->debug & L1_DEB_ISAC)
  379. debugl1(cs, "W6692 ISTA %x", val);
  380. if (val & W_INT_D_RME) { /* RME */
  381. exval = cs->readW6692(cs, W_D_RSTA);
  382. if (exval & (W_D_RSTA_RDOV | W_D_RSTA_CRCE | W_D_RSTA_RMB)) {
  383. if (exval & W_D_RSTA_RDOV)
  384. if (cs->debug & L1_DEB_WARN)
  385. debugl1(cs, "W6692 RDOV");
  386. if (exval & W_D_RSTA_CRCE)
  387. if (cs->debug & L1_DEB_WARN)
  388. debugl1(cs, "W6692 D-channel CRC error");
  389. if (exval & W_D_RSTA_RMB)
  390. if (cs->debug & L1_DEB_WARN)
  391. debugl1(cs, "W6692 D-channel ABORT");
  392. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_RACK | W_D_CMDR_RRST);
  393. } else {
  394. count = cs->readW6692(cs, W_D_RBCL) & (W_D_FIFO_THRESH - 1);
  395. if (count == 0)
  396. count = W_D_FIFO_THRESH;
  397. W6692_empty_fifo(cs, count);
  398. save_flags(flags);
  399. cli();
  400. if ((count = cs->rcvidx) > 0) {
  401. cs->rcvidx = 0;
  402. if (!(skb = alloc_skb(count, GFP_ATOMIC)))
  403. printk(KERN_WARNING "HiSax: D receive out of memoryn");
  404. else {
  405. memcpy(skb_put(skb, count), cs->rcvbuf, count);
  406. skb_queue_tail(&cs->rq, skb);
  407. }
  408. }
  409. restore_flags(flags);
  410. }
  411. cs->rcvidx = 0;
  412. W6692_sched_event(cs, D_RCVBUFREADY);
  413. }
  414. if (val & W_INT_D_RMR) { /* RMR */
  415. W6692_empty_fifo(cs, W_D_FIFO_THRESH);
  416. }
  417. if (val & W_INT_D_XFR) { /* XFR */
  418. if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
  419. del_timer(&cs->dbusytimer);
  420. if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
  421. W6692_sched_event(cs, D_CLEARBUSY);
  422. if (cs->tx_skb) {
  423. if (cs->tx_skb->len) {
  424. W6692_fill_fifo(cs);
  425. goto afterXFR;
  426. } else {
  427. dev_kfree_skb_irq(cs->tx_skb);
  428. cs->tx_cnt = 0;
  429. cs->tx_skb = NULL;
  430. }
  431. }
  432. if ((cs->tx_skb = skb_dequeue(&cs->sq))) {
  433. cs->tx_cnt = 0;
  434. W6692_fill_fifo(cs);
  435. } else
  436. W6692_sched_event(cs, D_XMTBUFREADY);
  437. }
  438.       afterXFR:
  439. if (val & (W_INT_XINT0 | W_INT_XINT1)) { /* XINT0/1 - never */
  440. if (cs->debug & L1_DEB_ISAC)
  441. debugl1(cs, "W6692 spurious XINT!");
  442. }
  443. if (val & W_INT_D_EXI) { /* EXI */
  444. exval = cs->readW6692(cs, W_D_EXIR);
  445. if (cs->debug & L1_DEB_WARN)
  446. debugl1(cs, "W6692 D_EXIR %02x", exval);
  447. if (exval & (W_D_EXI_XDUN | W_D_EXI_XCOL)) { /* Transmit underrun/collision */
  448. debugl1(cs, "W6692 D-chan underrun/collision");
  449. printk(KERN_WARNING "HiSax: W6692 XDUN/XCOLn");
  450. if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
  451. del_timer(&cs->dbusytimer);
  452. if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
  453. W6692_sched_event(cs, D_CLEARBUSY);
  454. if (cs->tx_skb) { /* Restart frame */
  455. skb_push(cs->tx_skb, cs->tx_cnt);
  456. cs->tx_cnt = 0;
  457. W6692_fill_fifo(cs);
  458. } else {
  459. printk(KERN_WARNING "HiSax: W6692 XDUN/XCOL no skbn");
  460. debugl1(cs, "W6692 XDUN/XCOL no skb");
  461. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_XRST);
  462. }
  463. }
  464. if (exval & W_D_EXI_RDOV) { /* RDOV */
  465. debugl1(cs, "W6692 D-channel RDOV");
  466. printk(KERN_WARNING "HiSax: W6692 D-RDOVn");
  467. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_RRST);
  468. }
  469. if (exval & W_D_EXI_TIN2) { /* TIN2 - never */
  470. debugl1(cs, "W6692 spurious TIN2 interrupt");
  471. }
  472. if (exval & W_D_EXI_MOC) { /* MOC - not supported */
  473. debugl1(cs, "W6692 spurious MOC interrupt");
  474. v1 = cs->readW6692(cs, W_MOSR);
  475. debugl1(cs, "W6692 MOSR %02x", v1);
  476. }
  477. if (exval & W_D_EXI_ISC) { /* ISC - Level1 change */
  478. v1 = cs->readW6692(cs, W_CIR);
  479. if (cs->debug & L1_DEB_ISAC)
  480. debugl1(cs, "W6692 ISC CIR=0x%02X", v1);
  481. if (v1 & W_CIR_ICC) {
  482. cs->dc.w6692.ph_state = v1 & W_CIR_COD_MASK;
  483. if (cs->debug & L1_DEB_ISAC)
  484. debugl1(cs, "ph_state_change %x", cs->dc.w6692.ph_state);
  485. W6692_sched_event(cs, D_L1STATECHANGE);
  486. }
  487. if (v1 & W_CIR_SCC) {
  488. v1 = cs->readW6692(cs, W_SQR);
  489. debugl1(cs, "W6692 SCC SQR=0x%02X", v1);
  490. }
  491. }
  492. if (exval & W_D_EXI_WEXP) {
  493. debugl1(cs, "W6692 spurious WEXP interrupt!");
  494. }
  495. if (exval & W_D_EXI_TEXP) {
  496. debugl1(cs, "W6692 spurious TEXP interrupt!");
  497. }
  498. }
  499. if (val & W_INT_B1_EXI) {
  500. debugl1(cs, "W6692 B channel 1 interrupt");
  501. W6692B_interrupt(cs, 0);
  502. }
  503. if (val & W_INT_B2_EXI) {
  504. debugl1(cs, "W6692 B channel 2 interrupt");
  505. W6692B_interrupt(cs, 1);
  506. }
  507. val = cs->readW6692(cs, W_ISTA);
  508. if (val && icnt) {
  509. icnt--;
  510. goto StartW6692;
  511. }
  512. if (!icnt) {
  513. printk(KERN_WARNING "W6692 IRQ LOOPn");
  514. cs->writeW6692(cs, W_IMASK, 0xff);
  515. }
  516. }
  517. static void
  518. W6692_l1hw(struct PStack *st, int pr, void *arg)
  519. {
  520. struct IsdnCardState *cs = (struct IsdnCardState *) st->l1.hardware;
  521. struct sk_buff *skb = arg;
  522. int val;
  523. switch (pr) {
  524. case (PH_DATA | REQUEST):
  525. if (cs->debug & DEB_DLOG_HEX)
  526. LogFrame(cs, skb->data, skb->len);
  527. if (cs->debug & DEB_DLOG_VERBOSE)
  528. dlogframe(cs, skb, 0);
  529. if (cs->tx_skb) {
  530. skb_queue_tail(&cs->sq, skb);
  531. #ifdef L2FRAME_DEBUG /* psa */
  532. if (cs->debug & L1_DEB_LAPD)
  533. Logl2Frame(cs, skb, "PH_DATA Queued", 0);
  534. #endif
  535. } else {
  536. cs->tx_skb = skb;
  537. cs->tx_cnt = 0;
  538. #ifdef L2FRAME_DEBUG /* psa */
  539. if (cs->debug & L1_DEB_LAPD)
  540. Logl2Frame(cs, skb, "PH_DATA", 0);
  541. #endif
  542. W6692_fill_fifo(cs);
  543. }
  544. break;
  545. case (PH_PULL | INDICATION):
  546. if (cs->tx_skb) {
  547. if (cs->debug & L1_DEB_WARN)
  548. debugl1(cs, " l2l1 tx_skb exist this shouldn't happen");
  549. skb_queue_tail(&cs->sq, skb);
  550. break;
  551. }
  552. if (cs->debug & DEB_DLOG_HEX)
  553. LogFrame(cs, skb->data, skb->len);
  554. if (cs->debug & DEB_DLOG_VERBOSE)
  555. dlogframe(cs, skb, 0);
  556. cs->tx_skb = skb;
  557. cs->tx_cnt = 0;
  558. #ifdef L2FRAME_DEBUG /* psa */
  559. if (cs->debug & L1_DEB_LAPD)
  560. Logl2Frame(cs, skb, "PH_DATA_PULLED", 0);
  561. #endif
  562. W6692_fill_fifo(cs);
  563. break;
  564. case (PH_PULL | REQUEST):
  565. #ifdef L2FRAME_DEBUG /* psa */
  566. if (cs->debug & L1_DEB_LAPD)
  567. debugl1(cs, "-> PH_REQUEST_PULL");
  568. #endif
  569. if (!cs->tx_skb) {
  570. test_and_clear_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  571. st->l1.l1l2(st, PH_PULL | CONFIRM, NULL);
  572. } else
  573. test_and_set_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  574. break;
  575. case (HW_RESET | REQUEST):
  576. if ((cs->dc.w6692.ph_state == W_L1IND_DRD))
  577. ph_command(cs, W_L1CMD_ECK);
  578. else {
  579. ph_command(cs, W_L1CMD_RST);
  580. cs->dc.w6692.ph_state = W_L1CMD_RST;
  581. W6692_new_ph(cs);
  582. }
  583. break;
  584. case (HW_ENABLE | REQUEST):
  585. ph_command(cs, W_L1CMD_ECK);
  586. break;
  587. case (HW_INFO3 | REQUEST):
  588. ph_command(cs, W_L1CMD_AR8);
  589. break;
  590. case (HW_TESTLOOP | REQUEST):
  591. val = 0;
  592. if (1 & (long) arg)
  593. val |= 0x0c;
  594. if (2 & (long) arg)
  595. val |= 0x3;
  596. /* !!! not implemented yet */
  597. break;
  598. case (HW_DEACTIVATE | RESPONSE):
  599. skb_queue_purge(&cs->rq);
  600. skb_queue_purge(&cs->sq);
  601. if (cs->tx_skb) {
  602. dev_kfree_skb_any(cs->tx_skb);
  603. cs->tx_skb = NULL;
  604. }
  605. if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
  606. del_timer(&cs->dbusytimer);
  607. if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
  608. W6692_sched_event(cs, D_CLEARBUSY);
  609. break;
  610. default:
  611. if (cs->debug & L1_DEB_WARN)
  612. debugl1(cs, "W6692_l1hw unknown %04x", pr);
  613. break;
  614. }
  615. }
  616. static void
  617. setstack_W6692(struct PStack *st, struct IsdnCardState *cs)
  618. {
  619. st->l1.l1hw = W6692_l1hw;
  620. }
  621. static void
  622. DC_Close_W6692(struct IsdnCardState *cs)
  623. {
  624. }
  625. static void
  626. dbusy_timer_handler(struct IsdnCardState *cs)
  627. {
  628. struct PStack *stptr;
  629. int rbch, star;
  630. if (test_bit(FLG_DBUSY_TIMER, &cs->HW_Flags)) {
  631. rbch = cs->readW6692(cs, W_D_RBCH);
  632. star = cs->readW6692(cs, W_D_STAR);
  633. if (cs->debug)
  634. debugl1(cs, "D-Channel Busy D_RBCH %02x D_STAR %02x",
  635. rbch, star);
  636. if (star & W_D_STAR_XBZ) { /* D-Channel Busy */
  637. test_and_set_bit(FLG_L1_DBUSY, &cs->HW_Flags);
  638. stptr = cs->stlist;
  639. while (stptr != NULL) {
  640. stptr->l1.l1l2(stptr, PH_PAUSE | INDICATION, NULL);
  641. stptr = stptr->next;
  642. }
  643. } else {
  644. /* discard frame; reset transceiver */
  645. test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags);
  646. if (cs->tx_skb) {
  647. dev_kfree_skb_any(cs->tx_skb);
  648. cs->tx_cnt = 0;
  649. cs->tx_skb = NULL;
  650. } else {
  651. printk(KERN_WARNING "HiSax: W6692 D-Channel Busy no skbn");
  652. debugl1(cs, "D-Channel Busy no skb");
  653. }
  654. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_XRST); /* Transmitter reset */
  655. cs->irq_func(cs->irq, cs, NULL);
  656. }
  657. }
  658. }
  659. static void
  660. W6692Bmode(struct BCState *bcs, int mode, int bchan)
  661. {
  662. struct IsdnCardState *cs = bcs->cs;
  663. if (cs->debug & L1_DEB_HSCX)
  664. debugl1(cs, "w6692 %c mode %d ichan %d",
  665. '1' + bchan, mode, bchan);
  666. bcs->mode = mode;
  667. bcs->channel = bchan;
  668. bcs->hw.w6692.bchan = bchan;
  669. switch (mode) {
  670. case (L1_MODE_NULL):
  671. cs->BC_Write_Reg(cs, bchan, W_B_MODE, 0);
  672. break;
  673. case (L1_MODE_TRANS):
  674. cs->BC_Write_Reg(cs, bchan, W_B_MODE, W_B_MODE_MMS);
  675. break;
  676. case (L1_MODE_HDLC):
  677. cs->BC_Write_Reg(cs, bchan, W_B_MODE, W_B_MODE_ITF);
  678. cs->BC_Write_Reg(cs, bchan, W_B_ADM1, 0xff);
  679. cs->BC_Write_Reg(cs, bchan, W_B_ADM2, 0xff);
  680. break;
  681. }
  682. if (mode)
  683. cs->BC_Write_Reg(cs, bchan, W_B_CMDR, W_B_CMDR_RRST |
  684.  W_B_CMDR_RACT | W_B_CMDR_XRST);
  685. cs->BC_Write_Reg(cs, bchan, W_B_EXIM, 0x00);
  686. }
  687. static void
  688. W6692_l2l1(struct PStack *st, int pr, void *arg)
  689. {
  690. struct sk_buff *skb = arg;
  691. long flags;
  692. switch (pr) {
  693. case (PH_DATA | REQUEST):
  694. save_flags(flags);
  695. cli();
  696. if (st->l1.bcs->tx_skb) {
  697. skb_queue_tail(&st->l1.bcs->squeue, skb);
  698. restore_flags(flags);
  699. } else {
  700. st->l1.bcs->tx_skb = skb;
  701. test_and_set_bit(BC_FLG_BUSY, &st->l1.bcs->Flag);
  702. st->l1.bcs->hw.w6692.count = 0;
  703. restore_flags(flags);
  704. st->l1.bcs->cs->BC_Send_Data(st->l1.bcs);
  705. }
  706. break;
  707. case (PH_PULL | INDICATION):
  708. if (st->l1.bcs->tx_skb) {
  709. printk(KERN_WARNING "W6692_l2l1: this shouldn't happenn");
  710. break;
  711. }
  712. test_and_set_bit(BC_FLG_BUSY, &st->l1.bcs->Flag);
  713. st->l1.bcs->tx_skb = skb;
  714. st->l1.bcs->hw.w6692.count = 0;
  715. st->l1.bcs->cs->BC_Send_Data(st->l1.bcs);
  716. break;
  717. case (PH_PULL | REQUEST):
  718. if (!st->l1.bcs->tx_skb) {
  719. test_and_clear_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  720. st->l1.l1l2(st, PH_PULL | CONFIRM, NULL);
  721. } else
  722. test_and_set_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
  723. break;
  724. case (PH_ACTIVATE | REQUEST):
  725. test_and_set_bit(BC_FLG_ACTIV, &st->l1.bcs->Flag);
  726. W6692Bmode(st->l1.bcs, st->l1.mode, st->l1.bc);
  727. l1_msg_b(st, pr, arg);
  728. break;
  729. case (PH_DEACTIVATE | REQUEST):
  730. l1_msg_b(st, pr, arg);
  731. break;
  732. case (PH_DEACTIVATE | CONFIRM):
  733. test_and_clear_bit(BC_FLG_ACTIV, &st->l1.bcs->Flag);
  734. test_and_clear_bit(BC_FLG_BUSY, &st->l1.bcs->Flag);
  735. W6692Bmode(st->l1.bcs, 0, st->l1.bc);
  736. st->l1.l1l2(st, PH_DEACTIVATE | CONFIRM, NULL);
  737. break;
  738. }
  739. }
  740. static void
  741. close_w6692state(struct BCState *bcs)
  742. {
  743. W6692Bmode(bcs, 0, bcs->channel);
  744. if (test_and_clear_bit(BC_FLG_INIT, &bcs->Flag)) {
  745. if (bcs->hw.w6692.rcvbuf) {
  746. kfree(bcs->hw.w6692.rcvbuf);
  747. bcs->hw.w6692.rcvbuf = NULL;
  748. }
  749. if (bcs->blog) {
  750. kfree(bcs->blog);
  751. bcs->blog = NULL;
  752. }
  753. skb_queue_purge(&bcs->rqueue);
  754. skb_queue_purge(&bcs->squeue);
  755. if (bcs->tx_skb) {
  756. dev_kfree_skb_any(bcs->tx_skb);
  757. bcs->tx_skb = NULL;
  758. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  759. }
  760. }
  761. }
  762. static int
  763. open_w6692state(struct IsdnCardState *cs, struct BCState *bcs)
  764. {
  765. if (!test_and_set_bit(BC_FLG_INIT, &bcs->Flag)) {
  766. if (!(bcs->hw.w6692.rcvbuf = kmalloc(HSCX_BUFMAX, GFP_ATOMIC))) {
  767. printk(KERN_WARNING
  768.        "HiSax: No memory for w6692.rcvbufn");
  769. test_and_clear_bit(BC_FLG_INIT, &bcs->Flag);
  770. return (1);
  771. }
  772. if (!(bcs->blog = kmalloc(MAX_BLOG_SPACE, GFP_ATOMIC))) {
  773. printk(KERN_WARNING
  774.        "HiSax: No memory for bcs->blogn");
  775. test_and_clear_bit(BC_FLG_INIT, &bcs->Flag);
  776. kfree(bcs->hw.w6692.rcvbuf);
  777. bcs->hw.w6692.rcvbuf = NULL;
  778. return (2);
  779. }
  780. skb_queue_head_init(&bcs->rqueue);
  781. skb_queue_head_init(&bcs->squeue);
  782. }
  783. bcs->tx_skb = NULL;
  784. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  785. bcs->event = 0;
  786. bcs->hw.w6692.rcvidx = 0;
  787. bcs->tx_cnt = 0;
  788. return (0);
  789. }
  790. static int
  791. setstack_w6692(struct PStack *st, struct BCState *bcs)
  792. {
  793. bcs->channel = st->l1.bc;
  794. if (open_w6692state(st->l1.hardware, bcs))
  795. return (-1);
  796. st->l1.bcs = bcs;
  797. st->l2.l2l1 = W6692_l2l1;
  798. setstack_manager(st);
  799. bcs->st = st;
  800. setstack_l1_B(st);
  801. return (0);
  802. }
  803. void __init initW6692(struct IsdnCardState *cs, int part)
  804. {
  805. if (part & 1) {
  806. cs->tqueue.routine = (void *) (void *) W6692_bh;
  807. cs->setstack_d = setstack_W6692;
  808. cs->DC_Close = DC_Close_W6692;
  809. cs->dbusytimer.function = (void *) dbusy_timer_handler;
  810. cs->dbusytimer.data = (long) cs;
  811. init_timer(&cs->dbusytimer);
  812. cs->writeW6692(cs, W_D_CTL, W_D_CTL_SRST);
  813. cs->writeW6692(cs, W_D_CTL, 0x00);
  814. cs->writeW6692(cs, W_IMASK, 0xff);
  815. cs->writeW6692(cs, W_D_SAM, 0xff);
  816. cs->writeW6692(cs, W_D_TAM, 0xff);
  817. cs->writeW6692(cs, W_D_EXIM, 0x00);
  818. cs->writeW6692(cs, W_D_MODE, W_D_MODE_RACT);
  819. cs->writeW6692(cs, W_IMASK, 0x18);
  820. ph_command(cs, W_L1CMD_RST);
  821. cs->dc.w6692.ph_state = W_L1CMD_RST;
  822. W6692_new_ph(cs);
  823. ph_command(cs, W_L1CMD_ECK);
  824. cs->bcs[0].BC_SetStack = setstack_w6692;
  825. cs->bcs[1].BC_SetStack = setstack_w6692;
  826. cs->bcs[0].BC_Close = close_w6692state;
  827. cs->bcs[1].BC_Close = close_w6692state;
  828. W6692Bmode(cs->bcs, 0, 0);
  829. W6692Bmode(cs->bcs + 1, 0, 0);
  830. }
  831. if (part & 2) {
  832. /* Reenable all IRQ */
  833. cs->writeW6692(cs, W_IMASK, 0x18);
  834. cs->writeW6692(cs, W_D_EXIM, 0x00);
  835. cs->BC_Write_Reg(cs, 0, W_B_EXIM, 0x00);
  836. cs->BC_Write_Reg(cs, 1, W_B_EXIM, 0x00);
  837. /* Reset D-chan receiver and transmitter */
  838. cs->writeW6692(cs, W_D_CMDR, W_D_CMDR_RRST | W_D_CMDR_XRST);
  839. }
  840. }
  841. /* Interface functions */
  842. static u_char
  843. ReadW6692(struct IsdnCardState *cs, u_char offset)
  844. {
  845. return (inb(cs->hw.w6692.iobase + offset));
  846. }
  847. static void
  848. WriteW6692(struct IsdnCardState *cs, u_char offset, u_char value)
  849. {
  850. outb(value, cs->hw.w6692.iobase + offset);
  851. }
  852. static void
  853. ReadISACfifo(struct IsdnCardState *cs, u_char * data, int size)
  854. {
  855. insb(cs->hw.w6692.iobase + W_D_RFIFO, data, size);
  856. }
  857. static void
  858. WriteISACfifo(struct IsdnCardState *cs, u_char * data, int size)
  859. {
  860. outsb(cs->hw.w6692.iobase + W_D_XFIFO, data, size);
  861. }
  862. static u_char
  863. ReadW6692B(struct IsdnCardState *cs, int bchan, u_char offset)
  864. {
  865. return (inb(cs->hw.w6692.iobase + (bchan ? 0x40 : 0) + offset));
  866. }
  867. static void
  868. WriteW6692B(struct IsdnCardState *cs, int bchan, u_char offset, u_char value)
  869. {
  870. outb(value, cs->hw.w6692.iobase + (bchan ? 0x40 : 0) + offset);
  871. }
  872. static int
  873. w6692_card_msg(struct IsdnCardState *cs, int mt, void *arg)
  874. {
  875. switch (mt) {
  876. case CARD_RESET:
  877. return (0);
  878. case CARD_RELEASE:
  879. release_region(cs->hw.w6692.iobase, 256);
  880. return (0);
  881. case CARD_INIT:
  882. initW6692(cs, 3);
  883. return (0);
  884. case CARD_TEST:
  885. return (0);
  886. }
  887. return (0);
  888. }
  889. static int id_idx ;
  890. static struct pci_dev *dev_w6692 __initdata = NULL;
  891. int __init 
  892. setup_w6692(struct IsdnCard *card)
  893. {
  894. struct IsdnCardState *cs = card->cs;
  895. char tmp[64];
  896. u_char found = 0;
  897. u_char pci_irq = 0;
  898. u_int pci_ioaddr = 0;
  899. #ifdef __BIG_ENDIAN
  900. #error "not running on big endian machines now"
  901. #endif
  902. strcpy(tmp, w6692_revision);
  903. printk(KERN_INFO "HiSax: W6692 driver Rev. %sn", HiSax_getrev(tmp));
  904. if (cs->typ != ISDN_CTYPE_W6692)
  905. return (0);
  906. #if CONFIG_PCI
  907. if (!pci_present()) {
  908. printk(KERN_ERR "W6692: no PCI bus presentn");
  909. return (0);
  910. }
  911. while (id_list[id_idx].vendor_id) {
  912. dev_w6692 = pci_find_device(id_list[id_idx].vendor_id,
  913.     id_list[id_idx].device_id,
  914.     dev_w6692);
  915. if (dev_w6692) {
  916. if (pci_enable_device(dev_w6692))
  917. continue;
  918. break;
  919. }
  920. id_idx++;
  921. }
  922. if (dev_w6692) {
  923. found = 1;
  924. pci_irq = dev_w6692->irq;
  925. /* I think address 0 is allways the configuration area */
  926. /* and address 1 is the real IO space KKe 03.09.99 */
  927. pci_ioaddr = pci_resource_start(dev_w6692, 1);
  928. }
  929. if (!found) {
  930. printk(KERN_WARNING "W6692: No PCI card foundn");
  931. return (0);
  932. }
  933. cs->irq = pci_irq;
  934. if (!cs->irq) {
  935. printk(KERN_WARNING "W6692: No IRQ for PCI card foundn");
  936. return (0);
  937. }
  938. if (!pci_ioaddr) {
  939. printk(KERN_WARNING "W6692: NO I/O Base Address foundn");
  940. return (0);
  941. }
  942. cs->hw.w6692.iobase = pci_ioaddr;
  943. printk(KERN_INFO "Found: %s %s, I/O base: 0x%x, irq: %dn",
  944.        id_list[id_idx].vendor_name, id_list[id_idx].card_name,
  945.        pci_ioaddr, dev_w6692->irq);
  946. if (check_region((cs->hw.w6692.iobase), 256)) {
  947. printk(KERN_WARNING
  948.        "HiSax: %s I/O ports %x-%x already in usen",
  949.        id_list[id_idx].card_name,
  950.        cs->hw.w6692.iobase,
  951.        cs->hw.w6692.iobase + 255);
  952. return (0);
  953. } else {
  954. request_region(cs->hw.w6692.iobase, 256,
  955.        id_list[id_idx].card_name);
  956. }
  957. #else
  958. printk(KERN_WARNING "HiSax: W6692 and NO_PCI_BIOSn");
  959. printk(KERN_WARNING "HiSax: W6692 unable to confign");
  960. return (0);
  961. #endif /* CONFIG_PCI */
  962. printk(KERN_INFO
  963.        "HiSax: %s config irq:%d I/O:%xn",
  964.        id_list[id_idx].card_name, cs->irq,
  965.        cs->hw.w6692.iobase);
  966. cs->readW6692 = &ReadW6692;
  967. cs->writeW6692 = &WriteW6692;
  968. cs->readisacfifo = &ReadISACfifo;
  969. cs->writeisacfifo = &WriteISACfifo;
  970. cs->BC_Read_Reg = &ReadW6692B;
  971. cs->BC_Write_Reg = &WriteW6692B;
  972. cs->BC_Send_Data = &W6692B_fill_fifo;
  973. cs->cardmsg = &w6692_card_msg;
  974. cs->irq_func = &W6692_interrupt;
  975. cs->irq_flags |= SA_SHIRQ;
  976. W6692Version(cs, "W6692:");
  977. printk(KERN_INFO "W6692 ISTA=0x%Xn", ReadW6692(cs, W_ISTA));
  978. printk(KERN_INFO "W6692 IMASK=0x%Xn", ReadW6692(cs, W_IMASK));
  979. printk(KERN_INFO "W6692 D_EXIR=0x%Xn", ReadW6692(cs, W_D_EXIR));
  980. printk(KERN_INFO "W6692 D_EXIM=0x%Xn", ReadW6692(cs, W_D_EXIM));
  981. printk(KERN_INFO "W6692 D_RSTA=0x%Xn", ReadW6692(cs, W_D_RSTA));
  982. return (1);
  983. }