libftdi: (tomj) find all devices by vendor/product id
[libftdi] / src / ftdi.h
1 /***************************************************************************
2                           ftdi.h  -  description
3                              -------------------
4     begin                : Fri Apr 4 2003
5     copyright            : (C) 2003 by Intra2net AG
6     email                : opensource@intra2net.com
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
20 #include <usb.h>
21
22 enum ftdi_chip_type { TYPE_AM=0, TYPE_BM=1, TYPE_2232C=2 };
23 enum ftdi_parity_type { NONE=0, ODD=1, EVEN=2, MARK=3, SPACE=4 };
24 enum ftdi_stopbits_type { STOP_BIT_1=0, STOP_BIT_15=1, STOP_BIT_2=2 };
25 enum ftdi_bits_type { BITS_7=7, BITS_8=8 };
26
27 enum ftdi_mpsse_mode {
28     BITMODE_RESET  = 0x00,
29     BITMODE_BITBANG= 0x01,
30     BITMODE_MPSSE  = 0x02,
31     BITMODE_SYNCBB = 0x04,
32     BITMODE_MCU    = 0x08,
33     BITMODE_OPTO   = 0x10
34 };
35
36 /* Port interface code for FT2232C */
37 enum ftdi_interface {
38     INTERFACE_ANY = 0,
39     INTERFACE_A   = 1,
40     INTERFACE_B   = 2
41 };
42
43 /* Shifting commands IN MPSSE Mode*/
44 #define MPSSE_WRITE_NEG 0x01   /* Write TDI/DO on negative TCK/SK edge*/
45 #define MPSSE_BITMODE   0x02   /* Write bits, not bytes */
46 #define MPSSE_READ_NEG  0x04   /* Sample TDO/DI on negative TCK/SK edge */
47 #define MPSSE_LSB       0x08   /* LSB first */
48 #define MPSSE_DO_WRITE  0x10   /* Write TDI/DO */
49 #define MPSSE_DO_READ   0x20   /* Read TDO/DI */
50 #define MPSSE_WRITE_TMS 0x40   /* Write TMS/CS */
51
52 /* FTDI MPSSE commands */
53 #define SET_BITS_LOW   0x80
54 /*BYTE DATA*/
55 /*BYTE Direction*/
56 #define SET_BITS_HIGH  0x82
57 /*BYTE DATA*/
58 /*BYTE Direction*/
59 #define GET_BITS_LOW   0x81
60 #define GET_BITS_HIGH  0x83
61 #define LOOPBACK_START 0x84
62 #define LOOPBACK_END   0x85
63 #define TCK_DIVISOR    0x86
64 /* Value Low */
65 /* Value HIGH */ /*rate is 12000000/((1+value)*2) */
66 #define DIV_VALUE(rate) (rate > 6000000)?0:((6000000/rate -1) > 0xffff)? 0xffff: (6000000/rate -1)
67
68 /* Commands in MPSSE and Host Emulation Mode */
69 #define SEND_IMMEDIATE 0x87 
70 #define WAIT_ON_HIGH   0x88
71 #define WAIT_ON_LOW    0x89
72
73 /* Commands in Host Emulation Mode */
74 #define READ_SHORT     0x90
75 /* Address_Low */
76 #define READ_EXTENDED  0x91
77 /* Address High */
78 /* Address Low  */
79 #define WRITE_SHORT    0x92
80 /* Address_Low */
81 #define WRITE_EXTENDED 0x93
82 /* Address High */
83 /* Address Low  */
84
85 struct ftdi_context {
86     // USB specific
87     struct usb_dev_handle *usb_dev;
88     int usb_read_timeout;
89     int usb_write_timeout;
90
91     // FTDI specific
92     enum ftdi_chip_type type;
93     int baudrate;
94     unsigned char bitbang_enabled;
95     unsigned char *readbuffer;
96     unsigned int readbuffer_offset;
97     unsigned int readbuffer_remaining;
98     unsigned int readbuffer_chunksize;
99     unsigned int writebuffer_chunksize;
100
101     // FTDI FT2232C requirecments
102     int interface;   // 0 or 1
103     int index;       // 1 or 2
104     // Endpoints
105     int in_ep;
106     int out_ep;      // 1 or 2
107
108     /* 1: (default) Normal bitbang mode, 2: FT2232C SPI bitbang mode */
109     unsigned char bitbang_mode;
110
111     // misc
112     char *error_str;
113 };
114
115 struct ftdi_device_list {
116     struct ftdi_device_list *next;
117     struct usb_device *dev;
118 };
119
120 struct ftdi_eeprom {
121     int vendor_id;
122     int product_id;
123
124     int self_powered;
125     int remote_wakeup;
126     int BM_type_chip;
127
128     int in_is_isochronous;
129     int out_is_isochronous;
130     int suspend_pull_downs;
131
132     int use_serial;
133     int change_usb_version;
134     int usb_version;
135     int max_power;
136
137     char *manufacturer;
138     char *product;
139     char *serial;
140 };
141
142 #ifdef __cplusplus
143 extern "C" {
144 #endif
145
146     int ftdi_init(struct ftdi_context *ftdi);
147     int ftdi_set_interface(struct ftdi_context *ftdi, enum ftdi_interface interface);
148
149     void ftdi_deinit(struct ftdi_context *ftdi);
150     void ftdi_set_usbdev (struct ftdi_context *ftdi, usb_dev_handle *usbdev);
151     
152     int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist,
153                           int vendor, int product);
154     void ftdi_list_free(struct ftdi_device_list **devlist);
155     
156     int ftdi_usb_open(struct ftdi_context *ftdi, int vendor, int product);
157     int ftdi_usb_open_desc(struct ftdi_context *ftdi, int vendor, int product,
158                            const char* description, const char* serial);
159     int ftdi_usb_open_dev(struct ftdi_context *ftdi, struct usb_device *dev);
160     
161     int ftdi_usb_close(struct ftdi_context *ftdi);
162     int ftdi_usb_reset(struct ftdi_context *ftdi);
163     int ftdi_usb_purge_buffers(struct ftdi_context *ftdi);
164
165     int ftdi_set_baudrate(struct ftdi_context *ftdi, int baudrate);
166     int ftdi_set_line_property(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
167                                enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity);
168
169     int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
170     int ftdi_read_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize);
171     int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
172
173     int ftdi_write_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
174     int ftdi_write_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize);
175     int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
176
177     int ftdi_enable_bitbang(struct ftdi_context *ftdi, unsigned char bitmask);
178     int ftdi_disable_bitbang(struct ftdi_context *ftdi);
179     int ftdi_set_bitmode(struct ftdi_context *ftdi, unsigned char bitmask, unsigned char mode);
180     int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins);
181
182     int ftdi_set_latency_timer(struct ftdi_context *ftdi, unsigned char latency);
183     int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency);
184
185     // init and build eeprom from ftdi_eeprom structure
186     void ftdi_eeprom_initdefaults(struct ftdi_eeprom *eeprom);
187     int  ftdi_eeprom_build(struct ftdi_eeprom *eeprom, unsigned char *output);
188
189     // "eeprom" needs to be valid 128 byte eeprom (generated by the eeprom generator)
190     // the checksum of the eeprom is valided
191     int ftdi_read_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom);
192     int ftdi_write_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom);
193     int ftdi_erase_eeprom(struct ftdi_context *ftdi);
194
195     char *ftdi_get_error_string(struct ftdi_context *ftdi);
196
197 #ifdef __cplusplus
198 }
199 #endif
200
201 #endif /* __libftdi_h__ */