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/4687
-- gerrit commit 391f34fc5bfce18b0e2b05e5a9da4e725202b200 Author: Marek Vasut <[email protected]> Date: Fri Oct 5 22:48:04 2018 +0200 tcl/target: Add Renesas RZ/A1H target Add configuration for the Renesas RZ/A1H target. This is an SoC with one Cortex A9 ARMv7a core and 10 MiB of on-SoC SRAM. Change-Id: I0fa327fef8ea0fa2e421330dbb77221878b709b3 Signed-off-by: Marek Vasut <[email protected]> diff --git a/tcl/target/renesas_r7s72100.cfg b/tcl/target/renesas_r7s72100.cfg new file mode 100644 index 0000000..f9466fc --- /dev/null +++ b/tcl/target/renesas_r7s72100.cfg @@ -0,0 +1,25 @@ +# Renesas R-Car RZ/A1H +# https://www.renesas.com/eu/en/products/microcontrollers-microprocessors/rz/rza/rza1h.html + +if { [info exists DAP_TAPID] } { + set _DAP_TAPID $DAP_TAPID +} else { + set _DAP_TAPID 0x4ba00477 +} + +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME r7s72100 +} + +jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x01 -irmask 0x0f -expected-id $_DAP_TAPID + +# Configuring only one core using DAP. +# Base addresses of cores: +# core 0 - 0x80030000 +set _TARGETNAME $_CHIPNAME.ca9 +dap create ${_CHIPNAME}.dap -chain-position $_CHIPNAME.cpu +target create ${_TARGETNAME} cortex_a -dap ${_CHIPNAME}.dap -coreid 0 -dbgbase 0x80030000 + +targets ${_TARGETNAME} -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
