2009-03-02 12:51:42 +00:00
|
|
|
######################################
|
|
|
|
# Target: Marvell Feroceon CPU core
|
|
|
|
######################################
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
2009-03-02 12:51:42 +00:00
|
|
|
set _CHIPNAME feroceon
|
|
|
|
}
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists ENDIAN] } {
|
|
|
|
set _ENDIAN $ENDIAN
|
|
|
|
} else {
|
2009-03-02 12:51:42 +00:00
|
|
|
set _ENDIAN little
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
set _CPUTAPID 0x20a023d3
|
|
|
|
}
|
|
|
|
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2009-09-04 05:17:03 +00:00
|
|
|
|
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2009-03-02 12:51:42 +00:00
|
|
|
target create $_TARGETNAME feroceon -endian $_ENDIAN -chain-position $_TARGETNAME
|
|
|
|
|
|
|
|
reset_config trst_and_srst
|
2010-03-15 15:41:30 +00:00
|
|
|
adapter_nsrst_delay 200
|
2009-03-02 12:51:42 +00:00
|
|
|
jtag_ntrst_delay 200
|
|
|
|
|