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

Linux/Unix编程

开发平台:

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