-
Notifications
You must be signed in to change notification settings - Fork 3
/
ioftdi.cpp
854 lines (797 loc) · 22.2 KB
/
ioftdi.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
/* JTAG GNU/Linux FTDI FT2232 low-level I/O
Copyright (C) 2005-2013 Uwe Bonnes [email protected]
Copyright (C) 2006 Dmitry Teytelman
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include "ioftdi.h"
#include "io_exception.h"
#include "utilities.h"
using namespace std;
IOFtdi::IOFtdi(bool u)
: IOBase(), bptr(0), calls_rd(0), calls_wr(0), retries(0)
{
use_ftd2xx = u;
char *fname = getenv("FTDI_DEBUG");
if (fname)
fp_dbg = fopen(fname,"wb");
else
fp_dbg = NULL;
#ifdef USE_FTD2XX
ftd2xx_handle = 0;
#endif
ftdi_handle = 0;
verbose = false;
}
int IOFtdi::Init(struct cable_t *cable, const char *serial, unsigned int freq)
{
unsigned char buf1[5];
unsigned char buf[9] = { SET_BITS_LOW, 0x00, 0x0b,
TCK_DIVISOR, 0x03, 0x00 ,
SET_BITS_HIGH,0x00, 0x00};
char *description = NULL;
char descstring[256];
unsigned int vendor = VENDOR_FTDI, product = DEVICE_DEF;
unsigned int channel = 0;
unsigned int dbus_data =0, dbus_en = 0xb, cbus_data= 0, cbus_en = 0;
unsigned int divisor;
int res;
char *p = cable->optstring;
/* set for now. If we have a fast device, correct later */
if ((freq == 0 )|| (freq >= 6000000)) /* freq = 0 means max rate, 3 MHz for now*/
divisor = 0;
else
divisor = 6000000/freq - ((6000000&freq)?0:1);
if (divisor > 0xffff)
divisor = 0xffff;
buf[4] = divisor & 0xff;
buf[5] = (divisor >> 8) & 0xff;
/* split string by hand for more flexibility*/
if (p)
{
vendor = strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (p)
{
product = strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (p)
{
char *q = strchr(p,':');
int len = q ? q-p : strlen(p);
if (len>0)
{
int num;
num = (len>255)?255:len;
strncpy(descstring, p, num);
descstring[num] = 0;
description = descstring;
}
p = q;
if(p)
p ++;
}
if (p)
{
channel = strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (p)
{
dbus_data = strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (p)
{
dbus_en |= strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (p)
{
cbus_data = strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (p)
{
cbus_en = strtol(p, NULL, 0);
p = strchr(p,':');
if(p)
p ++;
}
if (verbose)
{
fprintf(stderr, "Cable %s type %s VID 0x%04x PID 0x%04x",
cable->alias, getCableName(cable->cabletype), vendor, product);
if (description)
fprintf(stderr, " Desc \"%s\"", description);
if (serial)
fprintf(stderr, " Serial %s", serial);
fprintf(stderr, " dbus data %02x enable %02x cbus data %02x data %02x\n",
dbus_data, dbus_en, cbus_data, cbus_en);
}
if (!use_ftd2xx)
{
// allocate and initialize FTDI structure
ftdi_handle = ftdi_new();
// Set interface
if (channel > 2)
{
fprintf(stderr, "Invalid MPSSE channel: %d", channel);
res = 2;
goto ftdi_fail;
}
res =ftdi_set_interface(ftdi_handle, (ftdi_interface)channel);
if(res <0)
{
fprintf(stderr, "ftdi_set_interface: %s\n",
ftdi_get_error_string(ftdi_handle));
goto ftdi_fail;
}
// Open device
res = ftdi_usb_open_desc(ftdi_handle, vendor, product,
description, serial);
if (res == 0)
{
res = ftdi_set_bitmode(ftdi_handle, 0x00, BITMODE_RESET);
if(res < 0)
{
fprintf(stderr, "ftdi_set_bitmode: %s",
ftdi_get_error_string(ftdi_handle));
goto ftdi_fail;
}
res = ftdi_usb_purge_buffers(ftdi_handle);
if(res < 0)
{
fprintf(stderr, "ftdi_usb_purge_buffers: %s",
ftdi_get_error_string(ftdi_handle));
goto ftdi_fail;
}
//Set the lacentcy time to a low value
res = ftdi_set_latency_timer(ftdi_handle, 1);
if( res <0)
{
fprintf(stderr, "ftdi_set_latency_timer: %s",
ftdi_get_error_string(ftdi_handle));
goto ftdi_fail;
}
// Set mode to MPSSE
res = ftdi_set_bitmode(ftdi_handle, 0xfb, BITMODE_MPSSE);
if(res< 0)
{
fprintf(stderr, "ftdi_set_bitmode: %s",
ftdi_get_error_string(ftdi_handle));
goto ftdi_fail;
}
/* FIXME: Without this read, consecutive runs on the
FT2232H may hang */
ftdi_read_data(ftdi_handle, buf1,5);
/* Check if we have a fast clock cabable device*/
switch(ftdi_handle->type)
{
case TYPE_2232H:
case TYPE_4232H:
#ifdef DRIVE_OPEN_COLLECTOR
case TYPE_232H:
#endif
device_has_fast_clock = true;
break;
default:
device_has_fast_clock = false;
}
}
else /* Unconditionally try ftd2xx on error*/
{
fprintf(stderr, "Could not open FTDI device (using libftdi): %s\n",
ftdi_get_error_string(ftdi_handle));
ftdi_free(ftdi_handle);
ftdi_handle = 0;
}
}
#ifdef USE_FTD2XX
if (ftdi_handle == 0)
{
DWORD dwNumDevs;
res = FT_CreateDeviceInfoList(&dwNumDevs);
if (res != FT_OK)
{
fprintf(stderr, "FT_CreateDeviceInfoList failed \n");
goto fail;
}
if (dwNumDevs <1)
{
fprintf(stderr, "No FTDI device found (using FTD2XX)\n");
res = 1;
goto fail;
}
#if defined (__linux)
res = FT_SetVIDPID(vendor, product);
if (res != FT_OK)
{
fprintf(stderr, "FT_SetVIDPID failed \n");
goto fail;
}
if(serial && description && (dwNumDevs>1))
fprintf(stderr,
"On linux device selection may fail due to missing LOCID\n");
if((serial || description) && (channel == INTERFACE_B))
fprintf(stderr,
"On linux device selection second channnel fails due to missing LOCID\n");
#else
if ((vendor != 0x0403) ||
((product != 0x6001) && (product != 0x6010) && (product != 0x6006)))
fprintf(stderr,"FTD2XX/WIN: Can't set VID/PID to %04x:%04x. Expect failure\n",
vendor, product);
#endif
if(serial)
res = FT_OpenEx((void*)serial, FT_OPEN_BY_SERIAL_NUMBER, &ftd2xx_handle);
else if(description)
res = FT_OpenEx((void*)description, FT_OPEN_BY_DESCRIPTION, &ftd2xx_handle);
else
{
if (channel == INTERFACE_B)
res = FT_Open (1, &ftd2xx_handle);
else
res = FT_Open (0, &ftd2xx_handle);
}
if (res != FT_OK)
{
fprintf(stderr, "FTD2XX Open failed\n");
goto fail;
}
{
FT_DEVICE ftDevice;
res = FT_GetDeviceInfo(
ftd2xx_handle, &ftDevice, NULL, NULL, NULL, NULL);
if (res == FT_OK)
{
switch (ftDevice)
{
case FT_DEVICE_2232H:
case FT_DEVICE_4232H:
case FT_DEVICE_232H:
device_has_fast_clock = true;
break;
default:
device_has_fast_clock = false;
}
}
}
res = FT_ResetDevice(ftd2xx_handle);
if (res != FT_OK)
{
fprintf(stderr, "FT_ResetDevice failed\n");
goto fail;
}
res = FT_SetBitMode(ftd2xx_handle, 0xfb, BITMODE_MPSSE);
if (res != FT_OK)
{
fprintf(stderr, "FT_SetBitMode failed\n");
goto fail;
}
res = FT_Purge(ftd2xx_handle, FT_PURGE_RX | FT_PURGE_TX);
if (res != FT_OK)
{
fprintf(stderr, "FT_Purge failed\n");
goto fail;
}
res = FT_SetLatencyTimer(ftd2xx_handle, 2);
if (res != FT_OK)
{
fprintf(stderr, "FT_SetLatencyTimer failed\n");
goto fail;
}
res = FT_SetTimeouts(ftd2xx_handle, 1000, 1000);
if (res != FT_OK)
{
fprintf(stderr, "FT_SetTimeouts failed\n");
goto fail;
}
}
#endif
#ifdef USE_FTD2XX
if (!ftd2xx_handle && !ftdi_handle)
#else
if (!ftdi_handle)
#endif
{
fprintf(stderr, "Unable to access FTDI device with either libftdi or FTD2XX\n");
res = 1;
goto fail;
}
else if(ftdi_handle)
fprintf(stderr, "Using Libftdi, ");
else fprintf(stderr, "Using FTD2XX, ");
// Prepare for JTAG operation
buf[1] |= dbus_data;
buf[2] |= dbus_en;
buf[7] = cbus_data;
buf[8] = cbus_en;
mpsse_add_cmd(buf, 9);
mpsse_send();
/* On H devices, use the non-divided clock*/
if (device_has_fast_clock && ((freq == 0) ||(freq > 458)))
{
if ((freq == 0) ||(freq >= 30000000)) /* freq = 0 means max rate, 30 MHz for now*/
divisor = 0;
else
divisor = 30000000/freq -((30000000%freq)?0:1);
if (divisor > 0xffff)
divisor = 0xffff;
#ifndef DIS_DIV_5
#define DIS_DIV_5 0x8a
#endif
buf[0] = DIS_DIV_5;
buf[1] = TCK_DIVISOR;
buf[2] = divisor & 0xff;
buf[3] = (divisor >> 8) & 0xff;
mpsse_add_cmd(buf, 4);
mpsse_send();
tck_freq = 30000000/(1+divisor);
}
else
tck_freq = 6000000/(1+divisor);
if (verbose)
{
if (tck_freq > 1000000)
fprintf(stderr,"Using JTAG frequency %3d.%03d MHz from undivided clock",
tck_freq/1000000,(tck_freq%1000000)/1000);
else
fprintf(stderr,"Using JTAG frequency %3d.%03d kHz from undivided clock",
tck_freq/1000, tck_freq%1000);
}
fprintf(stderr, "\n");
return 0;
ftdi_fail:
fail:
return res;
}
void IOFtdi::settype(int sub_type)
{
subtype = sub_type;
}
void IOFtdi::txrx_block(const unsigned char *tdi, unsigned char *tdo,
int length, bool last)
{
unsigned char rbuf[TX_BUF];
unsigned const char *tmpsbuf = tdi;
unsigned char *tmprbuf = tdo;
/* If we need to shift state, treat the last bit separate*/
unsigned int rem = (last)? length - 1: length;
unsigned char buf[TX_BUF];
unsigned int buflen = TX_BUF - 3 ; /* we need the preamble*/
unsigned int rembits;
/*out on -ve edge, in on +ve edge */
if (rem/8 > buflen)
{
while (rem/8 > buflen)
{
/* full chunks*/
buf[0] = ((tdo)?(MPSSE_DO_READ |MPSSE_READ_NEG):0)
|((tdi)?MPSSE_DO_WRITE:0)|MPSSE_LSB|MPSSE_WRITE_NEG;
buf[1] = (buflen-1) & 0xff; /* low lenbth byte */
buf[2] = ((buflen-1) >> 8) & 0xff; /* high lenbth byte */
mpsse_add_cmd (buf, 3);
if(tdi)
{
mpsse_add_cmd (tmpsbuf, buflen);
tmpsbuf+=buflen;
}
rem -= buflen * 8;
if (tdo)
{
if (readusb(tmprbuf,buflen) != buflen)
{
fprintf(stderr,"IO_JTAG_MPSSE::shiftTDITDO:"
"Failed to read block 0x%x bytes\n", buflen );
}
tmprbuf+=buflen;
}
}
}
rembits = rem % 8;
rem = rem - rembits;
if (rem %8 != 0 )
fprintf(stderr,"IO_JTAG_MPSSE::shiftTDITDO: Programmer error\n");
buflen = rem/8;
if(rem)
{
buf[0] = ((tdo)?(MPSSE_DO_READ|MPSSE_READ_NEG):0)
|((tdi)?MPSSE_DO_WRITE:0)|MPSSE_LSB|MPSSE_WRITE_NEG;
buf[1] = (buflen - 1) & 0xff; /* low length byte */
buf[2] = ((buflen - 1) >> 8) & 0xff; /* high length byte */
mpsse_add_cmd (buf, 3);
if(tdi)
{
mpsse_add_cmd (tmpsbuf, buflen );
tmpsbuf += buflen;
}
}
if (buflen >=(TX_BUF - 4))
{
/* No space for the last data. Send and evenually read
As we handle whole bytes, we can use the receiv buffer direct*/
if(tdo)
{
readusb(tmprbuf, buflen);
tmprbuf+=buflen;
}
buflen = 0;
}
if( rembits)
{
/* Clock Data Bits Out on -ve Clock Edge LSB First (no Read)
(use if TCK/SK starts at 0) */
buf[0] = ((tdo)?(MPSSE_DO_READ|MPSSE_READ_NEG):0)
|((tdi)?MPSSE_DO_WRITE:0)|MPSSE_LSB|MPSSE_BITMODE|MPSSE_WRITE_NEG;
buf[1] = rembits-1; /* length: only one byte left*/
mpsse_add_cmd (buf, 2);
if(tdi)
mpsse_add_cmd (tmpsbuf,1) ;
buflen ++;
}
if(last)
{
bool lastbit = false;
if(tdi)
lastbit = (*tmpsbuf & (1<< rembits));
/* TMS/CS with LSB first on -ve TCK/SK edge, read on +ve edge
- use if TCK/SK is set to 0*/
buf[0] = MPSSE_WRITE_TMS|((tdo)?(MPSSE_DO_READ|MPSSE_READ_NEG):0)|
MPSSE_LSB|MPSSE_BITMODE|MPSSE_WRITE_NEG;
buf[1] = 0; /* only one bit */
buf[2] = (lastbit) ? 0x81 : 1 ; /* TMS set */
mpsse_add_cmd (buf, 3);
buflen ++;
}
if(tdo)
{
if (!last)
{
readusb(tmprbuf, buflen);
if (rembits) /* last bits for incomplete byte must get shifted down*/
tmprbuf[buflen-1] = tmprbuf[buflen-1]>>(8-rembits);
}
else
{
/* we need to handle the last bit. It's much faster to
read into an extra buffer than to issue two USB reads */
readusb(rbuf, buflen);
if(!rembits)
rbuf[buflen-1] = (rbuf[buflen - 1]& 0x80)?1:0;
else
{
/* TDO Bits are shifted downwards, so align them
We only shift TMS once, so the relevant bit is bit 7 (0x80) */
rbuf[buflen-2] = rbuf[buflen-2]>>(8-rembits) |
((rbuf[buflen - 1]&0x80) >> (7 - rembits));
buflen--;
}
memcpy(tmprbuf,rbuf,buflen);
}
}
}
void IOFtdi::tx_tms(unsigned char *pat, int length, int force)
{
unsigned char buf[3] = {MPSSE_WRITE_TMS|MPSSE_LSB|MPSSE_BITMODE|
MPSSE_WRITE_NEG, 0, pat[0]};
int len = length, i, j=0;
if (!len)
return;
while (len>0)
{
/* Attention: Bug in FT2232L(D?, H not!).
With 7 bits TMS shift, static TDO
value gets set to TMS on last TCK edge*/
buf[1] = (len >6)? 5: (len-1);
buf[2] = 0x80;
for (i=0; i < (buf[1]+1); i++)
{
buf[2] |= (((pat[j>>3] & (1<< (j &0x7)))?1:0)<<i);
j++;
}
len -=(buf[1]+1);
mpsse_add_cmd (buf, 3);
}
if(force)
mpsse_send();
}
unsigned int IOFtdi::readusb(unsigned char * rbuf, unsigned long len)
{
unsigned char buf[1] = { SEND_IMMEDIATE};
mpsse_add_cmd(buf,1);
mpsse_send();
#ifdef USE_FTD2XX
DWORD read = 0;
#else
unsigned int read = 0;
#endif
#ifdef USE_FTD2XX
if (ftd2xx_handle)
{
DWORD length = (DWORD) len, last_read;
int timeout=0;
FT_STATUS res;
calls_rd++;
res = FT_Read(ftd2xx_handle, rbuf, length, &read);
if(res != FT_OK)
{
fprintf(stderr,"readusb: Initial read failed\n");
throw io_exception();
}
while ((read <length) && ( timeout <100 ))
{
retries++;
res = FT_Read(ftd2xx_handle, rbuf+read, length-read, &last_read);
if(res != FT_OK)
{
fprintf(stderr,"readusb: Read failed\n");
throw io_exception();
}
read += last_read;
timeout++;
}
if (timeout == 100)
{
fprintf(stderr,"readusb: Timeout readusb\n");
throw io_exception();
}
if (read != len)
{
fprintf(stderr,"readusb: Short read %ld vs %ld\n",
(unsigned long)read, len);
throw io_exception();
}
}
else
#endif
{
int length = (int) len;
int timeout=0, last_errno, last_read;
calls_rd++;
last_read = ftdi_read_data(ftdi_handle, rbuf, length );
if (last_read > 0)
read += last_read;
while (((int)read <length) && ( timeout <1000))
{
last_errno = 0;
retries++;
last_read = ftdi_read_data(ftdi_handle, rbuf+read, length -read);
if (last_read > 0)
read += last_read;
else
last_errno = errno;
timeout++;
}
if (timeout >= 1000)
{
fprintf(stderr,"readusb waiting too long for %ld bytes, only %d read\n",
len, last_read);
if (last_errno)
{
fprintf(stderr,"error %s\n", strerror(last_errno));
deinit();
throw io_exception();
}
}
if (last_read <0)
{
fprintf(stderr,"Error %d str: %s\n", -last_read, strerror(-last_read));
deinit();
throw io_exception();
}
}
if(fp_dbg)
{
unsigned int i;
fprintf(fp_dbg,"readusb len %ld:", len);
for(i=0; i<len; i++)
fprintf(fp_dbg," %02x",rbuf[i]);
fprintf(fp_dbg,"\n");
}
return read;
}
void IOFtdi::deinit(void)
{
int read;
/* Before shutdown, we must wait until everything is shifted out
Do this by temporary enabling loopback mode, write something
and wait until we can read it back */
static unsigned char tbuf[16] = { SET_BITS_LOW, 0xff, 0x00,
SET_BITS_HIGH, 0xff, 0x00,
LOOPBACK_START,
MPSSE_DO_READ|MPSSE_READ_NEG|
MPSSE_DO_WRITE|MPSSE_WRITE_NEG|MPSSE_LSB,
0x04, 0x00,
0xaa, 0x55, 0x00, 0xff, 0xaa,
LOOPBACK_END};
mpsse_add_cmd(tbuf, 16);
read = readusb( tbuf,5);
if (read != 5)
fprintf(stderr,"Loopback failed, expect problems on later runs\n");
#ifdef USE_FTD2XX
if (ftd2xx_handle)
FT_Close(ftd2xx_handle);
else
#endif
{
ftdi_set_bitmode(ftdi_handle, 0, BITMODE_RESET);
ftdi_usb_reset(ftdi_handle);
ftdi_usb_close(ftdi_handle);
ftdi_deinit(ftdi_handle);
}
if(verbose)
fprintf(stderr, "USB transactions: Write %d read %d retries %d\n",
calls_wr, calls_rd, retries);
}
IOFtdi::~IOFtdi()
{
deinit();
free(ftdi_handle);
if(fp_dbg)
fclose(fp_dbg);
}
void IOFtdi::mpsse_add_cmd(unsigned char const *const buf, int const len) {
/* The TX FIFO has 128 Byte. It can easily be overrun
So send only chunks of the TX Buffersize and hope
that the OS USB scheduler gives the MPSSE machine
enough time empty the buffer
*/
if(fp_dbg)
{
int i;
fprintf(fp_dbg,"mpsse_add_cmd len %d:", len);
for(i=0; i<len; i++)
fprintf(fp_dbg," %02x",buf[i]);
fprintf(fp_dbg,"\n");
}
if (bptr + len +1 >= TX_BUF)
mpsse_send();
memcpy(usbuf + bptr, buf, len);
bptr += len;
}
void IOFtdi::mpsse_send() {
if(bptr == 0) return;
if(fp_dbg)
fprintf(fp_dbg,"mpsse_send %d\n", bptr);
#ifdef USE_FTD2XX
if (ftd2xx_handle)
{
DWORD written, last_written;
int res, timeout = 0;
calls_wr++;
res = FT_Write(ftd2xx_handle, usbuf, bptr, &written);
if(res != FT_OK)
{
fprintf(stderr, "mpsse_send: Initial write failed\n");
throw io_exception();
}
while ((written < bptr) && ( timeout <100 ))
{
calls_wr++;
res = FT_Write(ftd2xx_handle, usbuf+written, bptr - written, &last_written);
if(res != FT_OK)
{
fprintf(stderr, "mpsse_send: Write failed\n");
throw io_exception();
}
written += last_written;
timeout++;
}
if (timeout == 100)
{
fprintf(stderr,"mpsse_send: Timeout \n");
throw io_exception();
}
if(written != bptr)
{
fprintf(stderr,"mpsse_send: Short write %ld vs %d\n",
(unsigned long int)written, bptr);
throw io_exception();
}
}
else
#endif
{
calls_wr++;
int written = ftdi_write_data(ftdi_handle, usbuf, bptr);
if(written != (int) bptr)
{
fprintf(stderr,"mpsse_send: Short write %d vs %d at run %d, Err: %s\n",
written, bptr, calls_wr, ftdi_get_error_string(ftdi_handle));
throw io_exception();
}
}
bptr = 0;
}
void IOFtdi::flush() {
mpsse_send();
}
/* Short delays may be prolonged by flush causing an additional frame sent
* out on a next microframe.
*
* So make the FTDI toggle TCK for delays < 20 ms
*/
void IOFtdi::Usleep(unsigned int usec)
{
flush_tms(false);
if(usec < 20000)
{
/* Make sure, we don't overflow and we round up!*/
unsigned int ticks;
ticks = (usec * (tck_freq/100) + (tck_freq/100) - 1)/(1000000/100);
if (device_has_fast_clock)
{
/* Use the "clock for ..." commands*/
unsigned char buf[3] = {0x8f}; /* Clock For n x 8 bits*/
if (ticks > 8 )
{
buf[1] = ((ticks / 8) ) & 0xff;
buf[2] = ((ticks / 8) >> 8 ) & 0xff;
mpsse_add_cmd(buf, 3);
ticks %= 8;
}
if (ticks)
{
buf[0] = 0x8e; /*Clock For n bits*/
buf[1] = ticks -1;
mpsse_add_cmd(buf, 2);
}
}
else
{
unsigned char buf[3];
if (ticks > 8)
{
buf[0] = MPSSE_DO_WRITE|MPSSE_LSB|MPSSE_WRITE_NEG;
buf[1] = ((ticks / 8) ) & 0xff;
buf[2] = ((ticks / 8) >> 8) & 0xff;
mpsse_add_cmd (buf, 3);
buf[0] = 0;
while (ticks > 8)
{
mpsse_add_cmd (buf, 1);
ticks -= 8;
}
}
if (ticks)
{
buf[0] = MPSSE_DO_WRITE|MPSSE_LSB|MPSSE_BITMODE|MPSSE_WRITE_NEG;
buf[1] = ticks -1;
buf[2] = 0;
mpsse_add_cmd (buf, 1);
}
}
}
else
{
flush();
xc3sprog_Usleep(usec);
}
}