This is an automated email from Gerrit. Daniel Glöckner ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4249
-- gerrit commit 8aca2827f4b1d80f96af514a6e0d6d363ccb82e8 Author: Daniel Glöckner <[email protected]> Date: Sun Oct 8 12:36:08 2017 +0200 jz4730: Configuration for Ingenic JZ4730 Tested on Letux 400 netbook. Change-Id: I52fd01101ff1fe9cc36026582b38e79b930f0dcd Signed-off-by: Daniel Glöckner <[email protected]> diff --git a/tcl/target/jz4730.cfg b/tcl/target/jz4730.cfg new file mode 100644 index 0000000..e64374a --- /dev/null +++ b/tcl/target/jz4730.cfg @@ -0,0 +1,19 @@ +# Ingenic JZ4730 (XBurst MIPS32r1-compatibe core) + +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME jz4730 +} + +if { [info exists CPUTAPID] } { + set _CPUTAPID $CPUTAPID +} else { + set _CPUTAPID 0x0000024f +} + +jtag newtap $_CHIPNAME cpu -irlen 5 -ircapture 0x1 -irmask 0x1f -expected-id $_CPUTAPID + +set _TARGETNAME $_CHIPNAME.cpu +target create $_TARGETNAME mips_m4k -endian little -chain-position $_TARGETNAME +$_TARGETNAME mips_m4k xburst_btb -- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
