tcl/target/gd32vf103: add flash bank
[fw/openocd] / tcl / target / gd32vf103.cfg
1 #
2 # GigaDevice GD32VF103 target
3 #
4 # https://www.gigadevice.com/products/microcontrollers/gd32/risc-v/
5 #
6
7 source [find mem_helper.tcl]
8
9 transport select jtag
10
11 if { [info exists CHIPNAME] } {
12    set _CHIPNAME $CHIPNAME
13 } else {
14    set _CHIPNAME gd32vf103
15 }
16
17 # The smallest RAM size 6kB (GD32VF103C4/T4/R4)
18 if { [info exists WORKAREASIZE] } {
19    set _WORKAREASIZE $WORKAREASIZE
20 } else {
21    set _WORKAREASIZE 0x1800
22 }
23
24 jtag newtap $_CHIPNAME cpu -irlen 5 -expected-id 0x1000563d
25
26 set _TARGETNAME $_CHIPNAME.cpu
27 target create $_TARGETNAME riscv -chain-position $_TARGETNAME
28
29 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
30
31 set _FLASHNAME $_CHIPNAME.flash
32 flash bank $_FLASHNAME stm32f1x 0x08000000 0 0 0 $_TARGETNAME
33
34 # DBGMCU_CR register cannot be set in examine-end event as the running RISC-V CPU
35 # does not allow the debugger to access memory.
36 # Stop watchdogs at least before flash programming.
37 $_TARGETNAME configure -event reset-init {
38         # DBGMCU_CR |= DBG_WWDG_STOP | DBG_IWDG_STOP
39         mmw 0xE0042004 0x00000300 0
40 }