1 /* $Id: teles3.c,v 2.19.2.4 2004/01/13 23:48:39 keil Exp $
3 * low level stuff for Teles 16.3 & PNP isdn cards
6 * Copyright by Karsten Keil <keil@isdn4linux.de>
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
11 * Thanks to Jan den Ouden
16 #include <linux/init.h>
17 #include <linux/isapnp.h>
23 extern const char *CardType
[];
24 const char *teles3_revision
= "$Revision: 2.19.2.4 $";
26 #define byteout(addr,val) outb(val,addr)
27 #define bytein(addr) inb(addr)
30 readreg(unsigned int adr
, u_char off
)
32 return (bytein(adr
+ off
));
36 writereg(unsigned int adr
, u_char off
, u_char data
)
38 byteout(adr
+ off
, data
);
43 read_fifo(unsigned int adr
, u_char
* data
, int size
)
45 insb(adr
, data
, size
);
49 write_fifo(unsigned int adr
, u_char
* data
, int size
)
51 outsb(adr
, data
, size
);
54 /* Interface functions */
57 ReadISAC(struct IsdnCardState
*cs
, u_char offset
)
59 return (readreg(cs
->hw
.teles3
.isac
, offset
));
63 WriteISAC(struct IsdnCardState
*cs
, u_char offset
, u_char value
)
65 writereg(cs
->hw
.teles3
.isac
, offset
, value
);
69 ReadISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
71 read_fifo(cs
->hw
.teles3
.isacfifo
, data
, size
);
75 WriteISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
77 write_fifo(cs
->hw
.teles3
.isacfifo
, data
, size
);
81 ReadHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
)
83 return (readreg(cs
->hw
.teles3
.hscx
[hscx
], offset
));
87 WriteHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
, u_char value
)
89 writereg(cs
->hw
.teles3
.hscx
[hscx
], offset
, value
);
93 * fast interrupt HSCX stuff goes here
96 #define READHSCX(cs, nr, reg) readreg(cs->hw.teles3.hscx[nr], reg)
97 #define WRITEHSCX(cs, nr, reg, data) writereg(cs->hw.teles3.hscx[nr], reg, data)
98 #define READHSCXFIFO(cs, nr, ptr, cnt) read_fifo(cs->hw.teles3.hscxfifo[nr], ptr, cnt)
99 #define WRITEHSCXFIFO(cs, nr, ptr, cnt) write_fifo(cs->hw.teles3.hscxfifo[nr], ptr, cnt)
101 #include "hscx_irq.c"
104 teles3_interrupt(int intno
, void *dev_id
, struct pt_regs
*regs
)
107 struct IsdnCardState
*cs
= dev_id
;
112 spin_lock_irqsave(&cs
->lock
, flags
);
113 val
= readreg(cs
->hw
.teles3
.hscx
[1], HSCX_ISTA
);
116 hscx_int_main(cs
, val
);
117 val
= readreg(cs
->hw
.teles3
.isac
, ISAC_ISTA
);
120 isac_interrupt(cs
, val
);
122 val
= readreg(cs
->hw
.teles3
.hscx
[1], HSCX_ISTA
);
123 if (val
&& count
< MAXCOUNT
) {
124 if (cs
->debug
& L1_DEB_HSCX
)
125 debugl1(cs
, "HSCX IntStat after IntRoutine");
128 val
= readreg(cs
->hw
.teles3
.isac
, ISAC_ISTA
);
129 if (val
&& count
< MAXCOUNT
) {
130 if (cs
->debug
& L1_DEB_ISAC
)
131 debugl1(cs
, "ISAC IntStat after IntRoutine");
134 if (count
>= MAXCOUNT
)
135 printk(KERN_WARNING
"Teles3: more than %d loops in teles3_interrupt\n", count
);
136 writereg(cs
->hw
.teles3
.hscx
[0], HSCX_MASK
, 0xFF);
137 writereg(cs
->hw
.teles3
.hscx
[1], HSCX_MASK
, 0xFF);
138 writereg(cs
->hw
.teles3
.isac
, ISAC_MASK
, 0xFF);
139 writereg(cs
->hw
.teles3
.isac
, ISAC_MASK
, 0x0);
140 writereg(cs
->hw
.teles3
.hscx
[0], HSCX_MASK
, 0x0);
141 writereg(cs
->hw
.teles3
.hscx
[1], HSCX_MASK
, 0x0);
142 spin_unlock_irqrestore(&cs
->lock
, flags
);
147 release_ioregs(struct IsdnCardState
*cs
, int mask
)
150 release_region(cs
->hw
.teles3
.isac
+ 32, 32);
152 release_region(cs
->hw
.teles3
.hscx
[0] + 32, 32);
154 release_region(cs
->hw
.teles3
.hscx
[1] + 32, 32);
158 release_io_teles3(struct IsdnCardState
*cs
)
160 if (cs
->typ
== ISDN_CTYPE_TELESPCMCIA
) {
161 release_region(cs
->hw
.teles3
.hscx
[1], 96);
163 if (cs
->hw
.teles3
.cfg_reg
) {
164 if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
165 release_region(cs
->hw
.teles3
.cfg_reg
, 1);
167 release_region(cs
->hw
.teles3
.cfg_reg
, 8);
170 release_ioregs(cs
, 0x7);
175 reset_teles3(struct IsdnCardState
*cs
)
179 if (cs
->typ
!= ISDN_CTYPE_TELESPCMCIA
) {
180 if ((cs
->hw
.teles3
.cfg_reg
) && (cs
->typ
!= ISDN_CTYPE_COMPAQ_ISA
)) {
210 byteout(cs
->hw
.teles3
.cfg_reg
+ 4, irqcfg
);
211 HZDELAY(HZ
/ 10 + 1);
212 byteout(cs
->hw
.teles3
.cfg_reg
+ 4, irqcfg
| 1);
213 HZDELAY(HZ
/ 10 + 1);
214 } else if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
215 byteout(cs
->hw
.teles3
.cfg_reg
, 0xff);
217 byteout(cs
->hw
.teles3
.cfg_reg
, 0x00);
220 /* Reset off for 16.3 PnP , thanks to Georg Acher */
221 byteout(cs
->hw
.teles3
.isac
+ 0x3c, 0);
223 byteout(cs
->hw
.teles3
.isac
+ 0x3c, 1);
231 Teles_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
237 spin_lock_irqsave(&cs
->lock
, flags
);
239 spin_unlock_irqrestore(&cs
->lock
, flags
);
242 release_io_teles3(cs
);
245 spin_lock_irqsave(&cs
->lock
, flags
);
247 spin_unlock_irqrestore(&cs
->lock
, flags
);
257 static struct isapnp_device_id teles_ids
[] __devinitdata
= {
258 { ISAPNP_VENDOR('T', 'A', 'G'), ISAPNP_FUNCTION(0x2110),
259 ISAPNP_VENDOR('T', 'A', 'G'), ISAPNP_FUNCTION(0x2110),
260 (unsigned long) "Teles 16.3 PnP" },
261 { ISAPNP_VENDOR('C', 'T', 'X'), ISAPNP_FUNCTION(0x0),
262 ISAPNP_VENDOR('C', 'T', 'X'), ISAPNP_FUNCTION(0x0),
263 (unsigned long) "Creatix 16.3 PnP" },
264 { ISAPNP_VENDOR('C', 'P', 'Q'), ISAPNP_FUNCTION(0x1002),
265 ISAPNP_VENDOR('C', 'P', 'Q'), ISAPNP_FUNCTION(0x1002),
266 (unsigned long) "Compaq ISDN S0" },
270 static struct isapnp_device_id
*ipid __devinitdata
= &teles_ids
[0];
271 static struct pnp_card
*pnp_c __devinitdata
= NULL
;
275 setup_teles3(struct IsdnCard
*card
)
278 struct IsdnCardState
*cs
= card
->cs
;
281 strcpy(tmp
, teles3_revision
);
282 printk(KERN_INFO
"HiSax: Teles IO driver Rev. %s\n", HiSax_getrev(tmp
));
283 if ((cs
->typ
!= ISDN_CTYPE_16_3
) && (cs
->typ
!= ISDN_CTYPE_PNP
)
284 && (cs
->typ
!= ISDN_CTYPE_TELESPCMCIA
) && (cs
->typ
!= ISDN_CTYPE_COMPAQ_ISA
))
288 if (!card
->para
[1] && isapnp_present()) {
289 struct pnp_dev
*pnp_d
;
290 while(ipid
->card_vendor
) {
291 if ((pnp_c
= pnp_find_card(ipid
->card_vendor
,
292 ipid
->card_device
, pnp_c
))) {
294 if ((pnp_d
= pnp_find_dev(pnp_c
,
295 ipid
->vendor
, ipid
->function
, pnp_d
))) {
298 printk(KERN_INFO
"HiSax: %s detected\n",
299 (char *)ipid
->driver_data
);
300 pnp_disable_dev(pnp_d
);
301 err
= pnp_activate_dev(pnp_d
);
303 printk(KERN_WARNING
"%s: pnp_activate_dev ret(%d)\n",
307 card
->para
[3] = pnp_port_start(pnp_d
, 2);
308 card
->para
[2] = pnp_port_start(pnp_d
, 1);
309 card
->para
[1] = pnp_port_start(pnp_d
, 0);
310 card
->para
[0] = pnp_irq(pnp_d
, 0);
311 if (!card
->para
[0] || !card
->para
[1] || !card
->para
[2]) {
312 printk(KERN_ERR
"Teles PnP:some resources are missing %ld/%lx/%lx\n",
313 card
->para
[0], card
->para
[1], card
->para
[2]);
314 pnp_disable_dev(pnp_d
);
319 printk(KERN_ERR
"Teles PnP: PnP error card found, no device\n");
325 if (!ipid
->card_vendor
) {
326 printk(KERN_INFO
"Teles PnP: no ISAPnP card found\n");
331 if (cs
->typ
== ISDN_CTYPE_16_3
) {
332 cs
->hw
.teles3
.cfg_reg
= card
->para
[1];
333 switch (cs
->hw
.teles3
.cfg_reg
) {
337 cs
->hw
.teles3
.cfg_reg
|= 0xc00;
340 cs
->hw
.teles3
.isac
= cs
->hw
.teles3
.cfg_reg
- 0x420;
341 cs
->hw
.teles3
.hscx
[0] = cs
->hw
.teles3
.cfg_reg
- 0xc20;
342 cs
->hw
.teles3
.hscx
[1] = cs
->hw
.teles3
.cfg_reg
- 0x820;
343 } else if (cs
->typ
== ISDN_CTYPE_TELESPCMCIA
) {
344 cs
->hw
.teles3
.cfg_reg
= 0;
345 cs
->hw
.teles3
.hscx
[0] = card
->para
[1] - 0x20;
346 cs
->hw
.teles3
.hscx
[1] = card
->para
[1];
347 cs
->hw
.teles3
.isac
= card
->para
[1] + 0x20;
348 } else if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
349 cs
->hw
.teles3
.cfg_reg
= card
->para
[3];
350 cs
->hw
.teles3
.isac
= card
->para
[2] - 32;
351 cs
->hw
.teles3
.hscx
[0] = card
->para
[1] - 32;
352 cs
->hw
.teles3
.hscx
[1] = card
->para
[1];
354 cs
->hw
.teles3
.cfg_reg
= 0;
355 cs
->hw
.teles3
.isac
= card
->para
[1] - 32;
356 cs
->hw
.teles3
.hscx
[0] = card
->para
[2] - 32;
357 cs
->hw
.teles3
.hscx
[1] = card
->para
[2];
359 cs
->irq
= card
->para
[0];
360 cs
->hw
.teles3
.isacfifo
= cs
->hw
.teles3
.isac
+ 0x3e;
361 cs
->hw
.teles3
.hscxfifo
[0] = cs
->hw
.teles3
.hscx
[0] + 0x3e;
362 cs
->hw
.teles3
.hscxfifo
[1] = cs
->hw
.teles3
.hscx
[1] + 0x3e;
363 if (cs
->typ
== ISDN_CTYPE_TELESPCMCIA
) {
364 if (!request_region(cs
->hw
.teles3
.hscx
[1], 96, "HiSax Teles PCMCIA")) {
366 "HiSax: %s ports %x-%x already in use\n",
368 cs
->hw
.teles3
.hscx
[1],
369 cs
->hw
.teles3
.hscx
[1] + 96);
373 if (cs
->hw
.teles3
.cfg_reg
) {
374 if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
375 if (!request_region(cs
->hw
.teles3
.cfg_reg
, 1, "teles3 cfg")) {
377 "HiSax: %s config port %x already in use\n",
379 cs
->hw
.teles3
.cfg_reg
);
383 if (!request_region(cs
->hw
.teles3
.cfg_reg
, 8, "teles3 cfg")) {
385 "HiSax: %s config port %x-%x already in use\n",
387 cs
->hw
.teles3
.cfg_reg
,
388 cs
->hw
.teles3
.cfg_reg
+ 8);
393 if (!request_region(cs
->hw
.teles3
.isac
+ 32, 32, "HiSax isac")) {
395 "HiSax: %s isac ports %x-%x already in use\n",
397 cs
->hw
.teles3
.isac
+ 32,
398 cs
->hw
.teles3
.isac
+ 64);
399 if (cs
->hw
.teles3
.cfg_reg
) {
400 if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
401 release_region(cs
->hw
.teles3
.cfg_reg
, 1);
403 release_region(cs
->hw
.teles3
.cfg_reg
, 8);
408 if (!request_region(cs
->hw
.teles3
.hscx
[0] + 32, 32, "HiSax hscx A")) {
410 "HiSax: %s hscx A ports %x-%x already in use\n",
412 cs
->hw
.teles3
.hscx
[0] + 32,
413 cs
->hw
.teles3
.hscx
[0] + 64);
414 if (cs
->hw
.teles3
.cfg_reg
) {
415 if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
416 release_region(cs
->hw
.teles3
.cfg_reg
, 1);
418 release_region(cs
->hw
.teles3
.cfg_reg
, 8);
421 release_ioregs(cs
, 1);
424 if (!request_region(cs
->hw
.teles3
.hscx
[1] + 32, 32, "HiSax hscx B")) {
426 "HiSax: %s hscx B ports %x-%x already in use\n",
428 cs
->hw
.teles3
.hscx
[1] + 32,
429 cs
->hw
.teles3
.hscx
[1] + 64);
430 if (cs
->hw
.teles3
.cfg_reg
) {
431 if (cs
->typ
== ISDN_CTYPE_COMPAQ_ISA
) {
432 release_region(cs
->hw
.teles3
.cfg_reg
, 1);
434 release_region(cs
->hw
.teles3
.cfg_reg
, 8);
437 release_ioregs(cs
, 3);
441 if ((cs
->hw
.teles3
.cfg_reg
) && (cs
->typ
!= ISDN_CTYPE_COMPAQ_ISA
)) {
442 if ((val
= bytein(cs
->hw
.teles3
.cfg_reg
+ 0)) != 0x51) {
443 printk(KERN_WARNING
"Teles: 16.3 Byte at %x is %x\n",
444 cs
->hw
.teles3
.cfg_reg
+ 0, val
);
445 release_io_teles3(cs
);
448 if ((val
= bytein(cs
->hw
.teles3
.cfg_reg
+ 1)) != 0x93) {
449 printk(KERN_WARNING
"Teles: 16.3 Byte at %x is %x\n",
450 cs
->hw
.teles3
.cfg_reg
+ 1, val
);
451 release_io_teles3(cs
);
454 val
= bytein(cs
->hw
.teles3
.cfg_reg
+ 2);/* 0x1e=without AB
459 * 0x46 16.3 with AB + Video (Teles-Vision)
461 if (val
!= 0x46 && val
!= 0x39 && val
!= 0x38 && val
!= 0x1c && val
!= 0x1e && val
!= 0x1f) {
462 printk(KERN_WARNING
"Teles: 16.3 Byte at %x is %x\n",
463 cs
->hw
.teles3
.cfg_reg
+ 2, val
);
464 release_io_teles3(cs
);
469 "HiSax: %s config irq:%d isac:0x%X cfg:0x%X\n",
470 CardType
[cs
->typ
], cs
->irq
,
471 cs
->hw
.teles3
.isac
+ 32, cs
->hw
.teles3
.cfg_reg
);
473 "HiSax: hscx A:0x%X hscx B:0x%X\n",
474 cs
->hw
.teles3
.hscx
[0] + 32, cs
->hw
.teles3
.hscx
[1] + 32);
477 if (reset_teles3(cs
)) {
478 printk(KERN_WARNING
"Teles3: wrong IRQ\n");
479 release_io_teles3(cs
);
482 cs
->readisac
= &ReadISAC
;
483 cs
->writeisac
= &WriteISAC
;
484 cs
->readisacfifo
= &ReadISACfifo
;
485 cs
->writeisacfifo
= &WriteISACfifo
;
486 cs
->BC_Read_Reg
= &ReadHSCX
;
487 cs
->BC_Write_Reg
= &WriteHSCX
;
488 cs
->BC_Send_Data
= &hscx_fill_fifo
;
489 cs
->cardmsg
= &Teles_card_msg
;
490 cs
->irq_func
= &teles3_interrupt
;
491 ISACVersion(cs
, "Teles3:");
492 if (HscxVersion(cs
, "Teles3:")) {
494 "Teles3: wrong HSCX versions check IO address\n");
495 release_io_teles3(cs
);