at91sam7x512.cfg 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. #use combined on interfaces or targets that can't set TRST/SRST separately
  3. reset_config srst_only srst_pulls_trst
  4. if { [info exists CHIPNAME] } {
  5. set _CHIPNAME $CHIPNAME
  6. } else {
  7. set _CHIPNAME sam7x512
  8. }
  9. if { [info exists ENDIAN] } {
  10. set _ENDIAN $ENDIAN
  11. } else {
  12. set _ENDIAN little
  13. }
  14. if { [info exists CPUTAPID] } {
  15. set _CPUTAPID $CPUTAPID
  16. } else {
  17. set _CPUTAPID 0x3f0f0f0f
  18. }
  19. jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
  20. set _TARGETNAME $_CHIPNAME.cpu
  21. target create $_TARGETNAME arm7tdmi -endian $_ENDIAN -chain-position $_TARGETNAME
  22. $_TARGETNAME configure -event reset-init {
  23. # disable watchdog
  24. mww 0xfffffd44 0x00008000
  25. # enable user reset
  26. mww 0xfffffd08 0xa5000001
  27. # CKGR_MOR : enable the main oscillator
  28. mww 0xfffffc20 0x00000601
  29. sleep 10
  30. # CKGR_PLLR: 96.1097 MHz
  31. mww 0xfffffc2c 0x00481c0e
  32. sleep 10
  33. # PMC_MCKR : MCK = PLL / 2 ~= 48 MHz
  34. mww 0xfffffc30 0x00000007
  35. sleep 10
  36. # MC_FMR: flash mode (FWS=1,FMCN=60)
  37. mww 0xffffff60 0x003c0100
  38. sleep 100
  39. }
  40. $_TARGETNAME configure -work-area-phys 0x00200000 -work-area-size 0x4000 -work-area-backup 0
  41. #flash bank <driver> <base_addr> <size> <chip_width> <bus_width> <target_number> [<target_name> <banks> <sectors_per_bank> <pages_per_sector> <page_size> <num_nvmbits> <ext_freq_khz>]
  42. set _FLASHNAME $_CHIPNAME.flash
  43. flash bank $_FLASHNAME.0 at91sam7 0 0 0 0 $_TARGETNAME 0 0 0 0 0 0 0 18432
  44. flash bank $_FLASHNAME.1 at91sam7 0 0 0 0 $_TARGETNAME 1 0 0 0 0 0 0 18432