2012-01-03 15:42:49 -06:00
|
|
|
# script for stm32f1x family
|
2008-07-04 12:33:46 -05:00
|
|
|
|
2013-08-06 07:12:10 -05:00
|
|
|
#
|
|
|
|
# stm32 devices support both JTAG and SWD transports.
|
|
|
|
#
|
|
|
|
source [find target/swj-dp.tcl]
|
2015-02-09 08:04:52 -06:00
|
|
|
source [find mem_helper.tcl]
|
2013-08-06 07:12:10 -05:00
|
|
|
|
2009-09-21 13:48:22 -05:00
|
|
|
if { [info exists CHIPNAME] } {
|
2011-10-29 16:32:17 -05:00
|
|
|
set _CHIPNAME $CHIPNAME
|
2009-09-21 13:48:22 -05:00
|
|
|
} else {
|
2012-01-03 15:42:49 -06:00
|
|
|
set _CHIPNAME stm32f1x
|
2008-11-30 16:25:43 -06:00
|
|
|
}
|
|
|
|
|
2014-12-09 07:06:21 -06:00
|
|
|
set _ENDIAN little
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2009-06-30 06:50:04 -05:00
|
|
|
# Work-area is a space in RAM used for flash programming
|
2013-05-04 16:09:15 -05:00
|
|
|
# By default use 4kB (as found on some STM32F100s)
|
2009-06-29 17:08:34 -05:00
|
|
|
if { [info exists WORKAREASIZE] } {
|
2011-10-29 16:32:17 -05:00
|
|
|
set _WORKAREASIZE $WORKAREASIZE
|
2009-06-29 17:08:34 -05:00
|
|
|
} else {
|
2013-05-04 16:09:15 -05:00
|
|
|
set _WORKAREASIZE 0x1000
|
2009-06-29 17:08:34 -05:00
|
|
|
}
|
|
|
|
|
2008-03-09 04:28:12 -05:00
|
|
|
#jtag scan chain
|
2011-10-29 16:32:17 -05:00
|
|
|
if { [info exists CPUTAPID] } {
|
2008-11-30 16:25:43 -06:00
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2013-09-28 05:23:15 -05:00
|
|
|
if { [using_jtag] } {
|
|
|
|
# See STM Document RM0008 Section 26.6.3
|
|
|
|
set _CPUTAPID 0x3ba00477
|
|
|
|
} {
|
|
|
|
# this is the SW-DP tap id not the jtag tap id
|
|
|
|
set _CPUTAPID 0x1ba01477
|
|
|
|
}
|
2008-11-30 16:25:43 -06:00
|
|
|
}
|
2013-08-06 07:12:10 -05:00
|
|
|
|
|
|
|
swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2014-03-01 12:40:54 -06:00
|
|
|
if {[using_jtag]} {
|
2016-03-11 15:16:04 -06:00
|
|
|
jtag newtap $_CHIPNAME bs -irlen 5
|
2013-08-06 07:12:10 -05:00
|
|
|
}
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2009-09-04 00:17:03 -05:00
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2013-02-01 09:34:51 -06:00
|
|
|
target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME
|
2008-11-30 16:25:43 -06:00
|
|
|
|
2009-11-08 10:52:40 -06:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
|
2008-07-28 01:08:05 -05:00
|
|
|
|
2010-12-22 11:20:11 -06:00
|
|
|
# flash size will be probed
|
2009-11-18 04:15:52 -06:00
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
2011-07-28 05:45:09 -05:00
|
|
|
flash bank $_FLASHNAME stm32f1x 0x08000000 0 0 0 $_TARGETNAME
|
2010-12-02 07:12:48 -06:00
|
|
|
|
2013-08-06 07:12:10 -05:00
|
|
|
# JTAG speed should be <= F_CPU/6. F_CPU after reset is 8MHz, so use F_JTAG = 1MHz
|
|
|
|
adapter_khz 1000
|
|
|
|
|
|
|
|
adapter_nsrst_delay 100
|
2014-03-01 12:40:54 -06:00
|
|
|
if {[using_jtag]} {
|
2013-08-06 07:12:10 -05:00
|
|
|
jtag_ntrst_delay 100
|
|
|
|
}
|
|
|
|
|
2015-01-10 04:19:26 -06:00
|
|
|
reset_config srst_nogate
|
|
|
|
|
2013-09-28 05:23:15 -05:00
|
|
|
if {![using_hla]} {
|
|
|
|
# if srst is not fitted use SYSRESETREQ to
|
|
|
|
# perform a soft reset
|
|
|
|
cortex_m reset_config sysresetreq
|
|
|
|
}
|
2015-02-09 08:04:52 -06:00
|
|
|
|
|
|
|
$_TARGETNAME configure -event examine-end {
|
|
|
|
# DBGMCU_CR |= DBG_WWDG_STOP | DBG_IWDG_STOP |
|
|
|
|
# DBG_STANDBY | DBG_STOP | DBG_SLEEP
|
|
|
|
mmw 0xE0042004 0x00000307 0
|
|
|
|
}
|
|
|
|
|
|
|
|
$_TARGETNAME configure -event trace-config {
|
|
|
|
# Set TRACE_IOEN; TRACE_MODE is set to async; when using sync
|
|
|
|
# change this value accordingly to configure trace pins
|
|
|
|
# assignment
|
|
|
|
mmw 0xE0042004 0x00000020 0
|
|
|
|
}
|