tcl: replace command "interface" with "adapter driver"

Avoid annoying "deprecated" messages while running the scripts
distributed with OpenOCD code.
Change automatically created with command
	sed -i 's/^interface /adapter driver /' $(find tcl/ -type f)

Change-Id: I2291dfb96e164beecbeb3366ce83f9df2ad6c197
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5283
Reviewed-by: Marc Schink <dev@zapb.de>
Tested-by: jenkins
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
This commit is contained in:
Antonio Borneo 2019-08-23 15:49:58 +02:00 committed by Oleksij Rempel
parent 291d1511aa
commit 2aa2ed1d8a
111 changed files with 111 additions and 111 deletions

View File

@ -7,7 +7,7 @@
# openocd does not currently support the on-board USB Blaster II. # openocd does not currently support the on-board USB Blaster II.
# Install the JTAG header and use a USB Blaster instead. # Install the JTAG header and use a USB Blaster instead.
interface usb_blaster adapter driver usb_blaster
source [find target/altera_fpgasoc.cfg] source [find target/altera_fpgasoc.cfg]

View File

@ -7,7 +7,7 @@
# https://github.com/bvanheu/urjtag-ad/commit/8bd883ee01d134f94b79cbbd00df42cd03bafd71 # https://github.com/bvanheu/urjtag-ad/commit/8bd883ee01d134f94b79cbbd00df42cd03bafd71
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Digilent USB Device" ftdi_device_desc "Digilent USB Device"
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014

View File

@ -1,6 +1,6 @@
# JTAG for the STM32F4x chip used on the Gumstix AeroCore is available on # JTAG for the STM32F4x chip used on the Gumstix AeroCore is available on
# the first interface of a Quad FTDI chip. nTRST is bit 4. # the first interface of a Quad FTDI chip. nTRST is bit 4.
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6011 ftdi_vid_pid 0x0403 0x6011
ftdi_layout_init 0x0000 0x001b ftdi_layout_init 0x0000 0x001b

View File

@ -1,4 +1,4 @@
interface ftdi adapter driver ftdi
ftdi_device_desc "Quad RS232-HS" ftdi_device_desc "Quad RS232-HS"
ftdi_vid_pid 0x0403 0x6011 ftdi_vid_pid 0x0403 0x6011
ftdi_channel 0 ftdi_channel 0

View File

@ -14,7 +14,7 @@
# | DISP0_DAT17 | FPGA_TMS | 5-11 | 139 | TMS | # | DISP0_DAT17 | FPGA_TMS | 5-11 | 139 | TMS |
# +-------------+--------------+------+-------+---------+ # +-------------+--------------+------+-------+---------+
interface sysfsgpio adapter driver sysfsgpio
transport select jtag transport select jtag

View File

@ -7,7 +7,7 @@
# Programming while powering via USB may lead to programming failure. # Programming while powering via USB may lead to programming failure.
# Therefore, prefer external power supply. # Therefore, prefer external power supply.
interface ftdi adapter driver ftdi
ftdi_device_desc "Mimas Artix 7 FPGA Module" ftdi_device_desc "Mimas Artix 7 FPGA Module"
ftdi_vid_pid 0x2a19 0x1009 ftdi_vid_pid 0x2a19 0x1009

View File

@ -1,7 +1,7 @@
# Intel Quark microcontroller D2000 Reference Board (web search for doc num 333582) # Intel Quark microcontroller D2000 Reference Board (web search for doc num 333582)
# the board has an onboard FTDI FT232H chip # the board has an onboard FTDI FT232H chip
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014
ftdi_channel 0 ftdi_channel 0

View File

@ -10,7 +10,7 @@
# Sayma AMC is usually combined with Sayma RTM (rear transition module) # Sayma AMC is usually combined with Sayma RTM (rear transition module)
# which features an Artix 7 FPGA. # which features an Artix 7 FPGA.
interface ftdi adapter driver ftdi
ftdi_device_desc "Quad RS232-HS" ftdi_device_desc "Quad RS232-HS"
ftdi_vid_pid 0x0403 0x6011 ftdi_vid_pid 0x0403 0x6011
ftdi_channel 0 ftdi_channel 0

View File

