2012-01-04 21:48:21 +00:00
|
|
|
#
|
|
|
|
# stm32 stlink pseudo target
|
|
|
|
#
|
|
|
|
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
|
|
set _CHIPNAME $CHIPNAME
|
|
|
|
} else {
|
|
|
|
set _CHIPNAME stm32f1x
|
|
|
|
}
|
|
|
|
|
|
|
|
# Work-area is a space in RAM used for flash programming
|
2013-05-04 21:09:15 +00:00
|
|
|
# By default use 4kB (as found on some STM32F100s)
|
2012-01-04 21:48:21 +00:00
|
|
|
if { [info exists WORKAREASIZE] } {
|
|
|
|
set _WORKAREASIZE $WORKAREASIZE
|
|
|
|
} else {
|
2013-05-04 21:09:15 +00:00
|
|
|
set _WORKAREASIZE 0x1000
|
2012-01-04 21:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [info exists CPUTAPID] } {
|
|
|
|
set _CPUTAPID $CPUTAPID
|
|
|
|
} else {
|
|
|
|
# this is the SW-DP tap id not the jtag tap id
|
|
|
|
set _CPUTAPID 0x1ba01477
|
|
|
|
}
|
|
|
|
|
2012-02-10 12:29:31 +00:00
|
|
|
if { [info exists TRANSPORT] } {
|
|
|
|
set _TRANSPORT $TRANSPORT
|
2012-10-24 08:52:00 +00:00
|
|
|
if { $TRANSPORT == "hla_jtag" } {
|
2012-02-10 12:29:31 +00:00
|
|
|
if { [info exists CPUTAPID] == 0 } {
|
|
|
|
# jtag requires us to use the jtag tap id
|
|
|
|
set _CPUTAPID 0x3ba00477
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2012-10-24 08:52:00 +00:00
|
|
|
set _TRANSPORT hla_swd
|
2012-02-10 12:29:31 +00:00
|
|
|
}
|
|
|
|
|
2012-10-24 08:52:00 +00:00
|
|
|
# add deprecated transport name check
|
|
|
|
if { $_TRANSPORT == "stlink_swd" } {
|
|
|
|
set _TRANSPORT "hla_swd"
|
|
|
|
echo "DEPRECATED! use 'hla_swd' transport not 'stlink_swd'"
|
|
|
|
}
|
|
|
|
|
|
|
|
if { $_TRANSPORT == "stlink_jtag" } {
|
|
|
|
set _TRANSPORT "hla_jtag"
|
|
|
|
echo "DEPRECATED! use 'hla_jtag' transport not 'stlink_jtag'"
|
|
|
|
}
|
|
|
|
# end deprecated checks
|
|
|
|
|
2012-01-25 08:30:45 +00:00
|
|
|
#
|
2012-10-24 08:52:00 +00:00
|
|
|
# possibles value are hla_swd or hla_jtag
|
2012-01-25 08:30:45 +00:00
|
|
|
#
|
2012-02-10 12:29:31 +00:00
|
|
|
transport select $_TRANSPORT
|
2012-01-25 08:30:45 +00:00
|
|
|
|
2012-10-24 08:52:00 +00:00
|
|
|
hla newtap $_CHIPNAME cpu -expected-id $_CPUTAPID
|
2012-01-04 21:48:21 +00:00
|
|
|
|
|
|
|
set _TARGETNAME $_CHIPNAME.cpu
|
2012-10-24 08:52:00 +00:00
|
|
|
target create $_TARGETNAME hla_target -chain-position $_TARGETNAME
|
2012-01-04 21:48:21 +00:00
|
|
|
|
|
|
|
$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
|