libftdi, display, lcdproc: (gerd) fix async usb writes, fix write timing & concurrency
[libftdi] / src / ftdi.h
CommitLineData
a3da1d95
GE
1/***************************************************************************
2 ftdi.h - description
3 -------------------
4 begin : Fri Apr 4 2003
5 copyright : (C) 2003 by Intra2net AG
5fdb1cb1 6 email : opensource@intra2net.com
a3da1d95
GE
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU Lesser General Public License *
13 * version 2.1 as published by the Free Software Foundation; *
14 * *
15 ***************************************************************************/
16
17#ifndef __libftdi_h__
18#define __libftdi_h__
19
98452d97 20#include <usb.h>
0e302db6 21
9bec2387 22/// FTDI chip type
cb6250fa 23enum ftdi_chip_type { TYPE_AM=0, TYPE_BM=1, TYPE_2232C=2, TYPE_R=3 };
9bec2387 24/// Parity mode for ftdi_set_line_property()
2f73e59f 25enum ftdi_parity_type { NONE=0, ODD=1, EVEN=2, MARK=3, SPACE=4 };
9bec2387 26/// Number of stop bits for ftdi_set_line_property()
2f73e59f 27enum ftdi_stopbits_type { STOP_BIT_1=0, STOP_BIT_15=1, STOP_BIT_2=2 };
9bec2387 28/// Number of bits ftdi_set_line_property()
2f73e59f
TJ
29enum ftdi_bits_type { BITS_7=7, BITS_8=8 };
30
9bec2387 31/// MPSSE bitbang modes
c4446c36
TJ
32enum ftdi_mpsse_mode {
33 BITMODE_RESET = 0x00,
34 BITMODE_BITBANG= 0x01,
35 BITMODE_MPSSE = 0x02,
36 BITMODE_SYNCBB = 0x04,
37 BITMODE_MCU = 0x08,
8144d211
TJ
38 // CPU-style fifo mode gets set via EEPROM
39 BITMODE_OPTO = 0x10,
40 BITMODE_CBUS = 0x20
c4446c36
TJ
41};
42
9bec2387 43/// Port interface for FT2232C
c4446c36
TJ
44enum ftdi_interface {
45 INTERFACE_ANY = 0,
46 INTERFACE_A = 1,
47 INTERFACE_B = 2
48};
49
50/* Shifting commands IN MPSSE Mode*/
51#define MPSSE_WRITE_NEG 0x01 /* Write TDI/DO on negative TCK/SK edge*/
52#define MPSSE_BITMODE 0x02 /* Write bits, not bytes */
53#define MPSSE_READ_NEG 0x04 /* Sample TDO/DI on negative TCK/SK edge */
54#define MPSSE_LSB 0x08 /* LSB first */
55#define MPSSE_DO_WRITE 0x10 /* Write TDI/DO */
56#define MPSSE_DO_READ 0x20 /* Read TDO/DI */
57#define MPSSE_WRITE_TMS 0x40 /* Write TMS/CS */
58
59/* FTDI MPSSE commands */
60#define SET_BITS_LOW 0x80
61/*BYTE DATA*/
62/*BYTE Direction*/
63#define SET_BITS_HIGH 0x82
64/*BYTE DATA*/
65/*BYTE Direction*/
66#define GET_BITS_LOW 0x81
67#define GET_BITS_HIGH 0x83
68#define LOOPBACK_START 0x84
69#define LOOPBACK_END 0x85
70#define TCK_DIVISOR 0x86
71/* Value Low */
72/* Value HIGH */ /*rate is 12000000/((1+value)*2) */
73#define DIV_VALUE(rate) (rate > 6000000)?0:((6000000/rate -1) > 0xffff)? 0xffff: (6000000/rate -1)
74
75/* Commands in MPSSE and Host Emulation Mode */
76#define SEND_IMMEDIATE 0x87
77#define WAIT_ON_HIGH 0x88
78#define WAIT_ON_LOW 0x89
79
80/* Commands in Host Emulation Mode */
81#define READ_SHORT 0x90
82/* Address_Low */
83#define READ_EXTENDED 0x91
84/* Address High */
85/* Address Low */
86#define WRITE_SHORT 0x92
87/* Address_Low */
88#define WRITE_EXTENDED 0x93
89/* Address High */
90/* Address Low */
53ad271d 91
a01d31e2 92/* Definitions for flow control */
a01d31e2
TJ
93#define SIO_MODEM_CTRL 1 /* Set the modem control register */
94#define SIO_SET_FLOW_CTRL 2 /* Set flow control register */
95
96#define SIO_SET_FLOW_CTRL_REQUEST_TYPE 0x40
97#define SIO_SET_FLOW_CTRL_REQUEST SIO_SET_FLOW_CTRL
98
99#define SIO_DISABLE_FLOW_CTRL 0x0
100#define SIO_RTS_CTS_HS (0x1 << 8)
101#define SIO_DTR_DSR_HS (0x2 << 8)
102#define SIO_XON_XOFF_HS (0x4 << 8)
103
104#define SIO_SET_MODEM_CTRL_REQUEST_TYPE 0x40
105#define SIO_SET_MODEM_CTRL_REQUEST SIO_MODEM_CTRL
106
107#define SIO_SET_DTR_MASK 0x1
108#define SIO_SET_DTR_HIGH ( 1 | ( SIO_SET_DTR_MASK << 8))
109#define SIO_SET_DTR_LOW ( 0 | ( SIO_SET_DTR_MASK << 8))
110#define SIO_SET_RTS_MASK 0x2
111#define SIO_SET_RTS_HIGH ( 2 | ( SIO_SET_RTS_MASK << 8 ))
112#define SIO_SET_RTS_LOW ( 0 | ( SIO_SET_RTS_MASK << 8 ))
113
114#define SIO_RTS_CTS_HS (0x1 << 8)
115
7cc9950e
GE
116/* marker for unused usb urb structures
117 (taken from libusb) */
118#define FTDI_URB_USERCONTEXT_COOKIE ((void *)0x1)
119
9bec2387 120/**
b5ec1820 121 \brief Main context structure for all libftdi functions.
a01d31e2 122
9bec2387
TJ
123 Do not access directly if possible.
124*/
a3da1d95
GE
125struct ftdi_context {
126 // USB specific
9bec2387 127 /// libusb's usb_dev_handle
98452d97 128 struct usb_dev_handle *usb_dev;
9bec2387 129 /// usb read timeout
545820ce 130 int usb_read_timeout;
9bec2387 131 /// usb write timeout
545820ce 132 int usb_write_timeout;
a3da1d95
GE
133
134 // FTDI specific
9bec2387 135 /// FTDI chip type
53ad271d 136 enum ftdi_chip_type type;
9bec2387 137 /// baudrate
a3da1d95 138 int baudrate;
9bec2387 139 /// bitbang mode state
a3da1d95 140 unsigned char bitbang_enabled;
9bec2387 141 /// pointer to read buffer for ftdi_read_data
948f9ada 142 unsigned char *readbuffer;
9bec2387 143 /// read buffer offset
4ece2c24 144 unsigned int readbuffer_offset;
9bec2387 145 /// number of remaining data in internal read buffer
4ece2c24 146 unsigned int readbuffer_remaining;
9bec2387 147 /// read buffer chunk size
948f9ada 148 unsigned int readbuffer_chunksize;
9bec2387 149 /// write buffer chunk size
948f9ada 150 unsigned int writebuffer_chunksize;
d9f0cce7 151
545820ce 152 // FTDI FT2232C requirecments
9bec2387 153 /// FT2232C interface number: 0 or 1
545820ce 154 int interface; // 0 or 1
9bec2387 155 /// FT2232C index number: 1 or 2
545820ce
TJ
156 int index; // 1 or 2
157 // Endpoints
9bec2387 158 /// FT2232C end points: 1 or 2
545820ce
TJ
159 int in_ep;
160 int out_ep; // 1 or 2
c3d95b87 161
9bec2387 162 /// Bitbang mode. 1: (default) Normal bitbang mode, 2: FT2232C SPI bitbang mode
3119537f 163 unsigned char bitbang_mode;
545820ce 164
9bec2387 165 /// String representation of last error
a3da1d95 166 char *error_str;
7cc9950e
GE
167
168 /// Buffer needed for async communication
169 char *async_usb_buffer;
170 /// Number of URB-structures we can buffer
171 unsigned int async_usb_buffer_size;
a3da1d95
GE
172};
173
9bec2387 174/**
b5ec1820 175 \brief list of usb devices created by ftdi_usb_find_all()
9bec2387 176*/
edb82cbf 177struct ftdi_device_list {
9bec2387 178 /// pointer to next entry
edb82cbf 179 struct ftdi_device_list *next;
9bec2387 180 /// pointer to libusb's usb_device
edb82cbf
TJ
181 struct usb_device *dev;
182};
183
9bec2387 184/**
b5ec1820 185 \brief FTDI eeprom structure
9bec2387 186*/
b8aa7b35 187struct ftdi_eeprom {
9bec2387 188 /// vendor id
d9f0cce7 189 int vendor_id;
9bec2387 190 /// product id
b8aa7b35
TJ
191 int product_id;
192
9bec2387 193 /// self powered
d9f0cce7 194 int self_powered;
9bec2387 195 /// remote wakepu
b8aa7b35 196 int remote_wakeup;
9bec2387 197 /// chip type
b8aa7b35
TJ
198 int BM_type_chip;
199
9bec2387 200 /// input in isochronous transfer mode
b8aa7b35 201 int in_is_isochronous;
9bec2387 202 /// output in isochronous transfer mode
b8aa7b35 203 int out_is_isochronous;
9bec2387 204 /// suspend pull downs
b8aa7b35
TJ
205 int suspend_pull_downs;
206
9bec2387 207 /// use serial
b8aa7b35 208 int use_serial;
9bec2387 209 /// fake usb version
b8aa7b35 210 int change_usb_version;
9bec2387 211 /// usb version
b8aa7b35 212 int usb_version;
9bec2387 213 /// maximum power
b8aa7b35 214 int max_power;
d9f0cce7 215
9bec2387 216 /// manufacturer name
b8aa7b35 217 char *manufacturer;
9bec2387 218 /// product name
b8aa7b35 219 char *product;
9bec2387 220 /// serial number
b8aa7b35
TJ
221 char *serial;
222};
223
a3da1d95
GE
224#ifdef __cplusplus
225extern "C" {
226#endif
227
228 int ftdi_init(struct ftdi_context *ftdi);
0ce2f5fa 229 int ftdi_set_interface(struct ftdi_context *ftdi, enum ftdi_interface interface);
c4446c36 230
948f9ada 231 void ftdi_deinit(struct ftdi_context *ftdi);
98452d97 232 void ftdi_set_usbdev (struct ftdi_context *ftdi, usb_dev_handle *usbdev);
a01d31e2 233
edb82cbf
TJ
234 int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist,
235 int vendor, int product);
236 void ftdi_list_free(struct ftdi_device_list **devlist);
474786c0
TJ
237 int ftdi_usb_get_strings(struct ftdi_context *ftdi, struct usb_device *dev,
238 char * manufacturer, int mnf_len,
239 char * description, int desc_len,
240 char * serial, int serial_len);
a01d31e2 241
a3da1d95 242 int ftdi_usb_open(struct ftdi_context *ftdi, int vendor, int product);
a8f46ddc
TJ
243 int ftdi_usb_open_desc(struct ftdi_context *ftdi, int vendor, int product,
244 const char* description, const char* serial);
edb82cbf 245 int ftdi_usb_open_dev(struct ftdi_context *ftdi, struct usb_device *dev);
1941414d 246
a3da1d95
GE
247 int ftdi_usb_close(struct ftdi_context *ftdi);
248 int ftdi_usb_reset(struct ftdi_context *ftdi);
a60be878 249 int ftdi_usb_purge_buffers(struct ftdi_context *ftdi);
a3da1d95
GE
250
251 int ftdi_set_baudrate(struct ftdi_context *ftdi, int baudrate);
2f73e59f
TJ
252 int ftdi_set_line_property(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
253 enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity);
948f9ada 254
be5d7eec 255 int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
948f9ada
TJ
256 int ftdi_read_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize);
257 int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
258
259 int ftdi_write_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
260 int ftdi_write_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize);
261 int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
a3da1d95 262
7cc9950e
GE
263 int ftdi_write_data_async(struct ftdi_context *ftdi, unsigned char *buf, int size);
264 void ftdi_async_complete(struct ftdi_context *ftdi, int wait_for_more);
265
a3da1d95
GE
266 int ftdi_enable_bitbang(struct ftdi_context *ftdi, unsigned char bitmask);
267 int ftdi_disable_bitbang(struct ftdi_context *ftdi);
c4446c36 268 int ftdi_set_bitmode(struct ftdi_context *ftdi, unsigned char bitmask, unsigned char mode);
a3da1d95
GE
269 int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins);
270
271 int ftdi_set_latency_timer(struct ftdi_context *ftdi, unsigned char latency);
272 int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency);
273
98452d97 274 // init and build eeprom from ftdi_eeprom structure
b8aa7b35
TJ
275 void ftdi_eeprom_initdefaults(struct ftdi_eeprom *eeprom);
276 int ftdi_eeprom_build(struct ftdi_eeprom *eeprom, unsigned char *output);
277
98452d97
TJ
278 // "eeprom" needs to be valid 128 byte eeprom (generated by the eeprom generator)
279 // the checksum of the eeprom is valided
be5d7eec 280 int ftdi_read_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom);
cb6250fa 281 int ftdi_read_chipid(struct ftdi_context *ftdi, unsigned int *chipid);
be5d7eec 282 int ftdi_write_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom);
b8aa7b35 283 int ftdi_erase_eeprom(struct ftdi_context *ftdi);
a3da1d95 284
c3d95b87
TJ
285 char *ftdi_get_error_string(struct ftdi_context *ftdi);
286
9bec2387 287 // flow control
a01d31e2 288 int ftdi_setflowctrl(struct ftdi_context *ftdi, int flowctrl);
a01d31e2 289 int ftdi_setdtr(struct ftdi_context *ftdi, int state);
a01d31e2
TJ
290 int ftdi_setrts(struct ftdi_context *ftdi, int state);
291
a3da1d95
GE
292#ifdef __cplusplus
293}
294#endif
295
296#endif /* __libftdi_h__ */