This is an automated email from Gerrit.

Andreas Färber (afaer...@suse.de) just uploaded a new patch set to Gerrit, 
which you can find at http://openocd.zylin.com/3169

-- gerrit

commit 680173fc72de9f8470c37b4fc593d63ff09a32c4
Author: Andreas Färber <afaer...@suse.de>
Date:   Tue Dec 15 01:20:57 2015 +0100

    tcl/target: Add Renesas S7G2 config
    
    Tested with Renesas DK-S7G2M v3.0 board.
    
    Change-Id: Ia6acaf70271ed4eb7bc4e921552cbd2ff83f6acb
    Signed-off-by: Andreas Färber <afaer...@suse.de>

diff --git a/tcl/target/renesas_s7g2.cfg b/tcl/target/renesas_s7g2.cfg
new file mode 100644
index 0000000..a09377b
--- /dev/null
+++ b/tcl/target/renesas_s7g2.cfg
@@ -0,0 +1,50 @@
+#
+# Renesas Synergy S7 G2 w/ ARM Cortex-M4 @ 240 MHz
+#
+
+if { [info exists CHIPNAME] } {
+       set _CHIPNAME $CHIPNAME
+} else {
+       set _CHIPNAME s7g2
+}
+
+if { [info exists CPU_JTAG_TAPID] } {
+       set _CPU_JTAG_TAPID $CPU_JTAG_TAPID
+} else {
+       set _CPU_JTAG_TAPID 0x5ba00477
+}
+
+if { [info exists CPU_SWD_TAPID] } {
+       set _CPU_SWD_TAPID $CPU_SWD_TAPID
+} else {
+       set _CPU_SWD_TAPID 0x5ba02477
+}
+
+source [find target/swj-dp.tcl]
+
+if { [using_jtag] } {
+       set _CPU_TAPID $_CPU_JTAG_TAPID
+} else {
+       set _CPU_TAPID $_CPU_SWD_TAPID
+}
+
+swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPU_TAPID
+
+set _TARGETNAME $_CHIPNAME.cpu
+target create $_TARGETNAME cortex_m -chain-position $_TARGETNAME
+
+if { [info exists WORKAREASIZE] } {
+       set _WORKAREASIZE $WORKAREASIZE
+} else {
+       # 640 KB On-Chip SRAM
+       set _WORKAREASIZE 0xa0000
+}
+
+$_TARGETNAME configure -work-area-phys 0x1ffe0000 \
+                       -work-area-size $_WORKAREASIZE -work-area-backup 0
+
+if { ![using_hla] } {
+       cortex_m reset_config sysresetreq
+}
+
+adapter_khz 1000

-- 

------------------------------------------------------------------------------
_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to