aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/drivers/Makefile.am
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2012-01-30 00:45:18 +0100
committerPeter Stuge <peter@stuge.se>2012-07-17 04:44:41 +0000
commitf5e97b5e1b62322b45b4ff5f2f2797c5e9188739 (patch)
treeb4a445ac2c9808dde6bb776b98fed1f63d6ce663 /src/jtag/drivers/Makefile.am
parentb598efb6135103ef2f2b451402b5a0aca1c87d22 (diff)
downloadriscv-openocd-f5e97b5e1b62322b45b4ff5f2f2797c5e9188739.zip
riscv-openocd-f5e97b5e1b62322b45b4ff5f2f2797c5e9188739.tar.gz
riscv-openocd-f5e97b5e1b62322b45b4ff5f2f2797c5e9188739.tar.bz2
Add FTDI JTAG driver using MPSSE layer
Based on ft2232.c but uses the MPSSE layer for low-level access, greatly simplifying the JTAG logic. Remove all libftdi/FTD2XX code and all layout specific code. Layout specifications are instead handled in Tcl. Use a signal abstraction to enable Tcl configuration files to define outputs for one or several FTDI GPIO. These outputs can then be controlled using the ftdi_set_signal command. Special signal names are reserved for nTRST, nSRST and LED (for blink) so that they, if defined, will be used for their customary purpose. Depending on the type of buffer attached to the FTDI GPIO, the outputs have to be controlled differently. In order to support tristateable signals such as nSRST, both a data GPIO and an output-enable GPIO can be specified for each signal. The following output buffer configurations are supported: * Push-pull with one FTDI output as (non-)inverted data line * Open drain with one FTDI output as (non-)inverted output-enable * Tristate with one FTDI output as (non-)inverted data line and another FTDI output as (non-)inverted output-enable * Unbuffered, using the FTDI GPIO as a tristate output directly by switching data and direction as necessary The data and output-enables are specified as 16-bit bitmasks, corresponding to the concatenation of the high and low FTDI GPIO registers. To specify an unbuffered output, use the same bitmask for both data and output-enable. The adapter configuration file must also specify default values for the FTDI data and direction GPIO registers, and the channel being used (if different from 0). Change-Id: I287a41d4c696cf5fc74eb10d5e63578b0dc7f826 Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/452 Tested-by: jenkins Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/jtag/drivers/Makefile.am')
-rw-r--r--src/jtag/drivers/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jtag/drivers/Makefile.am b/src/jtag/drivers/Makefile.am
index 4cb7e92..0ce06ee 100644
--- a/src/jtag/drivers/Makefile.am
+++ b/src/jtag/drivers/Makefile.am
@@ -43,6 +43,9 @@ endif
if FT2232_DRIVER
DRIVERFILES += ft2232.c
endif
+if FTDI_DRIVER
+DRIVERFILES += ftdi.c mpsse.c
+endif
if USB_BLASTER_DRIVER
DRIVERFILES += usb_blaster.c
endif