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.
 
 
 
 
 
 

126 lines
3.6 KiB

  1. ######################################
  2. # Target: DIGI ConnectCore Wi-9C
  3. ######################################
  4. reset_config trst_and_srst
  5. if { [info exists CHIPNAME] } {
  6. set _CHIPNAME $CHIPNAME
  7. } else {
  8. set _CHIPNAME ns9360
  9. }
  10. if { [info exists ENDIAN] } {
  11. set _ENDIAN $ENDIAN
  12. } else {
  13. # This config file was defaulting to big endian..
  14. set _ENDIAN big
  15. }
  16. # What's a good fallback frequency for this board if RCLK is
  17. # not available??
  18. jtag_rclk 1000
  19. if { [info exists CPUTAPID ] } {
  20. set _CPUTAPID $CPUTAPID
  21. } else {
  22. set _CPUTAPID 0x07926031
  23. }
  24. set _TARGETNAME [format "%s.cpu" $_CHIPNAME]
  25. jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
  26. jtag_nsrst_delay 200
  27. jtag_ntrst_delay 0
  28. ######################
  29. # Target configuration
  30. ######################
  31. target create $_TARGETNAME arm926ejs -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm926ejs
  32. $_TARGETNAME configure -event reset-init {
  33. mww 0x90600104 0x33313333
  34. mww 0xA0700000 0x00000001 # Enable the memory controller.
  35. mww 0xA0700024 0x00000006 # Set the refresh counter 6
  36. mww 0xA0700028 0x00000001 #
  37. mww 0xA0700030 0x00000001 # Set the precharge period
  38. mww 0xA0700034 0x00000004 # Active to precharge command period is 16 clock cycles
  39. mww 0xA070003C 0x00000001 # tAPR
  40. mww 0xA0700040 0x00000005 # tDAL
  41. mww 0xA0700044 0x00000001 # tWR
  42. mww 0xA0700048 0x00000006 # tRC 32 clock cycles
  43. mww 0xA070004C 0x00000006 # tRFC 32 clock cycles
  44. mww 0xA0700054 0x00000001 # tRRD
  45. mww 0xA0700058 0x00000001 # tMRD
  46. mww 0xA0700100 0x00004280 # Dynamic Config 0 (cs4)
  47. mww 0xA0700120 0x00004280 # Dynamic Config 1 (cs5)
  48. mww 0xA0700140 0x00004280 # Dynamic Config 2 (cs6)
  49. mww 0xA0700160 0x00004280 # Dynamic Config 3 (cs7)
  50. #
  51. mww 0xA0700104 0x00000203 # CAS latency is 2 at 100 MHz
  52. mww 0xA0700124 0x00000203 # CAS latency is 2 at 100 MHz
  53. mww 0xA0700144 0x00000203 # CAS latency is 2 at 100 MHz
  54. mww 0xA0700164 0x00000203 # CAS latency is 2 at 100 MHz
  55. #
  56. mww 0xA0700020 0x00000103 # issue SDRAM PALL command
  57. #
  58. mww 0xA0700024 0x00000001 # Set the refresh counter to be as small as possible
  59. #
  60. # Add some dummy writes to give the SDRAM time to settle, it needs two
  61. # AHB clock cycles, here we poke in the debugger flag, this lets
  62. # the software know that we are in the debugger
  63. mww 0xA0900000 0x00000002
  64. mww 0xA0900000 0x00000002
  65. mww 0xA0900000 0x00000002
  66. mww 0xA0900000 0x00000002
  67. mww 0xA0900000 0x00000002
  68. #
  69. mdw 0xA0900000
  70. mdw 0xA0900000
  71. mdw 0xA0900000
  72. mdw 0xA0900000
  73. mdw 0xA0900000
  74. #
  75. mww 0xA0700024 0x00000030 # Set the refresh counter to 30
  76. mww 0xA0700020 0x00000083 # Issue SDRAM MODE command
  77. #
  78. # Next we perform a read of RAM.
  79. # mw = move word.
  80. mdw 0x00022000
  81. # mw 0x00022000:P, r3 # 22000 for cas2 latency, 32000 for cas 3
  82. #
  83. mww 0xA0700020 0x00000003 # issue SDRAM NORMAL command
  84. mww 0xA0700100 0x00084280 # Enable buffer access
  85. mww 0xA0700120 0x00084280 # Enable buffer access
  86. mww 0xA0700140 0x00084280 # Enable buffer access
  87. mww 0xA0700160 0x00084280 # Enable buffer access
  88. #Set byte lane state (static mem 1)"
  89. mww 0xA0700220 0x00000082
  90. #Flash Start
  91. mww 0xA09001F8 0x50000000
  92. #Flash Mask Reg
  93. mww 0xA09001FC 0xFF000001
  94. mww 0xA0700028 0x00000001
  95. # RAMAddr = 0x00020000
  96. # RAMSize = 0x00004000
  97. # Set the processor mode
  98. reg cpsr 0xd3
  99. }
  100. $_TARGETNAME configure -work-area-virt 0 -work-area-phys 0x00000000 -work-area-size 0x1000 -work-area-backup 1
  101. #####################
  102. # Flash configuration
  103. #####################
  104. #M29DW323DB - not working
  105. #flash bank cfi <base> <size> <chip width> <bus width> <target#>
  106. flash bank cfi 0x50000000 0x0400000 2 2 0