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/4362
-- gerrit commit b267e83c2f07a0466970f33a9db62d89c2e19241 Author: Rohit Singh <[email protected]> Date: Fri Jan 19 20:37:29 2018 +1100 tcl: Add support for the Numato Lab Waxwing board * https://numato.com/product/waxwing-spartan-6-fpga-development-board * https://numato.com/blog/wp-content/uploads/2016/08/WaxwingBasicDevelopmentBoardSch.pdf The Waxwing board has FTDI FT2232 whose channel A is connected to Spartan-6 FPGA's JTAG pins, similar to Neso and Saturn boards and can be supported by OpenOCD's ftdi interface. Tested to be working fine on real hardware. Change-Id: Ibb876ac36dda68a81461f33eac215cd5598e6798 Signed-off-by: Rohit Singh <[email protected]> diff --git a/tcl/board/numato_waxwing.cfg b/tcl/board/numato_waxwing.cfg new file mode 100644 index 0000000..328e1e5 --- /dev/null +++ b/tcl/board/numato_waxwing.cfg @@ -0,0 +1,30 @@ +# +# Numato Waxwing Spartan 6 FPGA Development Board +# +# https://numato.com/waxwing-spartan-6-fpga-development-board +# +# IMPORTANT: +# To use openocd with Waxwing using its onboard FTDI chip, +# put the jumpers P12 and P13 in following configuration: +# +# P12: Jumpers one each between 2-4 and 3-5 +# P13: Jumpers one each between 2-4 and 3-5 +# +# NOTE: +# To put the jumpers configuration back to factory configuration (SPI flash connnections): +# +# P12: Jumpers one each between 1-2 and 5-6 +# P13: Jumpers one each between 1-2 and 5-6 + +interface ftdi +ftdi_device_desc "Waxwing Spartan 6 FPGA Board" +ftdi_vid_pid 0x0403 0x6010 +# channel 1 is for custom purpose by users (like uart, fifo etc) +ftdi_channel 0 +# just TCK TDI TDO TMS, no reset +ftdi_layout_init 0x0008 0x000b +reset_config none +adapter_khz 10000 + +source [find cpld/xilinx-xc6s.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
