tcl/target: add SPDX tag
[fw/openocd] / tcl / target / renesas_rcar_reset_common.cfg
1 # SPDX-License-Identifier: GPL-2.0-or-later
2
3 # Renesas R-Car Gen2 Evaluation Board common settings
4
5 reset_config trst_and_srst srst_nogate
6
7 proc init_reset {mode} {
8     # Assert both resets: equivalent to a power-on reset
9     adapter assert trst assert srst
10
11     # Deassert TRST to begin TAP communication
12     adapter deassert trst assert srst
13
14     # TAP should now be responsive, validate the scan-chain
15     jtag arp_init
16 }