openocd/tcl/board/renesas_salvator-xs.cfg
Marek Vasut b304971f38 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>
2020-03-09 05:59:39 +00:00

10 lines
227 B
INI

# Renesas R-Car Gen3 Salvator-X(S) Board Config
# The Salvator-X(S) boards come with either an H3, M3W, or M3N SOC.
echo "\nSalvator-X(S):"
if { ![info exists SOC] } {
set SOC H3
}
source [find target/renesas_rcar_gen3.cfg]