@ -1,6 +1,6 @@
adapter_khz 10000 adapter_khz 10000
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -4,7 +4,7 @@
# http://www.altera.com/literature/ug/ug_usb_blstr.pdf # http://www.altera.com/literature/ug/ug_usb_blstr.pdf
# #
interface usb_blaster adapter driver usb_blaster
usb_blaster_lowlevel_driver ftdi usb_blaster_lowlevel_driver ftdi
# These are already the defaults. # These are already the defaults.
# usb_blaster_vid_pid 0x09FB 0x6001 # usb_blaster_vid_pid 0x09FB 0x6001

View File

@ -2,7 +2,7 @@
# Altera USB-Blaster II # Altera USB-Blaster II
# #
interface usb_blaster adapter driver usb_blaster
usb_blaster_vid_pid 0x09fb 0x6010 0x09fb 0x6810 usb_blaster_vid_pid 0x09fb 0x6010 0x09fb 0x6810
usb_blaster_lowlevel_driver ublast2 usb_blaster_lowlevel_driver ublast2
usb_blaster_firmware /path/to/quartus/blaster_6810.hex usb_blaster_firmware /path/to/quartus/blaster_6810.hex

View File

@ -4,5 +4,5 @@
# http://www.olimex.com/dev/arm-jtag-ew.html # http://www.olimex.com/dev/arm-jtag-ew.html
# #
interface arm-jtag-ew adapter driver arm-jtag-ew

View File

@ -4,6 +4,6 @@
# TODO: URL? # TODO: URL?
# #
interface at91rm9200 adapter driver at91rm9200
at91rm9200_device rea_ecr at91rm9200_device rea_ecr

View File

@ -4,7 +4,7 @@
# http://dangerousprototypes.com/bus-pirate-manual/ # http://dangerousprototypes.com/bus-pirate-manual/
# #
interface buspirate adapter driver buspirate
# you need to specify port on which BP lives # you need to specify port on which BP lives
#buspirate_port /dev/ttyUSB0 #buspirate_port /dev/ttyUSB0

View File

@ -4,6 +4,6 @@
# http://www.amontec.com/chameleon.shtml # http://www.amontec.com/chameleon.shtml
# #
interface parport adapter driver parport
parport_cable chameleon parport_cable chameleon

View File

@ -4,7 +4,7 @@
# http://www.keil.com/support/man/docs/dapdebug/ # http://www.keil.com/support/man/docs/dapdebug/
# #
interface cmsis-dap adapter driver cmsis-dap
# Optionally specify the serial number of CMSIS-DAP usb device. # Optionally specify the serial number of CMSIS-DAP usb device.
#cmsis_dap_serial 02200201E6661E601B98E3B9 #cmsis_dap_serial 02200201E6661E601B98E3B9

View File

@ -2,5 +2,5 @@
# Dummy interface (for testing purposes) # Dummy interface (for testing purposes)
# #
interface dummy adapter driver dummy

View File

@ -4,4 +4,4 @@
# http://code.google.com/p/estick-jtag/ # http://code.google.com/p/estick-jtag/
# #
interface opendous adapter driver opendous

View File

@ -11,6 +11,6 @@ if { [info exists PARPORTADDR] } {
set _PARPORTADDR 0 set _PARPORTADDR 0
} }
interface parport adapter driver parport
parport_port $_PARPORTADDR parport_port $_PARPORTADDR
parport_cable flashlink parport_cable flashlink

View File

@ -1,2 +1,2 @@
interface ft232r adapter driver ft232r
adapter_khz 1000 adapter_khz 1000

View File

