synclink.h 8.8 KB

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