stm32l0.cfg 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. #
  3. # M0+ devices only have SW-DP, but swj-dp code works, just don't
  4. # set any jtag related features
  5. #
  6. source [find target/swj-dp.tcl]
  7. source [find mem_helper.tcl]
  8. if { [info exists CHIPNAME] } {
  9. set _CHIPNAME $CHIPNAME
  10. } else {
  11. set _CHIPNAME stm32l0
  12. }
  13. set _ENDIAN little
  14. # Work-area is a space in RAM used for flash programming
  15. # By default use 2kB (max ram on smallest part)
  16. if { [info exists WORKAREASIZE] } {
  17. set _WORKAREASIZE $WORKAREASIZE
  18. } else {
  19. set _WORKAREASIZE 0x800
  20. }
  21. # JTAG speed should be <= F_CPU/6.
  22. # F_CPU after reset is ~2MHz, so use F_JTAG max = 333kHz
  23. adapter speed 300
  24. adapter srst delay 100
  25. if { [info exists CPUTAPID] } {
  26. set _CPUTAPID $CPUTAPID
  27. } else {
  28. # Arm, m0+, non-multidrop.
  29. # http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka16088.html
  30. set _CPUTAPID 0x0bc11477
  31. }
  32. swj_newdap $_CHIPNAME cpu -expected-id $_CPUTAPID
  33. dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
  34. set _TARGETNAME $_CHIPNAME.cpu
  35. target create $_TARGETNAME cortex_m -endian $_ENDIAN -dap $_CHIPNAME.dap
  36. $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
  37. # flash size will be probed
  38. set _FLASHNAME $_CHIPNAME.flash
  39. flash bank $_FLASHNAME stm32lx 0x08000000 0 0 0 $_TARGETNAME
  40. reset_config srst_nogate
  41. if {![using_hla]} {
  42. # if srst is not fitted use SYSRESETREQ to
  43. # perform a soft reset
  44. cortex_m reset_config sysresetreq
  45. }
  46. proc stm32l0_enable_HSI16 {} {
  47. # Enable HSI16 as clock source
  48. echo "STM32L0: Enabling HSI16"
  49. # Set HSI16ON in RCC_CR (leave MSI enabled)
  50. mmw 0x40021000 0x00000101 0
  51. # Set HSI16 as SYSCLK (RCC_CFGR)
  52. mmw 0x4002100c 0x00000001 0
  53. # Wait until System clock switches to HSI16
  54. while { ([ mrw 0x4002100c ] & 0x0c) != 0x04 } { }
  55. # Increase speed
  56. adapter speed 2500
  57. }
  58. $_TARGETNAME configure -event reset-init {
  59. stm32l0_enable_HSI16
  60. }
  61. $_TARGETNAME configure -event reset-start {
  62. adapter speed 300
  63. }
  64. $_TARGETNAME configure -event examine-end {
  65. # DBGMCU_CR |= DBG_STANDBY | DBG_STOP | DBG_SLEEP
  66. mmw 0x40015804 0x00000007 0
  67. # Stop watchdog counters during halt
  68. # DBGMCU_APB1_FZ |= DBG_IWDG_STOP | DBG_WWDG_STOP
  69. mmw 0x40015808 0x00001800 0
  70. }