@ -7,7 +7,7 @@
# https://blog.matthiasbock.net/wp-content/uploads/2015/04/100ask-JTAGv3.pdf # https://blog.matthiasbock.net/wp-content/uploads/2015/04/100ask-JTAGv3.pdf
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "USB<=>JTAG&RS232" ftdi_device_desc "USB<=>JTAG&RS232"
ftdi_vid_pid 0x1457 0x5118 ftdi_vid_pid 0x1457 0x5118

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Symphony SoundBite" ftdi_device_desc "Symphony SoundBite"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -13,7 +13,7 @@
# http://www.ftdichip.com/Support/Documents/AppNotes/AN_135_MPSSE_Basics.pdf # http://www.ftdichip.com/Support/Documents/AppNotes/AN_135_MPSSE_Basics.pdf
# http://www.ftdichip.com/Support/Documents/AppNotes/AN_129_FTDI_Hi_Speed_USB_To_JTAG_Example.pdf # http://www.ftdichip.com/Support/Documents/AppNotes/AN_129_FTDI_Hi_Speed_USB_To_JTAG_Example.pdf
interface ftdi adapter driver ftdi
#ftdi_device_desc "C232HM-DDHSL-0" #ftdi_device_desc "C232HM-DDHSL-0"
#ftdi_device_desc "C232HM-EDHSL-0" #ftdi_device_desc "C232HM-EDHSL-0"

View File

@ -10,7 +10,7 @@ echo "interface uses the same layout as configs that were verified. Please repor
echo "experience with this file to openocd-devel mailing list, so it could be marked" echo "experience with this file to openocd-devel mailing list, so it could be marked"
echo "as working or fixed." echo "as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "USB-A9260" ftdi_device_desc "USB-A9260"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -10,7 +10,7 @@ echo "interface uses the same layout as configs that were verified. Please repor
echo "experience with this file to openocd-devel mailing list, so it could be marked" echo "experience with this file to openocd-devel mailing list, so it could be marked"
echo "as working or fixed." echo "as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "USB-A9260" ftdi_device_desc "USB-A9260"
ftdi_vid_pid 0x0403 0x6001 ftdi_vid_pid 0x0403 0x6001

View File

@ -4,7 +4,7 @@
# http://www.hitex.com/index.php?id=cortino # http://www.hitex.com/index.php?id=cortino
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Cortino" ftdi_device_desc "Cortino"
ftdi_vid_pid 0x0640 0x0032 ftdi_vid_pid 0x0640 0x0032

View File

@ -1,7 +1,7 @@
# this supports JTAG-HS1 and JTAG-SMT1 # this supports JTAG-HS1 and JTAG-SMT1
# (the later being the OEM on-board version) # (the later being the OEM on-board version)
interface ftdi adapter driver ftdi
ftdi_device_desc "Digilent Adept USB Device" ftdi_device_desc "Digilent Adept USB Device"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
# channel 1 does not have any functionality # channel 1 does not have any functionality

View File

@ -1,6 +1,6 @@
# this supports JTAG-HS2 (and apparently Nexys4 as well) # this supports JTAG-HS2 (and apparently Nexys4 as well)
interface ftdi adapter driver ftdi
ftdi_device_desc "Digilent Adept USB Device" ftdi_device_desc "Digilent Adept USB Device"
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014

View File

@ -2,7 +2,7 @@
# Digilent JTAG-HS3 # Digilent JTAG-HS3
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014
ftdi_device_desc "Digilent USB Device" ftdi_device_desc "Digilent USB Device"

View File

@ -7,7 +7,7 @@
# http://electronix.ru/forum/index.php?showtopic=114633&view=findpost&p=1215497 and ZedBoard schematics # http://electronix.ru/forum/index.php?showtopic=114633&view=findpost&p=1215497 and ZedBoard schematics
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014
ftdi_layout_init 0x2088 0x3f8b ftdi_layout_init 0x2088 0x3f8b

View File

@ -10,7 +10,7 @@
# Note that the digilent_jtag_smt2 layout does not work and hangs while # Note that the digilent_jtag_smt2 layout does not work and hangs while
# the ftdi_device_desc from digilent_hs2 is wrong. # the ftdi_device_desc from digilent_hs2 is wrong.
interface ftdi adapter driver ftdi
ftdi_device_desc "Digilent USB Device" ftdi_device_desc "Digilent USB Device"
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014
ftdi_channel 0 ftdi_channel 0

View File

