at91samdXX.cfg 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. #
  3. # script for Atmel SAMD, SAMR, SAML or SAMC, a Cortex-M0 chip
  4. #
  5. #
  6. # samdXX devices only support SWD transports.
  7. #
  8. source [find target/swj-dp.tcl]
  9. if { [info exists CHIPNAME] } {
  10. set _CHIPNAME $CHIPNAME
  11. } else {
  12. set _CHIPNAME at91samd
  13. }
  14. if { [info exists ENDIAN] } {
  15. set _ENDIAN $ENDIAN
  16. } else {
  17. set _ENDIAN little
  18. }
  19. # Work-area is a space in RAM used for flash programming
  20. # By default use 2kB
  21. if { [info exists WORKAREASIZE] } {
  22. set _WORKAREASIZE $WORKAREASIZE
  23. } else {
  24. set _WORKAREASIZE 0x800
  25. }
  26. if { [info exists CPUTAPID] } {
  27. set _CPUTAPID $CPUTAPID
  28. } else {
  29. set _CPUTAPID 0x4ba00477
  30. }
  31. swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
  32. dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
  33. set _TARGETNAME $_CHIPNAME.cpu
  34. target create $_TARGETNAME cortex_m -endian $_ENDIAN -dap $_CHIPNAME.dap
  35. $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
  36. # SAMD DSU will hold the CPU in reset if TCK is low when RESET_N
  37. # deasserts (see datasheet Atmel-42181E–SAM-D21_Datasheet–02/2015, section 12.6.2)
  38. #
  39. # dsu_reset_deassert configures whether we want to run or halt out of reset,
  40. # then instruct the DSU to let us out of reset.
  41. $_TARGETNAME configure -event reset-deassert-post {
  42. at91samd dsu_reset_deassert
  43. }
  44. # SRST (wired to RESET_N) resets debug circuitry
  45. # srst_pulls_trst is not configured here to avoid an error raised in reset halt
  46. reset_config srst_gates_jtag
  47. # Do not use a reset button with other SWD adapter than Atmel's EDBG.
  48. # DSU usually locks MCU in reset state until you issue a reset command
  49. # in OpenOCD.
  50. # SAMD runs at SYSCLK = 1 MHz divided from RC oscillator after reset.
  51. # Other members of family usually use SYSCLK = 4 MHz after reset.
  52. # Datasheet does not specify SYSCLK to SWD clock ratio.
  53. # Usually used SYSCLK/6 is slow, testing shows that debugging can
  54. # work @ SYSCLK/2 but your mileage may vary.
  55. # This limit is most probably imposed by incorrectly handled SWD WAIT
  56. # on some SWD adapters.
  57. adapter speed 400
  58. # Atmel's EDBG (on-board cmsis-dap adapter of Xplained kits) works
  59. # without problem at maximal clock speed. Atmel recommends
  60. # adapter speed less than 10 * CPU clock.
  61. # adapter speed 5000
  62. if {![using_hla]} {
  63. # if srst is not fitted use SYSRESETREQ to
  64. # perform a soft reset
  65. cortex_m reset_config sysresetreq
  66. }
  67. set _FLASHNAME $_CHIPNAME.flash
  68. flash bank $_FLASHNAME at91samd 0x00000000 0 1 1 $_TARGETNAME