[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openocd-development
Subject:    [OpenOCD-devel] [PATCH]: 340f448 cfg: Add config file variants using the ftdi driver instead of ft22
From:       gerrit () openocd ! zylin ! com
Date:       2012-07-20 8:43:48
Message-ID: 20120720084348.299B824345 () openocd ! zylin ! com
[Download RAW message or body]

This is an automated email from Gerrit.

Freddie Chopin (freddie.chopin@gmail.com) just uploaded a new patch set to Gerrit, \
which you can find at http://openocd.zylin.com/755

-- gerrit

commit 340f4488bec6feed95f67d3d0533312be55485d8
Author: Freddie Chopin <freddie.chopin@gmail.com>
Date:   Fri Jul 20 10:19:51 2012 +0200

    cfg: Add config file variants using the ftdi driver instead of ft2232
    
    part 3 - files that are currently untested but verified with schematics
    
    Change-Id: Ia00c3b6437bffcfa0d178e779926ad9309e289fe
    Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
    Signed-off-by: Freddie Chopin <freddie.chopin@gmail.com>

diff --git a/tcl/interface/ftdi/dlp-usb1232h.cfg \
b/tcl/interface/ftdi/dlp-usb1232h.cfg new file mode 100644
index 0000000..f447771
--- /dev/null
+++ b/tcl/interface/ftdi/dlp-usb1232h.cfg
@@ -0,0 +1,21 @@
+#
+# DLP Design DLP-USB1232H USB-to-UART/FIFO interface module
+#
+# http://www.dlpdesign.com/usb/usb1232h.shtml
+#
+# Schematics for OpenOCD usage:
+# http://randomprojects.org/wiki/DLP-USB1232H_and_OpenOCD_based_JTAG_adapter
+#
+
+echo "WARNING!"
+echo "This file was not tested with real interface, it is based on schematics and \
code" +echo "in ft2232.c. Please report your experience with this file to \
openocd-devel" +echo "mailing list, so it could be marked as working or fixed."
+
+interface ftdi
+ftdi_device_desc "Dual RS232-HS"
+ftdi_vid_pid 0x0403 0x6010
+
+ftdi_layout_init 0x0008 0x000b
+ftdi_layout_signal nTRST -data 0x0010 -oe 0x0010
+ftdi_layout_signal nSRST -data 0x0040 -oe 0x0040
diff --git a/tcl/interface/ftdi/lisa-l.cfg b/tcl/interface/ftdi/lisa-l.cfg
new file mode 100644
index 0000000..67002bb
--- /dev/null
+++ b/tcl/interface/ftdi/lisa-l.cfg
@@ -0,0 +1,20 @@
+#
+# Lisa/L
+#
+# http://paparazzi.enac.fr/wiki/Lisa
+#
+
+echo "WARNING!"
+echo "This file was not tested with real interface, it is based on schematics and \
code" +echo "in ft2232.c. Please report your experience with this file to \
openocd-devel" +echo "mailing list, so it could be marked as working or fixed."
+
+interface ftdi
+ftdi_device_desc "Lisa/L"
+ftdi_vid_pid 0x0403 0x6010
+ftdi_channel 1
+
+ftdi_layout_init 0x0008 0x180b
+ftdi_layout_signal nTRST -data 0x0010 -oe 0x0010
+ftdi_layout_signal nSRST -data 0x0040 -oe 0x0040
+ftdi_layout_signal LED -data 0x1800
diff --git a/tcl/interface/ftdi/neodb.cfg b/tcl/interface/ftdi/neodb.cfg
new file mode 100644
index 0000000..1f1c39d
--- /dev/null
+++ b/tcl/interface/ftdi/neodb.cfg
@@ -0,0 +1,19 @@
+#
+# Openmoko USB JTAG/RS232 adapter
+#
+# http://wiki.openmoko.org/wiki/Debug_Board_v3
+#
+
+echo "WARNING!"
+echo "This file was not tested with real interface, it is based on schematics and \
code" +echo "in ft2232.c. Please report your experience with this file to \
openocd-devel" +echo "mailing list, so it could be marked as working or fixed."
+
+interface ftdi
+ftdi_device_desc "Debug Board for Neo1973"
+ftdi_vid_pid 0x1457 0x5118
+
+ftdi_layout_init 0x0508 0x0f1b
+ftdi_layout_signal nTRST -data 0x0200 -noe 0x0100
+ftdi_layout_signal nSRST -data 0x0800 -noe 0x0400
+ftdi_layout_signal nNOR_WP -data 0x0010 -oe 0x0010
diff --git a/tcl/interface/ftdi/turtelizer2-revB.cfg \
b/tcl/interface/ftdi/turtelizer2-revB.cfg new file mode 100644
index 0000000..4584040
--- /dev/null
+++ b/tcl/interface/ftdi/turtelizer2-revB.cfg
@@ -0,0 +1,18 @@
+#
+# egnite Turtelizer 2 rev B (with SRST only)
+#
+# http://www.ethernut.de/en/hardware/turtelizer/index.html
+#
+
+echo "WARNING!"
+echo "This file was not tested with real interface, it is based on schematics and \
code" +echo "in ft2232.c. Please report your experience with this file to \
openocd-devel" +echo "mailing list, so it could be marked as working or fixed."
+
+interface ftdi
+ftdi_device_desc "Turtelizer JTAG/RS232 Adapter"
+ftdi_vid_pid 0x0403 0xbdc8
+
+ftdi_layout_init 0x0008 0x0c5b
+ftdi_layout_signal nSRST -oe 0x0040
+ftdi_layout_signal LED -data 0x0c00
diff --git a/tcl/interface/ftdi/turtelizer2-revC.cfg \
b/tcl/interface/ftdi/turtelizer2-revC.cfg new file mode 100644
index 0000000..24f1267
--- /dev/null
+++ b/tcl/interface/ftdi/turtelizer2-revC.cfg
@@ -0,0 +1,19 @@
+#
+# egnite Turtelizer 2 revC (with TRST and SRST)
+#
+# http://www.ethernut.de/en/hardware/turtelizer/index.html
+#
+
+echo "WARNING!"
+echo "This file was not tested with real interface, it is based on schematics and \
code" +echo "in ft2232.c. Please report your experience with this file to \
openocd-devel" +echo "mailing list, so it could be marked as working or fixed."
+
+interface ftdi
+ftdi_device_desc "Turtelizer JTAG/RS232 Adapter"
+ftdi_vid_pid 0x0403 0xbdc8
+
+ftdi_layout_init 0x0008 0x0c7b
+ftdi_layout_signal nTRST -oe 0x0020
+ftdi_layout_signal nSRST -oe 0x0040
+ftdi_layout_signal LED -ndata 0x0c00
diff --git a/tcl/interface/ftdi/xds100v2.cfg b/tcl/interface/ftdi/xds100v2.cfg
new file mode 100644
index 0000000..fcdce37
--- /dev/null
+++ b/tcl/interface/ftdi/xds100v2.cfg
@@ -0,0 +1,23 @@
+#
+# Texas Instruments XDS100v2
+#
+# http://processors.wiki.ti.com/index.php/XDS100#XDS100v2_Features
+#
+
+echo "WARNING!"
+echo "This file was not tested with real interface, it is based on schematics and \
code" +echo "in ft2232.c. Please report your experience with this file to \
openocd-devel" +echo "mailing list, so it could be marked as working or fixed."
+
+interface ftdi
+ftdi_device_desc "Texas Instruments Inc.XDS100 Ver 2.0"
+ftdi_vid_pid 0x0403 0xa6d0
+
+ftdi_layout_init 0x0838 0x597b
+ftdi_layout_signal nTRST -data 0x0010
+ftdi_layout_signal nSRST -oe 0x0100
+ftdi_layout_signal nEMU_EN -data 0x0020
+ftdi_layout_signal nEMU0 -data 0x0040
+ftdi_layout_signal nEMU1 -data 0x1000
+ftdi_layout_signal PWR_RST -data 0x0800
+ftdi_layout_signal LOOPBACK -data 0x4000

-- 

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic