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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: diva.c,v 1.1.4.2 2002/08/30 11:21:00 keil Exp $
  2.  *
  3.  * low level stuff for Eicon.Diehl Diva Family ISDN cards
  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.  * For changes and modifications please read
  12.  * ../../../Documentation/isdn/HiSax.cert
  13.  *
  14.  * Thanks to Eicon Technology for documents and information
  15.  *
  16.  */
  17. #define __NO_VERSION__
  18. #include <linux/init.h>
  19. #include <linux/config.h>
  20. #include "hisax.h"
  21. #include "isac.h"
  22. #include "hscx.h"
  23. #include "ipac.h"
  24. #include "ipacx.h"
  25. #include "isdnl1.h"
  26. #include <linux/pci.h>
  27. #include <linux/isapnp.h>
  28. extern const char *CardType[];
  29. const char *Diva_revision = "$Revision: 1.1.4.2 $";
  30. #define byteout(addr,val) outb(val,addr)
  31. #define bytein(addr) inb(addr)
  32. #define DIVA_HSCX_DATA 0
  33. #define DIVA_HSCX_ADR 4
  34. #define DIVA_ISA_ISAC_DATA 2
  35. #define DIVA_ISA_ISAC_ADR 6
  36. #define DIVA_ISA_CTRL 7
  37. #define DIVA_IPAC_ADR 0
  38. #define DIVA_IPAC_DATA 1
  39. #define DIVA_PCI_ISAC_DATA 8
  40. #define DIVA_PCI_ISAC_ADR 0xc
  41. #define DIVA_PCI_CTRL 0x10
  42. /* SUB Types */
  43. #define DIVA_ISA 1
  44. #define DIVA_PCI 2
  45. #define DIVA_IPAC_ISA 3
  46. #define DIVA_IPAC_PCI 4
  47. #define DIVA_IPACX_PCI 5
  48. /* CTRL (Read) */
  49. #define DIVA_IRQ_STAT 0x01
  50. #define DIVA_EEPROM_SDA 0x02
  51. /* CTRL (Write) */
  52. #define DIVA_IRQ_REQ 0x01
  53. #define DIVA_RESET 0x08
  54. #define DIVA_EEPROM_CLK 0x40
  55. #define DIVA_PCI_LED_A 0x10
  56. #define DIVA_PCI_LED_B 0x20
  57. #define DIVA_ISA_LED_A 0x20
  58. #define DIVA_ISA_LED_B 0x40
  59. #define DIVA_IRQ_CLR 0x80
  60. /* Siemens PITA */
  61. #define PITA_MISC_REG 0x1c
  62. #ifdef __BIG_ENDIAN
  63. #define PITA_PARA_SOFTRESET 0x00000001
  64. #define PITA_SER_SOFTRESET 0x00000002
  65. #define PITA_PARA_MPX_MODE 0x00000004
  66. #define PITA_INT0_ENABLE 0x00000200
  67. #else
  68. #define PITA_PARA_SOFTRESET 0x01000000
  69. #define PITA_SER_SOFTRESET 0x02000000
  70. #define PITA_PARA_MPX_MODE 0x04000000
  71. #define PITA_INT0_ENABLE 0x00020000
  72. #endif
  73. #define PITA_INT0_STATUS 0x02
  74. static inline u_char
  75. readreg(unsigned int ale, unsigned int adr, u_char off)
  76. {
  77. register u_char ret;
  78. long flags;
  79. save_flags(flags);
  80. cli();
  81. byteout(ale, off);
  82. ret = bytein(adr);
  83. restore_flags(flags);
  84. return (ret);
  85. }
  86. static inline void
  87. readfifo(unsigned int ale, unsigned int adr, u_char off, u_char * data, int size)
  88. {
  89. /* fifo read without cli because it's allready done  */
  90. byteout(ale, off);
  91. insb(adr, data, size);
  92. }
  93. static inline void
  94. writereg(unsigned int ale, unsigned int adr, u_char off, u_char data)
  95. {
  96. long flags;
  97. save_flags(flags);
  98. cli();
  99. byteout(ale, off);
  100. byteout(adr, data);
  101. restore_flags(flags);
  102. }
  103. static inline void
  104. writefifo(unsigned int ale, unsigned int adr, u_char off, u_char *data, int size)
  105. {
  106. /* fifo write without cli because it's allready done  */
  107. byteout(ale, off);
  108. outsb(adr, data, size);
  109. }
  110. static inline u_char
  111. memreadreg(unsigned long adr, u_char off)
  112. {
  113. return(*((unsigned char *)
  114. (((unsigned int *)adr) + off)));
  115. }
  116. static inline void
  117. memwritereg(unsigned long adr, u_char off, u_char data)
  118. {
  119. register u_char *p;
  120. p = (unsigned char *)(((unsigned int *)adr) + off);
  121. *p = data;
  122. }
  123. /* Interface functions */
  124. static u_char
  125. ReadISAC(struct IsdnCardState *cs, u_char offset)
  126. {
  127. return(readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, offset));
  128. }
  129. static void
  130. WriteISAC(struct IsdnCardState *cs, u_char offset, u_char value)
  131. {
  132. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, offset, value);
  133. }
  134. static void
  135. ReadISACfifo(struct IsdnCardState *cs, u_char *data, int size)
  136. {
  137. readfifo(cs->hw.diva.isac_adr, cs->hw.diva.isac, 0, data, size);
  138. }
  139. static void
  140. WriteISACfifo(struct IsdnCardState *cs, u_char *data, int size)
  141. {
  142. writefifo(cs->hw.diva.isac_adr, cs->hw.diva.isac, 0, data, size);
  143. }
  144. static u_char
  145. ReadISAC_IPAC(struct IsdnCardState *cs, u_char offset)
  146. {
  147. return (readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, offset+0x80));
  148. }
  149. static void
  150. WriteISAC_IPAC(struct IsdnCardState *cs, u_char offset, u_char value)
  151. {
  152. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, offset|0x80, value);
  153. }
  154. static void
  155. ReadISACfifo_IPAC(struct IsdnCardState *cs, u_char * data, int size)
  156. {
  157. readfifo(cs->hw.diva.isac_adr, cs->hw.diva.isac, 0x80, data, size);
  158. }
  159. static void
  160. WriteISACfifo_IPAC(struct IsdnCardState *cs, u_char * data, int size)
  161. {
  162. writefifo(cs->hw.diva.isac_adr, cs->hw.diva.isac, 0x80, data, size);
  163. }
  164. static u_char
  165. ReadHSCX(struct IsdnCardState *cs, int hscx, u_char offset)
  166. {
  167. return(readreg(cs->hw.diva.hscx_adr,
  168. cs->hw.diva.hscx, offset + (hscx ? 0x40 : 0)));
  169. }
  170. static void
  171. WriteHSCX(struct IsdnCardState *cs, int hscx, u_char offset, u_char value)
  172. {
  173. writereg(cs->hw.diva.hscx_adr,
  174. cs->hw.diva.hscx, offset + (hscx ? 0x40 : 0), value);
  175. }
  176. static u_char
  177. MemReadISAC_IPAC(struct IsdnCardState *cs, u_char offset)
  178. {
  179. return (memreadreg(cs->hw.diva.cfg_reg, offset+0x80));
  180. }
  181. static void
  182. MemWriteISAC_IPAC(struct IsdnCardState *cs, u_char offset, u_char value)
  183. {
  184. memwritereg(cs->hw.diva.cfg_reg, offset|0x80, value);
  185. }
  186. static void
  187. MemReadISACfifo_IPAC(struct IsdnCardState *cs, u_char * data, int size)
  188. {
  189. while(size--)
  190. *data++ = memreadreg(cs->hw.diva.cfg_reg, 0x80);
  191. }
  192. static void
  193. MemWriteISACfifo_IPAC(struct IsdnCardState *cs, u_char * data, int size)
  194. {
  195. while(size--)
  196. memwritereg(cs->hw.diva.cfg_reg, 0x80, *data++);
  197. }
  198. static u_char
  199. MemReadHSCX(struct IsdnCardState *cs, int hscx, u_char offset)
  200. {
  201. return(memreadreg(cs->hw.diva.cfg_reg, offset + (hscx ? 0x40 : 0)));
  202. }
  203. static void
  204. MemWriteHSCX(struct IsdnCardState *cs, int hscx, u_char offset, u_char value)
  205. {
  206. memwritereg(cs->hw.diva.cfg_reg, offset + (hscx ? 0x40 : 0), value);
  207. }
  208. /* IO-Functions for IPACX type cards */
  209. static u_char
  210. MemReadISAC_IPACX(struct IsdnCardState *cs, u_char offset)
  211. {
  212. return (memreadreg(cs->hw.diva.cfg_reg, offset));
  213. }
  214. static void
  215. MemWriteISAC_IPACX(struct IsdnCardState *cs, u_char offset, u_char value)
  216. {
  217. memwritereg(cs->hw.diva.cfg_reg, offset, value);
  218. }
  219. static void
  220. MemReadISACfifo_IPACX(struct IsdnCardState *cs, u_char * data, int size)
  221. {
  222. while(size--)
  223. *data++ = memreadreg(cs->hw.diva.cfg_reg, 0);
  224. }
  225. static void
  226. MemWriteISACfifo_IPACX(struct IsdnCardState *cs, u_char * data, int size)
  227. {
  228. while(size--)
  229. memwritereg(cs->hw.diva.cfg_reg, 0, *data++);
  230. }
  231. static u_char
  232. MemReadHSCX_IPACX(struct IsdnCardState *cs, int hscx, u_char offset)
  233. {
  234. return(memreadreg(cs->hw.diva.cfg_reg, offset + 
  235.                     (hscx ? IPACX_OFF_B2 : IPACX_OFF_B1)));
  236. }
  237. static void
  238. MemWriteHSCX_IPACX(struct IsdnCardState *cs, int hscx, u_char offset, u_char value)
  239. {
  240. memwritereg(cs->hw.diva.cfg_reg, offset + 
  241.               (hscx ? IPACX_OFF_B2 : IPACX_OFF_B1), value);
  242. }
  243. /*
  244.  * fast interrupt HSCX stuff goes here
  245.  */
  246. #define READHSCX(cs, nr, reg) readreg(cs->hw.diva.hscx_adr, 
  247. cs->hw.diva.hscx, reg + (nr ? 0x40 : 0))
  248. #define WRITEHSCX(cs, nr, reg, data) writereg(cs->hw.diva.hscx_adr, 
  249.                 cs->hw.diva.hscx, reg + (nr ? 0x40 : 0), data)
  250. #define READHSCXFIFO(cs, nr, ptr, cnt) readfifo(cs->hw.diva.hscx_adr, 
  251. cs->hw.diva.hscx, (nr ? 0x40 : 0), ptr, cnt)
  252. #define WRITEHSCXFIFO(cs, nr, ptr, cnt) writefifo(cs->hw.diva.hscx_adr, 
  253. cs->hw.diva.hscx, (nr ? 0x40 : 0), ptr, cnt)
  254. #include "hscx_irq.c"
  255. static void
  256. diva_interrupt(int intno, void *dev_id, struct pt_regs *regs)
  257. {
  258. struct IsdnCardState *cs = dev_id;
  259. u_char val, sval;
  260. int cnt=5;
  261. if (!cs) {
  262. printk(KERN_WARNING "Diva: Spurious interrupt!n");
  263. return;
  264. }
  265. while (((sval = bytein(cs->hw.diva.ctrl)) & DIVA_IRQ_REQ) && cnt) {
  266. val = readreg(cs->hw.diva.hscx_adr, cs->hw.diva.hscx, HSCX_ISTA + 0x40);
  267. if (val)
  268. hscx_int_main(cs, val);
  269. val = readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, ISAC_ISTA);
  270. if (val)
  271. isac_interrupt(cs, val);
  272. cnt--;
  273. }
  274. if (!cnt)
  275. printk(KERN_WARNING "Diva: IRQ LOOPn");
  276. writereg(cs->hw.diva.hscx_adr, cs->hw.diva.hscx, HSCX_MASK, 0xFF);
  277. writereg(cs->hw.diva.hscx_adr, cs->hw.diva.hscx, HSCX_MASK + 0x40, 0xFF);
  278. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, ISAC_MASK, 0xFF);
  279. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, ISAC_MASK, 0x0);
  280. writereg(cs->hw.diva.hscx_adr, cs->hw.diva.hscx, HSCX_MASK, 0x0);
  281. writereg(cs->hw.diva.hscx_adr, cs->hw.diva.hscx, HSCX_MASK + 0x40, 0x0);
  282. }
  283. static void
  284. diva_irq_ipac_isa(int intno, void *dev_id, struct pt_regs *regs)
  285. {
  286. struct IsdnCardState *cs = dev_id;
  287. u_char ista,val;
  288. int icnt=5;
  289. if (!cs) {
  290. printk(KERN_WARNING "Diva: Spurious interrupt!n");
  291. return;
  292. }
  293. ista = readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_ISTA);
  294. Start_IPACISA:
  295. if (cs->debug & L1_DEB_IPAC)
  296. debugl1(cs, "IPAC ISTA %02X", ista);
  297. if (ista & 0x0f) {
  298. val = readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, HSCX_ISTA + 0x40);
  299. if (ista & 0x01)
  300. val |= 0x01;
  301. if (ista & 0x04)
  302. val |= 0x02;
  303. if (ista & 0x08)
  304. val |= 0x04;
  305. if (val)
  306. hscx_int_main(cs, val);
  307. }
  308. if (ista & 0x20) {
  309. val = 0xfe & readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, ISAC_ISTA + 0x80);
  310. if (val) {
  311. isac_interrupt(cs, val);
  312. }
  313. }
  314. if (ista & 0x10) {
  315. val = 0x01;
  316. isac_interrupt(cs, val);
  317. }
  318. ista  = readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_ISTA);
  319. if ((ista & 0x3f) && icnt) {
  320. icnt--;
  321. goto Start_IPACISA;
  322. }
  323. if (!icnt)
  324. printk(KERN_WARNING "DIVA IPAC IRQ LOOPn");
  325. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_MASK, 0xFF);
  326. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_MASK, 0xC0);
  327. }
  328. static inline void
  329. MemwaitforCEC(struct IsdnCardState *cs, int hscx)
  330. {
  331. int to = 50;
  332. while ((MemReadHSCX(cs, hscx, HSCX_STAR) & 0x04) && to) {
  333. udelay(1);
  334. to--;
  335. }
  336. if (!to)
  337. printk(KERN_WARNING "HiSax: waitforCEC timeoutn");
  338. }
  339. static inline void
  340. MemwaitforXFW(struct IsdnCardState *cs, int hscx)
  341. {
  342. int to = 50;
  343. while ((!(MemReadHSCX(cs, hscx, HSCX_STAR) & 0x44) == 0x40) && to) {
  344. udelay(1);
  345. to--;
  346. }
  347. if (!to)
  348. printk(KERN_WARNING "HiSax: waitforXFW timeoutn");
  349. }
  350. static inline void
  351. MemWriteHSCXCMDR(struct IsdnCardState *cs, int hscx, u_char data)
  352. {
  353. long flags;
  354. save_flags(flags);
  355. cli();
  356. MemwaitforCEC(cs, hscx);
  357. MemWriteHSCX(cs, hscx, HSCX_CMDR, data);
  358. restore_flags(flags);
  359. }
  360. static void
  361. Memhscx_empty_fifo(struct BCState *bcs, int count)
  362. {
  363. u_char *ptr;
  364. struct IsdnCardState *cs = bcs->cs;
  365. long flags;
  366. int cnt;
  367. if ((cs->debug & L1_DEB_HSCX) && !(cs->debug & L1_DEB_HSCX_FIFO))
  368. debugl1(cs, "hscx_empty_fifo");
  369. if (bcs->hw.hscx.rcvidx + count > HSCX_BUFMAX) {
  370. if (cs->debug & L1_DEB_WARN)
  371. debugl1(cs, "hscx_empty_fifo: incoming packet too large");
  372. MemWriteHSCXCMDR(cs, bcs->hw.hscx.hscx, 0x80);
  373. bcs->hw.hscx.rcvidx = 0;
  374. return;
  375. }
  376. save_flags(flags);
  377. cli();
  378. ptr = bcs->hw.hscx.rcvbuf + bcs->hw.hscx.rcvidx;
  379. cnt = count;
  380. while (cnt--)
  381. *ptr++ = memreadreg(cs->hw.diva.cfg_reg, bcs->hw.hscx.hscx ? 0x40 : 0);
  382. MemWriteHSCXCMDR(cs, bcs->hw.hscx.hscx, 0x80);
  383. ptr = bcs->hw.hscx.rcvbuf + bcs->hw.hscx.rcvidx;
  384. bcs->hw.hscx.rcvidx += count;
  385. restore_flags(flags);
  386. if (cs->debug & L1_DEB_HSCX_FIFO) {
  387. char *t = bcs->blog;
  388. t += sprintf(t, "hscx_empty_fifo %c cnt %d",
  389.      bcs->hw.hscx.hscx ? 'B' : 'A', count);
  390. QuickHex(t, ptr, count);
  391. debugl1(cs, bcs->blog);
  392. }
  393. }
  394. static void
  395. Memhscx_fill_fifo(struct BCState *bcs)
  396. {
  397. struct IsdnCardState *cs = bcs->cs;
  398. int more, count, cnt;
  399. int fifo_size = test_bit(HW_IPAC, &cs->HW_Flags)? 64: 32;
  400. u_char *ptr,*p;
  401. long flags;
  402. if ((cs->debug & L1_DEB_HSCX) && !(cs->debug & L1_DEB_HSCX_FIFO))
  403. debugl1(cs, "hscx_fill_fifo");
  404. if (!bcs->tx_skb)
  405. return;
  406. if (bcs->tx_skb->len <= 0)
  407. return;
  408. more = (bcs->mode == L1_MODE_TRANS) ? 1 : 0;
  409. if (bcs->tx_skb->len > fifo_size) {
  410. more = !0;
  411. count = fifo_size;
  412. } else
  413. count = bcs->tx_skb->len;
  414. cnt = count;
  415. MemwaitforXFW(cs, bcs->hw.hscx.hscx);
  416. save_flags(flags);
  417. cli();
  418. p = ptr = bcs->tx_skb->data;
  419. skb_pull(bcs->tx_skb, count);
  420. bcs->tx_cnt -= count;
  421. bcs->hw.hscx.count += count;
  422. while(cnt--)
  423. memwritereg(cs->hw.diva.cfg_reg, bcs->hw.hscx.hscx ? 0x40 : 0,
  424. *p++);
  425. MemWriteHSCXCMDR(cs, bcs->hw.hscx.hscx, more ? 0x8 : 0xa);
  426. restore_flags(flags);
  427. if (cs->debug & L1_DEB_HSCX_FIFO) {
  428. char *t = bcs->blog;
  429. t += sprintf(t, "hscx_fill_fifo %c cnt %d",
  430.      bcs->hw.hscx.hscx ? 'B' : 'A', count);
  431. QuickHex(t, ptr, count);
  432. debugl1(cs, bcs->blog);
  433. }
  434. }
  435. static inline void
  436. Memhscx_interrupt(struct IsdnCardState *cs, u_char val, u_char hscx)
  437. {
  438. u_char r;
  439. struct BCState *bcs = cs->bcs + hscx;
  440. struct sk_buff *skb;
  441. int fifo_size = test_bit(HW_IPAC, &cs->HW_Flags)? 64: 32;
  442. int count;
  443. if (!test_bit(BC_FLG_INIT, &bcs->Flag))
  444. return;
  445. if (val & 0x80) { /* RME */
  446. r = MemReadHSCX(cs, hscx, HSCX_RSTA);
  447. if ((r & 0xf0) != 0xa0) {
  448. if (!(r & 0x80))
  449. if (cs->debug & L1_DEB_WARN)
  450. debugl1(cs, "HSCX invalid frame");
  451. if ((r & 0x40) && bcs->mode)
  452. if (cs->debug & L1_DEB_WARN)
  453. debugl1(cs, "HSCX RDO mode=%d",
  454. bcs->mode);
  455. if (!(r & 0x20))
  456. if (cs->debug & L1_DEB_WARN)
  457. debugl1(cs, "HSCX CRC error");
  458. MemWriteHSCXCMDR(cs, hscx, 0x80);
  459. } else {
  460. count = MemReadHSCX(cs, hscx, HSCX_RBCL) & (
  461. test_bit(HW_IPAC, &cs->HW_Flags)? 0x3f: 0x1f);
  462. if (count == 0)
  463. count = fifo_size;
  464. Memhscx_empty_fifo(bcs, count);
  465. if ((count = bcs->hw.hscx.rcvidx - 1) > 0) {
  466. if (cs->debug & L1_DEB_HSCX_FIFO)
  467. debugl1(cs, "HX Frame %d", count);
  468. if (!(skb = dev_alloc_skb(count)))
  469. printk(KERN_WARNING "HSCX: receive out of memoryn");
  470. else {
  471. memcpy(skb_put(skb, count), bcs->hw.hscx.rcvbuf, count);
  472. skb_queue_tail(&bcs->rqueue, skb);
  473. }
  474. }
  475. }
  476. bcs->hw.hscx.rcvidx = 0;
  477. hscx_sched_event(bcs, B_RCVBUFREADY);
  478. }
  479. if (val & 0x40) { /* RPF */
  480. Memhscx_empty_fifo(bcs, fifo_size);
  481. if (bcs->mode == L1_MODE_TRANS) {
  482. /* receive audio data */
  483. if (!(skb = dev_alloc_skb(fifo_size)))
  484. printk(KERN_WARNING "HiSax: receive out of memoryn");
  485. else {
  486. memcpy(skb_put(skb, fifo_size), bcs->hw.hscx.rcvbuf, fifo_size);
  487. skb_queue_tail(&bcs->rqueue, skb);
  488. }
  489. bcs->hw.hscx.rcvidx = 0;
  490. hscx_sched_event(bcs, B_RCVBUFREADY);
  491. }
  492. }
  493. if (val & 0x10) { /* XPR */
  494. if (bcs->tx_skb) {
  495. if (bcs->tx_skb->len) {
  496. Memhscx_fill_fifo(bcs);
  497. return;
  498. } else {
  499. if (bcs->st->lli.l1writewakeup &&
  500. (PACKET_NOACK != bcs->tx_skb->pkt_type))
  501. bcs->st->lli.l1writewakeup(bcs->st, bcs->hw.hscx.count);
  502. dev_kfree_skb_irq(bcs->tx_skb);
  503. bcs->hw.hscx.count = 0; 
  504. bcs->tx_skb = NULL;
  505. }
  506. }
  507. if ((bcs->tx_skb = skb_dequeue(&bcs->squeue))) {
  508. bcs->hw.hscx.count = 0;
  509. test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
  510. Memhscx_fill_fifo(bcs);
  511. } else {
  512. test_and_clear_bit(BC_FLG_BUSY, &bcs->Flag);
  513. hscx_sched_event(bcs, B_XMTBUFREADY);
  514. }
  515. }
  516. }
  517. static inline void
  518. Memhscx_int_main(struct IsdnCardState *cs, u_char val)
  519. {
  520. u_char exval;
  521. struct BCState *bcs;
  522. if (val & 0x01) { // EXB
  523. bcs = cs->bcs + 1;
  524. exval = MemReadHSCX(cs, 1, HSCX_EXIR);
  525. if (exval & 0x40) {
  526. if (bcs->mode == 1)
  527. Memhscx_fill_fifo(bcs);
  528. else {
  529. /* Here we lost an TX interrupt, so
  530.    * restart transmitting the whole frame.
  531.  */
  532. if (bcs->tx_skb) {
  533. skb_push(bcs->tx_skb, bcs->hw.hscx.count);
  534. bcs->tx_cnt += bcs->hw.hscx.count;
  535. bcs->hw.hscx.count = 0;
  536. }
  537. MemWriteHSCXCMDR(cs, bcs->hw.hscx.hscx, 0x01);
  538. if (cs->debug & L1_DEB_WARN)
  539. debugl1(cs, "HSCX B EXIR %x Lost TX", exval);
  540. }
  541. } else if (cs->debug & L1_DEB_HSCX)
  542. debugl1(cs, "HSCX B EXIR %x", exval);
  543. }
  544. if (val & 0xf8) {
  545. if (cs->debug & L1_DEB_HSCX)
  546. debugl1(cs, "HSCX B interrupt %x", val);
  547. Memhscx_interrupt(cs, val, 1);
  548. }
  549. if (val & 0x02) { // EXA
  550. bcs = cs->bcs;
  551. exval = MemReadHSCX(cs, 0, HSCX_EXIR);
  552. if (exval & 0x40) {
  553. if (bcs->mode == L1_MODE_TRANS)
  554. Memhscx_fill_fifo(bcs);
  555. else {
  556. /* Here we lost an TX interrupt, so
  557.    * restart transmitting the whole frame.
  558.  */
  559. if (bcs->tx_skb) {
  560. skb_push(bcs->tx_skb, bcs->hw.hscx.count);
  561. bcs->tx_cnt += bcs->hw.hscx.count;
  562. bcs->hw.hscx.count = 0;
  563. }
  564. MemWriteHSCXCMDR(cs, bcs->hw.hscx.hscx, 0x01);
  565. if (cs->debug & L1_DEB_WARN)
  566. debugl1(cs, "HSCX A EXIR %x Lost TX", exval);
  567. }
  568. } else if (cs->debug & L1_DEB_HSCX)
  569. debugl1(cs, "HSCX A EXIR %x", exval);
  570. }
  571. if (val & 0x04) { // ICA
  572. exval = MemReadHSCX(cs, 0, HSCX_ISTA);
  573. if (cs->debug & L1_DEB_HSCX)
  574. debugl1(cs, "HSCX A interrupt %x", exval);
  575. Memhscx_interrupt(cs, exval, 0);
  576. }
  577. }
  578. static void
  579. diva_irq_ipac_pci(int intno, void *dev_id, struct pt_regs *regs)
  580. {
  581. struct IsdnCardState *cs = dev_id;
  582. u_char ista,val;
  583. int icnt=5;
  584. u_char *cfg;
  585. if (!cs) {
  586. printk(KERN_WARNING "Diva: Spurious interrupt!n");
  587. return;
  588. }
  589. cfg = (u_char *) cs->hw.diva.pci_cfg;
  590. val = *cfg;
  591. if (!(val & PITA_INT0_STATUS))
  592. return; /* other shared IRQ */
  593. *cfg = PITA_INT0_STATUS; /* Reset pending INT0 */
  594. ista = memreadreg(cs->hw.diva.cfg_reg, IPAC_ISTA);
  595. Start_IPACPCI:
  596. if (cs->debug & L1_DEB_IPAC)
  597. debugl1(cs, "IPAC ISTA %02X", ista);
  598. if (ista & 0x0f) {
  599. val = memreadreg(cs->hw.diva.cfg_reg, HSCX_ISTA + 0x40);
  600. if (ista & 0x01)
  601. val |= 0x01;
  602. if (ista & 0x04)
  603. val |= 0x02;
  604. if (ista & 0x08)
  605. val |= 0x04;
  606. if (val)
  607. Memhscx_int_main(cs, val);
  608. }
  609. if (ista & 0x20) {
  610. val = 0xfe & memreadreg(cs->hw.diva.cfg_reg, ISAC_ISTA + 0x80);
  611. if (val) {
  612. isac_interrupt(cs, val);
  613. }
  614. }
  615. if (ista & 0x10) {
  616. val = 0x01;
  617. isac_interrupt(cs, val);
  618. }
  619. ista  = memreadreg(cs->hw.diva.cfg_reg, IPAC_ISTA);
  620. if ((ista & 0x3f) && icnt) {
  621. icnt--;
  622. goto Start_IPACPCI;
  623. }
  624. if (!icnt)
  625. printk(KERN_WARNING "DIVA IPAC PCI IRQ LOOPn");
  626. memwritereg(cs->hw.diva.cfg_reg, IPAC_MASK, 0xFF);
  627. memwritereg(cs->hw.diva.cfg_reg, IPAC_MASK, 0xC0);
  628. }
  629. static void
  630. diva_irq_ipacx_pci(int intno, void *dev_id, struct pt_regs *regs)
  631. {
  632. struct IsdnCardState *cs = dev_id;
  633. u_char val;
  634. u_char *cfg;
  635. if (!cs) {
  636. printk(KERN_WARNING "Diva: Spurious interrupt!n");
  637. return;
  638. }
  639. cfg = (u_char *) cs->hw.diva.pci_cfg;
  640. val = *cfg;
  641. if (!(val &PITA_INT0_STATUS)) return; // other shared IRQ
  642.   interrupt_ipacx(cs);      // handler for chip
  643. *cfg = PITA_INT0_STATUS;  // Reset PLX interrupt
  644. }
  645. void
  646. release_io_diva(struct IsdnCardState *cs)
  647. {
  648. int bytecnt;
  649. if ((cs->subtyp == DIVA_IPAC_PCI) || 
  650.     (cs->subtyp == DIVA_IPACX_PCI)   ) {
  651. u_int *cfg = (unsigned int *)cs->hw.diva.pci_cfg;
  652. *cfg = 0; /* disable INT0/1 */ 
  653. *cfg = 2; /* reset pending INT0 */
  654. iounmap((void *)cs->hw.diva.cfg_reg);
  655. iounmap((void *)cs->hw.diva.pci_cfg);
  656. return;
  657. } else if (cs->subtyp != DIVA_IPAC_ISA) {
  658. del_timer(&cs->hw.diva.tl);
  659. if (cs->hw.diva.cfg_reg)
  660. byteout(cs->hw.diva.ctrl, 0); /* LED off, Reset */
  661. }
  662. if ((cs->subtyp == DIVA_ISA) || (cs->subtyp == DIVA_IPAC_ISA))
  663. bytecnt = 8;
  664. else
  665. bytecnt = 32;
  666. if (cs->hw.diva.cfg_reg) {
  667. release_region(cs->hw.diva.cfg_reg, bytecnt);
  668. }
  669. }
  670. static void
  671. reset_diva(struct IsdnCardState *cs)
  672. {
  673. long flags;
  674. save_flags(flags);
  675. sti();
  676. if (cs->subtyp == DIVA_IPAC_ISA) {
  677. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_POTA2, 0x20);
  678. set_current_state(TASK_UNINTERRUPTIBLE);
  679. schedule_timeout((10*HZ)/1000);
  680. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_POTA2, 0x00);
  681. set_current_state(TASK_UNINTERRUPTIBLE);
  682. schedule_timeout((10*HZ)/1000);
  683. writereg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_MASK, 0xc0);
  684. } else if (cs->subtyp == DIVA_IPAC_PCI) {
  685. unsigned int *ireg = (unsigned int *)(cs->hw.diva.pci_cfg +
  686. PITA_MISC_REG);
  687. *ireg = PITA_PARA_SOFTRESET | PITA_PARA_MPX_MODE;
  688. set_current_state(TASK_UNINTERRUPTIBLE);
  689. schedule_timeout((10*HZ)/1000);
  690. *ireg = PITA_PARA_MPX_MODE;
  691. set_current_state(TASK_UNINTERRUPTIBLE);
  692. schedule_timeout((10*HZ)/1000);
  693. memwritereg(cs->hw.diva.cfg_reg, IPAC_MASK, 0xc0);
  694. } else if (cs->subtyp == DIVA_IPACX_PCI) {
  695. unsigned int *ireg = (unsigned int *)(cs->hw.diva.pci_cfg +
  696. PITA_MISC_REG);
  697. *ireg = PITA_PARA_SOFTRESET | PITA_PARA_MPX_MODE;
  698. set_current_state(TASK_UNINTERRUPTIBLE);
  699. schedule_timeout((10*HZ)/1000);
  700. *ireg = PITA_PARA_MPX_MODE | PITA_SER_SOFTRESET;
  701. set_current_state(TASK_UNINTERRUPTIBLE);
  702. schedule_timeout((10*HZ)/1000);
  703. MemWriteISAC_IPACX(cs, IPACX_MASK, 0xff); // Interrupts off
  704. } else { /* DIVA 2.0 */
  705. cs->hw.diva.ctrl_reg = 0;        /* Reset On */
  706. byteout(cs->hw.diva.ctrl, cs->hw.diva.ctrl_reg);
  707. set_current_state(TASK_UNINTERRUPTIBLE);
  708. schedule_timeout((10*HZ)/1000);
  709. cs->hw.diva.ctrl_reg |= DIVA_RESET;  /* Reset Off */
  710. byteout(cs->hw.diva.ctrl, cs->hw.diva.ctrl_reg);
  711. set_current_state(TASK_UNINTERRUPTIBLE);
  712. schedule_timeout((10*HZ)/1000);
  713. if (cs->subtyp == DIVA_ISA)
  714. cs->hw.diva.ctrl_reg |= DIVA_ISA_LED_A;
  715. else {
  716. /* Workaround PCI9060 */
  717. byteout(cs->hw.diva.pci_cfg + 0x69, 9);
  718. cs->hw.diva.ctrl_reg |= DIVA_PCI_LED_A;
  719. }
  720. byteout(cs->hw.diva.ctrl, cs->hw.diva.ctrl_reg);
  721. }
  722. restore_flags(flags);
  723. }
  724. #define DIVA_ASSIGN 1
  725. static void
  726. diva_led_handler(struct IsdnCardState *cs)
  727. {
  728. int blink = 0;
  729. if ((cs->subtyp == DIVA_IPAC_ISA) ||
  730.     (cs->subtyp == DIVA_IPAC_PCI) ||
  731.     (cs->subtyp == DIVA_IPACX_PCI)   )
  732. return;
  733. del_timer(&cs->hw.diva.tl);
  734. if (cs->hw.diva.status & DIVA_ASSIGN)
  735. cs->hw.diva.ctrl_reg |= (DIVA_ISA == cs->subtyp) ?
  736. DIVA_ISA_LED_A : DIVA_PCI_LED_A;
  737. else {
  738. cs->hw.diva.ctrl_reg ^= (DIVA_ISA == cs->subtyp) ?
  739. DIVA_ISA_LED_A : DIVA_PCI_LED_A;
  740. blink = 250;
  741. }
  742. if (cs->hw.diva.status & 0xf000)
  743. cs->hw.diva.ctrl_reg |= (DIVA_ISA == cs->subtyp) ?
  744. DIVA_ISA_LED_B : DIVA_PCI_LED_B;
  745. else if (cs->hw.diva.status & 0x0f00) {
  746. cs->hw.diva.ctrl_reg ^= (DIVA_ISA == cs->subtyp) ?
  747. DIVA_ISA_LED_B : DIVA_PCI_LED_B;
  748. blink = 500;
  749. } else
  750. cs->hw.diva.ctrl_reg &= ~((DIVA_ISA == cs->subtyp) ?
  751. DIVA_ISA_LED_B : DIVA_PCI_LED_B);
  752. byteout(cs->hw.diva.ctrl, cs->hw.diva.ctrl_reg);
  753. if (blink) {
  754. init_timer(&cs->hw.diva.tl);
  755. cs->hw.diva.tl.expires = jiffies + ((blink * HZ) / 1000);
  756. add_timer(&cs->hw.diva.tl);
  757. }
  758. }
  759. static int
  760. Diva_card_msg(struct IsdnCardState *cs, int mt, void *arg)
  761. {
  762. u_int *ireg;
  763. switch (mt) {
  764. case CARD_RESET:
  765. reset_diva(cs);
  766. return(0);
  767. case CARD_RELEASE:
  768. release_io_diva(cs);
  769. return(0);
  770. case CARD_INIT:
  771. if (cs->subtyp == DIVA_IPACX_PCI) {
  772. ireg = (unsigned int *)cs->hw.diva.pci_cfg;
  773. *ireg = PITA_INT0_ENABLE;
  774.   init_ipacx(cs, 3); // init chip and enable interrupts
  775.         return (0);
  776. }
  777. if (cs->subtyp == DIVA_IPAC_PCI) {
  778. ireg = (unsigned int *)cs->hw.diva.pci_cfg;
  779. *ireg = PITA_INT0_ENABLE;
  780. }
  781. inithscxisac(cs, 3);
  782. return(0);
  783. case CARD_TEST:
  784. return(0);
  785. case (MDL_REMOVE | REQUEST):
  786. cs->hw.diva.status = 0;
  787. break;
  788. case (MDL_ASSIGN | REQUEST):
  789. cs->hw.diva.status |= DIVA_ASSIGN;
  790. break;
  791. case MDL_INFO_SETUP:
  792. if ((long)arg)
  793. cs->hw.diva.status |=  0x0200;
  794. else
  795. cs->hw.diva.status |=  0x0100;
  796. break;
  797. case MDL_INFO_CONN:
  798. if ((long)arg)
  799. cs->hw.diva.status |=  0x2000;
  800. else
  801. cs->hw.diva.status |=  0x1000;
  802. break;
  803. case MDL_INFO_REL:
  804. if ((long)arg) {
  805. cs->hw.diva.status &=  ~0x2000;
  806. cs->hw.diva.status &=  ~0x0200;
  807. } else {
  808. cs->hw.diva.status &=  ~0x1000;
  809. cs->hw.diva.status &=  ~0x0100;
  810. }
  811. break;
  812. }
  813. if ((cs->subtyp != DIVA_IPAC_ISA) && 
  814.     (cs->subtyp != DIVA_IPAC_PCI) &&
  815.     (cs->subtyp != DIVA_IPACX_PCI)   )
  816. diva_led_handler(cs);
  817. return(0);
  818. }
  819. static struct pci_dev *dev_diva __initdata = NULL;
  820. static struct pci_dev *dev_diva_u __initdata = NULL;
  821. static struct pci_dev *dev_diva201 __initdata = NULL;
  822. static struct pci_dev *dev_diva202 __initdata = NULL;
  823. #ifdef __ISAPNP__
  824. static struct isapnp_device_id diva_ids[] __initdata = {
  825. { ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0x51),
  826.   ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0x51), 
  827.   (unsigned long) "Diva picola" },
  828. { ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0x51),
  829.   ISAPNP_VENDOR('E', 'I', 'C'), ISAPNP_FUNCTION(0x51), 
  830.   (unsigned long) "Diva picola" },
  831. { ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0x71),
  832.   ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0x71), 
  833.   (unsigned long) "Diva 2.0" },
  834. { ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0x71),
  835.   ISAPNP_VENDOR('E', 'I', 'C'), ISAPNP_FUNCTION(0x71), 
  836.   (unsigned long) "Diva 2.0" },
  837. { ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0xA1),
  838.   ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0xA1), 
  839.   (unsigned long) "Diva 2.01" },
  840. { ISAPNP_VENDOR('G', 'D', 'I'), ISAPNP_FUNCTION(0xA1),
  841.   ISAPNP_VENDOR('E', 'I', 'C'), ISAPNP_FUNCTION(0xA1), 
  842.   (unsigned long) "Diva 2.01" },
  843. { 0, }
  844. };
  845. static struct isapnp_device_id *pdev = &diva_ids[0];
  846. static struct pci_bus *pnp_c __devinitdata = NULL;
  847. #endif
  848. int __init
  849. setup_diva(struct IsdnCard *card)
  850. {
  851. int bytecnt = 8;
  852. u_char val;
  853. struct IsdnCardState *cs = card->cs;
  854. char tmp[64];
  855. strcpy(tmp, Diva_revision);
  856. printk(KERN_INFO "HiSax: Eicon.Diehl Diva driver Rev. %sn", HiSax_getrev(tmp));
  857. if (cs->typ != ISDN_CTYPE_DIEHLDIVA)
  858. return(0);
  859. cs->hw.diva.status = 0;
  860. if (card->para[1]) {
  861. cs->hw.diva.ctrl_reg = 0;
  862. cs->hw.diva.cfg_reg = card->para[1];
  863. val = readreg(cs->hw.diva.cfg_reg + DIVA_IPAC_ADR,
  864. cs->hw.diva.cfg_reg + DIVA_IPAC_DATA, IPAC_ID);
  865. printk(KERN_INFO "Diva: IPAC version %xn", val);
  866. if ((val == 1) || (val==2)) {
  867. cs->subtyp = DIVA_IPAC_ISA;
  868. cs->hw.diva.ctrl = 0;
  869. cs->hw.diva.isac = card->para[1] + DIVA_IPAC_DATA;
  870. cs->hw.diva.hscx = card->para[1] + DIVA_IPAC_DATA;
  871. cs->hw.diva.isac_adr = card->para[1] + DIVA_IPAC_ADR;
  872. cs->hw.diva.hscx_adr = card->para[1] + DIVA_IPAC_ADR;
  873. test_and_set_bit(HW_IPAC, &cs->HW_Flags);
  874. } else {
  875. cs->subtyp = DIVA_ISA;
  876. cs->hw.diva.ctrl = card->para[1] + DIVA_ISA_CTRL;
  877. cs->hw.diva.isac = card->para[1] + DIVA_ISA_ISAC_DATA;
  878. cs->hw.diva.hscx = card->para[1] + DIVA_HSCX_DATA;
  879. cs->hw.diva.isac_adr = card->para[1] + DIVA_ISA_ISAC_ADR;
  880. cs->hw.diva.hscx_adr = card->para[1] + DIVA_HSCX_ADR;
  881. }
  882. cs->irq = card->para[0];
  883. } else {
  884. #ifdef __ISAPNP__
  885. if (isapnp_present()) {
  886. struct pci_bus *pb;
  887. struct pci_dev *pd;
  888. while(pdev->card_vendor) {
  889. if ((pb = isapnp_find_card(pdev->card_vendor,
  890. pdev->card_device, pnp_c))) {
  891. pnp_c = pb;
  892. pd = NULL;
  893. if ((pd = isapnp_find_dev(pnp_c,
  894. pdev->vendor, pdev->function, pd))) {
  895. printk(KERN_INFO "HiSax: %s detectedn",
  896. (char *)pdev->driver_data);
  897. pd->prepare(pd);
  898. pd->deactivate(pd);
  899. pd->activate(pd);
  900. card->para[1] =
  901. pd->resource[0].start;
  902. card->para[0] =
  903. pd->irq_resource[0].start;
  904. if (!card->para[0] || !card->para[1]) {
  905. printk(KERN_ERR "Diva PnP:some resources are missing %ld/%lxn",
  906. card->para[0], card->para[1]);
  907. pd->deactivate(pd);
  908. return(0);
  909. }
  910. cs->hw.diva.cfg_reg  = card->para[1];
  911. cs->irq = card->para[0];
  912. if (pdev->function == ISAPNP_FUNCTION(0xA1)) {
  913. cs->subtyp = DIVA_IPAC_ISA;
  914. cs->hw.diva.ctrl = 0;
  915. cs->hw.diva.isac =
  916. card->para[1] + DIVA_IPAC_DATA;
  917. cs->hw.diva.hscx =
  918. card->para[1] + DIVA_IPAC_DATA;
  919. cs->hw.diva.isac_adr =
  920. card->para[1] + DIVA_IPAC_ADR;
  921. cs->hw.diva.hscx_adr =
  922. card->para[1] + DIVA_IPAC_ADR;
  923. test_and_set_bit(HW_IPAC, &cs->HW_Flags);
  924. } else {
  925. cs->subtyp = DIVA_ISA;
  926. cs->hw.diva.ctrl =
  927. card->para[1] + DIVA_ISA_CTRL;
  928. cs->hw.diva.isac =
  929. card->para[1] + DIVA_ISA_ISAC_DATA;
  930. cs->hw.diva.hscx =
  931. card->para[1] + DIVA_HSCX_DATA;
  932. cs->hw.diva.isac_adr =
  933. card->para[1] + DIVA_ISA_ISAC_ADR;
  934. cs->hw.diva.hscx_adr =
  935. card->para[1] + DIVA_HSCX_ADR;
  936. }
  937. goto ready;
  938. } else {
  939. printk(KERN_ERR "Diva PnP: PnP error card found, no devicen");
  940. return(0);
  941. }
  942. }
  943. pdev++;
  944. pnp_c=NULL;
  945. if (!pdev->card_vendor) {
  946. printk(KERN_INFO "Diva PnP: no ISAPnP card foundn");
  947. }
  948. }
  949. #endif
  950. #if CONFIG_PCI
  951. if (!pci_present()) {
  952. printk(KERN_ERR "Diva: no PCI bus presentn");
  953. return(0);
  954. }
  955. cs->subtyp = 0;
  956. if ((dev_diva = pci_find_device(PCI_VENDOR_ID_EICON,
  957. PCI_DEVICE_ID_EICON_DIVA20, dev_diva))) {
  958. if (pci_enable_device(dev_diva))
  959. return(0);
  960. cs->subtyp = DIVA_PCI;
  961. cs->irq = dev_diva->irq;
  962. cs->hw.diva.cfg_reg = pci_resource_start(dev_diva, 2);
  963. } else if ((dev_diva_u = pci_find_device(PCI_VENDOR_ID_EICON,
  964. PCI_DEVICE_ID_EICON_DIVA20_U, dev_diva_u))) {
  965. if (pci_enable_device(dev_diva_u))
  966. return(0);
  967. cs->subtyp = DIVA_PCI;
  968. cs->irq = dev_diva_u->irq;
  969. cs->hw.diva.cfg_reg = pci_resource_start(dev_diva_u, 2);
  970. } else if ((dev_diva201 = pci_find_device(PCI_VENDOR_ID_EICON,
  971. PCI_DEVICE_ID_EICON_DIVA201, dev_diva201))) {
  972. if (pci_enable_device(dev_diva201))
  973. return(0);
  974. cs->subtyp = DIVA_IPAC_PCI;
  975. cs->irq = dev_diva201->irq;
  976. cs->hw.diva.pci_cfg =
  977. (ulong) ioremap(pci_resource_start(dev_diva201, 0), 4096);
  978. cs->hw.diva.cfg_reg =
  979. (ulong) ioremap(pci_resource_start(dev_diva201, 1), 4096);
  980. } else if ((dev_diva202 = pci_find_device(PCI_VENDOR_ID_EICON,
  981. PCI_DEVICE_ID_EICON_DIVA202, dev_diva202))) {
  982. if (pci_enable_device(dev_diva202))
  983. return(0);
  984. cs->subtyp = DIVA_IPACX_PCI;
  985. cs->irq = dev_diva202->irq;
  986. cs->hw.diva.pci_cfg =
  987. (ulong) ioremap(pci_resource_start(dev_diva202, 0), 4096);
  988. cs->hw.diva.cfg_reg =
  989. (ulong) ioremap(pci_resource_start(dev_diva202, 1), 4096);
  990. } else {
  991. printk(KERN_WARNING "Diva: No PCI card foundn");
  992. return(0);
  993. }
  994. if (!cs->irq) {
  995. printk(KERN_WARNING "Diva: No IRQ for PCI card foundn");
  996. return(0);
  997. }
  998. if (!cs->hw.diva.cfg_reg) {
  999. printk(KERN_WARNING "Diva: No IO-Adr for PCI card foundn");
  1000. return(0);
  1001. }
  1002. cs->irq_flags |= SA_SHIRQ;
  1003. #else
  1004. printk(KERN_WARNING "Diva: cfgreg 0 and NO_PCI_BIOSn");
  1005. printk(KERN_WARNING "Diva: unable to config DIVA PCIn");
  1006. return (0);
  1007. #endif /* CONFIG_PCI */
  1008. if ((cs->subtyp == DIVA_IPAC_PCI) ||
  1009.     (cs->subtyp == DIVA_IPACX_PCI)   ) {
  1010. cs->hw.diva.ctrl = 0;
  1011. cs->hw.diva.isac = 0;
  1012. cs->hw.diva.hscx = 0;
  1013. cs->hw.diva.isac_adr = 0;
  1014. cs->hw.diva.hscx_adr = 0;
  1015. test_and_set_bit(HW_IPAC, &cs->HW_Flags);
  1016. bytecnt = 0;
  1017. } else {
  1018. cs->hw.diva.ctrl = cs->hw.diva.cfg_reg + DIVA_PCI_CTRL;
  1019. cs->hw.diva.isac = cs->hw.diva.cfg_reg + DIVA_PCI_ISAC_DATA;
  1020. cs->hw.diva.hscx = cs->hw.diva.cfg_reg + DIVA_HSCX_DATA;
  1021. cs->hw.diva.isac_adr = cs->hw.diva.cfg_reg + DIVA_PCI_ISAC_ADR;
  1022. cs->hw.diva.hscx_adr = cs->hw.diva.cfg_reg + DIVA_HSCX_ADR;
  1023. bytecnt = 32;
  1024. }
  1025. }
  1026. ready:
  1027. printk(KERN_INFO
  1028. "Diva: %s card configured at %#lx IRQ %dn",
  1029. (cs->subtyp == DIVA_PCI) ? "PCI" :
  1030. (cs->subtyp == DIVA_ISA) ? "ISA" : 
  1031. (cs->subtyp == DIVA_IPAC_ISA) ? "IPAC ISA" :
  1032. (cs->subtyp == DIVA_IPAC_PCI) ? "IPAC PCI" : "IPACX PCI",
  1033. cs->hw.diva.cfg_reg, cs->irq);
  1034. if ((cs->subtyp == DIVA_IPAC_PCI)  || 
  1035.     (cs->subtyp == DIVA_IPACX_PCI) || 
  1036.     (cs->subtyp == DIVA_PCI)         )
  1037. printk(KERN_INFO "Diva: %s space at %#lxn",
  1038. (cs->subtyp == DIVA_PCI) ? "PCI" :
  1039. (cs->subtyp == DIVA_IPAC_PCI) ? "IPAC PCI" : "IPACX PCI",
  1040. cs->hw.diva.pci_cfg);
  1041. if ((cs->subtyp != DIVA_IPAC_PCI) &&
  1042.     (cs->subtyp != DIVA_IPACX_PCI)   ) {
  1043. if (check_region(cs->hw.diva.cfg_reg, bytecnt)) {
  1044. printk(KERN_WARNING
  1045.        "HiSax: %s config port %lx-%lx already in usen",
  1046.        CardType[card->typ],
  1047.        cs->hw.diva.cfg_reg,
  1048.        cs->hw.diva.cfg_reg + bytecnt);
  1049. return (0);
  1050. } else {
  1051. request_region(cs->hw.diva.cfg_reg, bytecnt, "diva isdn");
  1052. }
  1053. }
  1054. reset_diva(cs);
  1055. cs->BC_Read_Reg  = &ReadHSCX;
  1056. cs->BC_Write_Reg = &WriteHSCX;
  1057. cs->BC_Send_Data = &hscx_fill_fifo;
  1058. cs->cardmsg = &Diva_card_msg;
  1059. if (cs->subtyp == DIVA_IPAC_ISA) {
  1060. cs->readisac  = &ReadISAC_IPAC;
  1061. cs->writeisac = &WriteISAC_IPAC;
  1062. cs->readisacfifo  = &ReadISACfifo_IPAC;
  1063. cs->writeisacfifo = &WriteISACfifo_IPAC;
  1064. cs->irq_func = &diva_irq_ipac_isa;
  1065. val = readreg(cs->hw.diva.isac_adr, cs->hw.diva.isac, IPAC_ID);
  1066. printk(KERN_INFO "Diva: IPAC version %xn", val);
  1067. } else if (cs->subtyp == DIVA_IPAC_PCI) {
  1068. cs->readisac  = &MemReadISAC_IPAC;
  1069. cs->writeisac = &MemWriteISAC_IPAC;
  1070. cs->readisacfifo  = &MemReadISACfifo_IPAC;
  1071. cs->writeisacfifo = &MemWriteISACfifo_IPAC;
  1072. cs->BC_Read_Reg  = &MemReadHSCX;
  1073. cs->BC_Write_Reg = &MemWriteHSCX;
  1074. cs->BC_Send_Data = &Memhscx_fill_fifo;
  1075. cs->irq_func = &diva_irq_ipac_pci;
  1076. val = memreadreg(cs->hw.diva.cfg_reg, IPAC_ID);
  1077. printk(KERN_INFO "Diva: IPAC version %xn", val);
  1078. } else if (cs->subtyp == DIVA_IPACX_PCI) {
  1079. cs->readisac  = &MemReadISAC_IPACX;
  1080. cs->writeisac = &MemWriteISAC_IPACX;
  1081. cs->readisacfifo  = &MemReadISACfifo_IPACX;
  1082. cs->writeisacfifo = &MemWriteISACfifo_IPACX;
  1083. cs->BC_Read_Reg  = &MemReadHSCX_IPACX;
  1084. cs->BC_Write_Reg = &MemWriteHSCX_IPACX;
  1085. cs->BC_Send_Data = 0; // function located in ipacx module
  1086. cs->irq_func = &diva_irq_ipacx_pci;
  1087. printk(KERN_INFO "Diva: IPACX Design Id: %xn", 
  1088.             MemReadISAC_IPACX(cs, IPACX_ID) &0x3F);
  1089. } else { /* DIVA 2.0 */
  1090. cs->hw.diva.tl.function = (void *) diva_led_handler;
  1091. cs->hw.diva.tl.data = (long) cs;
  1092. init_timer(&cs->hw.diva.tl);
  1093. cs->readisac  = &ReadISAC;
  1094. cs->writeisac = &WriteISAC;
  1095. cs->readisacfifo  = &ReadISACfifo;
  1096. cs->writeisacfifo = &WriteISACfifo;
  1097. cs->irq_func = &diva_interrupt;
  1098. ISACVersion(cs, "Diva:");
  1099. if (HscxVersion(cs, "Diva:")) {
  1100. printk(KERN_WARNING
  1101.        "Diva: wrong HSCX versions check IO addressn");
  1102. release_io_diva(cs);
  1103. return (0);
  1104. }
  1105. }
  1106. return (1);
  1107. }