blob: 32b4bbd18eb9237208eb13f4c95e567bd237b750 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: nj_s.c,v 2.13.2.4 2004/01/16 01:53:48 keil Exp $
2 *
3 * This software may be used and distributed according to the terms
4 * of the GNU General Public License, incorporated herein by reference.
5 *
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include "hisax.h"
10#include "isac.h"
11#include "isdnl1.h"
12#include <linux/pci.h>
13#include <linux/interrupt.h>
14#include <linux/ppp_defs.h>
15#include "netjet.h"
16
Adrian Bunk672c3fd2005-06-25 14:59:18 -070017static const char *NETjet_S_revision = "$Revision: 2.13.2.4 $";
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19static u_char dummyrr(struct IsdnCardState *cs, int chan, u_char off)
20{
Joe Perches475be4d2012-02-19 19:52:38 -080021 return (5);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022}
23
24static void dummywr(struct IsdnCardState *cs, int chan, u_char off, u_char value)
25{
26}
27
28static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +010029netjet_s_interrupt(int intno, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 struct IsdnCardState *cs = dev_id;
32 u_char val, s1val, s0val;
33 u_long flags;
34
35 spin_lock_irqsave(&cs->lock, flags);
36 s1val = bytein(cs->hw.njet.base + NETJET_IRQSTAT1);
37 if (!(s1val & NETJET_ISACIRQ)) {
38 val = NETjet_ReadIC(cs, ISAC_ISTA);
39 if (cs->debug & L1_DEB_ISAC)
40 debugl1(cs, "tiger: i1 %x %x", s1val, val);
41 if (val) {
42 isac_interrupt(cs, val);
43 NETjet_WriteIC(cs, ISAC_MASK, 0xFF);
44 NETjet_WriteIC(cs, ISAC_MASK, 0x0);
45 }
46 s1val = 1;
47 } else
48 s1val = 0;
Joe Perches475be4d2012-02-19 19:52:38 -080049 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * read/write stat0 is better, because lower IRQ rate
51 * Note the IRQ is on for 125 us if a condition match
52 * thats long on modern CPU and so the IRQ is reentered
53 * all the time.
54 */
55 s0val = bytein(cs->hw.njet.base + NETJET_IRQSTAT0);
Joe Perches475be4d2012-02-19 19:52:38 -080056 if ((s0val | s1val) == 0) { // shared IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 spin_unlock_irqrestore(&cs->lock, flags);
58 return IRQ_NONE;
Joe Perches475be4d2012-02-19 19:52:38 -080059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (s0val)
61 byteout(cs->hw.njet.base + NETJET_IRQSTAT0, s0val);
62 /* start new code 13/07/00 GE */
63 /* set bits in sval to indicate which page is free */
64 if (inl(cs->hw.njet.base + NETJET_DMA_WRITE_ADR) <
Joe Perches475be4d2012-02-19 19:52:38 -080065 inl(cs->hw.njet.base + NETJET_DMA_WRITE_IRQ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /* the 2nd write page is free */
67 s0val = 0x08;
68 else /* the 1st write page is free */
Joe Perches475be4d2012-02-19 19:52:38 -080069 s0val = 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (inl(cs->hw.njet.base + NETJET_DMA_READ_ADR) <
Joe Perches475be4d2012-02-19 19:52:38 -080071 inl(cs->hw.njet.base + NETJET_DMA_READ_IRQ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /* the 2nd read page is free */
73 s0val |= 0x02;
74 else /* the 1st read page is free */
Joe Perches475be4d2012-02-19 19:52:38 -080075 s0val |= 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (s0val != cs->hw.njet.last_is0) /* we have a DMA interrupt */
77 {
78 if (test_and_set_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags)) {
79 printk(KERN_WARNING "nj LOCK_ATOMIC s0val %x->%x\n",
Joe Perches475be4d2012-02-19 19:52:38 -080080 cs->hw.njet.last_is0, s0val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 spin_unlock_irqrestore(&cs->lock, flags);
82 return IRQ_HANDLED;
83 }
84 cs->hw.njet.irqstat0 = s0val;
Joe Perches475be4d2012-02-19 19:52:38 -080085 if ((cs->hw.njet.irqstat0 & NETJET_IRQM0_READ) !=
86 (cs->hw.njet.last_is0 & NETJET_IRQM0_READ))
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 /* we have a read dma int */
88 read_tiger(cs);
89 if ((cs->hw.njet.irqstat0 & NETJET_IRQM0_WRITE) !=
Joe Perches475be4d2012-02-19 19:52:38 -080090 (cs->hw.njet.last_is0 & NETJET_IRQM0_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 /* we have a write dma int */
92 write_tiger(cs);
93 /* end new code 13/07/00 GE */
94 test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
95 }
96 spin_unlock_irqrestore(&cs->lock, flags);
97 return IRQ_HANDLED;
98}
99
100static void
101reset_netjet_s(struct IsdnCardState *cs)
102{
103 cs->hw.njet.ctrl_reg = 0xff; /* Reset On */
104 byteout(cs->hw.njet.base + NETJET_CTRL, cs->hw.njet.ctrl_reg);
105 mdelay(10);
106 /* now edge triggered for TJ320 GE 13/07/00 */
107 /* see comment in IRQ function */
108 if (cs->subtyp) /* TJ320 */
109 cs->hw.njet.ctrl_reg = 0x40; /* Reset Off and status read clear */
110 else
111 cs->hw.njet.ctrl_reg = 0x00; /* Reset Off and status read clear */
112 byteout(cs->hw.njet.base + NETJET_CTRL, cs->hw.njet.ctrl_reg);
113 mdelay(10);
114 cs->hw.njet.auxd = 0;
115 cs->hw.njet.dmactrl = 0;
116 byteout(cs->hw.njet.base + NETJET_AUXCTRL, ~NETJET_ISACIRQ);
117 byteout(cs->hw.njet.base + NETJET_IRQMASK1, NETJET_ISACIRQ);
118 byteout(cs->hw.njet.auxa, cs->hw.njet.auxd);
119}
120
121static int
122NETjet_S_card_msg(struct IsdnCardState *cs, int mt, void *arg)
123{
124 u_long flags;
125
126 switch (mt) {
Joe Perches475be4d2012-02-19 19:52:38 -0800127 case CARD_RESET:
128 spin_lock_irqsave(&cs->lock, flags);
129 reset_netjet_s(cs);
130 spin_unlock_irqrestore(&cs->lock, flags);
131 return (0);
132 case CARD_RELEASE:
133 release_io_netjet(cs);
134 return (0);
135 case CARD_INIT:
136 reset_netjet_s(cs);
137 inittiger(cs);
138 spin_lock_irqsave(&cs->lock, flags);
139 clear_pending_isac_ints(cs);
140 initisac(cs);
141 /* Reenable all IRQ */
142 cs->writeisac(cs, ISAC_MASK, 0);
143 spin_unlock_irqrestore(&cs->lock, flags);
144 return (0);
145 case CARD_TEST:
146 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
Joe Perches475be4d2012-02-19 19:52:38 -0800148 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Greg Kroah-Hartmaned5a84c2012-12-21 13:13:05 -0800151static int njs_pci_probe(struct pci_dev *dev_netjet, struct IsdnCardState *cs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Al Virob4482a42007-10-14 19:35:40 +0100153 u32 cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Jeff Garzik0566a662007-07-15 04:25:35 -0400155 if (pci_enable_device(dev_netjet))
Joe Perches475be4d2012-02-19 19:52:38 -0800156 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400157 pci_set_master(dev_netjet);
158 cs->irq = dev_netjet->irq;
159 if (!cs->irq) {
160 printk(KERN_WARNING "NETjet-S: No IRQ for PCI card found\n");
Joe Perches475be4d2012-02-19 19:52:38 -0800161 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Jeff Garzik0566a662007-07-15 04:25:35 -0400163 cs->hw.njet.base = pci_resource_start(dev_netjet, 0);
164 if (!cs->hw.njet.base) {
165 printk(KERN_WARNING "NETjet-S: No IO-Adr for PCI card found\n");
Joe Perches475be4d2012-02-19 19:52:38 -0800166 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400167 }
168 /* the TJ300 and TJ320 must be detected, the IRQ handling is different
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300169 * unfortunately the chips use the same device ID, but the TJ320 has
Jeff Garzik0566a662007-07-15 04:25:35 -0400170 * the bit20 in status PCI cfg register set
171 */
172 pci_read_config_dword(dev_netjet, 0x04, &cfg);
173 if (cfg & 0x00100000)
174 cs->subtyp = 1; /* TJ320 */
175 else
176 cs->subtyp = 0; /* TJ300 */
177 /* 2001/10/04 Christoph Ersfeld, Formula-n Europe AG www.formula-n.com */
178 if ((dev_netjet->subsystem_vendor == 0x55) &&
Joe Perches475be4d2012-02-19 19:52:38 -0800179 (dev_netjet->subsystem_device == 0x02)) {
Jeff Garzik0566a662007-07-15 04:25:35 -0400180 printk(KERN_WARNING "Netjet: You tried to load this driver with an incompatible TigerJet-card\n");
181 printk(KERN_WARNING "Use type=41 for Formula-n enter:now ISDN PCI and compatible\n");
Joe Perches475be4d2012-02-19 19:52:38 -0800182 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400183 }
184 /* end new code */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Joe Perches475be4d2012-02-19 19:52:38 -0800186 return (1);
Jeff Garzik0566a662007-07-15 04:25:35 -0400187}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Greg Kroah-Hartmaned5a84c2012-12-21 13:13:05 -0800189static int njs_cs_init(struct IsdnCard *card, struct IsdnCardState *cs)
Jeff Garzik0566a662007-07-15 04:25:35 -0400190{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jeff Garzik0566a662007-07-15 04:25:35 -0400192 cs->hw.njet.auxa = cs->hw.njet.base + NETJET_AUXDATA;
193 cs->hw.njet.isac = cs->hw.njet.base | NETJET_ISAC_OFF;
194
195 cs->hw.njet.ctrl_reg = 0xff; /* Reset On */
196 byteout(cs->hw.njet.base + NETJET_CTRL, cs->hw.njet.ctrl_reg);
197 mdelay(10);
198
199 cs->hw.njet.ctrl_reg = 0x00; /* Reset Off and status read clear */
200 byteout(cs->hw.njet.base + NETJET_CTRL, cs->hw.njet.ctrl_reg);
201 mdelay(10);
202
203 cs->hw.njet.auxd = 0xC0;
204 cs->hw.njet.dmactrl = 0;
205
206 byteout(cs->hw.njet.base + NETJET_AUXCTRL, ~NETJET_ISACIRQ);
207 byteout(cs->hw.njet.base + NETJET_IRQMASK1, NETJET_ISACIRQ);
208 byteout(cs->hw.njet.auxa, cs->hw.njet.auxd);
209
Joe Perches475be4d2012-02-19 19:52:38 -0800210 switch (((NETjet_ReadIC(cs, ISAC_RBCH) >> 5) & 3))
Jeff Garzik0566a662007-07-15 04:25:35 -0400211 {
Joe Perches475be4d2012-02-19 19:52:38 -0800212 case 0:
213 return 1; /* end loop */
Jeff Garzik0566a662007-07-15 04:25:35 -0400214
Joe Perches475be4d2012-02-19 19:52:38 -0800215 case 3:
216 printk(KERN_WARNING "NETjet-S: NETspider-U PCI card found\n");
217 return -1; /* continue looping */
Jeff Garzik0566a662007-07-15 04:25:35 -0400218
Joe Perches475be4d2012-02-19 19:52:38 -0800219 default:
220 printk(KERN_WARNING "NETjet-S: No PCI card found\n");
221 return 0; /* end loop & function */
Jeff Garzik0566a662007-07-15 04:25:35 -0400222 }
223 return 1; /* end loop */
224}
225
Greg Kroah-Hartmaned5a84c2012-12-21 13:13:05 -0800226static int njs_cs_init_rest(struct IsdnCard *card, struct IsdnCardState *cs)
Jeff Garzik0566a662007-07-15 04:25:35 -0400227{
228 const int bytecnt = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 printk(KERN_INFO
Joe Perches475be4d2012-02-19 19:52:38 -0800231 "NETjet-S: %s card configured at %#lx IRQ %d\n",
232 cs->subtyp ? "TJ320" : "TJ300", cs->hw.njet.base, cs->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (!request_region(cs->hw.njet.base, bytecnt, "netjet-s isdn")) {
234 printk(KERN_WARNING
Jeff Garzik83493042007-10-31 03:42:07 -0400235 "HiSax: NETjet-S config port %#lx-%#lx already in use\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 cs->hw.njet.base,
237 cs->hw.njet.base + bytecnt);
238 return (0);
239 }
240 cs->readisac = &NETjet_ReadIC;
241 cs->writeisac = &NETjet_WriteIC;
242 cs->readisacfifo = &NETjet_ReadICfifo;
243 cs->writeisacfifo = &NETjet_WriteICfifo;
244 cs->BC_Read_Reg = &dummyrr;
245 cs->BC_Write_Reg = &dummywr;
246 cs->BC_Send_Data = &netjet_fill_dma;
247 setup_isac(cs);
248 cs->cardmsg = &NETjet_S_card_msg;
249 cs->irq_func = &netjet_s_interrupt;
Thomas Gleixner9ba02be2006-07-01 19:29:36 -0700250 cs->irq_flags |= IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 ISACVersion(cs, "NETjet-S:");
Jeff Garzik0566a662007-07-15 04:25:35 -0400252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return (1);
254}
Jeff Garzik0566a662007-07-15 04:25:35 -0400255
Greg Kroah-Hartmaned5a84c2012-12-21 13:13:05 -0800256static struct pci_dev *dev_netjet = NULL;
Jeff Garzik0566a662007-07-15 04:25:35 -0400257
Greg Kroah-Hartmaned5a84c2012-12-21 13:13:05 -0800258int setup_netjet_s(struct IsdnCard *card)
Jeff Garzik0566a662007-07-15 04:25:35 -0400259{
260 int ret;
261 struct IsdnCardState *cs = card->cs;
262 char tmp[64];
263
264#ifdef __BIG_ENDIAN
265#error "not running on big endian machines now"
266#endif
267 strcpy(tmp, NETjet_S_revision);
268 printk(KERN_INFO "HiSax: Traverse Tech. NETjet-S driver Rev. %s\n", HiSax_getrev(tmp));
269 if (cs->typ != ISDN_CTYPE_NETJET_S)
Joe Perches475be4d2012-02-19 19:52:38 -0800270 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400271 test_and_clear_bit(FLG_LOCK_ATOMIC, &cs->HW_Flags);
272
Joe Perches475be4d2012-02-19 19:52:38 -0800273 for (;;)
Jeff Garzik0566a662007-07-15 04:25:35 -0400274 {
Tilman Schmidt41a68a72010-01-18 17:24:10 +0100275 if ((dev_netjet = hisax_find_pci_device(PCI_VENDOR_ID_TIGERJET,
Joe Perches475be4d2012-02-19 19:52:38 -0800276 PCI_DEVICE_ID_TIGERJET_300, dev_netjet))) {
Jeff Garzik0566a662007-07-15 04:25:35 -0400277 ret = njs_pci_probe(dev_netjet, cs);
278 if (!ret)
Joe Perches475be4d2012-02-19 19:52:38 -0800279 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400280 } else {
281 printk(KERN_WARNING "NETjet-S: No PCI card found\n");
Joe Perches475be4d2012-02-19 19:52:38 -0800282 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400283 }
284
285 ret = njs_cs_init(card, cs);
286 if (!ret)
Joe Perches475be4d2012-02-19 19:52:38 -0800287 return (0);
Jeff Garzik0566a662007-07-15 04:25:35 -0400288 if (ret > 0)
289 break;
290 /* otherwise, ret < 0, continue looping */
291 }
292
293 return njs_cs_init_rest(card, cs);
294}