@ -12,7 +12,7 @@ echo "This file was not tested with real interface, it is based on schematics an
echo "in ft2232.c. Please report your experience with this file to openocd-devel" 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." echo "mailing list, so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -11,7 +11,7 @@
echo "Info : If you need SWD support, flash KT-Link buffer from https://github.com/bharrisau/busblaster echo "Info : If you need SWD support, flash KT-Link buffer from https://github.com/bharrisau/busblaster
and use dp_busblaster_kt-link.cfg instead" and use dp_busblaster_kt-link.cfg instead"
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -9,7 +9,7 @@
# http://dangerousprototypes.com/docs/Bus_Blaster # http://dangerousprototypes.com/docs/Bus_Blaster
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -17,7 +17,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -17,7 +17,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_device_desc "FLOSS-JTAG" ftdi_device_desc "FLOSS-JTAG"
#ftdi_serial "FJ000001" #ftdi_serial "FJ000001"

View File

@ -4,7 +4,7 @@
# http://www.tincantools.com/product.php?productid=16134 # http://www.tincantools.com/product.php?productid=16134
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Flyswatter" ftdi_device_desc "Flyswatter"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -4,7 +4,7 @@
# http://www.tincantools.com/product.php?productid=16153 # http://www.tincantools.com/product.php?productid=16153
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Flyswatter2" ftdi_device_desc "Flyswatter2"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -6,7 +6,7 @@
# #
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014

View File

@ -17,7 +17,7 @@
# BDBUS1 TXD (input) # BDBUS1 TXD (input)
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "USB-JTAG" ftdi_device_desc "USB-JTAG"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "NXHX 10-ETM" ftdi_device_desc "NXHX 10-ETM"
ftdi_vid_pid 0x0640 0x0028 ftdi_vid_pid 0x0640 0x0028

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "NXHX 500-ETM" ftdi_device_desc "NXHX 500-ETM"
ftdi_vid_pid 0x0640 0x0028 ftdi_vid_pid 0x0640 0x0028

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "NXHX 500-RE" ftdi_device_desc "NXHX 500-RE"
ftdi_vid_pid 0x0640 0x0028 ftdi_vid_pid 0x0640 0x0028

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "NXHX 50-ETM" ftdi_device_desc "NXHX 50-ETM"
ftdi_vid_pid 0x0640 0x0028 ftdi_vid_pid 0x0640 0x0028

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "NXHX50-RE" ftdi_device_desc "NXHX50-RE"
ftdi_vid_pid 0x0640 0x0028 ftdi_vid_pid 0x0640 0x0028

View File

@ -5,7 +5,7 @@
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "LPC1768-Stick" ftdi_device_desc "LPC1768-Stick"
ftdi_vid_pid 0x0640 0x0026 ftdi_vid_pid 0x0640 0x0026

View File

@ -4,7 +4,7 @@
# http://www.hitex.com/index.php?id=383 # http://www.hitex.com/index.php?id=383
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "STR9-comStick" ftdi_device_desc "STR9-comStick"
ftdi_vid_pid 0x0640 0x002c ftdi_vid_pid 0x0640 0x002c

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "ICEbear JTAG adapter" ftdi_device_desc "ICEbear JTAG adapter"
ftdi_vid_pid 0x0403 0xc140 ftdi_vid_pid 0x0403 0xc140

View File

@ -6,7 +6,7 @@
# http://wiki.in-circuit.de/images/0/06/610000158A_openocd.pdf # http://wiki.in-circuit.de/images/0/06/610000158A_openocd.pdf
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_layout_init 0x0508 0x0f1b ftdi_layout_init 0x0508 0x0f1b

View File

@ -3,7 +3,7 @@
# https://github.com/iot-lab/iot-lab/wiki # https://github.com/iot-lab/iot-lab/wiki
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_layout_init 0x0008 0x000b ftdi_layout_init 0x0008 0x000b

View File

@ -4,7 +4,7 @@
# http://www.distortec.com # http://www.distortec.com
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "JTAG-lock-pick Tiny 2" ftdi_device_desc "JTAG-lock-pick Tiny 2"
ftdi_vid_pid 0x0403 0x8220 ftdi_vid_pid 0x0403 0x8220

View File

@ -4,7 +4,7 @@
# http://www.amontec.com/jtagkey.shtml # http://www.amontec.com/jtagkey.shtml
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Amontec JTAGkey" ftdi_device_desc "Amontec JTAGkey"
ftdi_vid_pid 0x0403 0xcff8 ftdi_vid_pid 0x0403 0xcff8

View File

