2008-02-28 10:07:54 +00:00
|
|
|
#Script for AT91EB40a
|
|
|
|
|
2009-12-15 22:39:25 +00:00
|
|
|
# FIXME use some standard target config, maybe create one from this
|
|
|
|
#
|
|
|
|
# source [find target/...cfg]
|
|
|
|
|
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 at91eb40a
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2011-10-29 21:32:17 +00:00
|
|
|
if { [info exists CPUTAPID] } {
|
2008-11-30 22:25:43 +00:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2008-12-01 13:20:59 +00:00
|
|
|
set _CPUTAPID 0x1f0f0f0f
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 10:07:54 +00:00
|
|
|
#Atmel ties SRST & TRST together, at which point it makes
|
|
|
|
#no sense to use TRST, but use TMS instead.
|
|
|
|
#
|
|
|
|
#The annoying thing with tying SRST & TRST together is that
|
|
|
|
#there is no way to halt the CPU *before and during* the
|
|
|
|
#SRST reset, which means that the CPU will run a number
|
|
|
|
#of cycles before it can be halted(as much as milliseconds).
|
|
|
|
reset_config srst_only srst_pulls_trst
|
2009-09-21 18:48:22 +00:00
|
|
|
|
2008-02-28 10:07:54 +00:00
|
|
|
#jtag scan chain
|
2008-11-30 22:25:43 +00:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2008-02-28 10:07:54 +00:00
|
|
|
|
|
|
|
#target configuration
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2009-12-15 22:39:25 +00:00
|
|
|
target create $_TARGETNAME arm7tdmi -endian $_ENDIAN -chain-position $_TARGETNAME
|
2008-02-28 10:07:54 +00:00
|
|
|
|
|
|
|
# speed up memory downloads
|
2008-07-11 12:17:56 +00:00
|
|
|
arm7_9 fast_memory_access enable
|
2008-02-28 10:07:54 +00:00
|
|
|
arm7_9 dcc_downloads enable
|
|
|
|
|
2008-04-04 13:47:38 +00:00
|
|
|
#flash driver
|
2009-11-18 10:15:52 +00:00
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
2012-03-05 20:23:20 +00:00
|
|
|
flash bank $_FLASHNAME cfi 0x01000000 0x200000 2 2 $_TARGETNAME
|
2008-04-04 13:47:38 +00:00
|
|
|
|
2008-02-28 10:07:54 +00:00
|
|
|
# required for usable performance. Used for lots of
|
|
|
|
# other things than flash programming.
|
2009-11-08 16:52:40 +00:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x00030000 -work-area-size 0x10000 -work-area-backup 0
|
2008-08-15 14:59:03 +00:00
|
|
|
|
2008-11-30 22:25:43 +00:00
|
|
|
$_TARGETNAME configure -event reset-init {
|
2010-11-08 09:23:49 +00:00
|
|
|
echo "Running reset init script for AT91EB40A"
|
2008-07-11 09:06:36 +00:00
|
|
|
# Reset script for AT91EB40a
|
|
|
|
reg cpsr 0x000000D3
|
|
|
|
mww 0xFFE00020 0x1
|
2009-09-21 18:48:22 +00:00
|
|
|
mww 0xFFE00024 0x00000000
|
|
|
|
mww 0xFFE00000 0x01002539
|
|
|
|
mww 0xFFFFF124 0xFFFFFFFF
|
2008-07-11 09:06:36 +00:00
|
|
|
mww 0xffff0010 0x100
|
|
|
|
mww 0xffff0034 0x100
|
|
|
|
}
|
2009-12-01 09:03:15 +00:00
|
|
|
|
|
|
|
# This target is pretty snappy...
|
2010-03-15 15:37:43 +00:00
|
|
|
adapter_khz 16000
|