|
From: <ge...@op...> - 2018-04-20 22:09:44
|
This is an automated email from Gerrit. Marek Vasut (mar...@gm...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4497 -- gerrit commit 9b2a1e1448ab0b8f7eb62c0137ba0286bd715ae0 Author: Marek Vasut <mar...@gm...> Date: Mon Apr 16 21:22:04 2018 +0200 tcl/board: Add Renesas R-Car R8A7790 H2 Stout board Add configuration for the Renesas R-Car R8A7790 H2 based Stout ADAS board. Change-Id: Ib880b5d2e1fab5c8c0bc0dbcedcdce8055463fe2 Signed-off-by: Marek Vasut <mar...@gm...> diff --git a/tcl/board/renesas_stout.cfg b/tcl/board/renesas_stout.cfg new file mode 100644 index 0000000..fb08924 --- /dev/null +++ b/tcl/board/renesas_stout.cfg @@ -0,0 +1,16 @@ +# Renesas R-Car H2 Evaluation Board + +source [find target/renesas_r8a7790.cfg] + +reset_config trst_and_srst srst_nogate + +proc init_reset {mode} { + # Assert both resets: equivalent to a power-on reset + jtag_reset 1 1 + + # Deassert TRST to begin TAP communication + jtag_reset 0 1 + + # TAP should now be responsive, validate the scan-chain + jtag arp_init +} -- |