aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2015-05-14 22:02:00 +0200
committerSpencer Oliver <spen@spen-soft.co.uk>2015-08-06 13:08:36 +0100
commite430dbd89465d23dc8ad224f396c890994584958 (patch)
tree4556bf79862c98274304acc6e01333d1cfd2f727
parent0729cd41ebe7aa6ec64b36851d15344f217cbec4 (diff)
downloadriscv-openocd-e430dbd89465d23dc8ad224f396c890994584958.zip
riscv-openocd-e430dbd89465d23dc8ad224f396c890994584958.tar.gz
riscv-openocd-e430dbd89465d23dc8ad224f396c890994584958.tar.bz2
tcl/target: Add Freescale Vybrid VF6xx config
This covers only the Cortex-A5 for now, not the Cortex-M4. Change-Id: I739ec52b14b83d6e9f124ed61f8941502e481402 Signed-off-by: Andreas Färber <afaerber@suse.de> Reviewed-on: http://openocd.zylin.com/2766 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--tcl/target/vybrid_vf6xx.cfg36
1 files changed, 36 insertions, 0 deletions
diff --git a/tcl/target/vybrid_vf6xx.cfg b/tcl/target/vybrid_vf6xx.cfg
new file mode 100644
index 0000000..6ec4b35
--- /dev/null
+++ b/tcl/target/vybrid_vf6xx.cfg
@@ -0,0 +1,36 @@
+#
+# Freescale Vybrid VF610
+#
+
+if { [info exists CHIPNAME] } {
+ set _CHIPNAME $CHIPNAME
+} else {
+ set _CHIPNAME vf610
+}
+
+if { [info exists A5_JTAG_TAPID] } {
+ set _A5_JTAG_TAPID $A5_JTAG_TAPID
+} else {
+ set _A5_JTAG_TAPID 0x4BA00477
+}
+
+if { [info exists A5_SWD_TAPID] } {
+ set _A5_SWD_TAPID $A5_SWD_TAPID
+} else {
+ set _A5_SWD_TAPID 0x3BA02477
+}
+
+if { [using_jtag] } {
+ set _A5_TAPID $_A5_JTAG_TAPID
+} else {
+ set _A5_TAPID $_A5_SWD_TAPID
+}
+
+source [find target/swj-dp.tcl]
+
+swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_A5_TAPID
+
+set _TARGETNAME $_CHIPNAME.cpu
+target create ${_TARGETNAME}0 cortex_a -chain-position $_CHIPNAME.cpu -dbgbase 0xc0088000
+
+adapter_khz 1000