This is an automated email from Gerrit. Rohit Singh ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4364
-- gerrit commit 28bee6244ece474d537fb0c1fa024da8cab16c0a Author: Rohit Singh <[email protected]> Date: Fri Jan 19 20:54:26 2018 +1100 tcl: Add support for the Digilent Nexys Video board * https://store.digilentinc.com/nexys-video-artix-7-fpga-trainer-board-for-multimedia-applications/ * https://reference.digilentinc.com/_media/nexys-video:nexys_video_sch.pdf The Nexys Video board has FTDI FT2232 whose channel B is connected to Artix-7 FPGA's JTAG pins, and can be supported by OpenOCD's ftdi interface. Tested to be working fine on real hardware. Change-Id: I2996166dc8c2b6c08a9390958adfcdec8fc2bd37 Signed-off-by: Rohit Singh <[email protected]> diff --git a/tcl/board/digilent_nexys_video.cfg b/tcl/board/digilent_nexys_video.cfg new file mode 100644 index 0000000..e843b9c --- /dev/null +++ b/tcl/board/digilent_nexys_video.cfg @@ -0,0 +1,23 @@ +# +# Digilent Nexys Video with Xilinx Artix-7 FPGA +# +# https://store.digilentinc.com/nexys-video-artix-7-fpga-trainer-board-for-multimedia-applications/ +# + +# iManufacturer 1 Digilent +# iProduct 2 Digilent USB Device +# iSerial 3 210276690190 + +interface ftdi +ftdi_device_desc "Digilent USB Device" +ftdi_vid_pid 0x0403 0x6010 +# channel 0 is dedicated for Digilent's DPTI Interface +# channel 1 is used for JTAG +ftdi_channel 1 +# just TCK TDI TDO TMS, no reset +ftdi_layout_init 0x0088 0x008b +reset_config none +adapter_khz 10000 + +source [find cpld/xilinx-xc7.cfg] +source [find cpld/jtagspi.cfg] -- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
