hycapi.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:23k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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