aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sbus/char/cd180.h
blob: 445b86cc65e7ac6d4888a260578c9a98bc806e5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* Definitions for Cirrus Logic CL-CD180 8-port async mux chip */
#define CD180_NCH       8       /* Total number of channels                */
#define CD180_TPC       16      /* Ticks per character                     */
#define CD180_NFIFO	8	/* TX FIFO size                            */

/* Global registers */
#define CD180_GFRCR	0x6b	/* Global Firmware Revision Code Register  */
#define CD180_SRCR	0x66	/* Service Request Configuration Register  */
#define CD180_PPRH	0x70	/* Prescaler Period Register High	   */
#define CD180_PPRL	0x71	/* Prescaler Period Register Low	   */
#define CD180_MSMR	0x61	/* Modem Service Match Register		   */
#define CD180_TSMR	0x62	/* Transmit Service Match Register	   */
#define CD180_RSMR	0x63	/* Receive Service Match Register	   */
#define CD180_GSVR	0x40	/* Global Service Vector Register	   */
#define CD180_SRSR	0x65	/* Service Request Status Register	   */
#define CD180_GSCR	0x41	/* Global Service Channel Register	   */
#define CD180_CAR	0x64	/* Channel Access Register		   */

/* Indexed registers */
#define CD180_RDCR	0x07	/* Receive Data Count Register		   */
#define CD180_RDR	0x78	/* Receiver Data Register		   */
#define CD180_RCSR	0x7a	/* Receiver Character Status Register	   */
#define CD180_TDR	0x7b	/* Transmit Data Register		   */
#define CD180_EOSRR	0x7f	/* End of Service Request Register	   */

/* Channel Registers */
#define CD180_SRER      0x02    /* Service Request Enable Register         */
#define CD180_CCR       0x01    /* Channel Command Register                */
#define CD180_COR1      0x03    /* Channel Option Register 1               */
#define CD180_COR2      0x04    /* Channel Option Register 2               */
#define CD180_COR3      0x05    /* Channel Option Register 3               */
#define CD180_CCSR      0x06    /* Channel Control Status Register         */
#define CD180_RTPR      0x18    /* Receive Timeout Period Register         */
#define CD180_RBPRH     0x31    /* Receive Bit Rate Period Register High  */
#define CD180_RBPRL     0x32    /* Receive Bit Rate Period Register Low   */
#define CD180_TBPRH     0x39    /* Transmit Bit Rate Period Register High */
#define CD180_TBPRL     0x3a    /* Transmit Bit Rate Period Register Low  */
#define CD180_SCHR1     0x09    /* Special Character Register 1            */
#define CD180_SCHR2     0x0a    /* Special Character Register 2            */
#define CD180_SCHR3     0x0b    /* Special Character Register 3            */
#define CD180_SCHR4     0x0c    /* Special Character Register 4            */
#define CD180_MCR       0x12    /* Modem Change Register                   */
#define CD180_MCOR1     0x10    /* Modem Change Option 1 Register          */
#define CD180_MCOR2     0x11    /* Modem Change Option 2 Register          */
#define CD180_MSVR      0x28    /* Modem Signal Value Register             */
#define CD180_MSVRTS    0x29    /* Modem Signal Value RTS                  */
#define CD180_MSVDTR    0x2a    /* Modem Signal Value DTR                  */

/* Global Interrupt Vector Register (R/W) */

#define GSVR_ITMASK     0x07     /* Interrupt type mask                     */
#define  GSVR_IT_MDM     0x01    /* Modem Signal Change Interrupt           */
#define  GSVR_IT_TX      0x02    /* Transmit Data Interrupt                 */
#define  GSVR_IT_RGD     0x03    /* Receive Good Data Interrupt             */
#define  GSVR_IT_REXC    0x07    /* Receive Exception Interrupt             */


/* Global Interrupt Channel Register (R/W) */
 
#define GSCR_CHAN       0x1c    /* Channel Number Mask                     */
#define GSCR_CHAN_OFF   2       /* Channel Number Offset                   */


/* Channel Address Register (R/W) */

#define CAR_CHAN        0x07    /* Channel Number Mask                     */


/* Receive Character Status Register (R/O) */

