2 * avm_fritz.c low level stuff for AVM FRITZ!CARD PCI ISDN cards
3 * Thanks to AVM, Berlin for informations
5 * Author Karsten Keil <keil@isdn4linux.de>
7 * Copyright 2009 by Karsten Keil <keil@isdn4linux.de>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/interrupt.h>
24 #include <linux/module.h>
25 #include <linux/pci.h>
26 #include <linux/delay.h>
27 #include <linux/mISDNhw.h>
28 #include <linux/slab.h>
29 #include <asm/unaligned.h>
33 #define AVMFRITZ_REV "2.3"
44 #define HDLC_STATUS 0x4
45 #define CHIP_WINDOW 0x10
47 #define CHIP_INDEX 0x4
48 #define AVM_HDLC_1 0x00
49 #define AVM_HDLC_2 0x01
50 #define AVM_ISAC_FIFO 0x02
51 #define AVM_ISAC_REG_LOW 0x04
52 #define AVM_ISAC_REG_HIGH 0x06
54 #define AVM_STATUS0_IRQ_ISAC 0x01
55 #define AVM_STATUS0_IRQ_HDLC 0x02
56 #define AVM_STATUS0_IRQ_TIMER 0x04
57 #define AVM_STATUS0_IRQ_MASK 0x07
59 #define AVM_STATUS0_RESET 0x01
60 #define AVM_STATUS0_DIS_TIMER 0x02
61 #define AVM_STATUS0_RES_TIMER 0x04
62 #define AVM_STATUS0_ENA_IRQ 0x08
63 #define AVM_STATUS0_TESTBIT 0x10
65 #define AVM_STATUS1_INT_SEL 0x0f
66 #define AVM_STATUS1_ENA_IOM 0x80
68 #define HDLC_MODE_ITF_FLG 0x01
69 #define HDLC_MODE_TRANS 0x02
70 #define HDLC_MODE_CCR_7 0x04
71 #define HDLC_MODE_CCR_16 0x08
72 #define HDLC_FIFO_SIZE_128 0x20
73 #define HDLC_MODE_TESTLOOP 0x80
75 #define HDLC_INT_XPR 0x80
76 #define HDLC_INT_XDU 0x40
77 #define HDLC_INT_RPR 0x20
78 #define HDLC_INT_MASK 0xE0
80 #define HDLC_STAT_RME 0x01
81 #define HDLC_STAT_RDO 0x10
82 #define HDLC_STAT_CRCVFRRAB 0x0E
83 #define HDLC_STAT_CRCVFR 0x06
84 #define HDLC_STAT_RML_MASK_V1 0x3f00
85 #define HDLC_STAT_RML_MASK_V2 0x7f00
87 #define HDLC_CMD_XRS 0x80
88 #define HDLC_CMD_XME 0x01
89 #define HDLC_CMD_RRS 0x20
90 #define HDLC_CMD_XML_MASK 0x3f00
92 #define HDLC_FIFO_SIZE_V1 32
93 #define HDLC_FIFO_SIZE_V2 128
97 #define AVM_HDLC_FIFO_1 0x10
98 #define AVM_HDLC_FIFO_2 0x18
100 #define AVM_HDLC_STATUS_1 0x14
101 #define AVM_HDLC_STATUS_2 0x1c
103 #define AVM_ISACX_INDEX 0x04
104 #define AVM_ISACX_DATA 0x08
109 struct hdlc_stat_reg
{
121 } __attribute__((packed
));
126 struct hdlc_stat_reg sr
;
132 struct list_head list
;
133 struct pci_dev
*pdev
;
134 char name
[MISDN_MAX_IDLEN
];
140 spinlock_t lock
; /* hw lock */
142 struct hdlc_hw hdlc
[2];
143 struct bchannel bch
[2];
144 char log
[LOG_SIZE
+ 1];
147 static LIST_HEAD(Cards
);
148 static DEFINE_RWLOCK(card_lock
); /* protect Cards */
151 _set_debug(struct fritzcard
*card
)
153 card
->isac
.dch
.debug
= debug
;
154 card
->bch
[0].debug
= debug
;
155 card
->bch
[1].debug
= debug
;
159 set_debug(const char *val
, const struct kernel_param
*kp
)
162 struct fritzcard
*card
;
164 ret
= param_set_uint(val
, kp
);
166 read_lock(&card_lock
);
167 list_for_each_entry(card
, &Cards
, list
)
169 read_unlock(&card_lock
);
174 MODULE_AUTHOR("Karsten Keil");
175 MODULE_LICENSE("GPL v2");
176 MODULE_VERSION(AVMFRITZ_REV
);
177 module_param_call(debug
, set_debug
, param_get_uint
, &debug
, S_IRUGO
| S_IWUSR
);
178 MODULE_PARM_DESC(debug
, "avmfritz debug mask");
180 /* Interface functions */
183 ReadISAC_V1(void *p
, u8 offset
)
185 struct fritzcard
*fc
= p
;
186 u8 idx
= (offset
> 0x2f) ? AVM_ISAC_REG_HIGH
: AVM_ISAC_REG_LOW
;
188 outb(idx
, fc
->addr
+ CHIP_INDEX
);
189 return inb(fc
->addr
+ CHIP_WINDOW
+ (offset
& 0xf));
193 WriteISAC_V1(void *p
, u8 offset
, u8 value
)
195 struct fritzcard
*fc
= p
;
196 u8 idx
= (offset
> 0x2f) ? AVM_ISAC_REG_HIGH
: AVM_ISAC_REG_LOW
;
198 outb(idx
, fc
->addr
+ CHIP_INDEX
);
199 outb(value
, fc
->addr
+ CHIP_WINDOW
+ (offset
& 0xf));
203 ReadFiFoISAC_V1(void *p
, u8 off
, u8
*data
, int size
)
205 struct fritzcard
*fc
= p
;
207 outb(AVM_ISAC_FIFO
, fc
->addr
+ CHIP_INDEX
);
208 insb(fc
->addr
+ CHIP_WINDOW
, data
, size
);
212 WriteFiFoISAC_V1(void *p
, u8 off
, u8
*data
, int size
)
214 struct fritzcard
*fc
= p
;
216 outb(AVM_ISAC_FIFO
, fc
->addr
+ CHIP_INDEX
);
217 outsb(fc
->addr
+ CHIP_WINDOW
, data
, size
);
221 ReadISAC_V2(void *p
, u8 offset
)
223 struct fritzcard
*fc
= p
;
225 outl(offset
, fc
->addr
+ AVM_ISACX_INDEX
);
226 return 0xff & inl(fc
->addr
+ AVM_ISACX_DATA
);
230 WriteISAC_V2(void *p
, u8 offset
, u8 value
)
232 struct fritzcard
*fc
= p
;
234 outl(offset
, fc
->addr
+ AVM_ISACX_INDEX
);
235 outl(value
, fc
->addr
+ AVM_ISACX_DATA
);
239 ReadFiFoISAC_V2(void *p
, u8 off
, u8
*data
, int size
)
241 struct fritzcard
*fc
= p
;
244 outl(off
, fc
->addr
+ AVM_ISACX_INDEX
);
245 for (i
= 0; i
< size
; i
++)
246 data
[i
] = 0xff & inl(fc
->addr
+ AVM_ISACX_DATA
);
250 WriteFiFoISAC_V2(void *p
, u8 off
, u8
*data
, int size
)
252 struct fritzcard
*fc
= p
;
255 outl(off
, fc
->addr
+ AVM_ISACX_INDEX
);
256 for (i
= 0; i
< size
; i
++)
257 outl(data
[i
], fc
->addr
+ AVM_ISACX_DATA
);
260 static struct bchannel
*
261 Sel_BCS(struct fritzcard
*fc
, u32 channel
)
263 if (test_bit(FLG_ACTIVE
, &fc
->bch
[0].Flags
) &&
264 (fc
->bch
[0].nr
& channel
))
266 else if (test_bit(FLG_ACTIVE
, &fc
->bch
[1].Flags
) &&
267 (fc
->bch
[1].nr
& channel
))
274 __write_ctrl_pci(struct fritzcard
*fc
, struct hdlc_hw
*hdlc
, u32 channel
) {
275 u32 idx
= channel
== 2 ? AVM_HDLC_2
: AVM_HDLC_1
;
277 outl(idx
, fc
->addr
+ CHIP_INDEX
);
278 outl(hdlc
->ctrl
.ctrl
, fc
->addr
+ CHIP_WINDOW
+ HDLC_STATUS
);
282 __write_ctrl_pciv2(struct fritzcard
*fc
, struct hdlc_hw
*hdlc
, u32 channel
) {
283 outl(hdlc
->ctrl
.ctrl
, fc
->addr
+ (channel
== 2 ? AVM_HDLC_STATUS_2
:
288 write_ctrl(struct bchannel
*bch
, int which
) {
289 struct fritzcard
*fc
= bch
->hw
;
290 struct hdlc_hw
*hdlc
;
292 hdlc
= &fc
->hdlc
[(bch
->nr
- 1) & 1];
293 pr_debug("%s: hdlc %c wr%x ctrl %x\n", fc
->name
, '@' + bch
->nr
,
294 which
, hdlc
->ctrl
.ctrl
);
296 case AVM_FRITZ_PCIV2
:
297 __write_ctrl_pciv2(fc
, hdlc
, bch
->nr
);
300 __write_ctrl_pci(fc
, hdlc
, bch
->nr
);
307 __read_status_pci(u_long addr
, u32 channel
)
309 outl(channel
== 2 ? AVM_HDLC_2
: AVM_HDLC_1
, addr
+ CHIP_INDEX
);
310 return inl(addr
+ CHIP_WINDOW
+ HDLC_STATUS
);
314 __read_status_pciv2(u_long addr
, u32 channel
)
316 return inl(addr
+ (channel
== 2 ? AVM_HDLC_STATUS_2
:
322 read_status(struct fritzcard
*fc
, u32 channel
)
325 case AVM_FRITZ_PCIV2
:
326 return __read_status_pciv2(fc
->addr
, channel
);
328 return __read_status_pci(fc
->addr
, channel
);
335 enable_hwirq(struct fritzcard
*fc
)
337 fc
->ctrlreg
|= AVM_STATUS0_ENA_IRQ
;
338 outb(fc
->ctrlreg
, fc
->addr
+ 2);
342 disable_hwirq(struct fritzcard
*fc
)
344 fc
->ctrlreg
&= ~AVM_STATUS0_ENA_IRQ
;
345 outb(fc
->ctrlreg
, fc
->addr
+ 2);
349 modehdlc(struct bchannel
*bch
, int protocol
)
351 struct fritzcard
*fc
= bch
->hw
;
352 struct hdlc_hw
*hdlc
;
355 hdlc
= &fc
->hdlc
[(bch
->nr
- 1) & 1];
356 pr_debug("%s: hdlc %c protocol %x-->%x ch %d\n", fc
->name
,
357 '@' + bch
->nr
, bch
->state
, protocol
, bch
->nr
);
359 mode
= (fc
->type
== AVM_FRITZ_PCIV2
) ? HDLC_FIFO_SIZE_128
: 0;
362 case -1: /* used for init */
366 if (bch
->state
== ISDN_P_NONE
)
368 hdlc
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
| HDLC_CMD_RRS
;
369 hdlc
->ctrl
.sr
.mode
= mode
| HDLC_MODE_TRANS
;
371 bch
->state
= ISDN_P_NONE
;
372 test_and_clear_bit(FLG_HDLC
, &bch
->Flags
);
373 test_and_clear_bit(FLG_TRANSPARENT
, &bch
->Flags
);
376 bch
->state
= protocol
;
377 hdlc
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
| HDLC_CMD_RRS
;
378 hdlc
->ctrl
.sr
.mode
= mode
| HDLC_MODE_TRANS
;
380 hdlc
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
;
382 hdlc
->ctrl
.sr
.cmd
= 0;
383 test_and_set_bit(FLG_TRANSPARENT
, &bch
->Flags
);
386 bch
->state
= protocol
;
387 hdlc
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
| HDLC_CMD_RRS
;
388 hdlc
->ctrl
.sr
.mode
= mode
| HDLC_MODE_ITF_FLG
;
390 hdlc
->ctrl
.sr
.cmd
= HDLC_CMD_XRS
;
392 hdlc
->ctrl
.sr
.cmd
= 0;
393 test_and_set_bit(FLG_HDLC
, &bch
->Flags
);
396 pr_info("%s: protocol not known %x\n", fc
->name
, protocol
);
403 hdlc_empty_fifo(struct bchannel
*bch
, int count
)
409 struct fritzcard
*fc
= bch
->hw
;
411 pr_debug("%s: %s %d\n", fc
->name
, __func__
, count
);
412 if (test_bit(FLG_RX_OFF
, &bch
->Flags
)) {
414 bch
->dropcnt
+= count
;
416 cnt
= bchannel_get_rxbuf(bch
, count
);
418 pr_warning("%s.B%d: No bufferspace for %d bytes\n",
419 fc
->name
, bch
->nr
, count
);
422 p
= skb_put(bch
->rx_skb
, count
);
425 if (fc
->type
== AVM_FRITZ_PCIV2
)
426 addr
= fc
->addr
+ (bch
->nr
== 2 ?
427 AVM_HDLC_FIFO_2
: AVM_HDLC_FIFO_1
);
429 addr
= fc
->addr
+ CHIP_WINDOW
;
430 outl(bch
->nr
== 2 ? AVM_HDLC_2
: AVM_HDLC_1
, fc
->addr
);
433 while (cnt
< count
) {
434 val
= le32_to_cpu(inl(addr
));
436 put_unaligned(val
, ptr
);
441 if (p
&& (debug
& DEBUG_HW_BFIFO
)) {
442 snprintf(fc
->log
, LOG_SIZE
, "B%1d-recv %s %d ",
443 bch
->nr
, fc
->name
, count
);
444 print_hex_dump_bytes(fc
->log
, DUMP_PREFIX_OFFSET
, p
, count
);
449 hdlc_fill_fifo(struct bchannel
*bch
)
451 struct fritzcard
*fc
= bch
->hw
;
452 struct hdlc_hw
*hdlc
;
453 int count
, fs
, cnt
= 0, idx
;
454 bool fillempty
= false;
458 idx
= (bch
->nr
- 1) & 1;
459 hdlc
= &fc
->hdlc
[idx
];
460 fs
= (fc
->type
== AVM_FRITZ_PCIV2
) ?
461 HDLC_FIFO_SIZE_V2
: HDLC_FIFO_SIZE_V1
;
463 if (!test_bit(FLG_TX_EMPTY
, &bch
->Flags
))
469 count
= bch
->tx_skb
->len
- bch
->tx_idx
;
472 p
= bch
->tx_skb
->data
+ bch
->tx_idx
;
474 hdlc
->ctrl
.sr
.cmd
&= ~HDLC_CMD_XME
;
478 if (test_bit(FLG_HDLC
, &bch
->Flags
))
479 hdlc
->ctrl
.sr
.cmd
|= HDLC_CMD_XME
;
483 pr_debug("%s.B%d: %d/%d/%d", fc
->name
, bch
->nr
, count
,
484 bch
->tx_idx
, bch
->tx_skb
->len
);
485 bch
->tx_idx
+= count
;
487 pr_debug("%s.B%d: fillempty %d\n", fc
->name
, bch
->nr
, count
);
489 hdlc
->ctrl
.sr
.xml
= ((count
== fs
) ? 0 : count
);
490 if (fc
->type
== AVM_FRITZ_PCIV2
) {
491 __write_ctrl_pciv2(fc
, hdlc
, bch
->nr
);
492 addr
= fc
->addr
+ (bch
->nr
== 2 ?
493 AVM_HDLC_FIFO_2
: AVM_HDLC_FIFO_1
);
495 __write_ctrl_pci(fc
, hdlc
, bch
->nr
);
496 addr
= fc
->addr
+ CHIP_WINDOW
;
499 while (cnt
< count
) {
500 /* all bytes the same - no worry about endian */
505 while (cnt
< count
) {
506 val
= get_unaligned(ptr
);
507 outl(cpu_to_le32(val
), addr
);
512 if ((debug
& DEBUG_HW_BFIFO
) && !fillempty
) {
513 snprintf(fc
->log
, LOG_SIZE
, "B%1d-send %s %d ",
514 bch
->nr
, fc
->name
, count
);
515 print_hex_dump_bytes(fc
->log
, DUMP_PREFIX_OFFSET
, p
, count
);
520 HDLC_irq_xpr(struct bchannel
*bch
)
522 if (bch
->tx_skb
&& bch
->tx_idx
< bch
->tx_skb
->len
) {
526 dev_kfree_skb(bch
->tx_skb
);
527 if (get_next_bframe(bch
)) {
529 test_and_clear_bit(FLG_TX_EMPTY
, &bch
->Flags
);
530 } else if (test_bit(FLG_TX_EMPTY
, &bch
->Flags
)) {
537 HDLC_irq(struct bchannel
*bch
, u32 stat
)
539 struct fritzcard
*fc
= bch
->hw
;
542 struct hdlc_hw
*hdlc
;
544 hdlc
= &fc
->hdlc
[(bch
->nr
- 1) & 1];
545 pr_debug("%s: ch%d stat %#x\n", fc
->name
, bch
->nr
, stat
);
546 if (fc
->type
== AVM_FRITZ_PCIV2
) {
547 rmlMask
= HDLC_STAT_RML_MASK_V2
;
548 fs
= HDLC_FIFO_SIZE_V2
;
550 rmlMask
= HDLC_STAT_RML_MASK_V1
;
551 fs
= HDLC_FIFO_SIZE_V1
;
553 if (stat
& HDLC_INT_RPR
) {
554 if (stat
& HDLC_STAT_RDO
) {
555 pr_warning("%s: ch%d stat %x RDO\n",
556 fc
->name
, bch
->nr
, stat
);
557 hdlc
->ctrl
.sr
.xml
= 0;
558 hdlc
->ctrl
.sr
.cmd
|= HDLC_CMD_RRS
;
560 hdlc
->ctrl
.sr
.cmd
&= ~HDLC_CMD_RRS
;
563 skb_trim(bch
->rx_skb
, 0);
565 len
= (stat
& rmlMask
) >> 8;
568 hdlc_empty_fifo(bch
, len
);
571 if (test_bit(FLG_TRANSPARENT
, &bch
->Flags
)) {
572 recv_Bchannel(bch
, 0, false);
573 } else if (stat
& HDLC_STAT_RME
) {
574 if ((stat
& HDLC_STAT_CRCVFRRAB
) ==
576 recv_Bchannel(bch
, 0, false);
578 pr_warning("%s: got invalid frame\n",
580 skb_trim(bch
->rx_skb
, 0);
586 if (stat
& HDLC_INT_XDU
) {
587 /* Here we lost an TX interrupt, so
588 * restart transmitting the whole frame on HDLC
589 * in transparent mode we send the next data
591 pr_warning("%s: ch%d stat %x XDU %s\n", fc
->name
, bch
->nr
,
592 stat
, bch
->tx_skb
? "tx_skb" : "no tx_skb");
593 if (bch
->tx_skb
&& bch
->tx_skb
->len
) {
594 if (!test_bit(FLG_TRANSPARENT
, &bch
->Flags
))
596 } else if (test_bit(FLG_FILLEMPTY
, &bch
->Flags
)) {
597 test_and_set_bit(FLG_TX_EMPTY
, &bch
->Flags
);
599 hdlc
->ctrl
.sr
.xml
= 0;
600 hdlc
->ctrl
.sr
.cmd
|= HDLC_CMD_XRS
;
602 hdlc
->ctrl
.sr
.cmd
&= ~HDLC_CMD_XRS
;
605 } else if (stat
& HDLC_INT_XPR
)
610 HDLC_irq_main(struct fritzcard
*fc
)
613 struct bchannel
*bch
;
615 stat
= read_status(fc
, 1);
616 if (stat
& HDLC_INT_MASK
) {
617 bch
= Sel_BCS(fc
, 1);
621 pr_debug("%s: spurious ch1 IRQ\n", fc
->name
);
623 stat
= read_status(fc
, 2);
624 if (stat
& HDLC_INT_MASK
) {
625 bch
= Sel_BCS(fc
, 2);
629 pr_debug("%s: spurious ch2 IRQ\n", fc
->name
);
634 avm_fritz_interrupt(int intno
, void *dev_id
)
636 struct fritzcard
*fc
= dev_id
;
640 spin_lock(&fc
->lock
);
641 sval
= inb(fc
->addr
+ 2);
642 pr_debug("%s: irq stat0 %x\n", fc
->name
, sval
);
643 if ((sval
& AVM_STATUS0_IRQ_MASK
) == AVM_STATUS0_IRQ_MASK
) {
644 /* shared IRQ from other HW */
645 spin_unlock(&fc
->lock
);
650 if (!(sval
& AVM_STATUS0_IRQ_ISAC
)) {
651 val
= ReadISAC_V1(fc
, ISAC_ISTA
);
652 mISDNisac_irq(&fc
->isac
, val
);
654 if (!(sval
& AVM_STATUS0_IRQ_HDLC
))
656 spin_unlock(&fc
->lock
);
661 avm_fritzv2_interrupt(int intno
, void *dev_id
)
663 struct fritzcard
*fc
= dev_id
;
667 spin_lock(&fc
->lock
);
668 sval
= inb(fc
->addr
+ 2);
669 pr_debug("%s: irq stat0 %x\n", fc
->name
, sval
);
670 if (!(sval
& AVM_STATUS0_IRQ_MASK
)) {
671 /* shared IRQ from other HW */
672 spin_unlock(&fc
->lock
);
677 if (sval
& AVM_STATUS0_IRQ_HDLC
)
679 if (sval
& AVM_STATUS0_IRQ_ISAC
) {
680 val
= ReadISAC_V2(fc
, ISACX_ISTA
);
681 mISDNisac_irq(&fc
->isac
, val
);
683 if (sval
& AVM_STATUS0_IRQ_TIMER
) {
684 pr_debug("%s: timer irq\n", fc
->name
);
685 outb(fc
->ctrlreg
| AVM_STATUS0_RES_TIMER
, fc
->addr
+ 2);
687 outb(fc
->ctrlreg
, fc
->addr
+ 2);
689 spin_unlock(&fc
->lock
);
694 avm_l2l1B(struct mISDNchannel
*ch
, struct sk_buff
*skb
)
696 struct bchannel
*bch
= container_of(ch
, struct bchannel
, ch
);
697 struct fritzcard
*fc
= bch
->hw
;
699 struct mISDNhead
*hh
= mISDN_HEAD_P(skb
);
704 spin_lock_irqsave(&fc
->lock
, flags
);
705 ret
= bchannel_senddata(bch
, skb
);
706 if (ret
> 0) { /* direct TX */
710 spin_unlock_irqrestore(&fc
->lock
, flags
);
712 case PH_ACTIVATE_REQ
:
713 spin_lock_irqsave(&fc
->lock
, flags
);
714 if (!test_and_set_bit(FLG_ACTIVE
, &bch
->Flags
))
715 ret
= modehdlc(bch
, ch
->protocol
);
718 spin_unlock_irqrestore(&fc
->lock
, flags
);
720 _queue_data(ch
, PH_ACTIVATE_IND
, MISDN_ID_ANY
, 0,
723 case PH_DEACTIVATE_REQ
:
724 spin_lock_irqsave(&fc
->lock
, flags
);
725 mISDN_clear_bchannel(bch
);
726 modehdlc(bch
, ISDN_P_NONE
);
727 spin_unlock_irqrestore(&fc
->lock
, flags
);
728 _queue_data(ch
, PH_DEACTIVATE_IND
, MISDN_ID_ANY
, 0,
739 inithdlc(struct fritzcard
*fc
)
741 modehdlc(&fc
->bch
[0], -1);
742 modehdlc(&fc
->bch
[1], -1);
746 clear_pending_hdlc_ints(struct fritzcard
*fc
)
750 val
= read_status(fc
, 1);
751 pr_debug("%s: HDLC 1 STA %x\n", fc
->name
, val
);
752 val
= read_status(fc
, 2);
753 pr_debug("%s: HDLC 2 STA %x\n", fc
->name
, val
);
757 reset_avm(struct fritzcard
*fc
)
761 fc
->ctrlreg
= AVM_STATUS0_RESET
| AVM_STATUS0_DIS_TIMER
;
763 case AVM_FRITZ_PCIV2
:
764 fc
->ctrlreg
= AVM_STATUS0_RESET
;
767 if (debug
& DEBUG_HW
)
768 pr_notice("%s: reset\n", fc
->name
);
773 fc
->ctrlreg
= AVM_STATUS0_DIS_TIMER
| AVM_STATUS0_RES_TIMER
;
775 outb(AVM_STATUS1_ENA_IOM
, fc
->addr
+ 3);
777 case AVM_FRITZ_PCIV2
:
783 if (debug
& DEBUG_HW
)
784 pr_notice("%s: S0/S1 %x/%x\n", fc
->name
,
785 inb(fc
->addr
+ 2), inb(fc
->addr
+ 3));
789 init_card(struct fritzcard
*fc
)
794 reset_avm(fc
); /* disable IRQ */
795 if (fc
->type
== AVM_FRITZ_PCIV2
)
796 ret
= request_irq(fc
->irq
, avm_fritzv2_interrupt
,
797 IRQF_SHARED
, fc
->name
, fc
);
799 ret
= request_irq(fc
->irq
, avm_fritz_interrupt
,
800 IRQF_SHARED
, fc
->name
, fc
);
802 pr_info("%s: couldn't get interrupt %d\n",
807 spin_lock_irqsave(&fc
->lock
, flags
);
808 ret
= fc
->isac
.init(&fc
->isac
);
810 spin_unlock_irqrestore(&fc
->lock
, flags
);
811 pr_info("%s: ISAC init failed with %d\n",
815 clear_pending_hdlc_ints(fc
);
818 /* RESET Receiver and Transmitter */
819 if (fc
->type
== AVM_FRITZ_PCIV2
) {
820 WriteISAC_V2(fc
, ISACX_MASK
, 0);
821 WriteISAC_V2(fc
, ISACX_CMDRD
, 0x41);
823 WriteISAC_V1(fc
, ISAC_MASK
, 0);
824 WriteISAC_V1(fc
, ISAC_CMDR
, 0x41);
826 spin_unlock_irqrestore(&fc
->lock
, flags
);
828 msleep_interruptible(10);
829 if (debug
& DEBUG_HW
)
830 pr_notice("%s: IRQ %d count %d\n", fc
->name
,
831 fc
->irq
, fc
->irqcnt
);
833 pr_info("%s: IRQ(%d) getting no IRQs during init %d\n",
834 fc
->name
, fc
->irq
, 3 - cnt
);
839 free_irq(fc
->irq
, fc
);
844 channel_bctrl(struct bchannel
*bch
, struct mISDN_ctrl_req
*cq
)
846 return mISDN_ctrl_bchannel(bch
, cq
);
850 avm_bctrl(struct mISDNchannel
*ch
, u32 cmd
, void *arg
)
852 struct bchannel
*bch
= container_of(ch
, struct bchannel
, ch
);
853 struct fritzcard
*fc
= bch
->hw
;
857 pr_debug("%s: %s cmd:%x %p\n", fc
->name
, __func__
, cmd
, arg
);
860 test_and_clear_bit(FLG_OPEN
, &bch
->Flags
);
861 cancel_work_sync(&bch
->workq
);
862 spin_lock_irqsave(&fc
->lock
, flags
);
863 mISDN_clear_bchannel(bch
);
864 modehdlc(bch
, ISDN_P_NONE
);
865 spin_unlock_irqrestore(&fc
->lock
, flags
);
866 ch
->protocol
= ISDN_P_NONE
;
868 module_put(THIS_MODULE
);
871 case CONTROL_CHANNEL
:
872 ret
= channel_bctrl(bch
, arg
);
875 pr_info("%s: %s unknown prim(%x)\n", fc
->name
, __func__
, cmd
);
881 channel_ctrl(struct fritzcard
*fc
, struct mISDN_ctrl_req
*cq
)
886 case MISDN_CTRL_GETOP
:
887 cq
->op
= MISDN_CTRL_LOOP
| MISDN_CTRL_L1_TIMER3
;
889 case MISDN_CTRL_LOOP
:
890 /* cq->channel: 0 disable, 1 B1 loop 2 B2 loop, 3 both */
891 if (cq
->channel
< 0 || cq
->channel
> 3) {
895 ret
= fc
->isac
.ctrl(&fc
->isac
, HW_TESTLOOP
, cq
->channel
);
897 case MISDN_CTRL_L1_TIMER3
:
898 ret
= fc
->isac
.ctrl(&fc
->isac
, HW_TIMER3_VALUE
, cq
->p1
);
901 pr_info("%s: %s unknown Op %x\n", fc
->name
, __func__
, cq
->op
);
909 open_bchannel(struct fritzcard
*fc
, struct channel_req
*rq
)
911 struct bchannel
*bch
;
913 if (rq
->adr
.channel
== 0 || rq
->adr
.channel
> 2)
915 if (rq
->protocol
== ISDN_P_NONE
)
917 bch
= &fc
->bch
[rq
->adr
.channel
- 1];
918 if (test_and_set_bit(FLG_OPEN
, &bch
->Flags
))
919 return -EBUSY
; /* b-channel can be only open once */
920 bch
->ch
.protocol
= rq
->protocol
;
926 * device control function
929 avm_dctrl(struct mISDNchannel
*ch
, u32 cmd
, void *arg
)
931 struct mISDNdevice
*dev
= container_of(ch
, struct mISDNdevice
, D
);
932 struct dchannel
*dch
= container_of(dev
, struct dchannel
, dev
);
933 struct fritzcard
*fc
= dch
->hw
;
934 struct channel_req
*rq
;
937 pr_debug("%s: %s cmd:%x %p\n", fc
->name
, __func__
, cmd
, arg
);
941 if (rq
->protocol
== ISDN_P_TE_S0
)
942 err
= fc
->isac
.open(&fc
->isac
, rq
);
944 err
= open_bchannel(fc
, rq
);
947 if (!try_module_get(THIS_MODULE
))
948 pr_info("%s: cannot get module\n", fc
->name
);
951 pr_debug("%s: dev(%d) close from %p\n", fc
->name
, dch
->dev
.id
,
952 __builtin_return_address(0));
953 module_put(THIS_MODULE
);
955 case CONTROL_CHANNEL
:
956 err
= channel_ctrl(fc
, arg
);
959 pr_debug("%s: %s unknown command %x\n",
960 fc
->name
, __func__
, cmd
);
967 setup_fritz(struct fritzcard
*fc
)
971 if (!request_region(fc
->addr
, 32, fc
->name
)) {
972 pr_info("%s: AVM config port %x-%x already in use\n",
973 fc
->name
, fc
->addr
, fc
->addr
+ 31);
979 outl(AVM_HDLC_1
, fc
->addr
+ CHIP_INDEX
);
980 ver
= inl(fc
->addr
+ CHIP_WINDOW
+ HDLC_STATUS
) >> 24;
981 if (debug
& DEBUG_HW
) {
982 pr_notice("%s: PCI stat %#x\n", fc
->name
, val
);
983 pr_notice("%s: PCI Class %X Rev %d\n", fc
->name
,
984 val
& 0xff, (val
>> 8) & 0xff);
985 pr_notice("%s: HDLC version %x\n", fc
->name
, ver
& 0xf);
987 ASSIGN_FUNC(V1
, ISAC
, fc
->isac
);
988 fc
->isac
.type
= IPAC_TYPE_ISAC
;
990 case AVM_FRITZ_PCIV2
:
992 ver
= inl(fc
->addr
+ AVM_HDLC_STATUS_1
) >> 24;
993 if (debug
& DEBUG_HW
) {
994 pr_notice("%s: PCI V2 stat %#x\n", fc
->name
, val
);
995 pr_notice("%s: PCI V2 Class %X Rev %d\n", fc
->name
,
996 val
& 0xff, (val
>> 8) & 0xff);
997 pr_notice("%s: HDLC version %x\n", fc
->name
, ver
& 0xf);
999 ASSIGN_FUNC(V2
, ISAC
, fc
->isac
);
1000 fc
->isac
.type
= IPAC_TYPE_ISACX
;
1003 release_region(fc
->addr
, 32);
1004 pr_info("%s: AVM unknown type %d\n", fc
->name
, fc
->type
);
1007 pr_notice("%s: %s config irq:%d base:0x%X\n", fc
->name
,
1008 (fc
->type
== AVM_FRITZ_PCI
) ? "AVM Fritz!CARD PCI" :
1009 "AVM Fritz!CARD PCIv2", fc
->irq
, fc
->addr
);
1014 release_card(struct fritzcard
*card
)
1018 disable_hwirq(card
);
1019 spin_lock_irqsave(&card
->lock
, flags
);
1020 modehdlc(&card
->bch
[0], ISDN_P_NONE
);
1021 modehdlc(&card
->bch
[1], ISDN_P_NONE
);
1022 spin_unlock_irqrestore(&card
->lock
, flags
);
1023 card
->isac
.release(&card
->isac
);
1024 free_irq(card
->irq
, card
);
1025 mISDN_freebchannel(&card
->bch
[1]);
1026 mISDN_freebchannel(&card
->bch
[0]);
1027 mISDN_unregister_device(&card
->isac
.dch
.dev
);
1028 release_region(card
->addr
, 32);
1029 pci_disable_device(card
->pdev
);
1030 pci_set_drvdata(card
->pdev
, NULL
);
1031 write_lock_irqsave(&card_lock
, flags
);
1032 list_del(&card
->list
);
1033 write_unlock_irqrestore(&card_lock
, flags
);
1039 setup_instance(struct fritzcard
*card
)
1042 unsigned short minsize
;
1045 snprintf(card
->name
, MISDN_MAX_IDLEN
- 1, "AVM.%d", AVM_cnt
+ 1);
1046 write_lock_irqsave(&card_lock
, flags
);
1047 list_add_tail(&card
->list
, &Cards
);
1048 write_unlock_irqrestore(&card_lock
, flags
);
1051 card
->isac
.name
= card
->name
;
1052 spin_lock_init(&card
->lock
);
1053 card
->isac
.hwlock
= &card
->lock
;
1054 mISDNisac_init(&card
->isac
, card
);
1056 card
->isac
.dch
.dev
.Bprotocols
= (1 << (ISDN_P_B_RAW
& ISDN_P_B_MASK
)) |
1057 (1 << (ISDN_P_B_HDLC
& ISDN_P_B_MASK
));
1058 card
->isac
.dch
.dev
.D
.ctrl
= avm_dctrl
;
1059 for (i
= 0; i
< 2; i
++) {
1060 card
->bch
[i
].nr
= i
+ 1;
1061 set_channelmap(i
+ 1, card
->isac
.dch
.dev
.channelmap
);
1062 if (AVM_FRITZ_PCIV2
== card
->type
)
1063 minsize
= HDLC_FIFO_SIZE_V2
;
1065 minsize
= HDLC_FIFO_SIZE_V1
;
1066 mISDN_initbchannel(&card
->bch
[i
], MAX_DATA_MEM
, minsize
);
1067 card
->bch
[i
].hw
= card
;
1068 card
->bch
[i
].ch
.send
= avm_l2l1B
;
1069 card
->bch
[i
].ch
.ctrl
= avm_bctrl
;
1070 card
->bch
[i
].ch
.nr
= i
+ 1;
1071 list_add(&card
->bch
[i
].ch
.list
, &card
->isac
.dch
.dev
.bchannels
);
1073 err
= setup_fritz(card
);
1076 err
= mISDN_register_device(&card
->isac
.dch
.dev
, &card
->pdev
->dev
,
1080 err
= init_card(card
);
1083 pr_notice("AVM %d cards installed DEBUG\n", AVM_cnt
);
1086 mISDN_unregister_device(&card
->isac
.dch
.dev
);
1088 release_region(card
->addr
, 32);
1090 card
->isac
.release(&card
->isac
);
1091 mISDN_freebchannel(&card
->bch
[1]);
1092 mISDN_freebchannel(&card
->bch
[0]);
1093 write_lock_irqsave(&card_lock
, flags
);
1094 list_del(&card
->list
);
1095 write_unlock_irqrestore(&card_lock
, flags
);
1101 fritzpci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1104 struct fritzcard
*card
;
1106 card
= kzalloc(sizeof(struct fritzcard
), GFP_KERNEL
);
1108 pr_info("No kmem for fritzcard\n");
1111 if (pdev
->device
== PCI_DEVICE_ID_AVM_A1_V2
)
1112 card
->type
= AVM_FRITZ_PCIV2
;
1114 card
->type
= AVM_FRITZ_PCI
;
1116 err
= pci_enable_device(pdev
);
1122 pr_notice("mISDN: found adapter %s at %s\n",
1123 (char *) ent
->driver_data
, pci_name(pdev
));
1125 card
->addr
= pci_resource_start(pdev
, 1);
1126 card
->irq
= pdev
->irq
;
1127 pci_set_drvdata(pdev
, card
);
1128 err
= setup_instance(card
);
1130 pci_set_drvdata(pdev
, NULL
);
1135 fritz_remove_pci(struct pci_dev
*pdev
)
1137 struct fritzcard
*card
= pci_get_drvdata(pdev
);
1143 pr_info("%s: drvdata already removed\n", __func__
);
1146 static const struct pci_device_id fcpci_ids
[] = {
1147 { PCI_VENDOR_ID_AVM
, PCI_DEVICE_ID_AVM_A1
, PCI_ANY_ID
, PCI_ANY_ID
,
1148 0, 0, (unsigned long) "Fritz!Card PCI"},
1149 { PCI_VENDOR_ID_AVM
, PCI_DEVICE_ID_AVM_A1_V2
, PCI_ANY_ID
, PCI_ANY_ID
,
1150 0, 0, (unsigned long) "Fritz!Card PCI v2" },
1153 MODULE_DEVICE_TABLE(pci
, fcpci_ids
);
1155 static struct pci_driver fcpci_driver
= {
1157 .probe
= fritzpci_probe
,
1158 .remove
= fritz_remove_pci
,
1159 .id_table
= fcpci_ids
,
1162 static int __init
AVM_init(void)
1166 pr_notice("AVM Fritz PCI driver Rev. %s\n", AVMFRITZ_REV
);
1167 err
= pci_register_driver(&fcpci_driver
);
1171 static void __exit
AVM_cleanup(void)
1173 pci_unregister_driver(&fcpci_driver
);
1176 module_init(AVM_init
);
1177 module_exit(AVM_cleanup
);