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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: tpam.h,v 1.1.2.1 2001/11/20 14:19:37 kai Exp $
  2.  *
  3.  * Turbo PAM ISDN driver for Linux. (Kernel Driver)
  4.  *
  5.  * Copyright 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alc魐e
  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.  * For all support questions please contact: <support@auvertech.fr>
  11.  *
  12.  */
  13. #ifndef _TPAM_PRIV_H_
  14. #define _TPAM_PRIV_H_
  15. #include <linux/isdnif.h>
  16. #include <linux/init.h>
  17. /* Maximum number of channels for this board */
  18. #define TPAM_NBCHANNEL 30
  19. /* Maximum size of data */
  20. #define TPAM_MAXBUFSIZE 2032
  21. /* Size of a page of board memory */
  22. #define TPAM_PAGE_SIZE 0x003ffffc /* 4 MB */
  23. /* Magic number present if the board was successfully started */
  24. #define TPAM_MAGICNUMBER 0x2a343242
  25. /* Registers in the PCI BAR0 */
  26. #define TPAM_PAGE_REGISTER 0x00400000 /* Select page */
  27. #define TPAM_DSPINT_REGISTER 0x00400004 /* Interrupt board */
  28. #define TPAM_RESETPAM_REGISTER 0x00400008 /* Reset board */
  29. #define TPAM_HINTACK_REGISTER 0x0040000c /* Ack interrupt */
  30. #define TPAM_HPIC_REGISTER 0x00400014 /* Board ready */
  31. /* Registers in the board memory */
  32. #define TPAM_MAGICNUMBER_REGISTER 0x80008000 /* Magic number */
  33. #define TPAM_EXID_REGISTER 0x80008004 /* EXID - not used */
  34. #define TPAM_UPLOADPTR_REGISTER 0x80008008 /* Upload data ptr */
  35. #define TPAM_DOWNLOADPTR_REGISTER 0x8000800c /* Download data ptr */
  36. #define TPAM_ACKUPLOAD_REGISTER 0x80008010 /* Ack upload */
  37. #define TPAM_ACKDOWNLOAD_REGISTER 0x80008014 /* Ack download */
  38. #define TPAM_INTERRUPTACK_REGISTER 0x80008018 /* Ack interrupt */
  39. /* Reserved areas in the board memory */
  40. #define TPAM_RESERVEDAREA1_START 0x00000000
  41. #define TPAM_RESERVEDAREA1_END 0x003FFFFF
  42. #define TPAM_RESERVEDAREA2_START 0x01C00000
  43. #define TPAM_RESERVEDAREA2_END 0x01FFFFFF
  44. #define TPAM_RESERVEDAREA3_START 0x04000000
  45. #define TPAM_RESERVEDAREA3_END 0x7FFFFFFF
  46. #define TPAM_RESERVEDAREA4_START 0x80010000
  47. #define TPAM_RESERVEDAREA4_END 0xFFFFFFFF
  48. /* NCO ID invalid */
  49. #define TPAM_NCOID_INVALID 0xffff
  50. /* channel number invalid */
  51. #define TPAM_CHANNEL_INVALID 0xffff
  52. /* Channel structure */
  53. typedef struct tpam_channel {
  54. int num; /* channel number */
  55. struct tpam_card *card; /* channel's card */
  56. u32 ncoid; /* ncoid */
  57. u8  hdlc; /* hdlc mode (set by user level) */
  58. u8  realhdlc; /* hdlc mode (negociated with peer) */
  59. u32 hdlcshift; /* hdlc shift */
  60. u8  readytoreceive; /* channel ready to receive data */
  61. struct sk_buff_head sendq; /* Send queue */
  62. } tpam_channel;
  63. /* Card structure */
  64. typedef struct tpam_card {
  65. struct tpam_card *next; /* next card in list */
  66. unsigned int irq; /* IRQ used by this board */
  67. unsigned long bar0; /* ioremapped bar0 */
  68. int id; /* id of the board */
  69. isdn_if interface; /* isdn link-level pointer */
  70. int channels_used; /* number of channels actually used */
  71. int channels_tested; /* number of channels being tested */
  72. u8 loopmode; /* board in looptest mode */
  73. tpam_channel channels[TPAM_NBCHANNEL];/* channels tab */
  74. int running; /* card is running */
  75. int busy; /* waiting for ack from card */
  76. int roundrobin; /* round robin between channels */
  77. struct sk_buff_head sendq; /* send queue */
  78. struct sk_buff_head recvq; /* receive queue */
  79. struct tq_struct send_tq; /* send task queue */
  80. struct tq_struct recv_tq; /* receive task queue */
  81. spinlock_t lock; /* lock for the card */
  82. } tpam_card;
  83. /* Timeout waiting for signature to become available */
  84. #define SIGNATURE_TIMEOUT (5*HZ)
  85. /* Timeout waiting for receiving all the ACreateNCOCnf */
  86. #define NCOCREATE_TIMEOUT (30*HZ)
  87. /* Maximum size of the TLV block */
  88. #define MPB_MAXIMUMBLOCKTLVSIZE  128
  89. /* Maximum size of the data block */
  90. #define MPB_MAXIMUMDATASIZE 4904
  91. /* Maximum size of a phone number */
  92. #define PHONE_MAXIMUMSIZE   32
  93. /* Header for a sk_buff structure */
  94. typedef struct skb_header {
  95. u16 size; /* size of pci_mpb block + size of tlv block */
  96. u16 data_size; /* size of the data block */
  97. u16 ack; /* packet needs to send ack upon send */
  98. u16 ack_size; /* size of data to be acknowledged upon send */
  99. } skb_header;
  100. /* PCI message header structure */
  101. typedef struct pci_mpb {
  102. u16 exID; /* exID - not used */
  103. u16 flags; /* flags - not used */
  104. u32 errorCode; /* errorCode - not used */
  105. u16 messageID; /* message ID - one of ID_XXX */
  106. u16 maximumBlockTLVSize; /* MPB_MAXIMUMBLOCKTLVSIZE */
  107. u16 actualBlockTLVSize; /* size of the tlv block */
  108. u16 maximumDataSize; /* MPB_MAXIMUMDATASIZE */
  109. u16 actualDataSize; /* size of the data block */
  110. u16 dummy; /* padding */
  111. } pci_mpb;
  112. /* Types of PCI messages */
  113. #define ID_ACreateNCOReq 101
  114. #define ID_ACreateNCOCnf 102
  115. #define ID_ADestroyNCOReq 103
  116. #define ID_ADestroyNCOCnf 104
  117. #define ID_CConnectReq 203
  118. #define ID_CConnectInd 204
  119. #define ID_CConnectRsp 205
  120. #define ID_CConnectCnf 206
  121. #define ID_CDisconnectReq 207
  122. #define ID_CDisconnectInd 208
  123. #define ID_CDisconnectRsp 209
  124. #define ID_CDisconnectCnf 210
  125. #define ID_U3DataReq 307
  126. #define ID_U3DataInd 308
  127. #define ID_U3ReadyToReceiveInd 318
  128. /* Parameters for the PCI message TLV block */
  129. #define PAR_BearerCap 3
  130. #define PAR_CalledNumber 7
  131. #define PAR_CallingNumber 11
  132. #define PAR_CauseToPUF 15
  133. #define PAR_Cdirection 16
  134. #define PAR_CompletionStatus 19
  135. #define PAR_Facility 30
  136. #define PAR_HLC 34
  137. #define PAR_NCOID 49
  138. #define PAR_NCOType 50
  139. #define PAR_ReadyFlag 55
  140. #define PAR_U3Protocol 62
  141. #define PAR_Udirection 64
  142. /* Delayed statcallb structure */
  143. typedef struct tpam_statcallb_data {
  144. tpam_card *card; /* card issuing the statcallb */
  145. struct timer_list *timer; /* timer launching the statcallb */
  146. isdn_ctrl ctrl; /* isdn command */
  147. } tpam_statcallb_data;
  148. /* Function prototypes from tpam_main.c */
  149. extern tpam_card *tpam_findcard(int);
  150. extern u32 tpam_findchannel(tpam_card *, u32);
  151. /* Function prototypes from tpam_memory.c */
  152. extern void copy_to_pam_dword(tpam_card *, const void *, u32);
  153. extern void copy_to_pam(tpam_card *, void *, const void *, u32);
  154. extern u32 copy_from_pam_dword(tpam_card *, const void *);
  155. extern void copy_from_pam(tpam_card *, void *, const void *, u32);
  156. extern int copy_from_pam_to_user(tpam_card *, void *, const void *, u32);
  157. extern int copy_from_user_to_pam(tpam_card *, void *, const void *, u32);
  158. extern int tpam_verify_area(u32, u32);
  159. /* Function prototypes from tpam_nco.c */
  160. extern struct sk_buff *build_ACreateNCOReq(const u8 *);
  161. extern struct sk_buff *build_ADestroyNCOReq(u32);
  162. extern struct sk_buff *build_CConnectReq(u32, const u8 *, u8);
  163. extern struct sk_buff *build_CConnectRsp(u32);
  164. extern struct sk_buff *build_CDisconnectReq(u32);
  165. extern struct sk_buff *build_CDisconnectRsp(u32);
  166. extern struct sk_buff *build_U3DataReq(u32, void *, u16, u16, u16);
  167. extern int parse_ACreateNCOCnf(struct sk_buff *, u8 *, u32 *);
  168. extern int parse_ADestroyNCOCnf(struct sk_buff *, u8 *, u32 *);
  169. extern int parse_CConnectCnf(struct sk_buff *, u32 *);
  170. extern int parse_CConnectInd(struct sk_buff *, u32 *, u8 *, u8 *, 
  171.      u8 *, u8 *, u8 *);
  172. extern int parse_CDisconnectCnf(struct sk_buff *, u32 *, u32 *);
  173. extern int parse_CDisconnectInd(struct sk_buff *, u32 *, u32 *);
  174. extern int parse_U3ReadyToReceiveInd(struct sk_buff *, u32 *, u8 *);
  175. extern int parse_U3DataInd(struct sk_buff *, u32 *, u8 **, u16 *);
  176. /* Function prototypes from tpam_queues.c */
  177. extern void tpam_enqueue(tpam_card *, struct sk_buff *);
  178. extern void tpam_enqueue_data(tpam_channel *, struct sk_buff *);
  179. extern void tpam_irq(int, void *, struct pt_regs *);
  180. extern void tpam_recv_tq(tpam_card *);
  181. extern void tpam_send_tq(tpam_card *);
  182. /* Function prototypes from tpam_commands.c */
  183. extern int tpam_command(isdn_ctrl *);
  184. extern int tpam_writebuf_skb(int, int, int, struct sk_buff *);
  185. extern void tpam_recv_ACreateNCOCnf(tpam_card *, struct sk_buff *);
  186. extern void tpam_recv_ADestroyNCOCnf(tpam_card *, struct sk_buff *);
  187. extern void tpam_recv_CConnectCnf(tpam_card *, struct sk_buff *);
  188. extern void tpam_recv_CConnectInd(tpam_card *, struct sk_buff *);
  189. extern void tpam_recv_CDisconnectInd(tpam_card *, struct sk_buff *);
  190. extern void tpam_recv_CDisconnectCnf(tpam_card *, struct sk_buff *);
  191. extern void tpam_recv_U3DataInd(tpam_card *, struct sk_buff *);
  192. extern void tpam_recv_U3ReadyToReceiveInd(tpam_card *, struct sk_buff *);
  193. /* Function prototypes from tpam_hdlc.c */
  194. extern u32 tpam_hdlc_encode(u8 *, u8 *, u32 *, u32);
  195. extern u32 tpam_hdlc_decode(u8 *, u8 *, u32);
  196. /* Function prototypes from tpam_crcpc.c */
  197. extern void init_CRC(void);
  198. extern void hdlc_encode_modem(u8 *, u32, u8 *, u32 *);
  199. extern void hdlc_no_accm_encode(u8 *, u32, u8 *, u32 *);
  200. extern u32 hdlc_no_accm_decode(u8 *, u32);
  201. /* Define this to enable debug tracing prints */
  202. #undef DEBUG
  203. #ifdef DEBUG
  204. #define dprintk printk
  205. #else
  206. #define dprintk while(0) printk
  207. #endif
  208. #endif /* _TPAM_H_ */