synclink.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * SyncLink Multiprotocol Serial Adapter Driver
  3.  *
  4.  * $Id: synclink.h,v 3.6 2002/02/20 21:58:20 paulkf Exp $
  5.  *
  6.  * Copyright (C) 1998-2000 by Microgate Corporation
  7.  *
  8.  * Redistribution of this file is permitted under
  9.  * the terms of the GNU Public License (GPL)
  10.  */
  11. #ifndef _SYNCLINK_H_
  12. #define _SYNCLINK_H_
  13. #define SYNCLINK_H_VERSION 3.6
  14. #define BOOLEAN int
  15. #define TRUE 1
  16. #define FALSE 0
  17. #define BIT0 0x0001
  18. #define BIT1 0x0002
  19. #define BIT2 0x0004
  20. #define BIT3 0x0008
  21. #define BIT4 0x0010
  22. #define BIT5 0x0020
  23. #define BIT6 0x0040
  24. #define BIT7 0x0080
  25. #define BIT8 0x0100
  26. #define BIT9 0x0200
  27. #define BIT10 0x0400
  28. #define BIT11 0x0800
  29. #define BIT12 0x1000
  30. #define BIT13 0x2000
  31. #define BIT14 0x4000
  32. #define BIT15 0x8000
  33. #define BIT16 0x00010000
  34. #define BIT17 0x00020000
  35. #define BIT18 0x00040000
  36. #define BIT19 0x00080000
  37. #define BIT20 0x00100000
  38. #define BIT21 0x00200000
  39. #define BIT22 0x00400000
  40. #define BIT23 0x00800000
  41. #define BIT24 0x01000000
  42. #define BIT25 0x02000000
  43. #define BIT26 0x04000000
  44. #define BIT27 0x08000000
  45. #define BIT28 0x10000000
  46. #define BIT29 0x20000000
  47. #define BIT30 0x40000000
  48. #define BIT31 0x80000000
  49. #define HDLC_MAX_FRAME_SIZE 65535
  50. #define MAX_ASYNC_TRANSMIT 4096
  51. #define MAX_ASYNC_BUFFER_SIZE 4096
  52. #define ASYNC_PARITY_NONE 0
  53. #define ASYNC_PARITY_EVEN 1
  54. #define ASYNC_PARITY_ODD 2
  55. #define ASYNC_PARITY_SPACE 3
  56. #define HDLC_FLAG_UNDERRUN_ABORT7 0x0000
  57. #define HDLC_FLAG_UNDERRUN_ABORT15 0x0001
  58. #define HDLC_FLAG_UNDERRUN_FLAG 0x0002
  59. #define HDLC_FLAG_UNDERRUN_CRC 0x0004
  60. #define HDLC_FLAG_SHARE_ZERO 0x0010
  61. #define HDLC_FLAG_AUTO_CTS 0x0020
  62. #define HDLC_FLAG_AUTO_DCD 0x0040
  63. #define HDLC_FLAG_AUTO_RTS 0x0080
  64. #define HDLC_FLAG_RXC_DPLL 0x0100
  65. #define HDLC_FLAG_RXC_BRG 0x0200
  66. #define HDLC_FLAG_RXC_TXCPIN 0x8000
  67. #define HDLC_FLAG_RXC_RXCPIN 0x0000
  68. #define HDLC_FLAG_TXC_DPLL 0x0400
  69. #define HDLC_FLAG_TXC_BRG 0x0800
  70. #define HDLC_FLAG_TXC_TXCPIN 0x0000
  71. #define HDLC_FLAG_TXC_RXCPIN 0x0008
  72. #define HDLC_FLAG_DPLL_DIV8 0x1000
  73. #define HDLC_FLAG_DPLL_DIV16 0x2000
  74. #define HDLC_FLAG_DPLL_DIV32 0x0000
  75. #define HDLC_FLAG_HDLC_LOOPMODE 0x4000
  76. #define HDLC_CRC_NONE 0
  77. #define HDLC_CRC_16_CCITT 1
  78. #define HDLC_CRC_32_CCITT 2
  79. #define HDLC_CRC_MASK 0x00ff
  80. #define HDLC_CRC_RETURN_EX 0x8000
  81. #define RX_OK 0
  82. #define RX_CRC_ERROR 1
  83. #define HDLC_TXIDLE_FLAGS 0
  84. #define HDLC_TXIDLE_ALT_ZEROS_ONES 1
  85. #define HDLC_TXIDLE_ZEROS 2
  86. #define HDLC_TXIDLE_ONES 3
  87. #define HDLC_TXIDLE_ALT_MARK_SPACE 4
  88. #define HDLC_TXIDLE_SPACE 5
  89. #define HDLC_TXIDLE_MARK 6
  90. #define HDLC_ENCODING_NRZ 0
  91. #define HDLC_ENCODING_NRZB 1
  92. #define HDLC_ENCODING_NRZI_MARK 2
  93. #define HDLC_ENCODING_NRZI_SPACE 3
  94. #define HDLC_ENCODING_NRZI HDLC_ENCODING_NRZI_SPACE
  95. #define HDLC_ENCODING_BIPHASE_MARK 4
  96. #define HDLC_ENCODING_BIPHASE_SPACE 5
  97. #define HDLC_ENCODING_BIPHASE_LEVEL 6
  98. #define HDLC_ENCODING_DIFF_BIPHASE_LEVEL 7
  99. #define HDLC_PREAMBLE_LENGTH_8BITS 0
  100. #define HDLC_PREAMBLE_LENGTH_16BITS 1
  101. #define HDLC_PREAMBLE_LENGTH_32BITS 2
  102. #define HDLC_PREAMBLE_LENGTH_64BITS 3
  103. #define HDLC_PREAMBLE_PATTERN_NONE 0
  104. #define HDLC_PREAMBLE_PATTERN_ZEROS 1
  105. #define HDLC_PREAMBLE_PATTERN_FLAGS 2
  106. #define HDLC_PREAMBLE_PATTERN_10 3
  107. #define HDLC_PREAMBLE_PATTERN_01 4
  108. #define HDLC_PREAMBLE_PATTERN_ONES 5
  109. #define MGSL_MODE_ASYNC 1
  110. #define MGSL_MODE_HDLC 2
  111. #define MGSL_MODE_RAW 6
  112. #define MGSL_BUS_TYPE_ISA 1
  113. #define MGSL_BUS_TYPE_EISA 2
  114. #define MGSL_BUS_TYPE_PCI 5
  115. #define MGSL_INTERFACE_DISABLE  0
  116. #define MGSL_INTERFACE_RS232    1
  117. #define MGSL_INTERFACE_V35      2
  118. #define MGSL_INTERFACE_RS422    3
  119. typedef struct _MGSL_PARAMS
  120. {
  121. /* Common */
  122. unsigned long mode; /* Asynchronous or HDLC */
  123. unsigned char loopback; /* internal loopback mode */
  124. /* HDLC Only */
  125. unsigned short flags;
  126. unsigned char encoding; /* NRZ, NRZI, etc. */
  127. unsigned long clock_speed; /* external clock speed in bits per second */
  128. unsigned char addr_filter; /* receive HDLC address filter, 0xFF = disable */
  129. unsigned short crc_type; /* None, CRC16-CCITT, or CRC32-CCITT */
  130. unsigned char preamble_length;
  131. unsigned char preamble;
  132. /* Async Only */
  133. unsigned long data_rate; /* bits per second */
  134. unsigned char data_bits; /* 7 or 8 data bits */
  135. unsigned char stop_bits; /* 1 or 2 stop bits */
  136. unsigned char parity; /* none, even, or odd */
  137. } MGSL_PARAMS, *PMGSL_PARAMS;
  138. #define MICROGATE_VENDOR_ID 0x13c0
  139. #define SYNCLINK_DEVICE_ID 0x0010
  140. #define MGSCC_DEVICE_ID 0x0020
  141. #define SYNCLINK_SCA_DEVICE_ID 0x0030
  142. #define MGSL_MAX_SERIAL_NUMBER 30
  143. /*
  144. ** device diagnostics status
  145. */
  146. #define DiagStatus_OK 0
  147. #define DiagStatus_AddressFailure 1
  148. #define DiagStatus_AddressConflict 2
  149. #define DiagStatus_IrqFailure 3
  150. #define DiagStatus_IrqConflict 4
  151. #define DiagStatus_DmaFailure 5
  152. #define DiagStatus_DmaConflict 6
  153. #define DiagStatus_PciAdapterNotFound 7
  154. #define DiagStatus_CantAssignPciResources 8
  155. #define DiagStatus_CantAssignPciMemAddr 9
  156. #define DiagStatus_CantAssignPciIoAddr 10
  157. #define DiagStatus_CantAssignPciIrq 11
  158. #define DiagStatus_MemoryError 12
  159. #define SerialSignal_DCD            0x01     /* Data Carrier Detect */
  160. #define SerialSignal_TXD            0x02     /* Transmit Data */
  161. #define SerialSignal_RI             0x04     /* Ring Indicator */
  162. #define SerialSignal_RXD            0x08     /* Receive Data */
  163. #define SerialSignal_CTS            0x10     /* Clear to Send */
  164. #define SerialSignal_RTS            0x20     /* Request to Send */
  165. #define SerialSignal_DSR            0x40     /* Data Set Ready */
  166. #define SerialSignal_DTR            0x80     /* Data Terminal Ready */
  167. /*
  168.  * Counters of the input lines (CTS, DSR, RI, CD) interrupts
  169.  */
  170. struct mgsl_icount {
  171. __u32 cts, dsr, rng, dcd, tx, rx;
  172. __u32 frame, parity, overrun, brk;
  173. __u32 buf_overrun;
  174. __u32 txok;
  175. __u32 txunder;
  176. __u32 txabort;
  177. __u32 txtimeout;
  178. __u32 rxshort;
  179. __u32 rxlong;
  180. __u32 rxabort;
  181. __u32 rxover;
  182. __u32 rxcrc;
  183. __u32 rxok;
  184. __u32 exithunt;
  185. __u32 rxidle;
  186. };
  187. #define DEBUG_LEVEL_DATA 1
  188. #define DEBUG_LEVEL_ERROR  2
  189. #define DEBUG_LEVEL_INFO   3
  190. #define DEBUG_LEVEL_BH     4
  191. #define DEBUG_LEVEL_ISR 5
  192. /*
  193. ** Event bit flags for use with MgslWaitEvent
  194. */
  195. #define MgslEvent_DsrActive 0x0001
  196. #define MgslEvent_DsrInactive 0x0002
  197. #define MgslEvent_Dsr 0x0003
  198. #define MgslEvent_CtsActive 0x0004
  199. #define MgslEvent_CtsInactive 0x0008
  200. #define MgslEvent_Cts 0x000c
  201. #define MgslEvent_DcdActive 0x0010
  202. #define MgslEvent_DcdInactive 0x0020
  203. #define MgslEvent_Dcd 0x0030
  204. #define MgslEvent_RiActive 0x0040
  205. #define MgslEvent_RiInactive 0x0080
  206. #define MgslEvent_Ri 0x00c0
  207. #define MgslEvent_ExitHuntMode 0x0100
  208. #define MgslEvent_IdleReceived 0x0200
  209. /* Private IOCTL codes:
  210.  *
  211.  * MGSL_IOCSPARAMS set MGSL_PARAMS structure values
  212.  * MGSL_IOCGPARAMS get current MGSL_PARAMS structure values
  213.  * MGSL_IOCSTXIDLE set current transmit idle mode
  214.  * MGSL_IOCGTXIDLE get current transmit idle mode
  215.  * MGSL_IOCTXENABLE enable or disable transmitter
  216.  * MGSL_IOCRXENABLE enable or disable receiver
  217.  * MGSL_IOCTXABORT abort transmitting frame (HDLC)
  218.  * MGSL_IOCGSTATS return current statistics
  219.  * MGSL_IOCWAITEVENT wait for specified event to occur
  220.  * MGSL_LOOPTXDONE transmit in HDLC LoopMode done
  221.  * MGSL_IOCSIF          set the serial interface type
  222.  * MGSL_IOCGIF          get the serial interface type
  223.  */
  224. #define MGSL_MAGIC_IOC 'm'
  225. #define MGSL_IOCSPARAMS _IOW(MGSL_MAGIC_IOC,0,struct _MGSL_PARAMS)
  226. #define MGSL_IOCGPARAMS _IOR(MGSL_MAGIC_IOC,1,struct _MGSL_PARAMS)
  227. #define MGSL_IOCSTXIDLE _IO(MGSL_MAGIC_IOC,2)
  228. #define MGSL_IOCGTXIDLE _IO(MGSL_MAGIC_IOC,3)
  229. #define MGSL_IOCTXENABLE _IO(MGSL_MAGIC_IOC,4)
  230. #define MGSL_IOCRXENABLE _IO(MGSL_MAGIC_IOC,5)
  231. #define MGSL_IOCTXABORT _IO(MGSL_MAGIC_IOC,6)
  232. #define MGSL_IOCGSTATS _IO(MGSL_MAGIC_IOC,7)
  233. #define MGSL_IOCWAITEVENT _IOWR(MGSL_MAGIC_IOC,8,int)
  234. #define MGSL_IOCCLRMODCOUNT _IO(MGSL_MAGIC_IOC,15)
  235. #define MGSL_IOCLOOPTXDONE _IO(MGSL_MAGIC_IOC,9)
  236. #define MGSL_IOCSIF _IO(MGSL_MAGIC_IOC,10)
  237. #define MGSL_IOCGIF _IO(MGSL_MAGIC_IOC,11)
  238. #endif /* _SYNCLINK_H_ */