1 /* $Id: teles0.c,v 2.15.2.4 2004/01/13 23:48:39 keil Exp $
3 * low level stuff for Teles Memory IO isdn cards
6 * based on the teles driver from Jan den Ouden
7 * Copyright by Karsten Keil <keil@isdn4linux.de>
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
12 * Thanks to Jan den Ouden
18 #include <linux/init.h>
24 static const char *teles0_revision
= "$Revision: 2.15.2.4 $";
26 #define TELES_IOMEM_SIZE 0x400
27 #define byteout(addr,val) outb(val,addr)
28 #define bytein(addr) inb(addr)
31 readisac(void __iomem
*adr
, u_char off
)
33 return readb(adr
+ ((off
& 1) ? 0x2ff : 0x100) + off
);
37 writeisac(void __iomem
*adr
, u_char off
, u_char data
)
39 writeb(data
, adr
+ ((off
& 1) ? 0x2ff : 0x100) + off
); mb();
44 readhscx(void __iomem
*adr
, int hscx
, u_char off
)
46 return readb(adr
+ (hscx
? 0x1c0 : 0x180) +
47 ((off
& 1) ? 0x1ff : 0) + off
);
51 writehscx(void __iomem
*adr
, int hscx
, u_char off
, u_char data
)
53 writeb(data
, adr
+ (hscx
? 0x1c0 : 0x180) +
54 ((off
& 1) ? 0x1ff : 0) + off
); mb();
58 read_fifo_isac(void __iomem
*adr
, u_char
* data
, int size
)
61 register u_char __iomem
*ad
= adr
+ 0x100;
62 for (i
= 0; i
< size
; i
++)
67 write_fifo_isac(void __iomem
*adr
, u_char
* data
, int size
)
70 register u_char __iomem
*ad
= adr
+ 0x100;
71 for (i
= 0; i
< size
; i
++) {
72 writeb(data
[i
], ad
); mb();
77 read_fifo_hscx(void __iomem
*adr
, int hscx
, u_char
* data
, int size
)
80 register u_char __iomem
*ad
= adr
+ (hscx
? 0x1c0 : 0x180);
81 for (i
= 0; i
< size
; i
++)
86 write_fifo_hscx(void __iomem
*adr
, int hscx
, u_char
* data
, int size
)
89 register u_char __iomem
*ad
= adr
+ (hscx
? 0x1c0 : 0x180);
90 for (i
= 0; i
< size
; i
++) {
91 writeb(data
[i
], ad
); mb();
95 /* Interface functions */
98 ReadISAC(struct IsdnCardState
*cs
, u_char offset
)
100 return (readisac(cs
->hw
.teles0
.membase
, offset
));
104 WriteISAC(struct IsdnCardState
*cs
, u_char offset
, u_char value
)
106 writeisac(cs
->hw
.teles0
.membase
, offset
, value
);
110 ReadISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
112 read_fifo_isac(cs
->hw
.teles0
.membase
, data
, size
);
116 WriteISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
118 write_fifo_isac(cs
->hw
.teles0
.membase
, data
, size
);
122 ReadHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
)
124 return (readhscx(cs
->hw
.teles0
.membase
, hscx
, offset
));
128 WriteHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
, u_char value
)
130 writehscx(cs
->hw
.teles0
.membase
, hscx
, offset
, value
);
134 * fast interrupt HSCX stuff goes here
137 #define READHSCX(cs, nr, reg) readhscx(cs->hw.teles0.membase, nr, reg)
138 #define WRITEHSCX(cs, nr, reg, data) writehscx(cs->hw.teles0.membase, nr, reg, data)
139 #define READHSCXFIFO(cs, nr, ptr, cnt) read_fifo_hscx(cs->hw.teles0.membase, nr, ptr, cnt)
140 #define WRITEHSCXFIFO(cs, nr, ptr, cnt) write_fifo_hscx(cs->hw.teles0.membase, nr, ptr, cnt)
142 #include "hscx_irq.c"
145 teles0_interrupt(int intno
, void *dev_id
)
147 struct IsdnCardState
*cs
= dev_id
;
152 spin_lock_irqsave(&cs
->lock
, flags
);
153 val
= readhscx(cs
->hw
.teles0
.membase
, 1, HSCX_ISTA
);
156 hscx_int_main(cs
, val
);
157 val
= readisac(cs
->hw
.teles0
.membase
, ISAC_ISTA
);
160 isac_interrupt(cs
, val
);
162 val
= readhscx(cs
->hw
.teles0
.membase
, 1, HSCX_ISTA
);
163 if (val
&& count
< 5) {
164 if (cs
->debug
& L1_DEB_HSCX
)
165 debugl1(cs
, "HSCX IntStat after IntRoutine");
168 val
= readisac(cs
->hw
.teles0
.membase
, ISAC_ISTA
);
169 if (val
&& count
< 5) {
170 if (cs
->debug
& L1_DEB_ISAC
)
171 debugl1(cs
, "ISAC IntStat after IntRoutine");
174 writehscx(cs
->hw
.teles0
.membase
, 0, HSCX_MASK
, 0xFF);
175 writehscx(cs
->hw
.teles0
.membase
, 1, HSCX_MASK
, 0xFF);
176 writeisac(cs
->hw
.teles0
.membase
, ISAC_MASK
, 0xFF);
177 writeisac(cs
->hw
.teles0
.membase
, ISAC_MASK
, 0x0);
178 writehscx(cs
->hw
.teles0
.membase
, 0, HSCX_MASK
, 0x0);
179 writehscx(cs
->hw
.teles0
.membase
, 1, HSCX_MASK
, 0x0);
180 spin_unlock_irqrestore(&cs
->lock
, flags
);
185 release_io_teles0(struct IsdnCardState
*cs
)
187 if (cs
->hw
.teles0
.cfg_reg
)
188 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
189 iounmap(cs
->hw
.teles0
.membase
);
190 release_mem_region(cs
->hw
.teles0
.phymem
, TELES_IOMEM_SIZE
);
194 reset_teles0(struct IsdnCardState
*cs
)
198 if (cs
->hw
.teles0
.cfg_reg
) {
228 cfval
|= ((cs
->hw
.teles0
.phymem
>> 9) & 0xF0);
229 byteout(cs
->hw
.teles0
.cfg_reg
+ 4, cfval
);
230 HZDELAY(HZ
/ 10 + 1);
231 byteout(cs
->hw
.teles0
.cfg_reg
+ 4, cfval
| 1);
232 HZDELAY(HZ
/ 10 + 1);
234 writeb(0, cs
->hw
.teles0
.membase
+ 0x80); mb();
236 writeb(1, cs
->hw
.teles0
.membase
+ 0x80); mb();
242 Teles_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
248 spin_lock_irqsave(&cs
->lock
, flags
);
250 spin_unlock_irqrestore(&cs
->lock
, flags
);
253 release_io_teles0(cs
);
256 spin_lock_irqsave(&cs
->lock
, flags
);
258 spin_unlock_irqrestore(&cs
->lock
, flags
);
267 setup_teles0(struct IsdnCard
*card
)
270 struct IsdnCardState
*cs
= card
->cs
;
273 strcpy(tmp
, teles0_revision
);
274 printk(KERN_INFO
"HiSax: Teles 8.0/16.0 driver Rev. %s\n", HiSax_getrev(tmp
));
275 if ((cs
->typ
!= ISDN_CTYPE_16_0
) && (cs
->typ
!= ISDN_CTYPE_8_0
))
278 if (cs
->typ
== ISDN_CTYPE_16_0
)
279 cs
->hw
.teles0
.cfg_reg
= card
->para
[2];
281 cs
->hw
.teles0
.cfg_reg
= 0;
283 if (card
->para
[1] < 0x10000) {
286 "Teles0: membase configured DOSish, assuming 0x%lx\n",
287 (unsigned long) card
->para
[1]);
289 cs
->irq
= card
->para
[0];
290 if (cs
->hw
.teles0
.cfg_reg
) {
291 if (!request_region(cs
->hw
.teles0
.cfg_reg
, 8, "teles cfg")) {
293 "HiSax: %s config port %x-%x already in use\n",
295 cs
->hw
.teles0
.cfg_reg
,
296 cs
->hw
.teles0
.cfg_reg
+ 8);
300 if (cs
->hw
.teles0
.cfg_reg
) {
301 if ((val
= bytein(cs
->hw
.teles0
.cfg_reg
+ 0)) != 0x51) {
302 printk(KERN_WARNING
"Teles0: 16.0 Byte at %x is %x\n",
303 cs
->hw
.teles0
.cfg_reg
+ 0, val
);
304 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
307 if ((val
= bytein(cs
->hw
.teles0
.cfg_reg
+ 1)) != 0x93) {
308 printk(KERN_WARNING
"Teles0: 16.0 Byte at %x is %x\n",
309 cs
->hw
.teles0
.cfg_reg
+ 1, val
);
310 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
313 val
= bytein(cs
->hw
.teles0
.cfg_reg
+ 2); /* 0x1e=without AB
317 if (val
!= 0x1e && val
!= 0x1f) {
318 printk(KERN_WARNING
"Teles0: 16.0 Byte at %x is %x\n",
319 cs
->hw
.teles0
.cfg_reg
+ 2, val
);
320 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
324 /* 16.0 and 8.0 designed for IOM1 */
325 test_and_set_bit(HW_IOM1
, &cs
->HW_Flags
);
326 cs
->hw
.teles0
.phymem
= card
->para
[1];
327 if (!request_mem_region(cs
->hw
.teles0
.phymem
, TELES_IOMEM_SIZE
, "teles iomem")) {
329 "HiSax: %s memory region %lx-%lx already in use\n",
331 cs
->hw
.teles0
.phymem
,
332 cs
->hw
.teles0
.phymem
+ TELES_IOMEM_SIZE
);
333 if (cs
->hw
.teles0
.cfg_reg
)
334 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
337 cs
->hw
.teles0
.membase
= ioremap(cs
->hw
.teles0
.phymem
, TELES_IOMEM_SIZE
);
339 "HiSax: %s config irq:%d mem:%p cfg:0x%X\n",
340 CardType
[cs
->typ
], cs
->irq
,
341 cs
->hw
.teles0
.membase
, cs
->hw
.teles0
.cfg_reg
);
342 if (reset_teles0(cs
)) {
343 printk(KERN_WARNING
"Teles0: wrong IRQ\n");
344 release_io_teles0(cs
);
348 cs
->readisac
= &ReadISAC
;
349 cs
->writeisac
= &WriteISAC
;
350 cs
->readisacfifo
= &ReadISACfifo
;
351 cs
->writeisacfifo
= &WriteISACfifo
;
352 cs
->BC_Read_Reg
= &ReadHSCX
;
353 cs
->BC_Write_Reg
= &WriteHSCX
;
354 cs
->BC_Send_Data
= &hscx_fill_fifo
;
355 cs
->cardmsg
= &Teles_card_msg
;
356 cs
->irq_func
= &teles0_interrupt
;
357 ISACVersion(cs
, "Teles0:");
358 if (HscxVersion(cs
, "Teles0:")) {
360 "Teles0: wrong HSCX versions check IO/MEM addresses\n");
361 release_io_teles0(cs
);