2008-04-23 08:10:27 -05:00
|
|
|
#Marvell/Intel PXA270 Script
|
2008-11-30 16:25:43 -06:00
|
|
|
|
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 pxa270
|
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 {
|
2011-10-29 16:32:17 -05:00
|
|
|
set _ENDIAN little
|
2008-11-30 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
2009-10-10 02:08:06 -05:00
|
|
|
#IDs for pxa270. Are there more?
|
2011-10-29 16:32:17 -05:00
|
|
|
if { [info exists CPUTAPID] } {
|
2008-11-30 16:25:43 -06:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2009-10-10 02:08:06 -05:00
|
|
|
# set useful default
|
|
|
|
set _CPUTAPID 0x49265013
|
|
|
|
}
|
|
|
|
|
2011-10-29 16:32:17 -05:00
|
|
|
if { [info exists CPUTAPID2] } {
|
2009-10-10 02:08:06 -05:00
|
|
|
set _CPUTAPID2 $CPUTAPID2
|
|
|
|
} else {
|
|
|
|
# set useful default
|
|
|
|
set _CPUTAPID2 0x79265013
|
2008-11-30 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
2011-10-29 16:32:17 -05:00
|
|
|
if { [info exists CPUTAPID3] } {
|
2010-09-14 04:15:35 -05:00
|
|
|
set _CPUTAPID2 $CPUTAPID3
|
|
|
|
} else {
|
|
|
|
# set useful default
|
|
|
|
set _CPUTAPID3 0x89265013
|
|
|
|
}
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2019-08-23 08:51:00 -05:00
|
|
|
# set adapter srst delay to the delay introduced by your reset circuit
|
2008-04-23 08:10:27 -05:00
|
|
|
# the rest of the needed delays are built into the openocd program
|
2019-08-23 08:51:00 -05:00
|
|
|
adapter srst delay 260
|
2008-04-23 08:10:27 -05:00
|
|
|
# set the jtag_ntrst_delay to the delay introduced by a reset circuit
|
|
|
|
# the rest of the needed delays are built into the openocd program
|
2009-10-10 02:08:06 -05:00
|
|
|
jtag_ntrst_delay 250
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2009-09-04 00:17:03 -05:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2010-09-14 04:15:35 -05:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 7 -ircapture 0x1 -irmask 0x7f -expected-id $_CPUTAPID -expected-id $_CPUTAPID2 -expected-id $_CPUTAPID3
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2014-09-08 15:11:02 -05:00
|
|
|
target create $_TARGETNAME xscale -endian $_ENDIAN -chain-position $_TARGETNAME
|
2008-04-23 08:10:27 -05:00
|
|
|
# maps to PXA internal RAM. If you are using a PXA255
|
|
|
|
# you must initialize SDRAM or leave this option off
|
2009-11-08 10:52:40 -06:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x5c000000 -work-area-size 0x10000 -work-area-backup 0
|