This is an automated email from Gerrit. Marek Vasut ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5030
-- gerrit commit 5a97940ed0a8e4652a39188b2a5d5d063e7561fa Author: Marek Vasut <[email protected]> Date: Tue Apr 2 05:28:17 2019 +0200 tcl/target: Fix V3M/V3H SoC chipname The V3M SoC is R8A77970 while the V3H SoC is R8A77980 . Update the CHIPNAME and swap the SoCs to keep the list sorted. Change-Id: I35e77379b6f7e9a637ae509c2199ff72d2bee420 Signed-off-by: Marek Vasut <[email protected]> diff --git a/tcl/target/renesas_rcar_gen3.cfg b/tcl/target/renesas_rcar_gen3.cfg index a6eef67..2c478b2 100644 --- a/tcl/target/renesas_rcar_gen3.cfg +++ b/tcl/target/renesas_rcar_gen3.cfg @@ -47,17 +47,17 @@ switch $_soc { set _num_cr7 1 set _boot_core CA57 } - V3H { + V3M { set _CHIPNAME r8a77970 set _num_ca57 0 - set _num_ca53 4 + set _num_ca53 2 set _num_cr7 1 set _boot_core CA53 } - V3M { + V3H { set _CHIPNAME r8a77980 set _num_ca57 0 - set _num_ca53 2 + set _num_ca53 4 set _num_cr7 1 set _boot_core CA53 } -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