#define RCSR_TOUT       0x80    /* Rx Timeout                              */
#define RCSR_SCDET      0x70    /* Special Character Detected Mask         */
#define  RCSR_NO_SC      0x00   /* No Special Characters Detected          */
#define  RCSR_SC_1       0x10   /* Special Char 1 (or 1 & 3) Detected      */
#define  RCSR_SC_2       0x20   /* Special Char 2 (or 2 & 4) Detected      */
#define  RCSR_SC_3       0x30   /* Special Char 3 Detected                 */
#define  RCSR_SC_4       0x40   /* Special Char 4 Detected                 */
#define RCSR_BREAK      0x08    /* Break has been detected                 */
#define RCSR_PE         0x04    /* Parity Error                            */
#define RCSR_FE         0x02    /* Frame Error                             */
#define RCSR_OE         0x01    /* Overrun Error                           */


/* Channel Command Register (R/W) (commands in groups can be OR-ed) */

#define CCR_HARDRESET   0x81    /* Reset the chip                          */

#define CCR_SOFTRESET   0x80    /* Soft Channel Reset                      */

#define CCR_CORCHG1     0x42    /* Channel Option Register 1 Changed       */
#define CCR_CORCHG2     0x44    /* Channel Option Register 2 Changed       */
#define CCR_CORCHG3     0x48    /* Channel Option Register 3 Changed       */

#define CCR_SSCH1       0x21    /* Send Special Character 1                */

#define CCR_SSCH2       0x22    /* Send Special Character 2                */

#define CCR_SSCH3       0x23    /* Send Special Character 3                */

#define CCR_SSCH4       0x24    /* Send Special Character 4                */

#define CCR_TXEN        0x18    /* Enable Transmitter                      */
#define CCR_RXEN        0x12    /* Enable Receiver                         */

#define CCR_TXDIS       0x14    /* Disable Transmitter                     */
#define CCR_RXDIS       0x11    /* Disable Receiver                        */


/* Service Request Enable Register (R/W) */

#define SRER_DSR         0x80    /* Enable interrupt on DSR change          */
#define SRER_CD          0x40    /* Enable interrupt on CD change           */
#define SRER_CTS         0x20    /* Enable interrupt on CTS change          */
#define SRER_RXD         0x10    /* Enable interrupt on Receive Data        */
#define SRER_RXSC        0x08    /* Enable interrupt on Receive Spec. Char  */
#define SRER_TXRDY       0x04    /* Enable interrupt on TX FIFO empty       */
#define SRER_TXEMPTY     0x02    /* Enable interrupt on TX completely empty */
#define SRER_RET         0x01    /* Enable interrupt on RX Exc. Timeout     */


/* Channel Option Register 1 (R/W) */

#define COR1_ODDP       0x80    /* Odd Parity                              */
#define COR1_PARMODE    0x60    /* Parity Mode mask                        */
#define  COR1_NOPAR      0x00   /* No Parity                               */
#define  COR1_FORCEPAR   0x20   /* Force Parity                            */
#define  COR1_NORMPAR    0x40   /* Normal Parity                           */
#define COR1_IGNORE     0x10    /* Ignore Parity on RX                     */
#define COR1_STOPBITS   0x0c    /* Number of Stop Bits                     */
#define  COR1_1SB        0x00   /* 1 Stop Bit                              */
#define  COR1_15SB       0x04   /* 1.5 Stop Bits                           */
#define  COR1_2SB        0x08   /* 2 Stop Bits                             */
#define COR1_CHARLEN    0x03    /* Character Length                        */
#define  COR1_5BITS      0x00   /* 5 bits                                  */
#define  COR1_6BITS      0x01   /* 6 bits                                  */
#define  COR1_7BITS      0x02   /* 7 bits                                  */
#define  COR1_8BITS      0x03   /* 8 bits                                  */


/* Channel Option Register 2 (R/W) */

#define COR2_IXM        0x80    /* Implied XON mode                        */
#define COR2_TXIBE      0x40    /* Enable In-Band (XON/XOFF) Flow Control  */
#define COR2_ETC        0x20    /* Embedded Tx Commands Enable             */
#define COR2_LLM        0x10    /* Local Loopback Mode                     */
#define COR2_RLM        0x08    /* Remote Loopback Mode                    */
#define COR2_RTSAO      0x04    /* RTS Automatic Output Enable             */
#define COR2_CTSAE      0x02    /* CTS Automatic Enable                    */
#define COR2_DSRAE      0x01    /* DSR Automatic Enable                    */


/* Channel Option Register 3 (R/W) */

