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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      linux/drivers/char/cd1865.h -- Definitions relating to the CD1865
  3.  *                          for the Specialix IO8+ multiport serial driver.
  4.  *
  5.  *      Copyright (C) 1997 Roger Wolff (R.E.Wolff@BitWizard.nl)
  6.  *      Copyright (C) 1994-1996  Dmitry Gorodchanin (pgmdsg@ibi.com)
  7.  *
  8.  *      Specialix pays for the development and support of this driver.
  9.  *      Please DO contact io8-linux@specialix.co.uk if you require
  10.  *      support.
  11.  *
  12.  *      This driver was developped in the BitWizard linux device
  13.  *      driver service. If you require a linux device driver for your
  14.  *      product, please contact devices@BitWizard.nl for a quote.
  15.  *
  16.  */
  17. /*
  18.  * Definitions for Driving CD180/CD1864/CD1865 based eightport serial cards.
  19.  */
  20. /* Values of choice for Interrupt ACKs */
  21. /* These values are "obligatory" if you use the register based
  22.  * interrupt acknowledgements. See page 99-101 of V2.0 of the CD1865
  23.  * databook */
  24. #define SX_ACK_MINT     0x75    /* goes to PILR1                           */
  25. #define SX_ACK_TINT     0x76    /* goes to PILR2                           */
  26. #define SX_ACK_RINT     0x77    /* goes to PILR3                           */
  27. /* Chip ID (is used when chips ar daisy chained.) */
  28. #define SX_ID           0x10
  29. /* Definitions for Cirrus Logic CL-CD186x 8-port async mux chip */
  30.  
  31. #define CD186x_NCH       8       /* Total number of channels                */
  32. #define CD186x_TPC       16      /* Ticks per character                     */
  33. #define CD186x_NFIFO  8  /* TX FIFO size                            */
  34. /* Global registers */
  35. #define CD186x_GIVR      0x40    /* Global Interrupt Vector Register        */
  36. #define CD186x_GICR      0x41    /* Global Interrupting Channel Register    */
  37. #define CD186x_PILR1     0x61    /* Priority Interrupt Level Register 1     */
  38. #define CD186x_PILR2     0x62    /* Priority Interrupt Level Register 2     */
  39. #define CD186x_PILR3     0x63    /* Priority Interrupt Level Register 3     */
  40. #define CD186x_CAR       0x64    /* Channel Access Register                 */
  41. #define CD186x_SRSR      0x65    /* Channel Access Register                 */
  42. #define CD186x_GFRCR     0x6b    /* Global Firmware Revision Code Register  */
  43. #define CD186x_PPRH      0x70    /* Prescaler Period Register High          */
  44. #define CD186x_PPRL      0x71    /* Prescaler Period Register Low           */
  45. #define CD186x_RDR       0x78    /* Receiver Data Register                  */
  46. #define CD186x_RCSR      0x7a    /* Receiver Character Status Register      */
  47. #define CD186x_TDR       0x7b    /* Transmit Data Register                  */
  48. #define CD186x_EOIR      0x7f    /* End of Interrupt Register               */
  49. #define CD186x_MRAR      0x75    /* Modem Request Acknowlege register       */
  50. #define CD186x_TRAR      0x76    /* Transmit Request Acknowlege register    */
  51. #define CD186x_RRAR      0x77    /* Receive Request Acknowlege register     */
  52. #define CD186x_SRCR      0x66    /* Service Request Configuration register  */
  53. /* Channel Registers */
  54. #define CD186x_CCR       0x01    /* Channel Command Register                */
  55. #define CD186x_IER       0x02    /* Interrupt Enable Register               */
  56. #define CD186x_COR1      0x03    /* Channel Option Register 1               */
  57. #define CD186x_COR2      0x04    /* Channel Option Register 2               */
  58. #define CD186x_COR3      0x05    /* Channel Option Register 3               */
  59. #define CD186x_CCSR      0x06    /* Channel Control Status Register         */
  60. #define CD186x_RDCR      0x07    /* Receive Data Count Register             */
  61. #define CD186x_SCHR1     0x09    /* Special Character Register 1            */
  62. #define CD186x_SCHR2     0x0a    /* Special Character Register 2            */
  63. #define CD186x_SCHR3     0x0b    /* Special Character Register 3            */
  64. #define CD186x_SCHR4     0x0c    /* Special Character Register 4            */
  65. #define CD186x_MCOR1     0x10    /* Modem Change Option 1 Register          */
  66. #define CD186x_MCOR2     0x11    /* Modem Change Option 2 Register          */
  67. #define CD186x_MCR       0x12    /* Modem Change Register                   */
  68. #define CD186x_RTPR      0x18    /* Receive Timeout Period Register         */
  69. #define CD186x_MSVR      0x28    /* Modem Signal Value Register             */
  70. #define CD186x_MSVRTS    0x29    /* Modem Signal Value Register             */
  71. #define CD186x_MSVDTR    0x2a    /* Modem Signal Value Register             */
  72. #define CD186x_RBPRH     0x31    /* Receive Baud Rate Period Register High  */
  73. #define CD186x_RBPRL     0x32    /* Receive Baud Rate Period Register Low   */
  74. #define CD186x_TBPRH     0x39    /* Transmit Baud Rate Period Register High */
  75. #define CD186x_TBPRL     0x3a    /* Transmit Baud Rate Period Register Low  */
  76. /* Global Interrupt Vector Register (R/W) */
  77. #define GIVR_ITMASK     0x07     /* Interrupt type mask                     */
  78. #define  GIVR_IT_MODEM   0x01    /* Modem Signal Change Interrupt           */
  79. #define  GIVR_IT_TX      0x02    /* Transmit Data Interrupt                 */
  80. #define  GIVR_IT_RCV     0x03    /* Receive Good Data Interrupt             */
  81. #define  GIVR_IT_REXC    0x07    /* Receive Exception Interrupt             */
  82. /* Global Interrupt Channel Register (R/W) */
  83.  
  84. #define GICR_CHAN       0x1c    /* Channel Number Mask                     */
  85. #define GICR_CHAN_OFF   2       /* Channel Number shift                    */
  86. /* Channel Address Register (R/W) */
  87. #define CAR_CHAN        0x07    /* Channel Number Mask                     */
  88. #define CAR_A7          0x08    /* A7 Address Extension (unused)           */
  89. /* Receive Character Status Register (R/O) */
  90. #define RCSR_TOUT       0x80    /* Rx Timeout                              */
  91. #define RCSR_SCDET      0x70    /* Special Character Detected Mask         */
  92. #define  RCSR_NO_SC      0x00   /* No Special Characters Detected          */
  93. #define  RCSR_SC_1       0x10   /* Special Char 1 (or 1 & 3) Detected      */
  94. #define  RCSR_SC_2       0x20   /* Special Char 2 (or 2 & 4) Detected      */
  95. #define  RCSR_SC_3       0x30   /* Special Char 3 Detected                 */
  96. #define  RCSR_SC_4       0x40   /* Special Char 4 Detected                 */
  97. #define RCSR_BREAK      0x08    /* Break has been detected                 */
  98. #define RCSR_PE         0x04    /* Parity Error                            */
  99. #define RCSR_FE         0x02    /* Frame Error                             */
  100. #define RCSR_OE         0x01    /* Overrun Error                           */
  101. /* Channel Command Register (R/W) (commands in groups can be OR-ed) */
  102. #define CCR_HARDRESET   0x81    /* Reset the chip                          */
  103. #define CCR_SOFTRESET   0x80    /* Soft Channel Reset                      */
  104. #define CCR_CORCHG1     0x42    /* Channel Option Register 1 Changed       */
  105. #define CCR_CORCHG2     0x44    /* Channel Option Register 2 Changed       */
  106. #define CCR_CORCHG3     0x48    /* Channel Option Register 3 Changed       */
  107. #define CCR_SSCH1       0x21    /* Send Special Character 1                */
  108. #define CCR_SSCH2       0x22    /* Send Special Character 2                */
  109. #define CCR_SSCH3       0x23    /* Send Special Character 3                */
  110. #define CCR_SSCH4       0x24    /* Send Special Character 4                */
  111. #define CCR_TXEN        0x18    /* Enable Transmitter                      */
  112. #define CCR_RXEN        0x12    /* Enable Receiver                         */
  113. #define CCR_TXDIS       0x14    /* Disable Transmitter                     */
  114. #define CCR_RXDIS       0x11    /* Disable Receiver                        */
  115. /* Interrupt Enable Register (R/W) */
  116. #define IER_DSR         0x80    /* Enable interrupt on DSR change          */
  117. #define IER_CD          0x40    /* Enable interrupt on CD change           */
  118. #define IER_CTS         0x20    /* Enable interrupt on CTS change          */
  119. #define IER_RXD         0x10    /* Enable interrupt on Receive Data        */
  120. #define IER_RXSC        0x08    /* Enable interrupt on Receive Spec. Char  */
  121. #define IER_TXRDY       0x04    /* Enable interrupt on TX FIFO empty       */
  122. #define IER_TXEMPTY     0x02    /* Enable interrupt on TX completely empty */
  123. #define IER_RET         0x01    /* Enable interrupt on RX Exc. Timeout     */
  124. /* Channel Option Register 1 (R/W) */
  125. #define COR1_ODDP       0x80    /* Odd Parity                              */
  126. #define COR1_PARMODE    0x60    /* Parity Mode mask                        */
  127. #define  COR1_NOPAR      0x00   /* No Parity                               */
  128. #define  COR1_FORCEPAR   0x20   /* Force Parity                            */
  129. #define  COR1_NORMPAR    0x40   /* Normal Parity                           */
  130. #define COR1_IGNORE     0x10    /* Ignore Parity on RX                     */
  131. #define COR1_STOPBITS   0x0c    /* Number of Stop Bits                     */
  132. #define  COR1_1SB        0x00   /* 1 Stop Bit                              */
  133. #define  COR1_15SB       0x04   /* 1.5 Stop Bits                           */
  134. #define  COR1_2SB        0x08   /* 2 Stop Bits                             */
  135. #define COR1_CHARLEN    0x03    /* Character Length                        */
  136. #define  COR1_5BITS      0x00   /* 5 bits                                  */
  137. #define  COR1_6BITS      0x01   /* 6 bits                                  */
  138. #define  COR1_7BITS      0x02   /* 7 bits                                  */
  139. #define  COR1_8BITS      0x03   /* 8 bits                                  */
  140. /* Channel Option Register 2 (R/W) */
  141. #define COR2_IXM        0x80    /* Implied XON mode                        */
  142. #define COR2_TXIBE      0x40    /* Enable In-Band (XON/XOFF) Flow Control  */
  143. #define COR2_ETC        0x20    /* Embedded Tx Commands Enable             */
  144. #define COR2_LLM        0x10    /* Local Loopback Mode                     */
  145. #define COR2_RLM        0x08    /* Remote Loopback Mode                    */
  146. #define COR2_RTSAO      0x04    /* RTS Automatic Output Enable             */
  147. #define COR2_CTSAE      0x02    /* CTS Automatic Enable                    */
  148. #define COR2_DSRAE      0x01    /* DSR Automatic Enable                    */
  149. /* Channel Option Register 3 (R/W) */
  150. #define COR3_XONCH      0x80    /* XON is a pair of characters (1 & 3)     */
  151. #define COR3_XOFFCH     0x40    /* XOFF is a pair of characters (2 & 4)    */
  152. #define COR3_FCT        0x20    /* Flow-Control Transparency Mode          */
  153. #define COR3_SCDE       0x10    /* Special Character Detection Enable      */
  154. #define COR3_RXTH       0x0f    /* RX FIFO Threshold value (1-8)           */
  155. /* Channel Control Status Register (R/O) */
  156. #define CCSR_RXEN       0x80    /* Receiver Enabled                        */
  157. #define CCSR_RXFLOFF    0x40    /* Receive Flow Off (XOFF was sent)        */
  158. #define CCSR_RXFLON     0x20    /* Receive Flow On (XON was sent)          */
  159. #define CCSR_TXEN       0x08    /* Transmitter Enabled                     */
  160. #define CCSR_TXFLOFF    0x04    /* Transmit Flow Off (got XOFF)            */
  161. #define CCSR_TXFLON     0x02    /* Transmit Flow On (got XON)              */
  162. /* Modem Change Option Register 1 (R/W) */
  163. #define MCOR1_DSRZD     0x80    /* Detect 0->1 transition of DSR           */
  164. #define MCOR1_CDZD      0x40    /* Detect 0->1 transition of CD            */
  165. #define MCOR1_CTSZD     0x20    /* Detect 0->1 transition of CTS           */
  166. #define MCOR1_DTRTH     0x0f    /* Auto DTR flow control Threshold (1-8)   */
  167. #define  MCOR1_NODTRFC   0x0     /* Automatic DTR flow control disabled     */
  168. /* Modem Change Option Register 2 (R/W) */
  169. #define MCOR2_DSROD     0x80    /* Detect 1->0 transition of DSR           */
  170. #define MCOR2_CDOD      0x40    /* Detect 1->0 transition of CD            */
  171. #define MCOR2_CTSOD     0x20    /* Detect 1->0 transition of CTS           */
  172. /* Modem Change Register (R/W) */
  173. #define MCR_DSRCHG      0x80    /* DSR Changed                             */
  174. #define MCR_CDCHG       0x40    /* CD Changed                              */
  175. #define MCR_CTSCHG      0x20    /* CTS Changed                             */
  176. /* Modem Signal Value Register (R/W) */
  177. #define MSVR_DSR        0x80    /* Current state of DSR input              */
  178. #define MSVR_CD         0x40    /* Current state of CD input               */
  179. #define MSVR_CTS        0x20    /* Current state of CTS input              */
  180. #define MSVR_DTR        0x02    /* Current state of DTR output             */
  181. #define MSVR_RTS        0x01    /* Current state of RTS output             */
  182. /* Escape characters */
  183. #define CD186x_C_ESC     0x00    /* Escape character                        */
  184. #define CD186x_C_SBRK    0x81    /* Start sending BREAK                     */
  185. #define CD186x_C_DELAY   0x82    /* Delay output                            */
  186. #define CD186x_C_EBRK    0x83    /* Stop sending BREAK                      */
  187. #define SRSR_RREQint     0x10    /* This chip wants "rec" serviced          */
  188. #define SRSR_TREQint     0x04    /* This chip wants "transmit" serviced     */
  189. #define SRSR_MREQint     0x01    /* This chip wants "mdm change" serviced   */
  190. #define SRCR_PKGTYPE    0x80
  191. #define SRCR_REGACKEN   0x40
  192. #define SRCR_DAISYEN    0x20
  193. #define SRCR_GLOBPRI    0x10
  194. #define SRCR_UNFAIR     0x08
  195. #define SRCR_AUTOPRI    0x02
  196. #define SRCR_PRISEL     0x01