2008-11-06 15:59:35 -06:00
|
|
|
# script for Insilica IS-5114
|
2008-11-30 16:25:43 -06:00
|
|
|
# AKA: Atmel AT76C114 - an ARM946 chip
|
|
|
|
# ATMEL sold his product line to Insilica...
|
|
|
|
|
2009-09-21 13:48:22 -05:00
|
|
|
if { [info exists CHIPNAME] } {
|
2011-10-29 16:32:17 -05:00
|
|
|
set _CHIPNAME $CHIPNAME
|
2009-09-21 13:48:22 -05:00
|
|
|
} else {
|
2011-10-29 16:32:17 -05:00
|
|
|
set _CHIPNAME is5114
|
2008-11-30 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
2009-09-21 13:48:22 -05:00
|
|
|
if { [info exists ENDIAN] } {
|
2011-10-29 16:32:17 -05:00
|
|
|
set _ENDIAN $ENDIAN
|
2009-09-21 13:48:22 -05:00
|
|
|
} else {
|
2008-11-30 16:25:43 -06:00
|
|
|
# this defaults to a little endian
|
2011-10-29 16:32:17 -05:00
|
|
|
set _ENDIAN little
|
2008-11-30 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
2011-10-29 16:32:17 -05:00
|
|
|
if { [info exists CPUTAPID] } {
|
2008-11-30 16:25:43 -06:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2011-10-29 15:58:12 -05:00
|
|
|
# Force an error until we get a good number.
|
2008-11-30 16:25:43 -06:00
|
|
|
set _CPUTAPID 0xffffffff
|
|
|
|
}
|
2008-11-06 15:59:35 -06:00
|
|
|
|
|
|
|
# jtag speed. We need to stick to 16kHz until we've finished reset.
|
2019-08-23 08:51:00 -05:00
|
|
|
adapter speed 16
|
2008-11-06 15:59:35 -06:00
|
|
|
|
|
|
|
reset_config trst_and_srst
|
|
|
|
|
2008-11-30 16:25:43 -06:00
|
|
|
# Do not specify a tap id here...
|
2009-09-21 13:48:22 -05:00
|
|
|
jtag newtap $_CHIPNAME unknown1 -irlen 8 -ircapture 0x01 -irmask 1
|
2008-11-30 16:25:43 -06:00
|
|
|
# This is the "arm946" chip.
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x0e -irmask 0xf
|
|
|
|
jtag newtap $_CHIPNAME unknown2 -irlen 5 -ircapture 1 -irmask 1
|
|
|
|
|
2008-11-06 15:59:35 -06:00
|
|
|
|
2009-09-21 13:48:22 -05:00
|
|
|
#arm946e-s and
|
2009-09-04 00:17:03 -05:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2014-09-08 15:11:02 -05:00
|
|
|
target create $_TARGETNAME arm966e -endian $_ENDIAN -chain-position $_TARGETNAME
|
2008-11-06 15:59:35 -06:00
|
|
|
|
2019-08-23 08:51:00 -05:00
|
|
|
$_TARGETNAME configure -event reset-start { adapter speed 16 }
|
2008-11-30 16:25:43 -06:00
|
|
|
$_TARGETNAME configure -event reset-init {
|
2008-11-06 15:59:35 -06:00
|
|
|
# We can increase speed now that we know the target is halted.
|
2019-08-23 08:51:00 -05:00
|
|
|
adapter speed 3000
|
2008-11-06 15:59:35 -06:00
|
|
|
}
|
2009-11-08 10:52:40 -06:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x50000000 -work-area-size 16384 -work-area-backup 1
|