aboutsummaryrefslogtreecommitdiff
path: root/tcl/target
diff options
context:
space:
mode:
authorTomas Vanek <vanekt@fbl.cz>2018-11-12 12:18:31 +0100
committerTomas Vanek <vanekt@fbl.cz>2018-11-26 09:31:09 +0000
commitff555afc02d50ca57fc6e71787d34a8e985cf115 (patch)
tree7b44fc37832aa557720a2eab360ac1d3b8114162 /tcl/target
parent20113201df25475889a3cd9ee22c0397e4fae530 (diff)
downloadriscv-openocd-ff555afc02d50ca57fc6e71787d34a8e985cf115.zip
riscv-openocd-ff555afc02d50ca57fc6e71787d34a8e985cf115.tar.gz
riscv-openocd-ff555afc02d50ca57fc6e71787d34a8e985cf115.tar.bz2
tcl/target, board: remove useless gdb-attach event definitions
Since commit bae76053dc515252dc5c8235b9a848e461080c66 gdb-attach event is defined as halt by default. Remove useless and in case of bcm281xx wrong definitions of the event. Change-Id: I8e69780a93722eb9392673303f54d502e71eceb6 Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Reviewed-on: http://openocd.zylin.com/4763 Tested-by: jenkins Reviewed-by: Steven Stallion <sstallion@gmail.com>
Diffstat (limited to 'tcl/target')
-rw-r--r--tcl/target/altera_fpgasoc.cfg2
-rw-r--r--tcl/target/bcm281xx.cfg7
-rw-r--r--tcl/target/imx6.cfg1
-rw-r--r--tcl/target/quark_d20xx.cfg2
-rw-r--r--tcl/target/ti_tms570.cfg5
-rw-r--r--tcl/target/u8500.cfg8
6 files changed, 0 insertions, 25 deletions
diff --git a/tcl/target/altera_fpgasoc.cfg b/tcl/target/altera_fpgasoc.cfg
index 1fbc5a3..9a83b5c 100644
--- a/tcl/target/altera_fpgasoc.cfg
+++ b/tcl/target/altera_fpgasoc.cfg
@@ -48,7 +48,6 @@ target create $_TARGETNAME1 cortex_a -dap $_CHIPNAME.dap \
$_TARGETNAME1 configure -event reset-start { adapter_khz 1000 }
$_TARGETNAME1 configure -event reset-assert-post "cycv_dbginit $_TARGETNAME1"
-$_TARGETNAME1 configure -event gdb-attach { halt }
# A9 core 1
@@ -57,7 +56,6 @@ $_TARGETNAME1 configure -event gdb-attach { halt }
#$_TARGETNAME2 configure -event reset-start { adapter_khz 1000 }
#$_TARGETNAME2 configure -event reset-assert-post "cycv_dbginit $_TARGETNAME2"
-#$_TARGETNAME2 configure -event gdb-attach { halt }
proc cycv_dbginit {target} {
# General Cortex-A8/A9 debug initialisation
diff --git a/tcl/target/bcm281xx.cfg b/tcl/target/bcm281xx.cfg
index 6432a20..0715d82 100644
--- a/tcl/target/bcm281xx.cfg
+++ b/tcl/target/bcm281xx.cfg
@@ -26,10 +26,3 @@ dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
target create $_TARGETNAME0 cortex_a -dap $_CHIPNAME.dap -coreid 0 -dbgbase 0x3fe10000
target create $_TARGETNAME1 cortex_a -dap $_CHIPNAME.dap -coreid 1 -dbgbase 0x3fe12000
target smp $_TARGETNAME0 $_TARGETNAME1
-
-$_TARGETNAME0 configure -event gdb-attach {
- cortex_a dbginit
-}
-$_TARGETNAME1 configure -event gdb-attach {
- cortex_a dbginit
-}
diff --git a/tcl/target/imx6.cfg b/tcl/target/imx6.cfg
index 5b59ecf..8a32517 100644
--- a/tcl/target/imx6.cfg
+++ b/tcl/target/imx6.cfg
@@ -57,4 +57,3 @@ adapter_khz 1000
$_TARGETNAME configure -event reset-start { adapter_khz 1000 }
$_TARGETNAME configure -event reset-assert-post "imx6_dbginit $_TARGETNAME"
-$_TARGETNAME configure -event gdb-attach { halt }
diff --git a/tcl/target/quark_d20xx.cfg b/tcl/target/quark_d20xx.cfg
index 419f9dc..7d718c2 100644
--- a/tcl/target/quark_d20xx.cfg
+++ b/tcl/target/quark_d20xx.cfg
@@ -33,8 +33,6 @@ jtag configure quark_d20xx.quark -event tap-disable \
target create quark_d20xx.quark quark_d20xx -endian little -chain-position quark_d20xx.quark
-quark_d20xx.quark configure -event gdb-attach { halt }
-
quark_d20xx.quark configure -event reset-start {
# need to halt the target to write to memory
if {[quark_d20xx.quark curstate] ne "halted"} { halt }
diff --git a/tcl/target/ti_tms570.cfg b/tcl/target/ti_tms570.cfg
index 1c89b8c..ce3a176 100644
--- a/tcl/target/ti_tms570.cfg
+++ b/tcl/target/ti_tms570.cfg
@@ -63,11 +63,6 @@ target create $_TARGETNAME cortex_r4 -endian $_ENDIAN \
# TMS570 uses quirky BE-32 mode
$_CHIPNAME.dap ti_be_32_quirks 1
-$_TARGETNAME configure -event gdb-attach {
- cortex_r4 dbginit
- halt
-}
-
$_TARGETNAME configure -event "reset-assert" {
global _CHIPNAME
diff --git a/tcl/target/u8500.cfg b/tcl/target/u8500.cfg
index 7d8bfe3..1313efd 100644
--- a/tcl/target/u8500.cfg
+++ b/tcl/target/u8500.cfg
@@ -206,10 +206,6 @@ dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
target create $_TARGETNAME_1 cortex_a -dap $_CHIPNAME.dap -dbgbase $_DAP_DBG1 -coreid 0 -rtos linux
-$_TARGETNAME_1 configure -event gdb-attach {
- halt
-}
-
if { ![info exists TARGETNAME_2] } {
global _TARGETNAME_2
@@ -221,10 +217,6 @@ set _TARGETNAME_2 $TARGETNAME_2
target create $_TARGETNAME_2 cortex_a -dap $_CHIPNAME.dap -dbgbase $_DAP_DBG2 -coreid 1 -rtos linux
-$_TARGETNAME_2 configure -event gdb-attach {
- halt
-}
-
if {![info exists SMP]} {
global _SMP