2010-05-21 11:02:58 -05:00
|
|
|
# NXP LPC2124
|
2009-04-20 17:38:27 -05:00
|
|
|
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
|
|
|
set _CHIPNAME lpc2124
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID ] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
set _CPUTAPID 0x4f1f0f0f
|
|
|
|
}
|
|
|
|
|
2010-12-04 08:45:40 -06:00
|
|
|
reset_config trst_and_srst
|
2009-05-23 19:16:04 -05:00
|
|
|
|
|
|
|
# reset delays
|
2010-03-15 10:41:30 -05:00
|
|
|
adapter_nsrst_delay 100
|
2009-05-23 19:16:04 -05:00
|
|
|
jtag_ntrst_delay 100
|
|
|
|
|
2010-03-15 10:37:43 -05:00
|
|
|
adapter_khz 1000
|
2009-04-20 17:38:27 -05:00
|
|
|
|
|
|
|
#jtag scan chain
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
|
|
|
|
2009-09-04 00:17:03 -05:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2010-05-22 02:51:07 -05:00
|
|
|
target create $_TARGETNAME arm7tdmi -chain-position $_TARGETNAME
|
2009-04-20 17:38:27 -05:00
|
|
|
|
2009-11-08 10:52:40 -06:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x40000000 -work-area-size 0x4000 -work-area-backup 0
|
2009-04-20 17:38:27 -05:00
|
|
|
|
2010-05-21 10:52:25 -05:00
|
|
|
# flash bank <name> lpc2000 <base> <size> 0 0 <target#> <variant> <clock> [calc checksum]
|
2009-11-18 04:15:52 -06:00
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
|
|
|
flash bank $_FLASHNAME lpc2000 0x0 0x40000 0 0 $_TARGETNAME lpc2000_v1 14745 calc_checksum
|