1 /* $NetBSD: uftdireg.h,v 1.5 2002/05/08 18:10:19 scw Exp $ */
4 * Definitions for the FTDI USB Single Port Serial Converter -
5 * known as FTDI_SIO (Serial Input/Output application of the chipset)
7 * The device is based on the FTDI FT8U100AX chip. It has a DB25 on one side,
10 * Thanx to FTDI (http://www.ftdi.co.uk) for so kindly providing details
11 * of the protocol required to talk to the device and ongoing assistence
14 * Bill Ryder - bryder@sgi.com of Silicon Graphics, Inc. is the original
15 * author of this file.
17 /* Modified by Lennart Augustsson */
19 /* Vendor Request Interface */
20 #define FTDI_SIO_RESET 0 /* Reset the port */
21 #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */
22 #define FTDI_SIO_SET_FLOW_CTRL 2 /* Set flow control register */
23 #define FTDI_SIO_SET_BAUD_RATE 3 /* Set baud rate */
24 #define FTDI_SIO_SET_DATA 4 /* Set the data characteristics of the port */
25 #define FTDI_SIO_GET_STATUS 5 /* Retrieve current value of status reg */
26 #define FTDI_SIO_SET_EVENT_CHAR 6 /* Set the event character */
27 #define FTDI_SIO_SET_ERROR_CHAR 7 /* Set the error character */
29 /* Port Identifier Table */
30 #define FTDI_PIT_DEFAULT 0 /* SIOA */
31 #define FTDI_PIT_SIOA 1 /* SIOA */
32 #define FTDI_PIT_SIOB 2 /* SIOB */
33 #define FTDI_PIT_PARALLEL 3 /* Parallel */
41 * BmRequestType: 0100 0000B
42 * bRequest: FTDI_SIO_RESET
43 * wValue: Control Value
51 * The Reset SIO command has this effect:
53 * Sets flow control set to 'none'
55 * Event trigger = disabled
60 * baud and data format not reset
62 * The Purge RX and TX buffer commands affect nothing except the buffers
66 #define FTDI_SIO_RESET_SIO 0
67 #define FTDI_SIO_RESET_PURGE_RX 1
68 #define FTDI_SIO_RESET_PURGE_TX 2
72 * BmRequestType: 0100 0000B
73 * bRequest: FTDI_SIO_SET_BAUDRATE
74 * wValue: BaudRate value - see below
79 /* FTDI_SIO_SET_BAUDRATE */
94 ftdi_8u232am_b300
= 0x2710,
95 ftdi_8u232am_b600
= 0x1388,
96 ftdi_8u232am_b1200
= 0x09c4,
97 ftdi_8u232am_b2400
= 0x04e2,
98 ftdi_8u232am_b4800
= 0x0271,
99 ftdi_8u232am_b9600
= 0x4138,
100 ftdi_8u232am_b19200
= 0x809c,
101 ftdi_8u232am_b38400
= 0xc04e,
102 ftdi_8u232am_b57600
= 0x0034,
103 ftdi_8u232am_b115200
= 0x001a,
104 ftdi_8u232am_b230400
= 0x000d,
105 ftdi_8u232am_b460800
= 0x4006,
106 ftdi_8u232am_b921600
= 0x8003
110 * BmRequestType: 0100 0000B
111 * bRequest: FTDI_SIO_SET_DATA
112 * wValue: Data characteristics (see below)
117 * Data characteristics
119 * B0..7 Number of data bits
133 /* FTDI_SIO_SET_DATA */
134 #define FTDI_SIO_SET_DATA_BITS(n) (n)
135 #define FTDI_SIO_SET_DATA_PARITY_NONE (0x0 << 8)
136 #define FTDI_SIO_SET_DATA_PARITY_ODD (0x1 << 8)
137 #define FTDI_SIO_SET_DATA_PARITY_EVEN (0x2 << 8)
138 #define FTDI_SIO_SET_DATA_PARITY_MARK (0x3 << 8)
139 #define FTDI_SIO_SET_DATA_PARITY_SPACE (0x4 << 8)
140 #define FTDI_SIO_SET_DATA_STOP_BITS_1 (0x0 << 11)
141 #define FTDI_SIO_SET_DATA_STOP_BITS_15 (0x1 << 11)
142 #define FTDI_SIO_SET_DATA_STOP_BITS_2 (0x2 << 11)
143 #define FTDI_SIO_SET_BREAK (0x1 << 14)
147 * BmRequestType: 0100 0000B
148 * bRequest: FTDI_SIO_MODEM_CTRL
149 * wValue: ControlValue (see below)
154 * NOTE: If the device is in RTS/CTS flow control, the RTS set by this
155 * command will be IGNORED without an error being returned
156 * Also - you can not set DTR and RTS with one control message
166 * B8 DTR state enable
169 * B9 RTS state enable
174 /* FTDI_SIO_MODEM_CTRL */
175 #define FTDI_SIO_SET_DTR_MASK 0x1
176 #define FTDI_SIO_SET_DTR_HIGH (1 | ( FTDI_SIO_SET_DTR_MASK << 8))
177 #define FTDI_SIO_SET_DTR_LOW (0 | ( FTDI_SIO_SET_DTR_MASK << 8))
178 #define FTDI_SIO_SET_RTS_MASK 0x2
179 #define FTDI_SIO_SET_RTS_HIGH (2 | ( FTDI_SIO_SET_RTS_MASK << 8))
180 #define FTDI_SIO_SET_RTS_LOW (0 | ( FTDI_SIO_SET_RTS_MASK << 8))
184 * BmRequestType: 0100 0000b
185 * bRequest: FTDI_SIO_SET_FLOW_CTRL
187 * wIndex: Protocol/Port - hIndex is protocl / lIndex is port
191 * hIndex protocol is:
192 * B0 Output handshaking using RTS/CTS
195 * B1 Output handshaking using DTR/DSR
198 * B2 Xon/Xoff handshaking
202 * A value of zero in the hIndex field disables handshaking
204 * If Xon/Xoff handshaking is specified, the hValue field should contain the
205 * XOFF character and the lValue field contains the XON character.
207 /* FTDI_SIO_SET_FLOW_CTRL */
208 #define FTDI_SIO_DISABLE_FLOW_CTRL 0x0
209 #define FTDI_SIO_RTS_CTS_HS 0x1
210 #define FTDI_SIO_DTR_DSR_HS 0x2
211 #define FTDI_SIO_XON_XOFF_HS 0x4
215 * BmRequestType: 0100 0000b
216 * bRequest: FTDI_SIO_SET_EVENT_CHAR
223 * B0..7 Event Character
224 * B8 Event Character Processing
229 * FTDI_SIO_SET_EVENT_CHAR
231 * Set the special event character for the specified communications port.
232 * If the device sees this character it will immediately return the
233 * data read so far - rather than wait 40ms or until 62 bytes are read
234 * which is what normally happens.
240 * BmRequestType: 0100 0000b
241 * bRequest: FTDI_SIO_SET_ERROR_CHAR
248 * B0..7 Error Character
249 * B8 Error Character Processing
255 * FTDI_SIO_SET_ERROR_CHAR
256 * Set the parity error replacement character for the specified communications
262 * BmRequestType: 1100 0000b
263 * bRequest: FTDI_SIO_GET_MODEM_STATUS
269 * One byte of data is returned
277 * B6 Ring Indicator (RI)
280 * B7 Receive Line Signal Detect (RLSD)
284 * FTDI_SIO_GET_MODEM_STATUS
285 * Retrieve the current value of the modem status register.
287 #define FTDI_SIO_CTS_MASK 0x10
288 #define FTDI_SIO_DSR_MASK 0x20
289 #define FTDI_SIO_RI_MASK 0x40
290 #define FTDI_SIO_RLSD_MASK 0x80
300 * The device reserves the first two bytes of data on this endpoint to contain
301 * the current values of the modem and line status registers. In the absence of
302 * data, the device generates a message consisting of these two status bytes
305 * Byte 0: Modem Status
306 * NOTE: 4 upper bits have same layout as the MSR register in a 16550
310 * B4 Clear to Send (CTS)
311 * B5 Data Set Ready (DSR)
312 * B6 Ring Indicator (RI)
313 * B7 Receive Line Signal Detect (RLSD)
315 * Byte 1: Line Status
316 * NOTE: same layout as the LSR register in a 16550
320 * B1 Overrun Error (OE)
321 * B2 Parity Error (PE)
322 * B3 Framing Error (FE)
323 * B4 Break Interrupt (BI)
324 * B5 Transmitter Holding Register (THRE)
325 * B6 Transmitter Empty (TEMT)
326 * B7 Error in RCVR FIFO
331 * This device reserves the first bytes of data on this endpoint contain the
332 * length and port identifier of the message. For the FTDI USB Serial converter
333 * the port identifier is always 1.
335 * Byte 0: Port & length
339 * B2..7 Length of message - (not including Byte 0)
342 #define FTDI_PORT_MASK 0x0f
343 #define FTDI_MSR_MASK 0xf0
344 #define FTDI_GET_MSR(p) (((p)[0]) & FTDI_MSR_MASK)
345 #define FTDI_GET_LSR(p) ((p)[1])
346 #define FTDI_LSR_MASK (~0x60) /* interesting bits */
347 #define FTDI_OUT_TAG(len, port) (((len) << 2) | (port))