1 /* $Id: capidrv.c,v 1.1.2.2 2004/01/12 23:17:24 keil Exp $
3 * ISDN4Linux Driver, using capi20 interface (kernelcapi)
5 * Copyright 1997 by Carsten Paeth <calle@calle.de>
7 * This software may be used and distributed according to the terms
8 * of the GNU General Public License, incorporated herein by reference.
12 #include <linux/module.h>
13 #include <linux/errno.h>
14 #include <linux/kernel.h>
15 #include <linux/major.h>
16 #include <linux/slab.h>
17 #include <linux/fcntl.h>
19 #include <linux/signal.h>
21 #include <linux/timer.h>
22 #include <linux/wait.h>
23 #include <linux/skbuff.h>
24 #include <linux/isdn.h>
25 #include <linux/isdnif.h>
26 #include <linux/proc_fs.h>
27 #include <linux/capi.h>
28 #include <linux/kernelcapi.h>
29 #include <linux/ctype.h>
30 #include <linux/init.h>
31 #include <linux/moduleparam.h>
33 #include <linux/isdn/capiutil.h>
34 #include <linux/isdn/capicmd.h>
37 static char *revision = "$Revision: 1.1.2.2 $";
38 static int debugmode = 0;
40 MODULE_DESCRIPTION("CAPI4Linux: Interface to ISDN4Linux");
41 MODULE_AUTHOR("Carsten Paeth");
42 MODULE_LICENSE("GPL");
43 module_param(debugmode, uint, 0);
45 /* -------- type definitions ----------------------------------------- */
48 struct capidrv_contr {
50 struct capidrv_contr *next;
67 struct timer_list listentimer;
70 * ID of capi message sent
78 struct capidrv_bchan {
79 struct capidrv_contr *contr;
84 u8 mynum[ISDN_MSNLEN];
90 struct capidrv_plci *next;
92 u32 ncci; /* ncci for CONNECT_ACTIVE_IND */
93 u16 msgid; /* to identfy CONNECT_CONF */
98 struct capidrv_ncci *next;
99 struct capidrv_plci *plcip;
101 u16 msgid; /* to identfy CONNECT_B3_CONF */
107 struct ncci_datahandle_queue {
108 struct ncci_datahandle_queue *next;
114 struct capidrv_ncci *nccip;
117 struct capidrv_plci *plci_list;
127 struct capidrv_data {
128 struct capi20_appl ap;
130 struct capidrv_contr *contr_list;
133 typedef struct capidrv_plci capidrv_plci;
134 typedef struct capidrv_ncci capidrv_ncci;
135 typedef struct capidrv_contr capidrv_contr;
136 typedef struct capidrv_data capidrv_data;
137 typedef struct capidrv_bchan capidrv_bchan;
139 /* -------- data definitions ----------------------------------------- */
141 static capidrv_data global;
142 static DEFINE_SPINLOCK(global_lock);
144 static void handle_dtrace_data(capidrv_contr *card,
145 int send, int level2, u8 *data, u16 len);
147 /* -------- convert functions ---------------------------------------- */
149 static inline u32 b1prot(int l2, int l3)
152 case ISDN_PROTO_L2_X75I:
153 case ISDN_PROTO_L2_X75UI:
154 case ISDN_PROTO_L2_X75BUI:
156 case ISDN_PROTO_L2_HDLC:
159 case ISDN_PROTO_L2_TRANS:
161 case ISDN_PROTO_L2_V11096:
162 case ISDN_PROTO_L2_V11019:
163 case ISDN_PROTO_L2_V11038:
165 case ISDN_PROTO_L2_FAX:
167 case ISDN_PROTO_L2_MODEM:
172 static inline u32 b2prot(int l2, int l3)
175 case ISDN_PROTO_L2_X75I:
176 case ISDN_PROTO_L2_X75UI:
177 case ISDN_PROTO_L2_X75BUI:
180 case ISDN_PROTO_L2_HDLC:
181 case ISDN_PROTO_L2_TRANS:
182 case ISDN_PROTO_L2_V11096:
183 case ISDN_PROTO_L2_V11019:
184 case ISDN_PROTO_L2_V11038:
185 case ISDN_PROTO_L2_MODEM:
187 case ISDN_PROTO_L2_FAX:
192 static inline u32 b3prot(int l2, int l3)
195 case ISDN_PROTO_L2_X75I:
196 case ISDN_PROTO_L2_X75UI:
197 case ISDN_PROTO_L2_X75BUI:
198 case ISDN_PROTO_L2_HDLC:
199 case ISDN_PROTO_L2_TRANS:
200 case ISDN_PROTO_L2_V11096:
201 case ISDN_PROTO_L2_V11019:
202 case ISDN_PROTO_L2_V11038:
203 case ISDN_PROTO_L2_MODEM:
206 case ISDN_PROTO_L2_FAX:
211 static _cstruct b1config_async_v110(u16 rate)
213 /* CAPI-Spec "B1 Configuration" */
214 static unsigned char buf[9];
215 buf[0] = 8; /* len */
216 /* maximum bitrate */
217 buf[1] = rate & 0xff; buf[2] = (rate >> 8) & 0xff;
218 buf[3] = 8; buf[4] = 0; /* 8 bits per character */
219 buf[5] = 0; buf[6] = 0; /* parity none */
220 buf[7] = 0; buf[8] = 0; /* 1 stop bit */
224 static _cstruct b1config(int l2, int l3)
227 case ISDN_PROTO_L2_X75I:
228 case ISDN_PROTO_L2_X75UI:
229 case ISDN_PROTO_L2_X75BUI:
230 case ISDN_PROTO_L2_HDLC:
231 case ISDN_PROTO_L2_TRANS:
234 case ISDN_PROTO_L2_V11096:
235 return b1config_async_v110(9600);
236 case ISDN_PROTO_L2_V11019:
237 return b1config_async_v110(19200);
238 case ISDN_PROTO_L2_V11038:
239 return b1config_async_v110(38400);
243 static inline u16 si2cip(u8 si1, u8 si2)
245 static const u8 cip[17][5] =
248 {0, 0, 0, 0, 0}, /*0 */
249 {16, 16, 4, 26, 16}, /*1 */
250 {17, 17, 17, 4, 4}, /*2 */
251 {2, 2, 2, 2, 2}, /*3 */
252 {18, 18, 18, 18, 18}, /*4 */
253 {2, 2, 2, 2, 2}, /*5 */
254 {0, 0, 0, 0, 0}, /*6 */
255 {2, 2, 2, 2, 2}, /*7 */
256 {2, 2, 2, 2, 2}, /*8 */
257 {21, 21, 21, 21, 21}, /*9 */
258 {19, 19, 19, 19, 19}, /*10 */
259 {0, 0, 0, 0, 0}, /*11 */
260 {0, 0, 0, 0, 0}, /*12 */
261 {0, 0, 0, 0, 0}, /*13 */
262 {0, 0, 0, 0, 0}, /*14 */
263 {22, 22, 22, 22, 22}, /*15 */
264 {27, 27, 27, 28, 27} /*16 */
271 return (u16) cip[si1][si2];
274 static inline u8 cip2si1(u16 cipval)
276 static const u8 si[32] =
277 {7, 1, 7, 7, 1, 1, 7, 7, /*0-7 */
278 7, 1, 0, 0, 0, 0, 0, 0, /*8-15 */
279 1, 2, 4, 10, 9, 9, 15, 7, /*16-23 */
280 7, 7, 1, 16, 16, 0, 0, 0}; /*24-31 */
283 cipval = 0; /* .... */
287 static inline u8 cip2si2(u16 cipval)
289 static const u8 si[32] =
290 {0, 0, 0, 0, 2, 3, 0, 0, /*0-7 */
291 0, 3, 0, 0, 0, 0, 0, 0, /*8-15 */
292 1, 2, 0, 0, 9, 0, 0, 0, /*16-23 */
293 0, 0, 3, 2, 3, 0, 0, 0}; /*24-31 */
296 cipval = 0; /* .... */
301 /* -------- controller management ------------------------------------- */
303 static inline capidrv_contr *findcontrbydriverid(int driverid)
308 spin_lock_irqsave(&global_lock, flags);
309 for (p = global.contr_list; p; p = p->next)
310 if (p->myid == driverid)
312 spin_unlock_irqrestore(&global_lock, flags);
316 static capidrv_contr *findcontrbynumber(u32 contr)
319 capidrv_contr *p = global.contr_list;
321 spin_lock_irqsave(&global_lock, flags);
322 for (p = global.contr_list; p; p = p->next)
323 if (p->contrnr == contr)
325 spin_unlock_irqrestore(&global_lock, flags);
330 /* -------- plci management ------------------------------------------ */
332 static capidrv_plci *new_plci(capidrv_contr * card, int chan)
336 plcip = kzalloc(sizeof(capidrv_plci), GFP_ATOMIC);
341 plcip->state = ST_PLCI_NONE;
345 plcip->next = card->plci_list;
346 card->plci_list = plcip;
347 card->bchans[chan].plcip = plcip;
352 static capidrv_plci *find_plci_by_plci(capidrv_contr * card, u32 plci)
355 for (p = card->plci_list; p; p = p->next)
361 static capidrv_plci *find_plci_by_msgid(capidrv_contr * card, u16 msgid)
364 for (p = card->plci_list; p; p = p->next)
365 if (p->msgid == msgid)
370 static capidrv_plci *find_plci_by_ncci(capidrv_contr * card, u32 ncci)
373 for (p = card->plci_list; p; p = p->next)
374 if (p->plci == (ncci & 0xffff))
379 static void free_plci(capidrv_contr * card, capidrv_plci * plcip)
383 for (pp = &card->plci_list; *pp; pp = &(*pp)->next) {
386 card->bchans[plcip->chan].plcip = NULL;
387 card->bchans[plcip->chan].disconnecting = 0;
388 card->bchans[plcip->chan].incoming = 0;
393 printk(KERN_ERR "capidrv-%d: free_plci %p (0x%x) not found, Huh?\n",
394 card->contrnr, plcip, plcip->plci);
397 /* -------- ncci management ------------------------------------------ */
399 static inline capidrv_ncci *new_ncci(capidrv_contr * card,
400 capidrv_plci * plcip,
405 nccip = kzalloc(sizeof(capidrv_ncci), GFP_ATOMIC);
411 nccip->state = ST_NCCI_NONE;
412 nccip->plcip = plcip;
413 nccip->chan = plcip->chan;
414 nccip->datahandle = 0;
416 nccip->next = plcip->ncci_list;
417 plcip->ncci_list = nccip;
419 card->bchans[plcip->chan].nccip = nccip;
424 static inline capidrv_ncci *find_ncci(capidrv_contr * card, u32 ncci)
429 if ((plcip = find_plci_by_ncci(card, ncci)) == 0)
432 for (p = plcip->ncci_list; p; p = p->next)
438 static inline capidrv_ncci *find_ncci_by_msgid(capidrv_contr * card,
444 if ((plcip = find_plci_by_ncci(card, ncci)) == 0)
447 for (p = plcip->ncci_list; p; p = p->next)
448 if (p->msgid == msgid)
453 static void free_ncci(capidrv_contr * card, struct capidrv_ncci *nccip)
455 struct capidrv_ncci **pp;
457 for (pp = &(nccip->plcip->ncci_list); *pp; pp = &(*pp)->next) {
463 card->bchans[nccip->chan].nccip = NULL;
467 static int capidrv_add_ack(struct capidrv_ncci *nccip,
468 u16 datahandle, int len)
470 struct ncci_datahandle_queue *n, **pp;
472 n = (struct ncci_datahandle_queue *)
473 kmalloc(sizeof(struct ncci_datahandle_queue), GFP_ATOMIC);
475 printk(KERN_ERR "capidrv: kmalloc ncci_datahandle failed\n");
479 n->datahandle = datahandle;
481 for (pp = &nccip->ackqueue; *pp; pp = &(*pp)->next) ;
486 static int capidrv_del_ack(struct capidrv_ncci *nccip, u16 datahandle)
488 struct ncci_datahandle_queue **pp, *p;
491 for (pp = &nccip->ackqueue; *pp; pp = &(*pp)->next) {
492 if ((*pp)->datahandle == datahandle) {
503 /* -------- convert and send capi message ---------------------------- */
505 static void send_message(capidrv_contr * card, _cmsg * cmsg)
509 capi_cmsg2message(cmsg, cmsg->buf);
510 len = CAPIMSG_LEN(cmsg->buf);
511 skb = alloc_skb(len, GFP_ATOMIC);
512 memcpy(skb_put(skb, len), cmsg->buf, len);
513 if (capi20_put_message(&global.ap, skb) != CAPI_NOERROR)
517 /* -------- state machine -------------------------------------------- */
519 struct listenstatechange {
525 static struct listenstatechange listentable[] =
527 {ST_LISTEN_NONE, ST_LISTEN_WAIT_CONF, EV_LISTEN_REQ},
528 {ST_LISTEN_ACTIVE, ST_LISTEN_ACTIVE_WAIT_CONF, EV_LISTEN_REQ},
529 {ST_LISTEN_WAIT_CONF, ST_LISTEN_NONE, EV_LISTEN_CONF_ERROR},
530 {ST_LISTEN_ACTIVE_WAIT_CONF, ST_LISTEN_ACTIVE, EV_LISTEN_CONF_ERROR},
531 {ST_LISTEN_WAIT_CONF, ST_LISTEN_NONE, EV_LISTEN_CONF_EMPTY},
532 {ST_LISTEN_ACTIVE_WAIT_CONF, ST_LISTEN_NONE, EV_LISTEN_CONF_EMPTY},
533 {ST_LISTEN_WAIT_CONF, ST_LISTEN_ACTIVE, EV_LISTEN_CONF_OK},
534 {ST_LISTEN_ACTIVE_WAIT_CONF, ST_LISTEN_ACTIVE, EV_LISTEN_CONF_OK},
538 static void listen_change_state(capidrv_contr * card, int event)
540 struct listenstatechange *p = listentable;
542 if (card->state == p->actstate && p->event == event) {
544 printk(KERN_DEBUG "capidrv-%d: listen_change_state %d -> %d\n",
545 card->contrnr, card->state, p->nextstate);
546 card->state = p->nextstate;
551 printk(KERN_ERR "capidrv-%d: listen_change_state state=%d event=%d ????\n",
552 card->contrnr, card->state, event);
556 /* ------------------------------------------------------------------ */
558 static void p0(capidrv_contr * card, capidrv_plci * plci)
562 card->bchans[plci->chan].contr = NULL;
563 cmd.command = ISDN_STAT_DHUP;
564 cmd.driver = card->myid;
565 cmd.arg = plci->chan;
566 card->interface.statcallb(&cmd);
567 free_plci(card, plci);
570 /* ------------------------------------------------------------------ */
572 struct plcistatechange {
576 void (*changefunc) (capidrv_contr * card, capidrv_plci * plci);
579 static struct plcistatechange plcitable[] =
582 {ST_PLCI_NONE, ST_PLCI_OUTGOING, EV_PLCI_CONNECT_REQ, NULL},
583 {ST_PLCI_NONE, ST_PLCI_ALLOCATED, EV_PLCI_FACILITY_IND_UP, NULL},
584 {ST_PLCI_NONE, ST_PLCI_INCOMING, EV_PLCI_CONNECT_IND, NULL},
585 {ST_PLCI_NONE, ST_PLCI_RESUMEING, EV_PLCI_RESUME_REQ, NULL},
587 {ST_PLCI_OUTGOING, ST_PLCI_NONE, EV_PLCI_CONNECT_CONF_ERROR, p0},
588 {ST_PLCI_OUTGOING, ST_PLCI_ALLOCATED, EV_PLCI_CONNECT_CONF_OK, NULL},
590 {ST_PLCI_ALLOCATED, ST_PLCI_ACTIVE, EV_PLCI_CONNECT_ACTIVE_IND, NULL},
591 {ST_PLCI_ALLOCATED, ST_PLCI_DISCONNECTING, EV_PLCI_DISCONNECT_REQ, NULL},
592 {ST_PLCI_ALLOCATED, ST_PLCI_DISCONNECTING, EV_PLCI_FACILITY_IND_DOWN, NULL},
593 {ST_PLCI_ALLOCATED, ST_PLCI_DISCONNECTED, EV_PLCI_DISCONNECT_IND, NULL},
595 {ST_PLCI_ACTIVE, ST_PLCI_DISCONNECTING, EV_PLCI_DISCONNECT_REQ, NULL},
596 {ST_PLCI_ACTIVE, ST_PLCI_DISCONNECTING, EV_PLCI_FACILITY_IND_DOWN, NULL},
597 {ST_PLCI_ACTIVE, ST_PLCI_DISCONNECTED, EV_PLCI_DISCONNECT_IND, NULL},
598 {ST_PLCI_ACTIVE, ST_PLCI_HELD, EV_PLCI_HOLD_IND, NULL},
599 {ST_PLCI_ACTIVE, ST_PLCI_DISCONNECTING, EV_PLCI_SUSPEND_IND, NULL},
601 {ST_PLCI_INCOMING, ST_PLCI_DISCONNECTING, EV_PLCI_CONNECT_REJECT, NULL},
602 {ST_PLCI_INCOMING, ST_PLCI_FACILITY_IND, EV_PLCI_FACILITY_IND_UP, NULL},
603 {ST_PLCI_INCOMING, ST_PLCI_ACCEPTING, EV_PLCI_CONNECT_RESP, NULL},
604 {ST_PLCI_INCOMING, ST_PLCI_DISCONNECTING, EV_PLCI_DISCONNECT_REQ, NULL},
605 {ST_PLCI_INCOMING, ST_PLCI_DISCONNECTING, EV_PLCI_FACILITY_IND_DOWN, NULL},
606 {ST_PLCI_INCOMING, ST_PLCI_DISCONNECTED, EV_PLCI_DISCONNECT_IND, NULL},
607 {ST_PLCI_INCOMING, ST_PLCI_DISCONNECTING, EV_PLCI_CD_IND, NULL},
609 {ST_PLCI_FACILITY_IND, ST_PLCI_DISCONNECTING, EV_PLCI_CONNECT_REJECT, NULL},
610 {ST_PLCI_FACILITY_IND, ST_PLCI_ACCEPTING, EV_PLCI_CONNECT_ACTIVE_IND, NULL},
611 {ST_PLCI_FACILITY_IND, ST_PLCI_DISCONNECTING, EV_PLCI_DISCONNECT_REQ, NULL},
612 {ST_PLCI_FACILITY_IND, ST_PLCI_DISCONNECTING, EV_PLCI_FACILITY_IND_DOWN, NULL},
613 {ST_PLCI_FACILITY_IND, ST_PLCI_DISCONNECTED, EV_PLCI_DISCONNECT_IND, NULL},
615 {ST_PLCI_ACCEPTING, ST_PLCI_ACTIVE, EV_PLCI_CONNECT_ACTIVE_IND, NULL},
616 {ST_PLCI_ACCEPTING, ST_PLCI_DISCONNECTING, EV_PLCI_DISCONNECT_REQ, NULL},
617 {ST_PLCI_ACCEPTING, ST_PLCI_DISCONNECTING, EV_PLCI_FACILITY_IND_DOWN, NULL},
618 {ST_PLCI_ACCEPTING, ST_PLCI_DISCONNECTED, EV_PLCI_DISCONNECT_IND, NULL},
620 {ST_PLCI_DISCONNECTING, ST_PLCI_DISCONNECTED, EV_PLCI_DISCONNECT_IND, NULL},
622 {ST_PLCI_DISCONNECTED, ST_PLCI_NONE, EV_PLCI_DISCONNECT_RESP, p0},
624 {ST_PLCI_RESUMEING, ST_PLCI_NONE, EV_PLCI_RESUME_CONF_ERROR, p0},
625 {ST_PLCI_RESUMEING, ST_PLCI_RESUME, EV_PLCI_RESUME_CONF_OK, NULL},
627 {ST_PLCI_RESUME, ST_PLCI_ACTIVE, EV_PLCI_RESUME_IND, NULL},
629 {ST_PLCI_HELD, ST_PLCI_ACTIVE, EV_PLCI_RETRIEVE_IND, NULL},
633 static void plci_change_state(capidrv_contr * card, capidrv_plci * plci, int event)
635 struct plcistatechange *p = plcitable;
637 if (plci->state == p->actstate && p->event == event) {
639 printk(KERN_DEBUG "capidrv-%d: plci_change_state:0x%x %d -> %d\n",
640 card->contrnr, plci->plci, plci->state, p->nextstate);
641 plci->state = p->nextstate;
643 p->changefunc(card, plci);
648 printk(KERN_ERR "capidrv-%d: plci_change_state:0x%x state=%d event=%d ????\n",
649 card->contrnr, plci->plci, plci->state, event);
652 /* ------------------------------------------------------------------ */
656 static void n0(capidrv_contr * card, capidrv_ncci * ncci)
660 capi_fill_DISCONNECT_REQ(&cmsg,
664 NULL, /* BChannelinformation */
665 NULL, /* Keypadfacility */
666 NULL, /* Useruserdata */ /* $$$$ */
667 NULL /* Facilitydataarray */
669 send_message(card, &cmsg);
670 plci_change_state(card, ncci->plcip, EV_PLCI_DISCONNECT_REQ);
672 cmd.command = ISDN_STAT_BHUP;
673 cmd.driver = card->myid;
674 cmd.arg = ncci->chan;
675 card->interface.statcallb(&cmd);
676 free_ncci(card, ncci);
679 /* ------------------------------------------------------------------ */
681 struct nccistatechange {
685 void (*changefunc) (capidrv_contr * card, capidrv_ncci * ncci);
688 static struct nccistatechange nccitable[] =
691 {ST_NCCI_NONE, ST_NCCI_OUTGOING, EV_NCCI_CONNECT_B3_REQ, NULL},
692 {ST_NCCI_NONE, ST_NCCI_INCOMING, EV_NCCI_CONNECT_B3_IND, NULL},
694 {ST_NCCI_OUTGOING, ST_NCCI_ALLOCATED, EV_NCCI_CONNECT_B3_CONF_OK, NULL},
695 {ST_NCCI_OUTGOING, ST_NCCI_NONE, EV_NCCI_CONNECT_B3_CONF_ERROR, n0},
697 {ST_NCCI_INCOMING, ST_NCCI_DISCONNECTING, EV_NCCI_CONNECT_B3_REJECT, NULL},
698 {ST_NCCI_INCOMING, ST_NCCI_ALLOCATED, EV_NCCI_CONNECT_B3_RESP, NULL},
699 {ST_NCCI_INCOMING, ST_NCCI_DISCONNECTED, EV_NCCI_DISCONNECT_B3_IND, NULL},
700 {ST_NCCI_INCOMING, ST_NCCI_DISCONNECTING, EV_NCCI_DISCONNECT_B3_REQ, NULL},
702 {ST_NCCI_ALLOCATED, ST_NCCI_ACTIVE, EV_NCCI_CONNECT_B3_ACTIVE_IND, NULL},
703 {ST_NCCI_ALLOCATED, ST_NCCI_DISCONNECTED, EV_NCCI_DISCONNECT_B3_IND, NULL},
704 {ST_NCCI_ALLOCATED, ST_NCCI_DISCONNECTING, EV_NCCI_DISCONNECT_B3_REQ, NULL},
706 {ST_NCCI_ACTIVE, ST_NCCI_ACTIVE, EV_NCCI_RESET_B3_IND, NULL},
707 {ST_NCCI_ACTIVE, ST_NCCI_RESETING, EV_NCCI_RESET_B3_REQ, NULL},
708 {ST_NCCI_ACTIVE, ST_NCCI_DISCONNECTED, EV_NCCI_DISCONNECT_B3_IND, NULL},
709 {ST_NCCI_ACTIVE, ST_NCCI_DISCONNECTING, EV_NCCI_DISCONNECT_B3_REQ, NULL},
711 {ST_NCCI_RESETING, ST_NCCI_ACTIVE, EV_NCCI_RESET_B3_IND, NULL},
712 {ST_NCCI_RESETING, ST_NCCI_DISCONNECTED, EV_NCCI_DISCONNECT_B3_IND, NULL},
713 {ST_NCCI_RESETING, ST_NCCI_DISCONNECTING, EV_NCCI_DISCONNECT_B3_REQ, NULL},
715 {ST_NCCI_DISCONNECTING, ST_NCCI_DISCONNECTED, EV_NCCI_DISCONNECT_B3_IND, NULL},
716 {ST_NCCI_DISCONNECTING, ST_NCCI_PREVIOUS, EV_NCCI_DISCONNECT_B3_CONF_ERROR,NULL},
718 {ST_NCCI_DISCONNECTED, ST_NCCI_NONE, EV_NCCI_DISCONNECT_B3_RESP, n0},
722 static void ncci_change_state(capidrv_contr * card, capidrv_ncci * ncci, int event)
724 struct nccistatechange *p = nccitable;
726 if (ncci->state == p->actstate && p->event == event) {
728 printk(KERN_DEBUG "capidrv-%d: ncci_change_state:0x%x %d -> %d\n",
729 card->contrnr, ncci->ncci, ncci->state, p->nextstate);
730 if (p->nextstate == ST_NCCI_PREVIOUS) {
731 ncci->state = ncci->oldstate;
732 ncci->oldstate = p->actstate;
734 ncci->oldstate = p->actstate;
735 ncci->state = p->nextstate;
738 p->changefunc(card, ncci);
743 printk(KERN_ERR "capidrv-%d: ncci_change_state:0x%x state=%d event=%d ????\n",
744 card->contrnr, ncci->ncci, ncci->state, event);
747 /* ------------------------------------------------------------------- */
749 static inline int new_bchan(capidrv_contr * card)
752 for (i = 0; i < card->nbchan; i++) {
753 if (card->bchans[i].plcip == 0) {
754 card->bchans[i].disconnecting = 0;
761 /* ------------------------------------------------------------------- */
763 static void handle_controller(_cmsg * cmsg)
765 capidrv_contr *card = findcontrbynumber(cmsg->adr.adrController & 0x7f);
768 printk(KERN_ERR "capidrv: %s from unknown controller 0x%x\n",
769 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
770 cmsg->adr.adrController & 0x7f);
773 switch (CAPICMD(cmsg->Command, cmsg->Subcommand)) {
775 case CAPI_LISTEN_CONF: /* Controller */
777 printk(KERN_DEBUG "capidrv-%d: listenconf Info=0x%4x (%s) cipmask=0x%x\n",
778 card->contrnr, cmsg->Info, capi_info2str(cmsg->Info), card->cipmask);
780 listen_change_state(card, EV_LISTEN_CONF_ERROR);
781 } else if (card->cipmask == 0) {
782 listen_change_state(card, EV_LISTEN_CONF_EMPTY);
784 listen_change_state(card, EV_LISTEN_CONF_OK);
788 case CAPI_MANUFACTURER_IND: /* Controller */
789 if ( cmsg->ManuID == 0x214D5641
791 && cmsg->Function == 1) {
792 u8 *data = cmsg->ManuData+3;
793 u16 len = cmsg->ManuData[0];
797 len = (cmsg->ManuData[1] | (cmsg->ManuData[2] << 8));
801 layer = ((*(data-1)) << 8) | *(data-2);
803 direction = (layer & 0x200) ? 0 : 1;
804 else direction = (layer & 0x800) ? 0 : 1;
805 if (layer & 0x0C00) {
806 if ((layer & 0xff) == 0x80) {
807 handle_dtrace_data(card, direction, 1, data, len);
810 } else if ((layer & 0xff) < 0x80) {
811 handle_dtrace_data(card, direction, 0, data, len);
814 printk(KERN_INFO "capidrv-%d: %s from controller 0x%x layer 0x%x, ignored\n",
816 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
817 cmsg->adr.adrController, layer);
821 case CAPI_MANUFACTURER_CONF: /* Controller */
822 if (cmsg->ManuID == 0x214D5641) {
824 switch (cmsg->Class) {
826 case 1: s = "unknown class"; break;
827 case 2: s = "unknown function"; break;
828 default: s = "unkown error"; break;
831 printk(KERN_INFO "capidrv-%d: %s from controller 0x%x function %d: %s\n",
833 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
834 cmsg->adr.adrController,
839 case CAPI_FACILITY_IND: /* Controller/plci/ncci */
841 case CAPI_FACILITY_CONF: /* Controller/plci/ncci */
843 case CAPI_INFO_IND: /* Controller/plci */
845 case CAPI_INFO_CONF: /* Controller/plci */
849 printk(KERN_ERR "capidrv-%d: got %s from controller 0x%x ???",
851 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
852 cmsg->adr.adrController);
857 printk(KERN_INFO "capidrv-%d: %s from controller 0x%x ignored\n",
859 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
860 cmsg->adr.adrController);
863 static void handle_incoming_call(capidrv_contr * card, _cmsg * cmsg)
866 capidrv_bchan *bchan;
870 if ((chan = new_bchan(card)) == -1) {
871 printk(KERN_ERR "capidrv-%d: incoming call on not existing bchan ?\n", card->contrnr);
874 bchan = &card->bchans[chan];
875 if ((plcip = new_plci(card, chan)) == 0) {
876 printk(KERN_ERR "capidrv-%d: incoming call: no memory, sorry.\n", card->contrnr);
880 plcip->plci = cmsg->adr.adrPLCI;
881 plci_change_state(card, plcip, EV_PLCI_CONNECT_IND);
883 cmd.command = ISDN_STAT_ICALL;
884 cmd.driver = card->myid;
886 memset(&cmd.parm.setup, 0, sizeof(cmd.parm.setup));
887 strncpy(cmd.parm.setup.phone,
888 cmsg->CallingPartyNumber + 3,
889 cmsg->CallingPartyNumber[0] - 2);
890 strncpy(cmd.parm.setup.eazmsn,
891 cmsg->CalledPartyNumber + 2,
892 cmsg->CalledPartyNumber[0] - 1);
893 cmd.parm.setup.si1 = cip2si1(cmsg->CIPValue);
894 cmd.parm.setup.si2 = cip2si2(cmsg->CIPValue);
895 cmd.parm.setup.plan = cmsg->CallingPartyNumber[1];
896 cmd.parm.setup.screen = cmsg->CallingPartyNumber[2];
898 printk(KERN_INFO "capidrv-%d: incoming call %s,%d,%d,%s\n",
900 cmd.parm.setup.phone,
903 cmd.parm.setup.eazmsn);
905 if (cmd.parm.setup.si1 == 1 && cmd.parm.setup.si2 != 0) {
906 printk(KERN_INFO "capidrv-%d: patching si2=%d to 0 for VBOX\n",
909 cmd.parm.setup.si2 = 0;
912 switch (card->interface.statcallb(&cmd)) {
915 /* No device matching this call.
916 * and isdn_common.c has send a HANGUP command
917 * which is ignored in state ST_PLCI_INCOMING,
918 * so we send RESP to ignore the call
920 capi_cmsg_answer(cmsg);
921 cmsg->Reject = 1; /* ignore */
922 send_message(card, cmsg);
923 plci_change_state(card, plcip, EV_PLCI_CONNECT_REJECT);
924 printk(KERN_INFO "capidrv-%d: incoming call %s,%d,%d,%s ignored\n",
926 cmd.parm.setup.phone,
929 cmd.parm.setup.eazmsn);
932 /* At least one device matching this call (RING on ttyI)
933 * HL-driver may send ALERTING on the D-channel in this
935 * really means: RING on ttyI or a net interface
936 * accepted this call already.
938 * If the call was accepted, state has already changed,
939 * and CONNECT_RESP already sent.
941 if (plcip->state == ST_PLCI_INCOMING) {
942 printk(KERN_INFO "capidrv-%d: incoming call %s,%d,%d,%s tty alerting\n",
944 cmd.parm.setup.phone,
947 cmd.parm.setup.eazmsn);
948 capi_fill_ALERT_REQ(cmsg,
951 plcip->plci, /* adr */
952 NULL,/* BChannelinformation */
953 NULL,/* Keypadfacility */
954 NULL,/* Useruserdata */
955 NULL /* Facilitydataarray */
957 plcip->msgid = cmsg->Messagenumber;
958 send_message(card, cmsg);
960 printk(KERN_INFO "capidrv-%d: incoming call %s,%d,%d,%s on netdev\n",
962 cmd.parm.setup.phone,
965 cmd.parm.setup.eazmsn);
969 case 2: /* Call will be rejected. */
970 capi_cmsg_answer(cmsg);
971 cmsg->Reject = 2; /* reject call, normal call clearing */
972 send_message(card, cmsg);
973 plci_change_state(card, plcip, EV_PLCI_CONNECT_REJECT);
977 /* An error happened. (Invalid parameters for example.) */
978 capi_cmsg_answer(cmsg);
979 cmsg->Reject = 8; /* reject call,
980 destination out of order */
981 send_message(card, cmsg);
982 plci_change_state(card, plcip, EV_PLCI_CONNECT_REJECT);
988 static void handle_plci(_cmsg * cmsg)
990 capidrv_contr *card = findcontrbynumber(cmsg->adr.adrController & 0x7f);
995 printk(KERN_ERR "capidrv: %s from unknown controller 0x%x\n",
996 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
997 cmsg->adr.adrController & 0x7f);
1000 switch (CAPICMD(cmsg->Command, cmsg->Subcommand)) {
1002 case CAPI_DISCONNECT_IND: /* plci */
1004 printk(KERN_INFO "capidrv-%d: %s reason 0x%x (%s) for plci 0x%x\n",
1006 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1007 cmsg->Reason, capi_info2str(cmsg->Reason), cmsg->adr.adrPLCI);
1009 if (!(plcip = find_plci_by_plci(card, cmsg->adr.adrPLCI))) {
1010 capi_cmsg_answer(cmsg);
1011 send_message(card, cmsg);
1014 card->bchans[plcip->chan].disconnecting = 1;
1015 plci_change_state(card, plcip, EV_PLCI_DISCONNECT_IND);
1016 capi_cmsg_answer(cmsg);
1017 send_message(card, cmsg);
1018 plci_change_state(card, plcip, EV_PLCI_DISCONNECT_RESP);
1021 case CAPI_DISCONNECT_CONF: /* plci */
1023 printk(KERN_INFO "capidrv-%d: %s info 0x%x (%s) for plci 0x%x\n",
1025 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1026 cmsg->Info, capi_info2str(cmsg->Info),
1029 if (!(plcip = find_plci_by_plci(card, cmsg->adr.adrPLCI)))
1032 card->bchans[plcip->chan].disconnecting = 1;
1035 case CAPI_ALERT_CONF: /* plci */
1037 printk(KERN_INFO "capidrv-%d: %s info 0x%x (%s) for plci 0x%x\n",
1039 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1040 cmsg->Info, capi_info2str(cmsg->Info),
1045 case CAPI_CONNECT_IND: /* plci */
1046 handle_incoming_call(card, cmsg);
1049 case CAPI_CONNECT_CONF: /* plci */
1051 printk(KERN_INFO "capidrv-%d: %s info 0x%x (%s) for plci 0x%x\n",
1053 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1054 cmsg->Info, capi_info2str(cmsg->Info),
1057 if (!(plcip = find_plci_by_msgid(card, cmsg->Messagenumber)))
1060 plcip->plci = cmsg->adr.adrPLCI;
1062 plci_change_state(card, plcip, EV_PLCI_CONNECT_CONF_ERROR);
1064 plci_change_state(card, plcip, EV_PLCI_CONNECT_CONF_OK);
1068 case CAPI_CONNECT_ACTIVE_IND: /* plci */
1070 if (!(plcip = find_plci_by_plci(card, cmsg->adr.adrPLCI)))
1073 if (card->bchans[plcip->chan].incoming) {
1074 capi_cmsg_answer(cmsg);
1075 send_message(card, cmsg);
1076 plci_change_state(card, plcip, EV_PLCI_CONNECT_ACTIVE_IND);
1078 capidrv_ncci *nccip;
1079 capi_cmsg_answer(cmsg);
1080 send_message(card, cmsg);
1082 nccip = new_ncci(card, plcip, cmsg->adr.adrPLCI);
1085 printk(KERN_ERR "capidrv-%d: no mem for ncci, sorry\n", card->contrnr);
1088 capi_fill_CONNECT_B3_REQ(cmsg,
1091 plcip->plci, /* adr */
1094 nccip->msgid = cmsg->Messagenumber;
1095 send_message(card, cmsg);
1096 cmd.command = ISDN_STAT_DCONN;
1097 cmd.driver = card->myid;
1098 cmd.arg = plcip->chan;
1099 card->interface.statcallb(&cmd);
1100 plci_change_state(card, plcip, EV_PLCI_CONNECT_ACTIVE_IND);
1101 ncci_change_state(card, nccip, EV_NCCI_CONNECT_B3_REQ);
1105 case CAPI_INFO_IND: /* Controller/plci */
1107 if (!(plcip = find_plci_by_plci(card, cmsg->adr.adrPLCI)))
1110 if (cmsg->InfoNumber == 0x4000) {
1111 if (cmsg->InfoElement[0] == 4) {
1112 cmd.command = ISDN_STAT_CINF;
1113 cmd.driver = card->myid;
1114 cmd.arg = plcip->chan;
1115 sprintf(cmd.parm.num, "%lu",
1117 ((u32) cmsg->InfoElement[1]
1118 | ((u32) (cmsg->InfoElement[2]) << 8)
1119 | ((u32) (cmsg->InfoElement[3]) << 16)
1120 | ((u32) (cmsg->InfoElement[4]) << 24)));
1121 card->interface.statcallb(&cmd);
1125 printk(KERN_ERR "capidrv-%d: %s\n",
1126 card->contrnr, capi_cmsg2str(cmsg));
1129 case CAPI_CONNECT_ACTIVE_CONF: /* plci */
1131 case CAPI_SELECT_B_PROTOCOL_CONF: /* plci */
1133 case CAPI_FACILITY_IND: /* Controller/plci/ncci */
1135 case CAPI_FACILITY_CONF: /* Controller/plci/ncci */
1138 case CAPI_INFO_CONF: /* Controller/plci */
1142 printk(KERN_ERR "capidrv-%d: got %s for plci 0x%x ???",
1144 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1149 printk(KERN_INFO "capidrv-%d: %s for plci 0x%x ignored\n",
1151 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1155 printk(KERN_ERR "capidrv-%d: %s: plci 0x%x not found\n",
1157 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1162 static void handle_ncci(_cmsg * cmsg)
1164 capidrv_contr *card = findcontrbynumber(cmsg->adr.adrController & 0x7f);
1165 capidrv_plci *plcip;
1166 capidrv_ncci *nccip;
1171 printk(KERN_ERR "capidrv: %s from unknown controller 0x%x\n",
1172 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1173 cmsg->adr.adrController & 0x7f);
1176 switch (CAPICMD(cmsg->Command, cmsg->Subcommand)) {
1178 case CAPI_CONNECT_B3_ACTIVE_IND: /* ncci */
1179 if (!(nccip = find_ncci(card, cmsg->adr.adrNCCI)))
1182 capi_cmsg_answer(cmsg);
1183 send_message(card, cmsg);
1184 ncci_change_state(card, nccip, EV_NCCI_CONNECT_B3_ACTIVE_IND);
1186 cmd.command = ISDN_STAT_BCONN;
1187 cmd.driver = card->myid;
1188 cmd.arg = nccip->chan;
1189 card->interface.statcallb(&cmd);
1191 printk(KERN_INFO "capidrv-%d: chan %d up with ncci 0x%x\n",
1192 card->contrnr, nccip->chan, nccip->ncci);
1195 case CAPI_CONNECT_B3_ACTIVE_CONF: /* ncci */
1198 case CAPI_CONNECT_B3_IND: /* ncci */
1200 plcip = find_plci_by_ncci(card, cmsg->adr.adrNCCI);
1202 nccip = new_ncci(card, plcip, cmsg->adr.adrNCCI);
1204 ncci_change_state(card, nccip, EV_NCCI_CONNECT_B3_IND);
1205 capi_fill_CONNECT_B3_RESP(cmsg,
1208 nccip->ncci, /* adr */
1212 send_message(card, cmsg);
1213 ncci_change_state(card, nccip, EV_NCCI_CONNECT_B3_RESP);
1216 printk(KERN_ERR "capidrv-%d: no mem for ncci, sorry\n", card->contrnr);
1218 printk(KERN_ERR "capidrv-%d: %s: plci for ncci 0x%x not found\n",
1220 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1223 capi_fill_CONNECT_B3_RESP(cmsg,
1230 send_message(card, cmsg);
1233 case CAPI_CONNECT_B3_CONF: /* ncci */
1235 if (!(nccip = find_ncci_by_msgid(card,
1237 cmsg->Messagenumber)))
1240 nccip->ncci = cmsg->adr.adrNCCI;
1242 printk(KERN_INFO "capidrv-%d: %s info 0x%x (%s) for ncci 0x%x\n",
1244 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1245 cmsg->Info, capi_info2str(cmsg->Info),
1250 ncci_change_state(card, nccip, EV_NCCI_CONNECT_B3_CONF_ERROR);
1252 ncci_change_state(card, nccip, EV_NCCI_CONNECT_B3_CONF_OK);
1255 case CAPI_CONNECT_B3_T90_ACTIVE_IND: /* ncci */
1256 capi_cmsg_answer(cmsg);
1257 send_message(card, cmsg);
1260 case CAPI_DATA_B3_IND: /* ncci */
1261 /* handled in handle_data() */
1264 case CAPI_DATA_B3_CONF: /* ncci */
1266 printk(KERN_WARNING "CAPI_DATA_B3_CONF: Info %x - %s\n",
1267 cmsg->Info, capi_info2str(cmsg->Info));
1269 if (!(nccip = find_ncci(card, cmsg->adr.adrNCCI)))
1272 len = capidrv_del_ack(nccip, cmsg->DataHandle);
1275 cmd.command = ISDN_STAT_BSENT;
1276 cmd.driver = card->myid;
1277 cmd.arg = nccip->chan;
1278 cmd.parm.length = len;
1279 card->interface.statcallb(&cmd);
1282 case CAPI_DISCONNECT_B3_IND: /* ncci */
1283 if (!(nccip = find_ncci(card, cmsg->adr.adrNCCI)))
1286 card->bchans[nccip->chan].disconnecting = 1;
1287 ncci_change_state(card, nccip, EV_NCCI_DISCONNECT_B3_IND);
1288 capi_cmsg_answer(cmsg);
1289 send_message(card, cmsg);
1290 ncci_change_state(card, nccip, EV_NCCI_DISCONNECT_B3_RESP);
1293 case CAPI_DISCONNECT_B3_CONF: /* ncci */
1294 if (!(nccip = find_ncci(card, cmsg->adr.adrNCCI)))
1297 printk(KERN_INFO "capidrv-%d: %s info 0x%x (%s) for ncci 0x%x\n",
1299 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1300 cmsg->Info, capi_info2str(cmsg->Info),
1302 ncci_change_state(card, nccip, EV_NCCI_DISCONNECT_B3_CONF_ERROR);
1306 case CAPI_RESET_B3_IND: /* ncci */
1307 if (!(nccip = find_ncci(card, cmsg->adr.adrNCCI)))
1309 ncci_change_state(card, nccip, EV_NCCI_RESET_B3_IND);
1310 capi_cmsg_answer(cmsg);
1311 send_message(card, cmsg);
1314 case CAPI_RESET_B3_CONF: /* ncci */
1315 goto ignored; /* $$$$ */
1317 case CAPI_FACILITY_IND: /* Controller/plci/ncci */
1319 case CAPI_FACILITY_CONF: /* Controller/plci/ncci */
1323 printk(KERN_ERR "capidrv-%d: got %s for ncci 0x%x ???",
1325 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1330 printk(KERN_INFO "capidrv-%d: %s for ncci 0x%x ignored\n",
1332 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1336 printk(KERN_ERR "capidrv-%d: %s: ncci 0x%x not found\n",
1338 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1343 static void handle_data(_cmsg * cmsg, struct sk_buff *skb)
1345 capidrv_contr *card = findcontrbynumber(cmsg->adr.adrController & 0x7f);
1346 capidrv_ncci *nccip;
1349 printk(KERN_ERR "capidrv: %s from unknown controller 0x%x\n",
1350 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1351 cmsg->adr.adrController & 0x7f);
1355 if (!(nccip = find_ncci(card, cmsg->adr.adrNCCI))) {
1356 printk(KERN_ERR "capidrv-%d: %s: ncci 0x%x not found\n",
1358 capi_cmd2str(cmsg->Command, cmsg->Subcommand),
1363 (void) skb_pull(skb, CAPIMSG_LEN(skb->data));
1364 card->interface.rcvcallb_skb(card->myid, nccip->chan, skb);
1365 capi_cmsg_answer(cmsg);
1366 send_message(card, cmsg);
1369 static _cmsg s_cmsg;
1371 static void capidrv_recv_message(struct capi20_appl *ap, struct sk_buff *skb)
1373 capi_message2cmsg(&s_cmsg, skb->data);
1375 printk(KERN_DEBUG "capidrv_signal: applid=%d %s\n",
1376 ap->applid, capi_cmsg2str(&s_cmsg));
1378 if (s_cmsg.Command == CAPI_DATA_B3
1379 && s_cmsg.Subcommand == CAPI_IND) {
1380 handle_data(&s_cmsg, skb);
1383 if ((s_cmsg.adr.adrController & 0xffffff00) == 0)
1384 handle_controller(&s_cmsg);
1385 else if ((s_cmsg.adr.adrPLCI & 0xffff0000) == 0)
1386 handle_plci(&s_cmsg);
1388 handle_ncci(&s_cmsg);
1390 * data of skb used in s_cmsg,
1391 * free data when s_cmsg is not used again
1392 * thanks to Lars Heete <hel@admin.de>
1397 /* ------------------------------------------------------------------- */
1399 #define PUTBYTE_TO_STATUS(card, byte) \
1401 *(card)->q931_write++ = (byte); \
1402 if ((card)->q931_write > (card)->q931_end) \
1403 (card)->q931_write = (card)->q931_buf; \
1406 static void handle_dtrace_data(capidrv_contr *card,
1407 int send, int level2, u8 *data, u16 len)
1413 printk(KERN_DEBUG "capidrv-%d: avmb1_q931_data: len == %d\n",
1414 card->contrnr, len);
1419 PUTBYTE_TO_STATUS(card, 'D');
1420 PUTBYTE_TO_STATUS(card, '2');
1421 PUTBYTE_TO_STATUS(card, send ? '>' : '<');
1422 PUTBYTE_TO_STATUS(card, ':');
1424 PUTBYTE_TO_STATUS(card, 'D');
1425 PUTBYTE_TO_STATUS(card, '3');
1426 PUTBYTE_TO_STATUS(card, send ? '>' : '<');
1427 PUTBYTE_TO_STATUS(card, ':');
1430 for (p = data, end = data+len; p < end; p++) {
1432 PUTBYTE_TO_STATUS(card, ' ');
1433 w = (*p >> 4) & 0xf;
1434 PUTBYTE_TO_STATUS(card, (w < 10) ? '0'+w : 'A'-10+w);
1436 PUTBYTE_TO_STATUS(card, (w < 10) ? '0'+w : 'A'-10+w);
1438 PUTBYTE_TO_STATUS(card, '\n');
1440 cmd.command = ISDN_STAT_STAVAIL;
1441 cmd.driver = card->myid;
1443 card->interface.statcallb(&cmd);
1446 /* ------------------------------------------------------------------- */
1448 static _cmsg cmdcmsg;
1450 static int capidrv_ioctl(isdn_ctrl * c, capidrv_contr * card)
1454 debugmode = (int)(*((unsigned int *)c->parm.num));
1455 printk(KERN_DEBUG "capidrv-%d: debugmode=%d\n",
1456 card->contrnr, debugmode);
1459 printk(KERN_DEBUG "capidrv-%d: capidrv_ioctl(%ld) called ??\n",
1460 card->contrnr, c->arg);
1467 * Handle leased lines (CAPI-Bundling)
1470 struct internal_bchannelinfo {
1471 unsigned short channelalloc;
1472 unsigned short operation;
1473 unsigned char cmask[31];
1476 static int decodeFVteln(char *teln, unsigned long *bmaskp, int *activep)
1478 unsigned long bmask = 0;
1483 if (strncmp(teln, "FV:", 3) != 0)
1486 while (*s && *s == ' ') s++;
1488 if (*s == 'p' || *s == 'P') {
1492 if (*s == 'a' || *s == 'A') {
1499 if (!isdigit(*s)) return -3;
1500 while (isdigit(*s)) { digit1 = digit1*10 + (*s - '0'); s++; }
1501 if (digit1 <= 0 && digit1 > 30) return -4;
1502 if (*s == 0 || *s == ',' || *s == ' ') {
1503 bmask |= (1 << digit1);
1508 if (*s != '-') return -5;
1510 if (!isdigit(*s)) return -3;
1511 while (isdigit(*s)) { digit2 = digit2*10 + (*s - '0'); s++; }
1512 if (digit2 <= 0 && digit2 > 30) return -4;
1513 if (*s == 0 || *s == ',' || *s == ' ') {
1514 if (digit1 > digit2)
1515 for (i = digit2; i <= digit1 ; i++)
1518 for (i = digit1; i <= digit2 ; i++)
1520 digit1 = digit2 = 0;
1526 if (activep) *activep = active;
1527 if (bmaskp) *bmaskp = bmask;
1531 static int FVteln2capi20(char *teln, u8 AdditionalInfo[1+2+2+31])
1533 unsigned long bmask;
1537 rc = decodeFVteln(teln, &bmask, &active);
1540 AdditionalInfo[0] = 2+2+31;
1541 /* Channel: 3 => use channel allocation */
1542 AdditionalInfo[1] = 3; AdditionalInfo[2] = 0;
1543 /* Operation: 0 => DTE mode, 1 => DCE mode */
1545 AdditionalInfo[3] = 0; AdditionalInfo[4] = 0;
1547 AdditionalInfo[3] = 1; AdditionalInfo[4] = 0;
1549 /* Channel mask array */
1550 AdditionalInfo[5] = 0; /* no D-Channel */
1551 for (i=1; i <= 30; i++)
1552 AdditionalInfo[5+i] = (bmask & (1 << i)) ? 0xff : 0;
1556 static int capidrv_command(isdn_ctrl * c, capidrv_contr * card)
1559 struct capidrv_bchan *bchan;
1560 struct capidrv_plci *plcip;
1561 u8 AdditionalInfo[1+2+2+31];
1562 int rc, isleasedline = 0;
1564 if (c->command == ISDN_CMD_IOCTL)
1565 return capidrv_ioctl(c, card);
1567 switch (c->command) {
1568 case ISDN_CMD_DIAL:{
1569 u8 calling[ISDN_MSNLEN + 3];
1570 u8 called[ISDN_MSNLEN + 2];
1573 printk(KERN_DEBUG "capidrv-%d: ISDN_CMD_DIAL(ch=%ld,\"%s,%d,%d,%s\")\n",
1576 c->parm.setup.phone,
1579 c->parm.setup.eazmsn);
1581 bchan = &card->bchans[c->arg % card->nbchan];
1584 printk(KERN_ERR "capidrv-%d: dail ch=%ld,\"%s,%d,%d,%s\" in use (plci=0x%x)\n",
1587 c->parm.setup.phone,
1590 c->parm.setup.eazmsn,
1591 bchan->plcip->plci);
1594 bchan->si1 = c->parm.setup.si1;
1595 bchan->si2 = c->parm.setup.si2;
1597 strncpy(bchan->num, c->parm.setup.phone, sizeof(bchan->num));
1598 strncpy(bchan->mynum, c->parm.setup.eazmsn, sizeof(bchan->mynum));
1599 rc = FVteln2capi20(bchan->num, AdditionalInfo);
1600 isleasedline = (rc == 0);
1602 printk(KERN_ERR "capidrv-%d: WARNING: invalid leased linedefinition \"%s\"\n", card->contrnr, bchan->num);
1608 printk(KERN_DEBUG "capidrv-%d: connecting leased line\n", card->contrnr);
1610 calling[0] = strlen(bchan->mynum) + 2;
1613 strncpy(calling + 3, bchan->mynum, ISDN_MSNLEN);
1614 called[0] = strlen(bchan->num) + 1;
1616 strncpy(called + 2, bchan->num, ISDN_MSNLEN);
1619 capi_fill_CONNECT_REQ(&cmdcmsg,
1622 card->contrnr, /* adr */
1623 si2cip(bchan->si1, bchan->si2), /* cipvalue */
1624 called, /* CalledPartyNumber */
1625 calling, /* CallingPartyNumber */
1626 NULL, /* CalledPartySubaddress */
1627 NULL, /* CallingPartySubaddress */
1628 b1prot(bchan->l2, bchan->l3), /* B1protocol */
1629 b2prot(bchan->l2, bchan->l3), /* B2protocol */
1630 b3prot(bchan->l2, bchan->l3), /* B3protocol */
1631 b1config(bchan->l2, bchan->l3), /* B1configuration */
1632 NULL, /* B2configuration */
1633 NULL, /* B3configuration */
1637 /* BChannelinformation */
1638 isleasedline ? AdditionalInfo : NULL,
1639 NULL, /* Keypadfacility */
1640 NULL, /* Useruserdata */
1641 NULL /* Facilitydataarray */
1643 if ((plcip = new_plci(card, (c->arg % card->nbchan))) == 0) {
1644 cmd.command = ISDN_STAT_DHUP;
1645 cmd.driver = card->myid;
1646 cmd.arg = (c->arg % card->nbchan);
1647 card->interface.statcallb(&cmd);
1650 plcip->msgid = cmdcmsg.Messagenumber;
1651 plcip->leasedline = isleasedline;
1652 plci_change_state(card, plcip, EV_PLCI_CONNECT_REQ);
1653 send_message(card, &cmdcmsg);
1657 case ISDN_CMD_ACCEPTD:
1659 bchan = &card->bchans[c->arg % card->nbchan];
1661 printk(KERN_DEBUG "capidrv-%d: ISDN_CMD_ACCEPTD(ch=%ld) l2=%d l3=%d\n",
1663 c->arg, bchan->l2, bchan->l3);
1665 capi_fill_CONNECT_RESP(&cmdcmsg,
1668 bchan->plcip->plci, /* adr */
1670 b1prot(bchan->l2, bchan->l3), /* B1protocol */
1671 b2prot(bchan->l2, bchan->l3), /* B2protocol */
1672 b3prot(bchan->l2, bchan->l3), /* B3protocol */
1673 b1config(bchan->l2, bchan->l3), /* B1configuration */
1674 NULL, /* B2configuration */
1675 NULL, /* B3configuration */
1676 NULL, /* ConnectedNumber */
1677 NULL, /* ConnectedSubaddress */
1679 NULL, /* BChannelinformation */
1680 NULL, /* Keypadfacility */
1681 NULL, /* Useruserdata */
1682 NULL /* Facilitydataarray */
1684 capi_cmsg2message(&cmdcmsg, cmdcmsg.buf);
1685 plci_change_state(card, bchan->plcip, EV_PLCI_CONNECT_RESP);
1686 send_message(card, &cmdcmsg);
1689 case ISDN_CMD_ACCEPTB:
1691 printk(KERN_DEBUG "capidrv-%d: ISDN_CMD_ACCEPTB(ch=%ld)\n",
1696 case ISDN_CMD_HANGUP:
1698 printk(KERN_DEBUG "capidrv-%d: ISDN_CMD_HANGUP(ch=%ld)\n",
1701 bchan = &card->bchans[c->arg % card->nbchan];
1703 if (bchan->disconnecting) {
1705 printk(KERN_DEBUG "capidrv-%d: chan %ld already disconnecting ...\n",
1711 bchan->disconnecting = 1;
1712 capi_fill_DISCONNECT_B3_REQ(&cmdcmsg,
1718 ncci_change_state(card, bchan->nccip, EV_NCCI_DISCONNECT_B3_REQ);
1719 send_message(card, &cmdcmsg);
1721 } else if (bchan->plcip) {
1722 if (bchan->plcip->state == ST_PLCI_INCOMING) {
1724 * just ignore, we a called from
1725 * isdn_status_callback(),
1726 * which will return 0 or 2, this is handled
1727 * by the CONNECT_IND handler
1729 bchan->disconnecting = 1;
1731 } else if (bchan->plcip->plci) {
1732 bchan->disconnecting = 1;
1733 capi_fill_DISCONNECT_REQ(&cmdcmsg,
1737 NULL, /* BChannelinformation */
1738 NULL, /* Keypadfacility */
1739 NULL, /* Useruserdata */
1740 NULL /* Facilitydataarray */
1742 plci_change_state(card, bchan->plcip, EV_PLCI_DISCONNECT_REQ);
1743 send_message(card, &cmdcmsg);
1746 printk(KERN_ERR "capidrv-%d: chan %ld disconnect request while waiting for CONNECT_CONF\n",
1752 printk(KERN_ERR "capidrv-%d: chan %ld disconnect request on free channel\n",
1758 case ISDN_CMD_SETL2:
1760 printk(KERN_DEBUG "capidrv-%d: set L2 on chan %ld to %ld\n",
1762 (c->arg & 0xff), (c->arg >> 8));
1763 bchan = &card->bchans[(c->arg & 0xff) % card->nbchan];
1764 bchan->l2 = (c->arg >> 8);
1767 case ISDN_CMD_SETL3:
1769 printk(KERN_DEBUG "capidrv-%d: set L3 on chan %ld to %ld\n",
1771 (c->arg & 0xff), (c->arg >> 8));
1772 bchan = &card->bchans[(c->arg & 0xff) % card->nbchan];
1773 bchan->l3 = (c->arg >> 8);
1776 case ISDN_CMD_SETEAZ:
1778 printk(KERN_DEBUG "capidrv-%d: set EAZ \"%s\" on chan %ld\n",
1780 c->parm.num, c->arg);
1781 bchan = &card->bchans[c->arg % card->nbchan];
1782 strncpy(bchan->msn, c->parm.num, ISDN_MSNLEN);
1785 case ISDN_CMD_CLREAZ:
1787 printk(KERN_DEBUG "capidrv-%d: clearing EAZ on chan %ld\n",
1788 card->contrnr, c->arg);
1789 bchan = &card->bchans[c->arg % card->nbchan];
1794 printk(KERN_ERR "capidrv-%d: ISDN_CMD_%d, Huh?\n",
1795 card->contrnr, c->command);
1801 static int if_command(isdn_ctrl * c)
1803 capidrv_contr *card = findcontrbydriverid(c->driver);
1806 return capidrv_command(c, card);
1809 "capidrv: if_command %d called with invalid driverId %d!\n",
1810 c->command, c->driver);
1814 static _cmsg sendcmsg;
1816 static int if_sendbuf(int id, int channel, int doack, struct sk_buff *skb)
1818 capidrv_contr *card = findcontrbydriverid(id);
1819 capidrv_bchan *bchan;
1820 capidrv_ncci *nccip;
1827 printk(KERN_ERR "capidrv: if_sendbuf called with invalid driverId %d!\n",
1832 printk(KERN_DEBUG "capidrv-%d: sendbuf len=%d skb=%p doack=%d\n",
1833 card->contrnr, len, skb, doack);
1834 bchan = &card->bchans[channel % card->nbchan];
1835 nccip = bchan->nccip;
1836 if (!nccip || nccip->state != ST_NCCI_ACTIVE) {
1837 printk(KERN_ERR "capidrv-%d: if_sendbuf: %s:%d: chan not up!\n",
1838 card->contrnr, card->name, channel);
1841 datahandle = nccip->datahandle;
1842 capi_fill_DATA_B3_REQ(&sendcmsg, global.ap.applid, card->msgid++,
1843 nccip->ncci, /* adr */
1844 (u32) skb->data, /* Data */
1845 skb->len, /* DataLength */
1846 datahandle, /* DataHandle */
1850 if (capidrv_add_ack(nccip, datahandle, doack ? (int)skb->len : -1) < 0)
1853 capi_cmsg2message(&sendcmsg, sendcmsg.buf);
1854 msglen = CAPIMSG_LEN(sendcmsg.buf);
1855 if (skb_headroom(skb) < msglen) {
1856 struct sk_buff *nskb = skb_realloc_headroom(skb, msglen);
1858 printk(KERN_ERR "capidrv-%d: if_sendbuf: no memory\n",
1860 (void)capidrv_del_ack(nccip, datahandle);
1863 printk(KERN_DEBUG "capidrv-%d: only %d bytes headroom, need %d\n",
1864 card->contrnr, skb_headroom(skb), msglen);
1865 memcpy(skb_push(nskb, msglen), sendcmsg.buf, msglen);
1866 errcode = capi20_put_message(&global.ap, nskb);
1867 if (errcode == CAPI_NOERROR) {
1869 nccip->datahandle++;
1873 printk(KERN_DEBUG "capidrv-%d: sendbuf putmsg ret(%x) - %s\n",
1874 card->contrnr, errcode, capi_info2str(errcode));
1875 (void)capidrv_del_ack(nccip, datahandle);
1876 dev_kfree_skb(nskb);
1877 return errcode == CAPI_SENDQUEUEFULL ? 0 : -1;
1879 memcpy(skb_push(skb, msglen), sendcmsg.buf, msglen);
1880 errcode = capi20_put_message(&global.ap, skb);
1881 if (errcode == CAPI_NOERROR) {
1882 nccip->datahandle++;
1886 printk(KERN_DEBUG "capidrv-%d: sendbuf putmsg ret(%x) - %s\n",
1887 card->contrnr, errcode, capi_info2str(errcode));
1888 skb_pull(skb, msglen);
1889 (void)capidrv_del_ack(nccip, datahandle);
1890 return errcode == CAPI_SENDQUEUEFULL ? 0 : -1;
1894 static int if_readstat(u8 __user *buf, int len, int id, int channel)
1896 capidrv_contr *card = findcontrbydriverid(id);
1901 printk(KERN_ERR "capidrv: if_readstat called with invalid driverId %d!\n",
1906 for (p=buf, count=0; count < len; p++, count++) {
1907 if (put_user(*card->q931_read++, p))
1909 if (card->q931_read > card->q931_end)
1910 card->q931_read = card->q931_buf;
1916 static void enable_dchannel_trace(capidrv_contr *card)
1918 u8 manufacturer[CAPI_MANUFACTURER_LEN];
1919 capi_version version;
1920 u16 contr = card->contrnr;
1924 errcode = capi20_get_manufacturer(contr, manufacturer);
1925 if (errcode != CAPI_NOERROR) {
1926 printk(KERN_ERR "%s: can't get manufacturer (0x%x)\n",
1927 card->name, errcode);
1930 if (strstr(manufacturer, "AVM") == 0) {
1931 printk(KERN_ERR "%s: not from AVM, no d-channel trace possible (%s)\n",
1932 card->name, manufacturer);
1935 errcode = capi20_get_version(contr, &version);
1936 if (errcode != CAPI_NOERROR) {
1937 printk(KERN_ERR "%s: can't get version (0x%x)\n",
1938 card->name, errcode);
1941 avmversion[0] = (version.majormanuversion >> 4) & 0x0f;
1942 avmversion[1] = (version.majormanuversion << 4) & 0xf0;
1943 avmversion[1] |= (version.minormanuversion >> 4) & 0x0f;
1944 avmversion[2] |= version.minormanuversion & 0x0f;
1946 if (avmversion[0] > 3 || (avmversion[0] == 3 && avmversion[1] > 5)) {
1947 printk(KERN_INFO "%s: D2 trace enabled\n", card->name);
1948 capi_fill_MANUFACTURER_REQ(&cmdcmsg, global.ap.applid,
1951 0x214D5641, /* ManuID */
1954 (_cstruct)"\004\200\014\000\000");
1956 printk(KERN_INFO "%s: D3 trace enabled\n", card->name);
1957 capi_fill_MANUFACTURER_REQ(&cmdcmsg, global.ap.applid,
1960 0x214D5641, /* ManuID */
1963 (_cstruct)"\004\002\003\000\000");
1965 send_message(card, &cmdcmsg);
1969 static void send_listen(capidrv_contr *card)
1971 capi_fill_LISTEN_REQ(&cmdcmsg, global.ap.applid,
1973 card->contrnr, /* controller */
1974 1 << 6, /* Infomask */
1978 send_message(card, &cmdcmsg);
1979 listen_change_state(card, EV_LISTEN_REQ);
1982 static void listentimerfunc(unsigned long x)
1984 capidrv_contr *card = (capidrv_contr *)x;
1985 if (card->state != ST_LISTEN_NONE && card->state != ST_LISTEN_ACTIVE)
1986 printk(KERN_ERR "%s: controller dead ??\n", card->name);
1988 mod_timer(&card->listentimer, jiffies + 60*HZ);
1992 static int capidrv_addcontr(u16 contr, struct capi_profile *profp)
1994 capidrv_contr *card;
1995 unsigned long flags;
2000 sprintf(id, "capidrv-%d", contr);
2001 if (!try_module_get(THIS_MODULE)) {
2002 printk(KERN_WARNING "capidrv: (%s) Could not reserve module\n", id);
2005 if (!(card = kzalloc(sizeof(capidrv_contr), GFP_ATOMIC))) {
2007 "capidrv: (%s) Could not allocate contr-struct.\n", id);
2010 card->owner = THIS_MODULE;
2011 init_timer(&card->listentimer);
2012 strcpy(card->name, id);
2013 card->contrnr = contr;
2014 card->nbchan = profp->nbchannel;
2015 card->bchans = kmalloc(sizeof(capidrv_bchan) * card->nbchan, GFP_ATOMIC);
2016 if (!card->bchans) {
2018 "capidrv: (%s) Could not allocate bchan-structs.\n", id);
2019 module_put(card->owner);
2023 card->interface.channels = profp->nbchannel;
2024 card->interface.maxbufsize = 2048;
2025 card->interface.command = if_command;
2026 card->interface.writebuf_skb = if_sendbuf;
2027 card->interface.writecmd = NULL;
2028 card->interface.readstat = if_readstat;
2029 card->interface.features = ISDN_FEATURE_L2_HDLC |
2030 ISDN_FEATURE_L2_TRANS |
2031 ISDN_FEATURE_L3_TRANS |
2032 ISDN_FEATURE_P_UNKNOWN |
2033 ISDN_FEATURE_L2_X75I |
2034 ISDN_FEATURE_L2_X75UI |
2035 ISDN_FEATURE_L2_X75BUI;
2036 if (profp->support1 & (1<<2))
2037 card->interface.features |= ISDN_FEATURE_L2_V11096 |
2038 ISDN_FEATURE_L2_V11019 |
2039 ISDN_FEATURE_L2_V11038;
2040 if (profp->support1 & (1<<8))
2041 card->interface.features |= ISDN_FEATURE_L2_MODEM;
2042 card->interface.hl_hdrlen = 22; /* len of DATA_B3_REQ */
2043 strncpy(card->interface.id, id, sizeof(card->interface.id) - 1);
2046 card->q931_read = card->q931_buf;
2047 card->q931_write = card->q931_buf;
2048 card->q931_end = card->q931_buf + sizeof(card->q931_buf) - 1;
2050 if (!register_isdn(&card->interface)) {
2051 printk(KERN_ERR "capidrv: Unable to register contr %s\n", id);
2052 kfree(card->bchans);
2053 module_put(card->owner);
2057 card->myid = card->interface.channels;
2058 memset(card->bchans, 0, sizeof(capidrv_bchan) * card->nbchan);
2059 for (i = 0; i < card->nbchan; i++) {
2060 card->bchans[i].contr = card;
2063 spin_lock_irqsave(&global_lock, flags);
2064 card->next = global.contr_list;
2065 global.contr_list = card;
2067 spin_unlock_irqrestore(&global_lock, flags);
2069 cmd.command = ISDN_STAT_RUN;
2070 cmd.driver = card->myid;
2071 card->interface.statcallb(&cmd);
2073 card->cipmask = 0x1FFF03FF; /* any */
2076 card->listentimer.data = (unsigned long)card;
2077 card->listentimer.function = listentimerfunc;
2079 mod_timer(&card->listentimer, jiffies + 60*HZ);
2081 printk(KERN_INFO "%s: now up (%d B channels)\n",
2082 card->name, card->nbchan);
2084 enable_dchannel_trace(card);
2089 static int capidrv_delcontr(u16 contr)
2091 capidrv_contr **pp, *card;
2092 unsigned long flags;
2095 spin_lock_irqsave(&global_lock, flags);
2096 for (card = global.contr_list; card; card = card->next) {
2097 if (card->contrnr == contr)
2101 spin_unlock_irqrestore(&global_lock, flags);
2102 printk(KERN_ERR "capidrv: delcontr: no contr %u\n", contr);
2105 #warning FIXME: maybe a race condition the card should be removed here from global list /kkeil
2106 spin_unlock_irqrestore(&global_lock, flags);
2108 del_timer(&card->listentimer);
2111 printk(KERN_DEBUG "capidrv-%d: id=%d unloading\n",
2112 card->contrnr, card->myid);
2114 cmd.command = ISDN_STAT_STOP;
2115 cmd.driver = card->myid;
2116 card->interface.statcallb(&cmd);
2118 while (card->nbchan) {
2120 cmd.command = ISDN_STAT_DISCH;
2121 cmd.driver = card->myid;
2122 cmd.arg = card->nbchan-1;
2123 cmd.parm.num[0] = 0;
2125 printk(KERN_DEBUG "capidrv-%d: id=%d disable chan=%ld\n",
2126 card->contrnr, card->myid, cmd.arg);
2127 card->interface.statcallb(&cmd);
2129 if (card->bchans[card->nbchan-1].nccip)
2130 free_ncci(card, card->bchans[card->nbchan-1].nccip);
2131 if (card->bchans[card->nbchan-1].plcip)
2132 free_plci(card, card->bchans[card->nbchan-1].plcip);
2133 if (card->plci_list)
2134 printk(KERN_ERR "capidrv: bug in free_plci()\n");
2137 kfree(card->bchans);
2138 card->bchans = NULL;
2141 printk(KERN_DEBUG "capidrv-%d: id=%d isdn unload\n",
2142 card->contrnr, card->myid);
2144 cmd.command = ISDN_STAT_UNLOAD;
2145 cmd.driver = card->myid;
2146 card->interface.statcallb(&cmd);
2149 printk(KERN_DEBUG "capidrv-%d: id=%d remove contr from list\n",
2150 card->contrnr, card->myid);
2152 spin_lock_irqsave(&global_lock, flags);
2153 for (pp = &global.contr_list; *pp; pp = &(*pp)->next) {
2161 spin_unlock_irqrestore(&global_lock, flags);
2163 module_put(card->owner);
2164 printk(KERN_INFO "%s: now down.\n", card->name);
2170 static void lower_callback(unsigned int cmd, u32 contr, void *data)
2175 printk(KERN_INFO "capidrv: controller %hu up\n", contr);
2176 (void) capidrv_addcontr(contr, (capi_profile *) data);
2179 printk(KERN_INFO "capidrv: controller %hu down\n", contr);
2180 (void) capidrv_delcontr(contr);
2186 * /proc/capi/capidrv:
2187 * nrecvctlpkt nrecvdatapkt nsendctlpkt nsenddatapkt
2189 static int proc_capidrv_read_proc(char *page, char **start, off_t off,
2190 int count, int *eof, void *data)
2194 len += sprintf(page+len, "%lu %lu %lu %lu\n",
2195 global.ap.nrecvctlpkt,
2196 global.ap.nrecvdatapkt,
2197 global.ap.nsentctlpkt,
2198 global.ap.nsentdatapkt);
2199 if (off+count >= len)
2203 *start = page + off;
2204 return ((count < len-off) ? count : len-off);
2207 static struct procfsentries {
2210 int (*read_proc)(char *page, char **start, off_t off,
2211 int count, int *eof, void *data);
2212 struct proc_dir_entry *procent;
2213 } procfsentries[] = {
2214 /* { "capi", S_IFDIR, 0 }, */
2215 { "capi/capidrv", 0 , proc_capidrv_read_proc },
2218 static void __init proc_init(void)
2220 int nelem = ARRAY_SIZE(procfsentries);
2223 for (i=0; i < nelem; i++) {
2224 struct procfsentries *p = procfsentries + i;
2225 p->procent = create_proc_entry(p->name, p->mode, NULL);
2226 if (p->procent) p->procent->read_proc = p->read_proc;
2230 static void __exit proc_exit(void)
2232 int nelem = ARRAY_SIZE(procfsentries);
2235 for (i=nelem-1; i >= 0; i--) {
2236 struct procfsentries *p = procfsentries + i;
2238 remove_proc_entry(p->name, NULL);
2244 static int __init capidrv_init(void)
2246 capi_profile profile;
2252 if ((p = strchr(revision, ':')) != 0 && p[1]) {
2253 strncpy(rev, p + 2, sizeof(rev));
2254 rev[sizeof(rev)-1] = 0;
2255 if ((p = strchr(rev, '$')) != 0 && p > rev)
2260 global.ap.rparam.level3cnt = -2; /* number of bchannels twice */
2261 global.ap.rparam.datablkcnt = 16;
2262 global.ap.rparam.datablklen = 2048;
2264 global.ap.recv_message = capidrv_recv_message;
2265 errcode = capi20_register(&global.ap);
2270 capi20_set_callback(&global.ap, lower_callback);
2272 errcode = capi20_get_profile(0, &profile);
2273 if (errcode != CAPI_NOERROR) {
2274 capi20_release(&global.ap);
2278 ncontr = profile.ncontroller;
2279 for (contr = 1; contr <= ncontr; contr++) {
2280 errcode = capi20_get_profile(contr, &profile);
2281 if (errcode != CAPI_NOERROR)
2283 (void) capidrv_addcontr(contr, &profile);
2287 printk(KERN_NOTICE "capidrv: Rev %s: loaded\n", rev);
2291 static void __exit capidrv_exit(void)
2296 if ((p = strchr(revision, ':')) != 0) {
2298 p = strchr(rev, '$');
2301 strcpy(rev, " ??? ");
2304 capi20_release(&global.ap);
2308 printk(KERN_NOTICE "capidrv: Rev%s: unloaded\n", rev);
2311 module_init(capidrv_init);
2312 module_exit(capidrv_exit);