tcl/target: Move TI targets to ti folder

Move the ti targets to a TI folder. Since the folder is ti, we can
drop the "ti" prefix from the files themselves.

Done via the following script:

 mkdir target/ti
 FILES=`ls target/ti*.cfg target/omap*.cfg target/am335x.cfg
           target/amdm37x.cfg target/icepick.cfg target/stellaris.cfg
		   target/davinci.cfg`
 for cname in $FILES
 do
   bname=`basename $cname`
   nname=`echo $bname|sed -e "s/^ti-//g"|sed -e "s/ti_//g"`
   npath="target/ti/$nname"
   echo "$cname => $npath"
   fref=`git grep $cname .|cut -d ':' -f1|sort -u`
   sed -i -e "s&$cname&$npath&g" $fref
   git mv $cname $npath
 done

Change-Id: I9f94dc6bb01f73721d4ff96be92cb51de2cbf0e2
Suggested-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/9203
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
Nishanth Menon
2025-11-03 11:02:57 -06:00
committed by Antonio Borneo
parent 5479c58d23
commit 2f8ddc0835
105 changed files with 101 additions and 101 deletions

2
README
View File

@@ -38,7 +38,7 @@ e.g.:
```
openocd -f interface/ftdi/jtagkey2.cfg -c "transport select jtag" \
-f target/ti_calypso.cfg
-f target/ti/calypso.cfg
```
```

View File

@@ -1771,10 +1771,10 @@ There are more complex examples too, with chips that have
multiple TAPs. Ones worth looking at include:
@itemize
@item @file{target/omap3530.cfg} -- with disabled ARM and DSP,
@item @file{target/ti/omap3530.cfg} -- with disabled ARM and DSP,
plus a JRC to enable them
@item @file{target/str912.cfg} -- with flash, CPU, and boundary scan
@item @file{target/ti_dm355.cfg} -- with ETM, ARM, and JRC (this JRC
@item @file{target/ti/dm355.cfg} -- with ETM, ARM, and JRC (this JRC
is not currently used)
@end itemize

View File

@@ -13,7 +13,7 @@
# http://processors.wiki.ti.com/index.php?title=How_to_Find_the_Silicon_Revision_of_your_OMAP35x
set CHIPTYPE "am35x"
source [find target/amdm37x.cfg]
source [find target/ti/amdm37x.cfg]
# The TI-14 JTAG connector does not have srst. CPU reset is handled in
# hardware.

View File

@@ -4,7 +4,7 @@
# http://focus.ti.com/dsp/docs/thirdparty/catalog/devtoolsproductfolder.tsp?actionPerformed=productFolder&productId=5939
# http://www.logicpd.com/products/development-kits/zoom-omap-l138-evm-development-kit
source [find target/omapl138.cfg]
source [find target/ti/omapl138.cfg]
reset_config trst_and_srst separate

View File

@@ -4,7 +4,7 @@
# http://focus.ti.com/docs/toolsw/folders/print/tmdsevm355.html
# http://c6000.spectrumdigital.com/evmdm355/
source [find target/ti_dm355.cfg]
source [find target/ti/dm355.cfg]
reset_config trst_and_srst separate

View File

@@ -4,7 +4,7 @@
# http://focus.ti.com/docs/toolsw/folders/print/tmdxevm365.html
# http://support.spectrumdigital.com/boards/evmdm365
source [find target/ti_dm365.cfg]
source [find target/ti/dm365.cfg]
# NOTE: in Rev C boards, the CPLD ignores SRST from the ARM-20 JTAG
# connector, so it doesn't affect generation of the reset signal.

View File

@@ -6,7 +6,7 @@
# EVM is just the board; buy that at Spectrum.
# The "kit" from TI also has: video camera, LCD video monitor, more.
source [find target/ti_dm6446.cfg]
source [find target/ti/dm6446.cfg]
# J4 controls what CS2 hooks up to, usually NOR or NAND flash.
# S3.1/S3.2 controls boot mode, which may force J4 and S3.3 settings.

View File

@@ -18,4 +18,4 @@ source [find interface/ftdi/luminary.cfg]
# include the target config
set WORKAREASIZE 0x2000
set CHIPNAME lm3s1968
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -13,4 +13,4 @@ source [find interface/ftdi/luminary.cfg]
# 20k working area
set WORKAREASIZE 0x4000
set CHIPNAME lm3s3748
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -14,4 +14,4 @@ source [find interface/ftdi/luminary.cfg]
set WORKAREASIZE 0x5000
set CHIPNAME lm3s6965
# include the target config
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -13,4 +13,4 @@ source [find interface/ftdi/luminary-lm3s811.cfg]
# include the target config
set WORKAREASIZE 0x2000
set CHIPNAME lm3s811
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -14,4 +14,4 @@ source [find interface/ftdi/luminary.cfg]
# include the target config
set WORKAREASIZE 0x2000
set CHIPNAME lm3s811
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -14,4 +14,4 @@ source [find interface/ftdi/luminary.cfg]
set WORKAREASIZE 0x10000
set CHIPNAME lm3s8962
# include the target config
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -13,4 +13,4 @@ source [find interface/ftdi/luminary-icdi.cfg]
set WORKAREASIZE 0x4000
set CHIPNAME lm3s9b9x
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -13,4 +13,4 @@ source [find interface/ftdi/luminary-icdi.cfg]
# 64k working area
set WORKAREASIZE 0x10000
set CHIPNAME lm3s9d92
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -16,4 +16,4 @@ transport select jtag
set WORKAREASIZE 0x8000
set CHIPNAME lm4f120h5qr
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -16,4 +16,4 @@ transport select jtag
set WORKAREASIZE 0x8000
set CHIPNAME lm4f23x
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -22,7 +22,7 @@ set partition_list {
adam2env { "Adam2 environment" 0x903f0000 0x00010000 }
}
source [find target/ti-ar7.cfg]
source [find target/ti/ar7.cfg]
# External 4MB MXIC 29LV320MBTC Flash (Manufacturer/Device: 0x00c2 0x227e)
set _FLASHNAME $_CHIPNAME.flash

View File

@@ -12,7 +12,7 @@ set partition_list {
config { "Bootloader config space" 0x903f0000 0x00010000 }
}
source [find target/ti-ar7.cfg]
source [find target/ti/ar7.cfg]
# External 16MB SDRAM - disabled as we use internal sram
#$_TARGETNAME configure -work-area-phys 0x80000000 -work-area-size 0x00001000

View File

@@ -2,7 +2,7 @@
# OMAP2420 SDP board ("H4")
source [find target/omap2420.cfg]
source [find target/ti/omap2420.cfg]
# NOTE: this assumes you're *NOT* using a TI-14 connector.
reset_config trst_and_srst separate

View File

@@ -2,7 +2,7 @@
# http://omap.spectrumdigital.com/osk5912/
source [find target/omap5912.cfg]
source [find target/ti/omap5912.cfg]
# NOTE: this assumes you're using the ARM 20-pin ("Multi-ICE")
# JTAG connector, and accordingly have J1 connecting pins 1 & 2.

View File

@@ -6,7 +6,7 @@
# more information can be found on
# http://bb.osmocom.org/trac/wiki/SonyEricssonJ100i
#
source [find target/ti_calypso.cfg]
source [find target/ti/calypso.cfg]
# external flash

View File

@@ -7,4 +7,4 @@ source [find interface/xds110.cfg]
transport select jtag
source [find target/ti_tms570ls1x.cfg]
source [find target/ti/tms570ls1x.cfg]

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am243
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 250

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am261
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 250

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am263
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 250

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am263p
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 250

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am273
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 250

View File

@@ -7,6 +7,6 @@
#
jtag_rclk 6000
source [find target/am335x.cfg]
source [find target/ti/am335x.cfg]
reset_config trst_and_srst

View File

@@ -8,7 +8,7 @@ source [find interface/ftdi/xds100v2.cfg]
transport select jtag
adapter speed 30000
source [find target/am437x.cfg]
source [find target/ti/am437x.cfg]
$_TARGETNAME configure -event reset-init { init_platform 0x61a11b32 }
reset_config trst_and_srst

View File

@@ -4,6 +4,6 @@
transport select jtag
adapter speed 16000
source [find target/am437x.cfg]
source [find target/ti/am437x.cfg]
reset_config trst_and_srst

View File

@@ -20,4 +20,4 @@ if { ![info exists SOC] } {
set SOC am625
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am625
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -20,4 +20,4 @@ if { ![info exists SOC] } {
set SOC am62a7
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am62a7
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC am62l
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -20,4 +20,4 @@ if { ![info exists SOC] } {
set SOC am62p
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -19,6 +19,6 @@ if { ![info exists SOC] } {
set SOC am62p
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -19,6 +19,6 @@ if { ![info exists SOC] } {
set SOC am642
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 250

View File

@@ -20,4 +20,4 @@ if { ![info exists SOC] } {
set SOC am642
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -19,6 +19,6 @@ if { ![info exists SOC] } {
set SOC am654
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -6,7 +6,7 @@
# Fall back to 6MHz if RTCK is not supported
jtag_rclk 6000
source [find target/omap3530.cfg]
source [find target/ti/omap3530.cfg]
# TI-14 JTAG connector
reset_config trst_only

View File

@@ -4,7 +4,7 @@
# http://beagleboard.org
set CHIPTYPE "dm37x"
source [find target/amdm37x.cfg]
source [find target/ti/amdm37x.cfg]
# The TI-14 JTAG connector does not have srst. CPU reset is handled in
# hardware.

View File

@@ -3,4 +3,4 @@
# AM335x Beaglebone family base configuration
# http://beagleboard.org/bone
source [find target/am335x.cfg]
source [find target/ti/am335x.cfg]

View File

@@ -2,6 +2,6 @@
jtag_rclk 6000
source [find target/omap4430.cfg]
source [find target/ti/omap4430.cfg]
reset_config trst_and_srst

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
transport select jtag
adapter speed 5500
source [find target/ti_cc13x0.cfg]
source [find target/ti/cc13x0.cfg]

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
adapter speed 5500
transport select jtag
source [find target/ti_cc13x2.cfg]
source [find target/ti/cc13x2.cfg]

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
adapter speed 5500
transport select jtag
source [find target/ti_cc26x0.cfg]
source [find target/ti/cc26x0.cfg]

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
adapter speed 5500
transport select jtag
source [find target/ti_cc26x2.cfg]
source [find target/ti/cc26x2.cfg]

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
adapter speed 5500
transport select jtag
source [find target/ti_cc26x2x7.cfg]
source [find target/ti/cc26x2x7.cfg]

View File

@@ -17,7 +17,7 @@ if { [info exists TRANSPORT] } {
adapter speed 2500
set WORKAREASIZE 0x40000
source [find target/ti_cc32xx.cfg]
source [find target/ti/cc32xx.cfg]
reset_config srst_only
adapter srst delay 1100

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
adapter speed 8500
transport select swd
source [find target/ti_cc3220sf.cfg]
source [find target/ti/cc3220sf.cfg]

View File

@@ -6,7 +6,7 @@
source [find interface/xds110.cfg]
adapter speed 8500
transport select swd
source [find target/ti_cc32xx.cfg]
source [find target/ti/cc32xx.cfg]
reset_config srst_only
adapter srst delay 1100

View File

@@ -13,4 +13,4 @@ transport select jtag
set WORKAREASIZE 0x8000
set CHIPNAME tm4c129xnczad
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -12,4 +12,4 @@ transport select jtag
set WORKAREASIZE 0x8000
set CHIPNAME tm4c123gh6pm
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -13,4 +13,4 @@ transport select jtag
set WORKAREASIZE 0x8000
set CHIPNAME tm4c1294ncpdt
source [find target/stellaris.cfg]
source [find target/ti/stellaris.cfg]

View File

@@ -19,6 +19,6 @@ if { ![info exists SOC] } {
set SOC j7200
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -19,4 +19,4 @@ transport select swd
if { ![info exists SOC] } {
set SOC j721e
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -19,6 +19,6 @@ if { ![info exists SOC] } {
set SOC j721e
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC j721s2
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -21,4 +21,4 @@ if { ![info exists SOC] } {
set SOC j722s
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -19,6 +19,6 @@ if { ![info exists SOC] } {
set SOC j722s
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -19,4 +19,4 @@ transport select swd
if { ![info exists SOC] } {
set SOC j784s4
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]

View File

@@ -20,6 +20,6 @@ if { ![info exists SOC] } {
set SOC j784s4
}
source [find target/ti_k3.cfg]
source [find target/ti/k3.cfg]
adapter speed 2500

View File

@@ -6,4 +6,4 @@
source [find interface/xds110.cfg]
adapter speed 10000
transport select swd
source [find target/ti_msp432.cfg]
source [find target/ti/msp432.cfg]

View File

@@ -11,4 +11,4 @@
source [find interface/xds110.cfg]
adapter speed 10000
source [find target/ti_mspm0.cfg]
source [find target/ti/mspm0.cfg]

View File

@@ -2,6 +2,6 @@
jtag_rclk 6000
source [find target/omap4430.cfg]
source [find target/ti/omap4430.cfg]
reset_config trst_only

View File

@@ -2,6 +2,6 @@
jtag_rclk 6000
source [find target/omap4460.cfg]
source [find target/ti/omap4460.cfg]
reset_config trst_only

View File

@@ -8,7 +8,7 @@
source [find interface/ftdi/xds100v2.cfg]
# Processor is TMS570LS20216
source [find target/ti_tms570ls20xxx.cfg]
source [find target/ti/tms570ls20xxx.cfg]
reset_config trst_only

View File

@@ -3,6 +3,6 @@
adapter speed 1500
source [find interface/ftdi/xds100v2.cfg]
source [find target/ti_tms570.cfg]
source [find target/ti/tms570.cfg]
reset_config trst_only

View File

@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME
@@ -84,7 +84,7 @@ $_TARGETNAME configure -work-area-phys 0x40300000 -work-area-size 0x4000
# when putting the target into 'reset halt', we need to disable the watchdog as
# it would otherwise trigger while we're in JTAG
# FIXME: unify with target/am437x.cfg
# FIXME: unify with target/ti/am437x.cfg
source [find mem_helper.tcl]
set WDT1_BASE_ADDR 0x44e35000
set WDT1_W_PEND_WSPR [expr {$WDT1_BASE_ADDR + 0x0034}]

View File

@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
source [find mem_helper.tcl]
###############################################################################

View File

@@ -59,7 +59,7 @@ adapter speed 10
# can be read about this module in sprugn4r in chapter 27: "Debug and
# Emulation". The module is used to route the JTAG chain to the various
# subsystems in the chip.
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
# The TAP order should be described from the TDO connection in OpenOCD to the
# TDI pin. The OpenOCD FAQ describes this in more detail:

View File

@@ -10,4 +10,4 @@ set CHIPNAME cc13x0
set JRC_TAPID 0x0B9BE02F
set WORKAREASIZE 0x4000
source [find target/ti_cc26x0.cfg]
source [find target/ti/cc26x0.cfg]

View File

@@ -10,4 +10,4 @@ set CHIPNAME cc13x2
set JRC_TAPID 0x0BB4102F
set WORKAREASIZE 0x7000
source [find target/ti_cc26x0.cfg]
source [find target/ti/cc26x0.cfg]

View File

@@ -5,8 +5,8 @@
adapter speed 100
source [find target/icepick.cfg]
source [find target/ti-cjtag.cfg]
source [find target/ti/icepick.cfg]
source [find target/ti/cjtag.cfg]
if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME

View File

@@ -6,8 +6,8 @@
# http://www.ti.com
#
source [find target/icepick.cfg]
source [find target/ti-cjtag.cfg]
source [find target/ti/icepick.cfg]
source [find target/ti/cjtag.cfg]
if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME

View File

@@ -10,4 +10,4 @@ set CHIPNAME cc26x2
set JRC_TAPID 0x0BB4102F
set WORKAREASIZE 0x7000
source [find target/ti_cc26x0.cfg]
source [find target/ti/cc26x0.cfg]

View File

@@ -10,4 +10,4 @@ set CHIPNAME cc26x2x7
set JRC_TAPID 0x1BB7702F
set WORKAREASIZE 0x7000
source [find target/ti_cc26x0.cfg]
source [find target/ti/cc26x0.cfg]

View File

@@ -7,8 +7,8 @@
#
source [find target/swj-dp.tcl]
source [find target/icepick.cfg]
source [find target/ti_cc32xx.cfg]
source [find target/ti/icepick.cfg]
source [find target/ti/cc32xx.cfg]
set _FLASHNAME $_CHIPNAME.flash
flash bank $_FLASHNAME cc3220sf 0 0 0 0 $_TARGETNAME

View File

@@ -8,7 +8,7 @@
#
source [find target/swj-dp.tcl]
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
if { [info exists CHIPNAME] } {
set _CHIPNAME $CHIPNAME

View File

@@ -17,7 +17,7 @@ set EMU01 "-disable"
# needing any ICEpick interaction.
#set EMU01 "-enable"
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
#
# Also note: when running without RTCK before the PLLs are set up, you
@@ -80,7 +80,7 @@ dict set dm355 uart0 0x01c20000
dict set dm355 uart1 0x01c20400
dict set dm355 uart2 0x01e06000
source [find target/davinci.cfg]
source [find target/ti/davinci.cfg]
################
# GDB target: the ARM, using SRAM1 for scratch. SRAM0 (also 16K)

View File

@@ -17,7 +17,7 @@ set EMU01 "-disable"
# needing any ICEpick interaction.
#set EMU01 "-enable"
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
# Subsidiary TAP: ARM ETB11, with scan chain for 4K of ETM trace buffer
if { [info exists ETB_TAPID] } {
@@ -72,7 +72,7 @@ dict set dm365 a_emif_cs1 0x04000000
dict set dm365 ddr_emif 0x20000000
dict set dm365 ddr 0x80000000
source [find target/davinci.cfg]
source [find target/ti/davinci.cfg]
################
# GDB target: the ARM, using SRAM1 for scratch. SRAM0 (also 16K)

View File

@@ -17,7 +17,7 @@ set EMU01 "-disable"
# needing any ICEpick interaction.
#set EMU01 "-enable"
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
# Subsidiary TAP: unknown ... must enable via ICEpick
jtag newtap $_CHIPNAME unknown -irlen 8 -disable

View File

@@ -11,7 +11,7 @@ if { [info exists CHIPNAME] } {
}
# ICEpick-C ... used to route Cortex, DSP, and more not shown here
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
# Subsidiary TAP: C64x+ DSP ... must enable via ICEpick
jtag newtap $_CHIPNAME dsp -irlen 38 -ircapture 0x25 -irmask 0x3f -disable

View File

@@ -12,7 +12,7 @@ if { [info exists CHIPNAME] } {
# Although the OMAP4430 supposedly has an ICEpick-D, only the
# ICEpick-C router commands seem to work.
# See http://processors.wiki.ti.com/index.php/ICEPICK
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
#

View File

@@ -12,7 +12,7 @@ if { [info exists CHIPNAME] } {
# Although the OMAP4430 supposedly has an ICEpick-D, only the
# ICEpick-C router commands seem to work.
# See http://processors.wiki.ti.com/index.php/ICEPICK
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
#

View File

@@ -9,7 +9,7 @@ if { [info exists CHIPNAME] } {
set _CHIPNAME omapl138
}
source [find target/icepick.cfg]
source [find target/ti/icepick.cfg]
# Subsidiary TAP: ARM ETB11, with scan chain for 4K of ETM trace buffer
if { [info exists ETB_TAPID] } {

View File

@@ -1,3 +1,3 @@
# SPDX-License-Identifier: GPL-2.0-or-later
source [find target/ti_tms570.cfg]
source [find target/ti/tms570.cfg]

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