Unconditionally call libusb_detach_kernel_driver() Try to be more helpfull when thing...
[libftdi] / src / ftdi.c
CommitLineData
a3da1d95
GE
1/***************************************************************************
2 ftdi.c - description
3 -------------------
4 begin : Fri Apr 4 2003
22a1b5c1 5 copyright : (C) 2003-2010 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 ***************************************************************************/
d9f0cce7 16
b5ec1820
TJ
17/**
18 \mainpage libftdi API documentation
19
ad397a4b 20 Library to talk to FTDI chips. You find the latest versions of libftdi at
1bfc403c 21 http://www.intra2net.com/en/developer/libftdi/
b5ec1820 22
ad397a4b
TJ
23 The library is easy to use. Have a look at this short example:
24 \include simple.c
25
26 More examples can be found in the "examples" directory.
b5ec1820
TJ
27*/
28/** \addtogroup libftdi */
29/* @{ */
30
579b006f 31#include <libusb.h>
a8f46ddc 32#include <string.h>
d2f10023 33#include <errno.h>
b56d5a64 34#include <stdio.h>
579b006f 35#include <stdlib.h>
0e302db6 36
98452d97 37#include "ftdi.h"
a3da1d95 38
21abaf2e 39#define ftdi_error_return(code, str) do { \
2f73e59f 40 ftdi->error_str = str; \
21abaf2e 41 return code; \
d2f10023 42 } while(0);
c3d95b87 43
418aaa72 44
f3f81007
TJ
45/**
46 Internal function to close usb device pointer.
47 Sets ftdi->usb_dev to NULL.
48 \internal
49
50 \param ftdi pointer to ftdi_context
51
579b006f 52 \retval none
f3f81007 53*/
579b006f 54static void ftdi_usb_close_internal (struct ftdi_context *ftdi)
dff4fdb0 55{
22a1b5c1 56 if (ftdi && ftdi->usb_dev)
dff4fdb0 57 {
579b006f 58 libusb_close (ftdi->usb_dev);
dff4fdb0
NF
59 ftdi->usb_dev = NULL;
60 }
dff4fdb0 61}
c3d95b87 62
1941414d
TJ
63/**
64 Initializes a ftdi_context.
4837f98a 65
1941414d 66 \param ftdi pointer to ftdi_context
4837f98a 67
1941414d
TJ
68 \retval 0: all fine
69 \retval -1: couldn't allocate read buffer
70
71 \remark This should be called before all functions
948f9ada 72*/
a8f46ddc
TJ
73int ftdi_init(struct ftdi_context *ftdi)
74{
98452d97 75 ftdi->usb_dev = NULL;
545820ce
TJ
76 ftdi->usb_read_timeout = 5000;
77 ftdi->usb_write_timeout = 5000;
a3da1d95 78
53ad271d 79 ftdi->type = TYPE_BM; /* chip type */
a3da1d95 80 ftdi->baudrate = -1;
418aaa72 81 ftdi->bitbang_enabled = 0; /* 0: normal mode 1: any of the bitbang modes enabled */
a3da1d95 82
948f9ada
TJ
83 ftdi->readbuffer = NULL;
84 ftdi->readbuffer_offset = 0;
85 ftdi->readbuffer_remaining = 0;
86 ftdi->writebuffer_chunksize = 4096;
e2f12a4f 87 ftdi->max_packet_size = 0;
948f9ada 88
545820ce
TJ
89 ftdi->interface = 0;
90 ftdi->index = 0;
91 ftdi->in_ep = 0x02;
92 ftdi->out_ep = 0x81;
418aaa72 93 ftdi->bitbang_mode = 1; /* when bitbang is enabled this holds the number of the mode */
53ad271d 94
a3da1d95
GE
95 ftdi->error_str = NULL;
96
c201f80f
TJ
97 ftdi->eeprom_size = FTDI_DEFAULT_EEPROM_SIZE;
98
1c733d33
TJ
99 /* All fine. Now allocate the readbuffer */
100 return ftdi_read_data_set_chunksize(ftdi, 4096);
948f9ada 101}
4837f98a 102
1941414d 103/**
cef378aa
TJ
104 Allocate and initialize a new ftdi_context
105
106 \return a pointer to a new ftdi_context, or NULL on failure
107*/
672ac008 108struct ftdi_context *ftdi_new(void)
cef378aa
TJ
109{
110 struct ftdi_context * ftdi = (struct ftdi_context *)malloc(sizeof(struct ftdi_context));
111
22d12cda
TJ
112 if (ftdi == NULL)
113 {
cef378aa
TJ
114 return NULL;
115 }
116
22d12cda
TJ
117 if (ftdi_init(ftdi) != 0)
118 {
cef378aa 119 free(ftdi);
cdf448f6 120 return NULL;
cef378aa
TJ
121 }
122
123 return ftdi;
124}
125
126/**
1941414d
TJ
127 Open selected channels on a chip, otherwise use first channel.
128
129 \param ftdi pointer to ftdi_context
f9d69895 130 \param interface Interface to use for FT2232C/2232H/4232H chips.
1941414d
TJ
131
132 \retval 0: all fine
133 \retval -1: unknown interface
22a1b5c1 134 \retval -2: USB device unavailable
c4446c36 135*/
0ce2f5fa 136int ftdi_set_interface(struct ftdi_context *ftdi, enum ftdi_interface interface)
c4446c36 137{
1971c26d 138 if (ftdi == NULL)
22a1b5c1
TJ
139 ftdi_error_return(-2, "USB device unavailable");
140
22d12cda
TJ
141 switch (interface)
142 {
143 case INTERFACE_ANY:
144 case INTERFACE_A:
145 /* ftdi_usb_open_desc cares to set the right index, depending on the found chip */
146 break;
147 case INTERFACE_B:
148 ftdi->interface = 1;
149 ftdi->index = INTERFACE_B;
150 ftdi->in_ep = 0x04;
151 ftdi->out_ep = 0x83;
152 break;
f9d69895
AH
153 case INTERFACE_C:
154 ftdi->interface = 2;
155 ftdi->index = INTERFACE_C;
156 ftdi->in_ep = 0x06;
157 ftdi->out_ep = 0x85;
158 break;
159 case INTERFACE_D:
160 ftdi->interface = 3;
161 ftdi->index = INTERFACE_D;
162 ftdi->in_ep = 0x08;
163 ftdi->out_ep = 0x87;
164 break;
22d12cda
TJ
165 default:
166 ftdi_error_return(-1, "Unknown interface");
c4446c36
TJ
167 }
168 return 0;
169}
948f9ada 170
1941414d
TJ
171/**
172 Deinitializes a ftdi_context.
4837f98a 173
1941414d 174 \param ftdi pointer to ftdi_context
4837f98a 175*/
a8f46ddc
TJ
176void ftdi_deinit(struct ftdi_context *ftdi)
177{
22a1b5c1
TJ
178 if (ftdi == NULL)
179 return;
180
f3f81007 181 ftdi_usb_close_internal (ftdi);
dff4fdb0 182
22d12cda
TJ
183 if (ftdi->readbuffer != NULL)
184 {
d9f0cce7
TJ
185 free(ftdi->readbuffer);
186 ftdi->readbuffer = NULL;
948f9ada 187 }
a3da1d95
GE
188}
189
1941414d 190/**
cef378aa
TJ
191 Deinitialize and free an ftdi_context.
192
193 \param ftdi pointer to ftdi_context
194*/
195void ftdi_free(struct ftdi_context *ftdi)
196{
197 ftdi_deinit(ftdi);
198 free(ftdi);
199}
200
201/**
1941414d
TJ
202 Use an already open libusb device.
203
204 \param ftdi pointer to ftdi_context
579b006f 205 \param usb libusb libusb_device_handle to use
4837f98a 206*/
579b006f 207void ftdi_set_usbdev (struct ftdi_context *ftdi, libusb_device_handle *usb)
a8f46ddc 208{
22a1b5c1
TJ
209 if (ftdi == NULL)
210 return;
211
98452d97
TJ
212 ftdi->usb_dev = usb;
213}
214
215
1941414d
TJ
216/**
217 Finds all ftdi devices on the usb bus. Creates a new ftdi_device_list which
218 needs to be deallocated by ftdi_list_free() after use.
219
220 \param ftdi pointer to ftdi_context
221 \param devlist Pointer where to store list of found devices
222 \param vendor Vendor ID to search for
223 \param product Product ID to search for
edb82cbf 224
1941414d 225 \retval >0: number of devices found
1941414d 226 \retval -3: out of memory
579b006f
JZ
227 \retval -4: libusb_init() failed
228 \retval -5: libusb_get_device_list() failed
229 \retval -6: libusb_get_device_descriptor() failed
edb82cbf 230*/
d2f10023 231int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist, int vendor, int product)
edb82cbf
TJ
232{
233 struct ftdi_device_list **curdev;
579b006f
JZ
234 libusb_device *dev;
235 libusb_device **devs;
edb82cbf 236 int count = 0;
579b006f
JZ
237 int i = 0;
238
239 if (libusb_init(NULL) < 0)
240 ftdi_error_return(-4, "libusb_init() failed");
d2f10023 241
579b006f
JZ
242 if (libusb_get_device_list(NULL, &devs) < 0)
243 ftdi_error_return(-5, "libusb_get_device_list() failed");
edb82cbf
TJ
244
245 curdev = devlist;
6db32169 246 *curdev = NULL;
579b006f
JZ
247
248 while ((dev = devs[i++]) != NULL)
22d12cda 249 {
579b006f 250 struct libusb_device_descriptor desc;
d2f10023 251
579b006f
JZ
252 if (libusb_get_device_descriptor(dev, &desc) < 0)
253 ftdi_error_return(-6, "libusb_get_device_descriptor() failed");
edb82cbf 254
579b006f
JZ
255 if (desc.idVendor == vendor && desc.idProduct == product)
256 {
257 *curdev = (struct ftdi_device_list*)malloc(sizeof(struct ftdi_device_list));
258 if (!*curdev)
259 ftdi_error_return(-3, "out of memory");
260
261 (*curdev)->next = NULL;
262 (*curdev)->dev = dev;
263
264 curdev = &(*curdev)->next;
265 count++;
edb82cbf
TJ
266 }
267 }
d2f10023 268
edb82cbf
TJ
269 return count;
270}
271
1941414d
TJ
272/**
273 Frees a usb device list.
edb82cbf 274
1941414d 275 \param devlist USB device list created by ftdi_usb_find_all()
edb82cbf 276*/
d2f10023 277void ftdi_list_free(struct ftdi_device_list **devlist)
edb82cbf 278{
6db32169
TJ
279 struct ftdi_device_list *curdev, *next;
280
22d12cda
TJ
281 for (curdev = *devlist; curdev != NULL;)
282 {
6db32169
TJ
283 next = curdev->next;
284 free(curdev);
285 curdev = next;
edb82cbf
TJ
286 }
287
6db32169 288 *devlist = NULL;
edb82cbf
TJ
289}
290
1941414d 291/**
cef378aa
TJ
292 Frees a usb device list.
293
294 \param devlist USB device list created by ftdi_usb_find_all()
295*/
296void ftdi_list_free2(struct ftdi_device_list *devlist)
297{
298 ftdi_list_free(&devlist);
299}
300
301/**
474786c0
TJ
302 Return device ID strings from the usb device.
303
304 The parameters manufacturer, description and serial may be NULL
305 or pointer to buffers to store the fetched strings.
306
898c34dd
TJ
307 \note Use this function only in combination with ftdi_usb_find_all()
308 as it closes the internal "usb_dev" after use.
309
474786c0
TJ
310 \param ftdi pointer to ftdi_context
311 \param dev libusb usb_dev to use
312 \param manufacturer Store manufacturer string here if not NULL
313 \param mnf_len Buffer size of manufacturer string
314 \param description Store product description string here if not NULL
315 \param desc_len Buffer size of product description string
316 \param serial Store serial string here if not NULL
317 \param serial_len Buffer size of serial string
318
319 \retval 0: all fine
320 \retval -1: wrong arguments
321 \retval -4: unable to open device
322 \retval -7: get product manufacturer failed
323 \retval -8: get product description failed
324 \retval -9: get serial number failed
579b006f 325 \retval -11: libusb_get_device_descriptor() failed
474786c0 326*/
579b006f 327int ftdi_usb_get_strings(struct ftdi_context * ftdi, struct libusb_device * dev,
22d12cda 328 char * manufacturer, int mnf_len, char * description, int desc_len, char * serial, int serial_len)
474786c0 329{
579b006f
JZ
330 struct libusb_device_descriptor desc;
331
474786c0
TJ
332 if ((ftdi==NULL) || (dev==NULL))
333 return -1;
334
579b006f
JZ
335 if (libusb_open(dev, &ftdi->usb_dev) < 0)
336 ftdi_error_return(-4, "libusb_open() failed");
337
338 if (libusb_get_device_descriptor(dev, &desc) < 0)
339 ftdi_error_return(-11, "libusb_get_device_descriptor() failed");
474786c0 340
22d12cda
TJ
341 if (manufacturer != NULL)
342 {
579b006f 343 if (libusb_get_string_descriptor_ascii(ftdi->usb_dev, desc.iManufacturer, (unsigned char *)manufacturer, mnf_len) < 0)
22d12cda 344 {
f3f81007 345 ftdi_usb_close_internal (ftdi);
579b006f 346 ftdi_error_return(-7, "libusb_get_string_descriptor_ascii() failed");
474786c0
TJ
347 }
348 }
349
22d12cda
TJ
350 if (description != NULL)
351 {
579b006f 352 if (libusb_get_string_descriptor_ascii(ftdi->usb_dev, desc.iProduct, (unsigned char *)description, desc_len) < 0)
22d12cda 353 {
f3f81007 354 ftdi_usb_close_internal (ftdi);
579b006f 355 ftdi_error_return(-8, "libusb_get_string_descriptor_ascii() failed");
474786c0
TJ
356 }
357 }
358
22d12cda
TJ
359 if (serial != NULL)
360 {
579b006f 361 if (libusb_get_string_descriptor_ascii(ftdi->usb_dev, desc.iSerialNumber, (unsigned char *)serial, serial_len) < 0)
22d12cda 362 {
f3f81007 363 ftdi_usb_close_internal (ftdi);
579b006f 364 ftdi_error_return(-9, "libusb_get_string_descriptor_ascii() failed");
474786c0
TJ
365 }
366 }
367
579b006f 368 ftdi_usb_close_internal (ftdi);
474786c0
TJ
369
370 return 0;
371}
372
373/**
e2f12a4f
TJ
374 * Internal function to determine the maximum packet size.
375 * \param ftdi pointer to ftdi_context
376 * \param dev libusb usb_dev to use
377 * \retval Maximum packet size for this device
378 */
579b006f 379static unsigned int _ftdi_determine_max_packet_size(struct ftdi_context *ftdi, libusb_device *dev)
e2f12a4f 380{
579b006f
JZ
381 struct libusb_device_descriptor desc;
382 struct libusb_config_descriptor *config0;
e2f12a4f
TJ
383 unsigned int packet_size;
384
22a1b5c1
TJ
385 // Sanity check
386 if (ftdi == NULL || dev == NULL)
387 return 64;
388
e2f12a4f
TJ
389 // Determine maximum packet size. Init with default value.
390 // New hi-speed devices from FTDI use a packet size of 512 bytes
391 // but could be connected to a normal speed USB hub -> 64 bytes packet size.
392 if (ftdi->type == TYPE_2232H || ftdi->type == TYPE_4232H)
393 packet_size = 512;
394 else
395 packet_size = 64;
396
579b006f
JZ
397 if (libusb_get_device_descriptor(dev, &desc) < 0)
398 return packet_size;
399
400 if (libusb_get_config_descriptor(dev, 0, &config0) < 0)
401 return packet_size;
e2f12a4f 402
579b006f
JZ
403 if (desc.bNumConfigurations > 0)
404 {
405 if (ftdi->interface < config0->bNumInterfaces)
e2f12a4f 406 {
579b006f 407 struct libusb_interface interface = config0->interface[ftdi->interface];
e2f12a4f
TJ
408 if (interface.num_altsetting > 0)
409 {
579b006f 410 struct libusb_interface_descriptor descriptor = interface.altsetting[0];
e2f12a4f
TJ
411 if (descriptor.bNumEndpoints > 0)
412 {
413 packet_size = descriptor.endpoint[0].wMaxPacketSize;
414 }
415 }
416 }
417 }
418
579b006f 419 libusb_free_config_descriptor (config0);
e2f12a4f
TJ
420 return packet_size;
421}
422
423/**
418aaa72 424 Opens a ftdi device given by an usb_device.
7b18bef6 425
1941414d
TJ
426 \param ftdi pointer to ftdi_context
427 \param dev libusb usb_dev to use
428
429 \retval 0: all fine
23b1798d 430 \retval -3: unable to config device
1941414d
TJ
431 \retval -4: unable to open device
432 \retval -5: unable to claim device
433 \retval -6: reset failed
434 \retval -7: set baudrate failed
22a1b5c1 435 \retval -8: ftdi context invalid
579b006f
JZ
436 \retval -9: libusb_get_device_descriptor() failed
437 \retval -10: libusb_get_config_descriptor() failed
438 \retval -11: libusb_etach_kernel_driver() failed
439 \retval -12: libusb_get_configuration() failed
7b18bef6 440*/
579b006f 441int ftdi_usb_open_dev(struct ftdi_context *ftdi, libusb_device *dev)
7b18bef6 442{
579b006f
JZ
443 struct libusb_device_descriptor desc;
444 struct libusb_config_descriptor *config0;
43aee24f 445 int cfg, cfg0, detach_errno = 0;
579b006f 446
22a1b5c1
TJ
447 if (ftdi == NULL)
448 ftdi_error_return(-8, "ftdi context invalid");
449
579b006f
JZ
450 if (libusb_open(dev, &ftdi->usb_dev) < 0)
451 ftdi_error_return(-4, "libusb_open() failed");
452
453 if (libusb_get_device_descriptor(dev, &desc) < 0)
454 ftdi_error_return(-9, "libusb_get_device_descriptor() failed");
455
456 if (libusb_get_config_descriptor(dev, 0, &config0) < 0)
457 ftdi_error_return(-10, "libusb_get_config_descriptor() failed");
458 cfg0 = config0->bConfigurationValue;
459 libusb_free_config_descriptor (config0);
d2f10023 460
22592e17 461 // Try to detach ftdi_sio kernel module.
22592e17
TJ
462 //
463 // The return code is kept in a separate variable and only parsed
464 // if usb_set_configuration() or usb_claim_interface() fails as the
465 // detach operation might be denied and everything still works fine.
466 // Likely scenario is a static ftdi_sio kernel module.
43aee24f
UB
467 if (libusb_detach_kernel_driver(ftdi->usb_dev, ftdi->interface) !=0)
468 detach_errno = errno;
d2f10023 469
579b006f
JZ
470 if (libusb_get_configuration (ftdi->usb_dev, &cfg) < 0)
471 ftdi_error_return(-12, "libusb_get_configuration () failed");
b57aedfd
GE
472 // set configuration (needed especially for windows)
473 // tolerate EBUSY: one device with one configuration, but two interfaces
474 // and libftdi sessions to both interfaces (e.g. FT2232)
579b006f 475 if (desc.bNumConfigurations > 0 && cfg != cfg0)
b57aedfd 476 {
579b006f 477 if (libusb_set_configuration(ftdi->usb_dev, cfg0) < 0)
22d12cda 478 {
a56ba2bd 479 ftdi_usb_close_internal (ftdi);
43aee24f
UB
480 if(detach_errno == EPERM)
481 {
482 ftdi_error_return(-8, "inappropriate permissions on device!");
483 }
484 else
485 {
486 ftdi_error_return(-3, "unable to set usb configuration. Make sure ftdi_sio is unloaded!");
487 }
23b1798d
TJ
488 }
489 }
490
579b006f 491 if (libusb_claim_interface(ftdi->usb_dev, ftdi->interface) < 0)
22d12cda 492 {
f3f81007 493 ftdi_usb_close_internal (ftdi);
43aee24f
UB
494 if(detach_errno == EPERM)
495 {
496 ftdi_error_return(-8, "inappropriate permissions on device!");
497 }
498 else
499 {
500 ftdi_error_return(-5, "unable to claim usb device. Make sure ftdi_sio is unloaded!");
501 }
7b18bef6
TJ
502 }
503
22d12cda
TJ
504 if (ftdi_usb_reset (ftdi) != 0)
505 {
f3f81007 506 ftdi_usb_close_internal (ftdi);
7b18bef6
TJ
507 ftdi_error_return(-6, "ftdi_usb_reset failed");
508 }
509
7b18bef6
TJ
510 // Try to guess chip type
511 // Bug in the BM type chips: bcdDevice is 0x200 for serial == 0
579b006f
JZ
512 if (desc.bcdDevice == 0x400 || (desc.bcdDevice == 0x200
513 && desc.iSerialNumber == 0))
7b18bef6 514 ftdi->type = TYPE_BM;
579b006f 515 else if (desc.bcdDevice == 0x200)
7b18bef6 516 ftdi->type = TYPE_AM;
579b006f 517 else if (desc.bcdDevice == 0x500)
7b18bef6 518 ftdi->type = TYPE_2232C;
579b006f 519 else if (desc.bcdDevice == 0x600)
cb6250fa 520 ftdi->type = TYPE_R;
579b006f 521 else if (desc.bcdDevice == 0x700)
0beb9686 522 ftdi->type = TYPE_2232H;
579b006f 523 else if (desc.bcdDevice == 0x800)
0beb9686 524 ftdi->type = TYPE_4232H;
7b18bef6 525
f9d69895
AH
526 // Set default interface on dual/quad type chips
527 switch(ftdi->type)
528 {
529 case TYPE_2232C:
530 case TYPE_2232H:
531 case TYPE_4232H:
532 if (!ftdi->index)
533 ftdi->index = INTERFACE_A;
534 break;
535 default:
536 break;
537 }
538
e2f12a4f
TJ
539 // Determine maximum packet size
540 ftdi->max_packet_size = _ftdi_determine_max_packet_size(ftdi, dev);
541
ef6f4838
TE
542 if (ftdi_set_baudrate (ftdi, 9600) != 0)
543 {
544 ftdi_usb_close_internal (ftdi);
545 ftdi_error_return(-7, "set baudrate failed");
546 }
547
7b18bef6
TJ
548 ftdi_error_return(0, "all fine");
549}
550
1941414d
TJ
551/**
552 Opens the first device with a given vendor and product ids.
553
554 \param ftdi pointer to ftdi_context
555 \param vendor Vendor ID
556 \param product Product ID
557
9bec2387 558 \retval same as ftdi_usb_open_desc()
1941414d 559*/
edb82cbf
TJ
560int ftdi_usb_open(struct ftdi_context *ftdi, int vendor, int product)
561{
562 return ftdi_usb_open_desc(ftdi, vendor, product, NULL, NULL);
563}
564
1941414d
TJ
565/**
566 Opens the first device with a given, vendor id, product id,
567 description and serial.
568
569 \param ftdi pointer to ftdi_context
570 \param vendor Vendor ID
571 \param product Product ID
572 \param description Description to search for. Use NULL if not needed.
573 \param serial Serial to search for. Use NULL if not needed.
574
575 \retval 0: all fine
1941414d
TJ
576 \retval -3: usb device not found
577 \retval -4: unable to open device
578 \retval -5: unable to claim device
579 \retval -6: reset failed
580 \retval -7: set baudrate failed
581 \retval -8: get product description failed
582 \retval -9: get serial number failed
579b006f
JZ
583 \retval -11: libusb_init() failed
584 \retval -12: libusb_get_device_list() failed
585 \retval -13: libusb_get_device_descriptor() failed
a3da1d95 586*/
04e1ea0a 587int ftdi_usb_open_desc(struct ftdi_context *ftdi, int vendor, int product,
a8f46ddc
TJ
588 const char* description, const char* serial)
589{
5ebbdab9
GE
590 return ftdi_usb_open_desc_index(ftdi,vendor,product,description,serial,0);
591}
592
593/**
594 Opens the index-th device with a given, vendor id, product id,
595 description and serial.
596
597 \param ftdi pointer to ftdi_context
598 \param vendor Vendor ID
599 \param product Product ID
600 \param description Description to search for. Use NULL if not needed.
601 \param serial Serial to search for. Use NULL if not needed.
602 \param index Number of matching device to open if there are more than one, starts with 0.
603
604 \retval 0: all fine
605 \retval -1: usb_find_busses() failed
606 \retval -2: usb_find_devices() failed
607 \retval -3: usb device not found
608 \retval -4: unable to open device
609 \retval -5: unable to claim device
610 \retval -6: reset failed
611 \retval -7: set baudrate failed
612 \retval -8: get product description failed
613 \retval -9: get serial number failed
614 \retval -10: unable to close device
22a1b5c1 615 \retval -11: ftdi context invalid
5ebbdab9
GE
616*/
617int ftdi_usb_open_desc_index(struct ftdi_context *ftdi, int vendor, int product,
618 const char* description, const char* serial, unsigned int index)
619{
579b006f
JZ
620 libusb_device *dev;
621 libusb_device **devs;
c3d95b87 622 char string[256];
579b006f 623 int i = 0;
98452d97 624
579b006f
JZ
625 if (libusb_init(NULL) < 0)
626 ftdi_error_return(-11, "libusb_init() failed");
98452d97 627
579b006f
JZ
628 if (libusb_get_device_list(NULL, &devs) < 0)
629 ftdi_error_return(-12, "libusb_get_device_list() failed");
a3da1d95 630
22a1b5c1
TJ
631 if (ftdi == NULL)
632 ftdi_error_return(-11, "ftdi context invalid");
633
579b006f 634 while ((dev = devs[i++]) != NULL)
22d12cda 635 {
579b006f
JZ
636 struct libusb_device_descriptor desc;
637
638 if (libusb_get_device_descriptor(dev, &desc) < 0)
639 ftdi_error_return(-13, "libusb_get_device_descriptor() failed");
640
641 if (desc.idVendor == vendor && desc.idProduct == product)
22d12cda 642 {
579b006f
JZ
643 if (libusb_open(dev, &ftdi->usb_dev) < 0)
644 ftdi_error_return(-4, "usb_open() failed");
c3d95b87 645
579b006f
JZ
646 if (description != NULL)
647 {
648 if (libusb_get_string_descriptor_ascii(ftdi->usb_dev, desc.iProduct, (unsigned char *)string, sizeof(string)) < 0)
22d12cda 649 {
579b006f
JZ
650 libusb_close (ftdi->usb_dev);
651 ftdi_error_return(-8, "unable to fetch product description");
a8f46ddc 652 }
579b006f 653 if (strncmp(string, description, sizeof(string)) != 0)
22d12cda 654 {
579b006f
JZ
655 libusb_close (ftdi->usb_dev);
656 continue;
a8f46ddc 657 }
579b006f
JZ
658 }
659 if (serial != NULL)
660 {
661 if (libusb_get_string_descriptor_ascii(ftdi->usb_dev, desc.iSerialNumber, (unsigned char *)string, sizeof(string)) < 0)
662 {
663 ftdi_usb_close_internal (ftdi);
664 ftdi_error_return(-9, "unable to fetch serial number");
665 }
666 if (strncmp(string, serial, sizeof(string)) != 0)
667 {
668 ftdi_usb_close_internal (ftdi);
669 continue;
670 }
671 }
98452d97 672
579b006f 673 ftdi_usb_close_internal (ftdi);
d2f10023 674
5ebbdab9
GE
675 if (index > 0)
676 {
677 index--;
678 continue;
679 }
680
579b006f 681 return ftdi_usb_open_dev(ftdi, dev);
98452d97 682 }
98452d97 683 }
a3da1d95 684
98452d97 685 // device not found
c3d95b87 686 ftdi_error_return(-3, "device not found");
a3da1d95
GE
687}
688
1941414d 689/**
5ebbdab9
GE
690 Opens the ftdi-device described by a description-string.
691 Intended to be used for parsing a device-description given as commandline argument.
692
693 \param ftdi pointer to ftdi_context
694 \param description NULL-terminated description-string, using this format:
695 \li <tt>d:\<devicenode></tt> path of bus and device-node (e.g. "003/001") within usb device tree (usually at /proc/bus/usb/)
696 \li <tt>i:\<vendor>:\<product></tt> first device with given vendor and product id, ids can be decimal, octal (preceded by "0") or hex (preceded by "0x")
697 \li <tt>i:\<vendor>:\<product>:\<index></tt> as above with index being the number of the device (starting with 0) if there are more than one
698 \li <tt>s:\<vendor>:\<product>:\<serial></tt> first device with given vendor id, product id and serial string
699
700 \note The description format may be extended in later versions.
701
702 \retval 0: all fine
579b006f
JZ
703 \retval -1: libusb_init() failed
704 \retval -2: libusb_get_device_list() failed
5ebbdab9
GE
705 \retval -3: usb device not found
706 \retval -4: unable to open device
707 \retval -5: unable to claim device
708 \retval -6: reset failed
709 \retval -7: set baudrate failed
710 \retval -8: get product description failed
711 \retval -9: get serial number failed
712 \retval -10: unable to close device
713 \retval -11: illegal description format
22a1b5c1 714 \retval -12: ftdi context invalid
5ebbdab9
GE
715*/
716int ftdi_usb_open_string(struct ftdi_context *ftdi, const char* description)
717{
22a1b5c1
TJ
718 if (ftdi == NULL)
719 ftdi_error_return(-12, "ftdi context invalid");
720
5ebbdab9
GE
721 if (description[0] == 0 || description[1] != ':')
722 ftdi_error_return(-11, "illegal description format");
723
724 if (description[0] == 'd')
725 {
579b006f
JZ
726 libusb_device *dev;
727 libusb_device **devs;
728 unsigned int bus_number, device_address;
729 int i = 0;
730
731 if (libusb_init (NULL) < 0)
732 ftdi_error_return(-1, "libusb_init() failed");
5ebbdab9 733
579b006f
JZ
734 if (libusb_get_device_list(NULL, &devs) < 0)
735 ftdi_error_return(-2, "libusb_get_device_list() failed");
5ebbdab9 736
579b006f
JZ
737 /* XXX: This doesn't handle symlinks/odd paths/etc... */
738 if (sscanf (description + 2, "%u/%u", &bus_number, &device_address) != 2)
739 ftdi_error_return(-11, "illegal description format");
5ebbdab9 740
579b006f 741 while ((dev = devs[i++]) != NULL)
5ebbdab9 742 {
579b006f
JZ
743 if (bus_number == libusb_get_bus_number (dev)
744 && device_address == libusb_get_device_address (dev))
3d0099ee 745 return ftdi_usb_open_dev(ftdi, dev);
5ebbdab9
GE
746 }
747
748 // device not found
749 ftdi_error_return(-3, "device not found");
750 }
751 else if (description[0] == 'i' || description[0] == 's')
752 {
753 unsigned int vendor;
754 unsigned int product;
755 unsigned int index=0;
0e6cf62b 756 const char *serial=NULL;
5ebbdab9
GE
757 const char *startp, *endp;
758
759 errno=0;
760 startp=description+2;
761 vendor=strtoul((char*)startp,(char**)&endp,0);
762 if (*endp != ':' || endp == startp || errno != 0)
763 ftdi_error_return(-11, "illegal description format");
764
765 startp=endp+1;
766 product=strtoul((char*)startp,(char**)&endp,0);
767 if (endp == startp || errno != 0)
768 ftdi_error_return(-11, "illegal description format");
769
770 if (description[0] == 'i' && *endp != 0)
771 {
772 /* optional index field in i-mode */
773 if (*endp != ':')
774 ftdi_error_return(-11, "illegal description format");
775
776 startp=endp+1;
777 index=strtoul((char*)startp,(char**)&endp,0);
778 if (*endp != 0 || endp == startp || errno != 0)
779 ftdi_error_return(-11, "illegal description format");
780 }
781 if (description[0] == 's')
782 {
783 if (*endp != ':')
784 ftdi_error_return(-11, "illegal description format");
785
786 /* rest of the description is the serial */
787 serial=endp+1;
788 }
789
790 return ftdi_usb_open_desc_index(ftdi, vendor, product, NULL, serial, index);
791 }
792 else
793 {
794 ftdi_error_return(-11, "illegal description format");
795 }
796}
797
798/**
1941414d 799 Resets the ftdi device.
a3da1d95 800
1941414d
TJ
801 \param ftdi pointer to ftdi_context
802
803 \retval 0: all fine
804 \retval -1: FTDI reset failed
22a1b5c1 805 \retval -2: USB device unavailable
4837f98a 806*/
edb82cbf 807int ftdi_usb_reset(struct ftdi_context *ftdi)
a8f46ddc 808{
22a1b5c1
TJ
809 if (ftdi == NULL || ftdi->usb_dev == NULL)
810 ftdi_error_return(-2, "USB device unavailable");
811
579b006f
JZ
812 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
813 SIO_RESET_REQUEST, SIO_RESET_SIO,
814 ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
22d12cda 815 ftdi_error_return(-1,"FTDI reset failed");
c3d95b87 816
545820ce 817 // Invalidate data in the readbuffer
bfcee05b
TJ
818 ftdi->readbuffer_offset = 0;
819 ftdi->readbuffer_remaining = 0;
820
a3da1d95
GE
821 return 0;
822}
823
1941414d 824/**
1189b11a 825 Clears the read buffer on the chip and the internal read buffer.
1941414d
TJ
826
827 \param ftdi pointer to ftdi_context
4837f98a 828
1941414d 829 \retval 0: all fine
1189b11a 830 \retval -1: read buffer purge failed
22a1b5c1 831 \retval -2: USB device unavailable
4837f98a 832*/
1189b11a 833int ftdi_usb_purge_rx_buffer(struct ftdi_context *ftdi)
a8f46ddc 834{
22a1b5c1
TJ
835 if (ftdi == NULL || ftdi->usb_dev == NULL)
836 ftdi_error_return(-2, "USB device unavailable");
837
579b006f
JZ
838 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
839 SIO_RESET_REQUEST, SIO_RESET_PURGE_RX,
840 ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87
TJ
841 ftdi_error_return(-1, "FTDI purge of RX buffer failed");
842
545820ce 843 // Invalidate data in the readbuffer
bfcee05b
TJ
844 ftdi->readbuffer_offset = 0;
845 ftdi->readbuffer_remaining = 0;
a60be878 846
1189b11a
TJ
847 return 0;
848}
849
850/**
851 Clears the write buffer on the chip.
852
853 \param ftdi pointer to ftdi_context
854
855 \retval 0: all fine
856 \retval -1: write buffer purge failed
22a1b5c1 857 \retval -2: USB device unavailable
1189b11a
TJ
858*/
859int ftdi_usb_purge_tx_buffer(struct ftdi_context *ftdi)
860{
22a1b5c1
TJ
861 if (ftdi == NULL || ftdi->usb_dev == NULL)
862 ftdi_error_return(-2, "USB device unavailable");
863
579b006f
JZ
864 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
865 SIO_RESET_REQUEST, SIO_RESET_PURGE_TX,
866 ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
1189b11a
TJ
867 ftdi_error_return(-1, "FTDI purge of TX buffer failed");
868
869 return 0;
870}
871
872/**
873 Clears the buffers on the chip and the internal read buffer.
874
875 \param ftdi pointer to ftdi_context
876
877 \retval 0: all fine
878 \retval -1: read buffer purge failed
879 \retval -2: write buffer purge failed
22a1b5c1 880 \retval -3: USB device unavailable
1189b11a
TJ
881*/
882int ftdi_usb_purge_buffers(struct ftdi_context *ftdi)
883{
884 int result;
885
22a1b5c1
TJ
886 if (ftdi == NULL || ftdi->usb_dev == NULL)
887 ftdi_error_return(-3, "USB device unavailable");
888
1189b11a 889 result = ftdi_usb_purge_rx_buffer(ftdi);
5a2b51cb 890 if (result < 0)
1189b11a
TJ
891 return -1;
892
893 result = ftdi_usb_purge_tx_buffer(ftdi);
5a2b51cb 894 if (result < 0)
1189b11a 895 return -2;
545820ce 896
a60be878
TJ
897 return 0;
898}
a3da1d95 899
f3f81007
TJ
900
901
1941414d
TJ
902/**
903 Closes the ftdi device. Call ftdi_deinit() if you're cleaning up.
904
905 \param ftdi pointer to ftdi_context
906
907 \retval 0: all fine
908 \retval -1: usb_release failed
22a1b5c1 909 \retval -3: ftdi context invalid
a3da1d95 910*/
a8f46ddc
TJ
911int ftdi_usb_close(struct ftdi_context *ftdi)
912{
a3da1d95
GE
913 int rtn = 0;
914
22a1b5c1
TJ
915 if (ftdi == NULL)
916 ftdi_error_return(-3, "ftdi context invalid");
917
dff4fdb0 918 if (ftdi->usb_dev != NULL)
579b006f 919 if (libusb_release_interface(ftdi->usb_dev, ftdi->interface) < 0)
dff4fdb0 920 rtn = -1;
98452d97 921
579b006f 922 ftdi_usb_close_internal (ftdi);
98452d97 923
a3da1d95
GE
924 return rtn;
925}
926
418aaa72 927/**
53ad271d
TJ
928 ftdi_convert_baudrate returns nearest supported baud rate to that requested.
929 Function is only used internally
b5ec1820 930 \internal
53ad271d 931*/
0126d22e 932static int ftdi_convert_baudrate(int baudrate, struct ftdi_context *ftdi,
a8f46ddc
TJ
933 unsigned short *value, unsigned short *index)
934{
53ad271d
TJ
935 static const char am_adjust_up[8] = {0, 0, 0, 1, 0, 3, 2, 1};
936 static const char am_adjust_dn[8] = {0, 0, 0, 1, 0, 1, 2, 3};
937 static const char frac_code[8] = {0, 3, 2, 4, 1, 5, 6, 7};
938 int divisor, best_divisor, best_baud, best_baud_diff;
939 unsigned long encoded_divisor;
940 int i;
941
22d12cda
TJ
942 if (baudrate <= 0)
943 {
53ad271d
TJ
944 // Return error
945 return -1;
946 }
947
948 divisor = 24000000 / baudrate;
949
22d12cda
TJ
950 if (ftdi->type == TYPE_AM)
951 {
53ad271d
TJ
952 // Round down to supported fraction (AM only)
953 divisor -= am_adjust_dn[divisor & 7];
954 }
955
956 // Try this divisor and the one above it (because division rounds down)
957 best_divisor = 0;
958 best_baud = 0;
959 best_baud_diff = 0;
22d12cda
TJ
960 for (i = 0; i < 2; i++)
961 {
53ad271d
TJ
962 int try_divisor = divisor + i;
963 int baud_estimate;
964 int baud_diff;
965
966 // Round up to supported divisor value
22d12cda
TJ
967 if (try_divisor <= 8)
968 {
53ad271d
TJ
969 // Round up to minimum supported divisor
970 try_divisor = 8;
22d12cda
TJ
971 }
972 else if (ftdi->type != TYPE_AM && try_divisor < 12)
973 {
53ad271d
TJ
974 // BM doesn't support divisors 9 through 11 inclusive
975 try_divisor = 12;
22d12cda
TJ
976 }
977 else if (divisor < 16)
978 {
53ad271d
TJ
979 // AM doesn't support divisors 9 through 15 inclusive
980 try_divisor = 16;
22d12cda
TJ
981 }
982 else
983 {
984 if (ftdi->type == TYPE_AM)
985 {
53ad271d
TJ
986 // Round up to supported fraction (AM only)
987 try_divisor += am_adjust_up[try_divisor & 7];
22d12cda
TJ
988 if (try_divisor > 0x1FFF8)
989 {
53ad271d
TJ
990 // Round down to maximum supported divisor value (for AM)
991 try_divisor = 0x1FFF8;
992 }
22d12cda
TJ
993 }
994 else
995 {
996 if (try_divisor > 0x1FFFF)
997 {
53ad271d
TJ
998 // Round down to maximum supported divisor value (for BM)
999 try_divisor = 0x1FFFF;
1000 }
1001 }
1002 }
1003 // Get estimated baud rate (to nearest integer)
1004 baud_estimate = (24000000 + (try_divisor / 2)) / try_divisor;
1005 // Get absolute difference from requested baud rate
22d12cda
TJ
1006 if (baud_estimate < baudrate)
1007 {
53ad271d 1008 baud_diff = baudrate - baud_estimate;
22d12cda
TJ
1009 }
1010 else
1011 {
53ad271d
TJ
1012 baud_diff = baud_estimate - baudrate;
1013 }
22d12cda
TJ
1014 if (i == 0 || baud_diff < best_baud_diff)
1015 {
53ad271d
TJ
1016 // Closest to requested baud rate so far
1017 best_divisor = try_divisor;
1018 best_baud = baud_estimate;
1019 best_baud_diff = baud_diff;
22d12cda
TJ
1020 if (baud_diff == 0)
1021 {
53ad271d
TJ
1022 // Spot on! No point trying
1023 break;
1024 }
1025 }
1026 }
1027 // Encode the best divisor value
1028 encoded_divisor = (best_divisor >> 3) | (frac_code[best_divisor & 7] << 14);
1029 // Deal with special cases for encoded value
22d12cda
TJ
1030 if (encoded_divisor == 1)
1031 {
4837f98a 1032 encoded_divisor = 0; // 3000000 baud
22d12cda
TJ
1033 }
1034 else if (encoded_divisor == 0x4001)
1035 {
4837f98a 1036 encoded_divisor = 1; // 2000000 baud (BM only)
53ad271d
TJ
1037 }
1038 // Split into "value" and "index" values
1039 *value = (unsigned short)(encoded_divisor & 0xFFFF);
1416eb14 1040 if (ftdi->type == TYPE_2232C || ftdi->type == TYPE_2232H || ftdi->type == TYPE_4232H)
22d12cda 1041 {
0126d22e
TJ
1042 *index = (unsigned short)(encoded_divisor >> 8);
1043 *index &= 0xFF00;
a9c57c05 1044 *index |= ftdi->index;
0126d22e
TJ
1045 }
1046 else
1047 *index = (unsigned short)(encoded_divisor >> 16);
c3d95b87 1048
53ad271d
TJ
1049 // Return the nearest baud rate
1050 return best_baud;
1051}
1052
1941414d 1053/**
9bec2387 1054 Sets the chip baud rate
1941414d
TJ
1055
1056 \param ftdi pointer to ftdi_context
9bec2387 1057 \param baudrate baud rate to set
1941414d
TJ
1058
1059 \retval 0: all fine
1060 \retval -1: invalid baudrate
1061 \retval -2: setting baudrate failed
22a1b5c1 1062 \retval -3: USB device unavailable
a3da1d95 1063*/
a8f46ddc
TJ
1064int ftdi_set_baudrate(struct ftdi_context *ftdi, int baudrate)
1065{
53ad271d
TJ
1066 unsigned short value, index;
1067 int actual_baudrate;
a3da1d95 1068
22a1b5c1
TJ
1069 if (ftdi == NULL || ftdi->usb_dev == NULL)
1070 ftdi_error_return(-3, "USB device unavailable");
1071
22d12cda
TJ
1072 if (ftdi->bitbang_enabled)
1073 {
a3da1d95
GE
1074 baudrate = baudrate*4;
1075 }
1076
25707904 1077 actual_baudrate = ftdi_convert_baudrate(baudrate, ftdi, &value, &index);
c3d95b87
TJ
1078 if (actual_baudrate <= 0)
1079 ftdi_error_return (-1, "Silly baudrate <= 0.");
a3da1d95 1080
53ad271d
TJ
1081 // Check within tolerance (about 5%)
1082 if ((actual_baudrate * 2 < baudrate /* Catch overflows */ )
1083 || ((actual_baudrate < baudrate)
1084 ? (actual_baudrate * 21 < baudrate * 20)
c3d95b87
TJ
1085 : (baudrate * 21 < actual_baudrate * 20)))
1086 ftdi_error_return (-1, "Unsupported baudrate. Note: bitbang baudrates are automatically multiplied by 4");
545820ce 1087
579b006f
JZ
1088 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
1089 SIO_SET_BAUDRATE_REQUEST, value,
1090 index, NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87 1091 ftdi_error_return (-2, "Setting new baudrate failed");
a3da1d95
GE
1092
1093 ftdi->baudrate = baudrate;
1094 return 0;
1095}
1096
1941414d 1097/**
6c32e222
TJ
1098 Set (RS232) line characteristics.
1099 The break type can only be set via ftdi_set_line_property2()
1100 and defaults to "off".
4837f98a 1101
1941414d
TJ
1102 \param ftdi pointer to ftdi_context
1103 \param bits Number of bits
1104 \param sbit Number of stop bits
1105 \param parity Parity mode
1106
1107 \retval 0: all fine
1108 \retval -1: Setting line property failed
2f73e59f
TJ
1109*/
1110int ftdi_set_line_property(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
d2f10023 1111 enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity)
2f73e59f 1112{
6c32e222
TJ
1113 return ftdi_set_line_property2(ftdi, bits, sbit, parity, BREAK_OFF);
1114}
1115
1116/**
1117 Set (RS232) line characteristics
1118
1119 \param ftdi pointer to ftdi_context
1120 \param bits Number of bits
1121 \param sbit Number of stop bits
1122 \param parity Parity mode
1123 \param break_type Break type
1124
1125 \retval 0: all fine
1126 \retval -1: Setting line property failed
22a1b5c1 1127 \retval -2: USB device unavailable
6c32e222
TJ
1128*/
1129int ftdi_set_line_property2(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
22d12cda
TJ
1130 enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity,
1131 enum ftdi_break_type break_type)
6c32e222 1132{
2f73e59f
TJ
1133 unsigned short value = bits;
1134
22a1b5c1
TJ
1135 if (ftdi == NULL || ftdi->usb_dev == NULL)
1136 ftdi_error_return(-2, "USB device unavailable");
1137
22d12cda
TJ
1138 switch (parity)
1139 {
1140 case NONE:
1141 value |= (0x00 << 8);
1142 break;
1143 case ODD:
1144 value |= (0x01 << 8);
1145 break;
1146 case EVEN:
1147 value |= (0x02 << 8);
1148 break;
1149 case MARK:
1150 value |= (0x03 << 8);
1151 break;
1152 case SPACE:
1153 value |= (0x04 << 8);
1154 break;
2f73e59f 1155 }
d2f10023 1156
22d12cda
TJ
1157 switch (sbit)
1158 {
1159 case STOP_BIT_1:
1160 value |= (0x00 << 11);
1161 break;
1162 case STOP_BIT_15:
1163 value |= (0x01 << 11);
1164 break;
1165 case STOP_BIT_2:
1166 value |= (0x02 << 11);
1167 break;
2f73e59f 1168 }
d2f10023 1169
22d12cda
TJ
1170 switch (break_type)
1171 {
1172 case BREAK_OFF:
1173 value |= (0x00 << 14);
1174 break;
1175 case BREAK_ON:
1176 value |= (0x01 << 14);
1177 break;
6c32e222
TJ
1178 }
1179
579b006f
JZ
1180 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
1181 SIO_SET_DATA_REQUEST, value,
1182 ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
2f73e59f 1183 ftdi_error_return (-1, "Setting new line property failed");
d2f10023 1184
2f73e59f
TJ
1185 return 0;
1186}
a3da1d95 1187
1941414d
TJ
1188/**
1189 Writes data in chunks (see ftdi_write_data_set_chunksize()) to the chip
1190
1191 \param ftdi pointer to ftdi_context
1192 \param buf Buffer with the data
1193 \param size Size of the buffer
1194
22a1b5c1 1195 \retval -666: USB device unavailable
1941414d
TJ
1196 \retval <0: error code from usb_bulk_write()
1197 \retval >0: number of bytes written
1198*/
a8f46ddc
TJ
1199int ftdi_write_data(struct ftdi_context *ftdi, unsigned char *buf, int size)
1200{
a3da1d95 1201 int offset = 0;
579b006f 1202 int actual_length;
c3d95b87 1203
22a1b5c1
TJ
1204 if (ftdi == NULL || ftdi->usb_dev == NULL)
1205 ftdi_error_return(-666, "USB device unavailable");
1206
22d12cda
TJ
1207 while (offset < size)
1208 {
948f9ada 1209 int write_size = ftdi->writebuffer_chunksize;
a3da1d95
GE
1210
1211 if (offset+write_size > size)
1212 write_size = size-offset;
1213
579b006f
JZ
1214 if (libusb_bulk_transfer(ftdi->usb_dev, ftdi->in_ep, buf+offset, write_size, &actual_length, ftdi->usb_write_timeout) < 0)
1215 ftdi_error_return(-1, "usb bulk write failed");
a3da1d95 1216
579b006f 1217 offset += actual_length;
a3da1d95
GE
1218 }
1219
579b006f 1220 return offset;
a3da1d95
GE
1221}
1222
f01d7ca6 1223#ifdef LIBFTDI_LINUX_ASYNC_MODE
e59bc450
CW
1224#ifdef USB_CLASS_PTP
1225#error LIBFTDI_LINUX_ASYNC_MODE is not compatible with libusb-compat-0.1!
1226#endif
579b006f 1227static void ftdi_read_data_cb(struct libusb_transfer *transfer)
22d12cda 1228{
579b006f
JZ
1229 struct ftdi_transfer_control *tc = (struct ftdi_transfer_control *) transfer->user_data;
1230 struct ftdi_context *ftdi = tc->ftdi;
1231 int packet_size, actual_length, num_of_chunks, chunk_remains, i, ret;
4c9e3812 1232
b1139150 1233 packet_size = ftdi->max_packet_size;
579b006f
JZ
1234
1235 actual_length = transfer->actual_length;
1236
1237 if (actual_length > 2)
1238 {
1239 // skip FTDI status bytes.
1240 // Maybe stored in the future to enable modem use
1241 num_of_chunks = actual_length / packet_size;
1242 chunk_remains = actual_length % packet_size;
1243 //printf("actual_length = %X, num_of_chunks = %X, chunk_remains = %X, readbuffer_offset = %X\n", actual_length, num_of_chunks, chunk_remains, ftdi->readbuffer_offset);
1244
1245 ftdi->readbuffer_offset += 2;
1246 actual_length -= 2;
1247
1248 if (actual_length > packet_size - 2)
1249 {
1250 for (i = 1; i < num_of_chunks; i++)
1251 memmove (ftdi->readbuffer+ftdi->readbuffer_offset+(packet_size - 2)*i,
1252 ftdi->readbuffer+ftdi->readbuffer_offset+packet_size*i,
1253 packet_size - 2);
1254 if (chunk_remains > 2)
1255 {
1256 memmove (ftdi->readbuffer+ftdi->readbuffer_offset+(packet_size - 2)*i,
1257 ftdi->readbuffer+ftdi->readbuffer_offset+packet_size*i,
1258 chunk_remains-2);
1259 actual_length -= 2*num_of_chunks;
1260 }
1261 else
1262 actual_length -= 2*(num_of_chunks-1)+chunk_remains;
1263 }
1264
1265 if (actual_length > 0)
1266 {
1267 // data still fits in buf?
1268 if (tc->offset + actual_length <= tc->size)
1269 {
1270 memcpy (tc->buf + tc->offset, ftdi->readbuffer + ftdi->readbuffer_offset, actual_length);
1271 //printf("buf[0] = %X, buf[1] = %X\n", buf[0], buf[1]);
1272 tc->offset += actual_length;
1273
1274 ftdi->readbuffer_offset = 0;
1275 ftdi->readbuffer_remaining = 0;
1276
1277 /* Did we read exactly the right amount of bytes? */
1278 if (tc->offset == tc->size)
1279 {
1280 //printf("read_data exact rem %d offset %d\n",
1281 //ftdi->readbuffer_remaining, offset);
1282 tc->completed = 1;
1283 return;
1284 }
1285 }
1286 else
1287 {
1288 // only copy part of the data or size <= readbuffer_chunksize
1289 int part_size = tc->size - tc->offset;
1290 memcpy (tc->buf + tc->offset, ftdi->readbuffer + ftdi->readbuffer_offset, part_size);
1291 tc->offset += part_size;
1292
1293 ftdi->readbuffer_offset += part_size;
1294 ftdi->readbuffer_remaining = actual_length - part_size;
1295
1296 /* printf("Returning part: %d - size: %d - offset: %d - actual_length: %d - remaining: %d\n",
1297 part_size, size, offset, actual_length, ftdi->readbuffer_remaining); */
1298 tc->completed = 1;
1299 return;
1300 }
1301 }
1302 }
1303 ret = libusb_submit_transfer (transfer);
1304 if (ret < 0)
1305 tc->completed = 1;
1306}
1307
1308
1309static void ftdi_write_data_cb(struct libusb_transfer *transfer)
7cc9950e 1310{
579b006f
JZ
1311 struct ftdi_transfer_control *tc = (struct ftdi_transfer_control *) transfer->user_data;
1312 struct ftdi_context *ftdi = tc->ftdi;
1313
1314 tc->offset = transfer->actual_length;
7cc9950e 1315
579b006f 1316 if (tc->offset == tc->size)
22d12cda 1317 {
579b006f 1318 tc->completed = 1;
7cc9950e 1319 }
579b006f
JZ
1320 else
1321 {
1322 int write_size = ftdi->writebuffer_chunksize;
1323 int ret;
7cc9950e 1324
579b006f
JZ
1325 if (tc->offset + write_size > tc->size)
1326 write_size = tc->size - tc->offset;
1327
1328 transfer->length = write_size;
1329 transfer->buffer = tc->buf + tc->offset;
1330 ret = libusb_submit_transfer (transfer);
1331 if (ret < 0)
1332 tc->completed = 1;
1333 }
7cc9950e
GE
1334}
1335
579b006f 1336
84f85aaa 1337/**
579b006f
JZ
1338 Writes data to the chip. Does not wait for completion of the transfer
1339 nor does it make sure that the transfer was successful.
1340
1341 Use libusb 1.0 Asynchronous API.
1342 Only available if compiled with --with-async-mode.
84f85aaa
GE
1343
1344 \param ftdi pointer to ftdi_context
579b006f
JZ
1345 \param buf Buffer with the data
1346 \param size Size of the buffer
84f85aaa 1347
579b006f
JZ
1348 \retval NULL: Some error happens when submit transfer
1349 \retval !NULL: Pointer to a ftdi_transfer_control
c201f80f 1350*/
579b006f
JZ
1351
1352struct ftdi_transfer_control *ftdi_write_data_submit(struct ftdi_context *ftdi, unsigned char *buf, int size)
7cc9950e 1353{
579b006f
JZ
1354 struct ftdi_transfer_control *tc;
1355 struct libusb_transfer *transfer = libusb_alloc_transfer(0);
1356 int write_size, ret;
22d12cda 1357
22a1b5c1
TJ
1358 if (ftdi == NULL || ftdi->usb_dev == NULL)
1359 {
1360 libusb_free_transfer(transfer);
1361 return NULL;
1362 }
1363
579b006f 1364 tc = (struct ftdi_transfer_control *) malloc (sizeof (*tc));
22d12cda 1365
579b006f
JZ
1366 if (!tc || !transfer)
1367 return NULL;
22d12cda 1368
579b006f
JZ
1369 tc->ftdi = ftdi;
1370 tc->completed = 0;
1371 tc->buf = buf;
1372 tc->size = size;
1373 tc->offset = 0;
7cc9950e 1374
579b006f
JZ
1375 if (size < ftdi->writebuffer_chunksize)
1376 write_size = size;
1377 else
1378 write_size = ftdi->writebuffer_chunksize;
22d12cda 1379
579b006f
JZ
1380 libusb_fill_bulk_transfer(transfer, ftdi->usb_dev, ftdi->in_ep, buf, write_size, ftdi_write_data_cb, tc, ftdi->usb_write_timeout);
1381 transfer->type = LIBUSB_TRANSFER_TYPE_BULK;
7cc9950e 1382
579b006f
JZ
1383 ret = libusb_submit_transfer(transfer);
1384 if (ret < 0)
1385 {
1386 libusb_free_transfer(transfer);
1387 tc->completed = 1;
1388 tc->transfer = NULL;
1389 return NULL;
7cc9950e 1390 }
579b006f
JZ
1391 tc->transfer = transfer;
1392
1393 return tc;
7cc9950e
GE
1394}
1395
1396/**
579b006f
JZ
1397 Reads data from the chip. Does not wait for completion of the transfer
1398 nor does it make sure that the transfer was successful.
1399
1400 Use libusb 1.0 Asynchronous API.
1401 Only available if compiled with --with-async-mode.
7cc9950e
GE
1402
1403 \param ftdi pointer to ftdi_context
579b006f
JZ
1404 \param buf Buffer with the data
1405 \param size Size of the buffer
4c9e3812 1406
579b006f
JZ
1407 \retval NULL: Some error happens when submit transfer
1408 \retval !NULL: Pointer to a ftdi_transfer_control
4c9e3812 1409*/
579b006f
JZ
1410
1411struct ftdi_transfer_control *ftdi_read_data_submit(struct ftdi_context *ftdi, unsigned char *buf, int size)
4c9e3812 1412{
579b006f
JZ
1413 struct ftdi_transfer_control *tc;
1414 struct libusb_transfer *transfer;
1415 int ret;
22d12cda 1416
22a1b5c1
TJ
1417 if (ftdi == NULL || ftdi->usb_dev == NULL)
1418 return NULL;
1419
579b006f
JZ
1420 tc = (struct ftdi_transfer_control *) malloc (sizeof (*tc));
1421 if (!tc)
1422 return NULL;
1423
1424 tc->ftdi = ftdi;
1425 tc->buf = buf;
1426 tc->size = size;
1427
1428 if (size <= ftdi->readbuffer_remaining)
7cc9950e 1429 {
579b006f 1430 memcpy (buf, ftdi->readbuffer+ftdi->readbuffer_offset, size);
7cc9950e 1431
579b006f
JZ
1432 // Fix offsets
1433 ftdi->readbuffer_remaining -= size;
1434 ftdi->readbuffer_offset += size;
7cc9950e 1435
579b006f 1436 /* printf("Returning bytes from buffer: %d - remaining: %d\n", size, ftdi->readbuffer_remaining); */
22d12cda 1437
579b006f
JZ
1438 tc->completed = 1;
1439 tc->offset = size;
1440 tc->transfer = NULL;
1441 return tc;
1442 }
4c9e3812 1443
579b006f
JZ
1444 tc->completed = 0;
1445 if (ftdi->readbuffer_remaining != 0)
1446 {
1447 memcpy (buf, ftdi->readbuffer+ftdi->readbuffer_offset, ftdi->readbuffer_remaining);
22d12cda 1448
579b006f
JZ
1449 tc->offset = ftdi->readbuffer_remaining;
1450 }
1451 else
1452 tc->offset = 0;
22d12cda 1453
579b006f
JZ
1454 transfer = libusb_alloc_transfer(0);
1455 if (!transfer)
1456 {
1457 free (tc);
1458 return NULL;
1459 }
22d12cda 1460
579b006f
JZ
1461 ftdi->readbuffer_remaining = 0;
1462 ftdi->readbuffer_offset = 0;
1463
1464 libusb_fill_bulk_transfer(transfer, ftdi->usb_dev, ftdi->out_ep, ftdi->readbuffer, ftdi->readbuffer_chunksize, ftdi_read_data_cb, tc, ftdi->usb_read_timeout);
1465 transfer->type = LIBUSB_TRANSFER_TYPE_BULK;
1466
1467 ret = libusb_submit_transfer(transfer);
1468 if (ret < 0)
1469 {
1470 libusb_free_transfer(transfer);
1471 free (tc);
1472 return NULL;
22d12cda 1473 }
579b006f
JZ
1474 tc->transfer = transfer;
1475
1476 return tc;
4c9e3812
GE
1477}
1478
1479/**
579b006f 1480 Wait for completion of the transfer.
4c9e3812 1481
579b006f 1482 Use libusb 1.0 Asynchronous API.
cef378aa 1483 Only available if compiled with --with-async-mode.
4c9e3812 1484
579b006f 1485 \param tc pointer to ftdi_transfer_control
4c9e3812 1486
579b006f
JZ
1487 \retval < 0: Some error happens
1488 \retval >= 0: Data size transferred
4c9e3812 1489*/
579b006f
JZ
1490
1491int ftdi_transfer_data_done(struct ftdi_transfer_control *tc)
4c9e3812
GE
1492{
1493 int ret;
4c9e3812 1494
579b006f 1495 while (!tc->completed)
22d12cda 1496 {
579b006f 1497 ret = libusb_handle_events(NULL);
4c9e3812 1498 if (ret < 0)
579b006f
JZ
1499 {
1500 if (ret == LIBUSB_ERROR_INTERRUPTED)
1501 continue;
1502 libusb_cancel_transfer(tc->transfer);
1503 while (!tc->completed)
1504 if (libusb_handle_events(NULL) < 0)
1505 break;
1506 libusb_free_transfer(tc->transfer);
1507 free (tc);
1508 tc = NULL;
1509 return ret;
1510 }
4c9e3812
GE
1511 }
1512
579b006f
JZ
1513 if (tc->transfer->status == LIBUSB_TRANSFER_COMPLETED)
1514 ret = tc->offset;
1515 else
1516 ret = -1;
1517
1518 libusb_free_transfer(tc->transfer);
1519 free(tc);
1520 return ret;
4c9e3812 1521}
579b006f 1522
f01d7ca6 1523#endif // LIBFTDI_LINUX_ASYNC_MODE
4c9e3812 1524
1941414d
TJ
1525/**
1526 Configure write buffer chunk size.
1527 Default is 4096.
1528
1529 \param ftdi pointer to ftdi_context
1530 \param chunksize Chunk size
a3da1d95 1531
1941414d 1532 \retval 0: all fine
22a1b5c1 1533 \retval -1: ftdi context invalid
1941414d 1534*/
a8f46ddc
TJ
1535int ftdi_write_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize)
1536{
22a1b5c1
TJ
1537 if (ftdi == NULL)
1538 ftdi_error_return(-1, "ftdi context invalid");
1539
948f9ada
TJ
1540 ftdi->writebuffer_chunksize = chunksize;
1541 return 0;
1542}
1543
1941414d
TJ
1544/**
1545 Get write buffer chunk size.
1546
1547 \param ftdi pointer to ftdi_context
1548 \param chunksize Pointer to store chunk size in
948f9ada 1549
1941414d 1550 \retval 0: all fine
22a1b5c1 1551 \retval -1: ftdi context invalid
1941414d 1552*/
a8f46ddc
TJ
1553int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize)
1554{
22a1b5c1
TJ
1555 if (ftdi == NULL)
1556 ftdi_error_return(-1, "ftdi context invalid");
1557
948f9ada
TJ
1558 *chunksize = ftdi->writebuffer_chunksize;
1559 return 0;
1560}
cbabb7d3 1561
1941414d
TJ
1562/**
1563 Reads data in chunks (see ftdi_read_data_set_chunksize()) from the chip.
1564
1565 Automatically strips the two modem status bytes transfered during every read.
948f9ada 1566
1941414d
TJ
1567 \param ftdi pointer to ftdi_context
1568 \param buf Buffer to store data in
1569 \param size Size of the buffer
1570
22a1b5c1 1571 \retval -666: USB device unavailable
579b006f 1572 \retval <0: error code from libusb_bulk_transfer()
d77b0e94 1573 \retval 0: no data was available
1941414d
TJ
1574 \retval >0: number of bytes read
1575
1941414d 1576*/
a8f46ddc
TJ
1577int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size)
1578{
579b006f 1579 int offset = 0, ret, i, num_of_chunks, chunk_remains;
e2f12a4f 1580 int packet_size = ftdi->max_packet_size;
579b006f 1581 int actual_length = 1;
f2f00cb5 1582
22a1b5c1
TJ
1583 if (ftdi == NULL || ftdi->usb_dev == NULL)
1584 ftdi_error_return(-666, "USB device unavailable");
1585
e2f12a4f
TJ
1586 // Packet size sanity check (avoid division by zero)
1587 if (packet_size == 0)
1588 ftdi_error_return(-1, "max_packet_size is bogus (zero)");
d9f0cce7 1589
948f9ada 1590 // everything we want is still in the readbuffer?
22d12cda
TJ
1591 if (size <= ftdi->readbuffer_remaining)
1592 {
d9f0cce7
TJ
1593 memcpy (buf, ftdi->readbuffer+ftdi->readbuffer_offset, size);
1594
1595 // Fix offsets
1596 ftdi->readbuffer_remaining -= size;
1597 ftdi->readbuffer_offset += size;
1598
545820ce 1599 /* printf("Returning bytes from buffer: %d - remaining: %d\n", size, ftdi->readbuffer_remaining); */
d9f0cce7
TJ
1600
1601 return size;
979a145c 1602 }
948f9ada 1603 // something still in the readbuffer, but not enough to satisfy 'size'?
22d12cda
TJ
1604 if (ftdi->readbuffer_remaining != 0)
1605 {
d9f0cce7 1606 memcpy (buf, ftdi->readbuffer+ftdi->readbuffer_offset, ftdi->readbuffer_remaining);
979a145c 1607
d9f0cce7
TJ
1608 // Fix offset
1609 offset += ftdi->readbuffer_remaining;
948f9ada 1610 }
948f9ada 1611 // do the actual USB read
579b006f 1612 while (offset < size && actual_length > 0)
22d12cda 1613 {
d9f0cce7
TJ
1614 ftdi->readbuffer_remaining = 0;
1615 ftdi->readbuffer_offset = 0;
98452d97 1616 /* returns how much received */
579b006f 1617 ret = libusb_bulk_transfer (ftdi->usb_dev, ftdi->out_ep, ftdi->readbuffer, ftdi->readbuffer_chunksize, &actual_length, ftdi->usb_read_timeout);
c3d95b87
TJ
1618 if (ret < 0)
1619 ftdi_error_return(ret, "usb bulk read failed");
98452d97 1620
579b006f 1621 if (actual_length > 2)
22d12cda 1622 {
d9f0cce7
TJ
1623 // skip FTDI status bytes.
1624 // Maybe stored in the future to enable modem use
579b006f
JZ
1625 num_of_chunks = actual_length / packet_size;
1626 chunk_remains = actual_length % packet_size;
1627 //printf("actual_length = %X, num_of_chunks = %X, chunk_remains = %X, readbuffer_offset = %X\n", actual_length, num_of_chunks, chunk_remains, ftdi->readbuffer_offset);
1c733d33 1628
d9f0cce7 1629 ftdi->readbuffer_offset += 2;
579b006f 1630 actual_length -= 2;
1c733d33 1631
579b006f 1632 if (actual_length > packet_size - 2)
22d12cda 1633 {
1c733d33 1634 for (i = 1; i < num_of_chunks; i++)
f2f00cb5
DC
1635 memmove (ftdi->readbuffer+ftdi->readbuffer_offset+(packet_size - 2)*i,
1636 ftdi->readbuffer+ftdi->readbuffer_offset+packet_size*i,
1637 packet_size - 2);
22d12cda
TJ
1638 if (chunk_remains > 2)
1639 {
f2f00cb5
DC
1640 memmove (ftdi->readbuffer+ftdi->readbuffer_offset+(packet_size - 2)*i,
1641 ftdi->readbuffer+ftdi->readbuffer_offset+packet_size*i,
1c733d33 1642 chunk_remains-2);
579b006f 1643 actual_length -= 2*num_of_chunks;
22d12cda
TJ
1644 }
1645 else
579b006f 1646 actual_length -= 2*(num_of_chunks-1)+chunk_remains;
1c733d33 1647 }
22d12cda 1648 }
579b006f 1649 else if (actual_length <= 2)
22d12cda 1650 {
d9f0cce7
TJ
1651 // no more data to read?
1652 return offset;
1653 }
579b006f 1654 if (actual_length > 0)
22d12cda 1655 {
d9f0cce7 1656 // data still fits in buf?
579b006f 1657 if (offset+actual_length <= size)
22d12cda 1658 {
579b006f 1659 memcpy (buf+offset, ftdi->readbuffer+ftdi->readbuffer_offset, actual_length);
545820ce 1660 //printf("buf[0] = %X, buf[1] = %X\n", buf[0], buf[1]);
579b006f 1661 offset += actual_length;
d9f0cce7 1662
53ad271d 1663 /* Did we read exactly the right amount of bytes? */
d9f0cce7 1664 if (offset == size)
c4446c36
TJ
1665 //printf("read_data exact rem %d offset %d\n",
1666 //ftdi->readbuffer_remaining, offset);
d9f0cce7 1667 return offset;
22d12cda
TJ
1668 }
1669 else
1670 {
d9f0cce7
TJ
1671 // only copy part of the data or size <= readbuffer_chunksize
1672 int part_size = size-offset;
1673 memcpy (buf+offset, ftdi->readbuffer+ftdi->readbuffer_offset, part_size);
98452d97 1674
d9f0cce7 1675 ftdi->readbuffer_offset += part_size;
579b006f 1676 ftdi->readbuffer_remaining = actual_length-part_size;
d9f0cce7
TJ
1677 offset += part_size;
1678
579b006f
JZ
1679 /* printf("Returning part: %d - size: %d - offset: %d - actual_length: %d - remaining: %d\n",
1680 part_size, size, offset, actual_length, ftdi->readbuffer_remaining); */
d9f0cce7
TJ
1681
1682 return offset;
1683 }
1684 }
cbabb7d3 1685 }
948f9ada 1686 // never reached
29c4af7f 1687 return -127;
a3da1d95
GE
1688}
1689
1941414d
TJ
1690/**
1691 Configure read buffer chunk size.
1692 Default is 4096.
1693
1694 Automatically reallocates the buffer.
a3da1d95 1695
1941414d
TJ
1696 \param ftdi pointer to ftdi_context
1697 \param chunksize Chunk size
1698
1699 \retval 0: all fine
22a1b5c1 1700 \retval -1: ftdi context invalid
1941414d 1701*/
a8f46ddc
TJ
1702int ftdi_read_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize)
1703{
29c4af7f
TJ
1704 unsigned char *new_buf;
1705
22a1b5c1
TJ
1706 if (ftdi == NULL)
1707 ftdi_error_return(-1, "ftdi context invalid");
1708
948f9ada
TJ
1709 // Invalidate all remaining data
1710 ftdi->readbuffer_offset = 0;
1711 ftdi->readbuffer_remaining = 0;
8de6eea4
JZ
1712#ifdef __linux__
1713 /* We can't set readbuffer_chunksize larger than MAX_BULK_BUFFER_LENGTH,
1714 which is defined in libusb-1.0. Otherwise, each USB read request will
2e685a1f 1715 be divided into multiple URBs. This will cause issues on Linux kernel
8de6eea4
JZ
1716 older than 2.6.32. */
1717 if (chunksize > 16384)
1718 chunksize = 16384;
1719#endif
948f9ada 1720
c3d95b87
TJ
1721 if ((new_buf = (unsigned char *)realloc(ftdi->readbuffer, chunksize)) == NULL)
1722 ftdi_error_return(-1, "out of memory for readbuffer");
d9f0cce7 1723
948f9ada
TJ
1724 ftdi->readbuffer = new_buf;
1725 ftdi->readbuffer_chunksize = chunksize;
1726
1727 return 0;
1728}
1729
1941414d
TJ
1730/**
1731 Get read buffer chunk size.
948f9ada 1732
1941414d
TJ
1733 \param ftdi pointer to ftdi_context
1734 \param chunksize Pointer to store chunk size in
1735
1736 \retval 0: all fine
22a1b5c1 1737 \retval -1: FTDI context invalid
1941414d 1738*/
a8f46ddc
TJ
1739int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize)
1740{
22a1b5c1
TJ
1741 if (ftdi == NULL)
1742 ftdi_error_return(-1, "FTDI context invalid");
1743
948f9ada
TJ
1744 *chunksize = ftdi->readbuffer_chunksize;
1745 return 0;
1746}
1747
1748
1941414d
TJ
1749/**
1750 Enable bitbang mode.
948f9ada 1751
fd282db3 1752 \deprecated use \ref ftdi_set_bitmode with mode BITMODE_BITBANG instead
1941414d
TJ
1753
1754 \param ftdi pointer to ftdi_context
1755 \param bitmask Bitmask to configure lines.
1756 HIGH/ON value configures a line as output.
1757
1758 \retval 0: all fine
1759 \retval -1: can't enable bitbang mode
22a1b5c1 1760 \retval -2: USB device unavailable
1941414d 1761*/
a8f46ddc
TJ
1762int ftdi_enable_bitbang(struct ftdi_context *ftdi, unsigned char bitmask)
1763{
a3da1d95
GE
1764 unsigned short usb_val;
1765
22a1b5c1
TJ
1766 if (ftdi == NULL || ftdi->usb_dev == NULL)
1767 ftdi_error_return(-2, "USB device unavailable");
1768
d9f0cce7 1769 usb_val = bitmask; // low byte: bitmask
3119537f
TJ
1770 /* FT2232C: Set bitbang_mode to 2 to enable SPI */
1771 usb_val |= (ftdi->bitbang_mode << 8);
1772
579b006f
JZ
1773 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
1774 SIO_SET_BITMODE_REQUEST, usb_val, ftdi->index,
1775 NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87
TJ
1776 ftdi_error_return(-1, "unable to enter bitbang mode. Perhaps not a BM type chip?");
1777
a3da1d95
GE
1778 ftdi->bitbang_enabled = 1;
1779 return 0;
1780}
1781
1941414d
TJ
1782/**
1783 Disable bitbang mode.
a3da1d95 1784
1941414d
TJ
1785 \param ftdi pointer to ftdi_context
1786
1787 \retval 0: all fine
1788 \retval -1: can't disable bitbang mode
22a1b5c1 1789 \retval -2: USB device unavailable
1941414d 1790*/
a8f46ddc
TJ
1791int ftdi_disable_bitbang(struct ftdi_context *ftdi)
1792{
22a1b5c1
TJ
1793 if (ftdi == NULL || ftdi->usb_dev == NULL)
1794 ftdi_error_return(-2, "USB device unavailable");
1795
579b006f 1796 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE, SIO_SET_BITMODE_REQUEST, 0, ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87 1797 ftdi_error_return(-1, "unable to leave bitbang mode. Perhaps not a BM type chip?");
a3da1d95
GE
1798
1799 ftdi->bitbang_enabled = 0;
1800 return 0;
1801}
1802
1941414d 1803/**
418aaa72 1804 Enable/disable bitbang modes.
a3da1d95 1805
1941414d
TJ
1806 \param ftdi pointer to ftdi_context
1807 \param bitmask Bitmask to configure lines.
1808 HIGH/ON value configures a line as output.
fd282db3 1809 \param mode Bitbang mode: use the values defined in \ref ftdi_mpsse_mode
1941414d
TJ
1810
1811 \retval 0: all fine
1812 \retval -1: can't enable bitbang mode
22a1b5c1 1813 \retval -2: USB device unavailable
1941414d 1814*/
c4446c36
TJ
1815int ftdi_set_bitmode(struct ftdi_context *ftdi, unsigned char bitmask, unsigned char mode)
1816{
1817 unsigned short usb_val;
1818
22a1b5c1
TJ
1819 if (ftdi == NULL || ftdi->usb_dev == NULL)
1820 ftdi_error_return(-2, "USB device unavailable");
1821
c4446c36
TJ
1822 usb_val = bitmask; // low byte: bitmask
1823 usb_val |= (mode << 8);
579b006f
JZ
1824 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE, SIO_SET_BITMODE_REQUEST, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
1825 ftdi_error_return(-1, "unable to configure bitbang mode. Perhaps not a 2232C type chip?");
c4446c36
TJ
1826
1827 ftdi->bitbang_mode = mode;
418aaa72 1828 ftdi->bitbang_enabled = (mode == BITMODE_RESET) ? 0 : 1;
c4446c36
TJ
1829 return 0;
1830}
1831
1941414d 1832/**
418aaa72 1833 Directly read pin state, circumventing the read buffer. Useful for bitbang mode.
1941414d
TJ
1834
1835 \param ftdi pointer to ftdi_context
1836 \param pins Pointer to store pins into
1837
1838 \retval 0: all fine
1839 \retval -1: read pins failed
22a1b5c1 1840 \retval -2: USB device unavailable
1941414d 1841*/
a8f46ddc
TJ
1842int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins)
1843{
22a1b5c1
TJ
1844 if (ftdi == NULL || ftdi->usb_dev == NULL)
1845 ftdi_error_return(-2, "USB device unavailable");
1846
579b006f 1847 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_READ_PINS_REQUEST, 0, ftdi->index, (unsigned char *)pins, 1, ftdi->usb_read_timeout) != 1)
c3d95b87 1848 ftdi_error_return(-1, "read pins failed");
a3da1d95 1849
a3da1d95
GE
1850 return 0;
1851}
1852
1941414d
TJ
1853/**
1854 Set latency timer
1855
1856 The FTDI chip keeps data in the internal buffer for a specific
1857 amount of time if the buffer is not full yet to decrease
1858 load on the usb bus.
a3da1d95 1859
1941414d
TJ
1860 \param ftdi pointer to ftdi_context
1861 \param latency Value between 1 and 255
1862
1863 \retval 0: all fine
1864 \retval -1: latency out of range
1865 \retval -2: unable to set latency timer
22a1b5c1 1866 \retval -3: USB device unavailable
1941414d 1867*/
a8f46ddc
TJ
1868int ftdi_set_latency_timer(struct ftdi_context *ftdi, unsigned char latency)
1869{
a3da1d95
GE
1870 unsigned short usb_val;
1871
c3d95b87
TJ
1872 if (latency < 1)
1873 ftdi_error_return(-1, "latency out of range. Only valid for 1-255");
a3da1d95 1874
22a1b5c1
TJ
1875 if (ftdi == NULL || ftdi->usb_dev == NULL)
1876 ftdi_error_return(-3, "USB device unavailable");
1877
d79d2e68 1878 usb_val = latency;
579b006f 1879 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE, SIO_SET_LATENCY_TIMER_REQUEST, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87
TJ
1880 ftdi_error_return(-2, "unable to set latency timer");
1881
a3da1d95
GE
1882 return 0;
1883}
1884
1941414d
TJ
1885/**
1886 Get latency timer
a3da1d95 1887
1941414d
TJ
1888 \param ftdi pointer to ftdi_context
1889 \param latency Pointer to store latency value in
1890
1891 \retval 0: all fine
1892 \retval -1: unable to get latency timer
22a1b5c1 1893 \retval -2: USB device unavailable
1941414d 1894*/
a8f46ddc
TJ
1895int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency)
1896{
a3da1d95 1897 unsigned short usb_val;
22a1b5c1
TJ
1898
1899 if (ftdi == NULL || ftdi->usb_dev == NULL)
1900 ftdi_error_return(-2, "USB device unavailable");
1901
579b006f 1902 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_GET_LATENCY_TIMER_REQUEST, 0, ftdi->index, (unsigned char *)&usb_val, 1, ftdi->usb_read_timeout) != 1)
c3d95b87 1903 ftdi_error_return(-1, "reading latency timer failed");
a3da1d95
GE
1904
1905 *latency = (unsigned char)usb_val;
1906 return 0;
1907}
1908
1941414d 1909/**
1189b11a
TJ
1910 Poll modem status information
1911
1912 This function allows the retrieve the two status bytes of the device.
1913 The device sends these bytes also as a header for each read access
1914 where they are discarded by ftdi_read_data(). The chip generates
1915 the two stripped status bytes in the absence of data every 40 ms.
1916
1917 Layout of the first byte:
1918 - B0..B3 - must be 0
1919 - B4 Clear to send (CTS)
1920 0 = inactive
1921 1 = active
1922 - B5 Data set ready (DTS)
1923 0 = inactive
1924 1 = active
1925 - B6 Ring indicator (RI)
1926 0 = inactive
1927 1 = active
1928 - B7 Receive line signal detect (RLSD)
1929 0 = inactive
1930 1 = active
1931
1932 Layout of the second byte:
1933 - B0 Data ready (DR)
1934 - B1 Overrun error (OE)
1935 - B2 Parity error (PE)
1936 - B3 Framing error (FE)
1937 - B4 Break interrupt (BI)
1938 - B5 Transmitter holding register (THRE)
1939 - B6 Transmitter empty (TEMT)
1940 - B7 Error in RCVR FIFO
1941
1942 \param ftdi pointer to ftdi_context
1943 \param status Pointer to store status information in. Must be two bytes.
1944
1945 \retval 0: all fine
1946 \retval -1: unable to retrieve status information
22a1b5c1 1947 \retval -2: USB device unavailable
1189b11a
TJ
1948*/
1949int ftdi_poll_modem_status(struct ftdi_context *ftdi, unsigned short *status)
1950{
1951 char usb_val[2];
1952
22a1b5c1
TJ
1953 if (ftdi == NULL || ftdi->usb_dev == NULL)
1954 ftdi_error_return(-2, "USB device unavailable");
1955
579b006f 1956 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_POLL_MODEM_STATUS_REQUEST, 0, ftdi->index, (unsigned char *)usb_val, 2, ftdi->usb_read_timeout) != 2)
1189b11a
TJ
1957 ftdi_error_return(-1, "getting modem status failed");
1958
1959 *status = (usb_val[1] << 8) | usb_val[0];
1960
1961 return 0;
1962}
1963
a7fb8440
TJ
1964/**
1965 Set flowcontrol for ftdi chip
1966
1967 \param ftdi pointer to ftdi_context
22d12cda
TJ
1968 \param flowctrl flow control to use. should be
1969 SIO_DISABLE_FLOW_CTRL, SIO_RTS_CTS_HS, SIO_DTR_DSR_HS or SIO_XON_XOFF_HS
a7fb8440
TJ
1970
1971 \retval 0: all fine
1972 \retval -1: set flow control failed
22a1b5c1 1973 \retval -2: USB device unavailable
a7fb8440
TJ
1974*/
1975int ftdi_setflowctrl(struct ftdi_context *ftdi, int flowctrl)
1976{
22a1b5c1
TJ
1977 if (ftdi == NULL || ftdi->usb_dev == NULL)
1978 ftdi_error_return(-2, "USB device unavailable");
1979
579b006f
JZ
1980 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
1981 SIO_SET_FLOW_CTRL_REQUEST, 0, (flowctrl | ftdi->index),
1982 NULL, 0, ftdi->usb_write_timeout) < 0)
a7fb8440
TJ
1983 ftdi_error_return(-1, "set flow control failed");
1984
1985 return 0;
1986}
1987
1988/**
1989 Set dtr line
1990
1991 \param ftdi pointer to ftdi_context
1992 \param state state to set line to (1 or 0)
1993
1994 \retval 0: all fine
1995 \retval -1: set dtr failed
22a1b5c1 1996 \retval -2: USB device unavailable
a7fb8440
TJ
1997*/
1998int ftdi_setdtr(struct ftdi_context *ftdi, int state)
1999{
2000 unsigned short usb_val;
2001
22a1b5c1
TJ
2002 if (ftdi == NULL || ftdi->usb_dev == NULL)
2003 ftdi_error_return(-2, "USB device unavailable");
2004
a7fb8440
TJ
2005 if (state)
2006 usb_val = SIO_SET_DTR_HIGH;
2007 else
2008 usb_val = SIO_SET_DTR_LOW;
2009
579b006f
JZ
2010 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
2011 SIO_SET_MODEM_CTRL_REQUEST, usb_val, ftdi->index,
2012 NULL, 0, ftdi->usb_write_timeout) < 0)
a7fb8440
TJ
2013 ftdi_error_return(-1, "set dtr failed");
2014
2015 return 0;
2016}
2017
2018/**
2019 Set rts line
2020
2021 \param ftdi pointer to ftdi_context
2022 \param state state to set line to (1 or 0)
2023
2024 \retval 0: all fine
22a1b5c1
TJ
2025 \retval -1: set rts failed
2026 \retval -2: USB device unavailable
a7fb8440
TJ
2027*/
2028int ftdi_setrts(struct ftdi_context *ftdi, int state)
2029{
2030 unsigned short usb_val;
2031
22a1b5c1
TJ
2032 if (ftdi == NULL || ftdi->usb_dev == NULL)
2033 ftdi_error_return(-2, "USB device unavailable");
2034
a7fb8440
TJ
2035 if (state)
2036 usb_val = SIO_SET_RTS_HIGH;
2037 else
2038 usb_val = SIO_SET_RTS_LOW;
2039
579b006f
JZ
2040 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
2041 SIO_SET_MODEM_CTRL_REQUEST, usb_val, ftdi->index,
2042 NULL, 0, ftdi->usb_write_timeout) < 0)
a7fb8440
TJ
2043 ftdi_error_return(-1, "set of rts failed");
2044
2045 return 0;
2046}
2047
1189b11a 2048/**
22a1b5c1 2049 Set dtr and rts line in one pass
9ecfef2a 2050
22a1b5c1
TJ
2051 \param ftdi pointer to ftdi_context
2052 \param dtr DTR state to set line to (1 or 0)
2053 \param rts RTS state to set line to (1 or 0)
9ecfef2a 2054
22a1b5c1
TJ
2055 \retval 0: all fine
2056 \retval -1: set dtr/rts failed
2057 \retval -2: USB device unavailable
9ecfef2a
TJ
2058 */
2059int ftdi_setdtr_rts(struct ftdi_context *ftdi, int dtr, int rts)
2060{
2061 unsigned short usb_val;
2062
22a1b5c1
TJ
2063 if (ftdi == NULL || ftdi->usb_dev == NULL)
2064 ftdi_error_return(-2, "USB device unavailable");
2065
9ecfef2a 2066 if (dtr)
22d12cda 2067 usb_val = SIO_SET_DTR_HIGH;
9ecfef2a 2068 else
22d12cda 2069 usb_val = SIO_SET_DTR_LOW;
9ecfef2a
TJ
2070
2071 if (rts)
22d12cda 2072 usb_val |= SIO_SET_RTS_HIGH;
9ecfef2a 2073 else
22d12cda 2074 usb_val |= SIO_SET_RTS_LOW;
9ecfef2a 2075
579b006f
JZ
2076 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
2077 SIO_SET_MODEM_CTRL_REQUEST, usb_val, ftdi->index,
2078 NULL, 0, ftdi->usb_write_timeout) < 0)
22d12cda 2079 ftdi_error_return(-1, "set of rts/dtr failed");
9ecfef2a
TJ
2080
2081 return 0;
2082}
2083
2084/**
1189b11a
TJ
2085 Set the special event character
2086
2087 \param ftdi pointer to ftdi_context
2088 \param eventch Event character
2089 \param enable 0 to disable the event character, non-zero otherwise
2090
2091 \retval 0: all fine
2092 \retval -1: unable to set event character
22a1b5c1 2093 \retval -2: USB device unavailable
1189b11a
TJ
2094*/
2095int ftdi_set_event_char(struct ftdi_context *ftdi,
22d12cda 2096 unsigned char eventch, unsigned char enable)
1189b11a
TJ
2097{
2098 unsigned short usb_val;
2099
22a1b5c1
TJ
2100 if (ftdi == NULL || ftdi->usb_dev == NULL)
2101 ftdi_error_return(-2, "USB device unavailable");
2102
1189b11a
TJ
2103 usb_val = eventch;
2104 if (enable)
2105 usb_val |= 1 << 8;
2106
579b006f 2107 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE, SIO_SET_EVENT_CHAR_REQUEST, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
1189b11a
TJ
2108 ftdi_error_return(-1, "setting event character failed");
2109
2110 return 0;
2111}
2112
2113/**
2114 Set error character
2115
2116 \param ftdi pointer to ftdi_context
2117 \param errorch Error character
2118 \param enable 0 to disable the error character, non-zero otherwise
2119
2120 \retval 0: all fine
2121 \retval -1: unable to set error character
22a1b5c1 2122 \retval -2: USB device unavailable
1189b11a
TJ
2123*/
2124int ftdi_set_error_char(struct ftdi_context *ftdi,
22d12cda 2125 unsigned char errorch, unsigned char enable)
1189b11a
TJ
2126{
2127 unsigned short usb_val;
2128
22a1b5c1
TJ
2129 if (ftdi == NULL || ftdi->usb_dev == NULL)
2130 ftdi_error_return(-2, "USB device unavailable");
2131
1189b11a
TJ
2132 usb_val = errorch;
2133 if (enable)
2134 usb_val |= 1 << 8;
2135
579b006f 2136 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE, SIO_SET_ERROR_CHAR_REQUEST, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) < 0)
1189b11a
TJ
2137 ftdi_error_return(-1, "setting error character failed");
2138
2139 return 0;
2140}
2141
2142/**
c201f80f
TJ
2143 Set the eeprom size
2144
2145 \param ftdi pointer to ftdi_context
2146 \param eeprom Pointer to ftdi_eeprom
2147 \param size
2148
2149*/
2150void ftdi_eeprom_setsize(struct ftdi_context *ftdi, struct ftdi_eeprom *eeprom, int size)
2151{
22a1b5c1
TJ
2152 if (ftdi == NULL)
2153 return;
2154
22d12cda
TJ
2155 ftdi->eeprom_size=size;
2156 eeprom->size=size;
c201f80f
TJ
2157}
2158
2159/**
1941414d 2160 Init eeprom with default values.
a3da1d95 2161
1941414d
TJ
2162 \param eeprom Pointer to ftdi_eeprom
2163*/
a8f46ddc
TJ
2164void ftdi_eeprom_initdefaults(struct ftdi_eeprom *eeprom)
2165{
22a1b5c1
TJ
2166 if (eeprom == NULL)
2167 return;
2168
f396dbad
TJ
2169 eeprom->vendor_id = 0x0403;
2170 eeprom->product_id = 0x6001;
d9f0cce7 2171
b8aa7b35
TJ
2172 eeprom->self_powered = 1;
2173 eeprom->remote_wakeup = 1;
2174 eeprom->BM_type_chip = 1;
d9f0cce7 2175
b8aa7b35
TJ
2176 eeprom->in_is_isochronous = 0;
2177 eeprom->out_is_isochronous = 0;
2178 eeprom->suspend_pull_downs = 0;
d9f0cce7 2179
b8aa7b35
TJ
2180 eeprom->use_serial = 0;
2181 eeprom->change_usb_version = 0;
f396dbad 2182 eeprom->usb_version = 0x0200;
b8aa7b35 2183 eeprom->max_power = 0;
d9f0cce7 2184
b8aa7b35
TJ
2185 eeprom->manufacturer = NULL;
2186 eeprom->product = NULL;
2187 eeprom->serial = NULL;
c201f80f
TJ
2188
2189 eeprom->size = FTDI_DEFAULT_EEPROM_SIZE;
b8aa7b35
TJ
2190}
2191
1941414d 2192/**
22a1b5c1
TJ
2193 Build binary output from ftdi_eeprom structure.
2194 Output is suitable for ftdi_write_eeprom().
b8aa7b35 2195
22a1b5c1
TJ
2196 \param eeprom Pointer to ftdi_eeprom
2197 \param output Buffer of 128 bytes to store eeprom image to
1941414d 2198
22a1b5c1
TJ
2199 \retval >0: used eeprom size
2200 \retval -1: eeprom size (128 bytes) exceeded by custom strings
2201 \retval -2: Invalid eeprom pointer
b8aa7b35 2202*/
a8f46ddc
TJ
2203int ftdi_eeprom_build(struct ftdi_eeprom *eeprom, unsigned char *output)
2204{
b8aa7b35
TJ
2205 unsigned char i, j;
2206 unsigned short checksum, value;
2207 unsigned char manufacturer_size = 0, product_size = 0, serial_size = 0;
2208 int size_check;
2209
22a1b5c1
TJ
2210 if (eeprom == NULL)
2211 return -2;
2212
b8aa7b35 2213 if (eeprom->manufacturer != NULL)
d9f0cce7 2214 manufacturer_size = strlen(eeprom->manufacturer);
b8aa7b35 2215 if (eeprom->product != NULL)
d9f0cce7 2216 product_size = strlen(eeprom->product);
b8aa7b35 2217 if (eeprom->serial != NULL)
d9f0cce7 2218 serial_size = strlen(eeprom->serial);
b8aa7b35 2219
c201f80f 2220 size_check = eeprom->size;
d9f0cce7 2221 size_check -= 28; // 28 are always in use (fixed)
c201f80f 2222
22d12cda 2223 // Top half of a 256byte eeprom is used just for strings and checksum
c201f80f
TJ
2224 // it seems that the FTDI chip will not read these strings from the lower half
2225 // Each string starts with two bytes; offset and type (0x03 for string)
2226 // the checksum needs two bytes, so without the string data that 8 bytes from the top half
22d12cda 2227 if (eeprom->size>=256)size_check = 120;
b8aa7b35
TJ
2228 size_check -= manufacturer_size*2;
2229 size_check -= product_size*2;
2230 size_check -= serial_size*2;
2231
2232 // eeprom size exceeded?
2233 if (size_check < 0)
d9f0cce7 2234 return (-1);
b8aa7b35
TJ
2235
2236 // empty eeprom
c201f80f 2237 memset (output, 0, eeprom->size);
b8aa7b35
TJ
2238
2239 // Addr 00: Stay 00 00
2240 // Addr 02: Vendor ID
2241 output[0x02] = eeprom->vendor_id;
2242 output[0x03] = eeprom->vendor_id >> 8;
2243
2244 // Addr 04: Product ID
2245 output[0x04] = eeprom->product_id;
2246 output[0x05] = eeprom->product_id >> 8;
2247
2248 // Addr 06: Device release number (0400h for BM features)
2249 output[0x06] = 0x00;
d9f0cce7 2250
b8aa7b35 2251 if (eeprom->BM_type_chip == 1)
d9f0cce7 2252 output[0x07] = 0x04;
b8aa7b35 2253 else
d9f0cce7 2254 output[0x07] = 0x02;
b8aa7b35
TJ
2255
2256 // Addr 08: Config descriptor
8fae3e8e
TJ
2257 // Bit 7: always 1
2258 // Bit 6: 1 if this device is self powered, 0 if bus powered
2259 // Bit 5: 1 if this device uses remote wakeup
2260 // Bit 4: 1 if this device is battery powered
5a1dcd55 2261 j = 0x80;
b8aa7b35 2262 if (eeprom->self_powered == 1)
5a1dcd55 2263 j |= 0x40;
b8aa7b35 2264 if (eeprom->remote_wakeup == 1)
5a1dcd55 2265 j |= 0x20;
b8aa7b35
TJ
2266 output[0x08] = j;
2267
2268 // Addr 09: Max power consumption: max power = value * 2 mA
d9f0cce7 2269 output[0x09] = eeprom->max_power;
d9f0cce7 2270
b8aa7b35
TJ
2271 // Addr 0A: Chip configuration
2272 // Bit 7: 0 - reserved
2273 // Bit 6: 0 - reserved
2274 // Bit 5: 0 - reserved
2275 // Bit 4: 1 - Change USB version
2276 // Bit 3: 1 - Use the serial number string
2277 // Bit 2: 1 - Enable suspend pull downs for lower power
2278 // Bit 1: 1 - Out EndPoint is Isochronous
2279 // Bit 0: 1 - In EndPoint is Isochronous
2280 //
2281 j = 0;
2282 if (eeprom->in_is_isochronous == 1)
d9f0cce7 2283 j = j | 1;
b8aa7b35 2284 if (eeprom->out_is_isochronous == 1)
d9f0cce7 2285 j = j | 2;
b8aa7b35 2286 if (eeprom->suspend_pull_downs == 1)
d9f0cce7 2287 j = j | 4;
b8aa7b35 2288 if (eeprom->use_serial == 1)
d9f0cce7 2289 j = j | 8;
b8aa7b35 2290 if (eeprom->change_usb_version == 1)
d9f0cce7 2291 j = j | 16;
b8aa7b35 2292 output[0x0A] = j;
d9f0cce7 2293
b8aa7b35
TJ
2294 // Addr 0B: reserved
2295 output[0x0B] = 0x00;
d9f0cce7 2296
b8aa7b35
TJ
2297 // Addr 0C: USB version low byte when 0x0A bit 4 is set
2298 // Addr 0D: USB version high byte when 0x0A bit 4 is set
22d12cda
TJ
2299 if (eeprom->change_usb_version == 1)
2300 {
b8aa7b35 2301 output[0x0C] = eeprom->usb_version;
d9f0cce7 2302 output[0x0D] = eeprom->usb_version >> 8;
b8aa7b35
TJ
2303 }
2304
2305
c201f80f 2306 // Addr 0E: Offset of the manufacturer string + 0x80, calculated later
b8aa7b35
TJ
2307 // Addr 0F: Length of manufacturer string
2308 output[0x0F] = manufacturer_size*2 + 2;
2309
2310 // Addr 10: Offset of the product string + 0x80, calculated later
2311 // Addr 11: Length of product string
2312 output[0x11] = product_size*2 + 2;
2313
2314 // Addr 12: Offset of the serial string + 0x80, calculated later
2315 // Addr 13: Length of serial string
2316 output[0x13] = serial_size*2 + 2;
2317
2318 // Dynamic content
c201f80f 2319 i=0x14;
22d12cda 2320 if (eeprom->size>=256) i = 0x80;
f01d7ca6 2321
c201f80f 2322
22d12cda 2323 // Output manufacturer
c201f80f
TJ
2324 output[0x0E] = i | 0x80; // calculate offset
2325 output[i++] = manufacturer_size*2 + 2;
2326 output[i++] = 0x03; // type: string
22d12cda
TJ
2327 for (j = 0; j < manufacturer_size; j++)
2328 {
d9f0cce7
TJ
2329 output[i] = eeprom->manufacturer[j], i++;
2330 output[i] = 0x00, i++;
b8aa7b35
TJ
2331 }
2332
2333 // Output product name
c201f80f 2334 output[0x10] = i | 0x80; // calculate offset
b8aa7b35
TJ
2335 output[i] = product_size*2 + 2, i++;
2336 output[i] = 0x03, i++;
22d12cda
TJ
2337 for (j = 0; j < product_size; j++)
2338 {
d9f0cce7
TJ
2339 output[i] = eeprom->product[j], i++;
2340 output[i] = 0x00, i++;
b8aa7b35 2341 }
d9f0cce7 2342
b8aa7b35 2343 // Output serial
c201f80f 2344 output[0x12] = i | 0x80; // calculate offset
b8aa7b35
TJ
2345 output[i] = serial_size*2 + 2, i++;
2346 output[i] = 0x03, i++;
22d12cda
TJ
2347 for (j = 0; j < serial_size; j++)
2348 {
d9f0cce7
TJ
2349 output[i] = eeprom->serial[j], i++;
2350 output[i] = 0x00, i++;
b8aa7b35
TJ
2351 }
2352
2353 // calculate checksum
2354 checksum = 0xAAAA;
d9f0cce7 2355
22d12cda
TJ
2356 for (i = 0; i < eeprom->size/2-1; i++)
2357 {
d9f0cce7
TJ
2358 value = output[i*2];
2359 value += output[(i*2)+1] << 8;
b8aa7b35 2360
d9f0cce7
TJ
2361 checksum = value^checksum;
2362 checksum = (checksum << 1) | (checksum >> 15);
b8aa7b35
TJ
2363 }
2364
c201f80f
TJ
2365 output[eeprom->size-2] = checksum;
2366 output[eeprom->size-1] = checksum >> 8;
b8aa7b35 2367
8ed61121 2368 return size_check;
b8aa7b35
TJ
2369}
2370
4af1d1bb
MK
2371/**
2372 Decode binary EEPROM image into an ftdi_eeprom structure.
2373
2374 \param eeprom Pointer to ftdi_eeprom which will be filled in.
1bbaf1ce 2375 \param buf Buffer of \a size bytes of raw eeprom data
4af1d1bb
MK
2376 \param size size size of eeprom data in bytes
2377
2378 \retval 0: all fine
2379 \retval -1: something went wrong
2380
2381 FIXME: How to pass size? How to handle size field in ftdi_eeprom?
2382 FIXME: Strings are malloc'ed here and should be freed somewhere
2383*/
49c5ac72 2384int ftdi_eeprom_decode(struct ftdi_eeprom *eeprom, unsigned char *buf, int size)
b56d5a64
MK
2385{
2386 unsigned char i, j;
2387 unsigned short checksum, eeprom_checksum, value;
2388 unsigned char manufacturer_size = 0, product_size = 0, serial_size = 0;
b56d5a64 2389 int eeprom_size = 128;
22a1b5c1
TJ
2390
2391 if (eeprom == NULL)
2392 return -1;
b56d5a64
MK
2393#if 0
2394 size_check = eeprom->size;
2395 size_check -= 28; // 28 are always in use (fixed)
2396
22d12cda 2397 // Top half of a 256byte eeprom is used just for strings and checksum
b56d5a64
MK
2398 // it seems that the FTDI chip will not read these strings from the lower half
2399 // Each string starts with two bytes; offset and type (0x03 for string)
2400 // the checksum needs two bytes, so without the string data that 8 bytes from the top half
22d12cda 2401 if (eeprom->size>=256)size_check = 120;
b56d5a64
MK
2402 size_check -= manufacturer_size*2;
2403 size_check -= product_size*2;
2404 size_check -= serial_size*2;
2405
2406 // eeprom size exceeded?
2407 if (size_check < 0)
2408 return (-1);
2409#endif
2410
2411 // empty eeprom struct
4af1d1bb 2412 memset(eeprom, 0, sizeof(struct ftdi_eeprom));
b56d5a64
MK
2413
2414 // Addr 00: Stay 00 00
2415
2416 // Addr 02: Vendor ID
2417 eeprom->vendor_id = buf[0x02] + (buf[0x03] << 8);
2418
2419 // Addr 04: Product ID
2420 eeprom->product_id = buf[0x04] + (buf[0x05] << 8);
22d12cda 2421
6335545d
TJ
2422 value = buf[0x06] + (buf[0x07]<<8);
2423 switch (value)
22d12cda
TJ
2424 {
2425 case 0x0400:
2426 eeprom->BM_type_chip = 1;
2427 break;
2428 case 0x0200:
2429 eeprom->BM_type_chip = 0;
2430 break;
2431 default: // Unknown device
2432 eeprom->BM_type_chip = 0;
2433 break;
4af1d1bb 2434 }
b56d5a64
MK
2435
2436 // Addr 08: Config descriptor
2437 // Bit 7: always 1
2438 // Bit 6: 1 if this device is self powered, 0 if bus powered
2439 // Bit 5: 1 if this device uses remote wakeup
2440 // Bit 4: 1 if this device is battery powered
2441 j = buf[0x08];
b56d5a64
MK
2442 if (j&0x40) eeprom->self_powered = 1;
2443 if (j&0x20) eeprom->remote_wakeup = 1;
2444
2445 // Addr 09: Max power consumption: max power = value * 2 mA
2446 eeprom->max_power = buf[0x09];
2447
2448 // Addr 0A: Chip configuration
2449 // Bit 7: 0 - reserved
2450 // Bit 6: 0 - reserved
2451 // Bit 5: 0 - reserved
2452 // Bit 4: 1 - Change USB version
2453 // Bit 3: 1 - Use the serial number string
2454 // Bit 2: 1 - Enable suspend pull downs for lower power
2455 // Bit 1: 1 - Out EndPoint is Isochronous
2456 // Bit 0: 1 - In EndPoint is Isochronous
2457 //
2458 j = buf[0x0A];
4af1d1bb
MK
2459 if (j&0x01) eeprom->in_is_isochronous = 1;
2460 if (j&0x02) eeprom->out_is_isochronous = 1;
2461 if (j&0x04) eeprom->suspend_pull_downs = 1;
2462 if (j&0x08) eeprom->use_serial = 1;
2463 if (j&0x10) eeprom->change_usb_version = 1;
b56d5a64 2464
4af1d1bb 2465 // Addr 0B: reserved
b56d5a64
MK
2466
2467 // Addr 0C: USB version low byte when 0x0A bit 4 is set
2468 // Addr 0D: USB version high byte when 0x0A bit 4 is set
22d12cda
TJ
2469 if (eeprom->change_usb_version == 1)
2470 {
2471 eeprom->usb_version = buf[0x0C] + (buf[0x0D] << 8);
b56d5a64
MK
2472 }
2473
2474 // Addr 0E: Offset of the manufacturer string + 0x80, calculated later
2475 // Addr 0F: Length of manufacturer string
2476 manufacturer_size = buf[0x0F]/2;
2477 if (manufacturer_size > 0) eeprom->manufacturer = malloc(manufacturer_size);
2478 else eeprom->manufacturer = NULL;
2479
2480 // Addr 10: Offset of the product string + 0x80, calculated later
2481 // Addr 11: Length of product string
2482 product_size = buf[0x11]/2;
2483 if (product_size > 0) eeprom->product = malloc(product_size);
2484 else eeprom->product = NULL;
2485
2486 // Addr 12: Offset of the serial string + 0x80, calculated later
2487 // Addr 13: Length of serial string
2488 serial_size = buf[0x13]/2;
2489 if (serial_size > 0) eeprom->serial = malloc(serial_size);
2490 else eeprom->serial = NULL;
2491
22d12cda 2492 // Decode manufacturer
b56d5a64 2493 i = buf[0x0E] & 0x7f; // offset
22d12cda
TJ
2494 for (j=0;j<manufacturer_size-1;j++)
2495 {
2496 eeprom->manufacturer[j] = buf[2*j+i+2];
b56d5a64
MK
2497 }
2498 eeprom->manufacturer[j] = '\0';
2499
2500 // Decode product name
2501 i = buf[0x10] & 0x7f; // offset
22d12cda
TJ
2502 for (j=0;j<product_size-1;j++)
2503 {
2504 eeprom->product[j] = buf[2*j+i+2];
b56d5a64
MK
2505 }
2506 eeprom->product[j] = '\0';
2507
2508 // Decode serial
2509 i = buf[0x12] & 0x7f; // offset
22d12cda
TJ
2510 for (j=0;j<serial_size-1;j++)
2511 {
2512 eeprom->serial[j] = buf[2*j+i+2];
b56d5a64
MK
2513 }
2514 eeprom->serial[j] = '\0';
2515
2516 // verify checksum
2517 checksum = 0xAAAA;
2518
22d12cda
TJ
2519 for (i = 0; i < eeprom_size/2-1; i++)
2520 {
b56d5a64
MK
2521 value = buf[i*2];
2522 value += buf[(i*2)+1] << 8;
2523
2524 checksum = value^checksum;
2525 checksum = (checksum << 1) | (checksum >> 15);
2526 }
2527
2528 eeprom_checksum = buf[eeprom_size-2] + (buf[eeprom_size-1] << 8);
2529
22d12cda
TJ
2530 if (eeprom_checksum != checksum)
2531 {
2532 fprintf(stderr, "Checksum Error: %04x %04x\n", checksum, eeprom_checksum);
2533 return -1;
4af1d1bb
MK
2534 }
2535
2536 return 0;
b56d5a64
MK
2537}
2538
1941414d 2539/**
c1c70e13
OS
2540 Read eeprom location
2541
2542 \param ftdi pointer to ftdi_context
2543 \param eeprom_addr Address of eeprom location to be read
2544 \param eeprom_val Pointer to store read eeprom location
2545
2546 \retval 0: all fine
2547 \retval -1: read failed
22a1b5c1 2548 \retval -2: USB device unavailable
c1c70e13
OS
2549*/
2550int ftdi_read_eeprom_location (struct ftdi_context *ftdi, int eeprom_addr, unsigned short *eeprom_val)
2551{
22a1b5c1
TJ
2552 if (ftdi == NULL || ftdi->usb_dev == NULL)
2553 ftdi_error_return(-2, "USB device unavailable");
2554
579b006f 2555 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_READ_EEPROM_REQUEST, 0, eeprom_addr, (char *)eeprom_val, 2, ftdi->usb_read_timeout) != 2)
c1c70e13
OS
2556 ftdi_error_return(-1, "reading eeprom failed");
2557
2558 return 0;
2559}
2560
2561/**
1941414d
TJ
2562 Read eeprom
2563
2564 \param ftdi pointer to ftdi_context
2565 \param eeprom Pointer to store eeprom into
b8aa7b35 2566
1941414d
TJ
2567 \retval 0: all fine
2568 \retval -1: read failed
22a1b5c1 2569 \retval -2: USB device unavailable
1941414d 2570*/
a8f46ddc
TJ
2571int ftdi_read_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom)
2572{
a3da1d95
GE
2573 int i;
2574
22a1b5c1
TJ
2575 if (ftdi == NULL || ftdi->usb_dev == NULL)
2576 ftdi_error_return(-2, "USB device unavailable");
2577
22d12cda
TJ
2578 for (i = 0; i < ftdi->eeprom_size/2; i++)
2579 {
579b006f 2580 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_READ_EEPROM_REQUEST, 0, i, eeprom+(i*2), 2, ftdi->usb_read_timeout) != 2)
c3d95b87 2581 ftdi_error_return(-1, "reading eeprom failed");
a3da1d95
GE
2582 }
2583
2584 return 0;
2585}
2586
cb6250fa
TJ
2587/*
2588 ftdi_read_chipid_shift does the bitshift operation needed for the FTDIChip-ID
2589 Function is only used internally
2590 \internal
2591*/
2592static unsigned char ftdi_read_chipid_shift(unsigned char value)
2593{
2594 return ((value & 1) << 1) |
22d12cda
TJ
2595 ((value & 2) << 5) |
2596 ((value & 4) >> 2) |
2597 ((value & 8) << 4) |
2598 ((value & 16) >> 1) |
2599 ((value & 32) >> 1) |
2600 ((value & 64) >> 4) |
2601 ((value & 128) >> 2);
cb6250fa
TJ
2602}
2603
2604/**
2605 Read the FTDIChip-ID from R-type devices
2606
2607 \param ftdi pointer to ftdi_context
2608 \param chipid Pointer to store FTDIChip-ID
2609
2610 \retval 0: all fine
2611 \retval -1: read failed
22a1b5c1 2612 \retval -2: USB device unavailable
cb6250fa
TJ
2613*/
2614int ftdi_read_chipid(struct ftdi_context *ftdi, unsigned int *chipid)
2615{
c7eb3112 2616 unsigned int a = 0, b = 0;
cb6250fa 2617
22a1b5c1
TJ
2618 if (ftdi == NULL || ftdi->usb_dev == NULL)
2619 ftdi_error_return(-2, "USB device unavailable");
2620
579b006f 2621 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_READ_EEPROM_REQUEST, 0, 0x43, (unsigned char *)&a, 2, ftdi->usb_read_timeout) == 2)
cb6250fa
TJ
2622 {
2623 a = a << 8 | a >> 8;
579b006f 2624 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE, SIO_READ_EEPROM_REQUEST, 0, 0x44, (unsigned char *)&b, 2, ftdi->usb_read_timeout) == 2)
cb6250fa
TJ
2625 {
2626 b = b << 8 | b >> 8;
5230676f 2627 a = (a << 16) | (b & 0xFFFF);
912d50ca
TJ
2628 a = ftdi_read_chipid_shift(a) | ftdi_read_chipid_shift(a>>8)<<8
2629 | ftdi_read_chipid_shift(a>>16)<<16 | ftdi_read_chipid_shift(a>>24)<<24;
cb6250fa 2630 *chipid = a ^ 0xa5f0f7d1;
c7eb3112 2631 return 0;
cb6250fa
TJ
2632 }
2633 }
2634
c7eb3112 2635 ftdi_error_return(-1, "read of FTDIChip-ID failed");
cb6250fa
TJ
2636}
2637
1941414d 2638/**
22a1b5c1
TJ
2639 Guesses size of eeprom by reading eeprom and comparing halves - will not work with blank eeprom
2640 Call this function then do a write then call again to see if size changes, if so write again.
c201f80f 2641
22a1b5c1
TJ
2642 \param ftdi pointer to ftdi_context
2643 \param eeprom Pointer to store eeprom into
2644 \param maxsize the size of the buffer to read into
c201f80f 2645
22a1b5c1
TJ
2646 \retval -1: eeprom read failed
2647 \retval -2: USB device unavailable
2648 \retval >=0: size of eeprom
c201f80f
TJ
2649*/
2650int ftdi_read_eeprom_getsize(struct ftdi_context *ftdi, unsigned char *eeprom, int maxsize)
2651{
2652 int i=0,j,minsize=32;
2653 int size=minsize;
2654
22a1b5c1
TJ
2655 if (ftdi == NULL || ftdi->usb_dev == NULL)
2656 ftdi_error_return(-2, "USB device unavailable");
2657
22d12cda
TJ
2658 do
2659 {
2660 for (j = 0; i < maxsize/2 && j<size; j++)
2661 {
579b006f
JZ
2662 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_IN_REQTYPE,
2663 SIO_READ_EEPROM_REQUEST, 0, i,
2664 eeprom+(i*2), 2, ftdi->usb_read_timeout) != 2)
22a1b5c1 2665 ftdi_error_return(-1, "eeprom read failed");
22d12cda
TJ
2666 i++;
2667 }
2668 size*=2;
2669 }
2670 while (size<=maxsize && memcmp(eeprom,&eeprom[size/2],size/2)!=0);
c201f80f
TJ
2671
2672 return size/2;
2673}
2674
2675/**
c1c70e13
OS
2676 Write eeprom location
2677
2678 \param ftdi pointer to ftdi_context
2679 \param eeprom_addr Address of eeprom location to be written
2680 \param eeprom_val Value to be written
2681
2682 \retval 0: all fine
2683 \retval -1: read failed
22a1b5c1 2684 \retval -2: USB device unavailable
c1c70e13
OS
2685*/
2686int ftdi_write_eeprom_location(struct ftdi_context *ftdi, int eeprom_addr, unsigned short eeprom_val)
2687{
22a1b5c1
TJ
2688 if (ftdi == NULL || ftdi->usb_dev == NULL)
2689 ftdi_error_return(-2, "USB device unavailable");
2690
579b006f 2691 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
c1c70e13
OS
2692 SIO_WRITE_EEPROM_REQUEST, eeprom_val, eeprom_addr,
2693 NULL, 0, ftdi->usb_write_timeout) != 0)
2694 ftdi_error_return(-1, "unable to write eeprom");
2695
2696 return 0;
2697}
2698
2699/**
1941414d 2700 Write eeprom
a3da1d95 2701
1941414d
TJ
2702 \param ftdi pointer to ftdi_context
2703 \param eeprom Pointer to read eeprom from
2704
2705 \retval 0: all fine
2706 \retval -1: read failed
22a1b5c1 2707 \retval -2: USB device unavailable
1941414d 2708*/
a8f46ddc
TJ
2709int ftdi_write_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom)
2710{
ba5329be 2711 unsigned short usb_val, status;
e30da501 2712 int i, ret;
a3da1d95 2713
22a1b5c1
TJ
2714 if (ftdi == NULL || ftdi->usb_dev == NULL)
2715 ftdi_error_return(-2, "USB device unavailable");
2716
ba5329be 2717 /* These commands were traced while running MProg */
e30da501
TJ
2718 if ((ret = ftdi_usb_reset(ftdi)) != 0)
2719 return ret;
2720 if ((ret = ftdi_poll_modem_status(ftdi, &status)) != 0)
2721 return ret;
2722 if ((ret = ftdi_set_latency_timer(ftdi, 0x77)) != 0)
2723 return ret;
ba5329be 2724
22d12cda
TJ
2725 for (i = 0; i < ftdi->eeprom_size/2; i++)
2726 {
d9f0cce7
TJ
2727 usb_val = eeprom[i*2];
2728 usb_val += eeprom[(i*2)+1] << 8;
579b006f
JZ
2729 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE,
2730 SIO_WRITE_EEPROM_REQUEST, usb_val, i,
2731 NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87 2732 ftdi_error_return(-1, "unable to write eeprom");
a3da1d95
GE
2733 }
2734
2735 return 0;
2736}
2737
1941414d
TJ
2738/**
2739 Erase eeprom
a3da1d95 2740
a5e1bd8c
MK
2741 This is not supported on FT232R/FT245R according to the MProg manual from FTDI.
2742
1941414d
TJ
2743 \param ftdi pointer to ftdi_context
2744
2745 \retval 0: all fine
2746 \retval -1: erase failed
22a1b5c1 2747 \retval -2: USB device unavailable
1941414d 2748*/
a8f46ddc
TJ
2749int ftdi_erase_eeprom(struct ftdi_context *ftdi)
2750{
22a1b5c1
TJ
2751 if (ftdi == NULL || ftdi->usb_dev == NULL)
2752 ftdi_error_return(-2, "USB device unavailable");
2753
579b006f 2754 if (libusb_control_transfer(ftdi->usb_dev, FTDI_DEVICE_OUT_REQTYPE, SIO_ERASE_EEPROM_REQUEST, 0, 0, NULL, 0, ftdi->usb_write_timeout) < 0)
c3d95b87 2755 ftdi_error_return(-1, "unable to erase eeprom");
a3da1d95
GE
2756
2757 return 0;
2758}
c3d95b87 2759
1941414d
TJ
2760/**
2761 Get string representation for last error code
c3d95b87 2762
1941414d
TJ
2763 \param ftdi pointer to ftdi_context
2764
2765 \retval Pointer to error string
2766*/
c3d95b87
TJ
2767char *ftdi_get_error_string (struct ftdi_context *ftdi)
2768{
22a1b5c1
TJ
2769 if (ftdi == NULL)
2770 return "";
2771
c3d95b87
TJ
2772 return ftdi->error_str;
2773}
a01d31e2 2774
b5ec1820 2775/* @} end of doxygen libftdi group */