Minor comment fix.
[libftdi] / src / ftdi.h
CommitLineData
a3da1d95
GE
1/***************************************************************************
2 ftdi.h - description
3 -------------------
4 begin : Fri Apr 4 2003
79646368 5 copyright : (C) 2003-2017 by Intra2net AG and the libftdi developers
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
fec55667 20#include <stdint.h>
223e5aae 21#ifndef _WIN32
fec55667 22#include <sys/time.h>
223e5aae 23#endif
0e302db6 24
ca7d3244
PF
25/* 'interface' might be defined as a macro on Windows, so we need to
26 * undefine it so as not to break the current libftdi API, because
27 * struct ftdi_context has an 'interface' member
28 * As this can be problematic if you include windows.h after ftdi.h
29 * in your sources, we force windows.h to be included first. */
30#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
31#include <windows.h>
32#if defined(interface)
33#undef interface
34#endif
35#endif
36
91c9886b 37/** FTDI chip type */
74387f27
TJ
38enum ftdi_chip_type
39{
2f80efc2
NP
40 TYPE_AM=0,
41 TYPE_BM=1,
42 TYPE_2232C=2,
43 TYPE_R=3,
44 TYPE_2232H=4,
45 TYPE_4232H=5,
46 TYPE_232H=6,
47 TYPE_230X=7,
48};
91c9886b 49/** Parity mode for ftdi_set_line_property() */
2f73e59f 50enum ftdi_parity_type { NONE=0, ODD=1, EVEN=2, MARK=3, SPACE=4 };
91c9886b 51/** Number of stop bits for ftdi_set_line_property() */
2f73e59f 52enum ftdi_stopbits_type { STOP_BIT_1=0, STOP_BIT_15=1, STOP_BIT_2=2 };
91c9886b 53/** Number of bits for ftdi_set_line_property() */
2f73e59f 54enum ftdi_bits_type { BITS_7=7, BITS_8=8 };
91c9886b 55/** Break type for ftdi_set_line_property2() */
6c32e222 56enum ftdi_break_type { BREAK_OFF=0, BREAK_ON=1 };
2f73e59f 57
91c9886b 58/** MPSSE bitbang modes */
22d12cda
TJ
59enum ftdi_mpsse_mode
60{
418aaa72
GE
61 BITMODE_RESET = 0x00, /**< switch off bitbang mode, back to regular serial/FIFO */
62 BITMODE_BITBANG= 0x01, /**< classical asynchronous bitbang mode, introduced with B-type chips */
63 BITMODE_MPSSE = 0x02, /**< MPSSE mode, available on 2232x chips */
64 BITMODE_SYNCBB = 0x04, /**< synchronous bitbang mode, available on 2232x and R-type chips */
65 BITMODE_MCU = 0x08, /**< MCU Host Bus Emulation mode, available on 2232x chips */
74387f27 66 /* CPU-style fifo mode gets set via EEPROM */
418aaa72
GE
67 BITMODE_OPTO = 0x10, /**< Fast Opto-Isolated Serial Interface Mode, available on 2232x chips */
68 BITMODE_CBUS = 0x20, /**< Bitbang on CBUS pins of R-type chips, configure in EEPROM before */
69 BITMODE_SYNCFF = 0x40, /**< Single Channel Synchronous FIFO mode, available on 2232H chips */
7a172caf 70 BITMODE_FT1284 = 0x80, /**< FT1284 mode, available on 232H chips */
c4446c36
TJ
71};
72
418aaa72 73/** Port interface for chips with multiple interfaces */
22d12cda
TJ
74enum ftdi_interface
75{
c4446c36
TJ
76 INTERFACE_ANY = 0,
77 INTERFACE_A = 1,
f9d69895
AH
78 INTERFACE_B = 2,
79 INTERFACE_C = 3,
80 INTERFACE_D = 4
c4446c36
TJ
81};
82
a3d86bdb
TJ
83/** Automatic loading / unloading of kernel modules */
84enum ftdi_module_detach_mode
85{
86 AUTO_DETACH_SIO_MODULE = 0,
87 DONT_DETACH_SIO_MODULE = 1
88};
89
c4446c36
TJ
90/* Shifting commands IN MPSSE Mode*/
91#define MPSSE_WRITE_NEG 0x01 /* Write TDI/DO on negative TCK/SK edge*/
92#define MPSSE_BITMODE 0x02 /* Write bits, not bytes */
93#define MPSSE_READ_NEG 0x04 /* Sample TDO/DI on negative TCK/SK edge */
94#define MPSSE_LSB 0x08 /* LSB first */
95#define MPSSE_DO_WRITE 0x10 /* Write TDI/DO */
96#define MPSSE_DO_READ 0x20 /* Read TDO/DI */
97#define MPSSE_WRITE_TMS 0x40 /* Write TMS/CS */
98
99/* FTDI MPSSE commands */
100#define SET_BITS_LOW 0x80
101/*BYTE DATA*/
102/*BYTE Direction*/
103#define SET_BITS_HIGH 0x82
104/*BYTE DATA*/
105/*BYTE Direction*/
106#define GET_BITS_LOW 0x81
107#define GET_BITS_HIGH 0x83
108#define LOOPBACK_START 0x84
109#define LOOPBACK_END 0x85
110#define TCK_DIVISOR 0x86
c7e4c09e
UB
111/* H Type specific commands */
112#define DIS_DIV_5 0x8a
113#define EN_DIV_5 0x8b
114#define EN_3_PHASE 0x8c
115#define DIS_3_PHASE 0x8d
116#define CLK_BITS 0x8e
117#define CLK_BYTES 0x8f
118#define CLK_WAIT_HIGH 0x94
119#define CLK_WAIT_LOW 0x95
120#define EN_ADAPTIVE 0x96
121#define DIS_ADAPTIVE 0x97
122#define CLK_BYTES_OR_HIGH 0x9c
2013b000 123#define CLK_BYTES_OR_LOW 0x9d
c7e4c09e
UB
124/*FT232H specific commands */
125#define DRIVE_OPEN_COLLECTOR 0x9e
c4446c36
TJ
126/* Value Low */
127/* Value HIGH */ /*rate is 12000000/((1+value)*2) */
128#define DIV_VALUE(rate) (rate > 6000000)?0:((6000000/rate -1) > 0xffff)? 0xffff: (6000000/rate -1)
129
130/* Commands in MPSSE and Host Emulation Mode */
22d12cda 131#define SEND_IMMEDIATE 0x87
c4446c36
TJ
132#define WAIT_ON_HIGH 0x88
133#define WAIT_ON_LOW 0x89
134
135/* Commands in Host Emulation Mode */
136#define READ_SHORT 0x90
137/* Address_Low */
138#define READ_EXTENDED 0x91
139/* Address High */
140/* Address Low */
141#define WRITE_SHORT 0x92
142/* Address_Low */
143#define WRITE_EXTENDED 0x93
144/* Address High */
145/* Address Low */
53ad271d 146
a01d31e2 147/* Definitions for flow control */
9ecfef2a 148#define SIO_RESET 0 /* Reset the port */
a01d31e2
TJ
149#define SIO_MODEM_CTRL 1 /* Set the modem control register */
150#define SIO_SET_FLOW_CTRL 2 /* Set flow control register */
9ecfef2a
TJ
151#define SIO_SET_BAUD_RATE 3 /* Set baud rate */
152#define SIO_SET_DATA 4 /* Set the data characteristics of the port */
153
579b006f
JZ
154#define FTDI_DEVICE_OUT_REQTYPE (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_OUT)
155#define FTDI_DEVICE_IN_REQTYPE (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_IN)
a5e1bd8c
MK
156
157/* Requests */
158#define SIO_RESET_REQUEST SIO_RESET
159#define SIO_SET_BAUDRATE_REQUEST SIO_SET_BAUD_RATE
160#define SIO_SET_DATA_REQUEST SIO_SET_DATA
161#define SIO_SET_FLOW_CTRL_REQUEST SIO_SET_FLOW_CTRL
162#define SIO_SET_MODEM_CTRL_REQUEST SIO_MODEM_CTRL
163#define SIO_POLL_MODEM_STATUS_REQUEST 0x05
164#define SIO_SET_EVENT_CHAR_REQUEST 0x06
165#define SIO_SET_ERROR_CHAR_REQUEST 0x07
166#define SIO_SET_LATENCY_TIMER_REQUEST 0x09
167#define SIO_GET_LATENCY_TIMER_REQUEST 0x0A
168#define SIO_SET_BITMODE_REQUEST 0x0B
169#define SIO_READ_PINS_REQUEST 0x0C
170#define SIO_READ_EEPROM_REQUEST 0x90
171#define SIO_WRITE_EEPROM_REQUEST 0x91
172#define SIO_ERASE_EEPROM_REQUEST 0x92
173
174
9ecfef2a
TJ
175#define SIO_RESET_SIO 0
176#define SIO_RESET_PURGE_RX 1
177#define SIO_RESET_PURGE_TX 2
178
22d12cda 179#define SIO_DISABLE_FLOW_CTRL 0x0
a01d31e2
TJ
180#define SIO_RTS_CTS_HS (0x1 << 8)
181#define SIO_DTR_DSR_HS (0x2 << 8)
182#define SIO_XON_XOFF_HS (0x4 << 8)
183
a01d31e2
TJ
184#define SIO_SET_DTR_MASK 0x1
185#define SIO_SET_DTR_HIGH ( 1 | ( SIO_SET_DTR_MASK << 8))
186#define SIO_SET_DTR_LOW ( 0 | ( SIO_SET_DTR_MASK << 8))
187#define SIO_SET_RTS_MASK 0x2
188#define SIO_SET_RTS_HIGH ( 2 | ( SIO_SET_RTS_MASK << 8 ))
189#define SIO_SET_RTS_LOW ( 0 | ( SIO_SET_RTS_MASK << 8 ))
190
191#define SIO_RTS_CTS_HS (0x1 << 8)
192
7cc9950e
GE
193/* marker for unused usb urb structures
194 (taken from libusb) */
195#define FTDI_URB_USERCONTEXT_COOKIE ((void *)0x1)
196
fd282db3 197#ifdef __GNUC__
74387f27 198#define DEPRECATED(func) func __attribute__ ((deprecated))
fd282db3 199#elif defined(_MSC_VER)
74387f27 200#define DEPRECATED(func) __declspec(deprecated) func
fd282db3 201#else
74387f27
TJ
202#pragma message("WARNING: You need to implement DEPRECATED for this compiler")
203#define DEPRECATED(func) func
fd282db3
GE
204#endif
205
579b006f
JZ
206struct ftdi_transfer_control
207{
208 int completed;
209 unsigned char *buf;
210 int size;
211 int offset;
212 struct ftdi_context *ftdi;
213 struct libusb_transfer *transfer;
214};
fd282db3 215
9bec2387 216/**
b5ec1820 217 \brief Main context structure for all libftdi functions.
a01d31e2 218
9bec2387
TJ
219 Do not access directly if possible.
220*/
22d12cda
TJ
221struct ftdi_context
222{
91c9886b 223 /* USB specific */
02212d8e
UB
224 /** libusb's context */
225 struct libusb_context *usb_ctx;
91c9886b 226 /** libusb's usb_dev_handle */
579b006f 227 struct libusb_device_handle *usb_dev;
91c9886b 228 /** usb read timeout */
545820ce 229 int usb_read_timeout;
91c9886b 230 /** usb write timeout */
545820ce 231 int usb_write_timeout;
a3da1d95 232
91c9886b
MJ
233 /* FTDI specific */
234 /** FTDI chip type */
53ad271d 235 enum ftdi_chip_type type;
91c9886b 236 /** baudrate */
a3da1d95 237 int baudrate;
91c9886b 238 /** bitbang mode state */
a3da1d95 239 unsigned char bitbang_enabled;
91c9886b 240 /** pointer to read buffer for ftdi_read_data */
948f9ada 241 unsigned char *readbuffer;
91c9886b 242 /** read buffer offset */
4ece2c24 243 unsigned int readbuffer_offset;
91c9886b 244 /** number of remaining data in internal read buffer */
4ece2c24 245 unsigned int readbuffer_remaining;
91c9886b 246 /** read buffer chunk size */
948f9ada 247 unsigned int readbuffer_chunksize;
91c9886b 248 /** write buffer chunk size */
948f9ada 249 unsigned int writebuffer_chunksize;
e2f12a4f
TJ
250 /** maximum packet size. Needed for filtering modem status bytes every n packets. */
251 unsigned int max_packet_size;
d9f0cce7 252
91c9886b
MJ
253 /* FTDI FT2232C requirecments */
254 /** FT2232C interface number: 0 or 1 */
255 int interface; /* 0 or 1 */
256 /** FT2232C index number: 1 or 2 */
257 int index; /* 1 or 2 */
258 /* Endpoints */
259 /** FT2232C end points: 1 or 2 */
545820ce 260 int in_ep;
91c9886b 261 int out_ep; /* 1 or 2 */
c3d95b87 262
91c9886b 263 /** Bitbang mode. 1: (default) Normal bitbang mode, 2: FT2232C SPI bitbang mode */
3119537f 264 unsigned char bitbang_mode;
545820ce 265
c0a96aed
UB
266 /** Decoded eeprom structure */
267 struct ftdi_eeprom *eeprom;
c201f80f 268
91c9886b 269 /** String representation of last error */
c45d2630 270 const char *error_str;
a3d86bdb
TJ
271
272 /** Defines behavior in case a kernel module is already attached to the device */
273 enum ftdi_module_detach_mode module_detach_mode;
a3da1d95
GE
274};
275
9bec2387 276/**
44ef02bd
UB
277 List all handled EEPROM values.
278 Append future new values only at the end to provide API/ABI stability*/
279enum ftdi_eeprom_value
280{
281 VENDOR_ID = 0,
282 PRODUCT_ID = 1,
283 SELF_POWERED = 2,
284 REMOTE_WAKEUP = 3,
285 IS_NOT_PNP = 4,
286 SUSPEND_DBUS7 = 5,
287 IN_IS_ISOCHRONOUS = 6,
288 OUT_IS_ISOCHRONOUS = 7,
289 SUSPEND_PULL_DOWNS = 8,
290 USE_SERIAL = 9,
291 USB_VERSION = 10,
292 USE_USB_VERSION = 11,
293 MAX_POWER = 12,
294 CHANNEL_A_TYPE = 13,
295 CHANNEL_B_TYPE = 14,
296 CHANNEL_A_DRIVER = 15,
297 CHANNEL_B_DRIVER = 16,
298 CBUS_FUNCTION_0 = 17,
299 CBUS_FUNCTION_1 = 18,
300 CBUS_FUNCTION_2 = 19,
301 CBUS_FUNCTION_3 = 20,
302 CBUS_FUNCTION_4 = 21,
263d3ba0
UB
303 CBUS_FUNCTION_5 = 22,
304 CBUS_FUNCTION_6 = 23,
305 CBUS_FUNCTION_7 = 24,
306 CBUS_FUNCTION_8 = 25,
307 CBUS_FUNCTION_9 = 26,
308 HIGH_CURRENT = 27,
309 HIGH_CURRENT_A = 28,
310 HIGH_CURRENT_B = 29,
311 INVERT = 30,
312 GROUP0_DRIVE = 31,
313 GROUP0_SCHMITT = 32,
314 GROUP0_SLEW = 33,
315 GROUP1_DRIVE = 34,
316 GROUP1_SCHMITT = 35,
317 GROUP1_SLEW = 36,
318 GROUP2_DRIVE = 37,
319 GROUP2_SCHMITT = 38,
320 GROUP2_SLEW = 39,
321 GROUP3_DRIVE = 40,
322 GROUP3_SCHMITT = 41,
323 GROUP3_SLEW = 42,
324 CHIP_SIZE = 43,
325 CHIP_TYPE = 44,
326 POWER_SAVE = 45,
327 CLOCK_POLARITY = 46,
328 DATA_ORDER = 47,
be4bae37
AL
329 FLOW_CONTROL = 48,
330 CHANNEL_C_DRIVER = 49,
331 CHANNEL_D_DRIVER = 50,
332 CHANNEL_A_RS485 = 51,
333 CHANNEL_B_RS485 = 52,
334 CHANNEL_C_RS485 = 53,
335 CHANNEL_D_RS485 = 54,
68e78641 336 RELEASE_NUMBER = 55,
08518f8e 337 EXTERNAL_OSCILLATOR= 56,
6e962b9a 338 USER_DATA_ADDR = 57,
44ef02bd
UB
339};
340
341/**
b5ec1820 342 \brief list of usb devices created by ftdi_usb_find_all()
9bec2387 343*/
22d12cda
TJ
344struct ftdi_device_list
345{
91c9886b 346 /** pointer to next entry */
edb82cbf 347 struct ftdi_device_list *next;
91c9886b 348 /** pointer to libusb's usb_device */
579b006f 349 struct libusb_device *dev;
edb82cbf 350};
18199b76 351#define FT1284_CLK_IDLE_STATE 0x01
7a172caf 352#define FT1284_DATA_LSB 0x02 /* DS_FT232H 1.3 amd ftd2xx.h 1.0.4 disagree here*/
18199b76 353#define FT1284_FLOW_CONTROL 0x04
837a71d6
UB
354#define POWER_SAVE_DISABLE_H 0x80
355
a02587d5 356#define USE_SERIAL_NUM 0x08
add00ad6 357enum ftdi_cbus_func
74387f27 358{
45619eaa
UB
359 CBUS_TXDEN = 0, CBUS_PWREN = 1, CBUS_RXLED = 2, CBUS_TXLED = 3, CBUS_TXRXLED = 4,
360 CBUS_SLEEP = 5, CBUS_CLK48 = 6, CBUS_CLK24 = 7, CBUS_CLK12 = 8, CBUS_CLK6 = 9,
add00ad6 361 CBUS_IOMODE = 0xa, CBUS_BB_WR = 0xb, CBUS_BB_RD = 0xc
74387f27 362};
f505134f 363
add00ad6 364enum ftdi_cbush_func
74387f27 365{
add00ad6 366 CBUSH_TRISTATE = 0, CBUSH_TXLED = 1, CBUSH_RXLED = 2, CBUSH_TXRXLED = 3, CBUSH_PWREN = 4,
de3da328 367 CBUSH_SLEEP = 5, CBUSH_DRIVE_0 = 6, CBUSH_DRIVE1 = 7, CBUSH_IOMODE = 8, CBUSH_TXDEN = 9,
add00ad6
RH
368 CBUSH_CLK30 = 10, CBUSH_CLK15 = 11, CBUSH_CLK7_5 = 12
369};
370
371enum ftdi_cbusx_func
372{
373 CBUSX_TRISTATE = 0, CBUSX_TXLED = 1, CBUSX_RXLED = 2, CBUSX_TXRXLED = 3, CBUSX_PWREN = 4,
374 CBUSX_SLEEP = 5, CBUSX_DRIVE_0 = 6, CBUSX_DRIVE1 = 7, CBUSX_IOMODE = 8, CBUSX_TXDEN = 9,
375 CBUSX_CLK24 = 10, CBUSX_CLK12 = 11, CBUSX_CLK6 = 12, CBUSX_BAT_DETECT = 13,
376 CBUSX_BAT_DETECT_NEG = 14, CBUSX_I2C_TXE = 15, CBUSX_I2C_RXF = 16, CBUSX_VBUS_SENSE = 17,
377 CBUSX_BB_WR = 18, CBUSX_BB_RD = 19, CBUSX_TIME_STAMP = 20, CBUSX_AWAKE = 21
74387f27 378};
263d3ba0 379
f505134f
HK
380/** Invert TXD# */
381#define INVERT_TXD 0x01
382/** Invert RXD# */
383#define INVERT_RXD 0x02
384/** Invert RTS# */
385#define INVERT_RTS 0x04
386/** Invert CTS# */
387#define INVERT_CTS 0x08
388/** Invert DTR# */
389#define INVERT_DTR 0x10
390/** Invert DSR# */
391#define INVERT_DSR 0x20
392/** Invert DCD# */
393#define INVERT_DCD 0x40
394/** Invert RI# */
395#define INVERT_RI 0x80
396
308f1fa7
UB
397/** Interface Mode. */
398#define CHANNEL_IS_UART 0x0
c8f69686
UB
399#define CHANNEL_IS_FIFO 0x1
400#define CHANNEL_IS_OPTO 0x2
401#define CHANNEL_IS_CPU 0x4
402#define CHANNEL_IS_FT1284 0x8
308f1fa7 403
be4bae37
AL
404#define CHANNEL_IS_RS485 0x10
405
db099ec5
UB
406#define DRIVE_4MA 0
407#define DRIVE_8MA 1
408#define DRIVE_12MA 2
409#define DRIVE_16MA 3
410#define SLOW_SLEW 4
411#define IS_SCHMITT 8
412
308f1fa7 413/** Driver Type. */
2cde7c52 414#define DRIVER_VCP 0x08
ac4a82a5 415#define DRIVER_VCPH 0x10 /* FT232H has moved the VCP bit */
308f1fa7 416
caec1294
UB
417#define USE_USB_VERSION_BIT 0x10
418
ec0dcd3f 419#define SUSPEND_DBUS7_BIT 0x80
02e4a740 420
f505134f 421/** High current drive. */
ca41c8ee 422#define HIGH_CURRENT_DRIVE 0x10
75388926 423#define HIGH_CURRENT_DRIVE_R 0x04
f505134f 424
9bec2387 425/**
40da63b1
UB
426 \brief Progress Info for streaming read
427*/
428struct size_and_time
429{
74387f27
TJ
430 uint64_t totalBytes;
431 struct timeval time;
40da63b1
UB
432};
433
434typedef struct
435{
436 struct size_and_time first;
437 struct size_and_time prev;
438 struct size_and_time current;
439 double totalTime;
440 double totalRate;
441 double currentRate;
442} FTDIProgressInfo;
443
444typedef int (FTDIStreamCallback)(uint8_t *buffer, int length,
445 FTDIProgressInfo *progress, void *userdata);
446
0220adfa
TJ
447/**
448 * Provide libftdi version information
449 * major: Library major version
450 * minor: Library minor version
451 * micro: Currently unused, ight get used for hotfixes.
452 * version_str: Version as (static) string
453 * snapshot_str: Git snapshot version if known. Otherwise "unknown" or empty string.
454*/
455struct ftdi_version_info
456{
457 int major;
458 int minor;
459 int micro;
460 const char *version_str;
461 const char *snapshot_str;
462};
463
40da63b1 464
a3da1d95 465#ifdef __cplusplus
22d12cda
TJ
466extern "C"
467{
a3da1d95
GE
468#endif
469
470 int ftdi_init(struct ftdi_context *ftdi);
672ac008 471 struct ftdi_context *ftdi_new(void);
0ce2f5fa 472 int ftdi_set_interface(struct ftdi_context *ftdi, enum ftdi_interface interface);
c4446c36 473
948f9ada 474 void ftdi_deinit(struct ftdi_context *ftdi);
cef378aa 475 void ftdi_free(struct ftdi_context *ftdi);
579b006f 476 void ftdi_set_usbdev (struct ftdi_context *ftdi, struct libusb_device_handle *usbdev);
a01d31e2 477
bd6941fd 478 struct ftdi_version_info ftdi_get_library_version(void);
0220adfa 479
edb82cbf
TJ
480 int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist,
481 int vendor, int product);
482 void ftdi_list_free(struct ftdi_device_list **devlist);
cef378aa 483 void ftdi_list_free2(struct ftdi_device_list *devlist);
579b006f 484 int ftdi_usb_get_strings(struct ftdi_context *ftdi, struct libusb_device *dev,
15079e78
FH
485 char *manufacturer, int mnf_len,
486 char *description, int desc_len,
487 char *serial, int serial_len);
488 int ftdi_usb_get_strings2(struct ftdi_context *ftdi, struct libusb_device *dev,
489 char *manufacturer, int mnf_len,
490 char *description, int desc_len,
491 char *serial, int serial_len);
c9eeb2f1
AM
492
493 int ftdi_eeprom_get_strings(struct ftdi_context *ftdi,
494 char *manufacturer, int mnf_len,
495 char *product, int prod_len,
496 char *serial, int serial_len);
878f0c6a 497 int ftdi_eeprom_set_strings(struct ftdi_context *ftdi, char * manufacturer,
74387f27 498 char * product, char * serial);
a01d31e2 499
a3da1d95 500 int ftdi_usb_open(struct ftdi_context *ftdi, int vendor, int product);
a8f46ddc
TJ
501 int ftdi_usb_open_desc(struct ftdi_context *ftdi, int vendor, int product,
502 const char* description, const char* serial);
5ebbdab9 503 int ftdi_usb_open_desc_index(struct ftdi_context *ftdi, int vendor, int product,
74387f27 504 const char* description, const char* serial, unsigned int index);
814e69f5 505 int ftdi_usb_open_bus_port(struct ftdi_context *ftdi, uint8_t bus, uint8_t port);
579b006f 506 int ftdi_usb_open_dev(struct ftdi_context *ftdi, struct libusb_device *dev);
5ebbdab9 507 int ftdi_usb_open_string(struct ftdi_context *ftdi, const char* description);
1941414d 508
a3da1d95
GE
509 int ftdi_usb_close(struct ftdi_context *ftdi);
510 int ftdi_usb_reset(struct ftdi_context *ftdi);
1189b11a
TJ
511 int ftdi_usb_purge_rx_buffer(struct ftdi_context *ftdi);
512 int ftdi_usb_purge_tx_buffer(struct ftdi_context *ftdi);
a60be878 513 int ftdi_usb_purge_buffers(struct ftdi_context *ftdi);
a3da1d95
GE
514
515 int ftdi_set_baudrate(struct ftdi_context *ftdi, int baudrate);
2f73e59f
TJ
516 int ftdi_set_line_property(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
517 enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity);
6c32e222 518 int ftdi_set_line_property2(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
22d12cda
TJ
519 enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity,
520 enum ftdi_break_type break_type);
948f9ada 521
be5d7eec 522 int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
948f9ada
TJ
523 int ftdi_read_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize);
524 int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
525
276750c1 526 int ftdi_write_data(struct ftdi_context *ftdi, const unsigned char *buf, int size);
948f9ada
TJ
527 int ftdi_write_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize);
528 int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
a3da1d95 529
1ec530dc 530 int ftdi_readstream(struct ftdi_context *ftdi, FTDIStreamCallback *callback,
50f4957a 531 void *userdata, int packetsPerTransfer, int numTransfers);
1ec530dc 532 struct ftdi_transfer_control *ftdi_write_data_submit(struct ftdi_context *ftdi, unsigned char *buf, int size);
7cc9950e 533
866a6dbb
JZ
534 struct ftdi_transfer_control *ftdi_read_data_submit(struct ftdi_context *ftdi, unsigned char *buf, int size);
535 int ftdi_transfer_data_done(struct ftdi_transfer_control *tc);
1b1bf7e4 536 void ftdi_transfer_data_cancel(struct ftdi_transfer_control *tc, struct timeval * to);
866a6dbb 537
c4446c36 538 int ftdi_set_bitmode(struct ftdi_context *ftdi, unsigned char bitmask, unsigned char mode);
2d790e37 539 int ftdi_disable_bitbang(struct ftdi_context *ftdi);
a3da1d95
GE
540 int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins);
541
542 int ftdi_set_latency_timer(struct ftdi_context *ftdi, unsigned char latency);
543 int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency);
544
1189b11a
TJ
545 int ftdi_poll_modem_status(struct ftdi_context *ftdi, unsigned short *status);
546
91c9886b 547 /* flow control */
a7fb8440 548 int ftdi_setflowctrl(struct ftdi_context *ftdi, int flowctrl);
9ecfef2a 549 int ftdi_setdtr_rts(struct ftdi_context *ftdi, int dtr, int rts);
a7fb8440
TJ
550 int ftdi_setdtr(struct ftdi_context *ftdi, int state);
551 int ftdi_setrts(struct ftdi_context *ftdi, int state);
552
1189b11a
TJ
553 int ftdi_set_event_char(struct ftdi_context *ftdi, unsigned char eventch, unsigned char enable);
554 int ftdi_set_error_char(struct ftdi_context *ftdi, unsigned char errorch, unsigned char enable);
555
f14f84d3 556 /* init eeprom for the given FTDI type */
74387f27
TJ
557 int ftdi_eeprom_initdefaults(struct ftdi_context *ftdi,
558 char * manufacturer, char *product,
559 char * serial);
a35aa9bd
UB
560 int ftdi_eeprom_build(struct ftdi_context *ftdi);
561 int ftdi_eeprom_decode(struct ftdi_context *ftdi, int verbose);
b8aa7b35 562
44ef02bd
UB
563 int ftdi_get_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int* value);
564 int ftdi_set_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int value);
565
566 int ftdi_get_eeprom_buf(struct ftdi_context *ftdi, unsigned char * buf, int size);
672fd368 567 int ftdi_set_eeprom_buf(struct ftdi_context *ftdi, const unsigned char * buf, int size);
44ef02bd 568
6e962b9a
SET
569 int ftdi_set_eeprom_user_data(struct ftdi_context *ftdi, const char * buf, int size);
570
a35aa9bd 571 int ftdi_read_eeprom(struct ftdi_context *ftdi);
cb6250fa 572 int ftdi_read_chipid(struct ftdi_context *ftdi, unsigned int *chipid);
a35aa9bd 573 int ftdi_write_eeprom(struct ftdi_context *ftdi);
b8aa7b35 574 int ftdi_erase_eeprom(struct ftdi_context *ftdi);
a3da1d95 575
c1c70e13
OS
576 int ftdi_read_eeprom_location (struct ftdi_context *ftdi, int eeprom_addr, unsigned short *eeprom_val);
577 int ftdi_write_eeprom_location(struct ftdi_context *ftdi, int eeprom_addr, unsigned short eeprom_val);
578
c45d2630 579 const char *ftdi_get_error_string(struct ftdi_context *ftdi);
c1c70e13 580
a3da1d95
GE
581#ifdef __cplusplus
582}
583#endif
584
585#endif /* __libftdi_h__ */