1 /* $Id: isurf.c,v 1.12.2.4 2004/01/13 21:46:03 keil Exp $
3 * low level stuff for Siemens I-Surf/I-Talk 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.
13 #include <linux/init.h>
18 #include <linux/isapnp.h>
20 extern const char *CardType
[];
22 static const char *ISurf_revision
= "$Revision: 1.12.2.4 $";
24 #define byteout(addr,val) outb(val,addr)
25 #define bytein(addr) inb(addr)
27 #define ISURF_ISAR_RESET 1
28 #define ISURF_ISAC_RESET 2
29 #define ISURF_ISAR_EA 4
30 #define ISURF_ARCOFI_RESET 8
31 #define ISURF_RESET (ISURF_ISAR_RESET | ISURF_ISAC_RESET | ISURF_ARCOFI_RESET)
33 #define ISURF_ISAR_OFFSET 0
34 #define ISURF_ISAC_OFFSET 0x100
35 #define ISURF_IOMEM_SIZE 0x400
36 /* Interface functions */
39 ReadISAC(struct IsdnCardState
*cs
, u_char offset
)
41 return (readb(cs
->hw
.isurf
.isac
+ offset
));
45 WriteISAC(struct IsdnCardState
*cs
, u_char offset
, u_char value
)
47 writeb(value
, cs
->hw
.isurf
.isac
+ offset
); mb();
51 ReadISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
54 for (i
= 0; i
< size
; i
++)
55 data
[i
] = readb(cs
->hw
.isurf
.isac
);
59 WriteISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
62 for (i
= 0; i
< size
; i
++){
63 writeb(data
[i
], cs
->hw
.isurf
.isac
);mb();
67 /* ISAR access routines
68 * mode = 0 access with IRQ on
69 * mode = 1 access with IRQ off
70 * mode = 2 access with IRQ off and using last offset
74 ReadISAR(struct IsdnCardState
*cs
, int mode
, u_char offset
)
76 return(readb(cs
->hw
.isurf
.isar
+ offset
));
80 WriteISAR(struct IsdnCardState
*cs
, int mode
, u_char offset
, u_char value
)
82 writeb(value
, cs
->hw
.isurf
.isar
+ offset
);mb();
86 isurf_interrupt(int intno
, void *dev_id
, struct pt_regs
*regs
)
88 struct IsdnCardState
*cs
= dev_id
;
93 spin_lock_irqsave(&cs
->lock
, flags
);
94 val
= readb(cs
->hw
.isurf
.isar
+ ISAR_IRQBIT
);
96 if (val
& ISAR_IRQSTA
)
98 val
= readb(cs
->hw
.isurf
.isac
+ ISAC_ISTA
);
101 isac_interrupt(cs
, val
);
102 val
= readb(cs
->hw
.isurf
.isar
+ ISAR_IRQBIT
);
103 if ((val
& ISAR_IRQSTA
) && --cnt
) {
104 if (cs
->debug
& L1_DEB_HSCX
)
105 debugl1(cs
, "ISAR IntStat after IntRoutine");
108 val
= readb(cs
->hw
.isurf
.isac
+ ISAC_ISTA
);
110 if (cs
->debug
& L1_DEB_ISAC
)
111 debugl1(cs
, "ISAC IntStat after IntRoutine");
115 printk(KERN_WARNING
"ISurf IRQ LOOP\n");
117 writeb(0, cs
->hw
.isurf
.isar
+ ISAR_IRQBIT
); mb();
118 writeb(0xFF, cs
->hw
.isurf
.isac
+ ISAC_MASK
);mb();
119 writeb(0, cs
->hw
.isurf
.isac
+ ISAC_MASK
);mb();
120 writeb(ISAR_IRQMSK
, cs
->hw
.isurf
.isar
+ ISAR_IRQBIT
); mb();
121 spin_unlock_irqrestore(&cs
->lock
, flags
);
126 release_io_isurf(struct IsdnCardState
*cs
)
128 release_region(cs
->hw
.isurf
.reset
, 1);
129 iounmap((unsigned char *)cs
->hw
.isurf
.isar
);
130 release_mem_region(cs
->hw
.isurf
.phymem
, ISURF_IOMEM_SIZE
);
134 reset_isurf(struct IsdnCardState
*cs
, u_char chips
)
136 printk(KERN_INFO
"ISurf: resetting card\n");
138 byteout(cs
->hw
.isurf
.reset
, chips
); /* Reset On */
140 byteout(cs
->hw
.isurf
.reset
, ISURF_ISAR_EA
); /* Reset Off */
145 ISurf_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
151 spin_lock_irqsave(&cs
->lock
, flags
);
152 reset_isurf(cs
, ISURF_RESET
);
153 spin_unlock_irqrestore(&cs
->lock
, flags
);
156 release_io_isurf(cs
);
159 spin_lock_irqsave(&cs
->lock
, flags
);
160 reset_isurf(cs
, ISURF_RESET
);
161 clear_pending_isac_ints(cs
);
162 writeb(0, cs
->hw
.isurf
.isar
+ISAR_IRQBIT
);mb();
165 /* Reenable ISAC IRQ */
166 cs
->writeisac(cs
, ISAC_MASK
, 0);
167 /* RESET Receiver and Transmitter */
168 cs
->writeisac(cs
, ISAC_CMDR
, 0x41);
169 spin_unlock_irqrestore(&cs
->lock
, flags
);
178 isurf_auxcmd(struct IsdnCardState
*cs
, isdn_ctrl
*ic
) {
182 if ((ic
->command
== ISDN_CMD_IOCTL
) && (ic
->arg
== 9)) {
183 ret
= isar_auxcmd(cs
, ic
);
184 spin_lock_irqsave(&cs
->lock
, flags
);
186 reset_isurf(cs
, ISURF_ISAR_EA
| ISURF_ISAC_RESET
|
189 cs
->writeisac(cs
, ISAC_MASK
, 0);
190 cs
->writeisac(cs
, ISAC_CMDR
, 0x41);
192 spin_unlock_irqrestore(&cs
->lock
, flags
);
195 return(isar_auxcmd(cs
, ic
));
199 static struct pnp_card
*pnp_c __initdata
= NULL
;
203 setup_isurf(struct IsdnCard
*card
)
206 struct IsdnCardState
*cs
= card
->cs
;
209 strcpy(tmp
, ISurf_revision
);
210 printk(KERN_INFO
"HiSax: ISurf driver Rev. %s\n", HiSax_getrev(tmp
));
212 if (cs
->typ
!= ISDN_CTYPE_ISURF
)
214 if (card
->para
[1] && card
->para
[2]) {
215 cs
->hw
.isurf
.reset
= card
->para
[1];
216 cs
->hw
.isurf
.phymem
= card
->para
[2];
217 cs
->irq
= card
->para
[0];
220 if (isapnp_present()) {
221 struct pnp_dev
*pnp_d
= NULL
;
225 if ((pnp_c
= pnp_find_card(
226 ISAPNP_VENDOR('S', 'I', 'E'),
227 ISAPNP_FUNCTION(0x0010), pnp_c
))) {
228 if (!(pnp_d
= pnp_find_dev(pnp_c
,
229 ISAPNP_VENDOR('S', 'I', 'E'),
230 ISAPNP_FUNCTION(0x0010), pnp_d
))) {
231 printk(KERN_ERR
"ISurfPnP: PnP error card found, no device\n");
234 pnp_disable_dev(pnp_d
);
235 err
= pnp_activate_dev(pnp_d
);
236 cs
->hw
.isurf
.reset
= pnp_port_start(pnp_d
, 0);
237 cs
->hw
.isurf
.phymem
= pnp_mem_start(pnp_d
, 1);
238 cs
->irq
= pnp_irq(pnp_d
, 0);
239 if (!cs
->irq
|| !cs
->hw
.isurf
.reset
|| !cs
->hw
.isurf
.phymem
) {
240 printk(KERN_ERR
"ISurfPnP:some resources are missing %d/%x/%lx\n",
241 cs
->irq
, cs
->hw
.isurf
.reset
, cs
->hw
.isurf
.phymem
);
242 pnp_disable_dev(pnp_d
);
246 printk(KERN_INFO
"ISurfPnP: no ISAPnP card found\n");
250 printk(KERN_INFO
"ISurfPnP: no ISAPnP bus found\n");
254 printk(KERN_WARNING
"HiSax: %s port/mem not set\n",
255 CardType
[card
->typ
]);
259 if (!request_region(cs
->hw
.isurf
.reset
, 1, "isurf isdn")) {
261 "HiSax: %s config port %x already in use\n",
266 if (!request_region(cs
->hw
.isurf
.phymem
, ISURF_IOMEM_SIZE
, "isurf iomem")) {
268 "HiSax: %s memory region %lx-%lx already in use\n",
271 cs
->hw
.isurf
.phymem
+ ISURF_IOMEM_SIZE
);
272 release_region(cs
->hw
.isurf
.reset
, 1);
276 (unsigned long) ioremap(cs
->hw
.isurf
.phymem
, ISURF_IOMEM_SIZE
);
277 cs
->hw
.isurf
.isac
= cs
->hw
.isurf
.isar
+ ISURF_ISAC_OFFSET
;
279 "ISurf: defined at 0x%x 0x%lx IRQ %d\n",
285 cs
->cardmsg
= &ISurf_card_msg
;
286 cs
->irq_func
= &isurf_interrupt
;
287 cs
->auxcmd
= &isurf_auxcmd
;
288 cs
->readisac
= &ReadISAC
;
289 cs
->writeisac
= &WriteISAC
;
290 cs
->readisacfifo
= &ReadISACfifo
;
291 cs
->writeisacfifo
= &WriteISACfifo
;
292 cs
->bcs
[0].hw
.isar
.reg
= &cs
->hw
.isurf
.isar_r
;
293 cs
->bcs
[1].hw
.isar
.reg
= &cs
->hw
.isurf
.isar_r
;
294 test_and_set_bit(HW_ISAR
, &cs
->HW_Flags
);
295 ISACVersion(cs
, "ISurf:");
296 cs
->BC_Read_Reg
= &ReadISAR
;
297 cs
->BC_Write_Reg
= &WriteISAR
;
298 cs
->BC_Send_Data
= &isar_fill_fifo
;
299 ver
= ISARVersion(cs
, "ISurf:");
302 "ISurf: wrong ISAR version (ret = %d)\n", ver
);
303 release_io_isurf(cs
);