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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: icn.h,v 1.1.4.1 2001/11/20 14:19:37 kai Exp $
  2.  *
  3.  * ISDN lowlevel-module for the ICN active ISDN-Card.
  4.  *
  5.  * Copyright 1994 by Fritz Elfert (fritz@isdn4linux.de)
  6.  *
  7.  * This software may be used and distributed according to the terms
  8.  * of the GNU General Public License, incorporated herein by reference.
  9.  *
  10.  */
  11. #ifndef icn_h
  12. #define icn_h
  13. #define ICN_IOCTL_SETMMIO   0
  14. #define ICN_IOCTL_GETMMIO   1
  15. #define ICN_IOCTL_SETPORT   2
  16. #define ICN_IOCTL_GETPORT   3
  17. #define ICN_IOCTL_LOADBOOT  4
  18. #define ICN_IOCTL_LOADPROTO 5
  19. #define ICN_IOCTL_LEASEDCFG 6
  20. #define ICN_IOCTL_GETDOUBLE 7
  21. #define ICN_IOCTL_DEBUGVAR  8
  22. #define ICN_IOCTL_ADDCARD   9
  23. /* Struct for adding new cards */
  24. typedef struct icn_cdef {
  25. int port;
  26. char id1[10];
  27. char id2[10];
  28. } icn_cdef;
  29. #if defined(__KERNEL__) || defined(__DEBUGVAR__)
  30. #ifdef __KERNEL__
  31. /* Kernel includes */
  32. #include <linux/version.h>
  33. #include <linux/errno.h>
  34. #include <linux/fs.h>
  35. #include <linux/major.h>
  36. #include <asm/segment.h>
  37. #include <asm/io.h>
  38. #include <linux/kernel.h>
  39. #include <linux/signal.h>
  40. #include <linux/slab.h>
  41. #include <linux/mm.h>
  42. #include <linux/mman.h>
  43. #include <linux/ioport.h>
  44. #include <linux/timer.h>
  45. #include <linux/wait.h>
  46. #include <linux/delay.h>
  47. #include <linux/isdnif.h>
  48. #endif                          /* __KERNEL__ */
  49. /* some useful macros for debugging */
  50. #ifdef ICN_DEBUG_PORT
  51. #define OUTB_P(v,p) {printk(KERN_DEBUG "icn: outb_p(0x%02x,0x%03x)n",v,p); outb_p(v,p);}
  52. #else
  53. #define OUTB_P outb
  54. #endif
  55. /* Defaults for Port-Address and shared-memory */
  56. #define ICN_BASEADDR 0x320
  57. #define ICN_PORTLEN (0x04)
  58. #define ICN_MEMADDR 0x0d0000
  59. #define ICN_FLAGS_B1ACTIVE 1    /* B-Channel-1 is open                     */
  60. #define ICN_FLAGS_B2ACTIVE 2    /* B-Channel-2 is open                     */
  61. #define ICN_FLAGS_RUNNING  4    /* Cards driver activated                  */
  62. #define ICN_FLAGS_RBTIMER  8    /* cyclic scheduling of B-Channel-poll     */
  63. #define ICN_BOOT_TIMEOUT1  (HZ) /* Delay for Boot-download (jiffies)       */
  64. #define ICN_CHANLOCK_DELAY (HZ/10) /* Delay for Channel-mapping (jiffies)     */
  65. #define ICN_TIMER_BCREAD (HZ/100) /* B-Channel poll-cycle                    */
  66. #define ICN_TIMER_DCREAD (HZ/2) /* D-Channel poll-cycle                    */
  67. #define ICN_CODE_STAGE1 4096    /* Size of bootcode                        */
  68. #define ICN_CODE_STAGE2 65536   /* Size of protocol-code                   */
  69. #define ICN_MAX_SQUEUE 8000     /* Max. outstanding send-data (2* hw-buf.) */
  70. #define ICN_FRAGSIZE (250)      /* Max. size of send-fragments             */
  71. #define ICN_BCH 2               /* Number of supported channels per card   */
  72. /* type-definitions for accessing the mmap-io-areas */
  73. #define SHM_DCTL_OFFSET (0)     /* Offset to data-controlstructures in shm */
  74. #define SHM_CCTL_OFFSET (0x1d2) /* Offset to comm-controlstructures in shm */
  75. #define SHM_CBUF_OFFSET (0x200) /* Offset to comm-buffers in shm           */
  76. #define SHM_DBUF_OFFSET (0x2000) /* Offset to data-buffers in shm           */
  77. /*
  78.  * Layout of card's data buffers
  79.  */
  80. typedef struct {
  81. unsigned char length;   /* Bytecount of fragment (max 250)    */
  82. unsigned char endflag;  /* 0=last frag., 0xff=frag. continued */
  83. unsigned char data[ICN_FRAGSIZE]; /* The data                           */
  84. /* Fill to 256 bytes */
  85. char unused[0x100 - ICN_FRAGSIZE - 2];
  86. } frag_buf;
  87. /*
  88.  * Layout of card's shared memory
  89.  */
  90. typedef union {
  91. struct {
  92. unsigned char scns; /* Index to free SendFrag.             */
  93. unsigned char scnr; /* Index to active SendFrag   READONLY */
  94. unsigned char ecns; /* Index to free RcvFrag.     READONLY */
  95. unsigned char ecnr; /* Index to valid RcvFrag              */
  96. char unused[6];
  97. unsigned short fuell1; /* Internal Buf Bytecount              */
  98. } data_control;
  99. struct {
  100. char unused[SHM_CCTL_OFFSET];
  101. unsigned char iopc_i; /* Read-Ptr Status-Queue      READONLY */
  102. unsigned char iopc_o; /* Write-Ptr Status-Queue              */
  103. unsigned char pcio_i; /* Write-Ptr Command-Queue             */
  104. unsigned char pcio_o; /* Read-Ptr Command Queue     READONLY */
  105. } comm_control;
  106. struct {
  107. char unused[SHM_CBUF_OFFSET];
  108. unsigned char pcio_buf[0x100]; /* Ring-Buffer Command-Queue           */
  109. unsigned char iopc_buf[0x100]; /* Ring-Buffer Status-Queue            */
  110. } comm_buffers;
  111. struct {
  112. char unused[SHM_DBUF_OFFSET];
  113. frag_buf receive_buf[0x10];
  114. frag_buf send_buf[0x10];
  115. } data_buffers;
  116. } icn_shmem;
  117. /*
  118.  * Per card driver data
  119.  */
  120. typedef struct icn_card {
  121. struct icn_card *next;  /* Pointer to next device struct    */
  122. struct icn_card *other; /* Pointer to other card for ICN4B  */
  123. unsigned short port;    /* Base-port-address                */
  124. int myid;               /* Driver-Nr. assigned by linklevel */
  125. int rvalid;             /* IO-portregion has been requested */
  126. int leased;             /* Flag: This Adapter is connected  */
  127. /*       to a leased line           */
  128. unsigned short flags;   /* Statusflags                      */
  129. int doubleS0;           /* Flag: ICN4B                      */
  130. int secondhalf;         /* Flag: Second half of a doubleS0  */
  131. int fw_rev;             /* Firmware revision loaded         */
  132. int ptype;              /* Protocol type (1TR6 or Euro)     */
  133. struct timer_list st_timer; /* Timer for Status-Polls           */
  134. struct timer_list rb_timer; /* Timer for B-Channel-Polls        */
  135. u_char rcvbuf[ICN_BCH][4096]; /* B-Channel-Receive-Buffers        */
  136. int rcvidx[ICN_BCH];    /* Index for above buffers          */
  137. int l2_proto[ICN_BCH];  /* Current layer-2-protocol         */
  138. isdn_if interface;      /* Interface to upper layer         */
  139. int iptr;               /* Index to imsg-buffer             */
  140. char imsg[60];          /* Internal buf for status-parsing  */
  141. char msg_buf[2048];     /* Buffer for status-messages       */
  142. char *msg_buf_write;    /* Writepointer for statusbuffer    */
  143. char *msg_buf_read;     /* Readpointer for statusbuffer     */
  144. char *msg_buf_end;      /* Pointer to end of statusbuffer   */
  145. int sndcount[ICN_BCH];  /* Byte-counters for B-Ch.-send     */
  146. int xlen[ICN_BCH];      /* Byte-counters/Flags for sent-ACK */
  147. struct sk_buff *xskb[ICN_BCH];
  148.                         /* Current transmitted skb          */
  149. struct sk_buff_head
  150.  spqueue[ICN_BCH];      /* Sendqueue                        */
  151. char regname[35];       /* Name used for request_region     */
  152. u_char xmit_lock[ICN_BCH]; /* Semaphore for pollbchan_send()   */
  153. } icn_card;
  154. /*
  155.  * Main driver data
  156.  */
  157. typedef struct icn_dev {
  158. unsigned long memaddr; /* Address of memory mapped buffers */
  159. icn_shmem *shmem;       /* Pointer to memory-mapped-buffers */
  160. int mvalid;             /* IO-shmem has been requested      */
  161. int channel;            /* Currently mapped channel         */
  162. struct icn_card *mcard; /* Currently mapped card            */
  163. int chanlock;           /* Semaphore for channel-mapping    */
  164. int firstload;          /* Flag: firmware never loaded      */
  165. } icn_dev;
  166. typedef icn_dev *icn_devptr;
  167. #ifdef __KERNEL__
  168. static icn_card *cards = (icn_card *) 0;
  169. static u_char chan2bank[] =
  170. {0, 4, 8, 12};                  /* for icn_map_channel() */
  171. static icn_dev dev;
  172. #endif                          /* __KERNEL__ */
  173. /* Utility-Macros */
  174. /* Macros for accessing ports */
  175. #define ICN_CFG    (card->port)
  176. #define ICN_MAPRAM (card->port+1)
  177. #define ICN_RUN    (card->port+2)
  178. #define ICN_BANK   (card->port+3)
  179. /* Return true, if there is a free transmit-buffer */
  180. #define sbfree (((readb(&dev.shmem->data_control.scns)+1) & 0xf) != 
  181. readb(&dev.shmem->data_control.scnr))
  182. /* Switch to next transmit-buffer */
  183. #define sbnext (writeb((readb(&dev.shmem->data_control.scns)+1) & 0xf, 
  184.        &dev.shmem->data_control.scns))
  185. /* Shortcuts for transmit-buffer-access */
  186. #define sbuf_n dev.shmem->data_control.scns
  187. #define sbuf_d dev.shmem->data_buffers.send_buf[readb(&sbuf_n)].data
  188. #define sbuf_l dev.shmem->data_buffers.send_buf[readb(&sbuf_n)].length
  189. #define sbuf_f dev.shmem->data_buffers.send_buf[readb(&sbuf_n)].endflag
  190. /* Return true, if there is receive-data is available */
  191. #define rbavl  (readb(&dev.shmem->data_control.ecnr) != 
  192. readb(&dev.shmem->data_control.ecns))
  193. /* Switch to next receive-buffer */
  194. #define rbnext (writeb((readb(&dev.shmem->data_control.ecnr)+1) & 0xf, 
  195.        &dev.shmem->data_control.ecnr))
  196. /* Shortcuts for receive-buffer-access */
  197. #define rbuf_n dev.shmem->data_control.ecnr
  198. #define rbuf_d dev.shmem->data_buffers.receive_buf[readb(&rbuf_n)].data
  199. #define rbuf_l dev.shmem->data_buffers.receive_buf[readb(&rbuf_n)].length
  200. #define rbuf_f dev.shmem->data_buffers.receive_buf[readb(&rbuf_n)].endflag
  201. /* Shortcuts for command-buffer-access */
  202. #define cmd_o (dev.shmem->comm_control.pcio_o)
  203. #define cmd_i (dev.shmem->comm_control.pcio_i)
  204. /* Return free space in command-buffer */
  205. #define cmd_free ((readb(&cmd_i)>=readb(&cmd_o))? 
  206.   0x100-readb(&cmd_i)+readb(&cmd_o): 
  207.   readb(&cmd_o)-readb(&cmd_i))
  208. /* Shortcuts for message-buffer-access */
  209. #define msg_o (dev.shmem->comm_control.iopc_o)
  210. #define msg_i (dev.shmem->comm_control.iopc_i)
  211. /* Return length of Message, if avail. */
  212. #define msg_avail ((readb(&msg_o)>readb(&msg_i))? 
  213.    0x100-readb(&msg_o)+readb(&msg_i): 
  214.    readb(&msg_i)-readb(&msg_o))
  215. #define CID (card->interface.id)
  216. #endif                          /* defined(__KERNEL__) || defined(__DEBUGVAR__) */
  217. #endif                          /* icn_h */