This is an automated email from Gerrit.

Eimiar Eimy ([email protected]) just uploaded a new patch set to Gerrit, which 
you can find at http://openocd.zylin.com/3395

-- gerrit

commit 60721ad2a330e8f12568dede9877b9cc5f68f5e0
Author: eimiar <[email protected]>
Date:   Tue Apr 5 20:49:50 2016 +0200

    Add support for Realtek RTL8186 SoC
    
    Change-Id: I583666fd00c36233b8b9f2e748ae198bb43991f0
    Signed-off-by: eimiar <[email protected]>

diff --git a/tcl/target/realtek_rtl8186.cfg b/tcl/target/realtek_rtl8186.cfg
new file mode 100644
index 0000000..fa632a7
--- /dev/null
+++ b/tcl/target/realtek_rtl8186.cfg
@@ -0,0 +1,28 @@
+#
+# Realtek RTL-8186
+# http://wikidevi.com/wiki/Realtek_RTL8186
+#
+
+if { [info exists CHIPNAME] } {
+    set _CHIPNAME $CHIPNAME
+} else {
+    set _CHIPNAME rtl8186
+}
+
+if { [info exists ENDIAN] } {
+    set _ENDIAN $ENDIAN
+} else {
+    set _ENDIAN big
+}
+
+if { [info exists CPUTAPID] } {
+    set _CPUTAPID $CPUTAPID
+} else {
+    set _CPUTAPID 0x1528000d
+}
+
+jtag newtap $_CHIPNAME cpu -irlen 5 -ircapture 0x1 -irmask 0x1f -expected-id 
$_CPUTAPID
+
+set _TARGETNAME $_CHIPNAME.cpu
+target create $_TARGETNAME mips_m4k -endian $_ENDIAN -chain-position 
$_CHIPNAME.cpu
+

-- 

------------------------------------------------------------------------------
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to