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] } {
|
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 imx27
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
2008-11-03 14:27:57 +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 {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN little
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
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
|
|
|
|
2009-11-13 21:44:50 +00:00
|
|
|
# trace buffer
|
2011-10-29 21:32:17 +00:00
|
|
|
if { [info exists ETBTAPID] } {
|
2009-11-13 21:44:50 +00:00
|
|
|
set _ETBTAPID $ETBTAPID
|
2008-11-30 22:25:43 +00:00
|
|
|
} else {
|
2009-11-13 21:44:50 +00:00
|
|
|
set _ETBTAPID 0x1b900f0f
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
2011-10-29 21:32:17 +00:00
|
|
|
jtag newtap $_CHIPNAME etb -irlen 4 -irmask 0xf -expected-id $_ETBTAPID
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
# The CPU tap
|
2011-10-29 21:32:17 +00:00
|
|
|
if { [info exists CPUTAPID] } {
|
2008-11-30 22:25:43 +00:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
set _CPUTAPID 0x07926121
|
|
|
|
}
|
2011-10-29 21:32:17 +00:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
# Create the GDB Target.
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2014-09-08 20:11:02 +00:00
|
|
|
target create $_TARGETNAME arm926ejs -endian $_ENDIAN -chain-position $_TARGETNAME
|
2009-11-08 16:52:40 +00:00
|
|
|
# REVISIT what operating environment sets up this virtual address mapping?
|
|
|
|
$_TARGETNAME configure -work-area-virt 0xffff4c00 -work-area-phys 0xffff4c00 \
|
2011-10-29 21:32:17 +00:00
|
|
|
-work-area-size 0x8000 -work-area-backup 1
|
2008-11-30 22:25:43 +00:00
|
|
|
# Internal to the chip, there is 45K of SRAM
|
|
|
|
#
|
|
|
|
|
|
|
|
arm7_9 dcc_downloads enable
|
2009-11-14 00:56:11 +00:00
|
|
|
|
|
|
|
# trace setup
|
|
|
|
etm config $_TARGETNAME 16 normal full etb
|
|
|
|
etb config $_TARGETNAME $_CHIPNAME.etb
|