cirrus.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /****************************************************************************
  2. ******* *******
  3. ******* CIRRUS.H *******
  4. ******* *******
  5. ****************************************************************************
  6. Author : Jeremy Rolls
  7. Date : 3 Aug 1990
  8. *
  9. * (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. Version : 0.01
  25. Mods
  26. ----------------------------------------------------------------------------
  27. Date By Description
  28. ----------------------------------------------------------------------------
  29. ***************************************************************************/
  30. #ifndef _cirrus_h
  31. #ifndef lint
  32. /* static char* _cirrus_h_sccs = "@(#)cirrus.h 1.16"; */
  33. #endif
  34. #define _cirrus_h 1
  35. /* Bit fields for particular registers */
  36. /* GCR */
  37. #define GCR_SERIAL 0x00 /* Configure as serial channel */
  38. #define GCR_PARALLEL 0x80 /* Configure as parallel channel */
  39. /* RDSR - when status read from FIFO */
  40. #define RDSR_BREAK 0x08 /* Break received */
  41. #define RDSR_TIMEOUT 0x80 /* No new data timeout */
  42. #define RDSR_SC1 0x10 /* Special char 1 (tx XON) matched */
  43. #define RDSR_SC2 0x20 /* Special char 2 (tx XOFF) matched */
  44. #define RDSR_SC12_MASK 0x30 /* Mask for special chars 1 and 2 */
  45. /* PPR */
  46. #define PPR_DEFAULT 0x31 /* Default value - for a 25Mhz clock gives
  47. a timeout period of 1ms */
  48. /* LIVR */
  49. #define LIVR_EXCEPTION 0x07 /* Receive exception interrupt */
  50. /* CCR */
  51. #define CCR_RESET 0x80 /* Reset channel */
  52. #define CCR_CHANGE 0x4e /* COR's have changed - NB always change all
  53. COR's */
  54. #define CCR_WFLUSH 0x82 /* Flush transmit FIFO and TSR / THR */
  55. #define CCR_SENDSC1 0x21 /* Send special character one */
  56. #define CCR_SENDSC2 0x22 /* Send special character two */
  57. #define CCR_SENDSC3 0x23 /* Send special character three */
  58. #define CCR_SENDSC4 0x24 /* Send special character four */
  59. #define CCR_TENABLE 0x18 /* Enable transmitter */
  60. #define CCR_TDISABLE 0x14 /* Disable transmitter */
  61. #define CCR_RENABLE 0x12 /* Enable receiver */
  62. #define CCR_RDISABLE 0x11 /* Disable receiver */
  63. #define CCR_READY 0x00 /* CCR is ready for another command */
  64. /* CCSR */
  65. #define CCSR_TXENABLE 0x08 /* Transmitter enable */
  66. #define CCSR_RXENABLE 0x80 /* Receiver enable */
  67. #define CCSR_TXFLOWOFF 0x04 /* Transmit flow off */
  68. #define CCSR_TXFLOWON 0x02 /* Transmit flow on */
  69. /* SVRR */
  70. #define SVRR_RECEIVE 0x01 /* Receive interrupt pending */
  71. #define SVRR_TRANSMIT 0x02 /* Transmit interrupt pending */
  72. #define SVRR_MODEM 0x04 /* Modem interrupt pending */
  73. /* CAR */
  74. #define CAR_PORTS 0x03 /* Bit fields for ports */
  75. /* IER */
  76. #define IER_MODEM 0x80 /* Change in modem status */
  77. #define IER_RECEIVE 0x10 /* Good data / data exception */
  78. #define IER_TRANSMITR 0x04 /* Transmit ready (FIFO empty) */
  79. #define IER_TRANSMITE 0x02 /* Transmit empty */
  80. #define IER_TIMEOUT 0x01 /* Timeout on no data */
  81. #define IER_DEFAULT 0x94 /* Default values */
  82. #define IER_PARALLEL 0x84 /* Default for Parallel */
  83. #define IER_EMPTY 0x92 /* Transmitter empty rather than ready */
  84. /* COR1 - Driver only */
  85. #define COR1_INPCK 0x10 /* Check parity of received characters */
  86. /* COR1 - driver and RTA */
  87. #define COR1_ODD 0x80 /* Odd parity */
  88. #define COR1_EVEN 0x00 /* Even parity */
  89. #define COR1_NOP 0x00 /* No parity */
  90. #define COR1_FORCE 0x20 /* Force parity */
  91. #define COR1_NORMAL 0x40 /* With parity */
  92. #define COR1_1STOP 0x00 /* 1 stop bit */
  93. #define COR1_15STOP 0x04 /* 1.5 stop bits */
  94. #define COR1_2STOP 0x08 /* 2 stop bits */
  95. #define COR1_5BITS 0x00 /* 5 data bits */
  96. #define COR1_6BITS 0x01 /* 6 data bits */
  97. #define COR1_7BITS 0x02 /* 7 data bits */
  98. #define COR1_8BITS 0x03 /* 8 data bits */
  99. #define COR1_HOST 0xef /* Safe host bits */
  100. /* RTA only */
  101. #define COR1_CINPCK 0x00 /* Check parity of received characters */
  102. #define COR1_CNINPCK 0x10 /* Don't check parity */
  103. /* COR2 bits for both RTA and driver use */
  104. #define COR2_IXANY 0x80 /* IXANY - any character is XON */
  105. #define COR2_IXON 0x40 /* IXON - enable tx soft flowcontrol */
  106. #define COR2_RTSFLOW 0x02 /* Enable tx hardware flow control */
  107. /* Additional driver bits */
  108. #define COR2_HUPCL 0x20 /* Hang up on close */
  109. #define COR2_CTSFLOW 0x04 /* Enable rx hardware flow control */
  110. #define COR2_IXOFF 0x01 /* Enable rx software flow control */
  111. #define COR2_DTRFLOW 0x08 /* Enable tx hardware flow control */
  112. /* RTA use only */
  113. #define COR2_ETC 0x20 /* Embedded transmit options */
  114. #define COR2_LOCAL 0x10 /* Local loopback mode */
  115. #define COR2_REMOTE 0x08 /* Remote loopback mode */
  116. #define COR2_HOST 0xc2 /* Safe host bits */
  117. /* COR3 - RTA use only */
  118. #define COR3_SCDRNG 0x80 /* Enable special char detect for range */
  119. #define COR3_SCD34 0x40 /* Special character detect for SCHR's 3 + 4 */
  120. #define COR3_FCT 0x20 /* Flow control transparency */
  121. #define COR3_SCD12 0x10 /* Special character detect for SCHR's 1 + 2 */
  122. #define COR3_FIFO12 0x0c /* 12 chars for receive FIFO threshold */
  123. #define COR3_FIFO10 0x0a /* 10 chars for receive FIFO threshold */
  124. #define COR3_FIFO8 0x08 /* 8 chars for receive FIFO threshold */
  125. #define COR3_FIFO6 0x06 /* 6 chars for receive FIFO threshold */
  126. #define COR3_THRESHOLD COR3_FIFO8 /* MUST BE LESS THAN MCOR_THRESHOLD */
  127. #define COR3_DEFAULT (COR3_FCT | COR3_THRESHOLD)
  128. /* Default bits for COR3 */
  129. /* COR4 driver and RTA use */
  130. #define COR4_IGNCR 0x80 /* Throw away CR's on input */
  131. #define COR4_ICRNL 0x40 /* Map CR -> NL on input */
  132. #define COR4_INLCR 0x20 /* Map NL -> CR on input */
  133. #define COR4_IGNBRK 0x10 /* Ignore Break */
  134. #define COR4_NBRKINT 0x08 /* No interrupt on break (-BRKINT) */
  135. #define COR4_RAISEMOD 0x01 /* Raise modem output lines on non-zero baud */
  136. /* COR4 driver only */
  137. #define COR4_IGNPAR 0x04 /* IGNPAR (ignore characters with errors) */
  138. #define COR4_PARMRK 0x02 /* PARMRK */
  139. #define COR4_HOST 0xf8 /* Safe host bits */
  140. /* COR4 RTA only */
  141. #define COR4_CIGNPAR 0x02 /* Thrown away bad characters */
  142. #define COR4_CPARMRK 0x04 /* PARMRK characters */
  143. #define COR4_CNPARMRK 0x03 /* Don't PARMRK */
  144. /* COR5 driver and RTA use */
  145. #define COR5_ISTRIP 0x80 /* Strip input chars to 7 bits */
  146. #define COR5_LNE 0x40 /* Enable LNEXT processing */
  147. #define COR5_CMOE 0x20 /* Match good and errored characters */
  148. #define COR5_ONLCR 0x02 /* NL -> CR NL on output */
  149. #define COR5_OCRNL 0x01 /* CR -> NL on output */
  150. /*
  151. ** Spare bits - these are not used in the CIRRUS registers, so we use
  152. ** them to set various other features.
  153. */
  154. /*
  155. ** tstop and tbusy indication
  156. */
  157. #define COR5_TSTATE_ON 0x08 /* Turn on monitoring of tbusy and tstop */
  158. #define COR5_TSTATE_OFF 0x04 /* Turn off monitoring of tbusy and tstop */
  159. /*
  160. ** TAB3
  161. */
  162. #define COR5_TAB3 0x10 /* TAB3 mode */
  163. #define COR5_HOST 0xc3 /* Safe host bits */
  164. /* CCSR */
  165. #define CCSR_TXFLOFF 0x04 /* Tx is xoffed */
  166. /* MSVR1 */
  167. /* NB. DTR / CD swapped from Cirrus spec as the pins are also reversed on the
  168. RTA. This is because otherwise DCD would get lost on the 1 parallel / 3
  169. serial option.
  170. */
  171. #define MSVR1_CD 0x80 /* CD (DSR on Cirrus) */
  172. #define MSVR1_RTS 0x40 /* RTS (CTS on Cirrus) */
  173. #define MSVR1_RI 0x20 /* RI */
  174. #define MSVR1_DTR 0x10 /* DTR (CD on Cirrus) */
  175. #define MSVR1_CTS 0x01 /* CTS output pin (RTS on Cirrus) */
  176. /* Next two used to indicate state of tbusy and tstop to driver */
  177. #define MSVR1_TSTOP 0x08 /* Set if port flow controlled */
  178. #define MSVR1_TEMPTY 0x04 /* Set if port tx buffer empty */
  179. #define MSVR1_HOST 0xf3 /* The bits the host wants */
  180. /* MSVR2 */
  181. #define MSVR2_DSR 0x02 /* DSR output pin (DTR on Cirrus) */
  182. /* MCOR */
  183. #define MCOR_CD 0x80 /* CD (DSR on Cirrus) */
  184. #define MCOR_RTS 0x40 /* RTS (CTS on Cirrus) */
  185. #define MCOR_RI 0x20 /* RI */
  186. #define MCOR_DTR 0x10 /* DTR (CD on Cirrus) */
  187. #define MCOR_DEFAULT (MCOR_CD | MCOR_RTS | MCOR_RI | MCOR_DTR)
  188. #define MCOR_FULLMODEM MCOR_DEFAULT
  189. #define MCOR_RJ45 (MCOR_CD | MCOR_RTS | MCOR_DTR)
  190. #define MCOR_RESTRICTED (MCOR_CD | MCOR_RTS)
  191. /* More MCOR - H/W Handshake (flowcontrol) stuff */
  192. #define MCOR_THRESH8 0x08 /* eight characters then we stop */
  193. #define MCOR_THRESH9 0x09 /* nine characters then we stop */
  194. #define MCOR_THRESH10 0x0A /* ten characters then we stop */
  195. #define MCOR_THRESH11 0x0B /* eleven characters then we stop */
  196. #define MCOR_THRESHBITS 0x0F /* mask for ANDing out the above */
  197. #define MCOR_THRESHOLD MCOR_THRESH9 /* MUST BE GREATER THAN COR3_THRESHOLD */
  198. /* RTPR */
  199. #define RTPR_DEFAULT 0x02 /* Default */
  200. /* Defines for the subscripts of a CONFIG packet */
  201. #define CONFIG_COR1 1 /* Option register 1 */
  202. #define CONFIG_COR2 2 /* Option register 2 */
  203. #define CONFIG_COR4 3 /* Option register 4 */
  204. #define CONFIG_COR5 4 /* Option register 5 */
  205. #define CONFIG_TXXON 5 /* Tx XON character */
  206. #define CONFIG_TXXOFF 6 /* Tx XOFF character */
  207. #define CONFIG_RXXON 7 /* Rx XON character */
  208. #define CONFIG_RXXOFF 8 /* Rx XOFF character */
  209. #define CONFIG_LNEXT 9 /* LNEXT character */
  210. #define CONFIG_TXBAUD 10 /* Tx baud rate */
  211. #define CONFIG_RXBAUD 11 /* Rx baud rate */
  212. /* Port status stuff */
  213. #define IDLE_CLOSED 0 /* Closed */
  214. #define IDLE_OPEN 1 /* Idle open */
  215. #define IDLE_BREAK 2 /* Idle on break */
  216. /* Subscript of MODEM STATUS packet */
  217. #define MODEM_VALUE 3 /* Current values of handshake pins */
  218. /* Subscript of SBREAK packet */
  219. #define BREAK_LENGTH 1 /* Length of a break in slices of 0.01 seconds
  220. 0 = stay on break until an EBREAK command
  221. is sent */
  222. #define PRE_EMPTIVE 0x80 /* Pre-emptive bit in command field */
  223. /* Packet types going from Host to remote - with the exception of OPEN, MOPEN,
  224. CONFIG, SBREAK and MEMDUMP the remaining bytes of the data array will not
  225. be used
  226. */
  227. #define OPEN 0x00 /* Open a port */
  228. #define CONFIG 0x01 /* Configure a port */
  229. #define MOPEN 0x02 /* Modem open (block for DCD) */
  230. #define CLOSE 0x03 /* Close a port */
  231. #define WFLUSH (0x04 | PRE_EMPTIVE) /* Write flush */
  232. #define RFLUSH (0x05 | PRE_EMPTIVE) /* Read flush */
  233. #define RESUME (0x06 | PRE_EMPTIVE) /* Resume if xoffed */
  234. #define SBREAK 0x07 /* Start break */
  235. #define EBREAK 0x08 /* End break */
  236. #define SUSPEND (0x09 | PRE_EMPTIVE) /* Susp op (behave as tho xoffed) */
  237. #define FCLOSE (0x0a | PRE_EMPTIVE) /* Force close */
  238. #define XPRINT 0x0b /* Xprint packet */
  239. #define MBIS (0x0c | PRE_EMPTIVE) /* Set modem lines */
  240. #define MBIC (0x0d | PRE_EMPTIVE) /* Clear modem lines */
  241. #define MSET (0x0e | PRE_EMPTIVE) /* Set modem lines */
  242. #define PCLOSE 0x0f /* Pseudo close - Leaves rx/tx enabled */
  243. #define MGET (0x10 | PRE_EMPTIVE) /* Force update of modem status */
  244. #define MEMDUMP (0x11 | PRE_EMPTIVE) /* Send back mem from addr supplied */
  245. #define READ_REGISTER (0x12 | PRE_EMPTIVE) /* Read CD1400 register (debug) */
  246. /* "Command" packets going from remote to host COMPLETE and MODEM_STATUS
  247. use data[4] / data[3] to indicate current state and modem status respectively
  248. */
  249. #define COMPLETE (0x20 | PRE_EMPTIVE)
  250. /* Command complete */
  251. #define BREAK_RECEIVED (0x21 | PRE_EMPTIVE)
  252. /* Break received */
  253. #define MODEM_STATUS (0x22 | PRE_EMPTIVE)
  254. /* Change in modem status */
  255. /* "Command" packet that could go either way - handshake wake-up */
  256. #define HANDSHAKE (0x23 | PRE_EMPTIVE)
  257. /* Wake-up to HOST / RTA */
  258. #endif