This is an automated email from Gerrit.
Rohit Singh (roh...@gm...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4363
-- gerrit
commit ddd5a3471561cadf6e52b4508b2e23e66ce014ae
Author: Rohit Singh <roh...@gm...>
Date: Fri Jan 19 20:44:43 2018 +1100
tcl: Add support for the Digilent Arty board
* https://reference.digilentinc.com/arty:refmanual
* https://reference.digilentinc.com/_media/arty:arty_sch.pdf
The Arty board has FTDI FT2232 whose channel A 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: Ic70953e01790bad0dcad128dbd4fb5a501cf08ee
Signed-off-by: Rohit Singh <roh...@gm...>
diff --git a/tcl/board/digilent_arty.cfg b/tcl/board/digilent_arty.cfg
new file mode 100644
index 0000000..317e7d2
--- /dev/null
+++ b/tcl/board/digilent_arty.cfg
@@ -0,0 +1,22 @@
+#
+# Digilent Arty with Xilinx Artix-7 FPGA
+#
+# http://store.digilentinc.com/arty-artix-7-fpga-development-board-for-makers-and-hobbyists/
+#
+
+# iManufacturer 1 Digilent
+# iProduct 2 Digilent USB Device
+# iSerial 3 210319A28C7F
+
+interface ftdi
+ftdi_device_desc "Digilent USB Device"
+ftdi_vid_pid 0x0403 0x6010
+# channel 1 does not have any functionality
+ftdi_channel 0
+# 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]
--
|