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
);
266 int setup_teles0(struct IsdnCard
*card
)
269 struct IsdnCardState
*cs
= card
->cs
;
272 strcpy(tmp
, teles0_revision
);
273 printk(KERN_INFO
"HiSax: Teles 8.0/16.0 driver Rev. %s\n", HiSax_getrev(tmp
));
274 if ((cs
->typ
!= ISDN_CTYPE_16_0
) && (cs
->typ
!= ISDN_CTYPE_8_0
))
277 if (cs
->typ
== ISDN_CTYPE_16_0
)
278 cs
->hw
.teles0
.cfg_reg
= card
->para
[2];
280 cs
->hw
.teles0
.cfg_reg
= 0;
282 if (card
->para
[1] < 0x10000) {
285 "Teles0: membase configured DOSish, assuming 0x%lx\n",
286 (unsigned long) card
->para
[1]);
288 cs
->irq
= card
->para
[0];
289 if (cs
->hw
.teles0
.cfg_reg
) {
290 if (!request_region(cs
->hw
.teles0
.cfg_reg
, 8, "teles cfg")) {
292 "HiSax: %s config port %x-%x already in use\n",
294 cs
->hw
.teles0
.cfg_reg
,
295 cs
->hw
.teles0
.cfg_reg
+ 8);
299 if (cs
->hw
.teles0
.cfg_reg
) {
300 if ((val
= bytein(cs
->hw
.teles0
.cfg_reg
+ 0)) != 0x51) {
301 printk(KERN_WARNING
"Teles0: 16.0 Byte at %x is %x\n",
302 cs
->hw
.teles0
.cfg_reg
+ 0, val
);
303 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
306 if ((val
= bytein(cs
->hw
.teles0
.cfg_reg
+ 1)) != 0x93) {
307 printk(KERN_WARNING
"Teles0: 16.0 Byte at %x is %x\n",
308 cs
->hw
.teles0
.cfg_reg
+ 1, val
);
309 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
312 val
= bytein(cs
->hw
.teles0
.cfg_reg
+ 2); /* 0x1e=without AB
316 if (val
!= 0x1e && val
!= 0x1f) {
317 printk(KERN_WARNING
"Teles0: 16.0 Byte at %x is %x\n",
318 cs
->hw
.teles0
.cfg_reg
+ 2, val
);
319 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
323 /* 16.0 and 8.0 designed for IOM1 */
324 test_and_set_bit(HW_IOM1
, &cs
->HW_Flags
);
325 cs
->hw
.teles0
.phymem
= card
->para
[1];
326 if (!request_mem_region(cs
->hw
.teles0
.phymem
, TELES_IOMEM_SIZE
, "teles iomem")) {
328 "HiSax: %s memory region %lx-%lx already in use\n",
330 cs
->hw
.teles0
.phymem
,
331 cs
->hw
.teles0
.phymem
+ TELES_IOMEM_SIZE
);
332 if (cs
->hw
.teles0
.cfg_reg
)
333 release_region(cs
->hw
.teles0
.cfg_reg
, 8);
336 cs
->hw
.teles0
.membase
= ioremap(cs
->hw
.teles0
.phymem
, TELES_IOMEM_SIZE
);
338 "HiSax: %s config irq:%d mem:%p cfg:0x%X\n",
339 CardType
[cs
->typ
], cs
->irq
,
340 cs
->hw
.teles0
.membase
, cs
->hw
.teles0
.cfg_reg
);
341 if (reset_teles0(cs
)) {
342 printk(KERN_WARNING
"Teles0: wrong IRQ\n");
343 release_io_teles0(cs
);
347 cs
->readisac
= &ReadISAC
;
348 cs
->writeisac
= &WriteISAC
;
349 cs
->readisacfifo
= &ReadISACfifo
;
350 cs
->writeisacfifo
= &WriteISACfifo
;
351 cs
->BC_Read_Reg
= &ReadHSCX
;
352 cs
->BC_Write_Reg
= &WriteHSCX
;
353 cs
->BC_Send_Data
= &hscx_fill_fifo
;
354 cs
->cardmsg
= &Teles_card_msg
;
355 cs
->irq_func
= &teles0_interrupt
;
356 ISACVersion(cs
, "Teles0:");
357 if (HscxVersion(cs
, "Teles0:")) {
359 "Teles0: wrong HSCX versions check IO/MEM addresses\n");
360 release_io_teles0(cs
);