1 /* $Id: gazel.c,v 2.19.2.4 2004/01/14 16:04:48 keil Exp $
3 * low level stuff for Gazel isdn cards
6 * based on source code from Karsten Keil
7 * Copyright by BeWan Systems
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
14 #include <linux/config.h>
15 #include <linux/init.h>
21 #include <linux/pci.h>
23 extern const char *CardType[];
24 static const char *gazel_revision = "$Revision: 2.19.2.4 $";
31 #define PLX_CNTRL 0x50 /* registre de controle PLX */
32 #define RESET_GAZEL 0x4
33 #define RESET_9050 0x40000000
34 #define PLX_INCSR 0x4C /* registre d'IT du 9050 */
35 #define INT_ISAC_EN 0x8 /* 1 = enable IT isac */
36 #define INT_ISAC 0x20 /* 1 = IT isac en cours */
37 #define INT_HSCX_EN 0x1 /* 1 = enable IT hscx */
38 #define INT_HSCX 0x4 /* 1 = IT hscx en cours */
39 #define INT_PCI_EN 0x40 /* 1 = enable IT PCI */
40 #define INT_IPAC_EN 0x3 /* enable IT ipac */
43 #define byteout(addr,val) outb(val,addr)
44 #define bytein(addr) inb(addr)
47 readreg(unsigned int adr, u_short off)
49 return bytein(adr + off);
53 writereg(unsigned int adr, u_short off, u_char data)
55 byteout(adr + off, data);
60 read_fifo(unsigned int adr, u_char * data, int size)
62 insb(adr, data, size);
66 write_fifo(unsigned int adr, u_char * data, int size)
68 outsb(adr, data, size);
72 readreg_ipac(unsigned int adr, u_short off)
77 ret = bytein(adr + 4);
82 writereg_ipac(unsigned int adr, u_short off, u_char data)
85 byteout(adr + 4, data);
90 read_fifo_ipac(unsigned int adr, u_short off, u_char * data, int size)
93 insb(adr + 4, data, size);
97 write_fifo_ipac(unsigned int adr, u_short off, u_char * data, int size)
100 outsb(adr + 4, data, size);
103 /* Interface functions */
106 ReadISAC(struct IsdnCardState *cs, u_char offset)
108 u_short off2 = offset;
110 switch (cs->subtyp) {
112 off2 = ((off2 << 8 & 0xf000) | (off2 & 0xf));
114 return (readreg(cs->hw.gazel.isac, off2));
117 return (readreg_ipac(cs->hw.gazel.ipac, 0x80 + off2));
123 WriteISAC(struct IsdnCardState *cs, u_char offset, u_char value)
125 u_short off2 = offset;
127 switch (cs->subtyp) {
129 off2 = ((off2 << 8 & 0xf000) | (off2 & 0xf));
131 writereg(cs->hw.gazel.isac, off2, value);
135 writereg_ipac(cs->hw.gazel.ipac, 0x80 + off2, value);
141 ReadISACfifo(struct IsdnCardState *cs, u_char * data, int size)
143 switch (cs->subtyp) {
146 read_fifo(cs->hw.gazel.isacfifo, data, size);
150 read_fifo_ipac(cs->hw.gazel.ipac, 0x80, data, size);
156 WriteISACfifo(struct IsdnCardState *cs, u_char * data, int size)
158 switch (cs->subtyp) {
161 write_fifo(cs->hw.gazel.isacfifo, data, size);
165 write_fifo_ipac(cs->hw.gazel.ipac, 0x80, data, size);
171 ReadHSCXfifo(struct IsdnCardState *cs, int hscx, u_char * data, int size)
173 switch (cs->subtyp) {
176 read_fifo(cs->hw.gazel.hscxfifo[hscx], data, size);
180 read_fifo_ipac(cs->hw.gazel.ipac, hscx * 0x40, data, size);
186 WriteHSCXfifo(struct IsdnCardState *cs, int hscx, u_char * data, int size)
188 switch (cs->subtyp) {
191 write_fifo(cs->hw.gazel.hscxfifo[hscx], data, size);
195 write_fifo_ipac(cs->hw.gazel.ipac, hscx * 0x40, data, size);
201 ReadHSCX(struct IsdnCardState *cs, int hscx, u_char offset)
203 u_short off2 = offset;
205 switch (cs->subtyp) {
207 off2 = ((off2 << 8 & 0xf000) | (off2 & 0xf));
209 return (readreg(cs->hw.gazel.hscx[hscx], off2));
212 return (readreg_ipac(cs->hw.gazel.ipac, hscx * 0x40 + off2));
218 WriteHSCX(struct IsdnCardState *cs, int hscx, u_char offset, u_char value)
220 u_short off2 = offset;
222 switch (cs->subtyp) {
224 off2 = ((off2 << 8 & 0xf000) | (off2 & 0xf));
226 writereg(cs->hw.gazel.hscx[hscx], off2, value);
230 writereg_ipac(cs->hw.gazel.ipac, hscx * 0x40 + off2, value);
236 * fast interrupt HSCX stuff goes here
239 #define READHSCX(cs, nr, reg) ReadHSCX(cs, nr, reg)
240 #define WRITEHSCX(cs, nr, reg, data) WriteHSCX(cs, nr, reg, data)
241 #define READHSCXFIFO(cs, nr, ptr, cnt) ReadHSCXfifo(cs, nr, ptr, cnt)
242 #define WRITEHSCXFIFO(cs, nr, ptr, cnt) WriteHSCXfifo(cs, nr, ptr, cnt)
244 #include "hscx_irq.c"
247 gazel_interrupt(int intno, void *dev_id, struct pt_regs *regs)
250 struct IsdnCardState *cs = dev_id;
251 u_char valisac, valhscx;
255 spin_lock_irqsave(&cs->lock, flags);
257 valhscx = ReadHSCX(cs, 1, HSCX_ISTA);
259 hscx_int_main(cs, valhscx);
260 valisac = ReadISAC(cs, ISAC_ISTA);
262 isac_interrupt(cs, valisac);
264 } while ((valhscx || valisac) && (count < MAXCOUNT));
266 WriteHSCX(cs, 0, HSCX_MASK, 0xFF);
267 WriteHSCX(cs, 1, HSCX_MASK, 0xFF);
268 WriteISAC(cs, ISAC_MASK, 0xFF);
269 WriteISAC(cs, ISAC_MASK, 0x0);
270 WriteHSCX(cs, 0, HSCX_MASK, 0x0);
271 WriteHSCX(cs, 1, HSCX_MASK, 0x0);
272 spin_unlock_irqrestore(&cs->lock, flags);
278 gazel_interrupt_ipac(int intno, void *dev_id, struct pt_regs *regs)
280 struct IsdnCardState *cs = dev_id;
285 spin_lock_irqsave(&cs->lock, flags);
286 ista = ReadISAC(cs, IPAC_ISTA - 0x80);
289 val = ReadHSCX(cs, 1, HSCX_ISTA);
297 hscx_int_main(cs, val);
301 val = 0xfe & ReadISAC(cs, ISAC_ISTA);
303 isac_interrupt(cs, val);
308 isac_interrupt(cs, val);
310 ista = ReadISAC(cs, IPAC_ISTA - 0x80);
313 while ((ista & 0x3f) && (count < MAXCOUNT));
315 WriteISAC(cs, IPAC_MASK - 0x80, 0xFF);
316 WriteISAC(cs, IPAC_MASK - 0x80, 0xC0);
317 spin_unlock_irqrestore(&cs->lock, flags);
322 release_io_gazel(struct IsdnCardState *cs)
326 switch (cs->subtyp) {
328 for (i = 0x0000; i < 0xC000; i += 0x1000)
329 release_region(i + cs->hw.gazel.hscx[0], 16);
330 release_region(0xC000 + cs->hw.gazel.hscx[0], 1);
334 release_region(cs->hw.gazel.hscx[0], 0x100);
335 release_region(cs->hw.gazel.cfg_reg, 0x80);
339 release_region(cs->hw.gazel.ipac, 0x8);
340 release_region(cs->hw.gazel.cfg_reg, 0x80);
344 release_region(cs->hw.gazel.ipac, 8);
350 reset_gazel(struct IsdnCardState *cs)
352 unsigned long plxcntrl, addr = cs->hw.gazel.cfg_reg;
354 switch (cs->subtyp) {
356 writereg(addr, 0, 0);
358 writereg(addr, 0, 1);
362 plxcntrl = inl(addr + PLX_CNTRL);
363 plxcntrl |= (RESET_9050 + RESET_GAZEL);
364 outl(plxcntrl, addr + PLX_CNTRL);
365 plxcntrl &= ~(RESET_9050 + RESET_GAZEL);
367 outl(plxcntrl, addr + PLX_CNTRL);
369 outb(INT_ISAC_EN + INT_HSCX_EN + INT_PCI_EN, addr + PLX_INCSR);
372 plxcntrl = inl(addr + PLX_CNTRL);
373 plxcntrl |= (RESET_9050 + RESET_GAZEL);
374 outl(plxcntrl, addr + PLX_CNTRL);
375 plxcntrl &= ~(RESET_9050 + RESET_GAZEL);
376 WriteISAC(cs, IPAC_POTA2 - 0x80, 0x20);
378 outl(plxcntrl, addr + PLX_CNTRL);
380 WriteISAC(cs, IPAC_POTA2 - 0x80, 0x00);
381 WriteISAC(cs, IPAC_ACFG - 0x80, 0xff);
382 WriteISAC(cs, IPAC_AOE - 0x80, 0x0);
383 WriteISAC(cs, IPAC_MASK - 0x80, 0xff);
384 WriteISAC(cs, IPAC_CONF - 0x80, 0x1);
385 outb(INT_IPAC_EN + INT_PCI_EN, addr + PLX_INCSR);
386 WriteISAC(cs, IPAC_MASK - 0x80, 0xc0);
389 WriteISAC(cs, IPAC_POTA2 - 0x80, 0x20);
391 WriteISAC(cs, IPAC_POTA2 - 0x80, 0x00);
392 WriteISAC(cs, IPAC_ACFG - 0x80, 0xff);
393 WriteISAC(cs, IPAC_AOE - 0x80, 0x0);
394 WriteISAC(cs, IPAC_MASK - 0x80, 0xff);
395 WriteISAC(cs, IPAC_CONF - 0x80, 0x1);
396 WriteISAC(cs, IPAC_MASK - 0x80, 0xc0);
403 Gazel_card_msg(struct IsdnCardState *cs, int mt, void *arg)
409 spin_lock_irqsave(&cs->lock, flags);
411 spin_unlock_irqrestore(&cs->lock, flags);
414 release_io_gazel(cs);
417 spin_lock_irqsave(&cs->lock, flags);
419 if ((cs->subtyp==R647)||(cs->subtyp==R685)) {
421 for (i=0;i<(2+MAX_WAITING_CALLS);i++) {
422 cs->bcs[i].hw.hscx.tsaxr0 = 0x1f;
423 cs->bcs[i].hw.hscx.tsaxr1 = 0x23;
426 spin_unlock_irqrestore(&cs->lock, flags);
435 reserve_regions(struct IsdnCard *card, struct IsdnCardState *cs)
437 unsigned int i, j, base = 0, adr = 0, len = 0;
439 switch (cs->subtyp) {
441 base = cs->hw.gazel.hscx[0];
442 if (!request_region(adr = (0xC000 + base), len = 1, "gazel"))
444 for (i = 0x0000; i < 0xC000; i += 0x1000) {
445 if (!request_region(adr = (i + base), len = 16, "gazel"))
449 for (j = 0; j < i; j+= 0x1000)
450 release_region(j + base, 16);
451 release_region(0xC000 + base, 1);
457 if (!request_region(adr = cs->hw.gazel.hscx[0], len = 0x100, "gazel"))
459 if (!request_region(adr = cs->hw.gazel.cfg_reg, len = 0x80, "gazel")) {
460 release_region(cs->hw.gazel.hscx[0],0x100);
466 if (!request_region(adr = cs->hw.gazel.ipac, len = 0x8, "gazel"))
468 if (!request_region(adr = cs->hw.gazel.cfg_reg, len = 0x80, "gazel")) {
469 release_region(cs->hw.gazel.ipac, 8);
475 if (!request_region(adr = cs->hw.gazel.ipac, len = 0x8, "gazel"))
483 printk(KERN_WARNING "Gazel: %s io ports 0x%x-0x%x already in use\n",
484 CardType[cs->typ], adr, adr + len);
489 setup_gazelisa(struct IsdnCard *card, struct IsdnCardState *cs)
491 printk(KERN_INFO "Gazel: ISA PnP card automatic recognition\n");
492 // we got an irq parameter, assume it is an ISA card
493 // R742 decodes address even in not started...
494 // R647 returns FF if not present or not started
495 // eventually needs improvment
496 if (readreg_ipac(card->para[1], IPAC_ID) == 1)
502 cs->hw.gazel.cfg_reg = card->para[1] + 0xC000;
503 cs->hw.gazel.ipac = card->para[1];
504 cs->hw.gazel.isac = card->para[1] + 0x8000;
505 cs->hw.gazel.hscx[0] = card->para[1];
506 cs->hw.gazel.hscx[1] = card->para[1] + 0x4000;
507 cs->irq = card->para[0];
508 cs->hw.gazel.isacfifo = cs->hw.gazel.isac;
509 cs->hw.gazel.hscxfifo[0] = cs->hw.gazel.hscx[0];
510 cs->hw.gazel.hscxfifo[1] = cs->hw.gazel.hscx[1];
512 switch (cs->subtyp) {
514 printk(KERN_INFO "Gazel: Card ISA R647/R648 found\n");
515 cs->dc.isac.adf2 = 0x87;
517 "Gazel: config irq:%d isac:0x%X cfg:0x%X\n",
518 cs->irq, cs->hw.gazel.isac, cs->hw.gazel.cfg_reg);
520 "Gazel: hscx A:0x%X hscx B:0x%X\n",
521 cs->hw.gazel.hscx[0], cs->hw.gazel.hscx[1]);
525 printk(KERN_INFO "Gazel: Card ISA R742 found\n");
526 test_and_set_bit(HW_IPAC, &cs->HW_Flags);
528 "Gazel: config irq:%d ipac:0x%X\n",
529 cs->irq, cs->hw.gazel.ipac);
536 static struct pci_dev *dev_tel __initdata = NULL;
539 setup_gazelpci(struct IsdnCardState *cs)
541 u_int pci_ioaddr0 = 0, pci_ioaddr1 = 0;
542 u_char pci_irq = 0, found;
543 u_int nbseek, seekcard;
545 printk(KERN_WARNING "Gazel: PCI card automatic recognition\n");
548 seekcard = PCI_DEVICE_ID_PLX_R685;
549 for (nbseek = 0; nbseek < 3; nbseek++) {
550 if ((dev_tel = pci_find_device(PCI_VENDOR_ID_PLX, seekcard, dev_tel))) {
551 if (pci_enable_device(dev_tel))
553 pci_irq = dev_tel->irq;
554 pci_ioaddr0 = pci_resource_start(dev_tel, 1);
555 pci_ioaddr1 = pci_resource_start(dev_tel, 2);
562 case PCI_DEVICE_ID_PLX_R685:
563 seekcard = PCI_DEVICE_ID_PLX_R753;
565 case PCI_DEVICE_ID_PLX_R753:
566 seekcard = PCI_DEVICE_ID_PLX_DJINN_ITOO;
572 printk(KERN_WARNING "Gazel: No PCI card found\n");
576 printk(KERN_WARNING "Gazel: No IRQ for PCI card found\n");
579 cs->hw.gazel.pciaddr[0] = pci_ioaddr0;
580 cs->hw.gazel.pciaddr[1] = pci_ioaddr1;
582 pci_ioaddr1 &= 0xfffe;
583 cs->hw.gazel.cfg_reg = pci_ioaddr0 & 0xfffe;
584 cs->hw.gazel.ipac = pci_ioaddr1;
585 cs->hw.gazel.isac = pci_ioaddr1 + 0x80;
586 cs->hw.gazel.hscx[0] = pci_ioaddr1;
587 cs->hw.gazel.hscx[1] = pci_ioaddr1 + 0x40;
588 cs->hw.gazel.isacfifo = cs->hw.gazel.isac;
589 cs->hw.gazel.hscxfifo[0] = cs->hw.gazel.hscx[0];
590 cs->hw.gazel.hscxfifo[1] = cs->hw.gazel.hscx[1];
592 cs->irq_flags |= SA_SHIRQ;
595 case PCI_DEVICE_ID_PLX_R685:
596 printk(KERN_INFO "Gazel: Card PCI R685 found\n");
598 cs->dc.isac.adf2 = 0x87;
600 "Gazel: config irq:%d isac:0x%X cfg:0x%X\n",
601 cs->irq, cs->hw.gazel.isac, cs->hw.gazel.cfg_reg);
603 "Gazel: hscx A:0x%X hscx B:0x%X\n",
604 cs->hw.gazel.hscx[0], cs->hw.gazel.hscx[1]);
606 case PCI_DEVICE_ID_PLX_R753:
607 case PCI_DEVICE_ID_PLX_DJINN_ITOO:
608 printk(KERN_INFO "Gazel: Card PCI R753 found\n");
610 test_and_set_bit(HW_IPAC, &cs->HW_Flags);
612 "Gazel: config irq:%d ipac:0x%X cfg:0x%X\n",
613 cs->irq, cs->hw.gazel.ipac, cs->hw.gazel.cfg_reg);
621 setup_gazel(struct IsdnCard *card)
623 struct IsdnCardState *cs = card->cs;
627 strcpy(tmp, gazel_revision);
628 printk(KERN_INFO "Gazel: Driver Revision %s\n", HiSax_getrev(tmp));
630 if (cs->typ != ISDN_CTYPE_GAZEL)
634 if (setup_gazelisa(card, cs))
639 if (setup_gazelpci(cs))
642 printk(KERN_WARNING "Gazel: Card PCI requested and NO_PCI_BIOS, unable to config\n");
644 #endif /* CONFIG_PCI */
647 if (reserve_regions(card, cs)) {
650 if (reset_gazel(cs)) {
651 printk(KERN_WARNING "Gazel: wrong IRQ\n");
652 release_io_gazel(cs);
655 cs->readisac = &ReadISAC;
656 cs->writeisac = &WriteISAC;
657 cs->readisacfifo = &ReadISACfifo;
658 cs->writeisacfifo = &WriteISACfifo;
659 cs->BC_Read_Reg = &ReadHSCX;
660 cs->BC_Write_Reg = &WriteHSCX;
661 cs->BC_Send_Data = &hscx_fill_fifo;
662 cs->cardmsg = &Gazel_card_msg;
664 switch (cs->subtyp) {
667 cs->irq_func = &gazel_interrupt;
668 ISACVersion(cs, "Gazel:");
669 if (HscxVersion(cs, "Gazel:")) {
671 "Gazel: wrong HSCX versions check IO address\n");
672 release_io_gazel(cs);
678 cs->irq_func = &gazel_interrupt_ipac;
679 val = ReadISAC(cs, IPAC_ID - 0x80);
680 printk(KERN_INFO "Gazel: IPAC version %x\n", val);