1 /* $Id: niccy.c,v 1.21.2.4 2004/01/13 23:48:39 keil Exp $
3 * low level stuff for Dr. Neuhaus NICCY PnP and NICCY PCI and
4 * compatible (SAGEM cybermodem)
7 * Copyright by Karsten Keil <keil@isdn4linux.de>
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
12 * Thanks to Dr. Neuhaus and SAGEM for information
16 #include <linux/init.h>
21 #include <linux/pci.h>
22 #include <linux/isapnp.h>
24 extern const char *CardType
[];
25 static const char *niccy_revision
= "$Revision: 1.21.2.4 $";
27 #define byteout(addr,val) outb(val,addr)
28 #define bytein(addr) inb(addr)
30 #define ISAC_PCI_DATA 0
31 #define HSCX_PCI_DATA 1
32 #define ISAC_PCI_ADDR 2
33 #define HSCX_PCI_ADDR 3
42 #define PCI_IRQ_CTRL_REG 0x38
43 #define PCI_IRQ_ENABLE 0x1f00
44 #define PCI_IRQ_DISABLE 0xff0000
45 #define PCI_IRQ_ASSERT 0x800000
47 static inline u_char
readreg(unsigned int ale
, unsigned int adr
, u_char off
)
56 static inline void readfifo(unsigned int ale
, unsigned int adr
, u_char off
,
57 u_char
*data
, int size
)
60 insb(adr
, data
, size
);
63 static inline void writereg(unsigned int ale
, unsigned int adr
, u_char off
,
70 static inline void writefifo(unsigned int ale
, unsigned int adr
, u_char off
,
71 u_char
*data
, int size
)
74 outsb(adr
, data
, size
);
77 /* Interface functions */
79 static u_char
ReadISAC(struct IsdnCardState
*cs
, u_char offset
)
81 return readreg(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, offset
);
84 static void WriteISAC(struct IsdnCardState
*cs
, u_char offset
, u_char value
)
86 writereg(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, offset
, value
);
89 static void ReadISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
91 readfifo(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, 0, data
, size
);
94 static void WriteISACfifo(struct IsdnCardState
*cs
, u_char
* data
, int size
)
96 writefifo(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, 0, data
, size
);
99 static u_char
ReadHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
)
101 return readreg(cs
->hw
.niccy
.hscx_ale
,
102 cs
->hw
.niccy
.hscx
, offset
+ (hscx
? 0x40 : 0));
105 static void WriteHSCX(struct IsdnCardState
*cs
, int hscx
, u_char offset
,
108 writereg(cs
->hw
.niccy
.hscx_ale
,
109 cs
->hw
.niccy
.hscx
, offset
+ (hscx
? 0x40 : 0), value
);
112 #define READHSCX(cs, nr, reg) readreg(cs->hw.niccy.hscx_ale, \
113 cs->hw.niccy.hscx, reg + (nr ? 0x40 : 0))
114 #define WRITEHSCX(cs, nr, reg, data) writereg(cs->hw.niccy.hscx_ale, \
115 cs->hw.niccy.hscx, reg + (nr ? 0x40 : 0), data)
117 #define READHSCXFIFO(cs, nr, ptr, cnt) readfifo(cs->hw.niccy.hscx_ale, \
118 cs->hw.niccy.hscx, (nr ? 0x40 : 0), ptr, cnt)
120 #define WRITEHSCXFIFO(cs, nr, ptr, cnt) writefifo(cs->hw.niccy.hscx_ale, \
121 cs->hw.niccy.hscx, (nr ? 0x40 : 0), ptr, cnt)
123 #include "hscx_irq.c"
125 static irqreturn_t
niccy_interrupt(int intno
, void *dev_id
)
127 struct IsdnCardState
*cs
= dev_id
;
131 spin_lock_irqsave(&cs
->lock
, flags
);
132 if (cs
->subtyp
== NICCY_PCI
) {
134 ival
= inl(cs
->hw
.niccy
.cfg_reg
+ PCI_IRQ_CTRL_REG
);
135 if (!(ival
& PCI_IRQ_ASSERT
)) { /* IRQ not for us (shared) */
136 spin_unlock_irqrestore(&cs
->lock
, flags
);
139 outl(ival
, cs
->hw
.niccy
.cfg_reg
+ PCI_IRQ_CTRL_REG
);
141 val
= readreg(cs
->hw
.niccy
.hscx_ale
, cs
->hw
.niccy
.hscx
,
145 hscx_int_main(cs
, val
);
146 val
= readreg(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, ISAC_ISTA
);
149 isac_interrupt(cs
, val
);
150 val
= readreg(cs
->hw
.niccy
.hscx_ale
, cs
->hw
.niccy
.hscx
,
153 if (cs
->debug
& L1_DEB_HSCX
)
154 debugl1(cs
, "HSCX IntStat after IntRoutine");
157 val
= readreg(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, ISAC_ISTA
);
159 if (cs
->debug
& L1_DEB_ISAC
)
160 debugl1(cs
, "ISAC IntStat after IntRoutine");
163 writereg(cs
->hw
.niccy
.hscx_ale
, cs
->hw
.niccy
.hscx
, HSCX_MASK
, 0xFF);
164 writereg(cs
->hw
.niccy
.hscx_ale
, cs
->hw
.niccy
.hscx
, HSCX_MASK
+ 0x40,
166 writereg(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, ISAC_MASK
, 0xFF);
167 writereg(cs
->hw
.niccy
.isac_ale
, cs
->hw
.niccy
.isac
, ISAC_MASK
, 0);
168 writereg(cs
->hw
.niccy
.hscx_ale
, cs
->hw
.niccy
.hscx
, HSCX_MASK
, 0);
169 writereg(cs
->hw
.niccy
.hscx_ale
, cs
->hw
.niccy
.hscx
, HSCX_MASK
+ 0x40,0);
170 spin_unlock_irqrestore(&cs
->lock
, flags
);
174 static void release_io_niccy(struct IsdnCardState
*cs
)
176 if (cs
->subtyp
== NICCY_PCI
) {
179 val
= inl(cs
->hw
.niccy
.cfg_reg
+ PCI_IRQ_CTRL_REG
);
180 val
&= PCI_IRQ_DISABLE
;
181 outl(val
, cs
->hw
.niccy
.cfg_reg
+ PCI_IRQ_CTRL_REG
);
182 release_region(cs
->hw
.niccy
.cfg_reg
, 0x40);
183 release_region(cs
->hw
.niccy
.isac
, 4);
185 release_region(cs
->hw
.niccy
.isac
, 2);
186 release_region(cs
->hw
.niccy
.isac_ale
, 2);
190 static void niccy_reset(struct IsdnCardState
*cs
)
192 if (cs
->subtyp
== NICCY_PCI
) {
195 val
= inl(cs
->hw
.niccy
.cfg_reg
+ PCI_IRQ_CTRL_REG
);
196 val
|= PCI_IRQ_ENABLE
;
197 outl(val
, cs
->hw
.niccy
.cfg_reg
+ PCI_IRQ_CTRL_REG
);
202 static int niccy_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
208 spin_lock_irqsave(&cs
->lock
, flags
);
210 spin_unlock_irqrestore(&cs
->lock
, flags
);
213 release_io_niccy(cs
);
216 spin_lock_irqsave(&cs
->lock
, flags
);
218 spin_unlock_irqrestore(&cs
->lock
, flags
);
226 static struct pci_dev
*niccy_dev __devinitdata
= NULL
;
228 static struct pnp_card
*pnp_c __devinitdata
= NULL
;
231 int __devinit
setup_niccy(struct IsdnCard
*card
)
233 struct IsdnCardState
*cs
= card
->cs
;
236 strcpy(tmp
, niccy_revision
);
237 printk(KERN_INFO
"HiSax: Niccy driver Rev. %s\n", HiSax_getrev(tmp
));
238 if (cs
->typ
!= ISDN_CTYPE_NICCY
)
241 if (!card
->para
[1] && isapnp_present()) {
242 struct pnp_dev
*pnp_d
= NULL
;
245 pnp_c
= pnp_find_card(ISAPNP_VENDOR('S', 'D', 'A'),
246 ISAPNP_FUNCTION(0x0150), pnp_c
);
248 pnp_d
= pnp_find_dev(pnp_c
,
249 ISAPNP_VENDOR('S', 'D', 'A'),
250 ISAPNP_FUNCTION(0x0150), pnp_d
);
252 printk(KERN_ERR
"NiccyPnP: PnP error card "
253 "found, no device\n");
256 pnp_disable_dev(pnp_d
);
257 err
= pnp_activate_dev(pnp_d
);
259 printk(KERN_WARNING
"%s: pnp_activate_dev "
260 "ret(%d)\n", __FUNCTION__
, err
);
263 card
->para
[1] = pnp_port_start(pnp_d
, 0);
264 card
->para
[2] = pnp_port_start(pnp_d
, 1);
265 card
->para
[0] = pnp_irq(pnp_d
, 0);
266 if (!card
->para
[0] || !card
->para
[1] ||
268 printk(KERN_ERR
"NiccyPnP:some resources are "
269 "missing %ld/%lx/%lx\n",
270 card
->para
[0], card
->para
[1],
272 pnp_disable_dev(pnp_d
);
276 printk(KERN_INFO
"NiccyPnP: no ISAPnP card found\n");
280 cs
->hw
.niccy
.isac
= card
->para
[1] + ISAC_PNP
;
281 cs
->hw
.niccy
.hscx
= card
->para
[1] + HSCX_PNP
;
282 cs
->hw
.niccy
.isac_ale
= card
->para
[2] + ISAC_PNP
;
283 cs
->hw
.niccy
.hscx_ale
= card
->para
[2] + HSCX_PNP
;
284 cs
->hw
.niccy
.cfg_reg
= 0;
285 cs
->subtyp
= NICCY_PNP
;
286 cs
->irq
= card
->para
[0];
287 if (!request_region(cs
->hw
.niccy
.isac
, 2, "niccy data")) {
288 printk(KERN_WARNING
"HiSax: %s data port %x-%x "
289 "already in use\n", CardType
[card
->typ
],
290 cs
->hw
.niccy
.isac
, cs
->hw
.niccy
.isac
+ 1);
293 if (!request_region(cs
->hw
.niccy
.isac_ale
, 2, "niccy addr")) {
294 printk(KERN_WARNING
"HiSax: %s address port %x-%x "
295 "already in use\n", CardType
[card
->typ
],
296 cs
->hw
.niccy
.isac_ale
,
297 cs
->hw
.niccy
.isac_ale
+ 1);
298 release_region(cs
->hw
.niccy
.isac
, 2);
305 if ((niccy_dev
= pci_find_device(PCI_VENDOR_ID_SATSAGEM
,
306 PCI_DEVICE_ID_SATSAGEM_NICCY
,
308 if (pci_enable_device(niccy_dev
))
311 if (!niccy_dev
->irq
) {
313 "Niccy: No IRQ for PCI card found\n");
316 cs
->irq
= niccy_dev
->irq
;
317 cs
->hw
.niccy
.cfg_reg
= pci_resource_start(niccy_dev
, 0);
318 if (!cs
->hw
.niccy
.cfg_reg
) {
320 "Niccy: No IO-Adr for PCI cfg found\n");
323 pci_ioaddr
= pci_resource_start(niccy_dev
, 1);
326 "Niccy: No IO-Adr for PCI card found\n");
329 cs
->subtyp
= NICCY_PCI
;
331 printk(KERN_WARNING
"Niccy: No PCI card found\n");
334 cs
->irq_flags
|= IRQF_SHARED
;
335 cs
->hw
.niccy
.isac
= pci_ioaddr
+ ISAC_PCI_DATA
;
336 cs
->hw
.niccy
.isac_ale
= pci_ioaddr
+ ISAC_PCI_ADDR
;
337 cs
->hw
.niccy
.hscx
= pci_ioaddr
+ HSCX_PCI_DATA
;
338 cs
->hw
.niccy
.hscx_ale
= pci_ioaddr
+ HSCX_PCI_ADDR
;
339 if (!request_region(cs
->hw
.niccy
.isac
, 4, "niccy")) {
341 "HiSax: %s data port %x-%x already in use\n",
343 cs
->hw
.niccy
.isac
, cs
->hw
.niccy
.isac
+ 4);
346 if (!request_region(cs
->hw
.niccy
.cfg_reg
, 0x40, "niccy pci")) {
348 "HiSax: %s pci port %x-%x already in use\n",
350 cs
->hw
.niccy
.cfg_reg
,
351 cs
->hw
.niccy
.cfg_reg
+ 0x40);
352 release_region(cs
->hw
.niccy
.isac
, 4);
356 printk(KERN_WARNING
"Niccy: io0 0 and NO_PCI_BIOS\n");
357 printk(KERN_WARNING
"Niccy: unable to config NICCY PCI\n");
359 #endif /* CONFIG_PCI */
361 printk(KERN_INFO
"HiSax: %s %s config irq:%d data:0x%X ale:0x%X\n",
362 CardType
[cs
->typ
], (cs
->subtyp
== 1) ? "PnP" : "PCI",
363 cs
->irq
, cs
->hw
.niccy
.isac
, cs
->hw
.niccy
.isac_ale
);
365 cs
->readisac
= &ReadISAC
;
366 cs
->writeisac
= &WriteISAC
;
367 cs
->readisacfifo
= &ReadISACfifo
;
368 cs
->writeisacfifo
= &WriteISACfifo
;
369 cs
->BC_Read_Reg
= &ReadHSCX
;
370 cs
->BC_Write_Reg
= &WriteHSCX
;
371 cs
->BC_Send_Data
= &hscx_fill_fifo
;
372 cs
->cardmsg
= &niccy_card_msg
;
373 cs
->irq_func
= &niccy_interrupt
;
374 ISACVersion(cs
, "Niccy:");
375 if (HscxVersion(cs
, "Niccy:")) {
376 printk(KERN_WARNING
"Niccy: wrong HSCX versions check IO "
378 release_io_niccy(cs
);