mem.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * (C) Copyright 2006-2008
  3. * Texas Instruments, <www.ti.com>
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #ifndef _MEM_H_
  25. #define _MEM_H_
  26. #define CS0 0x0
  27. #define CS1 0x1 /* mirror CS1 regs appear offset 0x30 from CS0 */
  28. #ifndef __ASSEMBLY__
  29. typedef enum {
  30. STACKED = 0,
  31. IP_DDR = 1,
  32. COMBO_DDR = 2,
  33. IP_SDR = 3,
  34. } mem_t;
  35. #endif /* __ASSEMBLY__ */
  36. #define EARLY_INIT 1
  37. /* Slower full frequency range default timings for x32 operation*/
  38. #define SDP_SDRC_SHARING 0x00000100
  39. #define SDP_SDRC_MR_0_SDR 0x00000031
  40. /* optimized timings good for current shipping parts */
  41. #define SDP_3430_SDRC_RFR_CTRL_165MHz 0x0004e201 /* 7.8us/6ns - 50=0x4e2 */
  42. #define DLL_OFFSET 0
  43. #define DLL_WRITEDDRCLKX2DIS 1
  44. #define DLL_ENADLL 1
  45. #define DLL_LOCKDLL 0
  46. #define DLL_DLLPHASE_72 0
  47. #define DLL_DLLPHASE_90 1
  48. /* rkw - need to find of 90/72 degree recommendation for speed like before */
  49. #define SDP_SDRC_DLLAB_CTRL ((DLL_ENADLL << 3) | \
  50. (DLL_LOCKDLL << 2) | (DLL_DLLPHASE_90 << 1))
  51. /* Infineon part of 3430SDP (165MHz optimized) 6.06ns
  52. * ACTIMA
  53. * TDAL = Twr/Tck + Trp/tck = 15/6 + 18/6 = 2.5 + 3 = 5.5 -> 6
  54. * TDPL (Twr) = 15/6 = 2.5 -> 3
  55. * TRRD = 12/6 = 2
  56. * TRCD = 18/6 = 3
  57. * TRP = 18/6 = 3
  58. * TRAS = 42/6 = 7
  59. * TRC = 60/6 = 10
  60. * TRFC = 72/6 = 12
  61. * ACTIMB
  62. * TCKE = 2
  63. * XSR = 120/6 = 20
  64. */
  65. #define TDAL_165 6
  66. #define TDPL_165 3
  67. #define TRRD_165 2
  68. #define TRCD_165 3
  69. #define TRP_165 3
  70. #define TRAS_165 7
  71. #define TRC_165 10
  72. #define TRFC_165 21
  73. #define V_ACTIMA_165 ((TRFC_165 << 27) | (TRC_165 << 22) | \
  74. (TRAS_165 << 18) | (TRP_165 << 15) | \
  75. (TRCD_165 << 12) | (TRRD_165 << 9) | \
  76. (TDPL_165 << 6) | (TDAL_165))
  77. #define TWTR_165 1
  78. #define TCKE_165 1
  79. #define TXP_165 5
  80. #define XSR_165 23
  81. #define V_ACTIMB_165 (((TCKE_165 << 12) | (XSR_165 << 0)) | \
  82. (TXP_165 << 8) | (TWTR_165 << 16))
  83. #define SDP_SDRC_ACTIM_CTRLA_0 V_ACTIMA_165
  84. #define SDP_SDRC_ACTIM_CTRLB_0 V_ACTIMB_165
  85. #define SDP_SDRC_RFR_CTRL SDP_3430_SDRC_RFR_CTRL_165MHz
  86. /*
  87. * GPMC settings -
  88. * Definitions is as per the following format
  89. * #define <PART>_GPMC_CONFIG<x> <value>
  90. * Where:
  91. * PART is the part name e.g. STNOR - Intel Strata Flash
  92. * x is GPMC config registers from 1 to 6 (there will be 6 macros)
  93. * Value is corresponding value
  94. *
  95. * For every valid PRCM configuration there should be only one definition of
  96. * the same. if values are independent of the board, this definition will be
  97. * present in this file if values are dependent on the board, then this should
  98. * go into corresponding mem-boardName.h file
  99. *
  100. * Currently valid part Names are (PART):
  101. * STNOR - Intel Strata Flash
  102. * SMNAND - Samsung NAND
  103. * MPDB - H4 MPDB board
  104. * SBNOR - Sibley NOR
  105. * MNAND - Micron Large page x16 NAND
  106. * ONNAND - Samsung One NAND
  107. *
  108. * include/configs/file.h contains the defn - for all CS we are interested
  109. * #define OMAP34XX_GPMC_CSx PART
  110. * #define OMAP34XX_GPMC_CSx_SIZE Size
  111. * #define OMAP34XX_GPMC_CSx_MAP Map
  112. * Where:
  113. * x - CS number
  114. * PART - Part Name as defined above
  115. * SIZE - how big is the mapping to be
  116. * GPMC_SIZE_128M - 0x8
  117. * GPMC_SIZE_64M - 0xC
  118. * GPMC_SIZE_32M - 0xE
  119. * GPMC_SIZE_16M - 0xF
  120. * MAP - Map this CS to which address(GPMC address space)- Absolute address
  121. * >>24 before being used.
  122. */
  123. #define GPMC_SIZE_128M 0x8
  124. #define GPMC_SIZE_64M 0xC
  125. #define GPMC_SIZE_32M 0xE
  126. #define GPMC_SIZE_16M 0xF
  127. #define SMNAND_GPMC_CONFIG1 0x00000800
  128. #define SMNAND_GPMC_CONFIG2 0x00141400
  129. #define SMNAND_GPMC_CONFIG3 0x00141400
  130. #define SMNAND_GPMC_CONFIG4 0x0F010F01
  131. #define SMNAND_GPMC_CONFIG5 0x010C1414
  132. #define SMNAND_GPMC_CONFIG6 0x1F0F0A80
  133. #define SMNAND_GPMC_CONFIG7 0x00000C44
  134. #define M_NAND_GPMC_CONFIG1 0x00001800
  135. #define M_NAND_GPMC_CONFIG2 0x00141400
  136. #define M_NAND_GPMC_CONFIG3 0x00141400
  137. #define M_NAND_GPMC_CONFIG4 0x0F010F01
  138. #define M_NAND_GPMC_CONFIG5 0x010C1414
  139. #define M_NAND_GPMC_CONFIG6 0x1f0f0A80
  140. #define M_NAND_GPMC_CONFIG7 0x00000C44
  141. #define STNOR_GPMC_CONFIG1 0x3
  142. #define STNOR_GPMC_CONFIG2 0x00151501
  143. #define STNOR_GPMC_CONFIG3 0x00060602
  144. #define STNOR_GPMC_CONFIG4 0x11091109
  145. #define STNOR_GPMC_CONFIG5 0x01141F1F
  146. #define STNOR_GPMC_CONFIG6 0x000004c4
  147. #define SIBNOR_GPMC_CONFIG1 0x1200
  148. #define SIBNOR_GPMC_CONFIG2 0x001f1f00
  149. #define SIBNOR_GPMC_CONFIG3 0x00080802
  150. #define SIBNOR_GPMC_CONFIG4 0x1C091C09
  151. #define SIBNOR_GPMC_CONFIG5 0x01131F1F
  152. #define SIBNOR_GPMC_CONFIG6 0x1F0F03C2
  153. #define SDPV2_MPDB_GPMC_CONFIG1 0x00611200
  154. #define SDPV2_MPDB_GPMC_CONFIG2 0x001F1F01
  155. #define SDPV2_MPDB_GPMC_CONFIG3 0x00080803
  156. #define SDPV2_MPDB_GPMC_CONFIG4 0x1D091D09
  157. #define SDPV2_MPDB_GPMC_CONFIG5 0x041D1F1F
  158. #define SDPV2_MPDB_GPMC_CONFIG6 0x1D0904C4
  159. #define MPDB_GPMC_CONFIG1 0x00011000
  160. #define MPDB_GPMC_CONFIG2 0x001f1f01
  161. #define MPDB_GPMC_CONFIG3 0x00080803
  162. #define MPDB_GPMC_CONFIG4 0x1c0b1c0a
  163. #define MPDB_GPMC_CONFIG5 0x041f1F1F
  164. #define MPDB_GPMC_CONFIG6 0x1F0F04C4
  165. #define P2_GPMC_CONFIG1 0x0
  166. #define P2_GPMC_CONFIG2 0x0
  167. #define P2_GPMC_CONFIG3 0x0
  168. #define P2_GPMC_CONFIG4 0x0
  169. #define P2_GPMC_CONFIG5 0x0
  170. #define P2_GPMC_CONFIG6 0x0
  171. #define ONENAND_GPMC_CONFIG1 0x00001200
  172. #define ONENAND_GPMC_CONFIG2 0x000F0F01
  173. #define ONENAND_GPMC_CONFIG3 0x00030301
  174. #define ONENAND_GPMC_CONFIG4 0x0F040F04
  175. #define ONENAND_GPMC_CONFIG5 0x010F1010
  176. #define ONENAND_GPMC_CONFIG6 0x1F060000
  177. #define NET_GPMC_CONFIG1 0x00001000
  178. #define NET_GPMC_CONFIG2 0x001e1e01
  179. #define NET_GPMC_CONFIG3 0x00080300
  180. #define NET_GPMC_CONFIG4 0x1c091c09
  181. #define NET_GPMC_CONFIG5 0x04181f1f
  182. #define NET_GPMC_CONFIG6 0x00000FCF
  183. #define NET_GPMC_CONFIG7 0x00000f6c
  184. /* max number of GPMC Chip Selects */
  185. #define GPMC_MAX_CS 8
  186. /* max number of GPMC regs */
  187. #define GPMC_MAX_REG 7
  188. #define PISMO1_NOR 1
  189. #define PISMO1_NAND 2
  190. #define PISMO2_CS0 3
  191. #define PISMO2_CS1 4
  192. #define PISMO1_ONENAND 5
  193. #define DBG_MPDB 6
  194. #define PISMO2_NAND_CS0 7
  195. #define PISMO2_NAND_CS1 8
  196. /* make it readable for the gpmc_init */
  197. #define PISMO1_NOR_BASE FLASH_BASE
  198. #define PISMO1_NAND_BASE NAND_BASE
  199. #define PISMO2_CS0_BASE PISMO2_MAP1
  200. #define PISMO1_ONEN_BASE ONENAND_MAP
  201. #define DBG_MPDB_BASE DEBUG_BASE
  202. #endif /* endif _MEM_H_ */