VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / isdn / hysdn / hycapi.c
1 /* $Id: hycapi.c,v 1.8.6.4 2001/09/23 22:24:54 kai Exp $
2  *
3  * Linux driver for HYSDN cards, CAPI2.0-Interface.
4  *
5  * Author    Ulrich Albrecht <u.albrecht@hypercope.de> for Hypercope GmbH
6  * Copyright 2000 by Hypercope GmbH
7  *
8  * This software may be used and distributed according to the terms
9  * of the GNU General Public License, incorporated herein by reference.
10  *
11  */
12
13 #include <linux/module.h>
14 #include <linux/version.h>
15 #include <linux/signal.h>
16 #include <linux/kernel.h>
17 #include <linux/skbuff.h>
18 #include <linux/netdevice.h>
19
20 #define VER_DRIVER      0
21 #define VER_CARDTYPE    1
22 #define VER_HWID        2
23 #define VER_SERIAL      3
24 #define VER_OPTION      4
25 #define VER_PROTO       5
26 #define VER_PROFILE     6
27 #define VER_CAPI        7
28
29 #include "hysdn_defs.h"
30 #include <linux/kernelcapi.h>
31
32 static char hycapi_revision[]="$Revision: 1.8.6.4 $";
33
34 unsigned int hycapi_enable = 0xffffffff; 
35 MODULE_PARM(hycapi_enable, "i");
36
37 typedef struct _hycapi_appl {
38         unsigned int ctrl_mask;
39         capi_register_params rp;
40         struct sk_buff *listen_req[CAPI_MAXCONTR];
41 } hycapi_appl;
42
43 static hycapi_appl hycapi_applications[CAPI_MAXAPPL];
44
45 static inline int _hycapi_appCheck(int app_id, int ctrl_no)
46 {
47         if((ctrl_no <= 0) || (ctrl_no > CAPI_MAXCONTR) || (app_id <= 0) ||
48            (app_id > CAPI_MAXAPPL))
49         {
50                 printk(KERN_ERR "HYCAPI: Invalid request app_id %d for controller %d", app_id, ctrl_no);
51                 return -1;
52         }
53         return ((hycapi_applications[app_id-1].ctrl_mask & (1 << (ctrl_no-1))) != 0);
54 }
55
56 /******************************
57 Kernel-Capi callback reset_ctr
58 ******************************/     
59
60 void 
61 hycapi_reset_ctr(struct capi_ctr *ctrl)
62 {
63         hycapictrl_info *cinfo = ctrl->driverdata;
64
65 #ifdef HYCAPI_PRINTFNAMES
66         printk(KERN_NOTICE "HYCAPI hycapi_reset_ctr\n");
67 #endif
68         capilib_release(&cinfo->ncci_head);
69         capi_ctr_reseted(ctrl);
70 }
71
72 /******************************
73 Kernel-Capi callback remove_ctr
74 ******************************/     
75
76 void 
77 hycapi_remove_ctr(struct capi_ctr *ctrl)
78 {
79         int i;
80         hycapictrl_info *cinfo = NULL;
81         hysdn_card *card = NULL;
82 #ifdef HYCAPI_PRINTFNAMES
83         printk(KERN_NOTICE "HYCAPI hycapi_remove_ctr\n");
84 #endif 
85         cinfo = (hycapictrl_info *)(ctrl->driverdata);
86         if(!cinfo) {
87                 printk(KERN_ERR "No hycapictrl_info set!");
88                 return;
89         }    
90         card = cinfo->card;
91         capi_ctr_suspend_output(ctrl);
92         for(i=0; i<CAPI_MAXAPPL;i++) {
93                 if(hycapi_applications[i].listen_req[ctrl->cnr-1]) {
94                         kfree_skb(hycapi_applications[i].listen_req[ctrl->cnr-1]);
95                         hycapi_applications[i].listen_req[ctrl->cnr-1] = NULL;
96                 }
97         }
98         detach_capi_ctr(ctrl);
99         ctrl->driverdata = NULL;
100         kfree(card->hyctrlinfo);
101
102                 
103         card->hyctrlinfo = NULL;
104 }
105
106 /***********************************************************
107
108 Queue a CAPI-message to the controller.
109
110 ***********************************************************/
111
112 static void
113 hycapi_sendmsg_internal(struct capi_ctr *ctrl, struct sk_buff *skb)
114 {
115         hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
116         hysdn_card *card = cinfo->card;
117
118         spin_lock_irq(&cinfo->lock);
119 #ifdef HYCAPI_PRINTFNAMES
120         printk(KERN_NOTICE "hycapi_send_message\n");    
121 #endif
122         cinfo->skbs[cinfo->in_idx++] = skb;     /* add to buffer list */
123         if (cinfo->in_idx >= HYSDN_MAX_CAPI_SKB)
124                 cinfo->in_idx = 0;      /* wrap around */
125         cinfo->sk_count++;              /* adjust counter */
126         if (cinfo->sk_count >= HYSDN_MAX_CAPI_SKB) {
127                 /* inform upper layers we're full */
128                 printk(KERN_ERR "HYSDN Card%d: CAPI-buffer overrun!\n",
129                        card->myid);     
130                 capi_ctr_suspend_output(ctrl);
131         }
132         cinfo->tx_skb = skb;
133         spin_unlock_irq(&cinfo->lock);
134         schedule_work(&card->irq_queue);
135 }
136
137 /***********************************************************
138 hycapi_register_internal
139
140 Send down the CAPI_REGISTER-Command to the controller.
141 This functions will also be used if the adapter has been rebooted to
142 re-register any applications in the private list.
143
144 ************************************************************/
145
146 static void 
147 hycapi_register_internal(struct capi_ctr *ctrl, __u16 appl,
148                          capi_register_params *rp)
149 {
150         char ExtFeatureDefaults[] = "49  /0/0/0/0,*/1,*/2,*/3,*/4,*/5,*/6,*/7,*/8,*/9,*";
151         hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
152         hysdn_card *card = cinfo->card;
153         struct sk_buff *skb;
154         __u16 len;
155         __u8 _command = 0xa0, _subcommand = 0x80;
156         __u16 MessageNumber = 0x0000;
157         __u16 MessageBufferSize = 0;
158         int slen = strlen(ExtFeatureDefaults);
159 #ifdef HYCAPI_PRINTFNAMES
160         printk(KERN_NOTICE "hycapi_register_appl\n"); 
161 #endif
162         MessageBufferSize = rp->level3cnt * rp->datablkcnt * rp->datablklen; 
163
164         len = CAPI_MSG_BASELEN + 8 + slen + 1;
165         if (!(skb = alloc_skb(len, GFP_ATOMIC))) {
166                 printk(KERN_ERR "HYSDN card%d: memory squeeze in hycapi_register_appl\n",
167                        card->myid);
168                 return;
169         }
170         memcpy(skb_put(skb,sizeof(__u16)), &len, sizeof(__u16));
171         memcpy(skb_put(skb,sizeof(__u16)), &appl, sizeof(__u16));
172         memcpy(skb_put(skb,sizeof(__u8)), &_command, sizeof(_command));
173         memcpy(skb_put(skb,sizeof(__u8)), &_subcommand, sizeof(_subcommand));
174         memcpy(skb_put(skb,sizeof(__u16)), &MessageNumber, sizeof(__u16));
175         memcpy(skb_put(skb,sizeof(__u16)), &MessageBufferSize, sizeof(__u16)); 
176         memcpy(skb_put(skb,sizeof(__u16)), &(rp->level3cnt), sizeof(__u16));
177         memcpy(skb_put(skb,sizeof(__u16)), &(rp->datablkcnt), sizeof(__u16));
178         memcpy(skb_put(skb,sizeof(__u16)), &(rp->datablklen), sizeof(__u16));
179         memcpy(skb_put(skb,slen), ExtFeatureDefaults, slen);
180         hycapi_applications[appl-1].ctrl_mask |= (1 << (ctrl->cnr-1));    
181         hycapi_send_message(ctrl, skb);    
182 }
183
184 /************************************************************
185 hycapi_restart_internal
186
187 After an adapter has been rebootet, re-register all applications and
188 send a LISTEN_REQ (if there has been such a thing )
189
190 *************************************************************/
191
192 static void hycapi_restart_internal(struct capi_ctr *ctrl)
193 {
194         int i;
195         struct sk_buff *skb;
196 #ifdef HYCAPI_PRINTFNAMES
197         printk(KERN_WARNING "HYSDN: hycapi_restart_internal");
198 #endif
199         for(i=0; i<CAPI_MAXAPPL; i++) {
200                 if(_hycapi_appCheck(i+1, ctrl->cnr) == 1) {
201                         hycapi_register_internal(ctrl, i+1, 
202                                                  &hycapi_applications[i].rp);
203                         if(hycapi_applications[i].listen_req[ctrl->cnr-1]) {
204                                 skb = skb_copy(hycapi_applications[i].listen_req[ctrl->cnr-1], GFP_ATOMIC);
205                                 hycapi_sendmsg_internal(ctrl, skb);
206                         }
207                 }
208         }
209 }
210
211 /*************************************************************
212 Register an application.
213 Error-checking is done for CAPI-compliance.
214
215 The application is recorded in the internal list.
216 *************************************************************/
217
218 void 
219 hycapi_register_appl(struct capi_ctr *ctrl, __u16 appl, 
220                      capi_register_params *rp)
221 {
222         int MaxLogicalConnections = 0, MaxBDataBlocks = 0, MaxBDataLen = 0;
223         hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
224         hysdn_card *card = cinfo->card;
225         int chk = _hycapi_appCheck(appl, ctrl->cnr);
226         if(chk < 0) {
227                 return;
228         }
229         if(chk == 1) {
230                 printk(KERN_INFO "HYSDN: apl %d already registered\n", appl);
231                 return;
232         }
233         MaxBDataBlocks = rp->datablkcnt > CAPI_MAXDATAWINDOW ? CAPI_MAXDATAWINDOW : rp->datablkcnt;
234         rp->datablkcnt = MaxBDataBlocks;
235         MaxBDataLen = rp->datablklen < 1024 ? 1024 : rp->datablklen ;
236         rp->datablklen = MaxBDataLen;
237         
238         MaxLogicalConnections = rp->level3cnt;
239         if (MaxLogicalConnections < 0) {
240                 MaxLogicalConnections = card->bchans * -MaxLogicalConnections; 
241         }
242         if (MaxLogicalConnections == 0) {
243                 MaxLogicalConnections = card->bchans;
244         }
245         
246         rp->level3cnt = MaxLogicalConnections;
247         memcpy(&hycapi_applications[appl-1].rp, 
248                rp, sizeof(capi_register_params));
249         
250 /*        MOD_INC_USE_COUNT; */
251 }
252
253 /*********************************************************************
254
255 hycapi_release_internal
256
257 Send down a CAPI_RELEASE to the controller.
258 *********************************************************************/
259
260 static void hycapi_release_internal(struct capi_ctr *ctrl, __u16 appl)
261 {
262         hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
263         hysdn_card *card = cinfo->card;
264         struct sk_buff *skb;
265         __u16 len;
266         __u8 _command = 0xa1, _subcommand = 0x80;
267         __u16 MessageNumber = 0x0000;
268
269         capilib_release_appl(&cinfo->ncci_head, appl);
270
271 #ifdef HYCAPI_PRINTFNAMES
272         printk(KERN_NOTICE "hycapi_release_appl\n");
273 #endif
274         len = CAPI_MSG_BASELEN;
275         if (!(skb = alloc_skb(len, GFP_ATOMIC))) {
276                 printk(KERN_ERR "HYSDN card%d: memory squeeze in hycapi_register_appl\n",
277                        card->myid);
278                 return;
279         }
280         memcpy(skb_put(skb,sizeof(__u16)), &len, sizeof(__u16));
281         memcpy(skb_put(skb,sizeof(__u16)), &appl, sizeof(__u16));
282         memcpy(skb_put(skb,sizeof(__u8)), &_command, sizeof(_command));
283         memcpy(skb_put(skb,sizeof(__u8)), &_subcommand, sizeof(_subcommand));
284         memcpy(skb_put(skb,sizeof(__u16)), &MessageNumber, sizeof(__u16));    
285         hycapi_send_message(ctrl, skb);    
286         hycapi_applications[appl-1].ctrl_mask &= ~(1 << (ctrl->cnr-1));    
287 }
288
289 /******************************************************************
290 hycapi_release_appl
291
292 Release the application from the internal list an remove it's 
293 registration at controller-level
294 ******************************************************************/
295
296 void 
297 hycapi_release_appl(struct capi_ctr *ctrl, __u16 appl)
298 {
299         int chk;
300
301         chk = _hycapi_appCheck(appl, ctrl->cnr);
302         if(chk<0) {
303                 printk(KERN_ERR "HYCAPI: Releasing invalid appl %d on controller %d\n", appl, ctrl->cnr);
304                 return;
305         }
306         if(hycapi_applications[appl-1].listen_req[ctrl->cnr-1]) {
307                 kfree_skb(hycapi_applications[appl-1].listen_req[ctrl->cnr-1]);
308                 hycapi_applications[appl-1].listen_req[ctrl->cnr-1] = NULL;
309         }
310         if(chk == 1)
311         {
312                 hycapi_release_internal(ctrl, appl);
313         }
314 /*        MOD_DEC_USE_COUNT;  */
315 }
316
317
318 /**************************************************************
319 Kill a single controller.
320 **************************************************************/
321
322 int hycapi_capi_release(hysdn_card *card)
323 {
324         hycapictrl_info *cinfo = card->hyctrlinfo;
325         struct capi_ctr *ctrl;
326 #ifdef HYCAPI_PRINTFNAMES
327         printk(KERN_NOTICE "hycapi_capi_release\n");
328 #endif
329         if(cinfo) {
330                 ctrl = &cinfo->capi_ctrl;
331                 hycapi_remove_ctr(ctrl);
332         }
333         return 0;
334 }
335
336 /**************************************************************
337 hycapi_capi_stop
338
339 Stop CAPI-Output on a card. (e.g. during reboot)
340 ***************************************************************/
341
342 int hycapi_capi_stop(hysdn_card *card)
343 {
344         hycapictrl_info *cinfo = card->hyctrlinfo;
345         struct capi_ctr *ctrl;
346 #ifdef HYCAPI_PRINTFNAMES
347         printk(KERN_NOTICE "hycapi_capi_stop\n");
348 #endif
349         if(cinfo) {
350                 ctrl = &cinfo->capi_ctrl;
351 /*              ctrl->suspend_output(ctrl); */
352                 capi_ctr_reseted(ctrl);
353         }
354         return 0;
355 }
356
357 /***************************************************************
358 hycapi_send_message
359
360 Send a message to the controller.
361
362 Messages are parsed for their Command/Subcommand-type, and appropriate
363 action's are performed.
364
365 Note that we have to muck around with a 64Bit-DATA_REQ as there are
366 firmware-releases that do not check the MsgLen-Indication!
367
368 ***************************************************************/
369
370 u16 hycapi_send_message(struct capi_ctr *ctrl, struct sk_buff *skb)
371 {
372         __u16 appl_id;
373         int _len, _len2;
374         __u8 msghead[64];
375         hycapictrl_info *cinfo = ctrl->driverdata;
376         u16 retval = CAPI_NOERROR;
377
378         appl_id = CAPIMSG_APPID(skb->data);
379         switch(_hycapi_appCheck(appl_id, ctrl->cnr))
380         {
381                 case 0:
382 /*                      printk(KERN_INFO "Need to register\n"); */
383                         hycapi_register_internal(ctrl, 
384                                                  appl_id,
385                                                  &(hycapi_applications[appl_id-1].rp));
386                         break;
387                 case 1:
388                         break;
389                 default:
390                         printk(KERN_ERR "HYCAPI: Controller mixup!\n");
391                         retval = CAPI_ILLAPPNR;
392                         goto out;
393         }
394         switch(CAPIMSG_CMD(skb->data)) {                
395                 case CAPI_DISCONNECT_B3_RESP:
396                         capilib_free_ncci(&cinfo->ncci_head, appl_id, 
397                                           CAPIMSG_NCCI(skb->data));
398                         break;
399                 case CAPI_DATA_B3_REQ:
400                         _len = CAPIMSG_LEN(skb->data);
401                         if (_len > 22) {
402                                 _len2 = _len - 22;
403                                 memcpy(msghead, skb->data, 22);
404                                 memcpy(skb->data + _len2, msghead, 22);
405                                 skb_pull(skb, _len2);
406                                 CAPIMSG_SETLEN(skb->data, 22);
407                                 retval = capilib_data_b3_req(&cinfo->ncci_head,
408                                                              CAPIMSG_APPID(skb->data),
409                                                              CAPIMSG_NCCI(skb->data),
410                                                              CAPIMSG_MSGID(skb->data));
411                         }
412                         break;
413                 case CAPI_LISTEN_REQ:
414                         if(hycapi_applications[appl_id-1].listen_req[ctrl->cnr-1])
415                         {
416                                 kfree_skb(hycapi_applications[appl_id-1].listen_req[ctrl->cnr-1]);
417                                 hycapi_applications[appl_id-1].listen_req[ctrl->cnr-1] = NULL;
418                         }
419                         if (!(hycapi_applications[appl_id-1].listen_req[ctrl->cnr-1] = skb_copy(skb, GFP_ATOMIC))) 
420                         {
421                                 printk(KERN_ERR "HYSDN: memory squeeze in private_listen\n");
422                         } 
423                         break;
424                 default:
425                         break;
426         }
427  out:
428         if (retval == CAPI_NOERROR)
429                 hycapi_sendmsg_internal(ctrl, skb);
430         else 
431                 dev_kfree_skb_any(skb);
432
433         return retval;
434 }
435
436 /*********************************************************************
437 hycapi_read_proc
438
439 Informations provided in the /proc/capi-entries.
440
441 *********************************************************************/
442
443 int hycapi_read_proc(char *page, char **start, off_t off,
444                      int count, int *eof, struct capi_ctr *ctrl)
445 {
446         hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
447         hysdn_card *card = cinfo->card;
448         int len = 0;
449         char *s;
450 #ifdef HYCAPI_PRINTFNAMES
451         printk(KERN_NOTICE "hycapi_read_proc\n");    
452 #endif
453         len += sprintf(page+len, "%-16s %s\n", "name", cinfo->cardname);
454         len += sprintf(page+len, "%-16s 0x%x\n", "io", card->iobase);
455         len += sprintf(page+len, "%-16s %d\n", "irq", card->irq);
456     
457         switch (card->brdtype) {
458                 case BD_PCCARD:  s = "HYSDN Hycard"; break;
459                 case BD_ERGO: s = "HYSDN Ergo2"; break;
460                 case BD_METRO: s = "HYSDN Metro4"; break;
461                 case BD_CHAMP2: s = "HYSDN Champ2";     break;
462                 case BD_PLEXUS: s = "HYSDN Plexus30"; break;
463                 default: s = "???"; break;
464         }
465         len += sprintf(page+len, "%-16s %s\n", "type", s);
466         if ((s = cinfo->version[VER_DRIVER]) != 0)
467                 len += sprintf(page+len, "%-16s %s\n", "ver_driver", s);
468         if ((s = cinfo->version[VER_CARDTYPE]) != 0)
469                 len += sprintf(page+len, "%-16s %s\n", "ver_cardtype", s);
470         if ((s = cinfo->version[VER_SERIAL]) != 0)
471                 len += sprintf(page+len, "%-16s %s\n", "ver_serial", s);
472     
473         len += sprintf(page+len, "%-16s %s\n", "cardname", cinfo->cardname);
474     
475         if (off+count >= len)
476                 *eof = 1;
477         if (len < off)
478                 return 0;
479         *start = page + off;
480         return ((count < len-off) ? count : len-off);
481 }
482
483 /**************************************************************
484 hycapi_load_firmware
485
486 This does NOT load any firmware, but the callback somehow is needed
487 on capi-interface registration.
488
489 **************************************************************/
490
491 int hycapi_load_firmware(struct capi_ctr *ctrl, capiloaddata *data)
492 {
493 #ifdef HYCAPI_PRINTFNAMES
494         printk(KERN_NOTICE "hycapi_load_firmware\n");    
495 #endif
496         return 0;
497 }
498
499
500 char *hycapi_procinfo(struct capi_ctr *ctrl)
501 {
502         hycapictrl_info *cinfo = (hycapictrl_info *)(ctrl->driverdata);
503 #ifdef HYCAPI_PRINTFNAMES
504         printk(KERN_NOTICE "hycapi_proc_info\n");    
505 #endif
506         if (!cinfo)
507                 return "";
508         sprintf(cinfo->infobuf, "%s %s 0x%x %d %s",
509                 cinfo->cardname[0] ? cinfo->cardname : "-",
510                 cinfo->version[VER_DRIVER] ? cinfo->version[VER_DRIVER] : "-",
511                 cinfo->card ? cinfo->card->iobase : 0x0,
512                 cinfo->card ? cinfo->card->irq : 0,
513                 hycapi_revision
514                 );
515         return cinfo->infobuf;
516 }
517
518 /******************************************************************
519 hycapi_rx_capipkt
520
521 Receive a capi-message.
522
523 All B3_DATA_IND are converted to 64K-extension compatible format.
524 New nccis are created if necessary.
525 *******************************************************************/
526
527 void
528 hycapi_rx_capipkt(hysdn_card * card, uchar * buf, word len)
529 {
530         struct sk_buff *skb;
531         hycapictrl_info *cinfo = card->hyctrlinfo;
532         struct capi_ctr *ctrl;
533         __u16 ApplId;
534         __u16 MsgLen, info;
535         __u16 len2, CapiCmd;
536         __u32 CP64[2] = {0,0};
537 #ifdef HYCAPI_PRINTFNAMES
538         printk(KERN_NOTICE "hycapi_rx_capipkt\n");    
539 #endif
540         if(!cinfo) {
541                 return;
542         }
543         ctrl = &cinfo->capi_ctrl;
544         if(len < CAPI_MSG_BASELEN) {
545                 printk(KERN_ERR "HYSDN Card%d: invalid CAPI-message, lenght %d!\n",
546                        card->myid, len);
547                 return;
548         }       
549         MsgLen = CAPIMSG_LEN(buf);
550         ApplId = CAPIMSG_APPID(buf);
551         CapiCmd = CAPIMSG_CMD(buf);
552         
553         if((CapiCmd == CAPI_DATA_B3_IND) && (MsgLen < 30)) {
554                 len2 = len + (30 - MsgLen);
555                 if (!(skb = alloc_skb(len2, GFP_ATOMIC))) {
556                         printk(KERN_ERR "HYSDN Card%d: incoming packet dropped\n",
557                                card->myid);
558                         return;
559                 }
560                 memcpy(skb_put(skb, MsgLen), buf, MsgLen);
561                 memcpy(skb_put(skb, 2*sizeof(__u32)), CP64, 2* sizeof(__u32));
562                 memcpy(skb_put(skb, len - MsgLen), buf + MsgLen,
563                        len - MsgLen);
564                 CAPIMSG_SETLEN(skb->data, 30);
565         } else {
566                 if (!(skb = alloc_skb(len, GFP_ATOMIC))) {
567                         printk(KERN_ERR "HYSDN Card%d: incoming packet dropped\n",
568                                card->myid);
569                         return;
570                 }
571                 memcpy(skb_put(skb, len), buf, len);
572         }
573         switch(CAPIMSG_CMD(skb->data)) 
574         {
575                 case CAPI_CONNECT_B3_CONF:
576 /* Check info-field for error-indication: */
577                         info = CAPIMSG_U16(skb->data, 12);
578                         switch(info)
579                         {
580                                 case 0:
581                                         capilib_new_ncci(&cinfo->ncci_head, ApplId, CAPIMSG_NCCI(skb->data), 
582                                                          hycapi_applications[ApplId-1].rp.datablkcnt); 
583                                         
584                                         break;
585                                 case 0x0001:
586                                         printk(KERN_ERR "HYSDN Card%d: NCPI not supported by current "
587                                                "protocol. NCPI ignored.\n", card->myid);
588                                         break;
589                                 case 0x2001:
590                                         printk(KERN_ERR "HYSDN Card%d: Message not supported in"
591                                                " current state\n", card->myid);
592                                         break;
593                                 case 0x2002:
594                                         printk(KERN_ERR "HYSDN Card%d: invalid PLCI\n", card->myid);
595                                         break;          
596                                 case 0x2004:
597                                         printk(KERN_ERR "HYSDN Card%d: out of NCCI\n", card->myid);
598                                         break;                          
599                                 case 0x3008:
600                                         printk(KERN_ERR "HYSDN Card%d: NCPI not supported\n", 
601                                                card->myid);
602                                         break;  
603                                 default:
604                                         printk(KERN_ERR "HYSDN Card%d: Info in CONNECT_B3_CONF: %d\n", 
605                                                card->myid, info);
606                                         break;                  
607                         }
608                         break;
609                 case CAPI_CONNECT_B3_IND:
610                         capilib_new_ncci(&cinfo->ncci_head, ApplId, 
611                                          CAPIMSG_NCCI(skb->data), 
612                                          hycapi_applications[ApplId-1].rp.datablkcnt);
613                         break;
614                 case CAPI_DATA_B3_CONF:
615                         capilib_data_b3_conf(&cinfo->ncci_head, ApplId,
616                                              CAPIMSG_NCCI(skb->data),
617                                              CAPIMSG_MSGID(skb->data));
618                         break;
619                 default:
620                         break;
621         }
622         capi_ctr_handle_message(ctrl, ApplId, skb);
623 }
624
625 /******************************************************************
626 hycapi_tx_capiack
627
628 Internally acknowledge a msg sent. This will remove the msg from the
629 internal queue.
630
631 *******************************************************************/
632
633 void hycapi_tx_capiack(hysdn_card * card)
634 {
635         hycapictrl_info *cinfo = card->hyctrlinfo;
636 #ifdef HYCAPI_PRINTFNAMES
637         printk(KERN_NOTICE "hycapi_tx_capiack\n");    
638 #endif
639         if(!cinfo) {
640                 return;
641         }
642         spin_lock_irq(&cinfo->lock);
643         kfree_skb(cinfo->skbs[cinfo->out_idx]);         /* free skb */
644         cinfo->skbs[cinfo->out_idx++] = NULL;
645         if (cinfo->out_idx >= HYSDN_MAX_CAPI_SKB)
646                 cinfo->out_idx = 0;     /* wrap around */
647
648         if (cinfo->sk_count-- == HYSDN_MAX_CAPI_SKB)    /* dec usage count */
649                 capi_ctr_resume_output(&cinfo->capi_ctrl);
650         spin_unlock_irq(&cinfo->lock);
651 }
652
653 /***************************************************************
654 hycapi_tx_capiget(hysdn_card *card)
655
656 This is called when polling for messages to SEND.
657
658 ****************************************************************/
659
660 struct sk_buff *
661 hycapi_tx_capiget(hysdn_card *card)
662 {
663         hycapictrl_info *cinfo = card->hyctrlinfo;
664         if(!cinfo) {
665                 return (struct sk_buff *)NULL;
666         }
667         if (!cinfo->sk_count)
668                 return (struct sk_buff *)NULL;  /* nothing available */
669
670         return (cinfo->skbs[cinfo->out_idx]);           /* next packet to send */
671 }
672
673
674 /**********************************************************
675 int hycapi_init()
676
677 attach the capi-driver to the kernel-capi.
678
679 ***********************************************************/
680
681 int hycapi_init(void)
682 {
683         int i;
684         for(i=0;i<CAPI_MAXAPPL;i++) {
685                 memset(&(hycapi_applications[i]), 0, sizeof(hycapi_appl));
686         }
687         return(0);
688 }
689
690 /**************************************************************
691 hycapi_cleanup(void)
692
693 detach the capi-driver to the kernel-capi. Actually this should
694 free some more ressources. Do that later.
695 **************************************************************/
696
697 void 
698 hycapi_cleanup(void)
699 {
700 }
701
702 /********************************************************************
703 hycapi_capi_create(hysdn_card *card)
704
705 Attach the card with its capi-ctrl.
706 *********************************************************************/
707
708 static void hycapi_fill_profile(hysdn_card *card)
709 {
710         hycapictrl_info *cinfo = NULL;
711         struct capi_ctr *ctrl = NULL;
712         cinfo = card->hyctrlinfo;
713         if(!cinfo) return;
714         ctrl = &cinfo->capi_ctrl;
715         strcpy(ctrl->manu, "Hypercope");        
716         ctrl->version.majorversion = 2;
717         ctrl->version.minorversion = 0;
718         ctrl->version.majormanuversion = 3;
719         ctrl->version.minormanuversion = 2;
720         ctrl->profile.ncontroller = card->myid;
721         ctrl->profile.nbchannel = card->bchans;
722         ctrl->profile.goptions = GLOBAL_OPTION_INTERNAL_CONTROLLER |
723                 GLOBAL_OPTION_B_CHANNEL_OPERATION;
724         ctrl->profile.support1 =  B1_PROT_64KBIT_HDLC |
725                 (card->faxchans ? B1_PROT_T30 : 0) |
726                 B1_PROT_64KBIT_TRANSPARENT;
727         ctrl->profile.support2 = B2_PROT_ISO7776 |
728                 (card->faxchans ? B2_PROT_T30 : 0) |
729                 B2_PROT_TRANSPARENT;
730         ctrl->profile.support3 = B3_PROT_TRANSPARENT |
731                 B3_PROT_T90NL |
732                 (card->faxchans ? B3_PROT_T30 : 0) |
733                 (card->faxchans ? B3_PROT_T30EXT : 0) |
734                 B3_PROT_ISO8208;
735 }       
736
737 int 
738 hycapi_capi_create(hysdn_card *card)
739 {
740         hycapictrl_info *cinfo = NULL;
741         struct capi_ctr *ctrl = NULL;
742         int retval;
743 #ifdef HYCAPI_PRINTFNAMES
744         printk(KERN_NOTICE "hycapi_capi_create\n");        
745 #endif
746         if((hycapi_enable & (1 << card->myid)) == 0) {
747                 return 1;
748         }
749         if (!card->hyctrlinfo) {
750                 cinfo = (hycapictrl_info *) kmalloc(sizeof(hycapictrl_info), GFP_ATOMIC);
751                 if (!cinfo) {
752                         printk(KERN_WARNING "HYSDN: no memory for capi-ctrl.\n");
753                         return -ENOMEM;
754                 }
755                 memset(cinfo, 0, sizeof(hycapictrl_info));
756                 card->hyctrlinfo = cinfo;
757                 cinfo->card = card;
758                 spin_lock_init(&cinfo->lock);
759                 INIT_LIST_HEAD(&cinfo->ncci_head);
760
761                 switch (card->brdtype) {
762                         case BD_PCCARD:  strcpy(cinfo->cardname,"HYSDN Hycard"); break;
763                         case BD_ERGO: strcpy(cinfo->cardname,"HYSDN Ergo2"); break;
764                         case BD_METRO: strcpy(cinfo->cardname,"HYSDN Metro4"); break;
765                         case BD_CHAMP2: strcpy(cinfo->cardname,"HYSDN Champ2"); break;
766                         case BD_PLEXUS: strcpy(cinfo->cardname,"HYSDN Plexus30"); break;
767                         default: strcpy(cinfo->cardname,"HYSDN ???"); break;
768                 }
769
770                 ctrl = &cinfo->capi_ctrl;
771                 ctrl->driver_name   = "hycapi";
772                 ctrl->driverdata    = cinfo;
773                 ctrl->register_appl = hycapi_register_appl;
774                 ctrl->release_appl  = hycapi_release_appl;
775                 ctrl->send_message  = hycapi_send_message;
776                 ctrl->load_firmware = hycapi_load_firmware;
777                 ctrl->reset_ctr     = hycapi_reset_ctr;
778                 ctrl->procinfo      = hycapi_procinfo;
779                 ctrl->ctr_read_proc = hycapi_read_proc;
780                 strcpy(ctrl->name, cinfo->cardname);
781                 ctrl->owner = THIS_MODULE;
782
783                 retval = attach_capi_ctr(ctrl);
784                 if (retval) {
785                         printk(KERN_ERR "hycapi: attach controller failed.\n");
786                         return -EBUSY;
787                 }
788                 /* fill in the blanks: */
789                 hycapi_fill_profile(card);
790                 capi_ctr_ready(ctrl);
791         } else {
792                 /* resume output on stopped ctrl */
793                 ctrl = &card->hyctrlinfo->capi_ctrl;
794                 hycapi_fill_profile(card);
795                 capi_ctr_ready(ctrl);
796                 hycapi_restart_internal(ctrl); 
797 /*              ctrl->resume_output(ctrl); */
798         }
799         return 0;
800 }