@ -4,7 +4,7 @@
# http://www.amontec.com/jtagkey2.shtml # http://www.amontec.com/jtagkey2.shtml
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Amontec JTAGkey-2" ftdi_device_desc "Amontec JTAGkey-2"
ftdi_vid_pid 0x0403 0xcff8 ftdi_vid_pid 0x0403 0xcff8

View File

@ -4,7 +4,7 @@
# http://www.amontec.com/jtagkey2p.shtml # http://www.amontec.com/jtagkey2p.shtml
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Amontec JTAGkey-2P" ftdi_device_desc "Amontec JTAGkey-2P"
ftdi_vid_pid 0x0403 0xcff8 ftdi_vid_pid 0x0403 0xcff8

View File

@ -4,7 +4,7 @@
# http://www.kristech.eu # http://www.kristech.eu
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "KT-LINK" ftdi_device_desc "KT-LINK"
ftdi_vid_pid 0x0403 0xbbe2 ftdi_vid_pid 0x0403 0xbbe2

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on schematics an
echo "in ft2232.c. Please report your experience with this file to openocd-devel" 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." echo "mailing list, so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Lisa/L" ftdi_device_desc "Lisa/L"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_channel 1 ftdi_channel 1

View File

@ -15,7 +15,7 @@
# http://www.luminarymicro.com/products/ek-lm3s9b92.html # http://www.luminarymicro.com/products/ek-lm3s9b92.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Luminary Micro ICDI Board" ftdi_device_desc "Luminary Micro ICDI Board"
ftdi_vid_pid 0x0403 0xbcda ftdi_vid_pid 0x0403 0xbcda

View File

@ -11,7 +11,7 @@
# need to use the "luminary_icdi" layout to work correctly. # need to use the "luminary_icdi" layout to work correctly.
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "LM3S811 Evaluation Board" ftdi_device_desc "LM3S811 Evaluation Board"
ftdi_vid_pid 0x0403 0xbcd9 ftdi_vid_pid 0x0403 0xbcd9

View File

@ -24,7 +24,7 @@
# firmware via the ITM module as well as profile data. # firmware via the ITM module as well as profile data.
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Stellaris Evaluation Board" ftdi_device_desc "Stellaris Evaluation Board"
ftdi_vid_pid 0x0403 0xbcd9 ftdi_vid_pid 0x0403 0xbcd9

View File

@ -4,7 +4,7 @@
# http://www.denx-cs.de/?q=M53EVK # http://www.denx-cs.de/?q=M53EVK
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -9,7 +9,7 @@
# and http://www.marsohod.org/plata-marsokhod3 for details. # and http://www.marsohod.org/plata-marsokhod3 for details.
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -34,7 +34,7 @@ Supports SWD using the FT2232H or FT4232H minimodule.
# CN2-22 - nRESET # CN2-22 - nRESET
# #
interface ftdi adapter driver ftdi
#Select your module type and channel #Select your module type and channel

View File

@ -4,7 +4,7 @@
# http://www.ftdichip.com/Support/Documents/DataSheets/Modules/DS_FT2232H_Mini_Module.pdf # http://www.ftdichip.com/Support/Documents/DataSheets/Modules/DS_FT2232H_Mini_Module.pdf
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "FT2232H MiniModule" ftdi_device_desc "FT2232H MiniModule"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -1,6 +1,6 @@
# https://www.scarabhardware.com/minispartan6/ # https://www.scarabhardware.com/minispartan6/
# https://github.com/scarabhardware/miniSpartan6-plus/raw/master/miniSpartan6%2B_Rev_B.pdf # https://github.com/scarabhardware/miniSpartan6-plus/raw/master/miniSpartan6%2B_Rev_B.pdf
interface ftdi adapter driver ftdi
# The miniSpartan6+ sadly doesn't have a custom device description, so we just # The miniSpartan6+ sadly doesn't have a custom device description, so we just
# have to hope you got it right. # have to hope you got it right.
#ftdi_device_desc "Dual RS232-HS" #ftdi_device_desc "Dual RS232-HS"

View File

