target: restructure dap support
[fw/openocd] / tcl / target / stm32f0x.cfg
1 # script for stm32f0x family
2
3 #
4 # stm32 devices support SWD transports only.
5 #
6 source [find target/swj-dp.tcl]
7 source [find mem_helper.tcl]
8
9 if { [info exists CHIPNAME] } {
10    set _CHIPNAME $CHIPNAME
11 } else {
12    set _CHIPNAME stm32f0x
13 }
14
15 set _ENDIAN little
16
17 # Work-area is a space in RAM used for flash programming
18 # By default use 4kB
19 if { [info exists WORKAREASIZE] } {
20    set _WORKAREASIZE $WORKAREASIZE
21 } else {
22    set _WORKAREASIZE 0x1000
23 }
24
25 #jtag scan chain
26 if { [info exists CPUTAPID] } {
27    set _CPUTAPID $CPUTAPID
28 } else {
29   # See STM Document RM0091
30   # Section 29.5.3
31    set _CPUTAPID 0x0bb11477
32 }
33
34 swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
35 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
36
37 set _TARGETNAME $_CHIPNAME.cpu
38 target create $_TARGETNAME cortex_m -endian $_ENDIAN -dap $_CHIPNAME.dap
39
40 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
41
42 # flash size will be probed
43 set _FLASHNAME $_CHIPNAME.flash
44 flash bank $_FLASHNAME stm32f1x 0x08000000 0 0 0 $_TARGETNAME
45
46 # adapter speed should be <= F_CPU/6. F_CPU after reset is 8MHz, so use F_JTAG = 1MHz
47 adapter_khz 1000
48
49 adapter_nsrst_delay 100
50
51 reset_config srst_nogate
52
53 if {![using_hla]} {
54    # if srst is not fitted use SYSRESETREQ to
55    # perform a soft reset
56    cortex_m reset_config sysresetreq
57 }
58
59 proc stm32f0x_default_reset_start {} {
60         # Reset clock is HSI (8 MHz)
61         adapter_khz 1000
62 }
63
64 proc stm32f0x_default_examine_end {} {
65         # Enable debug during low power modes (uses more power)
66         mmw 0x40015804 0x00000006 0 ;# DBGMCU_CR |= DBG_STANDBY | DBG_STOP
67
68         # Stop watchdog counters during halt
69         mmw 0x40015808 0x00001800 0 ;# DBGMCU_APB1_FZ |= DBG_IWDG_STOP | DBG_WWDG_STOP
70 }
71
72 proc stm32f0x_default_reset_init {} {
73         # Configure PLL to boost clock to HSI x 6 (48 MHz)
74         mww 0x40021004 0x00100000   ;# RCC_CFGR = PLLMUL[2]
75         mmw 0x40021000 0x01000000 0 ;# RCC_CR[31:16] |= PLLON
76         mww 0x40022000 0x00000011   ;# FLASH_ACR = PRFTBE | LATENCY[0]
77         sleep 10                    ;# Wait for PLL to lock
78         mmw 0x40021004 0x00000002 0 ;# RCC_CFGR |= SW[1]
79
80         # Boost JTAG frequency
81         adapter_khz 8000
82 }
83
84 # Default hooks
85 $_TARGETNAME configure -event examine-end { stm32f0x_default_examine_end }
86 $_TARGETNAME configure -event reset-start { stm32f0x_default_reset_start }
87 $_TARGETNAME configure -event reset-init { stm32f0x_default_reset_init }