You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

179 lines
6.1 KiB

  1. # script for stm32f7x family
  2. #
  3. # stm32f7 devices support both JTAG and SWD transports.
  4. #
  5. source [find target/swj-dp.tcl]
  6. source [find mem_helper.tcl]
  7. if { [info exists CHIPNAME] } {
  8. set _CHIPNAME $CHIPNAME
  9. } else {
  10. set _CHIPNAME stm32f7x
  11. }
  12. set _ENDIAN little
  13. # Work-area is a space in RAM used for flash programming
  14. # By default use 128kB
  15. if { [info exists WORKAREASIZE] } {
  16. set _WORKAREASIZE $WORKAREASIZE
  17. } else {
  18. set _WORKAREASIZE 0x20000
  19. }
  20. #jtag scan chain
  21. if { [info exists CPUTAPID] } {
  22. set _CPUTAPID $CPUTAPID
  23. } else {
  24. if { [using_jtag] } {
  25. # See STM Document RM0385
  26. # Section 40.6.3 - corresponds to Cortex-M7 with FPU r0p0
  27. set _CPUTAPID 0x5ba00477
  28. } {
  29. set _CPUTAPID 0x5ba02477
  30. }
  31. }
  32. swj_newdap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
  33. dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
  34. if {[using_jtag]} {
  35. jtag newtap $_CHIPNAME bs -irlen 5
  36. }
  37. set _TARGETNAME $_CHIPNAME.cpu
  38. target create $_TARGETNAME cortex_m -endian $_ENDIAN -dap $_CHIPNAME.dap
  39. $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
  40. set _FLASHNAME $_CHIPNAME.flash
  41. flash bank $_FLASHNAME stm32f2x 0 0 0 0 $_TARGETNAME
  42. flash bank $_CHIPNAME.otp stm32f2x 0x1ff0f000 0 0 0 $_TARGETNAME
  43. # On the STM32F7, the Flash is mapped at address 0x08000000 via the AXI and
  44. # also address 0x00200000 via the ITCM. The former mapping is read-write in
  45. # hardware, while the latter is read-only. By presenting an alias, we
  46. # accomplish two things:
  47. # (1) We allow writing at 0x00200000 (because the alias acts identically to the
  48. # original bank), which allows code intended to run from that address to
  49. # also be linked for loading at that address, simplifying linking.
  50. # (2) We allow the proper memory map to be delivered to GDB, which will cause
  51. # it to use hardware breakpoints at the 0x00200000 mapping (correctly
  52. # identifying it as Flash), which it would otherwise not do. Configuring
  53. # the Flash via ITCM alias as virtual
  54. flash bank $_CHIPNAME.itcm-flash.alias virtual 0x00200000 0 0 0 $_TARGETNAME $_FLASHNAME
  55. if { [info exists QUADSPI] && $QUADSPI } {
  56. set a [llength [flash list]]
  57. set _QSPINAME $_CHIPNAME.qspi
  58. flash bank $_QSPINAME stmqspi 0x90000000 0 0 0 $_TARGETNAME 0xA0001000
  59. }
  60. # adapter speed should be <= F_CPU/6. F_CPU after reset is 16MHz, so use F_JTAG = 2MHz
  61. adapter speed 2000
  62. adapter srst delay 100
  63. if {[using_jtag]} {
  64. jtag_ntrst_delay 100
  65. }
  66. # Use hardware reset.
  67. #
  68. # This target is compatible with connect_assert_srst, which may be set in a
  69. # board file.
  70. reset_config srst_only srst_nogate
  71. if {![using_hla]} {
  72. # if srst is not fitted use SYSRESETREQ to
  73. # perform a soft reset
  74. cortex_m reset_config sysresetreq
  75. # Set CSW[27], which according to ARM ADI v5 appendix E1.4 maps to AHB signal
  76. # HPROT[3], which according to AMBA AHB/ASB/APB specification chapter 3.7.3
  77. # makes the data access cacheable. This allows reading and writing data in the
  78. # CPU cache from the debugger, which is far more useful than going straight to
  79. # RAM when operating on typical variables, and is generally no worse when
  80. # operating on special memory locations.
  81. $_CHIPNAME.dap apcsw 0x08000000 0x08000000
  82. }
  83. $_TARGETNAME configure -event examine-end {
  84. # DBGMCU_CR |= DBG_STANDBY | DBG_STOP | DBG_SLEEP
  85. mmw 0xE0042004 0x00000007 0
  86. # Stop watchdog counters during halt
  87. # DBGMCU_APB1_FZ |= DBG_IWDG_STOP | DBG_WWDG_STOP
  88. mmw 0xE0042008 0x00001800 0
  89. }
  90. $_TARGETNAME configure -event trace-config {
  91. # Set TRACE_IOEN; TRACE_MODE is set to async; when using sync
  92. # change this value accordingly to configure trace pins
  93. # assignment
  94. mmw 0xE0042004 0x00000020 0
  95. }
  96. $_TARGETNAME configure -event reset-init {
  97. # If the HSE was previously enabled and the external clock source
  98. # disappeared, RCC_CR.HSERDY can get stuck at 1 and the PLL cannot be
  99. # properly switched back to HSI. This situation persists even over a system
  100. # reset, including a pin reset via SRST. However, activating the clock
  101. # security system will detect the problem and clear HSERDY to 0, which in
  102. # turn allows the PLL to switch back to HSI properly. Since we just came
  103. # out of reset, HSEON should be 0. If HSERDY is 1, then this situation must
  104. # have happened; in that case, activate the clock security system to clear
  105. # HSERDY.
  106. if {[mrw 0x40023800] & 0x00020000} {
  107. mmw 0x40023800 0x00090000 0 ;# RCC_CR = CSSON | HSEON
  108. sleep 10 ;# Wait for CSS to fire, if it wants to
  109. mmw 0x40023800 0 0x00090000 ;# RCC_CR &= ~CSSON & ~HSEON
  110. mww 0x4002380C 0x00800000 ;# RCC_CIR = CSSC
  111. sleep 1 ;# Wait for CSSF to clear
  112. }
  113. # If the clock security system fired, it will pend an NMI. A pending NMI
  114. # will cause a bad time for any subsequent executing code, such as a
  115. # programming algorithm.
  116. if {[mrw 0xE000ED04] & 0x80000000} {
  117. # ICSR.NMIPENDSET reads as 1. Need to clear it. A pending NMI can’t be
  118. # cleared by any normal means (such as ICSR or NVIC). It can only be
  119. # cleared by entering the NMI handler or by resetting the processor.
  120. echo "[target current]: Clock security system generated NMI. Clearing."
  121. # Keep the old DEMCR value.
  122. set old [mrw 0xE000EDFC]
  123. # Enable vector catch on reset.
  124. mww 0xE000EDFC 0x01000001
  125. # Issue local reset via AIRCR.
  126. mww 0xE000ED0C 0x05FA0001
  127. # Restore old DEMCR value.
  128. mww 0xE000EDFC $old
  129. }
  130. # Configure PLL to boost clock to HSI x 10 (160 MHz)
  131. mww 0x40023804 0x08002808 ;# RCC_PLLCFGR 16 Mhz /10 (M) * 128 (N) /2(P)
  132. mww 0x40023C00 0x00000107 ;# FLASH_ACR = PRFTBE | 7(Latency)
  133. mmw 0x40023800 0x01000000 0 ;# RCC_CR |= PLLON
  134. sleep 10 ;# Wait for PLL to lock
  135. mww 0x40023808 0x00009400 ;# RCC_CFGR_PPRE1 = 5(div 4), PPRE2 = 4(div 2)
  136. mmw 0x40023808 0x00000002 0 ;# RCC_CFGR |= RCC_CFGR_SW_PLL
  137. # Boost SWD frequency
  138. # Do not boost JTAG frequency and slow down JTAG memory access or flash write algo
  139. # suffers from DAP WAITs
  140. if {[using_jtag]} {
  141. [[target current] cget -dap] memaccess 16
  142. } {
  143. adapter speed 8000
  144. }
  145. }
  146. $_TARGETNAME configure -event reset-start {
  147. # Reduce speed since CPU speed will slow down to 16MHz with the reset
  148. adapter speed 2000
  149. }