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/4365
-- gerrit commit 2c1c849aba7a7afed30d9282d63d936d03aefb18 Author: Rohit Singh <[email protected]> Date: Fri Jan 19 21:00:05 2018 +1100 tcl: Add support for the GadgetFactory Papilio Duo board * https://github.com/GadgetFactory/Papilio-DUO/blob/master/Papilio_DUO_Schematic.pdf * http://papilio.cc/index.php?n=Papilio.PapilioDUOHardwareGuide The Papilio DUO board has FTDI FT2232 whose channel A is connected to Spartan-6 FPGA's JTAG pins, and can be supported by OpenOCD's ftdi interface. Tested to be working fine on real hardware. Change-Id: Ie814dfedc1a6afe8741fc55d87794306a524fd5e Signed-off-by: Rohit Singh <[email protected]> diff --git a/tcl/board/gadgetfactory_papilio_duo.cfg b/tcl/board/gadgetfactory_papilio_duo.cfg new file mode 100644 index 0000000..0307779 --- /dev/null +++ b/tcl/board/gadgetfactory_papilio_duo.cfg @@ -0,0 +1,20 @@ +# +# Papilio DUO +# +# http://papilio.cc/index.php?n=Papilio.PapilioDUOHardwareGuide +# + +# iManufacturer 1 Gadget Factory +# iProduct 2 Papilio DUO + +interface ftdi +ftdi_device_desc "Papilio DUO" +ftdi_vid_pid 0x0403 0x7bc0 +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
