2 * Driver for AVM Fritz!PCI, Fritz!PCI v2, Fritz!PnP ISDN cards
4 * Author Kai Germaschewski
5 * Copyright 2001 by Kai Germaschewski <kai.germaschewski@gmx.de>
6 * 2001 by Karsten Keil <keil@isdn4linux.de>
8 * based upon Karsten Keil's original avm_pci.c driver
10 * This software may be used and distributed according to the terms
11 * of the GNU General Public License, incorporated herein by reference.
13 * Thanks to Wizard Computersysteme GmbH, Bremervoerde and
14 * SoHaNet Technology GmbH, Berlin
15 * for supporting the development of this driver
22 * o clean up debugging
23 * o tx_skb at PH_DEACTIVATE time
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/pci.h>
29 #include <linux/isapnp.h>
30 #include <linux/kmod.h>
31 #include <linux/slab.h>
32 #include <linux/skbuff.h>
33 #include <linux/netdevice.h>
34 #include <linux/delay.h>
38 #include "hisax_fcpcipnp.h"
41 #define __debug_variable debug
42 #include "hisax_debug.h"
44 #ifdef CONFIG_HISAX_DEBUG
46 /* static int hdlcfifosize = 32; */
47 module_param(debug
, int, 0);
48 /* module_param(hdlcfifosize, int, 0); */
51 MODULE_AUTHOR("Kai Germaschewski <kai.germaschewski@gmx.de>/Karsten Keil <kkeil@suse.de>");
52 MODULE_DESCRIPTION("AVM Fritz!PCI/PnP ISDN driver");
54 static struct pci_device_id fcpci_ids
[] = {
55 { .vendor
= PCI_VENDOR_ID_AVM
,
56 .device
= PCI_DEVICE_ID_AVM_A1
,
57 .subvendor
= PCI_ANY_ID
,
58 .subdevice
= PCI_ANY_ID
,
59 .driver_data
= (unsigned long) "Fritz!Card PCI",
61 { .vendor
= PCI_VENDOR_ID_AVM
,
62 .device
= PCI_DEVICE_ID_AVM_A1_V2
,
63 .subvendor
= PCI_ANY_ID
,
64 .subdevice
= PCI_ANY_ID
,
65 .driver_data
= (unsigned long) "Fritz!Card PCI v2" },
69 MODULE_DEVICE_TABLE(pci
, fcpci_ids
);
72 static struct pnp_device_id fcpnp_ids
[] __devinitdata
= {
75 .driver_data
= (unsigned long) "Fritz!Card PnP",
79 MODULE_DEVICE_TABLE(isapnp
, fcpnp_ids
);
82 static int protocol
= 2; /* EURO-ISDN Default */
83 module_param(protocol
, int, 0);
84 MODULE_LICENSE("GPL");
86 // ----------------------------------------------------------------------
88 #define AVM_INDEX 0x04
91 #define AVM_IDX_HDLC_1 0x00
92 #define AVM_IDX_HDLC_2 0x01
93 #define AVM_IDX_ISAC_FIFO 0x02
94 #define AVM_IDX_ISAC_REG_LOW 0x04
95 #define AVM_IDX_ISAC_REG_HIGH 0x06
97 #define AVM_STATUS0 0x02
99 #define AVM_STATUS0_IRQ_ISAC 0x01
100 #define AVM_STATUS0_IRQ_HDLC 0x02
101 #define AVM_STATUS0_IRQ_TIMER 0x04
102 #define AVM_STATUS0_IRQ_MASK 0x07
104 #define AVM_STATUS0_RESET 0x01
105 #define AVM_STATUS0_DIS_TIMER 0x02
106 #define AVM_STATUS0_RES_TIMER 0x04
107 #define AVM_STATUS0_ENA_IRQ 0x08
108 #define AVM_STATUS0_TESTBIT 0x10
110 #define AVM_STATUS1 0x03
111 #define AVM_STATUS1_ENA_IOM 0x80
113 #define HDLC_FIFO 0x0
114 #define HDLC_STATUS 0x4
115 #define HDLC_CTRL 0x4
117 #define HDLC_MODE_ITF_FLG 0x01
118 #define HDLC_MODE_TRANS 0x02
119 #define HDLC_MODE_CCR_7 0x04
120 #define HDLC_MODE_CCR_16 0x08
121 #define HDLC_MODE_TESTLOOP 0x80
123 #define HDLC_INT_XPR 0x80
124 #define HDLC_INT_XDU 0x40
125 #define HDLC_INT_RPR 0x20
126 #define HDLC_INT_MASK 0xE0
128 #define HDLC_STAT_RME 0x01
129 #define HDLC_STAT_RDO 0x10
130 #define HDLC_STAT_CRCVFRRAB 0x0E
131 #define HDLC_STAT_CRCVFR 0x06
132 #define HDLC_STAT_RML_MASK 0xff00
134 #define HDLC_CMD_XRS 0x80
135 #define HDLC_CMD_XME 0x01
136 #define HDLC_CMD_RRS 0x20
137 #define HDLC_CMD_XML_MASK 0xff00
139 #define AVM_HDLC_FIFO_1 0x10
140 #define AVM_HDLC_FIFO_2 0x18
142 #define AVM_HDLC_STATUS_1 0x14
143 #define AVM_HDLC_STATUS_2 0x1c
145 #define AVM_ISACSX_INDEX 0x04
146 #define AVM_ISACSX_DATA 0x08
148 // ----------------------------------------------------------------------
151 static unsigned char fcpci_read_isac(struct isac
*isac
, unsigned char offset
)
153 struct fritz_adapter
*adapter
= isac
->priv
;
154 unsigned char idx
= (offset
> 0x2f) ?
155 AVM_IDX_ISAC_REG_HIGH
: AVM_IDX_ISAC_REG_LOW
;
159 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
160 outb(idx
, adapter
->io
+ AVM_INDEX
);
161 val
= inb(adapter
->io
+ AVM_DATA
+ (offset
& 0xf));
162 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
163 DBG(0x1000, " port %#x, value %#x",
168 static void fcpci_write_isac(struct isac
*isac
, unsigned char offset
,
171 struct fritz_adapter
*adapter
= isac
->priv
;
172 unsigned char idx
= (offset
> 0x2f) ?
173 AVM_IDX_ISAC_REG_HIGH
: AVM_IDX_ISAC_REG_LOW
;
176 DBG(0x1000, " port %#x, value %#x",
178 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
179 outb(idx
, adapter
->io
+ AVM_INDEX
);
180 outb(value
, adapter
->io
+ AVM_DATA
+ (offset
& 0xf));
181 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
184 static void fcpci_read_isac_fifo(struct isac
*isac
, unsigned char * data
,
187 struct fritz_adapter
*adapter
= isac
->priv
;
190 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
191 outb(AVM_IDX_ISAC_FIFO
, adapter
->io
+ AVM_INDEX
);
192 insb(adapter
->io
+ AVM_DATA
, data
, size
);
193 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
196 static void fcpci_write_isac_fifo(struct isac
*isac
, unsigned char * data
,
199 struct fritz_adapter
*adapter
= isac
->priv
;
202 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
203 outb(AVM_IDX_ISAC_FIFO
, adapter
->io
+ AVM_INDEX
);
204 outsb(adapter
->io
+ AVM_DATA
, data
, size
);
205 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
208 static u32
fcpci_read_hdlc_status(struct fritz_adapter
*adapter
, int nr
)
211 int idx
= nr
? AVM_IDX_HDLC_2
: AVM_IDX_HDLC_1
;
214 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
215 outl(idx
, adapter
->io
+ AVM_INDEX
);
216 val
= inl(adapter
->io
+ AVM_DATA
+ HDLC_STATUS
);
217 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
221 static void __fcpci_write_ctrl(struct fritz_bcs
*bcs
, int which
)
223 struct fritz_adapter
*adapter
= bcs
->adapter
;
224 int idx
= bcs
->channel
? AVM_IDX_HDLC_2
: AVM_IDX_HDLC_1
;
226 DBG(0x40, "hdlc %c wr%x ctrl %x",
227 'A' + bcs
->channel
, which
, bcs
->ctrl
.ctrl
);
229 outl(idx
, adapter
->io
+ AVM_INDEX
);
230 outl(bcs
->ctrl
.ctrl
, adapter
->io
+ AVM_DATA
+ HDLC_CTRL
);
233 static void fcpci_write_ctrl(struct fritz_bcs
*bcs
, int which
)
235 struct fritz_adapter
*adapter
= bcs
->adapter
;
238 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
239 __fcpci_write_ctrl(bcs
, which
);
240 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
243 // ----------------------------------------------------------------------
246 static unsigned char fcpci2_read_isac(struct isac
*isac
, unsigned char offset
)
248 struct fritz_adapter
*adapter
= isac
->priv
;
252 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
253 outl(offset
, adapter
->io
+ AVM_ISACSX_INDEX
);
254 val
= inl(adapter
->io
+ AVM_ISACSX_DATA
);
255 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
256 DBG(0x1000, " port %#x, value %#x",
262 static void fcpci2_write_isac(struct isac
*isac
, unsigned char offset
,
265 struct fritz_adapter
*adapter
= isac
->priv
;
268 DBG(0x1000, " port %#x, value %#x",
270 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
271 outl(offset
, adapter
->io
+ AVM_ISACSX_INDEX
);
272 outl(value
, adapter
->io
+ AVM_ISACSX_DATA
);
273 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
276 static void fcpci2_read_isac_fifo(struct isac
*isac
, unsigned char * data
,
279 struct fritz_adapter
*adapter
= isac
->priv
;
283 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
284 outl(0, adapter
->io
+ AVM_ISACSX_INDEX
);
285 for (i
= 0; i
< size
; i
++)
286 data
[i
] = inl(adapter
->io
+ AVM_ISACSX_DATA
);
287 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
290 static void fcpci2_write_isac_fifo(struct isac
*isac
, unsigned char * data
,
293 struct fritz_adapter
*adapter
= isac
->priv
;
297 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
298 outl(0, adapter
->io
+ AVM_ISACSX_INDEX
);
299 for (i
= 0; i
< size
; i
++)
300 outl(data
[i
], adapter
->io
+ AVM_ISACSX_DATA
);
301 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
304 static u32
fcpci2_read_hdlc_status(struct fritz_adapter
*adapter
, int nr
)
306 int offset
= nr
? AVM_HDLC_STATUS_2
: AVM_HDLC_STATUS_1
;
308 return inl(adapter
->io
+ offset
);
311 static void fcpci2_write_ctrl(struct fritz_bcs
*bcs
, int which
)
313 struct fritz_adapter
*adapter
= bcs
->adapter
;
314 int offset
= bcs
->channel
? AVM_HDLC_STATUS_2
: AVM_HDLC_STATUS_1
;
316 DBG(0x40, "hdlc %c wr%x ctrl %x",
317 'A' + bcs
->channel
, which
, bcs
->ctrl
.ctrl
);
319 outl(bcs
->ctrl
.ctrl
, adapter
->io
+ offset
);
322 // ----------------------------------------------------------------------
323 // Fritz!PnP (ISAC access as for Fritz!PCI)
325 static u32
fcpnp_read_hdlc_status(struct fritz_adapter
*adapter
, int nr
)
327 unsigned char idx
= nr
? AVM_IDX_HDLC_2
: AVM_IDX_HDLC_1
;
331 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
332 outb(idx
, adapter
->io
+ AVM_INDEX
);
333 val
= inb(adapter
->io
+ AVM_DATA
+ HDLC_STATUS
);
334 if (val
& HDLC_INT_RPR
)
335 val
|= inb(adapter
->io
+ AVM_DATA
+ HDLC_STATUS
+ 1) << 8;
336 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
340 static void __fcpnp_write_ctrl(struct fritz_bcs
*bcs
, int which
)
342 struct fritz_adapter
*adapter
= bcs
->adapter
;
343 unsigned char idx
= bcs
->channel
? AVM_IDX_HDLC_2
: AVM_IDX_HDLC_1
;
345 DBG(0x40, "hdlc %c wr%x ctrl %x",
346 'A' + bcs
->channel
, which
, bcs
->ctrl
.ctrl
);
348 outb(idx
, adapter
->io
+ AVM_INDEX
);
350 outb(bcs
->ctrl
.sr
.mode
,
351 adapter
->io
+ AVM_DATA
+ HDLC_STATUS
+ 2);
353 outb(bcs
->ctrl
.sr
.xml
,
354 adapter
->io
+ AVM_DATA
+ HDLC_STATUS
+ 1);
356 outb(bcs
->ctrl
.sr
.cmd
,
357 adapter
->io
+ AVM_DATA
+ HDLC_STATUS
+ 0);
360 static void fcpnp_write_ctrl(struct fritz_bcs
*bcs
, int which
)
362 struct fritz_adapter
*adapter
= bcs
->adapter
;
365 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
366 __fcpnp_write_ctrl(bcs
, which
);
367 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
370 // ----------------------------------------------------------------------
372 static inline void B_L1L2(struct fritz_bcs
*bcs
, int pr
, void *arg
)
374 struct hisax_if
*ifc
= (struct hisax_if
*) &bcs
->b_if
;
376 DBG(2, "pr %#x", pr
);
377 ifc
->l1l2(ifc
, pr
, arg
);
380 static void hdlc_fill_fifo(struct fritz_bcs
*bcs
)
382 struct fritz_adapter
*adapter
= bcs
->adapter
;
383 struct sk_buff
*skb
= bcs
->tx_skb
;
388 DBG(0x40, "hdlc_fill_fifo");
390 BUG_ON(skb
->len
== 0);
392 bcs
->ctrl
.sr
.cmd
&= ~HDLC_CMD_XME
;
393 if (bcs
->tx_skb
->len
> bcs
->fifo_size
) {
394 count
= bcs
->fifo_size
;
396 count
= bcs
->tx_skb
->len
;
397 if (bcs
->mode
!= L1_MODE_TRANS
)
398 bcs
->ctrl
.sr
.cmd
|= HDLC_CMD_XME
;
400 DBG(0x40, "hdlc_fill_fifo %d/%d", count
, bcs
->tx_skb
->len
);
401 p
= bcs
->tx_skb
->data
;
402 skb_pull(bcs
->tx_skb
, count
);
403 bcs
->tx_cnt
+= count
;
404 bcs
->ctrl
.sr
.xml
= ((count
== bcs
->fifo_size
) ? 0 : count
);
406 switch (adapter
->type
) {
408 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
409 // sets the correct AVM_INDEX, too
410 __fcpci_write_ctrl(bcs
, 3);
411 outsl(adapter
->io
+ AVM_DATA
+ HDLC_FIFO
,
413 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
415 case AVM_FRITZ_PCIV2
:
416 fcpci2_write_ctrl(bcs
, 3);
418 (bcs
->channel
? AVM_HDLC_FIFO_2
: AVM_HDLC_FIFO_1
),
422 spin_lock_irqsave(&adapter
->hw_lock
, flags
);
423 // sets the correct AVM_INDEX, too
424 __fcpnp_write_ctrl(bcs
, 3);
425 outsb(adapter
->io
+ AVM_DATA
, p
, count
);
426 spin_unlock_irqrestore(&adapter
->hw_lock
, flags
);
431 static inline void hdlc_empty_fifo(struct fritz_bcs
*bcs
, int count
)
433 struct fritz_adapter
*adapter
= bcs
->adapter
;
435 unsigned char idx
= bcs
->channel
? AVM_IDX_HDLC_2
: AVM_IDX_HDLC_1
;
437 DBG(0x10, "hdlc_empty_fifo %d", count
);
438 if (bcs
->rcvidx
+ count
> HSCX_BUFMAX
) {
439 DBG(0x10, "hdlc_empty_fifo: incoming packet too large");
442 p
= bcs
->rcvbuf
+ bcs
->rcvidx
;
443 bcs
->rcvidx
+= count
;
444 switch (adapter
->type
) {
446 spin_lock(&adapter
->hw_lock
);
447 outl(idx
, adapter
->io
+ AVM_INDEX
);
448 insl(adapter
->io
+ AVM_DATA
+ HDLC_FIFO
,
450 spin_unlock(&adapter
->hw_lock
);
452 case AVM_FRITZ_PCIV2
:
454 (bcs
->channel
? AVM_HDLC_FIFO_2
: AVM_HDLC_FIFO_1
),
458 spin_lock(&adapter
->hw_lock
);
459 outb(idx
, adapter
->io
+ AVM_INDEX
);
460 insb(adapter
->io
+ AVM_DATA
, p
, count
);
461 spin_unlock(&adapter
->hw_lock
);
466 static inline void hdlc_rpr_irq(struct fritz_bcs
*bcs
, u32 stat
)
468 struct fritz_adapter
*adapter
= bcs
->adapter
;
472 if (stat
& HDLC_STAT_RDO
) {
474 bcs
->ctrl
.sr
.xml
= 0;
475 bcs
->ctrl
.sr
.cmd
|= HDLC_CMD_RRS
;
476 adapter
->write_ctrl(bcs
, 1);
477 bcs
->ctrl
.sr
.cmd
&= ~HDLC_CMD_RRS
;
478 adapter
->write_ctrl(bcs
, 1);
483 len
= (stat
& HDLC_STAT_RML_MASK
) >> 8;
485 len
= bcs
->fifo_size
;
487 hdlc_empty_fifo(bcs
, len
);
489 if ((stat
& HDLC_STAT_RME
) || (bcs
->mode
== L1_MODE_TRANS
)) {
490 if (((stat
& HDLC_STAT_CRCVFRRAB
)== HDLC_STAT_CRCVFR
) ||
491 (bcs
->mode
== L1_MODE_TRANS
)) {
492 skb
= dev_alloc_skb(bcs
->rcvidx
);
494 printk(KERN_WARNING
"HDLC: receive out of memory\n");
496 memcpy(skb_put(skb
, bcs
->rcvidx
), bcs
->rcvbuf
,
499 B_L1L2(bcs
, PH_DATA
| INDICATION
, skb
);
503 DBG(0x10, "ch%d invalid frame %#x",
510 static inline void hdlc_xdu_irq(struct fritz_bcs
*bcs
)
512 struct fritz_adapter
*adapter
= bcs
->adapter
;
515 /* Here we lost an TX interrupt, so
516 * restart transmitting the whole frame.
518 bcs
->ctrl
.sr
.xml
= 0;
519 bcs
->ctrl
.sr
.cmd
|= HDLC_CMD_XRS
;
520 adapter
->write_ctrl(bcs
, 1);
521 bcs
->ctrl
.sr
.cmd
&= ~HDLC_CMD_XRS
;
524 DBG(0x10, "XDU without skb");
525 adapter
->write_ctrl(bcs
, 1);
528 /* only hdlc restarts the frame, transparent mode must continue */
529 if (bcs
->mode
== L1_MODE_HDLC
) {
530 skb_push(bcs
->tx_skb
, bcs
->tx_cnt
);
535 static inline void hdlc_xpr_irq(struct fritz_bcs
*bcs
)
549 B_L1L2(bcs
, PH_DATA
| CONFIRM
, (void *)(unsigned long)skb
->truesize
);
550 dev_kfree_skb_irq(skb
);
553 static void hdlc_irq_one(struct fritz_bcs
*bcs
, u32 stat
)
555 DBG(0x10, "ch%d stat %#x", bcs
->channel
, stat
);
556 if (stat
& HDLC_INT_RPR
) {
558 hdlc_rpr_irq(bcs
, stat
);
560 if (stat
& HDLC_INT_XDU
) {
566 if (stat
& HDLC_INT_XPR
) {
572 static inline void hdlc_irq(struct fritz_adapter
*adapter
)
577 for (nr
= 0; nr
< 2; nr
++) {
578 stat
= adapter
->read_hdlc_status(adapter
, nr
);
579 DBG(0x10, "HDLC %c stat %#x", 'A' + nr
, stat
);
580 if (stat
& HDLC_INT_MASK
)
581 hdlc_irq_one(&adapter
->bcs
[nr
], stat
);
585 static void modehdlc(struct fritz_bcs
*bcs
, int mode
)
587 struct fritz_adapter
*adapter
= bcs
->adapter
;
589 DBG(0x40, "hdlc %c mode %d --> %d",
590 'A' + bcs
->channel
, bcs
->mode
, mode
);
592 if (bcs
->mode
== mode
)
597 bcs
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
| HDLC_CMD_RRS
;
600 bcs
->ctrl
.sr
.mode
= HDLC_MODE_TRANS
;
601 adapter
->write_ctrl(bcs
, 5);
608 if (mode
== L1_MODE_TRANS
) {
609 bcs
->ctrl
.sr
.mode
= HDLC_MODE_TRANS
;
611 bcs
->ctrl
.sr
.mode
= HDLC_MODE_ITF_FLG
;
613 adapter
->write_ctrl(bcs
, 5);
614 bcs
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
;
615 adapter
->write_ctrl(bcs
, 1);
616 bcs
->ctrl
.sr
.cmd
= 0;
622 static void fritz_b_l2l1(struct hisax_if
*ifc
, int pr
, void *arg
)
624 struct fritz_bcs
*bcs
= ifc
->priv
;
625 struct sk_buff
*skb
= arg
;
628 DBG(0x10, "pr %#x", pr
);
631 case PH_DATA
| REQUEST
:
637 case PH_ACTIVATE
| REQUEST
:
639 DBG(4,"B%d,PH_ACTIVATE_REQUEST %d", bcs
->channel
+ 1, mode
);
641 B_L1L2(bcs
, PH_ACTIVATE
| INDICATION
, NULL
);
643 case PH_DEACTIVATE
| REQUEST
:
644 DBG(4,"B%d,PH_DEACTIVATE_REQUEST", bcs
->channel
+ 1);
645 modehdlc(bcs
, L1_MODE_NULL
);
646 B_L1L2(bcs
, PH_DEACTIVATE
| INDICATION
, NULL
);
651 // ----------------------------------------------------------------------
654 fcpci2_irq(int intno
, void *dev
)
656 struct fritz_adapter
*adapter
= dev
;
659 val
= inb(adapter
->io
+ AVM_STATUS0
);
660 if (!(val
& AVM_STATUS0_IRQ_MASK
))
661 /* hopefully a shared IRQ reqest */
663 DBG(2, "STATUS0 %#x", val
);
664 if (val
& AVM_STATUS0_IRQ_ISAC
)
665 isacsx_irq(&adapter
->isac
);
666 if (val
& AVM_STATUS0_IRQ_HDLC
)
668 if (val
& AVM_STATUS0_IRQ_ISAC
)
669 isacsx_irq(&adapter
->isac
);
674 fcpci_irq(int intno
, void *dev
)
676 struct fritz_adapter
*adapter
= dev
;
679 sval
= inb(adapter
->io
+ 2);
680 if ((sval
& AVM_STATUS0_IRQ_MASK
) == AVM_STATUS0_IRQ_MASK
)
681 /* possibly a shared IRQ reqest */
683 DBG(2, "sval %#x", sval
);
684 if (!(sval
& AVM_STATUS0_IRQ_ISAC
))
685 isac_irq(&adapter
->isac
);
687 if (!(sval
& AVM_STATUS0_IRQ_HDLC
))
692 // ----------------------------------------------------------------------
694 static inline void fcpci2_init(struct fritz_adapter
*adapter
)
696 outb(AVM_STATUS0_RES_TIMER
, adapter
->io
+ AVM_STATUS0
);
697 outb(AVM_STATUS0_ENA_IRQ
, adapter
->io
+ AVM_STATUS0
);
701 static inline void fcpci_init(struct fritz_adapter
*adapter
)
703 outb(AVM_STATUS0_DIS_TIMER
| AVM_STATUS0_RES_TIMER
|
704 AVM_STATUS0_ENA_IRQ
, adapter
->io
+ AVM_STATUS0
);
706 outb(AVM_STATUS1_ENA_IOM
| adapter
->irq
,
707 adapter
->io
+ AVM_STATUS1
);
711 // ----------------------------------------------------------------------
713 static int __devinit
fcpcipnp_setup(struct fritz_adapter
*adapter
)
720 isac_init(&adapter
->isac
); // FIXME is this okay now
723 if (!request_region(adapter
->io
, 32, "fcpcipnp"))
726 switch (adapter
->type
) {
727 case AVM_FRITZ_PCIV2
:
729 val
= inl(adapter
->io
);
732 val
= inb(adapter
->io
);
733 val
|= inb(adapter
->io
+ 1) << 8;
737 DBG(1, "stat %#x Class %X Rev %d",
738 val
, val
& 0xff, (val
>>8) & 0xff);
740 spin_lock_init(&adapter
->hw_lock
);
741 adapter
->isac
.priv
= adapter
;
742 switch (adapter
->type
) {
743 case AVM_FRITZ_PCIV2
:
744 adapter
->isac
.read_isac
= &fcpci2_read_isac
;
745 adapter
->isac
.write_isac
= &fcpci2_write_isac
;
746 adapter
->isac
.read_isac_fifo
= &fcpci2_read_isac_fifo
;
747 adapter
->isac
.write_isac_fifo
= &fcpci2_write_isac_fifo
;
749 adapter
->read_hdlc_status
= &fcpci2_read_hdlc_status
;
750 adapter
->write_ctrl
= &fcpci2_write_ctrl
;
753 adapter
->isac
.read_isac
= &fcpci_read_isac
;
754 adapter
->isac
.write_isac
= &fcpci_write_isac
;
755 adapter
->isac
.read_isac_fifo
= &fcpci_read_isac_fifo
;
756 adapter
->isac
.write_isac_fifo
= &fcpci_write_isac_fifo
;
758 adapter
->read_hdlc_status
= &fcpci_read_hdlc_status
;
759 adapter
->write_ctrl
= &fcpci_write_ctrl
;
762 adapter
->isac
.read_isac
= &fcpci_read_isac
;
763 adapter
->isac
.write_isac
= &fcpci_write_isac
;
764 adapter
->isac
.read_isac_fifo
= &fcpci_read_isac_fifo
;
765 adapter
->isac
.write_isac_fifo
= &fcpci_write_isac_fifo
;
767 adapter
->read_hdlc_status
= &fcpnp_read_hdlc_status
;
768 adapter
->write_ctrl
= &fcpnp_write_ctrl
;
773 outb(0, adapter
->io
+ AVM_STATUS0
);
775 outb(AVM_STATUS0_RESET
, adapter
->io
+ AVM_STATUS0
);
777 outb(0, adapter
->io
+ AVM_STATUS0
);
780 switch (adapter
->type
) {
781 case AVM_FRITZ_PCIV2
:
782 retval
= request_irq(adapter
->irq
, fcpci2_irq
, IRQF_SHARED
,
783 "fcpcipnp", adapter
);
786 retval
= request_irq(adapter
->irq
, fcpci_irq
, IRQF_SHARED
,
787 "fcpcipnp", adapter
);
790 retval
= request_irq(adapter
->irq
, fcpci_irq
, 0,
791 "fcpcipnp", adapter
);
797 switch (adapter
->type
) {
798 case AVM_FRITZ_PCIV2
:
799 fcpci2_init(adapter
);
800 isacsx_setup(&adapter
->isac
);
805 isac_setup(&adapter
->isac
);
808 val
= adapter
->read_hdlc_status(adapter
, 0);
809 DBG(0x20, "HDLC A STA %x", val
);
810 val
= adapter
->read_hdlc_status(adapter
, 1);
811 DBG(0x20, "HDLC B STA %x", val
);
813 adapter
->bcs
[0].mode
= -1;
814 adapter
->bcs
[1].mode
= -1;
815 modehdlc(&adapter
->bcs
[0], L1_MODE_NULL
);
816 modehdlc(&adapter
->bcs
[1], L1_MODE_NULL
);
821 release_region(adapter
->io
, 32);
826 static void __devexit
fcpcipnp_release(struct fritz_adapter
*adapter
)
830 outb(0, adapter
->io
+ AVM_STATUS0
);
831 free_irq(adapter
->irq
, adapter
);
832 release_region(adapter
->io
, 32);
835 // ----------------------------------------------------------------------
837 static struct fritz_adapter
* __devinit
840 struct fritz_adapter
*adapter
;
841 struct hisax_b_if
*b_if
[2];
844 adapter
= kzalloc(sizeof(struct fritz_adapter
), GFP_KERNEL
);
848 adapter
->isac
.hisax_d_if
.owner
= THIS_MODULE
;
849 adapter
->isac
.hisax_d_if
.ifc
.priv
= &adapter
->isac
;
850 adapter
->isac
.hisax_d_if
.ifc
.l2l1
= isac_d_l2l1
;
852 for (i
= 0; i
< 2; i
++) {
853 adapter
->bcs
[i
].adapter
= adapter
;
854 adapter
->bcs
[i
].channel
= i
;
855 adapter
->bcs
[i
].b_if
.ifc
.priv
= &adapter
->bcs
[i
];
856 adapter
->bcs
[i
].b_if
.ifc
.l2l1
= fritz_b_l2l1
;
859 for (i
= 0; i
< 2; i
++)
860 b_if
[i
] = &adapter
->bcs
[i
].b_if
;
862 if (hisax_register(&adapter
->isac
.hisax_d_if
, b_if
, "fcpcipnp",
871 static void delete_adapter(struct fritz_adapter
*adapter
)
873 hisax_unregister(&adapter
->isac
.hisax_d_if
);
877 static int __devinit
fcpci_probe(struct pci_dev
*pdev
,
878 const struct pci_device_id
*ent
)
880 struct fritz_adapter
*adapter
;
884 adapter
= new_adapter();
888 pci_set_drvdata(pdev
, adapter
);
890 if (pdev
->device
== PCI_DEVICE_ID_AVM_A1_V2
)
891 adapter
->type
= AVM_FRITZ_PCIV2
;
893 adapter
->type
= AVM_FRITZ_PCI
;
895 retval
= pci_enable_device(pdev
);
899 adapter
->io
= pci_resource_start(pdev
, 1);
900 adapter
->irq
= pdev
->irq
;
902 printk(KERN_INFO
"hisax_fcpcipnp: found adapter %s at %s\n",
903 (char *) ent
->driver_data
, pci_name(pdev
));
905 retval
= fcpcipnp_setup(adapter
);
912 delete_adapter(adapter
);
918 static int __devinit
fcpnp_probe(struct pnp_dev
*pdev
, const struct pnp_device_id
*dev_id
)
920 struct fritz_adapter
*adapter
;
927 adapter
= new_adapter();
931 pnp_set_drvdata(pdev
, adapter
);
933 adapter
->type
= AVM_FRITZ_PNP
;
935 pnp_disable_dev(pdev
);
936 retval
= pnp_activate_dev(pdev
);
938 printk(KERN_WARNING
"%s: pnp_activate_dev(%s) ret(%d)\n", __func__
,
939 (char *)dev_id
->driver_data
, retval
);
942 adapter
->io
= pnp_port_start(pdev
, 0);
943 adapter
->irq
= pnp_irq(pdev
, 0);
945 printk(KERN_INFO
"hisax_fcpcipnp: found adapter %s at IO %#x irq %d\n",
946 (char *) dev_id
->driver_data
, adapter
->io
, adapter
->irq
);
948 retval
= fcpcipnp_setup(adapter
);
955 delete_adapter(adapter
);
960 static void __devexit
fcpnp_remove(struct pnp_dev
*pdev
)
962 struct fritz_adapter
*adapter
= pnp_get_drvdata(pdev
);
965 fcpcipnp_release(adapter
);
966 delete_adapter(adapter
);
968 pnp_disable_dev(pdev
);
971 static struct pnp_driver fcpnp_driver
= {
973 .probe
= fcpnp_probe
,
974 .remove
= __devexit_p(fcpnp_remove
),
975 .id_table
= fcpnp_ids
,
979 static void __devexit
fcpci_remove(struct pci_dev
*pdev
)
981 struct fritz_adapter
*adapter
= pci_get_drvdata(pdev
);
983 fcpcipnp_release(adapter
);
984 pci_disable_device(pdev
);
985 delete_adapter(adapter
);
988 static struct pci_driver fcpci_driver
= {
990 .probe
= fcpci_probe
,
991 .remove
= __devexit_p(fcpci_remove
),
992 .id_table
= fcpci_ids
,
995 static int __init
hisax_fcpcipnp_init(void)
999 printk(KERN_INFO
"hisax_fcpcipnp: Fritz!Card PCI/PCIv2/PnP ISDN driver v0.0.1\n");
1001 retval
= pci_register_driver(&fcpci_driver
);
1005 retval
= pnp_register_driver(&fcpnp_driver
);
1007 pci_unregister_driver(&fcpci_driver
);
1014 static void __exit
hisax_fcpcipnp_exit(void)
1017 pnp_unregister_driver(&fcpnp_driver
);
1019 pci_unregister_driver(&fcpci_driver
);
1022 module_init(hisax_fcpcipnp_init
);
1023 module_exit(hisax_fcpcipnp_exit
);