2013-06-09 16:28:16 +00:00
|
|
|
#
|
|
|
|
# Target configuration for the ST STM32W108xx chips
|
|
|
|
#
|
2016-05-14 18:21:49 +00:00
|
|
|
# Processor: ARM Cortex-M3
|
2013-06-09 16:28:16 +00:00
|
|
|
# Date: 2013-06-09
|
|
|
|
# Author: Giuseppe Barba <giuseppe.barba@gmail.com>
|
|
|
|
|
2013-08-06 12:12:10 +00:00
|
|
|
#
|
|
|
|
# stm32 devices support both JTAG and SWD transports.
|
|
|
|
#
|
|
|
|
source [find target/swj-dp.tcl]
|
|
|
|
|
2013-06-09 16:28:16 +00:00
|
|
|
if { [info exists CHIPNAME] == 0 } {
|
|
|
|
set _CHIPNAME stm32w108
|
|
|
|
} else {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
}
|
|
|
|
|
|
|
|
# Work-area is a space in RAM used for flash programming
|
|
|
|
# By default use 8kB
|
|
|
|
if { [info exists WORKAREASIZE] } {
|
|
|
|
set _WORKAREASIZE $WORKAREASIZE
|
|
|
|
} else {
|
|
|
|
set _WORKAREASIZE 0x2000
|
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
2013-09-28 10:23:15 +00:00
|
|
|
if { [using_jtag] } {
|
|
|
|
set _CPUTAPID 0x3ba00477
|
|
|
|
} {
|
|
|
|
set _CPUTAPID 0x1ba01477
|
|
|
|
}
|
2013-06-09 16:28:16 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 13:06:21 +00:00
|
|
|
set _ENDIAN little
|
2013-06-09 16:28:16 +00:00
|
|
|
|
2013-08-06 12:12:10 +00:00
|
|
|
swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
|
2018-03-23 20:17:29 +00:00
|
|
|
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
|
2013-06-09 16:28:16 +00:00
|
|
|
|
2014-03-01 18:40:54 +00:00
|
|
|
if {[using_jtag]} {
|
2013-08-06 12:12:10 +00:00
|
|
|
if { [info exists BSTAPID] } {
|
2013-06-09 16:28:16 +00:00
|
|
|
set _BSTAPID $BSTAPID
|
2013-09-28 10:23:15 +00:00
|
|
|
swj_newdap $_CHIPNAME bs -irlen 4 -ircapture 0xe -irmask 0xf -expected-id _BSTAPID
|
2013-08-06 12:12:10 +00:00
|
|
|
} else {
|
2013-06-09 16:28:16 +00:00
|
|
|
set _BSTAPID_1 0x169a862b
|
|
|
|
set _BSTAPID_2 0x269a862b
|
2013-09-28 10:23:15 +00:00
|
|
|
swj_newdap $_CHIPNAME bs -irlen 4 -ircapture 0xe -irmask 0xf \
|
2013-06-09 16:28:16 +00:00
|
|
|
-expected-id $_BSTAPID_1 -expected-id $_BSTAPID_2
|
2013-08-06 12:12:10 +00:00
|
|
|
}
|
2013-06-09 16:28:16 +00:00
|
|
|
}
|
|
|
|
#
|
|
|
|
# Set Target
|
|
|
|
#
|
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2018-03-23 20:17:29 +00:00
|
|
|
target create $_TARGETNAME cortex_m -endian $_ENDIAN -dap $_CHIPNAME.dap
|
2013-06-09 16:28:16 +00:00
|
|
|
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
|
|
|
|
|
|
|
|
|
|
|
|
# Use the flash driver from the EM357
|
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
|
|
|
|
|
|
|
# 64k (0x10000) of flash
|
|
|
|
flash bank $_FLASHNAME em357 0x08000000 0x10000 0 0 $_TARGETNAME
|
|
|
|
|
2015-01-10 10:19:26 +00:00
|
|
|
reset_config srst_nogate
|
|
|
|
|
2013-09-28 10:23:15 +00:00
|
|
|
if {![using_hla]} {
|
|
|
|
cortex_m reset_config sysresetreq
|
|
|
|
}
|