@ -4,7 +4,7 @@
# http://wiki.openmoko.org/wiki/Debug_Board_v3 # http://wiki.openmoko.org/wiki/Debug_Board_v3
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Debug Board for Neo1973" ftdi_device_desc "Debug Board for Neo1973"
ftdi_vid_pid 0x1457 0x5118 ftdi_vid_pid 0x1457 0x5118

View File

@ -10,7 +10,7 @@ echo "interface uses the same layout as configs that were verified. Please repor
echo "experience with this file to openocd-devel mailing list, so it could be marked" echo "experience with this file to openocd-devel mailing list, so it could be marked"
echo "as working or fixed." echo "as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "NGX JTAG" ftdi_device_desc "NGX JTAG"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -4,7 +4,7 @@
# http://www.olimex.com/dev/arm-usb-ocd-h.html # http://www.olimex.com/dev/arm-usb-ocd-h.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Olimex OpenOCD JTAG ARM-USB-OCD-H" ftdi_device_desc "Olimex OpenOCD JTAG ARM-USB-OCD-H"
ftdi_vid_pid 0x15ba 0x002b ftdi_vid_pid 0x15ba 0x002b

View File

@ -4,7 +4,7 @@
# http://www.olimex.com/dev/arm-usb-ocd.html # http://www.olimex.com/dev/arm-usb-ocd.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Olimex OpenOCD JTAG" ftdi_device_desc "Olimex OpenOCD JTAG"
ftdi_vid_pid 0x15ba 0x0003 ftdi_vid_pid 0x15ba 0x0003

View File

@ -4,7 +4,7 @@
# http://www.olimex.com/dev/arm-usb-tiny-h.html # http://www.olimex.com/dev/arm-usb-tiny-h.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Olimex OpenOCD JTAG ARM-USB-TINY-H" ftdi_device_desc "Olimex OpenOCD JTAG ARM-USB-TINY-H"
ftdi_vid_pid 0x15ba 0x002a ftdi_vid_pid 0x15ba 0x002a

View File

@ -4,7 +4,7 @@
# http://www.olimex.com/dev/arm-usb-tiny.html # http://www.olimex.com/dev/arm-usb-tiny.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Olimex OpenOCD JTAG TINY" ftdi_device_desc "Olimex OpenOCD JTAG TINY"
ftdi_vid_pid 0x15ba 0x0004 ftdi_vid_pid 0x15ba 0x0004

View File

@ -10,7 +10,7 @@ echo "interface uses the same layout as configs that were verified. Please repor
echo "experience with this file to openocd-devel mailing list, so it could be marked" echo "experience with this file to openocd-devel mailing list, so it could be marked"
echo "as working or fixed." echo "as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "OOCDLink" ftdi_device_desc "OOCDLink"
ftdi_vid_pid 0x0403 0xbaf8 ftdi_vid_pid 0x0403 0xbaf8

View File

@ -7,7 +7,7 @@
# (and it has a different pid number). # (and it has a different pid number).
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_channel 1 ftdi_channel 1

View File

@ -4,7 +4,7 @@
# http://shop.embedded-projects.net/index.php?module=artikel&action=artikel&id=14 # http://shop.embedded-projects.net/index.php?module=artikel&action=artikel&id=14
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232-HS" ftdi_device_desc "Dual RS232-HS"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -4,7 +4,7 @@
# http://www.hs-augsburg.de/~hhoegl/proj/usbjtag/usbjtag.html # http://www.hs-augsburg.de/~hhoegl/proj/usbjtag/usbjtag.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Dual RS232" ftdi_device_desc "Dual RS232"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -4,7 +4,7 @@
# http://www.marvell.com/products/embedded_processors/developer/kirkwood/openrd.jsp # http://www.marvell.com/products/embedded_processors/developer/kirkwood/openrd.jsp
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "OpenRD JTAGKey FT2232D B" ftdi_device_desc "OpenRD JTAGKey FT2232D B"
ftdi_vid_pid 0x0403 0x9e90 ftdi_vid_pid 0x0403 0x9e90
ftdi_channel 0 ftdi_channel 0

View File

@ -1,6 +1,6 @@
# http://pipistrello.saanlima.com/ # http://pipistrello.saanlima.com/
# http://www.saanlima.com/download/pipistrello-v2.0/pipistrello_v2_schematic.pdf # http://www.saanlima.com/download/pipistrello-v2.0/pipistrello_v2_schematic.pdf
interface ftdi adapter driver ftdi
ftdi_device_desc "Pipistrello LX45" ftdi_device_desc "Pipistrello LX45"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
# interface 1 is the uart # interface 1 is the uart

