fix strange chars (kate is sometimes really buggy!)
[libftdi] / src / ftdi.c
CommitLineData
a3da1d95
GE
1/***************************************************************************
2 ftdi.c - description
3 -------------------
4 begin : Fri Apr 4 2003
5 copyright : (C) 2003 by Intra2net AG
5fdb1cb1 6 email : opensource@intra2net.com
a3da1d95
GE
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU Lesser General Public License *
13 * version 2.1 as published by the Free Software Foundation; *
14 * *
15 ***************************************************************************/
d9f0cce7 16
98452d97 17#include <usb.h>
a8f46ddc 18#include <string.h>
0e302db6 19
98452d97 20#include "ftdi.h"
a3da1d95 21
21abaf2e 22#define ftdi_error_return(code, str) do { \
2f73e59f 23 ftdi->error_str = str; \
21abaf2e
TJ
24 return code; \
25 } while(0);
c3d95b87
TJ
26
27
4837f98a
TJ
28/* ftdi_init
29
60b7513e 30 Initializes a ftdi_context.
4837f98a
TJ
31
32 Return codes:
33 0: All fine
34 -1: Couldn't allocate read buffer
948f9ada 35*/
a8f46ddc
TJ
36int ftdi_init(struct ftdi_context *ftdi)
37{
98452d97 38 ftdi->usb_dev = NULL;
545820ce
TJ
39 ftdi->usb_read_timeout = 5000;
40 ftdi->usb_write_timeout = 5000;
a3da1d95 41
53ad271d 42 ftdi->type = TYPE_BM; /* chip type */
a3da1d95
GE
43 ftdi->baudrate = -1;
44 ftdi->bitbang_enabled = 0;
45
948f9ada
TJ
46 ftdi->readbuffer = NULL;
47 ftdi->readbuffer_offset = 0;
48 ftdi->readbuffer_remaining = 0;
49 ftdi->writebuffer_chunksize = 4096;
50
545820ce
TJ
51 ftdi->interface = 0;
52 ftdi->index = 0;
53 ftdi->in_ep = 0x02;
54 ftdi->out_ep = 0x81;
3119537f 55 ftdi->bitbang_mode = 1; /* 1: Normal bitbang mode, 2: SPI bitbang mode */
53ad271d 56
a3da1d95
GE
57 ftdi->error_str = NULL;
58
1c733d33
TJ
59 /* All fine. Now allocate the readbuffer */
60 return ftdi_read_data_set_chunksize(ftdi, 4096);
948f9ada 61}
4837f98a 62
46860c4c 63/* ftdi_set_interface
4837f98a 64
c4446c36 65 Call after ftdi_init
4837f98a 66
c4446c36 67 Open selected channels on a chip, otherwise use first channel
0ce2f5fa
TJ
68 0: all fine
69 -1: unknown interface
c4446c36 70*/
0ce2f5fa 71int ftdi_set_interface(struct ftdi_context *ftdi, enum ftdi_interface interface)
c4446c36
TJ
72{
73 switch (interface) {
74 case INTERFACE_ANY:
75 case INTERFACE_A:
0ce2f5fa 76 /* ftdi_usb_open_desc cares to set the right index, depending on the found chip */
c4446c36
TJ
77 break;
78 case INTERFACE_B:
79 ftdi->interface = 1;
80 ftdi->index = INTERFACE_B;
81 ftdi->in_ep = 0x04;
82 ftdi->out_ep = 0x83;
83 break;
84 default:
85 ftdi_error_return(-1, "Unknown interface");
86 }
87 return 0;
88}
948f9ada 89
4837f98a
TJ
90/* ftdi_deinit
91
92 Deinitializes a ftdi_context.
93*/
a8f46ddc
TJ
94void ftdi_deinit(struct ftdi_context *ftdi)
95{
948f9ada 96 if (ftdi->readbuffer != NULL) {
d9f0cce7
TJ
97 free(ftdi->readbuffer);
98 ftdi->readbuffer = NULL;
948f9ada 99 }
a3da1d95
GE
100}
101
4837f98a
TJ
102/* ftdi_set_usbdev
103
104 Use an already open device.
105*/
a8f46ddc
TJ
106void ftdi_set_usbdev (struct ftdi_context *ftdi, usb_dev_handle *usb)
107{
98452d97
TJ
108 ftdi->usb_dev = usb;
109}
110
111
edb82cbf
TJ
112/* ftdi_usb_find_all
113
114 Finds all ftdi devices on the usb bus. Creates a new ftdi_device_list which
115 needs to be deallocated by ftdi_list_free after use.
116
117 Return codes:
118 >0: number of devices found
119 -1: usb_find_busses() failed
120 -2: usb_find_devices() failed
121 -3: out of memory
122*/
123int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist, int vendor, int product)
124{
125 struct ftdi_device_list **curdev;
126 struct usb_bus *bus;
127 struct usb_device *dev;
128 int count = 0;
129
130 usb_init();
131 if (usb_find_busses() < 0)
132 ftdi_error_return(-1, "usb_find_busses() failed");
133 if (usb_find_devices() < 0)
134 ftdi_error_return(-2, "usb_find_devices() failed");
135
136 curdev = devlist;
137 for (bus = usb_busses; bus; bus = bus->next) {
138 for (dev = bus->devices; dev; dev = dev->next) {
139 if (dev->descriptor.idVendor == vendor
140 && dev->descriptor.idProduct == product)
141 {
142 *curdev = (struct ftdi_device_list*)malloc(sizeof(struct ftdi_device_list));
143 if (!*curdev)
144 ftdi_error_return(-3, "out of memory");
145
146 (*curdev)->next = NULL;
147 (*curdev)->dev = dev;
148
149 curdev = &(*curdev)->next;
150 count++;
151 }
152 }
153 }
154
155 return count;
156}
157
158/* ftdi_list_free
159
160 Frees a created device list.
161*/
162void ftdi_list_free(struct ftdi_device_list **devlist)
163{
164 struct ftdi_device_list **curdev;
165 for (; *devlist == NULL; devlist = curdev) {
166 curdev = &(*devlist)->next;
167 free(*devlist);
168 }
169
170 devlist = NULL;
171}
172
7b18bef6
TJ
173/* ftdi_usb_open_dev
174
175 Opens a ftdi device given by a usb_device.
176
177 Return codes:
178 0: all fine
179 -4: unable to open device
180 -5: unable to claim device
181 -6: reset failed
182 -7: set baudrate failed
183*/
184int ftdi_usb_open_dev(struct ftdi_context *ftdi, struct usb_device *dev)
185{
186 if (!(ftdi->usb_dev = usb_open(dev)))
187 ftdi_error_return(-4, "usb_open() failed");
188
189 if (usb_claim_interface(ftdi->usb_dev, ftdi->interface) != 0) {
190 usb_close (ftdi->usb_dev);
191 ftdi_error_return(-5, "unable to claim usb device. Make sure ftdi_sio is unloaded!");
192 }
193
194 if (ftdi_usb_reset (ftdi) != 0) {
195 usb_close (ftdi->usb_dev);
196 ftdi_error_return(-6, "ftdi_usb_reset failed");
197 }
198
199 if (ftdi_set_baudrate (ftdi, 9600) != 0) {
200 usb_close (ftdi->usb_dev);
201 ftdi_error_return(-7, "set baudrate failed");
202 }
203
204 // Try to guess chip type
205 // Bug in the BM type chips: bcdDevice is 0x200 for serial == 0
206 if (dev->descriptor.bcdDevice == 0x400 || (dev->descriptor.bcdDevice == 0x200
207 && dev->descriptor.iSerialNumber == 0))
208 ftdi->type = TYPE_BM;
209 else if (dev->descriptor.bcdDevice == 0x200)
210 ftdi->type = TYPE_AM;
211 else if (dev->descriptor.bcdDevice == 0x500) {
212 ftdi->type = TYPE_2232C;
213 if (!ftdi->index)
214 ftdi->index = INTERFACE_A;
215 }
216
217 ftdi_error_return(0, "all fine");
218}
219
9b1c7f18 220/* ftdi_usb_open
e6408702
TJ
221
222 Opens the first device with a given vendor and product ids.
9b1c7f18
TJ
223
224 Return codes:
225 See ftdi_usb_open_desc()
226*/
edb82cbf
TJ
227int ftdi_usb_open(struct ftdi_context *ftdi, int vendor, int product)
228{
229 return ftdi_usb_open_desc(ftdi, vendor, product, NULL, NULL);
230}
231
232/* ftdi_usb_open_desc
233
234 Opens the first device with a given, vendor id, product id,
235 description and serial.
4837f98a
TJ
236
237 Return codes:
238 0: all fine
239 -1: usb_find_busses() failed
240 -2: usb_find_devices() failed
241 -3: usb device not found
242 -4: unable to open device
243 -5: unable to claim device
244 -6: reset failed
245 -7: set baudrate failed
246 -8: get product description failed
247 -9: get serial number failed
edb82cbf 248 -10: unable to close device
a3da1d95 249*/
04e1ea0a 250int ftdi_usb_open_desc(struct ftdi_context *ftdi, int vendor, int product,
a8f46ddc
TJ
251 const char* description, const char* serial)
252{
98452d97
TJ
253 struct usb_bus *bus;
254 struct usb_device *dev;
c3d95b87 255 char string[256];
98452d97
TJ
256
257 usb_init();
258
c3d95b87
TJ
259 if (usb_find_busses() < 0)
260 ftdi_error_return(-1, "usb_find_busses() failed");
c3d95b87 261 if (usb_find_devices() < 0)
edb82cbf 262 ftdi_error_return(-2, "usb_find_devices() failed");
a3da1d95 263
98452d97
TJ
264 for (bus = usb_busses; bus; bus = bus->next) {
265 for (dev = bus->devices; dev; dev = dev->next) {
a8f46ddc 266 if (dev->descriptor.idVendor == vendor
c3d95b87
TJ
267 && dev->descriptor.idProduct == product) {
268 if (!(ftdi->usb_dev = usb_open(dev)))
269 ftdi_error_return(-4, "usb_open() failed");
270
a8f46ddc
TJ
271 if (description != NULL) {
272 if (usb_get_string_simple(ftdi->usb_dev, dev->descriptor.iProduct, string, sizeof(string)) <= 0) {
c3d95b87
TJ
273 usb_close (ftdi->usb_dev);
274 ftdi_error_return(-8, "unable to fetch product description");
98452d97 275 }
a8f46ddc 276 if (strncmp(string, description, sizeof(string)) != 0) {
edb82cbf
TJ
277 if (usb_close (ftdi->usb_dev) != 0)
278 ftdi_error_return(-10, "unable to close device");
a8f46ddc
TJ
279 continue;
280 }
281 }
282 if (serial != NULL) {
283 if (usb_get_string_simple(ftdi->usb_dev, dev->descriptor.iSerialNumber, string, sizeof(string)) <= 0) {
c3d95b87
TJ
284 usb_close (ftdi->usb_dev);
285 ftdi_error_return(-9, "unable to fetch serial number");
a8f46ddc
TJ
286 }
287 if (strncmp(string, serial, sizeof(string)) != 0) {
a8f46ddc 288 if (usb_close (ftdi->usb_dev) != 0)
edb82cbf 289 ftdi_error_return(-10, "unable to close device");
a8f46ddc
TJ
290 continue;
291 }
292 }
98452d97 293
edb82cbf
TJ
294 if (usb_close (ftdi->usb_dev) != 0)
295 ftdi_error_return(-10, "unable to close device");
296
297 return ftdi_usb_open_dev(ftdi, dev);
98452d97
TJ
298 }
299 }
98452d97 300 }
a3da1d95 301
98452d97 302 // device not found
c3d95b87 303 ftdi_error_return(-3, "device not found");
a3da1d95
GE
304}
305
4837f98a 306/* ftdi_usb_reset
a3da1d95 307
4837f98a
TJ
308 Resets the ftdi device.
309
310 Return codes:
311 0: all fine
312 -1: FTDI reset failed
313*/
edb82cbf 314int ftdi_usb_reset(struct ftdi_context *ftdi)
a8f46ddc 315{
c3d95b87
TJ
316 if (usb_control_msg(ftdi->usb_dev, 0x40, 0, 0, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
317 ftdi_error_return(-1,"FTDI reset failed");
318
545820ce 319 // Invalidate data in the readbuffer
bfcee05b
TJ
320 ftdi->readbuffer_offset = 0;
321 ftdi->readbuffer_remaining = 0;
322
a3da1d95
GE
323 return 0;
324}
325
4837f98a
TJ
326/* ftdi_usb_purge_buffers
327
328 Cleans the buffers of the ftdi device.
329
330 Return codes:
331 0: all fine
332 -1: write buffer purge failed
333 -2: read buffer purge failed
334*/
a8f46ddc
TJ
335int ftdi_usb_purge_buffers(struct ftdi_context *ftdi)
336{
c3d95b87
TJ
337 if (usb_control_msg(ftdi->usb_dev, 0x40, 0, 1, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
338 ftdi_error_return(-1, "FTDI purge of RX buffer failed");
339
545820ce 340 // Invalidate data in the readbuffer
bfcee05b
TJ
341 ftdi->readbuffer_offset = 0;
342 ftdi->readbuffer_remaining = 0;
a60be878 343
c3d95b87
TJ
344 if (usb_control_msg(ftdi->usb_dev, 0x40, 0, 2, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
345 ftdi_error_return(-2, "FTDI purge of TX buffer failed");
545820ce 346
a60be878
TJ
347 return 0;
348}
a3da1d95 349
4837f98a
TJ
350/* ftdi_usb_close
351
352 Closes the ftdi device.
353
354 Return codes:
355 0: all fine
356 -1: usb_release failed
357 -2: usb_close failed
a3da1d95 358*/
a8f46ddc
TJ
359int ftdi_usb_close(struct ftdi_context *ftdi)
360{
a3da1d95
GE
361 int rtn = 0;
362
98452d97 363 if (usb_release_interface(ftdi->usb_dev, ftdi->interface) != 0)
a3da1d95 364 rtn = -1;
98452d97
TJ
365
366 if (usb_close (ftdi->usb_dev) != 0)
a3da1d95 367 rtn = -2;
98452d97 368
a3da1d95
GE
369 return rtn;
370}
371
372
373/*
53ad271d
TJ
374 ftdi_convert_baudrate returns nearest supported baud rate to that requested.
375 Function is only used internally
376*/
0126d22e 377static int ftdi_convert_baudrate(int baudrate, struct ftdi_context *ftdi,
a8f46ddc
TJ
378 unsigned short *value, unsigned short *index)
379{
53ad271d
TJ
380 static const char am_adjust_up[8] = {0, 0, 0, 1, 0, 3, 2, 1};
381 static const char am_adjust_dn[8] = {0, 0, 0, 1, 0, 1, 2, 3};
382 static const char frac_code[8] = {0, 3, 2, 4, 1, 5, 6, 7};
383 int divisor, best_divisor, best_baud, best_baud_diff;
384 unsigned long encoded_divisor;
385 int i;
386
387 if (baudrate <= 0) {
388 // Return error
389 return -1;
390 }
391
392 divisor = 24000000 / baudrate;
393
0126d22e 394 if (ftdi->type == TYPE_AM) {
53ad271d
TJ
395 // Round down to supported fraction (AM only)
396 divisor -= am_adjust_dn[divisor & 7];
397 }
398
399 // Try this divisor and the one above it (because division rounds down)
400 best_divisor = 0;
401 best_baud = 0;
402 best_baud_diff = 0;
403 for (i = 0; i < 2; i++) {
404 int try_divisor = divisor + i;
405 int baud_estimate;
406 int baud_diff;
407
408 // Round up to supported divisor value
df612d35 409 if (try_divisor <= 8) {
53ad271d
TJ
410 // Round up to minimum supported divisor
411 try_divisor = 8;
0126d22e 412 } else if (ftdi->type != TYPE_AM && try_divisor < 12) {
53ad271d
TJ
413 // BM doesn't support divisors 9 through 11 inclusive
414 try_divisor = 12;
415 } else if (divisor < 16) {
416 // AM doesn't support divisors 9 through 15 inclusive
417 try_divisor = 16;
418 } else {
0126d22e 419 if (ftdi->type == TYPE_AM) {
53ad271d
TJ
420 // Round up to supported fraction (AM only)
421 try_divisor += am_adjust_up[try_divisor & 7];
422 if (try_divisor > 0x1FFF8) {
423 // Round down to maximum supported divisor value (for AM)
424 try_divisor = 0x1FFF8;
425 }
426 } else {
427 if (try_divisor > 0x1FFFF) {
428 // Round down to maximum supported divisor value (for BM)
429 try_divisor = 0x1FFFF;
430 }
431 }
432 }
433 // Get estimated baud rate (to nearest integer)
434 baud_estimate = (24000000 + (try_divisor / 2)) / try_divisor;
435 // Get absolute difference from requested baud rate
436 if (baud_estimate < baudrate) {
437 baud_diff = baudrate - baud_estimate;
438 } else {
439 baud_diff = baud_estimate - baudrate;
440 }
441 if (i == 0 || baud_diff < best_baud_diff) {
442 // Closest to requested baud rate so far
443 best_divisor = try_divisor;
444 best_baud = baud_estimate;
445 best_baud_diff = baud_diff;
446 if (baud_diff == 0) {
447 // Spot on! No point trying
448 break;
449 }
450 }
451 }
452 // Encode the best divisor value
453 encoded_divisor = (best_divisor >> 3) | (frac_code[best_divisor & 7] << 14);
454 // Deal with special cases for encoded value
455 if (encoded_divisor == 1) {
4837f98a 456 encoded_divisor = 0; // 3000000 baud
53ad271d 457 } else if (encoded_divisor == 0x4001) {
4837f98a 458 encoded_divisor = 1; // 2000000 baud (BM only)
53ad271d
TJ
459 }
460 // Split into "value" and "index" values
461 *value = (unsigned short)(encoded_divisor & 0xFFFF);
de22df10 462 if(ftdi->type == TYPE_2232C) {
0126d22e
TJ
463 *index = (unsigned short)(encoded_divisor >> 8);
464 *index &= 0xFF00;
465 *index |= ftdi->interface;
466 }
467 else
468 *index = (unsigned short)(encoded_divisor >> 16);
c3d95b87 469
53ad271d
TJ
470 // Return the nearest baud rate
471 return best_baud;
472}
473
474/*
4837f98a
TJ
475 ftdi_set_baudrate
476
477 Sets the chip baudrate
478
479 Return codes:
a3da1d95
GE
480 0: all fine
481 -1: invalid baudrate
482 -2: setting baudrate failed
483*/
a8f46ddc
TJ
484int ftdi_set_baudrate(struct ftdi_context *ftdi, int baudrate)
485{
53ad271d
TJ
486 unsigned short value, index;
487 int actual_baudrate;
a3da1d95
GE
488
489 if (ftdi->bitbang_enabled) {
490 baudrate = baudrate*4;
491 }
492
25707904 493 actual_baudrate = ftdi_convert_baudrate(baudrate, ftdi, &value, &index);
c3d95b87
TJ
494 if (actual_baudrate <= 0)
495 ftdi_error_return (-1, "Silly baudrate <= 0.");
a3da1d95 496
53ad271d
TJ
497 // Check within tolerance (about 5%)
498 if ((actual_baudrate * 2 < baudrate /* Catch overflows */ )
499 || ((actual_baudrate < baudrate)
500 ? (actual_baudrate * 21 < baudrate * 20)
c3d95b87
TJ
501 : (baudrate * 21 < actual_baudrate * 20)))
502 ftdi_error_return (-1, "Unsupported baudrate. Note: bitbang baudrates are automatically multiplied by 4");
545820ce 503
c3d95b87
TJ
504 if (usb_control_msg(ftdi->usb_dev, 0x40, 3, value, index, NULL, 0, ftdi->usb_write_timeout) != 0)
505 ftdi_error_return (-2, "Setting new baudrate failed");
a3da1d95
GE
506
507 ftdi->baudrate = baudrate;
508 return 0;
509}
510
2f73e59f 511/*
4837f98a
TJ
512 ftdi_set_line_property
513
514 set (RS232) line characteristics by Alain Abbas
515
516 Return codes:
517 0: all fine
518 -1: Setting line property failed
2f73e59f
TJ
519*/
520int ftdi_set_line_property(struct ftdi_context *ftdi, enum ftdi_bits_type bits,
521 enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity)
522{
523 unsigned short value = bits;
524
525 switch(parity) {
526 case NONE:
527 value |= (0x00 << 8);
528 break;
529 case ODD:
530 value |= (0x01 << 8);
531 break;
532 case EVEN:
533 value |= (0x02 << 8);
534 break;
535 case MARK:
536 value |= (0x03 << 8);
537 break;
538 case SPACE:
539 value |= (0x04 << 8);
540 break;
541 }
542
543 switch(sbit) {
544 case STOP_BIT_1:
545 value |= (0x00 << 11);
546 break;
547 case STOP_BIT_15:
548 value |= (0x01 << 11);
549 break;
550 case STOP_BIT_2:
551 value |= (0x02 << 11);
552 break;
553 }
554
555 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x04, value, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
556 ftdi_error_return (-1, "Setting new line property failed");
557
558 return 0;
559}
a3da1d95 560
a8f46ddc
TJ
561int ftdi_write_data(struct ftdi_context *ftdi, unsigned char *buf, int size)
562{
a3da1d95
GE
563 int ret;
564 int offset = 0;
545820ce 565 int total_written = 0;
c3d95b87 566
a3da1d95 567 while (offset < size) {
948f9ada 568 int write_size = ftdi->writebuffer_chunksize;
a3da1d95
GE
569
570 if (offset+write_size > size)
571 write_size = size-offset;
572
98452d97 573 ret = usb_bulk_write(ftdi->usb_dev, ftdi->in_ep, buf+offset, write_size, ftdi->usb_write_timeout);
c3d95b87
TJ
574 if (ret < 0)
575 ftdi_error_return(ret, "usb bulk write failed");
a3da1d95 576
c3d95b87 577 total_written += ret;
a3da1d95
GE
578 offset += write_size;
579 }
580
545820ce 581 return total_written;
a3da1d95
GE
582}
583
584
a8f46ddc
TJ
585int ftdi_write_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize)
586{
948f9ada
TJ
587 ftdi->writebuffer_chunksize = chunksize;
588 return 0;
589}
590
591
a8f46ddc
TJ
592int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize)
593{
948f9ada
TJ
594 *chunksize = ftdi->writebuffer_chunksize;
595 return 0;
596}
cbabb7d3 597
948f9ada 598
a8f46ddc
TJ
599int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size)
600{
1c733d33 601 int offset = 0, ret = 1, i, num_of_chunks, chunk_remains;
d9f0cce7 602
948f9ada
TJ
603 // everything we want is still in the readbuffer?
604 if (size <= ftdi->readbuffer_remaining) {
d9f0cce7
TJ
605 memcpy (buf, ftdi->readbuffer+ftdi->readbuffer_offset, size);
606
607 // Fix offsets
608 ftdi->readbuffer_remaining -= size;
609 ftdi->readbuffer_offset += size;
610
545820ce 611 /* printf("Returning bytes from buffer: %d - remaining: %d\n", size, ftdi->readbuffer_remaining); */
d9f0cce7
TJ
612
613 return size;
979a145c 614 }
948f9ada
TJ
615 // something still in the readbuffer, but not enough to satisfy 'size'?
616 if (ftdi->readbuffer_remaining != 0) {
d9f0cce7 617 memcpy (buf, ftdi->readbuffer+ftdi->readbuffer_offset, ftdi->readbuffer_remaining);
979a145c 618
d9f0cce7
TJ
619 // Fix offset
620 offset += ftdi->readbuffer_remaining;
948f9ada 621 }
948f9ada 622 // do the actual USB read
cbabb7d3 623 while (offset < size && ret > 0) {
d9f0cce7
TJ
624 ftdi->readbuffer_remaining = 0;
625 ftdi->readbuffer_offset = 0;
98452d97
TJ
626 /* returns how much received */
627 ret = usb_bulk_read (ftdi->usb_dev, ftdi->out_ep, ftdi->readbuffer, ftdi->readbuffer_chunksize, ftdi->usb_read_timeout);
c3d95b87
TJ
628 if (ret < 0)
629 ftdi_error_return(ret, "usb bulk read failed");
98452d97 630
d9f0cce7
TJ
631 if (ret > 2) {
632 // skip FTDI status bytes.
633 // Maybe stored in the future to enable modem use
1c733d33
TJ
634 num_of_chunks = ret / 64;
635 chunk_remains = ret % 64;
636 //printf("ret = %X, num_of_chunks = %X, chunk_remains = %X, readbuffer_offset = %X\n", ret, num_of_chunks, chunk_remains, ftdi->readbuffer_offset);
637
d9f0cce7
TJ
638 ftdi->readbuffer_offset += 2;
639 ret -= 2;
1c733d33 640
fde0a89e 641 if (ret > 62) {
1c733d33
TJ
642 for (i = 1; i < num_of_chunks; i++)
643 memmove (ftdi->readbuffer+ftdi->readbuffer_offset+62*i,
644 ftdi->readbuffer+ftdi->readbuffer_offset+64*i,
645 62);
646 if (chunk_remains > 2) {
647 memmove (ftdi->readbuffer+ftdi->readbuffer_offset+62*i,
648 ftdi->readbuffer+ftdi->readbuffer_offset+64*i,
649 chunk_remains-2);
650 ret -= 2*num_of_chunks;
651 } else
652 ret -= 2*(num_of_chunks-1)+chunk_remains;
653 }
d9f0cce7
TJ
654 } else if (ret <= 2) {
655 // no more data to read?
656 return offset;
657 }
d9f0cce7
TJ
658 if (ret > 0) {
659 // data still fits in buf?
660 if (offset+ret <= size) {
661 memcpy (buf+offset, ftdi->readbuffer+ftdi->readbuffer_offset, ret);
545820ce 662 //printf("buf[0] = %X, buf[1] = %X\n", buf[0], buf[1]);
d9f0cce7
TJ
663 offset += ret;
664
53ad271d 665 /* Did we read exactly the right amount of bytes? */
d9f0cce7 666 if (offset == size)
c4446c36
TJ
667 //printf("read_data exact rem %d offset %d\n",
668 //ftdi->readbuffer_remaining, offset);
d9f0cce7
TJ
669 return offset;
670 } else {
671 // only copy part of the data or size <= readbuffer_chunksize
672 int part_size = size-offset;
673 memcpy (buf+offset, ftdi->readbuffer+ftdi->readbuffer_offset, part_size);
98452d97 674
d9f0cce7
TJ
675 ftdi->readbuffer_offset += part_size;
676 ftdi->readbuffer_remaining = ret-part_size;
677 offset += part_size;
678
53ad271d
TJ
679 /* printf("Returning part: %d - size: %d - offset: %d - ret: %d - remaining: %d\n",
680 part_size, size, offset, ret, ftdi->readbuffer_remaining); */
d9f0cce7
TJ
681
682 return offset;
683 }
684 }
cbabb7d3 685 }
948f9ada 686 // never reached
29c4af7f 687 return -127;
a3da1d95
GE
688}
689
690
a8f46ddc
TJ
691int ftdi_read_data_set_chunksize(struct ftdi_context *ftdi, unsigned int chunksize)
692{
29c4af7f
TJ
693 unsigned char *new_buf;
694
948f9ada
TJ
695 // Invalidate all remaining data
696 ftdi->readbuffer_offset = 0;
697 ftdi->readbuffer_remaining = 0;
698
c3d95b87
TJ
699 if ((new_buf = (unsigned char *)realloc(ftdi->readbuffer, chunksize)) == NULL)
700 ftdi_error_return(-1, "out of memory for readbuffer");
d9f0cce7 701
948f9ada
TJ
702 ftdi->readbuffer = new_buf;
703 ftdi->readbuffer_chunksize = chunksize;
704
705 return 0;
706}
707
708
a8f46ddc
TJ
709int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize)
710{
948f9ada
TJ
711 *chunksize = ftdi->readbuffer_chunksize;
712 return 0;
713}
714
715
716
a8f46ddc
TJ
717int ftdi_enable_bitbang(struct ftdi_context *ftdi, unsigned char bitmask)
718{
a3da1d95
GE
719 unsigned short usb_val;
720
d9f0cce7 721 usb_val = bitmask; // low byte: bitmask
3119537f
TJ
722 /* FT2232C: Set bitbang_mode to 2 to enable SPI */
723 usb_val |= (ftdi->bitbang_mode << 8);
724
c3d95b87
TJ
725 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x0B, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
726 ftdi_error_return(-1, "unable to enter bitbang mode. Perhaps not a BM type chip?");
727
a3da1d95
GE
728 ftdi->bitbang_enabled = 1;
729 return 0;
730}
731
732
a8f46ddc
TJ
733int ftdi_disable_bitbang(struct ftdi_context *ftdi)
734{
c3d95b87
TJ
735 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x0B, 0, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
736 ftdi_error_return(-1, "unable to leave bitbang mode. Perhaps not a BM type chip?");
a3da1d95
GE
737
738 ftdi->bitbang_enabled = 0;
739 return 0;
740}
741
742
c4446c36
TJ
743int ftdi_set_bitmode(struct ftdi_context *ftdi, unsigned char bitmask, unsigned char mode)
744{
745 unsigned short usb_val;
746
747 usb_val = bitmask; // low byte: bitmask
748 usb_val |= (mode << 8);
749 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x0B, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
750 ftdi_error_return(-1, "unable to configure bitbang mode. Perhaps not a 2232C type chip?");
751
752 ftdi->bitbang_mode = mode;
753 ftdi->bitbang_enabled = (mode == BITMODE_BITBANG || mode == BITMODE_SYNCBB)?1:0;
754 return 0;
755}
756
a8f46ddc
TJ
757int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins)
758{
a3da1d95 759 unsigned short usb_val;
c3d95b87
TJ
760 if (usb_control_msg(ftdi->usb_dev, 0xC0, 0x0C, 0, ftdi->index, (char *)&usb_val, 1, ftdi->usb_read_timeout) != 1)
761 ftdi_error_return(-1, "read pins failed");
a3da1d95
GE
762
763 *pins = (unsigned char)usb_val;
764 return 0;
765}
766
767
a8f46ddc
TJ
768int ftdi_set_latency_timer(struct ftdi_context *ftdi, unsigned char latency)
769{
a3da1d95
GE
770 unsigned short usb_val;
771
c3d95b87
TJ
772 if (latency < 1)
773 ftdi_error_return(-1, "latency out of range. Only valid for 1-255");
a3da1d95 774
d79d2e68 775 usb_val = latency;
c3d95b87
TJ
776 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x09, usb_val, ftdi->index, NULL, 0, ftdi->usb_write_timeout) != 0)
777 ftdi_error_return(-2, "unable to set latency timer");
778
a3da1d95
GE
779 return 0;
780}
781
782
a8f46ddc
TJ
783int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency)
784{
a3da1d95 785 unsigned short usb_val;
c3d95b87
TJ
786 if (usb_control_msg(ftdi->usb_dev, 0xC0, 0x0A, 0, ftdi->index, (char *)&usb_val, 1, ftdi->usb_read_timeout) != 1)
787 ftdi_error_return(-1, "reading latency timer failed");
a3da1d95
GE
788
789 *latency = (unsigned char)usb_val;
790 return 0;
791}
792
793
a8f46ddc
TJ
794void ftdi_eeprom_initdefaults(struct ftdi_eeprom *eeprom)
795{
f396dbad
TJ
796 eeprom->vendor_id = 0x0403;
797 eeprom->product_id = 0x6001;
d9f0cce7 798
b8aa7b35
TJ
799 eeprom->self_powered = 1;
800 eeprom->remote_wakeup = 1;
801 eeprom->BM_type_chip = 1;
d9f0cce7 802
b8aa7b35
TJ
803 eeprom->in_is_isochronous = 0;
804 eeprom->out_is_isochronous = 0;
805 eeprom->suspend_pull_downs = 0;
d9f0cce7 806
b8aa7b35
TJ
807 eeprom->use_serial = 0;
808 eeprom->change_usb_version = 0;
f396dbad 809 eeprom->usb_version = 0x0200;
b8aa7b35 810 eeprom->max_power = 0;
d9f0cce7 811
b8aa7b35
TJ
812 eeprom->manufacturer = NULL;
813 eeprom->product = NULL;
814 eeprom->serial = NULL;
815}
816
817
818/*
4837f98a
TJ
819 ftdi_eeprom_build
820
821 Build binary output from ftdi_eeprom structure.
822 Output is suitable for ftdi_write_eeprom.
823
824 Return codes:
8ed61121 825 positive value: used eeprom size
b8aa7b35
TJ
826 -1: eeprom size (128 bytes) exceeded by custom strings
827*/
a8f46ddc
TJ
828int ftdi_eeprom_build(struct ftdi_eeprom *eeprom, unsigned char *output)
829{
b8aa7b35
TJ
830 unsigned char i, j;
831 unsigned short checksum, value;
832 unsigned char manufacturer_size = 0, product_size = 0, serial_size = 0;
833 int size_check;
834
835 if (eeprom->manufacturer != NULL)
d9f0cce7 836 manufacturer_size = strlen(eeprom->manufacturer);
b8aa7b35 837 if (eeprom->product != NULL)
d9f0cce7 838 product_size = strlen(eeprom->product);
b8aa7b35 839 if (eeprom->serial != NULL)
d9f0cce7 840 serial_size = strlen(eeprom->serial);
b8aa7b35 841
d9f0cce7
TJ
842 size_check = 128; // eeprom is 128 bytes
843 size_check -= 28; // 28 are always in use (fixed)
b8aa7b35
TJ
844 size_check -= manufacturer_size*2;
845 size_check -= product_size*2;
846 size_check -= serial_size*2;
847
848 // eeprom size exceeded?
849 if (size_check < 0)
d9f0cce7 850 return (-1);
b8aa7b35
TJ
851
852 // empty eeprom
853 memset (output, 0, 128);
854
855 // Addr 00: Stay 00 00
856 // Addr 02: Vendor ID
857 output[0x02] = eeprom->vendor_id;
858 output[0x03] = eeprom->vendor_id >> 8;
859
860 // Addr 04: Product ID
861 output[0x04] = eeprom->product_id;
862 output[0x05] = eeprom->product_id >> 8;
863
864 // Addr 06: Device release number (0400h for BM features)
865 output[0x06] = 0x00;
d9f0cce7 866
b8aa7b35 867 if (eeprom->BM_type_chip == 1)
d9f0cce7 868 output[0x07] = 0x04;
b8aa7b35 869 else
d9f0cce7 870 output[0x07] = 0x02;
b8aa7b35
TJ
871
872 // Addr 08: Config descriptor
873 // Bit 1: remote wakeup if 1
874 // Bit 0: self powered if 1
875 //
876 j = 0;
877 if (eeprom->self_powered == 1)
d9f0cce7 878 j = j | 1;
b8aa7b35 879 if (eeprom->remote_wakeup == 1)
d9f0cce7 880 j = j | 2;
b8aa7b35
TJ
881 output[0x08] = j;
882
883 // Addr 09: Max power consumption: max power = value * 2 mA
d9f0cce7
TJ
884 output[0x09] = eeprom->max_power;
885 ;
886
b8aa7b35
TJ
887 // Addr 0A: Chip configuration
888 // Bit 7: 0 - reserved
889 // Bit 6: 0 - reserved
890 // Bit 5: 0 - reserved
891 // Bit 4: 1 - Change USB version
892 // Bit 3: 1 - Use the serial number string
893 // Bit 2: 1 - Enable suspend pull downs for lower power
894 // Bit 1: 1 - Out EndPoint is Isochronous
895 // Bit 0: 1 - In EndPoint is Isochronous
896 //
897 j = 0;
898 if (eeprom->in_is_isochronous == 1)
d9f0cce7 899 j = j | 1;
b8aa7b35 900 if (eeprom->out_is_isochronous == 1)
d9f0cce7 901 j = j | 2;
b8aa7b35 902 if (eeprom->suspend_pull_downs == 1)
d9f0cce7 903 j = j | 4;
b8aa7b35 904 if (eeprom->use_serial == 1)
d9f0cce7 905 j = j | 8;
b8aa7b35 906 if (eeprom->change_usb_version == 1)
d9f0cce7 907 j = j | 16;
b8aa7b35 908 output[0x0A] = j;
d9f0cce7 909
b8aa7b35
TJ
910 // Addr 0B: reserved
911 output[0x0B] = 0x00;
d9f0cce7 912
b8aa7b35
TJ
913 // Addr 0C: USB version low byte when 0x0A bit 4 is set
914 // Addr 0D: USB version high byte when 0x0A bit 4 is set
915 if (eeprom->change_usb_version == 1) {
916 output[0x0C] = eeprom->usb_version;
d9f0cce7 917 output[0x0D] = eeprom->usb_version >> 8;
b8aa7b35
TJ
918 }
919
920
921 // Addr 0E: Offset of the manufacturer string + 0x80
922 output[0x0E] = 0x14 + 0x80;
923
924 // Addr 0F: Length of manufacturer string
925 output[0x0F] = manufacturer_size*2 + 2;
926
927 // Addr 10: Offset of the product string + 0x80, calculated later
928 // Addr 11: Length of product string
929 output[0x11] = product_size*2 + 2;
930
931 // Addr 12: Offset of the serial string + 0x80, calculated later
932 // Addr 13: Length of serial string
933 output[0x13] = serial_size*2 + 2;
934
935 // Dynamic content
a862ddcf 936 output[0x14] = manufacturer_size*2 + 2;
d9f0cce7
TJ
937 output[0x15] = 0x03; // type: string
938
b8aa7b35 939 i = 0x16, j = 0;
d9f0cce7 940
b8aa7b35
TJ
941 // Output manufacturer
942 for (j = 0; j < manufacturer_size; j++) {
d9f0cce7
TJ
943 output[i] = eeprom->manufacturer[j], i++;
944 output[i] = 0x00, i++;
b8aa7b35
TJ
945 }
946
947 // Output product name
d9f0cce7 948 output[0x10] = i + 0x80; // calculate offset
b8aa7b35
TJ
949 output[i] = product_size*2 + 2, i++;
950 output[i] = 0x03, i++;
951 for (j = 0; j < product_size; j++) {
d9f0cce7
TJ
952 output[i] = eeprom->product[j], i++;
953 output[i] = 0x00, i++;
b8aa7b35 954 }
d9f0cce7 955
b8aa7b35 956 // Output serial
d9f0cce7 957 output[0x12] = i + 0x80; // calculate offset
b8aa7b35
TJ
958 output[i] = serial_size*2 + 2, i++;
959 output[i] = 0x03, i++;
960 for (j = 0; j < serial_size; j++) {
d9f0cce7
TJ
961 output[i] = eeprom->serial[j], i++;
962 output[i] = 0x00, i++;
b8aa7b35
TJ
963 }
964
965 // calculate checksum
966 checksum = 0xAAAA;
d9f0cce7 967
b8aa7b35 968 for (i = 0; i < 63; i++) {
d9f0cce7
TJ
969 value = output[i*2];
970 value += output[(i*2)+1] << 8;
b8aa7b35 971
d9f0cce7
TJ
972 checksum = value^checksum;
973 checksum = (checksum << 1) | (checksum >> 15);
b8aa7b35
TJ
974 }
975
976 output[0x7E] = checksum;
d9f0cce7 977 output[0x7F] = checksum >> 8;
b8aa7b35 978
8ed61121 979 return size_check;
b8aa7b35
TJ
980}
981
982
a8f46ddc
TJ
983int ftdi_read_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom)
984{
a3da1d95
GE
985 int i;
986
987 for (i = 0; i < 64; i++) {
c3d95b87
TJ
988 if (usb_control_msg(ftdi->usb_dev, 0xC0, 0x90, 0, i, eeprom+(i*2), 2, ftdi->usb_read_timeout) != 2)
989 ftdi_error_return(-1, "reading eeprom failed");
a3da1d95
GE
990 }
991
992 return 0;
993}
994
995
a8f46ddc
TJ
996int ftdi_write_eeprom(struct ftdi_context *ftdi, unsigned char *eeprom)
997{
a3da1d95
GE
998 unsigned short usb_val;
999 int i;
1000
1001 for (i = 0; i < 64; i++) {
d9f0cce7
TJ
1002 usb_val = eeprom[i*2];
1003 usb_val += eeprom[(i*2)+1] << 8;
c3d95b87
TJ
1004 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x91, usb_val, i, NULL, 0, ftdi->usb_write_timeout) != 0)
1005 ftdi_error_return(-1, "unable to write eeprom");
a3da1d95
GE
1006 }
1007
1008 return 0;
1009}
1010
1011
a8f46ddc
TJ
1012int ftdi_erase_eeprom(struct ftdi_context *ftdi)
1013{
c3d95b87
TJ
1014 if (usb_control_msg(ftdi->usb_dev, 0x40, 0x92, 0, 0, NULL, 0, ftdi->usb_write_timeout) != 0)
1015 ftdi_error_return(-1, "unable to erase eeprom");
a3da1d95
GE
1016
1017 return 0;
1018}
c3d95b87
TJ
1019
1020
1021char *ftdi_get_error_string (struct ftdi_context *ftdi)
1022{
1023 return ftdi->error_str;
1024}