71652748f35a97850af42434a06e3a308426e047
[fw/openocd] / tcl / target / armada370.cfg
1 #
2 # armada370 -- support for the Marvell Armada/370 CPU family
3 #
4 # gerg@uclinux.org, OCT-2013
5 #
6
7 if { [info exists CHIPNAME] } {
8    set _CHIPNAME $CHIPNAME
9 } else {
10    set _CHIPNAME armada370
11 }
12
13 if { [info exists CPUTAPID] } {
14    set _CPUTAPID $CPUTAPID
15 } else {
16    set _CPUTAPID 0x4ba00477
17 }
18
19 jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
20
21 set _TARGETNAME $_CHIPNAME.cpu
22 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
23 target create $_TARGETNAME cortex_a -dap $_CHIPNAME.dap
24
25 proc armada370_dbginit {target} {
26      cortex_a dbginit
27 }
28
29 $_TARGETNAME configure -event reset-assert-post "armada370_dbginit $_TARGETNAME"
30
31 dap apsel 1