1 /* $Id: config.c,v 2.84.2.5 2004/02/11 13:21:33 keil Exp $
4 * Copyright by Karsten Keil <keil@isdn4linux.de>
5 * by Kai Germaschewski <kai.germaschewski@gmx.de>
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
10 * For changes and modifications please read
11 * Documentation/isdn/HiSax.cert
13 * based on the teles driver from Jan den Ouden
17 #include <linux/types.h>
18 #include <linux/stddef.h>
19 #include <linux/timer.h>
20 #include <linux/config.h>
21 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/workqueue.h>
26 #include <linux/interrupt.h>
27 #define HISAX_STATUS_BUFSIZE 4096
28 #define INCLUDE_INLINE_FUNCS
31 * This structure array contains one entry per card. An entry looks
34 * { type, protocol, p0, p1, p2, NULL }
37 * 1 Teles 16.0 p0=irq p1=membase p2=iobase
38 * 2 Teles 8.0 p0=irq p1=membase
39 * 3 Teles 16.3 p0=irq p1=iobase
40 * 4 Creatix PNP p0=irq p1=IO0 (ISAC) p2=IO1 (HSCX)
41 * 5 AVM A1 (Fritz) p0=irq p1=iobase
42 * 6 ELSA PC [p0=iobase] or nothing (autodetect)
43 * 7 ELSA Quickstep p0=irq p1=iobase
44 * 8 Teles PCMCIA p0=irq p1=iobase
45 * 9 ITK ix1-micro p0=irq p1=iobase
46 * 10 ELSA PCMCIA p0=irq p1=iobase
47 * 11 Eicon.Diehl Diva p0=irq p1=iobase
48 * 12 Asuscom ISDNLink p0=irq p1=iobase
49 * 13 Teleint p0=irq p1=iobase
50 * 14 Teles 16.3c p0=irq p1=iobase
51 * 15 Sedlbauer speed p0=irq p1=iobase
52 * 15 Sedlbauer PC/104 p0=irq p1=iobase
53 * 15 Sedlbauer speed pci no parameter
54 * 16 USR Sportster internal p0=irq p1=iobase
55 * 17 MIC card p0=irq p1=iobase
56 * 18 ELSA Quickstep 1000PCI no parameter
57 * 19 Compaq ISDN S0 ISA card p0=irq p1=IO0 (HSCX) p2=IO1 (ISAC) p3=IO2
58 * 20 Travers Technologies NETjet-S PCI card
59 * 21 TELES PCI no parameter
60 * 22 Sedlbauer Speed Star p0=irq p1=iobase
62 * 24 Dr Neuhaus Niccy PnP/PCI card p0=irq p1=IO0 p2=IO1 (PnP only)
63 * 25 Teles S0Box p0=irq p1=iobase (from isapnp setup)
64 * 26 AVM A1 PCMCIA (Fritz) p0=irq p1=iobase
65 * 27 AVM PnP/PCI p0=irq p1=iobase (PCI no parameter)
66 * 28 Sedlbauer Speed Fax+ p0=irq p1=iobase (from isapnp setup)
67 * 29 Siemens I-Surf p0=irq p1=iobase p2=memory (from isapnp setup)
68 * 30 ACER P10 p0=irq p1=iobase (from isapnp setup)
69 * 31 HST Saphir p0=irq p1=iobase
71 * 33 Scitel Quadro p0=subcontroller (4*S0, subctrl 1...4)
73 * 35 HFC 2BDS0 PCI none
74 * 36 Winbond 6692 PCI none
75 * 37 HFC 2BDS0 S+/SP p0=irq p1=iobase
76 * 38 Travers Technologies NETspider-U PCI card
77 * 39 HFC 2BDS0-SP PCMCIA p0=irq p1=iobase
78 * 40 hotplug interface
79 * 41 Formula-n enter:now ISDN PCI a/b none
81 * protocol can be either ISDN_PTYPE_EURO or ISDN_PTYPE_1TR6 or ISDN_PTYPE_NI1
86 const char *CardType
[] = {
87 "No Card", "Teles 16.0", "Teles 8.0", "Teles 16.3",
88 "Creatix/Teles PnP", "AVM A1", "Elsa ML", "Elsa Quickstep",
89 "Teles PCMCIA", "ITK ix1-micro Rev.2", "Elsa PCMCIA",
90 "Eicon.Diehl Diva", "ISDNLink", "TeleInt", "Teles 16.3c",
91 "Sedlbauer Speed Card", "USR Sportster", "ith mic Linux",
92 "Elsa PCI", "Compaq ISA", "NETjet-S", "Teles PCI",
93 "Sedlbauer Speed Star (PCMCIA)", "AMD 7930", "NICCY", "S0Box",
94 "AVM A1 (PCMCIA)", "AVM Fritz PnP/PCI", "Sedlbauer Speed Fax +",
95 "Siemens I-Surf", "Acer P10", "HST Saphir", "Telekom A4T",
96 "Scitel Quadro", "Gazel", "HFC 2BDS0 PCI", "Winbond 6692",
97 "HFC 2BDS0 SX", "NETspider-U", "HFC-2BDS0-SP PCMCIA",
98 "Hotplug", "Formula-n enter:now PCI a/b",
101 #ifdef CONFIG_HISAX_ELSA
102 #define DEFAULT_CARD ISDN_CTYPE_ELSA
103 #define DEFAULT_CFG {0,0,0,0}
106 #ifdef CONFIG_HISAX_AVM_A1
109 #define DEFAULT_CARD ISDN_CTYPE_A1
110 #define DEFAULT_CFG {10,0x340,0,0}
113 #ifdef CONFIG_HISAX_AVM_A1_PCMCIA
116 #define DEFAULT_CARD ISDN_CTYPE_A1_PCMCIA
117 #define DEFAULT_CFG {11,0x170,0,0}
120 #ifdef CONFIG_HISAX_FRITZPCI
123 #define DEFAULT_CARD ISDN_CTYPE_FRITZPCI
124 #define DEFAULT_CFG {0,0,0,0}
127 #ifdef CONFIG_HISAX_16_3
130 #define DEFAULT_CARD ISDN_CTYPE_16_3
131 #define DEFAULT_CFG {15,0x180,0,0}
134 #ifdef CONFIG_HISAX_S0BOX
137 #define DEFAULT_CARD ISDN_CTYPE_S0BOX
138 #define DEFAULT_CFG {7,0x378,0,0}
141 #ifdef CONFIG_HISAX_16_0
144 #define DEFAULT_CARD ISDN_CTYPE_16_0
145 #define DEFAULT_CFG {15,0xd0000,0xd80,0}
148 #ifdef CONFIG_HISAX_TELESPCI
151 #define DEFAULT_CARD ISDN_CTYPE_TELESPCI
152 #define DEFAULT_CFG {0,0,0,0}
155 #ifdef CONFIG_HISAX_IX1MICROR2
158 #define DEFAULT_CARD ISDN_CTYPE_IX1MICROR2
159 #define DEFAULT_CFG {5,0x390,0,0}
162 #ifdef CONFIG_HISAX_DIEHLDIVA
165 #define DEFAULT_CARD ISDN_CTYPE_DIEHLDIVA
166 #define DEFAULT_CFG {0,0x0,0,0}
169 #ifdef CONFIG_HISAX_ASUSCOM
172 #define DEFAULT_CARD ISDN_CTYPE_ASUSCOM
173 #define DEFAULT_CFG {5,0x200,0,0}
176 #ifdef CONFIG_HISAX_TELEINT
179 #define DEFAULT_CARD ISDN_CTYPE_TELEINT
180 #define DEFAULT_CFG {5,0x300,0,0}
183 #ifdef CONFIG_HISAX_SEDLBAUER
186 #define DEFAULT_CARD ISDN_CTYPE_SEDLBAUER
187 #define DEFAULT_CFG {11,0x270,0,0}
190 #ifdef CONFIG_HISAX_SPORTSTER
193 #define DEFAULT_CARD ISDN_CTYPE_SPORTSTER
194 #define DEFAULT_CFG {7,0x268,0,0}
197 #ifdef CONFIG_HISAX_MIC
200 #define DEFAULT_CARD ISDN_CTYPE_MIC
201 #define DEFAULT_CFG {12,0x3e0,0,0}
204 #ifdef CONFIG_HISAX_NETJET
207 #define DEFAULT_CARD ISDN_CTYPE_NETJET_S
208 #define DEFAULT_CFG {0,0,0,0}
211 #ifdef CONFIG_HISAX_HFCS
214 #define DEFAULT_CARD ISDN_CTYPE_TELES3C
215 #define DEFAULT_CFG {5,0x500,0,0}
218 #ifdef CONFIG_HISAX_HFC_PCI
221 #define DEFAULT_CARD ISDN_CTYPE_HFC_PCI
222 #define DEFAULT_CFG {0,0,0,0}
225 #ifdef CONFIG_HISAX_HFC_SX
228 #define DEFAULT_CARD ISDN_CTYPE_HFC_SX
229 #define DEFAULT_CFG {5,0x2E0,0,0}
233 #ifdef CONFIG_HISAX_AMD7930
236 #define DEFAULT_CARD ISDN_CTYPE_AMD7930
237 #define DEFAULT_CFG {12,0x3e0,0,0}
240 #ifdef CONFIG_HISAX_NICCY
243 #define DEFAULT_CARD ISDN_CTYPE_NICCY
244 #define DEFAULT_CFG {0,0x0,0,0}
247 #ifdef CONFIG_HISAX_ISURF
250 #define DEFAULT_CARD ISDN_CTYPE_ISURF
251 #define DEFAULT_CFG {5,0x100,0xc8000,0}
254 #ifdef CONFIG_HISAX_HSTSAPHIR
257 #define DEFAULT_CARD ISDN_CTYPE_HSTSAPHIR
258 #define DEFAULT_CFG {5,0x250,0,0}
261 #ifdef CONFIG_HISAX_BKM_A4T
264 #define DEFAULT_CARD ISDN_CTYPE_BKM_A4T
265 #define DEFAULT_CFG {0,0x0,0,0}
268 #ifdef CONFIG_HISAX_SCT_QUADRO
271 #define DEFAULT_CARD ISDN_CTYPE_SCT_QUADRO
272 #define DEFAULT_CFG {1,0x0,0,0}
275 #ifdef CONFIG_HISAX_GAZEL
278 #define DEFAULT_CARD ISDN_CTYPE_GAZEL
279 #define DEFAULT_CFG {15,0x180,0,0}
282 #ifdef CONFIG_HISAX_W6692
285 #define DEFAULT_CARD ISDN_CTYPE_W6692
286 #define DEFAULT_CFG {0,0,0,0}
289 #ifdef CONFIG_HISAX_NETJET_U
292 #define DEFAULT_CARD ISDN_CTYPE_NETJET_U
293 #define DEFAULT_CFG {0,0,0,0}
296 #ifdef CONFIG_HISAX_1TR6
297 #define DEFAULT_PROTO ISDN_PTYPE_1TR6
298 #define DEFAULT_PROTO_NAME "1TR6"
300 #ifdef CONFIG_HISAX_NI1
302 #define DEFAULT_PROTO ISDN_PTYPE_NI1
303 #undef DEFAULT_PROTO_NAME
304 #define DEFAULT_PROTO_NAME "NI1"
306 #ifdef CONFIG_HISAX_EURO
308 #define DEFAULT_PROTO ISDN_PTYPE_EURO
309 #undef DEFAULT_PROTO_NAME
310 #define DEFAULT_PROTO_NAME "EURO"
312 #ifndef DEFAULT_PROTO
313 #define DEFAULT_PROTO ISDN_PTYPE_UNKNOWN
314 #define DEFAULT_PROTO_NAME "UNKNOWN"
317 #define DEFAULT_CARD 0
318 #define DEFAULT_CFG {0,0,0,0}
321 #define FIRST_CARD { \
328 struct IsdnCard cards
[HISAX_MAX_CARDS
] = {
332 #define HISAX_IDSIZE (HISAX_MAX_CARDS*8)
333 static char HiSaxID
[HISAX_IDSIZE
] = { 0, };
335 static char *HiSax_id
= HiSaxID
;
337 /* Variables for insmod */
338 static int type
[HISAX_MAX_CARDS
] = { 0, };
339 static int protocol
[HISAX_MAX_CARDS
] = { 0, };
340 static int io
[HISAX_MAX_CARDS
] = { 0, };
342 #ifdef CONFIG_HISAX_16_3
345 #ifdef CONFIG_HISAX_NICCY
350 static int io0
[HISAX_MAX_CARDS
] __devinitdata
= { 0, };
351 static int io1
[HISAX_MAX_CARDS
] __devinitdata
= { 0, };
353 static int irq
[HISAX_MAX_CARDS
] __devinitdata
= { 0, };
354 static int mem
[HISAX_MAX_CARDS
] __devinitdata
= { 0, };
355 static char *id
= HiSaxID
;
357 MODULE_DESCRIPTION("ISDN4Linux: Driver for passive ISDN cards");
358 MODULE_AUTHOR("Karsten Keil");
359 MODULE_LICENSE("GPL");
360 module_param_array(type
, int, NULL
, 0);
361 module_param_array(protocol
, int, NULL
, 0);
362 module_param_array(io
, int, NULL
, 0);
363 module_param_array(irq
, int, NULL
, 0);
364 module_param_array(mem
, int, NULL
, 0);
365 module_param(id
, charp
, 0);
367 module_param_array(io0
, int, NULL
, 0);
368 module_param_array(io1
, int, NULL
, 0);
374 extern char *l1_revision
;
375 extern char *l2_revision
;
376 extern char *l3_revision
;
377 extern char *lli_revision
;
378 extern char *tei_revision
;
380 char *HiSax_getrev(const char *revision
)
385 if ((p
= strchr(revision
, ':'))) {
387 p
= strchr(rev
, '$');
394 static void __init
HiSaxVersion(void)
398 printk(KERN_INFO
"HiSax: Linux Driver for passive ISDN cards\n");
400 printk(KERN_INFO
"HiSax: Version 3.5 (module)\n");
402 printk(KERN_INFO
"HiSax: Version 3.5 (kernel)\n");
404 strcpy(tmp
, l1_revision
);
405 printk(KERN_INFO
"HiSax: Layer1 Revision %s\n", HiSax_getrev(tmp
));
406 strcpy(tmp
, l2_revision
);
407 printk(KERN_INFO
"HiSax: Layer2 Revision %s\n", HiSax_getrev(tmp
));
408 strcpy(tmp
, tei_revision
);
409 printk(KERN_INFO
"HiSax: TeiMgr Revision %s\n", HiSax_getrev(tmp
));
410 strcpy(tmp
, l3_revision
);
411 printk(KERN_INFO
"HiSax: Layer3 Revision %s\n", HiSax_getrev(tmp
));
412 strcpy(tmp
, lli_revision
);
413 printk(KERN_INFO
"HiSax: LinkLayer Revision %s\n",
418 #define MAX_ARG (HISAX_MAX_CARDS*5)
419 static int __init
HiSax_setup(char *line
)
422 int ints
[MAX_ARG
+ 1];
425 str
= get_options(line
, MAX_ARG
, ints
);
427 printk(KERN_DEBUG
"HiSax_setup: argc(%d) str(%s)\n", argc
, str
);
430 while (argc
&& (i
< HISAX_MAX_CARDS
)) {
431 cards
[i
].protocol
= DEFAULT_PROTO
;
433 cards
[i
].typ
= ints
[j
];
438 cards
[i
].protocol
= ints
[j
];
443 cards
[i
].para
[0] = ints
[j
];
448 cards
[i
].para
[1] = ints
[j
];
453 cards
[i
].para
[2] = ints
[j
];
460 if (strlen(str
) < HISAX_IDSIZE
)
461 strcpy(HiSaxID
, str
);
463 printk(KERN_WARNING
"HiSax: ID too long!");
465 strcpy(HiSaxID
, "HiSax");
471 __setup("hisax=", HiSax_setup
);
475 extern int setup_teles0(struct IsdnCard
*card
);
479 extern int setup_teles3(struct IsdnCard
*card
);
483 extern int setup_s0box(struct IsdnCard
*card
);
487 extern int setup_telespci(struct IsdnCard
*card
);
491 extern int setup_avm_a1(struct IsdnCard
*card
);
494 #if CARD_AVM_A1_PCMCIA
495 extern int setup_avm_a1_pcmcia(struct IsdnCard
*card
);
499 extern int setup_avm_pcipnp(struct IsdnCard
*card
);
503 extern int setup_elsa(struct IsdnCard
*card
);
507 extern int setup_ix1micro(struct IsdnCard
*card
);
511 extern int setup_diva(struct IsdnCard
*card
);
515 extern int setup_asuscom(struct IsdnCard
*card
);
519 extern int setup_TeleInt(struct IsdnCard
*card
);
523 extern int setup_sedlbauer(struct IsdnCard
*card
);
527 extern int setup_sportster(struct IsdnCard
*card
);
531 extern int setup_mic(struct IsdnCard
*card
);
535 extern int setup_netjet_s(struct IsdnCard
*card
);
539 extern int setup_hfcs(struct IsdnCard
*card
);
543 extern int setup_hfcpci(struct IsdnCard
*card
);
547 extern int setup_hfcsx(struct IsdnCard
*card
);
551 extern int setup_amd7930(struct IsdnCard
*card
);
555 extern int setup_niccy(struct IsdnCard
*card
);
559 extern int setup_isurf(struct IsdnCard
*card
);
563 extern int setup_saphir(struct IsdnCard
*card
);
567 extern int setup_testemu(struct IsdnCard
*card
);
571 extern int setup_bkm_a4t(struct IsdnCard
*card
);
575 extern int setup_sct_quadro(struct IsdnCard
*card
);
579 extern int setup_gazel(struct IsdnCard
*card
);
583 extern int setup_w6692(struct IsdnCard
*card
);
587 extern int setup_netjet_u(struct IsdnCard
*card
);
590 #if CARD_FN_ENTERNOW_PCI
591 extern int setup_enternow_pci(struct IsdnCard
*card
);
595 * Find card with given driverId
597 static inline struct IsdnCardState
*hisax_findcard(int driverid
)
601 for (i
= 0; i
< nrcards
; i
++)
603 if (cards
[i
].cs
->myid
== driverid
)
609 * Find card with given card number
612 struct IsdnCardState
*hisax_get_card(int cardnr
)
614 if ((cardnr
<= nrcards
) && (cardnr
> 0))
615 if (cards
[cardnr
- 1].cs
)
616 return cards
[cardnr
- 1].cs
;
621 static int HiSax_readstatus(u_char __user
*buf
, int len
, int id
, int channel
)
624 u_char __user
*p
= buf
;
625 struct IsdnCardState
*cs
= hisax_findcard(id
);
628 if (len
> HISAX_STATUS_BUFSIZE
) {
630 "HiSax: status overflow readstat %d/%d\n",
631 len
, HISAX_STATUS_BUFSIZE
);
633 count
= cs
->status_end
- cs
->status_read
+ 1;
636 copy_to_user(p
, cs
->status_read
, count
);
637 cs
->status_read
+= count
;
638 if (cs
->status_read
> cs
->status_end
)
639 cs
->status_read
= cs
->status_buf
;
643 if (count
> HISAX_STATUS_BUFSIZE
)
644 cnt
= HISAX_STATUS_BUFSIZE
;
647 copy_to_user(p
, cs
->status_read
, cnt
);
649 cs
->status_read
+= cnt
% HISAX_STATUS_BUFSIZE
;
655 "HiSax: if_readstatus called with invalid driverId!\n");
660 int jiftime(char *s
, long mark
)
665 *s
-- = mark
% 10 + '0';
667 *s
-- = mark
% 10 + '0';
670 *s
-- = mark
% 10 + '0';
672 *s
-- = mark
% 6 + '0';
675 *s
-- = mark
% 10 + '0';
677 *s
-- = mark
% 10 + '0';
681 static u_char tmpbuf
[HISAX_STATUS_BUFSIZE
];
683 void VHiSax_putstatus(struct IsdnCardState
*cs
, char *head
, char *fmt
,
686 /* if head == NULL the fmt contains the full info */
695 printk(KERN_WARNING
"HiSax: No CardStatus for message");
698 spin_lock_irqsave(&cs
->statlock
, flags
);
701 p
+= jiftime(p
, jiffies
);
702 p
+= sprintf(p
, " %s", head
);
703 p
+= vsprintf(p
, fmt
, args
);
712 if (len
> HISAX_STATUS_BUFSIZE
) {
713 spin_unlock_irqrestore(&cs
->statlock
, flags
);
714 printk(KERN_WARNING
"HiSax: status overflow %d/%d\n",
715 len
, HISAX_STATUS_BUFSIZE
);
719 i
= cs
->status_end
- cs
->status_write
+ 1;
723 memcpy(cs
->status_write
, p
, i
);
724 cs
->status_write
+= i
;
725 if (cs
->status_write
> cs
->status_end
)
726 cs
->status_write
= cs
->status_buf
;
729 memcpy(cs
->status_write
, p
, len
);
730 cs
->status_write
+= len
;
732 #ifdef KERNELSTACK_DEBUG
733 i
= (ulong
) & len
- current
->kernel_stack_page
;
734 sprintf(tmpbuf
, "kstack %s %lx use %ld\n", current
->comm
,
735 current
->kernel_stack_page
, i
);
736 len
= strlen(tmpbuf
);
737 for (p
= tmpbuf
, i
= len
; i
> 0; i
--, p
++) {
738 *cs
->status_write
++ = *p
;
739 if (cs
->status_write
> cs
->status_end
)
740 cs
->status_write
= cs
->status_buf
;
744 spin_unlock_irqrestore(&cs
->statlock
, flags
);
746 ic
.command
= ISDN_STAT_STAVAIL
;
747 ic
.driver
= cs
->myid
;
749 cs
->iif
.statcallb(&ic
);
753 void HiSax_putstatus(struct IsdnCardState
*cs
, char *head
, char *fmt
, ...)
758 VHiSax_putstatus(cs
, head
, fmt
, args
);
762 int ll_run(struct IsdnCardState
*cs
, int addfeatures
)
766 ic
.driver
= cs
->myid
;
767 ic
.command
= ISDN_STAT_RUN
;
768 cs
->iif
.features
|= addfeatures
;
769 cs
->iif
.statcallb(&ic
);
773 static void ll_stop(struct IsdnCardState
*cs
)
777 ic
.command
= ISDN_STAT_STOP
;
778 ic
.driver
= cs
->myid
;
779 cs
->iif
.statcallb(&ic
);
780 // CallcFreeChan(cs);
783 static void ll_unload(struct IsdnCardState
*cs
)
787 ic
.command
= ISDN_STAT_UNLOAD
;
788 ic
.driver
= cs
->myid
;
789 cs
->iif
.statcallb(&ic
);
791 kfree(cs
->status_buf
);
792 cs
->status_read
= NULL
;
793 cs
->status_write
= NULL
;
794 cs
->status_end
= NULL
;
799 static void closecard(int cardnr
)
801 struct IsdnCardState
*csta
= cards
[cardnr
].cs
;
803 if (csta
->bcs
->BC_Close
!= NULL
) {
804 csta
->bcs
->BC_Close(csta
->bcs
+ 1);
805 csta
->bcs
->BC_Close(csta
->bcs
);
808 skb_queue_purge(&csta
->rq
);
809 skb_queue_purge(&csta
->sq
);
815 dev_kfree_skb(csta
->tx_skb
);
818 if (csta
->DC_Close
!= NULL
) {
819 csta
->DC_Close(csta
);
822 csta
->cardmsg(csta
, CARD_RELEASE
, NULL
);
823 if (csta
->dbusytimer
.function
!= NULL
) // FIXME?
824 del_timer(&csta
->dbusytimer
);
828 static int init_card(struct IsdnCardState
*cs
)
830 int irq_cnt
, cnt
= 3, ret
;
833 ret
= cs
->cardmsg(cs
, CARD_INIT
, NULL
);
836 irq_cnt
= kstat_irqs(cs
->irq
);
837 printk(KERN_INFO
"%s: IRQ %d count %d\n", CardType
[cs
->typ
],
839 if (request_irq(cs
->irq
, cs
->irq_func
, cs
->irq_flags
, "HiSax", cs
)) {
840 printk(KERN_WARNING
"HiSax: couldn't get interrupt %d\n",
845 cs
->cardmsg(cs
, CARD_INIT
, NULL
);
848 printk(KERN_INFO
"%s: IRQ %d count %d\n",
849 CardType
[cs
->typ
], cs
->irq
, kstat_irqs(cs
->irq
));
850 if (kstat_irqs(cs
->irq
) == irq_cnt
) {
852 "%s: IRQ(%d) getting no interrupts during init %d\n",
853 CardType
[cs
->typ
], cs
->irq
, 4 - cnt
);
855 free_irq(cs
->irq
, cs
);
858 cs
->cardmsg(cs
, CARD_RESET
, NULL
);
862 cs
->cardmsg(cs
, CARD_TEST
, NULL
);
869 static int checkcard(int cardnr
, char *id
, int *busy_flag
, struct module
*lockowner
)
872 struct IsdnCard
*card
= cards
+ cardnr
;
873 struct IsdnCardState
*cs
;
875 cs
= kmalloc(sizeof(struct IsdnCardState
), GFP_ATOMIC
);
878 "HiSax: No memory for IsdnCardState(card %d)\n",
882 memset(cs
, 0, sizeof(struct IsdnCardState
));
884 spin_lock_init(&cs
->statlock
);
885 spin_lock_init(&cs
->lock
);
886 cs
->chanlimit
= 2; /* maximum B-channel number */
887 cs
->logecho
= 0; /* No echo logging */
889 cs
->debug
= L1_DEB_WARN
;
891 cs
->busy_flag
= busy_flag
;
892 cs
->irq_flags
= I4L_IRQ_FLAG
;
894 if (card
->protocol
== ISDN_PTYPE_NI1
)
895 test_and_set_bit(FLG_TWO_DCHAN
, &cs
->HW_Flags
);
897 test_and_set_bit(FLG_TWO_DCHAN
, &cs
->HW_Flags
);
899 cs
->protocol
= card
->protocol
;
901 if (card
->typ
<= 0 || card
->typ
> ISDN_CTYPE_COUNT
) {
903 "HiSax: Card Type %d out of range\n", card
->typ
);
906 if (!(cs
->dlog
= kmalloc(MAX_DLOG_SPACE
, GFP_ATOMIC
))) {
908 "HiSax: No memory for dlog(card %d)\n", cardnr
+ 1);
911 if (!(cs
->status_buf
= kmalloc(HISAX_STATUS_BUFSIZE
, GFP_ATOMIC
))) {
913 "HiSax: No memory for status_buf(card %d)\n",
918 cs
->status_read
= cs
->status_buf
;
919 cs
->status_write
= cs
->status_buf
;
920 cs
->status_end
= cs
->status_buf
+ HISAX_STATUS_BUFSIZE
- 1;
923 cs
->iif
.owner
= lockowner
;
925 strcpy(cs
->iif
.id
, id
);
926 cs
->iif
.channels
= 2;
927 cs
->iif
.maxbufsize
= MAX_DATA_SIZE
;
928 cs
->iif
.hl_hdrlen
= MAX_HEADER_LEN
;
930 ISDN_FEATURE_L2_X75I
|
931 ISDN_FEATURE_L2_HDLC
|
932 ISDN_FEATURE_L2_HDLC_56K
|
933 ISDN_FEATURE_L2_TRANS
|
934 ISDN_FEATURE_L3_TRANS
|
935 #ifdef CONFIG_HISAX_1TR6
936 ISDN_FEATURE_P_1TR6
|
938 #ifdef CONFIG_HISAX_EURO
939 ISDN_FEATURE_P_EURO
|
941 #ifdef CONFIG_HISAX_NI1
946 cs
->iif
.command
= HiSax_command
;
947 cs
->iif
.writecmd
= NULL
;
948 cs
->iif
.writebuf_skb
= HiSax_writebuf_skb
;
949 cs
->iif
.readstat
= HiSax_readstatus
;
950 register_isdn(&cs
->iif
);
951 cs
->myid
= cs
->iif
.channels
;
953 "HiSax: Card %d Protocol %s Id=%s (%d)\n", cardnr
+ 1,
954 (card
->protocol
== ISDN_PTYPE_1TR6
) ? "1TR6" :
955 (card
->protocol
== ISDN_PTYPE_EURO
) ? "EDSS1" :
956 (card
->protocol
== ISDN_PTYPE_LEASED
) ? "LEASED" :
957 (card
->protocol
== ISDN_PTYPE_NI1
) ? "NI1" :
958 "NONE", cs
->iif
.id
, cs
->myid
);
961 case ISDN_CTYPE_16_0
:
963 ret
= setup_teles0(card
);
967 case ISDN_CTYPE_16_3
:
969 case ISDN_CTYPE_TELESPCMCIA
:
970 case ISDN_CTYPE_COMPAQ_ISA
:
971 ret
= setup_teles3(card
);
975 case ISDN_CTYPE_S0BOX
:
976 ret
= setup_s0box(card
);
980 case ISDN_CTYPE_TELESPCI
:
981 ret
= setup_telespci(card
);
986 ret
= setup_avm_a1(card
);
989 #if CARD_AVM_A1_PCMCIA
990 case ISDN_CTYPE_A1_PCMCIA
:
991 ret
= setup_avm_a1_pcmcia(card
);
995 case ISDN_CTYPE_FRITZPCI
:
996 ret
= setup_avm_pcipnp(card
);
1000 case ISDN_CTYPE_ELSA
:
1001 case ISDN_CTYPE_ELSA_PNP
:
1002 case ISDN_CTYPE_ELSA_PCMCIA
:
1003 case ISDN_CTYPE_ELSA_PCI
:
1004 ret
= setup_elsa(card
);
1008 case ISDN_CTYPE_IX1MICROR2
:
1009 ret
= setup_ix1micro(card
);
1013 case ISDN_CTYPE_DIEHLDIVA
:
1014 ret
= setup_diva(card
);
1018 case ISDN_CTYPE_ASUSCOM
:
1019 ret
= setup_asuscom(card
);
1023 case ISDN_CTYPE_TELEINT
:
1024 ret
= setup_TeleInt(card
);
1028 case ISDN_CTYPE_SEDLBAUER
:
1029 case ISDN_CTYPE_SEDLBAUER_PCMCIA
:
1030 case ISDN_CTYPE_SEDLBAUER_FAX
:
1031 ret
= setup_sedlbauer(card
);
1035 case ISDN_CTYPE_SPORTSTER
:
1036 ret
= setup_sportster(card
);
1040 case ISDN_CTYPE_MIC
:
1041 ret
= setup_mic(card
);
1045 case ISDN_CTYPE_NETJET_S
:
1046 ret
= setup_netjet_s(card
);
1050 case ISDN_CTYPE_TELES3C
:
1051 case ISDN_CTYPE_ACERP10
:
1052 ret
= setup_hfcs(card
);
1056 case ISDN_CTYPE_HFC_PCI
:
1057 ret
= setup_hfcpci(card
);
1061 case ISDN_CTYPE_HFC_SX
:
1062 ret
= setup_hfcsx(card
);
1066 case ISDN_CTYPE_NICCY
:
1067 ret
= setup_niccy(card
);
1071 case ISDN_CTYPE_AMD7930
:
1072 ret
= setup_amd7930(card
);
1076 case ISDN_CTYPE_ISURF
:
1077 ret
= setup_isurf(card
);
1081 case ISDN_CTYPE_HSTSAPHIR
:
1082 ret
= setup_saphir(card
);
1086 case ISDN_CTYPE_TESTEMU
:
1087 ret
= setup_testemu(card
);
1091 case ISDN_CTYPE_BKM_A4T
:
1092 ret
= setup_bkm_a4t(card
);
1096 case ISDN_CTYPE_SCT_QUADRO
:
1097 ret
= setup_sct_quadro(card
);
1101 case ISDN_CTYPE_GAZEL
:
1102 ret
= setup_gazel(card
);
1106 case ISDN_CTYPE_W6692
:
1107 ret
= setup_w6692(card
);
1111 case ISDN_CTYPE_NETJET_U
:
1112 ret
= setup_netjet_u(card
);
1115 #if CARD_FN_ENTERNOW_PCI
1116 case ISDN_CTYPE_ENTERNOW
:
1117 ret
= setup_enternow_pci(card
);
1120 case ISDN_CTYPE_DYNAMIC
:
1125 "HiSax: Support for %s Card not selected\n",
1126 CardType
[card
->typ
]);
1134 if (!(cs
->rcvbuf
= kmalloc(MAX_DFRAME_LEN_L1
, GFP_ATOMIC
))) {
1135 printk(KERN_WARNING
"HiSax: No memory for isac rcvbuf\n");
1143 cs
->tqueue
.data
= cs
;
1145 skb_queue_head_init(&cs
->rq
);
1146 skb_queue_head_init(&cs
->sq
);
1148 init_bcstate(cs
, 0);
1149 init_bcstate(cs
, 1);
1151 /* init_card only handles interrupts which are not */
1152 /* used here for the loadable driver */
1153 switch (card
->typ
) {
1154 case ISDN_CTYPE_DYNAMIC
:
1158 ret
= init_card(cs
);
1166 init_tei(cs
, cs
->protocol
);
1167 ret
= CallcNewChan(cs
);
1173 /* ISAR needs firmware download first */
1174 if (!test_bit(HW_ISAR
, &cs
->HW_Flags
))
1189 static void HiSax_shiftcards(int idx
)
1193 for (i
= idx
; i
< (HISAX_MAX_CARDS
- 1); i
++)
1194 memcpy(&cards
[i
], &cards
[i
+ 1], sizeof(cards
[i
]));
1197 static int HiSax_inithardware(int *busy_flag
)
1204 char *next_id
= HiSax_id
;
1207 if (strchr(HiSax_id
, ','))
1209 else if (strchr(HiSax_id
, '%'))
1212 while (i
< nrcards
) {
1213 if (cards
[i
].typ
< 1)
1216 if ((next_id
= strchr(id
, t
))) {
1225 sprintf(ids
, "%s%d", id
, i
);
1227 if (checkcard(i
, ids
, busy_flag
, THIS_MODULE
)) {
1231 /* make sure we don't oops the module */
1232 if (cards
[i
].typ
> 0 && cards
[i
].typ
<= ISDN_CTYPE_COUNT
) {
1234 "HiSax: Card %s not installed !\n",
1235 CardType
[cards
[i
].typ
]);
1237 HiSax_shiftcards(i
);
1244 void HiSax_closecard(int cardnr
)
1246 int i
, last
= nrcards
- 1;
1248 if (cardnr
> last
|| cardnr
< 0)
1250 if (cards
[cardnr
].cs
) {
1251 ll_stop(cards
[cardnr
].cs
);
1252 release_tei(cards
[cardnr
].cs
);
1253 CallcFreeChan(cards
[cardnr
].cs
);
1256 if (cards
[cardnr
].cs
->irq
)
1257 free_irq(cards
[cardnr
].cs
->irq
, cards
[cardnr
].cs
);
1258 kfree((void *) cards
[cardnr
].cs
);
1259 cards
[cardnr
].cs
= NULL
;
1263 cards
[i
] = cards
[i
+ 1];
1269 void HiSax_reportcard(int cardnr
, int sel
)
1271 struct IsdnCardState
*cs
= cards
[cardnr
].cs
;
1273 printk(KERN_DEBUG
"HiSax: reportcard No %d\n", cardnr
+ 1);
1274 printk(KERN_DEBUG
"HiSax: Type %s\n", CardType
[cs
->typ
]);
1275 printk(KERN_DEBUG
"HiSax: debuglevel %x\n", cs
->debug
);
1276 printk(KERN_DEBUG
"HiSax: HiSax_reportcard address 0x%lX\n",
1277 (ulong
) & HiSax_reportcard
);
1278 printk(KERN_DEBUG
"HiSax: cs 0x%lX\n", (ulong
) cs
);
1279 printk(KERN_DEBUG
"HiSax: HW_Flags %lx bc0 flg %lx bc1 flg %lx\n",
1280 cs
->HW_Flags
, cs
->bcs
[0].Flag
, cs
->bcs
[1].Flag
);
1281 printk(KERN_DEBUG
"HiSax: bcs 0 mode %d ch%d\n",
1282 cs
->bcs
[0].mode
, cs
->bcs
[0].channel
);
1283 printk(KERN_DEBUG
"HiSax: bcs 1 mode %d ch%d\n",
1284 cs
->bcs
[1].mode
, cs
->bcs
[1].channel
);
1285 #ifdef ERROR_STATISTIC
1286 printk(KERN_DEBUG
"HiSax: dc errors(rx,crc,tx) %d,%d,%d\n",
1287 cs
->err_rx
, cs
->err_crc
, cs
->err_tx
);
1289 "HiSax: bc0 errors(inv,rdo,crc,tx) %d,%d,%d,%d\n",
1290 cs
->bcs
[0].err_inv
, cs
->bcs
[0].err_rdo
, cs
->bcs
[0].err_crc
,
1293 "HiSax: bc1 errors(inv,rdo,crc,tx) %d,%d,%d,%d\n",
1294 cs
->bcs
[1].err_inv
, cs
->bcs
[1].err_rdo
, cs
->bcs
[1].err_crc
,
1300 cs
->bcs
[0].err_inv
= 0;
1301 cs
->bcs
[0].err_rdo
= 0;
1302 cs
->bcs
[0].err_crc
= 0;
1303 cs
->bcs
[0].err_tx
= 0;
1304 cs
->bcs
[1].err_inv
= 0;
1305 cs
->bcs
[1].err_rdo
= 0;
1306 cs
->bcs
[1].err_crc
= 0;
1307 cs
->bcs
[1].err_tx
= 0;
1312 static int __init
HiSax_init(void)
1321 retval
= CallcNew();
1324 retval
= Isdnl3New();
1327 retval
= Isdnl2New();
1333 retval
= Isdnl1New();
1339 /* We 'll register drivers later, but init basic functions */
1340 for (i
= 0; i
< HISAX_MAX_CARDS
; i
++)
1344 #ifdef CONFIG_HISAX_ELSA
1345 if (type
[0] == ISDN_CTYPE_ELSA_PCMCIA
) {
1346 /* we have exported and return in this case */
1350 #ifdef CONFIG_HISAX_SEDLBAUER
1351 if (type
[0] == ISDN_CTYPE_SEDLBAUER_PCMCIA
) {
1352 /* we have to export and return in this case */
1356 #ifdef CONFIG_HISAX_AVM_A1_PCMCIA
1357 if (type
[0] == ISDN_CTYPE_A1_PCMCIA
) {
1358 /* we have to export and return in this case */
1362 #ifdef CONFIG_HISAX_HFC_SX
1363 if (type
[0] == ISDN_CTYPE_HFC_SP_PCMCIA
) {
1364 /* we have to export and return in this case */
1371 if (id
) /* If id= string used */
1373 for (i
= j
= 0; j
< HISAX_MAX_CARDS
; i
++) {
1374 cards
[j
].typ
= type
[i
];
1376 cards
[j
].protocol
= protocol
[i
];
1379 cards
[j
].protocol
= DEFAULT_PROTO
;
1382 case ISDN_CTYPE_16_0
:
1383 cards
[j
].para
[0] = irq
[i
];
1384 cards
[j
].para
[1] = mem
[i
];
1385 cards
[j
].para
[2] = io
[i
];
1388 case ISDN_CTYPE_8_0
:
1389 cards
[j
].para
[0] = irq
[i
];
1390 cards
[j
].para
[1] = mem
[i
];
1394 case ISDN_CTYPE_PNP
:
1395 case ISDN_CTYPE_NICCY
:
1396 cards
[j
].para
[0] = irq
[i
];
1397 cards
[j
].para
[1] = io0
[i
];
1398 cards
[j
].para
[2] = io1
[i
];
1400 case ISDN_CTYPE_COMPAQ_ISA
:
1401 cards
[j
].para
[0] = irq
[i
];
1402 cards
[j
].para
[1] = io0
[i
];
1403 cards
[j
].para
[2] = io1
[i
];
1404 cards
[j
].para
[3] = io
[i
];
1407 case ISDN_CTYPE_ELSA
:
1408 case ISDN_CTYPE_HFC_PCI
:
1409 cards
[j
].para
[0] = io
[i
];
1411 case ISDN_CTYPE_16_3
:
1412 case ISDN_CTYPE_TELESPCMCIA
:
1414 case ISDN_CTYPE_A1_PCMCIA
:
1415 case ISDN_CTYPE_ELSA_PNP
:
1416 case ISDN_CTYPE_ELSA_PCMCIA
:
1417 case ISDN_CTYPE_IX1MICROR2
:
1418 case ISDN_CTYPE_DIEHLDIVA
:
1419 case ISDN_CTYPE_ASUSCOM
:
1420 case ISDN_CTYPE_TELEINT
:
1421 case ISDN_CTYPE_SEDLBAUER
:
1422 case ISDN_CTYPE_SEDLBAUER_PCMCIA
:
1423 case ISDN_CTYPE_SEDLBAUER_FAX
:
1424 case ISDN_CTYPE_SPORTSTER
:
1425 case ISDN_CTYPE_MIC
:
1426 case ISDN_CTYPE_TELES3C
:
1427 case ISDN_CTYPE_ACERP10
:
1428 case ISDN_CTYPE_S0BOX
:
1429 case ISDN_CTYPE_FRITZPCI
:
1430 case ISDN_CTYPE_HSTSAPHIR
:
1431 case ISDN_CTYPE_GAZEL
:
1432 case ISDN_CTYPE_HFC_SX
:
1433 case ISDN_CTYPE_HFC_SP_PCMCIA
:
1434 cards
[j
].para
[0] = irq
[i
];
1435 cards
[j
].para
[1] = io
[i
];
1437 case ISDN_CTYPE_ISURF
:
1438 cards
[j
].para
[0] = irq
[i
];
1439 cards
[j
].para
[1] = io
[i
];
1440 cards
[j
].para
[2] = mem
[i
];
1442 case ISDN_CTYPE_ELSA_PCI
:
1443 case ISDN_CTYPE_NETJET_S
:
1444 case ISDN_CTYPE_AMD7930
:
1445 case ISDN_CTYPE_TELESPCI
:
1446 case ISDN_CTYPE_W6692
:
1447 case ISDN_CTYPE_NETJET_U
:
1449 case ISDN_CTYPE_BKM_A4T
:
1451 case ISDN_CTYPE_SCT_QUADRO
:
1453 cards
[j
].para
[0] = irq
[i
];
1455 /* QUADRO is a 4 BRI card */
1456 cards
[j
++].para
[0] = 1;
1457 /* we need to check if further cards can be added */
1458 if (j
< HISAX_MAX_CARDS
) {
1459 cards
[j
].typ
= ISDN_CTYPE_SCT_QUADRO
;
1460 cards
[j
].protocol
= protocol
[i
];
1461 cards
[j
++].para
[0] = 2;
1463 if (j
< HISAX_MAX_CARDS
) {
1464 cards
[j
].typ
= ISDN_CTYPE_SCT_QUADRO
;
1465 cards
[j
].protocol
= protocol
[i
];
1466 cards
[j
++].para
[0] = 3;
1468 if (j
< HISAX_MAX_CARDS
) {
1469 cards
[j
].typ
= ISDN_CTYPE_SCT_QUADRO
;
1470 cards
[j
].protocol
= protocol
[i
];
1471 cards
[j
].para
[0] = 4;
1480 "HiSax: Warning - no protocol specified\n");
1481 printk(KERN_WARNING
"HiSax: using protocol %s\n",
1482 DEFAULT_PROTO_NAME
);
1488 strcpy(HiSaxID
, "HiSax");
1489 for (i
= 0; i
< HISAX_MAX_CARDS
; i
++)
1490 if (cards
[i
].typ
> 0)
1492 printk(KERN_DEBUG
"HiSax: Total %d card%s defined\n",
1493 nrcards
, (nrcards
> 1) ? "s" : "");
1495 /* Install only, if at least one card found */
1496 if (!HiSax_inithardware(NULL
))
1512 static void __exit
HiSax_exit(void)
1514 int cardnr
= nrcards
- 1;
1517 HiSax_closecard(cardnr
--);
1523 printk(KERN_INFO
"HiSax module removed\n");
1526 int hisax_init_pcmcia(void *pcm_iob
, int *busy_flag
, struct IsdnCard
*card
)
1531 cards
[nrcards
] = *card
;
1533 sprintf(ids
, "HiSax%d", nrcards
);
1535 sprintf(ids
, "HiSax");
1536 if (!checkcard(nrcards
, ids
, busy_flag
, THIS_MODULE
))
1545 EXPORT_SYMBOL(hisax_init_pcmcia
);
1546 EXPORT_SYMBOL(HiSax_closecard
);
1548 #include "hisax_if.h"
1550 EXPORT_SYMBOL(hisax_register
);
1551 EXPORT_SYMBOL(hisax_unregister
);
1553 static void hisax_d_l1l2(struct hisax_if
*ifc
, int pr
, void *arg
);
1554 static void hisax_b_l1l2(struct hisax_if
*ifc
, int pr
, void *arg
);
1555 static void hisax_d_l2l1(struct PStack
*st
, int pr
, void *arg
);
1556 static void hisax_b_l2l1(struct PStack
*st
, int pr
, void *arg
);
1557 static int hisax_cardmsg(struct IsdnCardState
*cs
, int mt
, void *arg
);
1558 static int hisax_bc_setstack(struct PStack
*st
, struct BCState
*bcs
);
1559 static void hisax_bc_close(struct BCState
*bcs
);
1560 static void hisax_bh(struct IsdnCardState
*cs
);
1561 static void EChannel_proc_rcv(struct hisax_d_if
*d_if
);
1563 int hisax_register(struct hisax_d_if
*hisax_d_if
, struct hisax_b_if
*b_if
[],
1564 char *name
, int protocol
)
1568 struct IsdnCardState
*cs
;
1570 for (i
= 0; i
< HISAX_MAX_CARDS
; i
++) {
1575 if (i
>= HISAX_MAX_CARDS
)
1578 cards
[i
].typ
= ISDN_CTYPE_DYNAMIC
;
1579 cards
[i
].protocol
= protocol
;
1580 sprintf(id
, "%s%d", name
, i
);
1582 retval
= checkcard(i
, id
, NULL
, hisax_d_if
->owner
);
1583 if (retval
== 0) { // yuck
1589 hisax_d_if
->cs
= cs
;
1590 cs
->hw
.hisax_d_if
= hisax_d_if
;
1591 cs
->cardmsg
= hisax_cardmsg
;
1592 INIT_WORK(&cs
->tqueue
, (void *)(void *)hisax_bh
, cs
);
1593 cs
->channel
[0].d_st
->l2
.l2l1
= hisax_d_l2l1
;
1594 for (i
= 0; i
< 2; i
++) {
1595 cs
->bcs
[i
].BC_SetStack
= hisax_bc_setstack
;
1596 cs
->bcs
[i
].BC_Close
= hisax_bc_close
;
1598 b_if
[i
]->ifc
.l1l2
= hisax_b_l1l2
;
1600 hisax_d_if
->b_if
[i
] = b_if
[i
];
1602 hisax_d_if
->ifc
.l1l2
= hisax_d_l1l2
;
1603 skb_queue_head_init(&hisax_d_if
->erq
);
1604 clear_bit(0, &hisax_d_if
->ph_state
);
1609 void hisax_unregister(struct hisax_d_if
*hisax_d_if
)
1611 cards
[hisax_d_if
->cs
->cardnr
].typ
= 0;
1612 HiSax_closecard(hisax_d_if
->cs
->cardnr
);
1613 skb_queue_purge(&hisax_d_if
->erq
);
1618 static void hisax_sched_event(struct IsdnCardState
*cs
, int event
)
1620 test_and_set_bit(event
, &cs
->event
);
1621 schedule_work(&cs
->tqueue
);
1624 static void hisax_bh(struct IsdnCardState
*cs
)
1629 if (test_and_clear_bit(D_RCVBUFREADY
, &cs
->event
))
1630 DChannel_proc_rcv(cs
);
1631 if (test_and_clear_bit(E_RCVBUFREADY
, &cs
->event
))
1632 EChannel_proc_rcv(cs
->hw
.hisax_d_if
);
1633 if (test_and_clear_bit(D_L1STATECHANGE
, &cs
->event
)) {
1634 if (test_bit(0, &cs
->hw
.hisax_d_if
->ph_state
))
1635 pr
= PH_ACTIVATE
| INDICATION
;
1637 pr
= PH_DEACTIVATE
| INDICATION
;
1638 for (st
= cs
->stlist
; st
; st
= st
->next
)
1639 st
->l1
.l1l2(st
, pr
, NULL
);
1644 static void hisax_b_sched_event(struct BCState
*bcs
, int event
)
1646 test_and_set_bit(event
, &bcs
->event
);
1647 schedule_work(&bcs
->tqueue
);
1650 static inline void D_L2L1(struct hisax_d_if
*d_if
, int pr
, void *arg
)
1652 struct hisax_if
*ifc
= (struct hisax_if
*) d_if
;
1653 ifc
->l2l1(ifc
, pr
, arg
);
1656 static inline void B_L2L1(struct hisax_b_if
*b_if
, int pr
, void *arg
)
1658 struct hisax_if
*ifc
= (struct hisax_if
*) b_if
;
1659 ifc
->l2l1(ifc
, pr
, arg
);
1662 static void hisax_d_l1l2(struct hisax_if
*ifc
, int pr
, void *arg
)
1664 struct hisax_d_if
*d_if
= (struct hisax_d_if
*) ifc
;
1665 struct IsdnCardState
*cs
= d_if
->cs
;
1667 struct sk_buff
*skb
;
1670 case PH_ACTIVATE
| INDICATION
:
1671 set_bit(0, &d_if
->ph_state
);
1672 hisax_sched_event(cs
, D_L1STATECHANGE
);
1674 case PH_DEACTIVATE
| INDICATION
:
1675 clear_bit(0, &d_if
->ph_state
);
1676 hisax_sched_event(cs
, D_L1STATECHANGE
);
1678 case PH_DATA
| INDICATION
:
1679 skb_queue_tail(&cs
->rq
, arg
);
1680 hisax_sched_event(cs
, D_RCVBUFREADY
);
1682 case PH_DATA
| CONFIRM
:
1683 skb
= skb_dequeue(&cs
->sq
);
1685 D_L2L1(d_if
, PH_DATA
| REQUEST
, skb
);
1688 clear_bit(FLG_L1_DBUSY
, &cs
->HW_Flags
);
1689 for (st
= cs
->stlist
; st
; st
= st
->next
) {
1690 if (test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
)) {
1691 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1696 case PH_DATA_E
| INDICATION
:
1697 skb_queue_tail(&d_if
->erq
, arg
);
1698 hisax_sched_event(cs
, E_RCVBUFREADY
);
1701 printk("pr %#x\n", pr
);
1706 static void hisax_b_l1l2(struct hisax_if
*ifc
, int pr
, void *arg
)
1708 struct hisax_b_if
*b_if
= (struct hisax_b_if
*) ifc
;
1709 struct BCState
*bcs
= b_if
->bcs
;
1710 struct PStack
*st
= bcs
->st
;
1711 struct sk_buff
*skb
;
1713 // FIXME use isdnl1?
1715 case PH_ACTIVATE
| INDICATION
:
1716 st
->l1
.l1l2(st
, pr
, NULL
);
1718 case PH_DEACTIVATE
| INDICATION
:
1719 st
->l1
.l1l2(st
, pr
, NULL
);
1720 clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1721 skb_queue_purge(&bcs
->squeue
);
1722 bcs
->hw
.b_if
= NULL
;
1724 case PH_DATA
| INDICATION
:
1725 skb_queue_tail(&bcs
->rqueue
, arg
);
1726 hisax_b_sched_event(bcs
, B_RCVBUFREADY
);
1728 case PH_DATA
| CONFIRM
:
1729 bcs
->tx_cnt
-= (int) arg
;
1730 if (test_bit(FLG_LLI_L1WAKEUP
,&bcs
->st
->lli
.flag
)) {
1732 spin_lock_irqsave(&bcs
->aclock
, flags
);
1733 bcs
->ackcnt
+= (int) arg
;
1734 spin_unlock_irqrestore(&bcs
->aclock
, flags
);
1735 schedule_event(bcs
, B_ACKPENDING
);
1737 skb
= skb_dequeue(&bcs
->squeue
);
1739 B_L2L1(b_if
, PH_DATA
| REQUEST
, skb
);
1742 clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1743 if (test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
)) {
1744 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1748 printk("hisax_b_l1l2 pr %#x\n", pr
);
1753 static void hisax_d_l2l1(struct PStack
*st
, int pr
, void *arg
)
1755 struct IsdnCardState
*cs
= st
->l1
.hardware
;
1756 struct hisax_d_if
*hisax_d_if
= cs
->hw
.hisax_d_if
;
1757 struct sk_buff
*skb
= arg
;
1760 case PH_DATA
| REQUEST
:
1761 case PH_PULL
| INDICATION
:
1762 if (cs
->debug
& DEB_DLOG_HEX
)
1763 LogFrame(cs
, skb
->data
, skb
->len
);
1764 if (cs
->debug
& DEB_DLOG_VERBOSE
)
1765 dlogframe(cs
, skb
, 0);
1766 Logl2Frame(cs
, skb
, "PH_DATA_REQ", 0);
1768 if (!test_and_set_bit(FLG_L1_DBUSY
, &cs
->HW_Flags
))
1769 D_L2L1(hisax_d_if
, PH_DATA
| REQUEST
, skb
);
1771 skb_queue_tail(&cs
->sq
, skb
);
1773 case PH_PULL
| REQUEST
:
1774 if (!test_bit(FLG_L1_DBUSY
, &cs
->HW_Flags
))
1775 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1777 set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1780 D_L2L1(hisax_d_if
, pr
, arg
);
1785 static int hisax_cardmsg(struct IsdnCardState
*cs
, int mt
, void *arg
)
1790 static void hisax_b_l2l1(struct PStack
*st
, int pr
, void *arg
)
1792 struct BCState
*bcs
= st
->l1
.bcs
;
1793 struct hisax_b_if
*b_if
= bcs
->hw
.b_if
;
1796 case PH_ACTIVATE
| REQUEST
:
1797 B_L2L1(b_if
, pr
, (void *) st
->l1
.mode
);
1799 case PH_DATA
| REQUEST
:
1800 case PH_PULL
| INDICATION
:
1802 if (!test_and_set_bit(BC_FLG_BUSY
, &bcs
->Flag
)) {
1803 B_L2L1(b_if
, PH_DATA
| REQUEST
, arg
);
1805 skb_queue_tail(&bcs
->squeue
, arg
);
1808 case PH_PULL
| REQUEST
:
1809 if (!test_bit(BC_FLG_BUSY
, &bcs
->Flag
))
1810 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1812 set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1814 case PH_DEACTIVATE
| REQUEST
:
1815 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1816 skb_queue_purge(&bcs
->squeue
);
1818 B_L2L1(b_if
, pr
, arg
);
1823 static int hisax_bc_setstack(struct PStack
*st
, struct BCState
*bcs
)
1825 struct IsdnCardState
*cs
= st
->l1
.hardware
;
1826 struct hisax_d_if
*hisax_d_if
= cs
->hw
.hisax_d_if
;
1828 bcs
->channel
= st
->l1
.bc
;
1830 bcs
->hw
.b_if
= hisax_d_if
->b_if
[st
->l1
.bc
];
1831 hisax_d_if
->b_if
[st
->l1
.bc
]->bcs
= bcs
;
1834 st
->l2
.l2l1
= hisax_b_l2l1
;
1835 setstack_manager(st
);
1838 skb_queue_head_init(&bcs
->rqueue
);
1839 skb_queue_head_init(&bcs
->squeue
);
1843 static void hisax_bc_close(struct BCState
*bcs
)
1845 struct hisax_b_if
*b_if
= bcs
->hw
.b_if
;
1848 B_L2L1(b_if
, PH_DEACTIVATE
| REQUEST
, NULL
);
1851 static void EChannel_proc_rcv(struct hisax_d_if
*d_if
)
1853 struct IsdnCardState
*cs
= d_if
->cs
;
1855 struct sk_buff
*skb
;
1857 while ((skb
= skb_dequeue(&d_if
->erq
)) != NULL
) {
1858 if (cs
->debug
& DEB_DLOG_HEX
) {
1860 if ((skb
->len
) < MAX_DLOG_SPACE
/ 3 - 10) {
1866 ptr
+= QuickHex(ptr
, skb
->data
, skb
->len
);
1870 HiSax_putstatus(cs
, NULL
, cs
->dlog
);
1872 HiSax_putstatus(cs
, "LogEcho: ",
1873 "warning Frame too big (%d)",
1876 dev_kfree_skb_any(skb
);
1881 #include <linux/pci.h>
1883 static struct pci_device_id hisax_pci_tbl
[] __initdata
= {
1884 #ifdef CONFIG_HISAX_FRITZPCI
1885 {PCI_VENDOR_ID_AVM
, PCI_DEVICE_ID_AVM_A1
, PCI_ANY_ID
, PCI_ANY_ID
},
1887 #ifdef CONFIG_HISAX_DIEHLDIVA
1888 {PCI_VENDOR_ID_EICON
, PCI_DEVICE_ID_EICON_DIVA20
, PCI_ANY_ID
, PCI_ANY_ID
},
1889 {PCI_VENDOR_ID_EICON
, PCI_DEVICE_ID_EICON_DIVA20_U
, PCI_ANY_ID
, PCI_ANY_ID
},
1890 {PCI_VENDOR_ID_EICON
, PCI_DEVICE_ID_EICON_DIVA201
, PCI_ANY_ID
, PCI_ANY_ID
},
1891 //#########################################################################################
1892 {PCI_VENDOR_ID_EICON
, PCI_DEVICE_ID_EICON_DIVA202
, PCI_ANY_ID
, PCI_ANY_ID
},
1893 //#########################################################################################
1895 #ifdef CONFIG_HISAX_ELSA
1896 {PCI_VENDOR_ID_ELSA
, PCI_DEVICE_ID_ELSA_MICROLINK
, PCI_ANY_ID
, PCI_ANY_ID
},
1897 {PCI_VENDOR_ID_ELSA
, PCI_DEVICE_ID_ELSA_QS3000
, PCI_ANY_ID
, PCI_ANY_ID
},
1899 #ifdef CONFIG_HISAX_GAZEL
1900 {PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_R685
, PCI_ANY_ID
, PCI_ANY_ID
},
1901 {PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_R753
, PCI_ANY_ID
, PCI_ANY_ID
},
1902 {PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_DJINN_ITOO
, PCI_ANY_ID
, PCI_ANY_ID
},
1903 {PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_OLITEC
, PCI_ANY_ID
, PCI_ANY_ID
},
1905 #ifdef CONFIG_HISAX_QUADRO
1906 {PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9050
, PCI_ANY_ID
, PCI_ANY_ID
},
1908 #ifdef CONFIG_HISAX_NICCY
1909 {PCI_VENDOR_ID_SATSAGEM
, PCI_DEVICE_ID_SATSAGEM_NICCY
, PCI_ANY_ID
,PCI_ANY_ID
},
1911 #ifdef CONFIG_HISAX_SEDLBAUER
1912 {PCI_VENDOR_ID_TIGERJET
, PCI_DEVICE_ID_TIGERJET_100
, PCI_ANY_ID
,PCI_ANY_ID
},
1914 #if defined(CONFIG_HISAX_NETJET) || defined(CONFIG_HISAX_NETJET_U)
1915 {PCI_VENDOR_ID_TIGERJET
, PCI_DEVICE_ID_TIGERJET_300
, PCI_ANY_ID
,PCI_ANY_ID
},
1917 #if defined(CONFIG_HISAX_TELESPCI) || defined(CONFIG_HISAX_SCT_QUADRO)
1918 {PCI_VENDOR_ID_ZORAN
, PCI_DEVICE_ID_ZORAN_36120
, PCI_ANY_ID
,PCI_ANY_ID
},
1920 #ifdef CONFIG_HISAX_W6692
1921 {PCI_VENDOR_ID_DYNALINK
, PCI_DEVICE_ID_DYNALINK_IS64PH
, PCI_ANY_ID
,PCI_ANY_ID
},
1922 {PCI_VENDOR_ID_WINBOND2
, PCI_DEVICE_ID_WINBOND2_6692
, PCI_ANY_ID
,PCI_ANY_ID
},
1924 #ifdef CONFIG_HISAX_HFC_PCI
1925 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_2BD0
, PCI_ANY_ID
, PCI_ANY_ID
},
1926 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B000
, PCI_ANY_ID
, PCI_ANY_ID
},
1927 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B006
, PCI_ANY_ID
, PCI_ANY_ID
},
1928 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B007
, PCI_ANY_ID
, PCI_ANY_ID
},
1929 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B008
, PCI_ANY_ID
, PCI_ANY_ID
},
1930 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B009
, PCI_ANY_ID
, PCI_ANY_ID
},
1931 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00A
, PCI_ANY_ID
, PCI_ANY_ID
},
1932 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00B
, PCI_ANY_ID
, PCI_ANY_ID
},
1933 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00C
, PCI_ANY_ID
, PCI_ANY_ID
},
1934 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B100
, PCI_ANY_ID
, PCI_ANY_ID
},
1935 {PCI_VENDOR_ID_ABOCOM
, PCI_DEVICE_ID_ABOCOM_2BD1
, PCI_ANY_ID
, PCI_ANY_ID
},
1936 {PCI_VENDOR_ID_ASUSTEK
, PCI_DEVICE_ID_ASUSTEK_0675
, PCI_ANY_ID
, PCI_ANY_ID
},
1937 {PCI_VENDOR_ID_BERKOM
, PCI_DEVICE_ID_BERKOM_T_CONCEPT
, PCI_ANY_ID
, PCI_ANY_ID
},
1938 {PCI_VENDOR_ID_BERKOM
, PCI_DEVICE_ID_BERKOM_A1T
, PCI_ANY_ID
, PCI_ANY_ID
},
1939 {PCI_VENDOR_ID_ANIGMA
, PCI_DEVICE_ID_ANIGMA_MC145575
, PCI_ANY_ID
, PCI_ANY_ID
},
1940 {PCI_VENDOR_ID_ZOLTRIX
, PCI_DEVICE_ID_ZOLTRIX_2BD0
, PCI_ANY_ID
, PCI_ANY_ID
},
1941 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_IOM2_E
, PCI_ANY_ID
, PCI_ANY_ID
},
1942 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_E
, PCI_ANY_ID
, PCI_ANY_ID
},
1943 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_IOM2_A
, PCI_ANY_ID
, PCI_ANY_ID
},
1944 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_A
, PCI_ANY_ID
, PCI_ANY_ID
},
1946 { } /* Terminating entry */
1949 MODULE_DEVICE_TABLE(pci
, hisax_pci_tbl
);
1950 #endif /* CONFIG_PCI */
1952 module_init(HiSax_init
);
1953 module_exit(HiSax_exit
);
1955 EXPORT_SYMBOL(FsmNew
);
1956 EXPORT_SYMBOL(FsmFree
);
1957 EXPORT_SYMBOL(FsmEvent
);
1958 EXPORT_SYMBOL(FsmChangeState
);
1959 EXPORT_SYMBOL(FsmInitTimer
);
1960 EXPORT_SYMBOL(FsmDelTimer
);
1961 EXPORT_SYMBOL(FsmRestartTimer
);