diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2020-01-15 05:42:03 +0100 |
---|---|---|
committer | Oleksij Rempel <linux@rempel-privat.de> | 2020-03-09 05:59:39 +0000 |
commit | b304971f380d89d5e934859b2c36e81c26df6eee (patch) | |
tree | 0b7325bb087e18a359106f4a6a41637f644fdf3e /tcl/board | |
parent | 82a5c55dc357b042b6755b343c920baebd410874 (diff) | |
download | riscv-openocd-b304971f380d89d5e934859b2c36e81c26df6eee.zip riscv-openocd-b304971f380d89d5e934859b2c36e81c26df6eee.tar.gz riscv-openocd-b304971f380d89d5e934859b2c36e81c26df6eee.tar.bz2 |
tcl/target: Unify Renesas R-Car JTAG reset config
Both Gen2 and Gen3 used the same init_reset{} implementation,
pull it into common file and include it from both generations.
Moreover, this behavior is SoC specific, not board specific,
so move the common init_reset into target/ directory.
Change-Id: I5489a4bff9a786da8cb7fd7a515b0c9ce9dc16e3
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Reviewed-on: http://openocd.zylin.com/5400
Tested-by: jenkins
Reviewed-by: Oleksij Rempel <linux@rempel-privat.de>
Diffstat (limited to 'tcl/board')
-rw-r--r-- | tcl/board/renesas_gen2_common.cfg | 14 | ||||
-rw-r--r-- | tcl/board/renesas_salvator-xs.cfg | 14 |
2 files changed, 0 insertions, 28 deletions
diff --git a/tcl/board/renesas_gen2_common.cfg b/tcl/board/renesas_gen2_common.cfg deleted file mode 100644 index 3e4579b..0000000 --- a/tcl/board/renesas_gen2_common.cfg +++ /dev/null @@ -1,14 +0,0 @@ -# Renesas R-Car Gen2 Evaluation Board common settings - -reset_config trst_and_srst srst_nogate - -proc init_reset {mode} { - # Assert both resets: equivalent to a power-on reset - adapter assert trst assert srst - - # Deassert TRST to begin TAP communication - adapter deassert trst assert srst - - # TAP should now be responsive, validate the scan-chain - jtag arp_init -} diff --git a/tcl/board/renesas_salvator-xs.cfg b/tcl/board/renesas_salvator-xs.cfg index e6f4da3..6d3096e 100644 --- a/tcl/board/renesas_salvator-xs.cfg +++ b/tcl/board/renesas_salvator-xs.cfg @@ -7,17 +7,3 @@ if { ![info exists SOC] } { set SOC H3 } source [find target/renesas_rcar_gen3.cfg] - -reset_config trst_and_srst srst_nogate - -proc init_reset {mode} { - # Assert both resets: equivalent to a power-on reset - adapter assert trst assert srst - - # Deassert TRST to begin TAP communication - adapter deassert trst assert srst - - # TAP should now be responsive, validate the scan-chain - jtag arp_init -} - |