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/4360
-- gerrit commit 3a1be893362e54224ebd21bcb6e3cb378be54ace Author: Rohit Singh <[email protected]> Date: Fri Jan 19 20:27:22 2018 +1100 tcl: Add support for the Numato Lab Neso board * https://numato.com/neso-artix-7-fpga-development-board * https://numato.com/blog/wp-content/uploads/2016/08/NesoSch.pdf The Neso 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: I9286ae7beca6266b750d1569eb8e5c767a394912 Signed-off-by: Rohit Singh <[email protected]> diff --git a/tcl/board/numato_neso.cfg b/tcl/board/numato_neso.cfg new file mode 100644 index 0000000..37b18a0 --- /dev/null +++ b/tcl/board/numato_neso.cfg @@ -0,0 +1,30 @@ +# +# Numato Neso - Artix 7 FPGA Board +# +# https://numato.com/neso-artix-7-fpga-development-board +# +# IMPORTANT: +# To use openocd with Neso using its onboard FTDI chip, +# put the jumpers P10 and P11 in following configuration: +# +# P10: Jumpers one each between 2-4 and 3-5 +# P11: Jumpers one each between 2-4 and 3-5 +# +# NOTE: +# To put the jumpers configuration back to factory configuration (SPI flash connnections): +# +# P10: Jumpers one each between 1-2 and 5-6 +# P11: Jumpers one each between 1-2 and 5-6 + +interface ftdi +ftdi_device_desc "Neso Artix 7 FPGA Module" +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-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