View File

@ -13,7 +13,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_layout_init 0x0c08 0x0c2b ftdi_layout_init 0x0c08 0x0c2b

View File

@ -13,7 +13,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010
ftdi_channel 1 ftdi_channel 1

View File

@ -4,7 +4,7 @@
# http://www.marvell.com/products/embedded_processors/developer/kirkwood/sheevaplug.jsp # http://www.marvell.com/products/embedded_processors/developer/kirkwood/sheevaplug.jsp
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "SheevaPlug JTAGKey FT2232D B" ftdi_device_desc "SheevaPlug JTAGKey FT2232D B"
ftdi_vid_pid 0x9e88 0x9e8f ftdi_vid_pid 0x9e88 0x9e8f
ftdi_channel 0 ftdi_channel 0

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Signalyzer LITE" ftdi_device_desc "Signalyzer LITE"
ftdi_vid_pid 0x0403 0xbca1 ftdi_vid_pid 0x0403 0xbca1

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on code in ft223
echo "Please report your experience with this file to openocd-devel mailing list," echo "Please report your experience with this file to openocd-devel mailing list,"
echo "so it could be marked as working or fixed." echo "so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Signalyzer" ftdi_device_desc "Signalyzer"
ftdi_vid_pid 0x0403 0xbca0 ftdi_vid_pid 0x0403 0xbca0

View File

@ -4,7 +4,7 @@
# http://www.hitex.com/index.php?id=340 # http://www.hitex.com/index.php?id=340
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "STM32-PerformanceStick" ftdi_device_desc "STM32-PerformanceStick"
ftdi_vid_pid 0x0640 0x002d ftdi_vid_pid 0x0640 0x002d

View File

@ -6,7 +6,7 @@
# support) but the USB IDs are different. # support) but the USB IDs are different.
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0451 0xc32a ftdi_vid_pid 0x0451 0xc32a
ftdi_layout_init 0x00a8 0x00eb ftdi_layout_init 0x00a8 0x00eb

View File

@ -4,7 +4,7 @@
# http://www.diygadget.com/tiao-usb-multi-protocol-adapter-lite-jtag-spi-i2c-serial.html # http://www.diygadget.com/tiao-usb-multi-protocol-adapter-lite-jtag-spi-i2c-serial.html
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x8a99 ftdi_vid_pid 0x0403 0x8a99
ftdi_layout_init 0x0038 0x087b ftdi_layout_init 0x0038 0x087b

View File

@ -4,7 +4,7 @@
# http://www.diygadget.com/tiao-usb-multi-protocol-adapter-jtag-spi-i2c-serial.html # http://www.diygadget.com/tiao-usb-multi-protocol-adapter-jtag-spi-i2c-serial.html
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0x8a98 0x0403 0x6010 ftdi_vid_pid 0x0403 0x8a98 0x0403 0x6010
ftdi_layout_init 0x0038 0x087b ftdi_layout_init 0x0038 0x087b

View File

@ -9,7 +9,7 @@ echo "This file was not tested with real interface, it is based on schematics an
echo "in ft2232.c. Please report your experience with this file to openocd-devel" 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." echo "mailing list, so it could be marked as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "Turtelizer JTAG/RS232 Adapter" ftdi_device_desc "Turtelizer JTAG/RS232 Adapter"
ftdi_vid_pid 0x0403 0xbdc8 ftdi_vid_pid 0x0403 0xbdc8

View File

@ -4,7 +4,7 @@
# http://www.ethernut.de/en/hardware/turtelizer/index.html # http://www.ethernut.de/en/hardware/turtelizer/index.html
# #
interface ftdi adapter driver ftdi
ftdi_device_desc "Turtelizer JTAG/RS232 Adapter" ftdi_device_desc "Turtelizer JTAG/RS232 Adapter"
ftdi_vid_pid 0x0403 0xbdc8 ftdi_vid_pid 0x0403 0xbdc8

View File