#define COR3_XONCH      0x80    /* XON is a pair of characters (1 & 3)     */
#define COR3_XOFFCH     0x40    /* XOFF is a pair of characters (2 & 4)    */
#define COR3_FCT        0x20    /* Flow-Control Transparency Mode          */
#define COR3_SCDE       0x10    /* Special Character Detection Enable      */
#define COR3_RXTH       0x0f    /* RX FIFO Threshold value (1-8)           */


/* Channel Control Status Register (R/O) */

#define CCSR_RXEN       0x80    /* Receiver Enabled                        */
#define CCSR_RXFLOFF    0x40    /* Receive Flow Off (XOFF was sent)        */
#define CCSR_RXFLON     0x20    /* Receive Flow On (XON was sent)          */
#define CCSR_TXEN       0x08    /* Transmitter Enabled                     */
#define CCSR_TXFLOFF    0x04    /* Transmit Flow Off (got XOFF)            */
#define CCSR_TXFLON     0x02    /* Transmit Flow On (got XON)              */


/* Modem Change Option Register 1 (R/W) */

#define MCOR1_DSRZD     0x80    /* Detect 0->1 transition of DSR           */
#define MCOR1_CDZD      0x40    /* Detect 0->1 transition of CD            */
#define MCOR1_CTSZD     0x20    /* Detect 0->1 transition of CTS           */
#define MCOR1_DTRTH     0x0f    /* Auto DTR flow control Threshold (1-8)   */
#define  MCOR1_NODTRFC   0x0     /* Automatic DTR flow control disabled     */


/* Modem Change Option Register 2 (R/W) */

#define MCOR2_DSROD     0x80    /* Detect 1->0 transition of DSR           */
#define MCOR2_CDOD      0x40    /* Detect 1->0 transition of CD            */
#define MCOR2_CTSOD     0x20    /* Detect 1->0 transition of CTS           */


/* Modem Change Register (R/W) */

#define MCR_DSRCHG      0x80    /* DSR Changed                             */
#define MCR_CDCHG       0x40    /* CD Changed                              */
#define MCR_CTSCHG      0x20    /* CTS Changed                             */


/* Modem Signal Value Register (R/W) */

#define MSVR_DSR        0x80    /* Current state of DSR input              */
#define MSVR_CD         0x40    /* Current state of CD input               */
#define MSVR_CTS        0x20    /* Current state of CTS input              */
#define MSVR_DTR        0x02    /* Current state of DTR output             */
#define MSVR_RTS        0x01    /* Current state of RTS output             */


/* Service Request Status Register */

#define SRSR_CMASK	0xC0	/* Current Service Context Mask            */
#define  SRSR_CNONE	0x00	/* Not in a service context		   */
#define  SRSR_CRX	0x40	/* Rx Context				   */
#define  SRSR_CTX	0x80	/* Tx Context				   */
#define  SRSR_CMDM	0xC0	/* Modem Context			   */
#define SRSR_ANYINT	0x6F	/* Any interrupt flag			   */
#define SRSR_RINT	0x10	/* Receive Interrupt			   */
#define SRSR_TINT	0x04	/* Transmit Interrupt			   */
#define SRSR_MINT	0x01	/* Modem Interrupt			   */
#define SRSR_REXT	0x20	/* Receive External Interrupt		   */
#define SRSR_TEXT	0x08	/* Transmit External Interrupt		   */
#define SRSR_MEXT	0x02	/* Modem External Interrupt		   */


/* Service Request Configuration Register */

#define SRCR_PKGTYPE    0x80
#define SRCR_REGACKEN   0x40
#define SRCR_DAISYEN    0x20
#define SRCR_GLOBPRI    0x10
#define SRCR_UNFAIR     0x08
#define SRCR_AUTOPRI    0x02
#define SRCR_PRISEL     0x01

/* Values for register-based Interrupt ACKs */
#define CD180_ACK_MINT	0x75	/* goes to MSMR				   */
#define CD180_ACK_TINT	0x76	/* goes to TSMR				   */
#define CD180_ACK_RINT	0x77	/* goes to RSMR				   */

/* Escape characters */

#define CD180_C_ESC     0x00    /* Escape character                        */
#define CD180_C_SBRK    0x81    /* Start sending BREAK                     */
#define CD180_C_DELAY   0x82    /* Delay output                            */
#define CD180_C_EBRK    0x83    /* Stop sending BREAK                      */