2008-11-30 22:25:43 +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 at9r40008
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
# force an error till we get a good number
|
|
|
|
set _CPUTAPID 0xffffffff
|
|
|
|
}
|
|
|
|
|
2008-03-01 22:00:13 +00:00
|
|
|
jtag_nsrst_delay 200
|
|
|
|
jtag_ntrst_delay 200
|
|
|
|
|
|
|
|
#use combined on interfaces or targets that can't set TRST/SRST separately
|
2008-05-16 20:23:35 +00:00
|
|
|
reset_config srst_only srst_pulls_trst
|
2008-03-01 22:00:13 +00:00
|
|
|
|
|
|
|
#jtag scan chain
|
|
|
|
#format L IRC IRCM IDCODE (Length, IR Capture, IR Capture Mask, IDCODE)
|
2008-11-30 22:25:43 +00:00
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2009-09-04 05:17:03 +00:00
|
|
|
|
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2008-12-08 11:23:04 +00:00
|
|
|
target create $_TARGETNAME arm7tdmi -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm7tdmi
|
2008-07-28 06:08:05 +00:00
|
|
|
|
2008-03-01 22:00:13 +00:00
|
|
|
|
2008-11-30 22:25:43 +00:00
|
|
|
$_TARGETNAME configure -event gdb-flash-erase-start {
|
2008-10-31 06:57:42 +00:00
|
|
|
wait_halt
|
|
|
|
sleep 10
|
|
|
|
poll
|
|
|
|
# Ethernut 3 remapping is required to access external flash memory.
|
|
|
|
mww 0xffe00000 0x1000213d
|
|
|
|
mww 0xffe00004 0x20003e3d
|
|
|
|
mww 0xffe00020 0x00000001
|
|
|
|
}
|
2008-03-01 22:00:13 +00:00
|
|
|
|
2009-11-08 16:52:40 +00:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x3C000 -work-area-size 0x4000 -work-area-backup 0
|
2008-10-30 08:04:11 +00:00
|
|
|
|
2009-10-29 18:23:05 +00:00
|
|
|
flash bank cfi 0x10000000 0x400000 2 2 $_TARGETNAME
|
2008-03-01 22:00:13 +00:00
|
|
|
|
|
|
|
# For more information about the configuration files, take a look at:
|
2008-08-18 07:23:54 +00:00
|
|
|
# openocd.texi
|