1 /* $Id: bkm_a8.c,v 1.22.2.4 2004/01/15 14:02:34 keil Exp $
3 * low level stuff for Scitel Quadro (4*S0, passive)
5 * Author Roland Klabunde
6 * Copyright by Roland Klabunde <R.Klabunde@Berkom.de>
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
14 #include <linux/init.h>
20 #include <linux/pci.h>
23 #define ATTEMPT_PCI_REMAPPING /* Required for PLX rev 1 */
25 extern const char *CardType
[];
27 static const char sct_quadro_revision
[] = "$Revision: 1.22.2.4 $";
29 static const char *sct_quadro_subtypes
[] =
39 #define wordout(addr,val) outw(val,addr)
40 #define wordin(addr) inw(addr)
43 readreg(unsigned int ale
, unsigned int adr
, u_char off
)
47 ret
= wordin(adr
) & 0xFF;
52 readfifo(unsigned int ale
, unsigned int adr
, u_char off
, u_char
* data
, int size
)
56 for (i
= 0; i
< size
; i
++)
57 data
[i
] = wordin(adr
) & 0xFF;
62 writereg(unsigned int ale
, unsigned int adr
, u_char off
, u_char data
)
69 writefifo(unsigned int ale
, unsigned int adr
, u_char off
, u_char
* data
, int size
)
73 for (i
= 0; i
< size
; i
++)
74 wordout(adr
, data
[i
]);
77 /* Interface functions */
80 ReadISAC(struct IsdnCardState
*cs
, u_char offset
)
82 return (readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, offset
| 0x80));
86 WriteISAC(struct IsdnCardState
*cs
, u_char offset
, u_char value
)
88 writereg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, offset
| 0x80, value
);
92 ReadISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
94 readfifo(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, 0x80, data
, size
);
98 WriteISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
100 writefifo(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, 0x80, data
, size
);
105 ReadHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
)
107 return (readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, offset
+ (hscx
? 0x40 : 0)));
111 WriteHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
, u_char value
)
113 writereg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, offset
+ (hscx
? 0x40 : 0), value
);
116 /* Set the specific ipac to active */
118 set_ipac_active(struct IsdnCardState
*cs
, u_int active
)
121 writereg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, IPAC_MASK
,
122 active
? 0xc0 : 0xff);
126 * fast interrupt HSCX stuff goes here
129 #define READHSCX(cs, nr, reg) readreg(cs->hw.ax.base, \
130 cs->hw.ax.data_adr, reg + (nr ? 0x40 : 0))
131 #define WRITEHSCX(cs, nr, reg, data) writereg(cs->hw.ax.base, \
132 cs->hw.ax.data_adr, reg + (nr ? 0x40 : 0), data)
133 #define READHSCXFIFO(cs, nr, ptr, cnt) readfifo(cs->hw.ax.base, \
134 cs->hw.ax.data_adr, (nr ? 0x40 : 0), ptr, cnt)
135 #define WRITEHSCXFIFO(cs, nr, ptr, cnt) writefifo(cs->hw.ax.base, \
136 cs->hw.ax.data_adr, (nr ? 0x40 : 0), ptr, cnt)
138 #include "hscx_irq.c"
141 bkm_interrupt_ipac(int intno
, void *dev_id
)
143 struct IsdnCardState
*cs
= dev_id
;
144 u_char ista
, val
, icnt
= 5;
147 spin_lock_irqsave(&cs
->lock
, flags
);
148 ista
= readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, IPAC_ISTA
);
149 if (!(ista
& 0x3f)) { /* not this IPAC */
150 spin_unlock_irqrestore(&cs
->lock
, flags
);
154 if (cs
->debug
& L1_DEB_IPAC
)
155 debugl1(cs
, "IPAC ISTA %02X", ista
);
157 val
= readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, HSCX_ISTA
+ 0x40);
165 hscx_int_main(cs
, val
);
169 val
= 0xfe & readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, ISAC_ISTA
| 0x80);
171 isac_interrupt(cs
, val
);
176 isac_interrupt(cs
, val
);
178 ista
= readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, IPAC_ISTA
);
179 if ((ista
& 0x3f) && icnt
) {
184 printk(KERN_WARNING
"HiSax: %s (%s) IRQ LOOP\n",
186 sct_quadro_subtypes
[cs
->subtyp
]);
187 writereg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, IPAC_MASK
, 0xFF);
188 writereg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, IPAC_MASK
, 0xC0);
189 spin_unlock_irqrestore(&cs
->lock
, flags
);
194 release_io_sct_quadro(struct IsdnCardState
*cs
)
196 release_region(cs
->hw
.ax
.base
& 0xffffffc0, 128);
197 if (cs
->subtyp
== SCT_1
)
198 release_region(cs
->hw
.ax
.plx_adr
, 64);
202 enable_bkm_int(struct IsdnCardState
*cs
, unsigned bEnable
)
204 if (cs
->typ
== ISDN_CTYPE_SCT_QUADRO
) {
206 wordout(cs
->hw
.ax
.plx_adr
+ 0x4C, (wordin(cs
->hw
.ax
.plx_adr
+ 0x4C) | 0x41));
208 wordout(cs
->hw
.ax
.plx_adr
+ 0x4C, (wordin(cs
->hw
.ax
.plx_adr
+ 0x4C) & ~0x41));
213 reset_bkm(struct IsdnCardState
*cs
)
215 if (cs
->subtyp
== SCT_1
) {
216 wordout(cs
->hw
.ax
.plx_adr
+ 0x50, (wordin(cs
->hw
.ax
.plx_adr
+ 0x50) & ~4));
218 /* Remove the soft reset */
219 wordout(cs
->hw
.ax
.plx_adr
+ 0x50, (wordin(cs
->hw
.ax
.plx_adr
+ 0x50) | 4));
225 BKM_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
231 spin_lock_irqsave(&cs
->lock
, flags
);
233 set_ipac_active(cs
, 0);
234 enable_bkm_int(cs
, 0);
236 spin_unlock_irqrestore(&cs
->lock
, flags
);
240 spin_lock_irqsave(&cs
->lock
, flags
);
241 set_ipac_active(cs
, 0);
242 enable_bkm_int(cs
, 0);
243 spin_unlock_irqrestore(&cs
->lock
, flags
);
244 release_io_sct_quadro(cs
);
247 spin_lock_irqsave(&cs
->lock
, flags
);
248 cs
->debug
|= L1_DEB_IPAC
;
249 set_ipac_active(cs
, 1);
252 enable_bkm_int(cs
, 1);
253 spin_unlock_irqrestore(&cs
->lock
, flags
);
262 sct_alloc_io(u_int adr
, u_int len
)
264 if (!request_region(adr
, len
, "scitel")) {
266 "HiSax: Scitel port %#x-%#x already in use\n",
273 static struct pci_dev
*dev_a8 __devinitdata
= NULL
;
274 static u16 sub_vendor_id __devinitdata
= 0;
275 static u16 sub_sys_id __devinitdata
= 0;
276 static u_char pci_bus __devinitdata
= 0;
277 static u_char pci_device_fn __devinitdata
= 0;
278 static u_char pci_irq __devinitdata
= 0;
281 setup_sct_quadro(struct IsdnCard
*card
)
283 struct IsdnCardState
*cs
= card
->cs
;
286 u_int pci_ioaddr1
, pci_ioaddr2
, pci_ioaddr3
, pci_ioaddr4
, pci_ioaddr5
;
288 strcpy(tmp
, sct_quadro_revision
);
289 printk(KERN_INFO
"HiSax: T-Berkom driver Rev. %s\n", HiSax_getrev(tmp
));
290 if (cs
->typ
== ISDN_CTYPE_SCT_QUADRO
) {
291 cs
->subtyp
= SCT_1
; /* Preset */
295 /* Identify subtype by para[0] */
296 if (card
->para
[0] >= SCT_1
&& card
->para
[0] <= SCT_4
)
297 cs
->subtyp
= card
->para
[0];
299 printk(KERN_WARNING
"HiSax: %s: Invalid subcontroller in configuration, default to 1\n",
300 CardType
[card
->typ
]);
303 if ((cs
->subtyp
!= SCT_1
) && ((sub_sys_id
!= PCI_DEVICE_ID_BERKOM_SCITEL_QUADRO
) ||
304 (sub_vendor_id
!= PCI_VENDOR_ID_BERKOM
)))
306 if (cs
->subtyp
== SCT_1
) {
307 while ((dev_a8
= pci_find_device(PCI_VENDOR_ID_PLX
,
308 PCI_DEVICE_ID_PLX_9050
, dev_a8
))) {
310 sub_vendor_id
= dev_a8
->subsystem_vendor
;
311 sub_sys_id
= dev_a8
->subsystem_device
;
312 if ((sub_sys_id
== PCI_DEVICE_ID_BERKOM_SCITEL_QUADRO
) &&
313 (sub_vendor_id
== PCI_VENDOR_ID_BERKOM
)) {
314 if (pci_enable_device(dev_a8
))
316 pci_ioaddr1
= pci_resource_start(dev_a8
, 1);
317 pci_irq
= dev_a8
->irq
;
318 pci_bus
= dev_a8
->bus
->number
;
319 pci_device_fn
= dev_a8
->devfn
;
325 printk(KERN_WARNING
"HiSax: %s (%s): Card not found\n",
327 sct_quadro_subtypes
[cs
->subtyp
]);
330 #ifdef ATTEMPT_PCI_REMAPPING
331 /* HACK: PLX revision 1 bug: PLX address bit 7 must not be set */
332 if ((pci_ioaddr1
& 0x80) && (dev_a8
->revision
== 1)) {
333 printk(KERN_WARNING
"HiSax: %s (%s): PLX rev 1, remapping required!\n",
335 sct_quadro_subtypes
[cs
->subtyp
]);
336 /* Restart PCI negotiation */
337 pci_write_config_dword(dev_a8
, PCI_BASE_ADDRESS_1
, (u_int
) - 1);
338 /* Move up by 0x80 byte */
340 pci_ioaddr1
&= PCI_BASE_ADDRESS_IO_MASK
;
341 pci_write_config_dword(dev_a8
, PCI_BASE_ADDRESS_1
, pci_ioaddr1
);
342 dev_a8
->resource
[ 1].start
= pci_ioaddr1
;
344 #endif /* End HACK */
346 if (!pci_irq
) { /* IRQ range check ?? */
347 printk(KERN_WARNING
"HiSax: %s (%s): No IRQ\n",
349 sct_quadro_subtypes
[cs
->subtyp
]);
352 pci_read_config_dword(dev_a8
, PCI_BASE_ADDRESS_1
, &pci_ioaddr1
);
353 pci_read_config_dword(dev_a8
, PCI_BASE_ADDRESS_2
, &pci_ioaddr2
);
354 pci_read_config_dword(dev_a8
, PCI_BASE_ADDRESS_3
, &pci_ioaddr3
);
355 pci_read_config_dword(dev_a8
, PCI_BASE_ADDRESS_4
, &pci_ioaddr4
);
356 pci_read_config_dword(dev_a8
, PCI_BASE_ADDRESS_5
, &pci_ioaddr5
);
357 if (!pci_ioaddr1
|| !pci_ioaddr2
|| !pci_ioaddr3
|| !pci_ioaddr4
|| !pci_ioaddr5
) {
358 printk(KERN_WARNING
"HiSax: %s (%s): No IO base address(es)\n",
360 sct_quadro_subtypes
[cs
->subtyp
]);
363 pci_ioaddr1
&= PCI_BASE_ADDRESS_IO_MASK
;
364 pci_ioaddr2
&= PCI_BASE_ADDRESS_IO_MASK
;
365 pci_ioaddr3
&= PCI_BASE_ADDRESS_IO_MASK
;
366 pci_ioaddr4
&= PCI_BASE_ADDRESS_IO_MASK
;
367 pci_ioaddr5
&= PCI_BASE_ADDRESS_IO_MASK
;
370 cs
->irq_flags
|= IRQF_SHARED
;
371 /* pci_ioaddr1 is unique to all subdevices */
372 /* pci_ioaddr2 is for the fourth subdevice only */
373 /* pci_ioaddr3 is for the third subdevice only */
374 /* pci_ioaddr4 is for the second subdevice only */
375 /* pci_ioaddr5 is for the first subdevice only */
376 cs
->hw
.ax
.plx_adr
= pci_ioaddr1
;
377 /* Enter all ipac_base addresses */
380 cs
->hw
.ax
.base
= pci_ioaddr5
+ 0x00;
381 if (sct_alloc_io(pci_ioaddr1
, 128))
383 if (sct_alloc_io(pci_ioaddr5
, 64))
385 /* disable all IPAC */
386 writereg(pci_ioaddr5
, pci_ioaddr5
+ 4,
388 writereg(pci_ioaddr4
+ 0x08, pci_ioaddr4
+ 0x0c,
390 writereg(pci_ioaddr3
+ 0x10, pci_ioaddr3
+ 0x14,
392 writereg(pci_ioaddr2
+ 0x20, pci_ioaddr2
+ 0x24,
396 cs
->hw
.ax
.base
= pci_ioaddr4
+ 0x08;
397 if (sct_alloc_io(pci_ioaddr4
, 64))
401 cs
->hw
.ax
.base
= pci_ioaddr3
+ 0x10;
402 if (sct_alloc_io(pci_ioaddr3
, 64))
406 cs
->hw
.ax
.base
= pci_ioaddr2
+ 0x20;
407 if (sct_alloc_io(pci_ioaddr2
, 64))
411 /* For isac and hscx data path */
412 cs
->hw
.ax
.data_adr
= cs
->hw
.ax
.base
+ 4;
414 printk(KERN_INFO
"HiSax: %s (%s) configured at 0x%.4lX, 0x%.4lX, 0x%.4lX and IRQ %d\n",
416 sct_quadro_subtypes
[cs
->subtyp
],
422 test_and_set_bit(HW_IPAC
, &cs
->HW_Flags
);
424 cs
->readisac
= &ReadISAC
;
425 cs
->writeisac
= &WriteISAC
;
426 cs
->readisacfifo
= &ReadISACfifo
;
427 cs
->writeisacfifo
= &WriteISACfifo
;
429 cs
->BC_Read_Reg
= &ReadHSCX
;
430 cs
->BC_Write_Reg
= &WriteHSCX
;
431 cs
->BC_Send_Data
= &hscx_fill_fifo
;
432 cs
->cardmsg
= &BKM_card_msg
;
433 cs
->irq_func
= &bkm_interrupt_ipac
;
435 printk(KERN_INFO
"HiSax: %s (%s): IPAC Version %d\n",
437 sct_quadro_subtypes
[cs
->subtyp
],
438 readreg(cs
->hw
.ax
.base
, cs
->hw
.ax
.data_adr
, IPAC_ID
));