@ -7,7 +7,7 @@
# Note that UM232H and UM232H-B are 3.3V only. # Note that UM232H and UM232H-B are 3.3V only.
# #
interface ftdi adapter driver ftdi
#ftdi_device_desc "UM232H" #ftdi_device_desc "UM232H"
ftdi_vid_pid 0x0403 0x6014 ftdi_vid_pid 0x0403 0x6014

View File

@ -10,7 +10,7 @@ echo "interface uses the same layout as configs that were verified. Please repor
echo "experience with this file to openocd-devel mailing list, so it could be marked" echo "experience with this file to openocd-devel mailing list, so it could be marked"
echo "as working or fixed." echo "as working or fixed."
interface ftdi adapter driver ftdi
ftdi_device_desc "VPACLink" ftdi_device_desc "VPACLink"
ftdi_vid_pid 0x0403 0x6010 ftdi_vid_pid 0x0403 0x6010

View File

@ -7,7 +7,7 @@
# to the registered TI users. # to the registered TI users.
# #
interface ftdi adapter driver ftdi
ftdi_vid_pid 0x0403 0xa6d0 0x0403 0x6010 ftdi_vid_pid 0x0403 0xa6d0 0x0403 0x6010
ftdi_layout_init 0x0038 0x597b ftdi_layout_init 0x0038 0x597b

View File

@ -7,7 +7,7 @@
# #
# #
interface imx_gpio adapter driver imx_gpio
# For most IMX processors 0x0209c000 # For most IMX processors 0x0209c000
imx_gpio_peripheral_base 0x0209c000 imx_gpio_peripheral_base 0x0209c000

View File

@ -4,7 +4,7 @@
# http://www.segger.com/jlink.html # http://www.segger.com/jlink.html
# #
interface jlink adapter driver jlink
# The serial number can be used to select a specific device in case more than # The serial number can be used to select a specific device in case more than
# one is connected to the host. # one is connected to the host.

View File

@ -1,4 +1,4 @@
interface jtag_vpi adapter driver jtag_vpi
# Set the VPI JTAG server port # Set the VPI JTAG server port
if { [info exists VPI_PORT] } { if { [info exists VPI_PORT] } {

View File

@ -6,7 +6,7 @@
# interface driver or switch the KitProg to KitProg mode. # interface driver or switch the KitProg to KitProg mode.
# #
interface kitprog adapter driver kitprog
# Optionally specify the serial number of the KitProg you want to use. # Optionally specify the serial number of the KitProg you want to use.
#kitprog_serial 1926402735485200 #kitprog_serial 1926402735485200

View File

@ -4,7 +4,7 @@
# http://www.andestech.com # http://www.andestech.com
# #
interface aice adapter driver aice
aice desc "Andes AICE adapter" aice desc "Andes AICE adapter"
aice serial "C001-42163" aice serial "C001-42163"
aice vid_pid 0x1CFC 0x0000 aice vid_pid 0x1CFC 0x0000

View File

@ -4,4 +4,4 @@
# http://code.google.com/p/opendous-jtag/ # http://code.google.com/p/opendous-jtag/
# #
interface opendous adapter driver opendous

View File

@ -4,5 +4,5 @@
# www.openjtag.org # www.openjtag.org
# #
interface openjtag adapter driver openjtag
openjtag_device_desc "Open JTAG Project" openjtag_device_desc "Open JTAG Project"

View File

@ -3,5 +3,5 @@
# #
# http://pemicro.com/osbdm/ # http://pemicro.com/osbdm/
# #
interface osbdm adapter driver osbdm
reset_config srst_only reset_config srst_only

View File

@ -14,6 +14,6 @@ if { [info exists PARPORTADDR] } {
} }
} }
interface parport adapter driver parport
parport_port $_PARPORTADDR parport_port $_PARPORTADDR
parport_cable wiggler parport_cable wiggler

View File

@ -10,7 +10,7 @@ if { [info exists PARPORTADDR] } {
set _PARPORTADDR 0 set _PARPORTADDR 0
} }
interface parport adapter driver parport
parport_port $_PARPORTADDR parport_port $_PARPORTADDR
parport_cable dlc5 parport_cable dlc5

Some files were not shown because too many files have changed in this diff Show More