2012-01-03 21:42:49 +00:00
|
|
|
# script for stm32f1x family
|
2008-07-04 17:33:46 +00:00
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists CHIPNAME] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _CHIPNAME $CHIPNAME
|
2009-09-21 18:48:22 +00:00
|
|
|
} else {
|
2012-01-03 21:42:49 +00:00
|
|
|
set _CHIPNAME stm32f1x
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
if { [info exists ENDIAN] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN $ENDIAN
|
2009-09-21 18:48:22 +00:00
|
|
|
} else {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _ENDIAN little
|
2008-11-30 22:25:43 +00:00
|
|
|
}
|
|
|
|
|
2009-06-30 11:50:04 +00:00
|
|
|
# Work-area is a space in RAM used for flash programming
|
|
|
|
# By default use 16kB
|
2009-06-29 22:08:34 +00:00
|
|
|
if { [info exists WORKAREASIZE] } {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _WORKAREASIZE $WORKAREASIZE
|
2009-06-29 22:08:34 +00:00
|
|
|
} else {
|
2011-10-29 21:32:17 +00:00
|
|
|
set _WORKAREASIZE 0x4000
|
2009-06-29 22:08:34 +00:00
|
|
|
}
|
|
|
|
|
2009-06-30 11:50:04 +00:00
|
|
|
# JTAG speed should be <= F_CPU/6. F_CPU after reset is 8MHz, so use F_JTAG = 1MHz
|
2010-03-15 15:37:43 +00:00
|
|
|
adapter_khz 1000
|
2008-07-04 17:33:46 +00:00
|
|
|
|
2010-03-15 15:41:30 +00:00
|
|
|
adapter_nsrst_delay 100
|
2008-03-09 09:28:12 +00:00
|
|
|
jtag_ntrst_delay 100
|
|
|
|
|
|
|
|
#jtag scan chain
|
2011-10-29 21:32:17 +00:00
|
|
|
if { [info exists CPUTAPID] } {
|
2008-11-30 22:25:43 +00:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
# See STM Document RM0008
|
|
|
|
# Section 26.6.3
|
|
|
|
set _CPUTAPID 0x3ba00477
|
|
|
|
}
|
|
|
|
jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
|
|
|
|
2011-10-29 21:32:17 +00:00
|
|
|
if { [info exists BSTAPID] } {
|
2009-11-01 10:58:48 +00:00
|
|
|
# FIXME this never gets used to override defaults...
|
2008-11-30 22:25:43 +00:00
|
|
|
set _BSTAPID $BSTAPID
|
|
|
|
} else {
|
|
|
|
# See STM Document RM0008
|
2009-11-01 10:58:48 +00:00
|
|
|
# Section 29.6.2
|
2009-04-02 21:17:27 +00:00
|
|
|
# Low density devices, Rev A
|
2009-04-23 14:03:42 +00:00
|
|
|
set _BSTAPID1 0x06412041
|
2009-04-02 21:17:27 +00:00
|
|
|
# Medium density devices, Rev A
|
2009-04-23 14:03:42 +00:00
|
|
|
set _BSTAPID2 0x06410041
|
2009-04-02 21:17:27 +00:00
|
|
|
# Medium density devices, Rev B and Rev Z
|
2009-04-23 14:03:42 +00:00
|
|
|
set _BSTAPID3 0x16410041
|
2011-02-17 20:51:32 +00:00
|
|
|
set _BSTAPID4 0x06420041
|
2009-04-02 21:17:27 +00:00
|
|
|
# High density devices, Rev A
|
2011-02-17 20:51:32 +00:00
|
|
|
set _BSTAPID5 0x06414041
|
2009-07-01 10:29:10 +00:00
|
|
|
# Connectivity line devices, Rev A and Rev Z
|
2011-02-17 20:51:32 +00:00
|
|
|
set _BSTAPID6 0x06418041
|
2010-12-22 17:20:11 +00:00
|
|
|
# XL line devices, Rev A
|
2011-02-17 20:51:32 +00:00
|
|
|
set _BSTAPID7 0x06430041
|
2011-08-24 20:13:35 +00:00
|
|
|
# VL line devices, Rev A and Z In medium-density and high-density value line devices
|
|
|
|
set _BSTAPID8 0x06420041
|
|
|
|
# VL line devices, Rev A
|
|
|
|
set _BSTAPID9 0x06428041
|
|
|
|
|
2009-09-21 18:48:22 +00:00
|
|
|
}
|
2009-11-01 10:58:48 +00:00
|
|
|
jtag newtap $_CHIPNAME bs -irlen 5 -expected-id $_BSTAPID1 \
|
|
|
|
-expected-id $_BSTAPID2 -expected-id $_BSTAPID3 \
|
2010-12-22 17:20:11 +00:00
|
|
|
-expected-id $_BSTAPID4 -expected-id $_BSTAPID5 \
|
2011-08-24 20:13:35 +00:00
|
|
|
-expected-id $_BSTAPID6 -expected-id $_BSTAPID7 \
|
|
|
|
-expected-id $_BSTAPID8 -expected-id $_BSTAPID9
|
2008-11-30 22:25:43 +00:00
|
|
|
|
2009-09-04 05:17:03 +00:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2013-02-01 15:34:51 +00:00
|
|
|
target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME
|
2008-11-30 22:25:43 +00:00
|
|
|
|
2009-11-08 16:52:40 +00:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
|
2008-07-28 06:08:05 +00:00
|
|
|
|
2010-12-22 17:20:11 +00:00
|
|
|
# flash size will be probed
|
2009-11-18 10:15:52 +00:00
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
2011-07-28 10:45:09 +00:00
|
|
|
flash bank $_FLASHNAME stm32f1x 0x08000000 0 0 0 $_TARGETNAME
|
2010-12-02 13:12:48 +00:00
|
|
|
|
|
|
|
# if srst is not fitted use SYSRESETREQ to
|
|
|
|
# perform a soft reset
|
2013-02-01 15:34:51 +00:00
|
|
|
cortex_m reset_config sysresetreq
|