diff options
author | Mathias K <kesmtp@freenet.de> | 2011-12-17 10:18:07 +0100 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2012-01-03 21:13:05 +0000 |
commit | c479f9b50fa18bd23955a78271a3584b5294c236 (patch) | |
tree | 34dc7e796ec719b490f2ddaa264e086e3b44ed27 /tcl/target | |
parent | 725e7e6aa72cb307aa6e80c61c5f1cf26caf0805 (diff) |
Add STM32F2X/STLINK target config file.
Change-Id: I02161fa05da993b5b966c31a706667d1bd91935d
Signed-off-by: Mathias K <kesmtp@freenet.de>
Reviewed-on: http://openocd.zylin.com/287
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'tcl/target')
-rw-r--r-- | tcl/target/stm32f2x_stlink.cfg | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tcl/target/stm32f2x_stlink.cfg b/tcl/target/stm32f2x_stlink.cfg new file mode 100644 index 00000000..bb113e04 --- /dev/null +++ b/tcl/target/stm32f2x_stlink.cfg @@ -0,0 +1,32 @@ +# +# +# +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME stm32 +} + +# Work-area is a space in RAM used for flash programming +# By default use 64kB +if { [info exists WORKAREASIZE] } { + set _WORKAREASIZE $WORKAREASIZE +} else { + set _WORKAREASIZE 0x10000 +} + +if { [info exists CPUTAPID] } { + set _CPUTAPID $CPUTAPID +} else { + set _CPUTAPID 0x2ba01477 +} + +stlink newtap $_CHIPNAME cpu -expected-id $_CPUTAPID + +set _TARGETNAME $_CHIPNAME.cpu +target create $_TARGETNAME stm32_stlink -chain-position $_TARGETNAME + +$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0 + +set _FLASHNAME $_CHIPNAME.flash +flash bank $_FLASHNAME stm32f2x 0x08000000 0 0 0 $_TARGETNAME |