2009-07-07 16:50:28 +00:00
|
|
|
# page 3-34 of "MCIMC27 Multimedia Applications Processor Reference Manual, Rev 0.3"
|
|
|
|
# SRST pulls TRST
|
|
|
|
#
|
|
|
|
# Without setting these options correctly you'll see all sorts
|
|
|
|
# of weird errors, e.g. MOE=0xe, invalid cpsr values, reset
|
|
|
|
# failing, etc.
|
2009-07-08 06:32:27 +00:00
|
|
|
reset_config trst_and_srst srst_pulls_trst
|
2008-11-03 14:27:57 +00:00
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
2008-11-30 22:25:43 +00:00
|
|
|
set _CHIPNAME imx27
|
|
|
|
}
|
2008-11-03 14:27:57 +00:00
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists ENDIAN] } {
|
|
|
|
set _ENDIAN $ENDIAN
|
|
|
|
} else {
|
2008-11-30 22:25:43 +00:00
|
|
|
set _ENDIAN little
|
|
|
|
}
|
2008-11-03 14:27:57 +00:00
|
|
|
|
2008-11-30 22:25:43 +00:00
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
# Note above there are 2 taps
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
# The bs tap
|
|
|
|
if { [info exists BSTAPID ] } {
|
|
|
|
set _BSTAPID $BSTAPID
|
|
|
|
} else {
|
|
|
|
set _BSTAPID 0x1b900f0f
|
|
|
|
}
|
|
|
|
jtag newtap $_CHIPNAME bs -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_BSTAPID
|
|
|
|
|
|
|
|
# The CPU tap
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
set _CPUTAPID 0x07926121
|
|
|
|
}
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
|
|
|
|
|
|
|
# Create the GDB Target.
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2008-11-30 22:25:43 +00:00
|
|
|
target create $_TARGETNAME arm926ejs -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm926ejs
|
|
|
|
$_TARGETNAME configure -work-area-virt 0xffff4c00 -work-area-phys 0xffff4c00 -work-area-size 0x8000 -work-area-backup 1
|
|
|
|
# Internal to the chip, there is 45K of SRAM
|
|
|
|
#
|
|
|
|
|
|
|
|
arm7_9 dcc_downloads enable
|