1 /* $Id: s0box.c,v 2.6.2.4 2004/01/13 23:48:39 keil Exp $
3 * low level stuff for Creatix S0BOX
6 * Copyright by Enrik Berkhan <enrik@starfleet.inka.de>
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
13 #include <linux/init.h>
19 extern const char *CardType
[];
20 static const char *s0box_revision
= "$Revision: 2.6.2.4 $";
23 writereg(unsigned int padr
, signed int addr
, u_char off
, u_char val
) {
26 outb_p((addr
+off
)&0x7f,padr
);
34 static u_char nibtab
[] = { 1, 9, 5, 0xd, 3, 0xb, 7, 0xf,
35 0, 0, 0, 0, 0, 0, 0, 0,
36 0, 8, 4, 0xc, 2, 0xa, 6, 0xe } ;
39 readreg(unsigned int padr
, signed int addr
, u_char off
) {
40 register u_char n1
, n2
;
44 outb_p((addr
+off
)|0x80,padr
);
47 n1
= (inb_p(padr
+1) >> 3) & 0x17;
49 n2
= (inb_p(padr
+1) >> 3) & 0x17;
52 return nibtab
[n1
] | (nibtab
[n2
] << 4);
56 read_fifo(unsigned int padr
, signed int adr
, u_char
* data
, int size
)
59 register u_char n1
, n2
;
63 outb_p(adr
|0x80, padr
);
65 for (i
=0; i
<size
; i
++) {
67 n1
= (inb_p(padr
+1) >> 3) & 0x17;
69 n2
= (inb_p(padr
+1) >> 3) & 0x17;
70 *(data
++)=nibtab
[n1
] | (nibtab
[n2
] << 4);
78 write_fifo(unsigned int padr
, signed int adr
, u_char
* data
, int size
)
83 outb_p(adr
&0x7f, padr
);
84 for (i
=0; i
<size
; i
++) {
86 outb_p(*(data
++), padr
);
94 /* Interface functions */
97 ReadISAC(struct IsdnCardState
*cs
, u_char offset
)
99 return (readreg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isac
, offset
));
103 WriteISAC(struct IsdnCardState
*cs
, u_char offset
, u_char value
)
105 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isac
, offset
, value
);
109 ReadISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
111 read_fifo(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isacfifo
, data
, size
);
115 WriteISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
117 write_fifo(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isacfifo
, data
, size
);
121 ReadHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
)
123 return (readreg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[hscx
], offset
));
127 WriteHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
, u_char value
)
129 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[hscx
], offset
, value
);
133 * fast interrupt HSCX stuff goes here
136 #define READHSCX(cs, nr, reg) readreg(cs->hw.teles3.cfg_reg, cs->hw.teles3.hscx[nr], reg)
137 #define WRITEHSCX(cs, nr, reg, data) writereg(cs->hw.teles3.cfg_reg, cs->hw.teles3.hscx[nr], reg, data)
138 #define READHSCXFIFO(cs, nr, ptr, cnt) read_fifo(cs->hw.teles3.cfg_reg, cs->hw.teles3.hscxfifo[nr], ptr, cnt)
139 #define WRITEHSCXFIFO(cs, nr, ptr, cnt) write_fifo(cs->hw.teles3.cfg_reg, cs->hw.teles3.hscxfifo[nr], ptr, cnt)
141 #include "hscx_irq.c"
144 s0box_interrupt(int intno
, void *dev_id
, struct pt_regs
*regs
)
147 struct IsdnCardState
*cs
= dev_id
;
152 spin_lock_irqsave(&cs
->lock
, flags
);
153 val
= readreg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[1], HSCX_ISTA
);
156 hscx_int_main(cs
, val
);
157 val
= readreg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isac
, ISAC_ISTA
);
160 isac_interrupt(cs
, val
);
162 val
= readreg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[1], HSCX_ISTA
);
163 if (val
&& count
< MAXCOUNT
) {
164 if (cs
->debug
& L1_DEB_HSCX
)
165 debugl1(cs
, "HSCX IntStat after IntRoutine");
168 val
= readreg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isac
, ISAC_ISTA
);
169 if (val
&& count
< MAXCOUNT
) {
170 if (cs
->debug
& L1_DEB_ISAC
)
171 debugl1(cs
, "ISAC IntStat after IntRoutine");
174 if (count
>= MAXCOUNT
)
175 printk(KERN_WARNING
"S0Box: more than %d loops in s0box_interrupt\n", count
);
176 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[0], HSCX_MASK
, 0xFF);
177 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[1], HSCX_MASK
, 0xFF);
178 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isac
, ISAC_MASK
, 0xFF);
179 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.isac
, ISAC_MASK
, 0x0);
180 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[0], HSCX_MASK
, 0x0);
181 writereg(cs
->hw
.teles3
.cfg_reg
, cs
->hw
.teles3
.hscx
[1], HSCX_MASK
, 0x0);
182 spin_unlock_irqrestore(&cs
->lock
, flags
);
187 release_io_s0box(struct IsdnCardState
*cs
)
189 release_region(cs
->hw
.teles3
.cfg_reg
, 8);
193 S0Box_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
201 release_io_s0box(cs
);
204 spin_lock_irqsave(&cs
->lock
, flags
);
206 spin_unlock_irqrestore(&cs
->lock
, flags
);
215 setup_s0box(struct IsdnCard
*card
)
217 struct IsdnCardState
*cs
= card
->cs
;
220 strcpy(tmp
, s0box_revision
);
221 printk(KERN_INFO
"HiSax: S0Box IO driver Rev. %s\n", HiSax_getrev(tmp
));
222 if (cs
->typ
!= ISDN_CTYPE_S0BOX
)
225 cs
->hw
.teles3
.cfg_reg
= card
->para
[1];
226 cs
->hw
.teles3
.hscx
[0] = -0x20;
227 cs
->hw
.teles3
.hscx
[1] = 0x0;
228 cs
->hw
.teles3
.isac
= 0x20;
229 cs
->hw
.teles3
.isacfifo
= cs
->hw
.teles3
.isac
+ 0x3e;
230 cs
->hw
.teles3
.hscxfifo
[0] = cs
->hw
.teles3
.hscx
[0] + 0x3e;
231 cs
->hw
.teles3
.hscxfifo
[1] = cs
->hw
.teles3
.hscx
[1] + 0x3e;
232 cs
->irq
= card
->para
[0];
233 if (!request_region(cs
->hw
.teles3
.cfg_reg
,8, "S0Box parallel I/O")) {
235 "HiSax: %s ports %x-%x already in use\n",
237 cs
->hw
.teles3
.cfg_reg
,
238 cs
->hw
.teles3
.cfg_reg
+ 7);
242 "HiSax: %s config irq:%d isac:0x%x cfg:0x%x\n",
243 CardType
[cs
->typ
], cs
->irq
,
244 cs
->hw
.teles3
.isac
, cs
->hw
.teles3
.cfg_reg
);
246 "HiSax: hscx A:0x%x hscx B:0x%x\n",
247 cs
->hw
.teles3
.hscx
[0], cs
->hw
.teles3
.hscx
[1]);
249 cs
->readisac
= &ReadISAC
;
250 cs
->writeisac
= &WriteISAC
;
251 cs
->readisacfifo
= &ReadISACfifo
;
252 cs
->writeisacfifo
= &WriteISACfifo
;
253 cs
->BC_Read_Reg
= &ReadHSCX
;
254 cs
->BC_Write_Reg
= &WriteHSCX
;
255 cs
->BC_Send_Data
= &hscx_fill_fifo
;
256 cs
->cardmsg
= &S0Box_card_msg
;
257 cs
->irq_func
= &s0box_interrupt
;
258 ISACVersion(cs
, "S0Box:");
259 if (HscxVersion(cs
, "S0Box:")) {
261 "S0Box: wrong HSCX versions check IO address\n");
262 release_io_s0box(cs
);