src/jtag/drivers/ftdi: fix swd pin comment and links
- TDI/DO is not pin 2 and in fact, we don't even need to mention which pin number it is. "TDI/DO pin" is descriptive enough. - FT2232D link didn't work anymore. It could have been updated to the current working FT2232D link but changed to link the FT2232H instead which is the latest generation and the most commonly used these days. - Taking advantage of the change, link to the MPSSE document updated. It still worked but through a redirection, so updated just in case the redirection stops working. Change-Id: Ia7d01bbcac2158026831edb010a6b50f58351e42 Signed-off-by: Diego Herranz <diegoherranz@diegoherranz.com> Reviewed-on: http://openocd.zylin.com/4908 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>reverse-resume-order
parent
45d90aa380
commit
4db695c66c
|
@ -53,11 +53,11 @@
|
||||||
*
|
*
|
||||||
* This code uses information contained in the MPSSE specification which was
|
* This code uses information contained in the MPSSE specification which was
|
||||||
* found here:
|
* found here:
|
||||||
* http://www.ftdichip.com/Documents/AppNotes/AN2232C-01_MPSSE_Cmnd.pdf
|
* https://www.ftdichip.com/Support/Documents/AppNotes/AN2232C-01_MPSSE_Cmnd.pdf
|
||||||
* Hereafter this is called the "MPSSE Spec".
|
* Hereafter this is called the "MPSSE Spec".
|
||||||
*
|
*
|
||||||
* The datasheet for the ftdichip.com's FT2232D part is here:
|
* The datasheet for the ftdichip.com's FT2232H part is here:
|
||||||
* http://www.ftdichip.com/Documents/DataSheets/DS_FT2232D.pdf
|
* https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf
|
||||||
*
|
*
|
||||||
* Also note the issue with code 0x4b (clock data to TMS) noted in
|
* Also note the issue with code 0x4b (clock data to TMS) noted in
|
||||||
* http://developer.intra2net.com/mailarchive/html/libftdi/2009/msg00292.html
|
* http://developer.intra2net.com/mailarchive/html/libftdi/2009/msg00292.html
|
||||||
|
@ -1055,7 +1055,7 @@ static void ftdi_swd_swdio_en(bool enable)
|
||||||
if (oe->data_mask)
|
if (oe->data_mask)
|
||||||
ftdi_set_signal(oe, enable ? '1' : '0');
|
ftdi_set_signal(oe, enable ? '1' : '0');
|
||||||
else {
|
else {
|
||||||
/* Sets TDI/DO pin (pin 2) to input during rx when both pins are connected
|
/* Sets TDI/DO pin to input during rx when both pins are connected
|
||||||
to SWDIO */
|
to SWDIO */
|
||||||
if (enable)
|
if (enable)
|
||||||
direction |= jtag_direction_init & 0x0002U;
|
direction |= jtag_direction_init & 0x0002U;
|
||||||
|
|
Loading…
Reference in New Issue