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.
 
 
 
 
 
 

201 lines
6.9 KiB

  1. #
  2. # Glyn Tonga2 SO-DIMM CPU module (Toshiba TMPA900CMXBG, ARM9)
  3. #
  4. # http://toshiba-mikrocontroller.de/sites/TMPA900CPUBOARDStarter.htm
  5. #
  6. # Hardware on the S0-DIMM module:
  7. # - Toshiba TMPA900CMXBG (ARM9, ARM926EJ-S, max. 200MHz)
  8. # - DDR SDRAM: Hynix H5MS5162DFR-J3M (64Mbyte, x16, 1.8V, 166/83MHz at CL3/2)
  9. # - NAND flash: Samsung K9F2G08U0B-PIB0 (256M x 8 Bit, 3.3V)
  10. # - Ethernet: SMSC LAN9221I-ABZJ (10/100Mbit, Non-PCI, 16 bit interface)
  11. #
  12. source [find target/tmpa900.cfg]
  13. ########################
  14. # Target configuration #
  15. ########################
  16. # Initial JTAG speed should not exceed 1/6 of the initial CPU clock
  17. # frequency (24MHz). Be conservative and use 1/8 of the frequency.
  18. # (24MHz / 8 = 3MHz)
  19. adapter speed 3000
  20. $_TARGETNAME configure -event reset-start {
  21. # Upon reset, set the JTAG frequency to 3MHz again, see above.
  22. echo "Setting JTAG speed to 3MHz until clocks are initialized."
  23. adapter speed 3000
  24. # Halt the CPU.
  25. halt
  26. # Disable faster memory access for now.
  27. arm7_9 fast_memory_access disable
  28. }
  29. $_TARGETNAME configure -event reset-init {
  30. # Setup clocks, and initialize SRAM and DDR SDRAM.
  31. tonga2_init
  32. # At this point the CPU is running at 192MHz, increase JTAG speed.
  33. # Tests showed that 15MHz works OK, higher speeds can cause problems,
  34. # though. Not sure if this is a CPU issue or JTAG adapter issue.
  35. echo "Increasing JTAG speed to 15MHz."
  36. adapter speed 15000
  37. # Enable faster memory access.
  38. arm7_9 fast_memory_access enable
  39. }
  40. proc tonga2_init { } {
  41. ######################
  42. # PLL initialization #
  43. ######################
  44. # Clock overview (see datasheet chapter 3.5.2, page 57):
  45. # - fs: Low-frequency oscillator
  46. # - fOSCH: High-frequency oscillator (24MHz on this board)
  47. # - fPLL = fOSCH * multiplier (where multiplier can be 6 or 8)
  48. # - fFCLK = fPLL / gear (where gear can be 1/2/4/8)
  49. # - fHCLK is always fFCLK/2. fPCLK is also fFCLK/2.
  50. #
  51. # We select multiplier = 8 and gear = 1, so
  52. # fFCLK = fOSCH * 8 / 1 = 192MHz.
  53. # SYSCR3 (System Control Register 3): Disable and configure PLL.
  54. # - PLL operation control: off
  55. # - PLL constant value setting 1: always 0, as per datasheet
  56. # - PLL constant value setting 2: x8 (multiplier = 8)
  57. mww 0xf005000c 0x00000007
  58. # SYSCR4 (System Control Register 4): Configure PLL.
  59. # - PLL constant value setting 3: 140MHz or more
  60. # - PLL constant value setting 4: always 1, as per datasheet
  61. # - PLL constant value setting 5: 140MHz or more
  62. mww 0xf0050010 0x00000065
  63. # SYSCR3 (System Control Register 3): Enable PLL.
  64. # - PLL operation control: on
  65. # - All other bits remain set as above.
  66. mww 0xf005000c 0x00000087
  67. # Wait for PLL to stabilize.
  68. sleep 10
  69. # SYSCR2 (System Control Register 2): Switch from fOSCH to fPLL.
  70. # - Selection of the PLL output clock: fPLL
  71. mww 0xf0050008 0x00000002
  72. # SYSCR1 (System Control Register 1):
  73. # - Clock gear programming: fc/1 (i.e., gear = 1, don't divide).
  74. mww 0xf0050004 0x00000000
  75. # CLKCR5 (Clock Control Register 5): Set bits 3 and 6. The datasheet
  76. # says the bits are reserved, but also recommends "Write as one".
  77. mww 0xf0050054 0x00000048
  78. ##############################################################
  79. # Dynamic Memory Controller (DMC) / DDR SDRAM initialization #
  80. ##############################################################
  81. # PMC (Power Management Controller):
  82. # PMCDRV (External Port "Driverbility" control register):
  83. # Bits DRV_MEM0/DRV_MEM1 (memory relation port drive power):
  84. mww 0xf0020260 0x00000003 ;# Select 1.8V +/- 0.1V
  85. # Setup DDR SDRAM timing parameters for our specific chip.
  86. mww 0xf4310014 0x00000004 ;# cas_latency = 2
  87. mww 0xf4310018 0x00000001 ;# t_dqss = 1
  88. mww 0xf431001c 0x00000002 ;# t_mrd = 2
  89. mww 0xf4310020 0x0000000a ;# t_ras = 10
  90. mww 0xf4310024 0x0000000a ;# t_rc = 10
  91. mww 0xf4310028 0x00000013 ;# t_rcd = 3, schedule_rcd = 2
  92. mww 0xf431002c 0x0000010a ;# t_rfc = 10, schedule_rfc = 8
  93. mww 0xf4310030 0x00000013 ;# t_rp = 3, schedule_rp = 2
  94. mww 0xf4310034 0x00000002 ;# t_rrd = 2
  95. mww 0xf4310038 0x00000002 ;# t_wr = 2
  96. mww 0xf431003c 0x00000001 ;# t_wtr = 1
  97. mww 0xf4310040 0x0000000a ;# t_xp = 10
  98. mww 0xf4310044 0x0000000c ;# t_xsr = 12
  99. mww 0xf4310048 0x00000014 ;# t_esr = 20
  100. # dmc_memory_cfg_5 (DMC Memory Configuration register):
  101. # Set memory configuration:
  102. # column_bits = 10, row_bits = 13, ap-bit = 10, power_down_prd = 0,
  103. # auto_power_down = disable, stop_mem_clock = disable, memory_burst = 4
  104. mww 0xf431000c 0x00010012
  105. # dmc_user_config_5 (DMC user_config register):
  106. # Data bus width of DDR SDRAM: 16 bit
  107. mww 0xf4310304 0x00000058
  108. # dmc_refresh_prd_5 (DMC Refresh Period register):
  109. # Auto refresh: every 2656 (0xa60) DMCSCLK periods.
  110. mww 0xf4310010 0x00000a60
  111. # dmc_chip_0_cfg_5 (DMC chip_0_cfg registers):
  112. # - SDRAM address structure: bank, row, column
  113. # - address_match = 01000000 (start address [31:24])
  114. # - address_mask = 11111100 (start address [31:24] mask value)
  115. mww 0xf4310200 0x000140fc
  116. # Initialize the DDR SDRAM chip.
  117. # dmc_direct_cmd_5 (DMC Direct Command register).
  118. # See datasheet chapter 3.10.5.1, page 268.
  119. mww 0xf4310008 0x000c0000 ;# RAM init: NOP
  120. mww 0xf4310008 0x00000000 ;# RAM init: Precharge all
  121. mww 0xf4310008 0x00040000 ;# RAM init: Autorefresh
  122. mww 0xf4310008 0x00040000 ;# RAM init: Autorefresh
  123. mww 0xf4310008 0x00080032 ;# RAM init: addr_13_to_0 = 0x32
  124. mww 0xf4310008 0x000c0000 ;# RAM init: NOP
  125. mww 0xf4310008 0x000a0000 ;# RAM init: bank_addr = bank 2
  126. # dmc_id_<0-5>_cfg_5 (DMC id_<0-5>_cfg registers):
  127. # Set min./max. QoS values.
  128. # - 0x5: Enable QoS, max. QoS = 1
  129. # - 0xb: Enable QoS, min. QoS = 2
  130. mww 0xf4310100 0x00000005 ;# AHB0: CPU Data
  131. mww 0xf4310104 0x00000005 ;# AHB1: CPU Inst
  132. mww 0xf4310108 0x0000000b ;# AHB2: LCDC
  133. mww 0xf431010c 0x00000005 ;# AHB3: LCDDA, USB
  134. mww 0xf4310110 0x00000005 ;# AHB4: DMA1
  135. mww 0xf4310114 0x00000005 ;# AHB5: DMA2
  136. # dmc_memc_cmd_5 (DMC Memory Controller Command register):
  137. # Change DMC state to ready.
  138. mww 0xf4310004 0x00000000 ;# memc_cmd = "Go"
  139. # EBI: SMC Timeout register
  140. mww 0xf00a0050 0x00000001 ;# smc_timeout = 1
  141. ########################################################
  142. # Static Memory Controller (SMC) / SRAM initialization #
  143. ########################################################
  144. # smc_set_cycles_5 (SMC Set Cycles register):
  145. # tRC = 10, tWC = 10, tCEOE = 7, tWP = 5, tPC=2, tTR=2
  146. mww 0xf4311014 0x0004afaa
  147. # smc_set_opmode_5 (SMC Set Opmode register):
  148. # Memory data bus width = 16 bits, async read mode, read burst
  149. # length = 1 beat, async write mode, write burst length = 1 beat,
  150. # byte enable (SMCBE0-1) timing = SMCCSn timing, memory burst boundary
  151. # split setting = burst can cross any address boundary
  152. mww 0xf4311018 0x00000001
  153. # smc_direct_cmd_5 (SMC Direct Command register):
  154. # cmd_type = UpdateRegs, chip_select = CS1
  155. mww 0xf4311010 0x00c00000
  156. echo "Clocks, SRAM, and DDR SDRAM are now initialized."
  157. }
  158. #######################
  159. # Flash configuration #
  160. #######################
  161. # TODO: Implement NAND support.