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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2. * sdla_chdlc.c WANPIPE(tm) Multiprotocol WAN Link Driver. Cisco HDLC module.
  3. *
  4. * Authors:  Nenad Corbic <ncorbic@sangoma.com>
  5. * Gideon Hack  
  6. *
  7. * Copyright: (c) 1995-1999 Sangoma Technologies Inc.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. * ============================================================================
  14. * Sep 30, 1999  Nenad Corbic    Fixed dynamic IP and route setup.
  15. * Sep 23, 1999  Nenad Corbic    Added SMP support, fixed tracing 
  16. * Sep 13, 1999  Nenad Corbic Split up Port 0 and 1 into separate devices.
  17. * Jun 02, 1999  Gideon Hack     Added support for the S514 adapter.
  18. * Oct 30, 1998 Jaspreet Singh Added Support for CHDLC API (HDLC STREAMING).
  19. * Oct 28, 1998 Jaspreet Singh Added Support for Dual Port CHDLC.
  20. * Aug 07, 1998 David Fong Initial version.
  21. *****************************************************************************/
  22. #include <linux/module.h>
  23. #include <linux/version.h>
  24. #include <linux/kernel.h> /* printk(), and other useful stuff */
  25. #include <linux/module.h>
  26. #include <linux/stddef.h> /* offsetof(), etc. */
  27. #include <linux/errno.h> /* return codes */
  28. #include <linux/string.h> /* inline memset(), etc. */
  29. #include <linux/slab.h> /* kmalloc(), kfree() */
  30. #include <linux/wanrouter.h> /* WAN router definitions */
  31. #include <linux/wanpipe.h> /* WANPIPE common user API definitions */
  32. #include <linux/if_arp.h> /* ARPHRD_* defines */
  33. #include <linux/inetdevice.h>
  34. #include <asm/uaccess.h>
  35. #include <linux/in.h> /* sockaddr_in */
  36. #include <linux/inet.h>
  37. #include <linux/if.h>
  38. #include <asm/byteorder.h> /* htons(), etc. */
  39. #include <linux/sdlapci.h>
  40. #include <asm/io.h>
  41. #include <linux/sdla_chdlc.h> /* CHDLC firmware API definitions */
  42. /****** Defines & Macros ****************************************************/
  43. /* reasons for enabling the timer interrupt on the adapter */
  44. #define TMR_INT_ENABLED_UDP    0x0001
  45. #define TMR_INT_ENABLED_UPDATE 0x0002
  46.  
  47. #define CHDLC_DFLT_DATA_LEN 1500 /* default MTU */
  48. #define CHDLC_HDR_LEN 1
  49. #define IFF_POINTTOPOINT 0x10
  50. #define WANPIPE 0x00
  51. #define API 0x01
  52. #define CHDLC_API 0x01
  53. #define PORT(x)   (x == 0 ? "PRIMARY" : "SECONDARY" )
  54.  
  55. /******Data Structures*****************************************************/
  56. /* This structure is placed in the private data area of the device structure.
  57.  * The card structure used to occupy the private area but now the following 
  58.  * structure will incorporate the card structure along with CHDLC specific data
  59.  */
  60. typedef struct chdlc_private_area
  61. {
  62. netdevice_t  *slave;
  63. sdla_t *card;
  64. int  TracingEnabled; /* For enabling Tracing */
  65. unsigned long  curr_trace_addr; /* Used for Tracing */
  66. unsigned long  start_trace_addr;
  67. unsigned long  end_trace_addr;
  68. unsigned long  base_addr_trace_buffer;
  69. unsigned long  end_addr_trace_buffer;
  70. unsigned short  number_trace_elements;
  71. unsigned   available_buffer_space;
  72. unsigned long  router_start_time;
  73. unsigned char  route_status;
  74. unsigned char  route_removed;
  75. unsigned long  tick_counter; /* For 5s timeout counter */
  76. unsigned long  router_up_time;
  77.         u32             IP_address; /* IP addressing */
  78.         u32             IP_netmask;
  79. unsigned char  mc; /* Mulitcast support on/off */
  80. unsigned short udp_pkt_lgth; /* udp packet processing */
  81. char udp_pkt_src;
  82. char udp_pkt_data[MAX_LGTH_UDP_MGNT_PKT];
  83. unsigned short timer_int_enabled;
  84. char update_comms_stats; /* updating comms stats */
  85. //FIXME: add driver stats as per frame relay!
  86. } chdlc_private_area_t;
  87. /* Route Status options */
  88. #define NO_ROUTE 0x00
  89. #define ADD_ROUTE 0x01
  90. #define ROUTE_ADDED 0x02
  91. #define REMOVE_ROUTE 0x03
  92. /****** Function Prototypes *************************************************/
  93. /* WAN link driver entry points. These are called by the WAN router module. */
  94. static int wpft1_exec (struct sdla *card, void *u_cmd, void *u_data);
  95. static int chdlc_read_version (sdla_t* card, char* str);
  96. static int chdlc_error (sdla_t *card, int err, CHDLC_MAILBOX_STRUCT *mb);
  97. /****** Public Functions ****************************************************/
  98. /*============================================================================
  99.  * Cisco HDLC protocol initialization routine.
  100.  *
  101.  * This routine is called by the main WANPIPE module during setup.  At this
  102.  * point adapter is completely initialized and firmware is running.
  103.  *  o read firmware version (to make sure it's alive)
  104.  *  o configure adapter
  105.  *  o initialize protocol-specific fields of the adapter data space.
  106.  *
  107.  * Return: 0 o.k.
  108.  * < 0 failure.
  109.  */
  110. int wpft1_init (sdla_t* card, wandev_conf_t* conf)
  111. {
  112. unsigned char port_num;
  113. int err;
  114. union
  115. {
  116. char str[80];
  117. } u;
  118. volatile CHDLC_MAILBOX_STRUCT* mb;
  119. CHDLC_MAILBOX_STRUCT* mb1;
  120. unsigned long timeout;
  121. /* Verify configuration ID */
  122. if (conf->config_id != WANCONFIG_CHDLC) {
  123. printk(KERN_INFO "%s: invalid configuration ID %u!n",
  124.   card->devname, conf->config_id);
  125. return -EINVAL;
  126. }
  127. /* Use primary port */
  128. card->u.c.comm_port = 0;
  129. /* Initialize protocol-specific fields */
  130. if(card->hw.type != SDLA_S514){
  131. card->mbox  = (void *) card->hw.dpmbase;
  132. }else{ 
  133. card->mbox = (void *) card->hw.dpmbase + PRI_BASE_ADDR_MB_STRUCT;
  134. }
  135. mb = mb1 = card->mbox;
  136. if (!card->configured){
  137. /* The board will place an 'I' in the return code to indicate that it is
  138.     ready to accept commands.  We expect this to be completed in less
  139.             than 1 second. */
  140. timeout = jiffies;
  141. while (mb->return_code != 'I') /* Wait 1s for board to initialize */
  142. if ((jiffies - timeout) > 1*HZ) break;
  143. if (mb->return_code != 'I') {
  144. printk(KERN_INFO
  145. "%s: Initialization not completed by adaptern",
  146. card->devname);
  147. printk(KERN_INFO "Please contact Sangoma representative.n");
  148. return -EIO;
  149. }
  150. }
  151. /* Read firmware version.  Note that when adapter initializes, it
  152.  * clears the mailbox, so it may appear that the first command was
  153.  * executed successfully when in fact it was merely erased. To work
  154.  * around this, we execute the first command twice.
  155.  */
  156. if (chdlc_read_version(card, u.str))
  157. return -EIO;
  158. printk(KERN_INFO "%s: Running FT1 Configuration firmware v%sn",
  159. card->devname, u.str); 
  160. card->isr = NULL;
  161. card->poll = NULL;
  162. card->exec = &wpft1_exec;
  163. card->wandev.update = NULL;
  164.   card->wandev.new_if = NULL;
  165. card->wandev.del_if = NULL;
  166. card->wandev.state = WAN_DUALPORT;
  167. card->wandev.udp_port    = conf->udp_port;
  168. card->wandev.new_if_cnt = 0;
  169. /* This is for the ports link state */
  170. card->u.c.state = WAN_DISCONNECTED;
  171. /* reset the number of times the 'update()' proc has been called */
  172. card->u.c.update_call_count = 0;
  173. card->wandev.ttl = 0x7F;
  174. card->wandev.interface = 0; 
  175. card->wandev.clocking = 0;
  176. port_num = card->u.c.comm_port;
  177. /* Setup Port Bps */
  178.         card->wandev.bps = 0;
  179. card->wandev.mtu = MIN_LGTH_CHDLC_DATA_CFG;
  180. /* Set up the interrupt status area */
  181. /* Read the CHDLC Configuration and obtain: 
  182.  * Ptr to shared memory infor struct
  183.          * Use this pointer to calculate the value of card->u.c.flags !
  184.    */
  185. mb1->buffer_length = 0;
  186. mb1->command = READ_CHDLC_CONFIGURATION;
  187. err = sdla_exec(mb1) ? mb1->return_code : CMD_TIMEOUT;
  188. if(err != COMMAND_OK) {
  189. chdlc_error(card, err, mb1);
  190. return -EIO;
  191. }
  192. if(card->hw.type == SDLA_S514){
  193.                 card->u.c.flags = (void *)(card->hw.dpmbase +
  194.                 (((CHDLC_CONFIGURATION_STRUCT *)mb1->data)->
  195. ptr_shared_mem_info_struct));
  196.         }else{
  197.                 card->u.c.flags = (void *)(card->hw.dpmbase +
  198.                         (((CHDLC_CONFIGURATION_STRUCT *)mb1->data)->
  199. ptr_shared_mem_info_struct % SDLA_WINDOWSIZE));
  200. }
  201. card->wandev.state = WAN_FT1_READY;
  202. printk(KERN_INFO "%s: FT1 Config Ready !n",card->devname);
  203. return 0;
  204. }
  205. static int wpft1_exec(sdla_t *card, void *u_cmd, void *u_data)
  206. {
  207. CHDLC_MAILBOX_STRUCT* mbox = card->mbox;
  208. int len;
  209. #if defined(LINUX_2_1) || defined(LINUX_2_4)
  210. if (copy_from_user((void*)&mbox->command, u_cmd, sizeof(ft1_exec_cmd_t))){
  211. return -EFAULT;
  212. }
  213. len = mbox->buffer_length;
  214. if (len) {
  215. if( copy_from_user((void*)&mbox->data, u_data, len)){
  216. return -EFAULT;
  217. }
  218. }
  219. /* execute command */
  220. if (!sdla_exec(mbox)){
  221. return -EIO;
  222. }
  223. /* return result */
  224. if( copy_to_user(u_cmd, (void*)&mbox->command, sizeof(ft1_exec_cmd_t))){
  225. return -EFAULT;
  226. }
  227. len = mbox->buffer_length;
  228. if (len && u_data && copy_to_user(u_data, (void*)&mbox->data, len)){
  229. return -EFAULT;
  230. }
  231. #else
  232.         if (!u_cmd || verify_area(VERIFY_WRITE, u_cmd, sizeof(ft1_exec_cmd_t))){
  233.                 return -EFAULT;
  234. }
  235.         memcpy_fromfs((void*)&mbox->command, u_cmd, sizeof(ft1_exec_cmd_t));
  236. len = mbox->buffer_length;
  237.         if (len) {
  238.                 if (!u_data || verify_area(VERIFY_READ, u_data, len))
  239.                         return -EFAULT;
  240. memcpy_fromfs((void*)&mbox->data, u_data, len);
  241.         }
  242.         /* execute command */
  243.         if (!sdla_exec(mbox))
  244.                 return -EIO;
  245.         /* return result */
  246.         memcpy_tofs(u_cmd, (void*)&mbox->command, sizeof(ft1_exec_cmd_t));
  247.         len = mbox->buffer_length;
  248.         if (len && u_data && !verify_area(VERIFY_WRITE, u_data, len)){
  249.                 memcpy_tofs(u_data, (void*)&mbox->data, len);
  250. }
  251. #endif
  252. return 0;
  253. }
  254. /*============================================================================
  255.  * Read firmware code version.
  256.  * Put code version as ASCII string in str. 
  257.  */
  258. static int chdlc_read_version (sdla_t* card, char* str)
  259. {
  260. CHDLC_MAILBOX_STRUCT* mb = card->mbox;
  261. int len;
  262. char err;
  263. mb->buffer_length = 0;
  264. mb->command = READ_CHDLC_CODE_VERSION;
  265. err = sdla_exec(mb) ? mb->return_code : CMD_TIMEOUT;
  266. if(err != COMMAND_OK) {
  267. chdlc_error(card,err,mb);
  268. }
  269. else if (str) {  /* is not null */
  270. len = mb->buffer_length;
  271. memcpy(str, mb->data, len);
  272. str[len] = '';
  273. }
  274. return (err);
  275. }
  276. /*============================================================================
  277.  * Firmware error handler.
  278.  * This routine is called whenever firmware command returns non-zero
  279.  * return code.
  280.  *
  281.  * Return zero if previous command has to be cancelled.
  282.  */
  283. static int chdlc_error (sdla_t *card, int err, CHDLC_MAILBOX_STRUCT *mb)
  284. {
  285. unsigned cmd = mb->command;
  286. switch (err) {
  287. case CMD_TIMEOUT:
  288. printk(KERN_ERR "%s: command 0x%02X timed out!n",
  289. card->devname, cmd);
  290. break;
  291. case S514_BOTH_PORTS_SAME_CLK_MODE:
  292. if(cmd == SET_CHDLC_CONFIGURATION) {
  293. printk(KERN_INFO
  294.  "%s: Configure both ports for the same clock sourcen",
  295. card->devname);
  296. break;
  297. }
  298. default:
  299. printk(KERN_INFO "%s: command 0x%02X returned 0x%02X!n",
  300. card->devname, cmd, err);
  301. }
  302. return 0;
  303. }
  304. MODULE_LICENSE("GPL");