2008-11-30 22:25:43 +00:00
|
|
|
# Found on the 'TinCanTools' Hammer board.
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists CHIPNAME] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CHIPNAME $CHIPNAME
|
2009-09-21 18:48:22 +00:00
|
|
|
} else {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CHIPNAME s3c2410
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists ENDIAN] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN $ENDIAN
|
2009-09-21 18:48:22 +00:00
|
|
|
} else {
|
2008-11-30 22:25:43 +00:00
|
|
|
# This config file was defaulting to big endian..
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN little
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists CPUTAPID] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CPUTAPID $CPUTAPID
|
2009-09-21 18:48:22 +00:00
|
|
|
} else {
|
2011-10-29 20:58:12 +00:00
|
|
|
# Force an error until we get a good number.
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CPUTAPID 0xffffffff
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#use combined on interfaces or targets that cannot set TRST/SRST separately
|
|
|
|
reset_config trst_and_srst
|
|
|
|
|
|
|
|
#jtag scan chain
|
|
|
|
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
|
2014-09-08 20:11:02 +00:00
|
|
|
target create $_TARGETNAME arm920t -endian $_ENDIAN -chain-position $_TARGETNAME
|
2008-11-30 22:25:43 +00:00
|
|
|
|
2009-11-08 16:52:40 +00:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x30800000 -work-area-size 0x20000 -work-area-backup 0
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
# speed up memory downloads
|
|
|
|
arm7_9 fast_memory_access enable
|
|
|
|
arm7_9 dcc_downloads enable
|