From: Oleksij Rempel Date: Tue, 30 Jun 2015 18:36:16 +0000 (+0200) Subject: tcl/target|board: add config Atheros ar2315 X-Git-Tag: v0.10.0-rc1~394 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=d651d7109f368f66eba481404e9d063ec1219a69;ds=sidebyside tcl/target|board: add config Atheros ar2315 Add configs for Atheros ar2313 MIPS based WiSoC and board based on this chip: La Fonera FON2200 Change-Id: Ibfdbfc9c2beca6cf436c9ee5e493b08bfb55ac85 Signed-off-by: Oleksij Rempel Reviewed-on: http://openocd.zylin.com/2839 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/tcl/board/la_fonera-fon2200.cfg b/tcl/board/la_fonera-fon2200.cfg new file mode 100644 index 0000000000..f46b04200a --- /dev/null +++ b/tcl/board/la_fonera-fon2200.cfg @@ -0,0 +1,3 @@ +source [find target/atheros_ar2315.cfg] + +reset_config trst_and_srst diff --git a/tcl/target/atheros_ar2315.cfg b/tcl/target/atheros_ar2315.cfg new file mode 100644 index 0000000000..92ad376000 --- /dev/null +++ b/tcl/target/atheros_ar2315.cfg @@ -0,0 +1,16 @@ +if { [info exists CHIPNAME] } { + set _CHIPNAME $_CHIPNAME +} else { + set _CHIPNAME ar2315 +} + +if { [info exists CPUTAPID] } { + set _CPUTAPID $CPUTAPID +} else { + set _CPUTAPID 0x00000001 +} + +jtag newtap $_CHIPNAME cpu -irlen 5 -expected-id $_CPUTAPID + +set _TARGETNAME $_CHIPNAME.cpu +target create $_TARGETNAME mips_m4k -endian big -chain-position $_TARGETNAME