2009-06-05 08:35:24 +00:00
|
|
|
# Atmel AT91rm9200
|
|
|
|
# http://atmel.com/products/at91/
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
reset_config trst_and_srst
|
|
|
|
|
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 at91rm9200
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
set _CPUTAPID 0x05b0203f
|
|
|
|
}
|
|
|
|
|
|
|
|
# Never allow the following!
|
|
|
|
if { $_CPUTAPID == 0x15b0203f } {
|
2009-06-05 08:35:24 +00:00
|
|
|
echo "-------------------------------------------------------"
|
|
|
|
echo "- ERROR: -"
|
|
|
|
echo "- ERROR: TapID 0x15b0203f is wrong for at91rm9200 -"
|
|
|
|
echo "- ERROR: The chip/board has a JTAG select pin/jumper -"
|
|
|
|
echo "- ERROR: -"
|
|
|
|
echo "- ERROR: In one position (0x05b0203f) it selects the -"
|
|
|
|
echo "- ERROR: ARM CPU, in the other position (0x1b0203f) -"
|
|
|
|
echo "- ERROR: it selects boundry-scan not the ARM -"
|
|
|
|
echo "- ERROR: -"
|
|
|
|
echo "-------------------------------------------------------"
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
|
|
|
|
|
|
|
# Create the GDB Target.
|
2009-06-05 08:35:24 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2009-09-21 18:48:22 +00:00
|
|
|
target create $_TARGETNAME arm920t -endian $_ENDIAN -chain-position $_TARGETNAME
|
2009-06-05 08:35:24 +00:00
|
|
|
|
2008-11-30 22:25:43 +00:00
|
|
|
# AT91RM9200 has a 16K block of sram @ 0x0020.0000
|
2009-11-08 16:52:40 +00:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x00200000 \
|
2009-06-05 08:35:24 +00:00
|
|
|
-work-area-size 0x4000 -work-area-backup 1
|
2008-11-30 22:25:43 +00:00
|
|
|
|
|
|
|
# This chip has a DCC ... use it
|
|
|
|
arm7_9 dcc_downloads enable
|