ppc4xx-sdram.h 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156
  1. /*
  2. * (C) Copyright 2008
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #ifndef _PPC4xx_SDRAM_H_
  24. #define _PPC4xx_SDRAM_H_
  25. #if defined(CONFIG_SDRAM_PPC4xx_IBM_SDRAM)
  26. /*
  27. * SDRAM Controller
  28. */
  29. /*
  30. * XXX - ToDo: Revisit file to change all these lower case defines into
  31. * upper case. Also needs to be done in the controller setup code too
  32. * of course. sr, 2008-06-02
  33. */
  34. #ifndef CONFIG_405EP
  35. #define mem_besra 0x00 /* bus error syndrome reg a */
  36. #define mem_besrsa 0x04 /* bus error syndrome reg set a */
  37. #define mem_besrb 0x08 /* bus error syndrome reg b */
  38. #define mem_besrsb 0x0c /* bus error syndrome reg set b */
  39. #define mem_bear 0x10 /* bus error address reg */
  40. #endif
  41. #define mem_mcopt1 0x20 /* memory controller options 1 */
  42. #define mem_status 0x24 /* memory status */
  43. #define mem_rtr 0x30 /* refresh timer reg */
  44. #define mem_pmit 0x34 /* power management idle timer */
  45. #define mem_mb0cf 0x40 /* memory bank 0 configuration */
  46. #define mem_mb1cf 0x44 /* memory bank 1 configuration */
  47. #ifndef CONFIG_405EP
  48. #define mem_mb2cf 0x48 /* memory bank 2 configuration */
  49. #define mem_mb3cf 0x4c /* memory bank 3 configuration */
  50. #endif
  51. #define mem_sdtr1 0x80 /* timing reg 1 */
  52. #ifndef CONFIG_405EP
  53. #define mem_ecccf 0x94 /* ECC configuration */
  54. #define mem_eccerr 0x98 /* ECC error status */
  55. #endif
  56. #endif /* CONFIG_SDRAM_PPC4xx_IBM_SDRAM */
  57. #if defined(CONFIG_SDRAM_PPC4xx_IBM_DDR)
  58. /*
  59. * Memory controller registers
  60. */
  61. #define SDRAM_CFG0 0x20 /* memory controller options 0 */
  62. #define SDRAM_CFG1 0x21 /* memory controller options 1 */
  63. /*
  64. * XXX - ToDo: Revisit file to change all these lower case defines into
  65. * upper case. Also needs to be done in the controller setup code too
  66. * of course. sr, 2008-06-02
  67. */
  68. #define mem_besr0_clr 0x0000 /* bus error status reg 0 (clr) */
  69. #define mem_besr0_set 0x0004 /* bus error status reg 0 (set) */
  70. #define mem_besr1_clr 0x0008 /* bus error status reg 1 (clr) */
  71. #define mem_besr1_set 0x000c /* bus error status reg 1 (set) */
  72. #define mem_bear 0x0010 /* bus error address reg */
  73. #define mem_mirq_clr 0x0011 /* bus master interrupt (clr) */
  74. #define mem_mirq_set 0x0012 /* bus master interrupt (set) */
  75. #define mem_slio 0x0018 /* ddr sdram slave interface options */
  76. #define mem_cfg0 0x0020 /* ddr sdram options 0 */
  77. #define mem_cfg1 0x0021 /* ddr sdram options 1 */
  78. #define mem_devopt 0x0022 /* ddr sdram device options */
  79. #define mem_mcsts 0x0024 /* memory controller status */
  80. #define mem_rtr 0x0030 /* refresh timer register */
  81. #define mem_pmit 0x0034 /* power management idle timer */
  82. #define mem_uabba 0x0038 /* plb UABus base address */
  83. #define mem_b0cr 0x0040 /* ddr sdram bank 0 configuration */
  84. #define mem_b1cr 0x0044 /* ddr sdram bank 1 configuration */
  85. #define mem_b2cr 0x0048 /* ddr sdram bank 2 configuration */
  86. #define mem_b3cr 0x004c /* ddr sdram bank 3 configuration */
  87. #define mem_tr0 0x0080 /* sdram timing register 0 */
  88. #define mem_tr1 0x0081 /* sdram timing register 1 */
  89. #define mem_clktr 0x0082 /* ddr clock timing register */
  90. #define mem_wddctr 0x0083 /* write data/dm/dqs clock timing reg */
  91. #define mem_dlycal 0x0084 /* delay line calibration register */
  92. #define mem_eccesr 0x0098 /* ECC error status */
  93. /*
  94. * Memory Controller Options 0
  95. */
  96. #define SDRAM_CFG0_DCEN 0x80000000 /* SDRAM Controller Enable */
  97. #define SDRAM_CFG0_MCHK_MASK 0x30000000 /* Memory data errchecking mask */
  98. #define SDRAM_CFG0_MCHK_NON 0x00000000 /* No ECC generation */
  99. #define SDRAM_CFG0_MCHK_GEN 0x20000000 /* ECC generation */
  100. #define SDRAM_CFG0_MCHK_CHK 0x30000000 /* ECC generation and checking */
  101. #define SDRAM_CFG0_RDEN 0x08000000 /* Registered DIMM enable */
  102. #define SDRAM_CFG0_PMUD 0x04000000 /* Page management unit */
  103. #define SDRAM_CFG0_DMWD_MASK 0x02000000 /* DRAM width mask */
  104. #define SDRAM_CFG0_DMWD_32 0x00000000 /* 32 bits */
  105. #define SDRAM_CFG0_DMWD_64 0x02000000 /* 64 bits */
  106. #define SDRAM_CFG0_UIOS_MASK 0x00C00000 /* Unused IO State */
  107. #define SDRAM_CFG0_PDP 0x00200000 /* Page deallocation policy */
  108. /*
  109. * Memory Controller Options 1
  110. */
  111. #define SDRAM_CFG1_SRE 0x80000000 /* Self-Refresh Entry */
  112. #define SDRAM_CFG1_PMEN 0x40000000 /* Power Management Enable */
  113. /*
  114. * SDRAM DEVPOT Options
  115. */
  116. #define SDRAM_DEVOPT_DLL 0x80000000
  117. #define SDRAM_DEVOPT_DS 0x40000000
  118. /*
  119. * SDRAM MCSTS Options
  120. */
  121. #define SDRAM_MCSTS_MRSC 0x80000000
  122. #define SDRAM_MCSTS_SRMS 0x40000000
  123. #define SDRAM_MCSTS_CIS 0x20000000
  124. /*
  125. * SDRAM Refresh Timer Register
  126. */
  127. #define SDRAM_RTR_RINT_MASK 0xFFFF0000
  128. #define SDRAM_RTR_RINT_ENCODE(n) (((n) << 16) & SDRAM_RTR_RINT_MASK)
  129. /*
  130. * SDRAM UABus Base Address Reg
  131. */
  132. #define SDRAM_UABBA_UBBA_MASK 0x0000000F
  133. /*
  134. * Memory Bank 0-7 configuration
  135. */
  136. #define SDRAM_BXCR_SDBA_MASK 0xff800000 /* Base address */
  137. #define SDRAM_BXCR_SDSZ_MASK 0x000e0000 /* Size */
  138. #define SDRAM_BXCR_SDSZ_8 0x00020000 /* 8M */
  139. #define SDRAM_BXCR_SDSZ_16 0x00040000 /* 16M */
  140. #define SDRAM_BXCR_SDSZ_32 0x00060000 /* 32M */
  141. #define SDRAM_BXCR_SDSZ_64 0x00080000 /* 64M */
  142. #define SDRAM_BXCR_SDSZ_128 0x000a0000 /* 128M */
  143. #define SDRAM_BXCR_SDSZ_256 0x000c0000 /* 256M */
  144. #define SDRAM_BXCR_SDSZ_512 0x000e0000 /* 512M */
  145. #define SDRAM_BXCR_SDAM_MASK 0x0000e000 /* Addressing mode */
  146. #define SDRAM_BXCR_SDAM_1 0x00000000 /* Mode 1 */
  147. #define SDRAM_BXCR_SDAM_2 0x00002000 /* Mode 2 */
  148. #define SDRAM_BXCR_SDAM_3 0x00004000 /* Mode 3 */
  149. #define SDRAM_BXCR_SDAM_4 0x00006000 /* Mode 4 */
  150. #define SDRAM_BXCR_SDBE 0x00000001 /* Memory Bank Enable */
  151. /*
  152. * SDRAM TR0 Options
  153. */
  154. #define SDRAM_TR0_SDWR_MASK 0x80000000
  155. #define SDRAM_TR0_SDWR_2_CLK 0x00000000
  156. #define SDRAM_TR0_SDWR_3_CLK 0x80000000
  157. #define SDRAM_TR0_SDWD_MASK 0x40000000
  158. #define SDRAM_TR0_SDWD_0_CLK 0x00000000
  159. #define SDRAM_TR0_SDWD_1_CLK 0x40000000
  160. #define SDRAM_TR0_SDCL_MASK 0x01800000
  161. #define SDRAM_TR0_SDCL_2_0_CLK 0x00800000
  162. #define SDRAM_TR0_SDCL_2_5_CLK 0x01000000
  163. #define SDRAM_TR0_SDCL_3_0_CLK 0x01800000
  164. #define SDRAM_TR0_SDPA_MASK 0x000C0000
  165. #define SDRAM_TR0_SDPA_2_CLK 0x00040000
  166. #define SDRAM_TR0_SDPA_3_CLK 0x00080000
  167. #define SDRAM_TR0_SDPA_4_CLK 0x000C0000
  168. #define SDRAM_TR0_SDCP_MASK 0x00030000
  169. #define SDRAM_TR0_SDCP_2_CLK 0x00000000
  170. #define SDRAM_TR0_SDCP_3_CLK 0x00010000
  171. #define SDRAM_TR0_SDCP_4_CLK 0x00020000
  172. #define SDRAM_TR0_SDCP_5_CLK 0x00030000
  173. #define SDRAM_TR0_SDLD_MASK 0x0000C000
  174. #define SDRAM_TR0_SDLD_1_CLK 0x00000000
  175. #define SDRAM_TR0_SDLD_2_CLK 0x00004000
  176. #define SDRAM_TR0_SDRA_MASK 0x0000001C
  177. #define SDRAM_TR0_SDRA_6_CLK 0x00000000
  178. #define SDRAM_TR0_SDRA_7_CLK 0x00000004
  179. #define SDRAM_TR0_SDRA_8_CLK 0x00000008
  180. #define SDRAM_TR0_SDRA_9_CLK 0x0000000C
  181. #define SDRAM_TR0_SDRA_10_CLK 0x00000010
  182. #define SDRAM_TR0_SDRA_11_CLK 0x00000014
  183. #define SDRAM_TR0_SDRA_12_CLK 0x00000018
  184. #define SDRAM_TR0_SDRA_13_CLK 0x0000001C
  185. #define SDRAM_TR0_SDRD_MASK 0x00000003
  186. #define SDRAM_TR0_SDRD_2_CLK 0x00000001
  187. #define SDRAM_TR0_SDRD_3_CLK 0x00000002
  188. #define SDRAM_TR0_SDRD_4_CLK 0x00000003
  189. /*
  190. * SDRAM TR1 Options
  191. */
  192. #define SDRAM_TR1_RDSS_MASK 0xC0000000
  193. #define SDRAM_TR1_RDSS_TR0 0x00000000
  194. #define SDRAM_TR1_RDSS_TR1 0x40000000
  195. #define SDRAM_TR1_RDSS_TR2 0x80000000
  196. #define SDRAM_TR1_RDSS_TR3 0xC0000000
  197. #define SDRAM_TR1_RDSL_MASK 0x00C00000
  198. #define SDRAM_TR1_RDSL_STAGE1 0x00000000
  199. #define SDRAM_TR1_RDSL_STAGE2 0x00400000
  200. #define SDRAM_TR1_RDSL_STAGE3 0x00800000
  201. #define SDRAM_TR1_RDCD_MASK 0x00000800
  202. #define SDRAM_TR1_RDCD_RCD_0_0 0x00000000
  203. #define SDRAM_TR1_RDCD_RCD_1_2 0x00000800
  204. #define SDRAM_TR1_RDCT_MASK 0x000001FF
  205. #define SDRAM_TR1_RDCT_ENCODE(x) (((x) << 0) & SDRAM_TR1_RDCT_MASK)
  206. #define SDRAM_TR1_RDCT_DECODE(x) (((x) & SDRAM_TR1_RDCT_MASK) >> 0)
  207. #define SDRAM_TR1_RDCT_MIN 0x00000000
  208. #define SDRAM_TR1_RDCT_MAX 0x000001FF
  209. /*
  210. * SDRAM WDDCTR Options
  211. */
  212. #define SDRAM_WDDCTR_WRCP_MASK 0xC0000000
  213. #define SDRAM_WDDCTR_WRCP_0DEG 0x00000000
  214. #define SDRAM_WDDCTR_WRCP_90DEG 0x40000000
  215. #define SDRAM_WDDCTR_WRCP_180DEG 0x80000000
  216. #define SDRAM_WDDCTR_DCD_MASK 0x000001FF
  217. /*
  218. * SDRAM CLKTR Options
  219. */
  220. #define SDRAM_CLKTR_CLKP_MASK 0xC0000000
  221. #define SDRAM_CLKTR_CLKP_0DEG 0x00000000
  222. #define SDRAM_CLKTR_CLKP_90DEG 0x40000000
  223. #define SDRAM_CLKTR_CLKP_180DEG 0x80000000
  224. #define SDRAM_CLKTR_DCDT_MASK 0x000001FF
  225. /*
  226. * SDRAM DLYCAL Options
  227. */
  228. #define SDRAM_DLYCAL_DLCV_MASK 0x000003FC
  229. #define SDRAM_DLYCAL_DLCV_ENCODE(x) (((x)<<2) & SDRAM_DLYCAL_DLCV_MASK)
  230. #define SDRAM_DLYCAL_DLCV_DECODE(x) (((x) & SDRAM_DLYCAL_DLCV_MASK)>>2)
  231. #endif /* CONFIG_SDRAM_PPC4xx_IBM_DDR */
  232. #if defined(CONFIG_SDRAM_PPC4xx_IBM_DDR2)
  233. #define SDRAM_DLYCAL_DLCV_MASK 0x000003FC
  234. #define SDRAM_DLYCAL_DLCV_ENCODE(x) (((x)<<2) & SDRAM_DLYCAL_DLCV_MASK)
  235. #define SDRAM_DLYCAL_DLCV_DECODE(x) (((x) & SDRAM_DLYCAL_DLCV_MASK)>>2)
  236. /*
  237. * Memory queue defines
  238. */
  239. #define SDRAMQ_DCR_BASE 0x040
  240. #define SDRAM_R0BAS (SDRAMQ_DCR_BASE+0x0) /* rank 0 base address & size */
  241. #define SDRAM_R1BAS (SDRAMQ_DCR_BASE+0x1) /* rank 1 base address & size */
  242. #define SDRAM_R2BAS (SDRAMQ_DCR_BASE+0x2) /* rank 2 base address & size */
  243. #define SDRAM_R3BAS (SDRAMQ_DCR_BASE+0x3) /* rank 3 base address & size */
  244. #define SDRAM_CONF1HB (SDRAMQ_DCR_BASE+0x5) /* configuration 1 HB */
  245. #define SDRAM_ERRSTATHB (SDRAMQ_DCR_BASE+0x7) /* error status HB */
  246. #define SDRAM_ERRADDUHB (SDRAMQ_DCR_BASE+0x8) /* error address upper 32 HB */
  247. #define SDRAM_ERRADDLHB (SDRAMQ_DCR_BASE+0x9) /* error address lower 32 HB */
  248. #define SDRAM_PLBADDULL (SDRAMQ_DCR_BASE+0xA) /* PLB base address upper 32 LL */
  249. #define SDRAM_CONF1LL (SDRAMQ_DCR_BASE+0xB) /* configuration 1 LL */
  250. #define SDRAM_ERRSTATLL (SDRAMQ_DCR_BASE+0xC) /* error status LL */
  251. #define SDRAM_ERRADDULL (SDRAMQ_DCR_BASE+0xD) /* error address upper 32 LL */
  252. #define SDRAM_ERRADDLLL (SDRAMQ_DCR_BASE+0xE) /* error address lower 32 LL */
  253. #define SDRAM_CONFPATHB (SDRAMQ_DCR_BASE+0xF) /* configuration between paths */
  254. #define SDRAM_PLBADDUHB (SDRAMQ_DCR_BASE+0x10) /* PLB base address upper 32 LL */
  255. #if !defined(CONFIG_405EX)
  256. /*
  257. * Memory Bank 0-7 configuration
  258. */
  259. #if defined(CONFIG_440SPE) || \
  260. defined(CONFIG_460EX) || defined(CONFIG_460GT)
  261. #define SDRAM_RXBAS_SDBA_MASK 0xFFE00000 /* Base address */
  262. #define SDRAM_RXBAS_SDBA_ENCODE(n) ((((u32)(n))&0xFFE00000)>>2)
  263. #define SDRAM_RXBAS_SDBA_DECODE(n) ((((u32)(n))&0xFFE00000)<<2)
  264. #endif /* CONFIG_440SPE */
  265. #if defined(CONFIG_440SP)
  266. #define SDRAM_RXBAS_SDBA_MASK 0xFF800000 /* Base address */
  267. #define SDRAM_RXBAS_SDBA_ENCODE(n) ((((u32)(n))&0xFF800000))
  268. #define SDRAM_RXBAS_SDBA_DECODE(n) ((((u32)(n))&0xFF800000))
  269. #endif /* CONFIG_440SP */
  270. #define SDRAM_RXBAS_SDSZ_MASK 0x0000FFC0 /* Size */
  271. #define SDRAM_RXBAS_SDSZ_ENCODE(n) ((((u32)(n))&0x3FF)<<6)
  272. #define SDRAM_RXBAS_SDSZ_DECODE(n) ((((u32)(n))>>6)&0x3FF)
  273. #define SDRAM_RXBAS_SDSZ_0 0x00000000 /* 0M */
  274. #define SDRAM_RXBAS_SDSZ_8 0x0000FFC0 /* 8M */
  275. #define SDRAM_RXBAS_SDSZ_16 0x0000FF80 /* 16M */
  276. #define SDRAM_RXBAS_SDSZ_32 0x0000FF00 /* 32M */
  277. #define SDRAM_RXBAS_SDSZ_64 0x0000FE00 /* 64M */
  278. #define SDRAM_RXBAS_SDSZ_128 0x0000FC00 /* 128M */
  279. #define SDRAM_RXBAS_SDSZ_256 0x0000F800 /* 256M */
  280. #define SDRAM_RXBAS_SDSZ_512 0x0000F000 /* 512M */
  281. #define SDRAM_RXBAS_SDSZ_1024 0x0000E000 /* 1024M */
  282. #define SDRAM_RXBAS_SDSZ_2048 0x0000C000 /* 2048M */
  283. #define SDRAM_RXBAS_SDSZ_4096 0x00008000 /* 4096M */
  284. #else /* CONFIG_405EX */
  285. /*
  286. * XXX - ToDo:
  287. * Revisit this file to check if all these 405EX defines are correct and
  288. * can be used in the common 44x_spd_ddr2 code as well. sr, 2008-06-02
  289. */
  290. #define SDRAM_RXBAS_SDSZ_MASK PPC_REG_VAL(19, 0xF)
  291. #define SDRAM_RXBAS_SDSZ_4MB PPC_REG_VAL(19, 0x0)
  292. #define SDRAM_RXBAS_SDSZ_8MB PPC_REG_VAL(19, 0x1)
  293. #define SDRAM_RXBAS_SDSZ_16MB PPC_REG_VAL(19, 0x2)
  294. #define SDRAM_RXBAS_SDSZ_32MB PPC_REG_VAL(19, 0x3)
  295. #define SDRAM_RXBAS_SDSZ_64MB PPC_REG_VAL(19, 0x4)
  296. #define SDRAM_RXBAS_SDSZ_128MB PPC_REG_VAL(19, 0x5)
  297. #define SDRAM_RXBAS_SDSZ_256MB PPC_REG_VAL(19, 0x6)
  298. #define SDRAM_RXBAS_SDSZ_512MB PPC_REG_VAL(19, 0x7)
  299. #define SDRAM_RXBAS_SDSZ_1024MB PPC_REG_VAL(19, 0x8)
  300. #define SDRAM_RXBAS_SDSZ_2048MB PPC_REG_VAL(19, 0x9)
  301. #define SDRAM_RXBAS_SDSZ_4096MB PPC_REG_VAL(19, 0xA)
  302. #define SDRAM_RXBAS_SDSZ_8192MB PPC_REG_VAL(19, 0xB)
  303. #define SDRAM_RXBAS_SDSZ_8 SDRAM_RXBAS_SDSZ_8MB
  304. #define SDRAM_RXBAS_SDSZ_16 SDRAM_RXBAS_SDSZ_16MB
  305. #define SDRAM_RXBAS_SDSZ_32 SDRAM_RXBAS_SDSZ_32MB
  306. #define SDRAM_RXBAS_SDSZ_64 SDRAM_RXBAS_SDSZ_64MB
  307. #define SDRAM_RXBAS_SDSZ_128 SDRAM_RXBAS_SDSZ_128MB
  308. #define SDRAM_RXBAS_SDSZ_256 SDRAM_RXBAS_SDSZ_256MB
  309. #define SDRAM_RXBAS_SDSZ_512 SDRAM_RXBAS_SDSZ_512MB
  310. #define SDRAM_RXBAS_SDSZ_1024 SDRAM_RXBAS_SDSZ_1024MB
  311. #define SDRAM_RXBAS_SDSZ_2048 SDRAM_RXBAS_SDSZ_2048MB
  312. #define SDRAM_RXBAS_SDSZ_4096 SDRAM_RXBAS_SDSZ_4096MB
  313. #define SDRAM_RXBAS_SDSZ_8192 SDRAM_RXBAS_SDSZ_8192MB
  314. #define SDRAM_RXBAS_SDAM_MODE0 PPC_REG_VAL(23, 0x0)
  315. #define SDRAM_RXBAS_SDAM_MODE1 PPC_REG_VAL(23, 0x1)
  316. #define SDRAM_RXBAS_SDAM_MODE2 PPC_REG_VAL(23, 0x2)
  317. #define SDRAM_RXBAS_SDAM_MODE3 PPC_REG_VAL(23, 0x3)
  318. #define SDRAM_RXBAS_SDAM_MODE4 PPC_REG_VAL(23, 0x4)
  319. #define SDRAM_RXBAS_SDAM_MODE5 PPC_REG_VAL(23, 0x5)
  320. #define SDRAM_RXBAS_SDAM_MODE6 PPC_REG_VAL(23, 0x6)
  321. #define SDRAM_RXBAS_SDAM_MODE7 PPC_REG_VAL(23, 0x7)
  322. #define SDRAM_RXBAS_SDAM_MODE8 PPC_REG_VAL(23, 0x8)
  323. #define SDRAM_RXBAS_SDAM_MODE9 PPC_REG_VAL(23, 0x9)
  324. #define SDRAM_RXBAS_SDBE_DISABLE PPC_REG_VAL(31, 0x0)
  325. #define SDRAM_RXBAS_SDBE_ENABLE PPC_REG_VAL(31, 0x1)
  326. #endif /* CONFIG_405EX */
  327. /*
  328. * Memory controller registers
  329. */
  330. #define SDRAM_MCSTAT 0x14 /* memory controller status */
  331. #define SDRAM_MCOPT1 0x20 /* memory controller options 1 */
  332. #define SDRAM_MCOPT2 0x21 /* memory controller options 2 */
  333. #define SDRAM_MODT0 0x22 /* on die termination for bank 0 */
  334. #define SDRAM_MODT1 0x23 /* on die termination for bank 1 */
  335. #define SDRAM_MODT2 0x24 /* on die termination for bank 2 */
  336. #define SDRAM_MODT3 0x25 /* on die termination for bank 3 */
  337. #define SDRAM_CODT 0x26 /* on die termination for controller */
  338. #define SDRAM_VVPR 0x27 /* variable VRef programmming */
  339. #define SDRAM_OPARS 0x28 /* on chip driver control setup */
  340. #define SDRAM_OPART 0x29 /* on chip driver control trigger */
  341. #define SDRAM_RTR 0x30 /* refresh timer */
  342. #define SDRAM_PMIT 0x34 /* power management idle timer */
  343. #define SDRAM_MB0CF 0x40 /* memory bank 0 configuration */
  344. #define SDRAM_MB1CF 0x44 /* memory bank 1 configuration */
  345. #define SDRAM_MB2CF 0x48
  346. #define SDRAM_MB3CF 0x4C
  347. #define SDRAM_INITPLR0 0x50 /* manual initialization control */
  348. #define SDRAM_INITPLR1 0x51 /* manual initialization control */
  349. #define SDRAM_INITPLR2 0x52 /* manual initialization control */
  350. #define SDRAM_INITPLR3 0x53 /* manual initialization control */
  351. #define SDRAM_INITPLR4 0x54 /* manual initialization control */
  352. #define SDRAM_INITPLR5 0x55 /* manual initialization control */
  353. #define SDRAM_INITPLR6 0x56 /* manual initialization control */
  354. #define SDRAM_INITPLR7 0x57 /* manual initialization control */
  355. #define SDRAM_INITPLR8 0x58 /* manual initialization control */
  356. #define SDRAM_INITPLR9 0x59 /* manual initialization control */
  357. #define SDRAM_INITPLR10 0x5a /* manual initialization control */
  358. #define SDRAM_INITPLR11 0x5b /* manual initialization control */
  359. #define SDRAM_INITPLR12 0x5c /* manual initialization control */
  360. #define SDRAM_INITPLR13 0x5d /* manual initialization control */
  361. #define SDRAM_INITPLR14 0x5e /* manual initialization control */
  362. #define SDRAM_INITPLR15 0x5f /* manual initialization control */
  363. #define SDRAM_RQDC 0x70 /* read DQS delay control */
  364. #define SDRAM_RFDC 0x74 /* read feedback delay control */
  365. #define SDRAM_RDCC 0x78 /* read data capture control */
  366. #define SDRAM_DLCR 0x7A /* delay line calibration */
  367. #define SDRAM_CLKTR 0x80 /* DDR clock timing */
  368. #define SDRAM_WRDTR 0x81 /* write data, DQS, DM clock, timing */
  369. #define SDRAM_SDTR1 0x85 /* DDR SDRAM timing 1 */
  370. #define SDRAM_SDTR2 0x86 /* DDR SDRAM timing 2 */
  371. #define SDRAM_SDTR3 0x87 /* DDR SDRAM timing 3 */
  372. #define SDRAM_MMODE 0x88 /* memory mode */
  373. #define SDRAM_MEMODE 0x89 /* memory extended mode */
  374. #define SDRAM_ECCCR 0x98 /* ECC error status */
  375. #define SDRAM_CID 0xA4 /* core ID */
  376. #define SDRAM_RID 0xA8 /* revision ID */
  377. #define SDRAM_RTSR 0xB1 /* run time status tracking */
  378. /*
  379. * Memory Controller Status
  380. */
  381. #define SDRAM_MCSTAT_MIC_MASK 0x80000000 /* Memory init status mask */
  382. #define SDRAM_MCSTAT_MIC_NOTCOMP 0x00000000 /* Mem init not complete */
  383. #define SDRAM_MCSTAT_MIC_COMP 0x80000000 /* Mem init complete */
  384. #define SDRAM_MCSTAT_SRMS_MASK 0x40000000 /* Mem self refresh stat mask */
  385. #define SDRAM_MCSTAT_SRMS_NOT_SF 0x00000000 /* Mem not in self refresh */
  386. #define SDRAM_MCSTAT_SRMS_SF 0x40000000 /* Mem in self refresh */
  387. #define SDRAM_MCSTAT_IDLE_MASK 0x20000000 /* Mem self refresh stat mask */
  388. #define SDRAM_MCSTAT_IDLE_NOT 0x00000000 /* Mem contr not idle */
  389. #define SDRAM_MCSTAT_IDLE 0x20000000 /* Mem contr idle */
  390. /*
  391. * Memory Controller Options 1
  392. */
  393. #define SDRAM_MCOPT1_MCHK_MASK 0x30000000 /* Memory data err check mask*/
  394. #define SDRAM_MCOPT1_MCHK_NON 0x00000000 /* No ECC generation */
  395. #define SDRAM_MCOPT1_MCHK_GEN 0x20000000 /* ECC generation */
  396. #define SDRAM_MCOPT1_MCHK_CHK 0x10000000 /* ECC generation and check */
  397. #define SDRAM_MCOPT1_MCHK_CHK_REP 0x30000000 /* ECC generation, chk, report*/
  398. #define SDRAM_MCOPT1_MCHK_CHK_DECODE(n) ((((u32)(n))>>28)&0x3)
  399. #define SDRAM_MCOPT1_RDEN_MASK 0x08000000 /* Registered DIMM mask */
  400. #define SDRAM_MCOPT1_RDEN 0x08000000 /* Registered DIMM enable */
  401. #define SDRAM_MCOPT1_PMU_MASK 0x06000000 /* Page management unit mask */
  402. #define SDRAM_MCOPT1_PMU_CLOSE 0x00000000 /* PMU Close */
  403. #define SDRAM_MCOPT1_PMU_OPEN 0x04000000 /* PMU Open */
  404. #define SDRAM_MCOPT1_PMU_AUTOCLOSE 0x02000000 /* PMU AutoClose */
  405. #define SDRAM_MCOPT1_DMWD_MASK 0x01000000 /* DRAM width mask */
  406. #define SDRAM_MCOPT1_DMWD_32 0x00000000 /* 32 bits */
  407. #define SDRAM_MCOPT1_DMWD_64 0x01000000 /* 64 bits */
  408. #define SDRAM_MCOPT1_UIOS_MASK 0x00C00000 /* Unused IO State */
  409. #define SDRAM_MCOPT1_BCNT_MASK 0x00200000 /* Bank count */
  410. #define SDRAM_MCOPT1_4_BANKS 0x00000000 /* 4 Banks */
  411. #define SDRAM_MCOPT1_8_BANKS 0x00200000 /* 8 Banks */
  412. #define SDRAM_MCOPT1_DDR_TYPE_MASK 0x00100000 /* DDR Memory Type mask */
  413. #define SDRAM_MCOPT1_DDR1_TYPE 0x00000000 /* DDR1 Memory Type */
  414. #define SDRAM_MCOPT1_DDR2_TYPE 0x00100000 /* DDR2 Memory Type */
  415. #define SDRAM_MCOPT1_QDEP 0x00020000 /* 4 commands deep */
  416. #define SDRAM_MCOPT1_RWOO_MASK 0x00008000 /* Out of Order Read mask */
  417. #define SDRAM_MCOPT1_RWOO_DISABLED 0x00000000 /* disabled */
  418. #define SDRAM_MCOPT1_RWOO_ENABLED 0x00008000 /* enabled */
  419. #define SDRAM_MCOPT1_WOOO_MASK 0x00004000 /* Out of Order Write mask */
  420. #define SDRAM_MCOPT1_WOOO_DISABLED 0x00000000 /* disabled */
  421. #define SDRAM_MCOPT1_WOOO_ENABLED 0x00004000 /* enabled */
  422. #define SDRAM_MCOPT1_DCOO_MASK 0x00002000 /* All Out of Order mask */
  423. #define SDRAM_MCOPT1_DCOO_DISABLED 0x00002000 /* disabled */
  424. #define SDRAM_MCOPT1_DCOO_ENABLED 0x00000000 /* enabled */
  425. #define SDRAM_MCOPT1_DREF_MASK 0x00001000 /* Deferred refresh mask */
  426. #define SDRAM_MCOPT1_DREF_NORMAL 0x00000000 /* normal refresh */
  427. #define SDRAM_MCOPT1_DREF_DEFER_4 0x00001000 /* defer up to 4 refresh cmd */
  428. /*
  429. * Memory Controller Options 2
  430. */
  431. #define SDRAM_MCOPT2_SREN_MASK 0x80000000 /* Self Test mask */
  432. #define SDRAM_MCOPT2_SREN_EXIT 0x00000000 /* Self Test exit */
  433. #define SDRAM_MCOPT2_SREN_ENTER 0x80000000 /* Self Test enter */
  434. #define SDRAM_MCOPT2_PMEN_MASK 0x40000000 /* Power Management mask */
  435. #define SDRAM_MCOPT2_PMEN_DISABLE 0x00000000 /* disable */
  436. #define SDRAM_MCOPT2_PMEN_ENABLE 0x40000000 /* enable */
  437. #define SDRAM_MCOPT2_IPTR_MASK 0x20000000 /* Init Trigger Reg mask */
  438. #define SDRAM_MCOPT2_IPTR_IDLE 0x00000000 /* idle */
  439. #define SDRAM_MCOPT2_IPTR_EXECUTE 0x20000000 /* execute preloaded init */
  440. #define SDRAM_MCOPT2_XSRP_MASK 0x10000000 /* Exit Self Refresh Prevent */
  441. #define SDRAM_MCOPT2_XSRP_ALLOW 0x00000000 /* allow self refresh exit */
  442. #define SDRAM_MCOPT2_XSRP_PREVENT 0x10000000 /* prevent self refresh exit */
  443. #define SDRAM_MCOPT2_DCEN_MASK 0x08000000 /* SDRAM Controller Enable */
  444. #define SDRAM_MCOPT2_DCEN_DISABLE 0x00000000 /* SDRAM Controller Enable */
  445. #define SDRAM_MCOPT2_DCEN_ENABLE 0x08000000 /* SDRAM Controller Enable */
  446. #define SDRAM_MCOPT2_ISIE_MASK 0x04000000 /* Init Seq Interruptable mas*/
  447. #define SDRAM_MCOPT2_ISIE_DISABLE 0x00000000 /* disable */
  448. #define SDRAM_MCOPT2_ISIE_ENABLE 0x04000000 /* enable */
  449. /*
  450. * SDRAM Refresh Timer Register
  451. */
  452. #define SDRAM_RTR_RINT_MASK 0xFFF80000
  453. #define SDRAM_RTR_RINT_ENCODE(n) ((((u32)(n))&0xFFF8)<<16)
  454. #define SDRAM_RTR_RINT_DECODE(n) ((((u32)(n))>>16)&0xFFF8)
  455. /*
  456. * SDRAM Read DQS Delay Control Register
  457. */
  458. #define SDRAM_RQDC_RQDE_MASK 0x80000000
  459. #define SDRAM_RQDC_RQDE_DISABLE 0x00000000
  460. #define SDRAM_RQDC_RQDE_ENABLE 0x80000000
  461. #define SDRAM_RQDC_RQFD_MASK 0x000001FF
  462. #define SDRAM_RQDC_RQFD_ENCODE(n) ((((u32)(n))&0x1FF)<<0)
  463. #define SDRAM_RQDC_RQFD_MAX 0x1FF
  464. /*
  465. * SDRAM Read Data Capture Control Register
  466. */
  467. #define SDRAM_RDCC_RDSS_MASK 0xC0000000
  468. #define SDRAM_RDCC_RDSS_T1 0x00000000
  469. #define SDRAM_RDCC_RDSS_T2 0x40000000
  470. #define SDRAM_RDCC_RDSS_T3 0x80000000
  471. #define SDRAM_RDCC_RDSS_T4 0xC0000000
  472. #define SDRAM_RDCC_RSAE_MASK 0x00000001
  473. #define SDRAM_RDCC_RSAE_DISABLE 0x00000001
  474. #define SDRAM_RDCC_RSAE_ENABLE 0x00000000
  475. /*
  476. * SDRAM Read Feedback Delay Control Register
  477. */
  478. #define SDRAM_RFDC_ARSE_MASK 0x80000000
  479. #define SDRAM_RFDC_ARSE_DISABLE 0x80000000
  480. #define SDRAM_RFDC_ARSE_ENABLE 0x00000000
  481. #define SDRAM_RFDC_RFOS_MASK 0x007F0000
  482. #define SDRAM_RFDC_RFOS_ENCODE(n) ((((u32)(n))&0x7F)<<16)
  483. #define SDRAM_RFDC_RFFD_MASK 0x000007FF
  484. #define SDRAM_RFDC_RFFD_ENCODE(n) ((((u32)(n))&0x7FF)<<0)
  485. #define SDRAM_RFDC_RFFD_MAX 0x7FF
  486. /*
  487. * SDRAM Delay Line Calibration Register
  488. */
  489. #define SDRAM_DLCR_DCLM_MASK 0x80000000
  490. #define SDRAM_DLCR_DCLM_MANUEL 0x80000000
  491. #define SDRAM_DLCR_DCLM_AUTO 0x00000000
  492. #define SDRAM_DLCR_DLCR_MASK 0x08000000
  493. #define SDRAM_DLCR_DLCR_CALIBRATE 0x08000000
  494. #define SDRAM_DLCR_DLCR_IDLE 0x00000000
  495. #define SDRAM_DLCR_DLCS_MASK 0x07000000
  496. #define SDRAM_DLCR_DLCS_NOT_RUN 0x00000000
  497. #define SDRAM_DLCR_DLCS_IN_PROGRESS 0x01000000
  498. #define SDRAM_DLCR_DLCS_COMPLETE 0x02000000
  499. #define SDRAM_DLCR_DLCS_CONT_DONE 0x03000000
  500. #define SDRAM_DLCR_DLCS_ERROR 0x04000000
  501. #define SDRAM_DLCR_DLCV_MASK 0x000001FF
  502. #define SDRAM_DLCR_DLCV_ENCODE(n) ((((u32)(n))&0x1FF)<<0)
  503. #define SDRAM_DLCR_DLCV_DECODE(n) ((((u32)(n))>>0)&0x1FF)
  504. /*
  505. * SDRAM Controller On Die Termination Register
  506. */
  507. #define SDRAM_CODT_ODT_ON 0x80000000
  508. #define SDRAM_CODT_ODT_OFF 0x00000000
  509. #define SDRAM_CODT_DQS_VOLTAGE_DDR_MASK 0x00000020
  510. #define SDRAM_CODT_DQS_2_5_V_DDR1 0x00000000
  511. #define SDRAM_CODT_DQS_1_8_V_DDR2 0x00000020
  512. #define SDRAM_CODT_DQS_MASK 0x00000010
  513. #define SDRAM_CODT_DQS_DIFFERENTIAL 0x00000000
  514. #define SDRAM_CODT_DQS_SINGLE_END 0x00000010
  515. #define SDRAM_CODT_CKSE_DIFFERENTIAL 0x00000000
  516. #define SDRAM_CODT_CKSE_SINGLE_END 0x00000008
  517. #define SDRAM_CODT_FEEBBACK_RCV_SINGLE_END 0x00000004
  518. #define SDRAM_CODT_FEEBBACK_DRV_SINGLE_END 0x00000002
  519. #define SDRAM_CODT_IO_HIZ 0x00000000
  520. #define SDRAM_CODT_IO_NMODE 0x00000001
  521. /*
  522. * SDRAM Mode Register
  523. */
  524. #define SDRAM_MMODE_WR_MASK 0x00000E00
  525. #define SDRAM_MMODE_WR_DDR1 0x00000000
  526. #define SDRAM_MMODE_WR_DDR2_3_CYC 0x00000400
  527. #define SDRAM_MMODE_WR_DDR2_4_CYC 0x00000600
  528. #define SDRAM_MMODE_WR_DDR2_5_CYC 0x00000800
  529. #define SDRAM_MMODE_WR_DDR2_6_CYC 0x00000A00
  530. #define SDRAM_MMODE_DCL_MASK 0x00000070
  531. #define SDRAM_MMODE_DCL_DDR1_2_0_CLK 0x00000020
  532. #define SDRAM_MMODE_DCL_DDR1_2_5_CLK 0x00000060
  533. #define SDRAM_MMODE_DCL_DDR1_3_0_CLK 0x00000030
  534. #define SDRAM_MMODE_DCL_DDR2_2_0_CLK 0x00000020
  535. #define SDRAM_MMODE_DCL_DDR2_3_0_CLK 0x00000030
  536. #define SDRAM_MMODE_DCL_DDR2_4_0_CLK 0x00000040
  537. #define SDRAM_MMODE_DCL_DDR2_5_0_CLK 0x00000050
  538. #define SDRAM_MMODE_DCL_DDR2_6_0_CLK 0x00000060
  539. #define SDRAM_MMODE_DCL_DDR2_7_0_CLK 0x00000070
  540. /*
  541. * SDRAM Extended Mode Register
  542. */
  543. #define SDRAM_MEMODE_DIC_MASK 0x00000002
  544. #define SDRAM_MEMODE_DIC_NORMAL 0x00000000
  545. #define SDRAM_MEMODE_DIC_WEAK 0x00000002
  546. #define SDRAM_MEMODE_DLL_MASK 0x00000001
  547. #define SDRAM_MEMODE_DLL_DISABLE 0x00000001
  548. #define SDRAM_MEMODE_DLL_ENABLE 0x00000000
  549. #define SDRAM_MEMODE_RTT_MASK 0x00000044
  550. #define SDRAM_MEMODE_RTT_DISABLED 0x00000000
  551. #define SDRAM_MEMODE_RTT_75OHM 0x00000004
  552. #define SDRAM_MEMODE_RTT_150OHM 0x00000040
  553. #define SDRAM_MEMODE_DQS_MASK 0x00000400
  554. #define SDRAM_MEMODE_DQS_DISABLE 0x00000400
  555. #define SDRAM_MEMODE_DQS_ENABLE 0x00000000
  556. /*
  557. * SDRAM Clock Timing Register
  558. */
  559. #define SDRAM_CLKTR_CLKP_MASK 0xC0000000
  560. #define SDRAM_CLKTR_CLKP_0_DEG 0x00000000
  561. #define SDRAM_CLKTR_CLKP_180_DEG_ADV 0x80000000
  562. #define SDRAM_CLKTR_CLKP_90_DEG_ADV 0x40000000
  563. #define SDRAM_CLKTR_CLKP_270_DEG_ADV 0xC0000000
  564. /*
  565. * SDRAM Write Timing Register
  566. */
  567. #define SDRAM_WRDTR_LLWP_MASK 0x10000000
  568. #define SDRAM_WRDTR_LLWP_DIS 0x10000000
  569. #define SDRAM_WRDTR_LLWP_1_CYC 0x00000000
  570. #define SDRAM_WRDTR_WTR_MASK 0x0E000000
  571. #define SDRAM_WRDTR_WTR_0_DEG 0x06000000
  572. #define SDRAM_WRDTR_WTR_90_DEG_ADV 0x04000000
  573. #define SDRAM_WRDTR_WTR_180_DEG_ADV 0x02000000
  574. #define SDRAM_WRDTR_WTR_270_DEG_ADV 0x00000000
  575. /*
  576. * SDRAM SDTR1 Options
  577. */
  578. #define SDRAM_SDTR1_LDOF_MASK 0x80000000
  579. #define SDRAM_SDTR1_LDOF_1_CLK 0x00000000
  580. #define SDRAM_SDTR1_LDOF_2_CLK 0x80000000
  581. #define SDRAM_SDTR1_RTW_MASK 0x00F00000
  582. #define SDRAM_SDTR1_RTW_2_CLK 0x00200000
  583. #define SDRAM_SDTR1_RTW_3_CLK 0x00300000
  584. #define SDRAM_SDTR1_WTWO_MASK 0x000F0000
  585. #define SDRAM_SDTR1_WTWO_0_CLK 0x00000000
  586. #define SDRAM_SDTR1_WTWO_1_CLK 0x00010000
  587. #define SDRAM_SDTR1_RTRO_MASK 0x0000F000
  588. #define SDRAM_SDTR1_RTRO_1_CLK 0x00001000
  589. #define SDRAM_SDTR1_RTRO_2_CLK 0x00002000
  590. /*
  591. * SDRAM SDTR2 Options
  592. */
  593. #define SDRAM_SDTR2_RCD_MASK 0xF0000000
  594. #define SDRAM_SDTR2_RCD_1_CLK 0x10000000
  595. #define SDRAM_SDTR2_RCD_2_CLK 0x20000000
  596. #define SDRAM_SDTR2_RCD_3_CLK 0x30000000
  597. #define SDRAM_SDTR2_RCD_4_CLK 0x40000000
  598. #define SDRAM_SDTR2_RCD_5_CLK 0x50000000
  599. #define SDRAM_SDTR2_WTR_MASK 0x0F000000
  600. #define SDRAM_SDTR2_WTR_1_CLK 0x01000000
  601. #define SDRAM_SDTR2_WTR_2_CLK 0x02000000
  602. #define SDRAM_SDTR2_WTR_3_CLK 0x03000000
  603. #define SDRAM_SDTR2_WTR_4_CLK 0x04000000
  604. #define SDRAM_SDTR3_WTR_ENCODE(n) ((((u32)(n))&0xF)<<24)
  605. #define SDRAM_SDTR2_XSNR_MASK 0x00FF0000
  606. #define SDRAM_SDTR2_XSNR_8_CLK 0x00080000
  607. #define SDRAM_SDTR2_XSNR_16_CLK 0x00100000
  608. #define SDRAM_SDTR2_XSNR_32_CLK 0x00200000
  609. #define SDRAM_SDTR2_XSNR_64_CLK 0x00400000
  610. #define SDRAM_SDTR2_WPC_MASK 0x0000F000
  611. #define SDRAM_SDTR2_WPC_2_CLK 0x00002000
  612. #define SDRAM_SDTR2_WPC_3_CLK 0x00003000
  613. #define SDRAM_SDTR2_WPC_4_CLK 0x00004000
  614. #define SDRAM_SDTR2_WPC_5_CLK 0x00005000
  615. #define SDRAM_SDTR2_WPC_6_CLK 0x00006000
  616. #define SDRAM_SDTR3_WPC_ENCODE(n) ((((u32)(n))&0xF)<<12)
  617. #define SDRAM_SDTR2_RPC_MASK 0x00000F00
  618. #define SDRAM_SDTR2_RPC_2_CLK 0x00000200
  619. #define SDRAM_SDTR2_RPC_3_CLK 0x00000300
  620. #define SDRAM_SDTR2_RPC_4_CLK 0x00000400
  621. #define SDRAM_SDTR2_RP_MASK 0x000000F0
  622. #define SDRAM_SDTR2_RP_3_CLK 0x00000030
  623. #define SDRAM_SDTR2_RP_4_CLK 0x00000040
  624. #define SDRAM_SDTR2_RP_5_CLK 0x00000050
  625. #define SDRAM_SDTR2_RP_6_CLK 0x00000060
  626. #define SDRAM_SDTR2_RP_7_CLK 0x00000070
  627. #define SDRAM_SDTR2_RRD_MASK 0x0000000F
  628. #define SDRAM_SDTR2_RRD_2_CLK 0x00000002
  629. #define SDRAM_SDTR2_RRD_3_CLK 0x00000003
  630. /*
  631. * SDRAM SDTR3 Options
  632. */
  633. #define SDRAM_SDTR3_RAS_MASK 0x1F000000
  634. #define SDRAM_SDTR3_RAS_ENCODE(n) ((((u32)(n))&0x1F)<<24)
  635. #define SDRAM_SDTR3_RC_MASK 0x001F0000
  636. #define SDRAM_SDTR3_RC_ENCODE(n) ((((u32)(n))&0x1F)<<16)
  637. #define SDRAM_SDTR3_XCS_MASK 0x00001F00
  638. #define SDRAM_SDTR3_XCS 0x00000D00
  639. #define SDRAM_SDTR3_RFC_MASK 0x0000003F
  640. #define SDRAM_SDTR3_RFC_ENCODE(n) ((((u32)(n))&0x3F)<<0)
  641. /*
  642. * Memory Bank 0-1 configuration
  643. */
  644. #define SDRAM_BXCF_M_AM_MASK 0x00000F00 /* Addressing mode */
  645. #define SDRAM_BXCF_M_AM_0 0x00000000 /* Mode 0 */
  646. #define SDRAM_BXCF_M_AM_1 0x00000100 /* Mode 1 */
  647. #define SDRAM_BXCF_M_AM_2 0x00000200 /* Mode 2 */
  648. #define SDRAM_BXCF_M_AM_3 0x00000300 /* Mode 3 */
  649. #define SDRAM_BXCF_M_AM_4 0x00000400 /* Mode 4 */
  650. #define SDRAM_BXCF_M_AM_5 0x00000500 /* Mode 5 */
  651. #define SDRAM_BXCF_M_AM_6 0x00000600 /* Mode 6 */
  652. #define SDRAM_BXCF_M_AM_7 0x00000700 /* Mode 7 */
  653. #define SDRAM_BXCF_M_AM_8 0x00000800 /* Mode 8 */
  654. #define SDRAM_BXCF_M_AM_9 0x00000900 /* Mode 9 */
  655. #define SDRAM_BXCF_M_BE_MASK 0x00000001 /* Memory Bank Enable */
  656. #define SDRAM_BXCF_M_BE_DISABLE 0x00000000 /* Memory Bank Enable */
  657. #define SDRAM_BXCF_M_BE_ENABLE 0x00000001 /* Memory Bank Enable */
  658. #define SDRAM_RTSR_TRK1SM_MASK 0xC0000000 /* Tracking State Mach 1*/
  659. #define SDRAM_RTSR_TRK1SM_ATBASE 0x00000000 /* atbase state */
  660. #define SDRAM_RTSR_TRK1SM_MISSED 0x40000000 /* missed state */
  661. #define SDRAM_RTSR_TRK1SM_ATPLS1 0x80000000 /* atpls1 state */
  662. #define SDRAM_RTSR_TRK1SM_RESET 0xC0000000 /* reset state */
  663. #define SDR0_MFR_FIXD 0x10000000 /* Workaround for PCI/DMA */
  664. #endif /* CONFIG_SDRAM_PPC4xx_IBM_DDR2 */
  665. #if defined(CONFIG_SDRAM_PPC4xx_DENALI_DDR2)
  666. /*
  667. * SDRAM Controller
  668. */
  669. #define DDR0_00 0x00
  670. #define DDR0_00_INT_ACK_MASK 0x7F000000 /* Write only */
  671. #define DDR0_00_INT_ACK_ALL 0x7F000000
  672. #define DDR0_00_INT_ACK_ENCODE(n) ((((u32)(n))&0x7F)<<24)
  673. #define DDR0_00_INT_ACK_DECODE(n) ((((u32)(n))>>24)&0x7F)
  674. /* Status */
  675. #define DDR0_00_INT_STATUS_MASK 0x00FF0000 /* Read only */
  676. /* Bit0. A single access outside the defined PHYSICAL memory space detected. */
  677. #define DDR0_00_INT_STATUS_BIT0 0x00010000
  678. /* Bit1. Multiple accesses outside the defined PHYSICAL memory space detected. */
  679. #define DDR0_00_INT_STATUS_BIT1 0x00020000
  680. /* Bit2. Single correctable ECC event detected */
  681. #define DDR0_00_INT_STATUS_BIT2 0x00040000
  682. /* Bit3. Multiple correctable ECC events detected. */
  683. #define DDR0_00_INT_STATUS_BIT3 0x00080000
  684. /* Bit4. Single uncorrectable ECC event detected. */
  685. #define DDR0_00_INT_STATUS_BIT4 0x00100000
  686. /* Bit5. Multiple uncorrectable ECC events detected. */
  687. #define DDR0_00_INT_STATUS_BIT5 0x00200000
  688. /* Bit6. DRAM initialization complete. */
  689. #define DDR0_00_INT_STATUS_BIT6 0x00400000
  690. /* Bit7. Logical OR of all lower bits. */
  691. #define DDR0_00_INT_STATUS_BIT7 0x00800000
  692. #define DDR0_00_INT_STATUS_ENCODE(n) ((((u32)(n))&0xFF)<<16)
  693. #define DDR0_00_INT_STATUS_DECODE(n) ((((u32)(n))>>16)&0xFF)
  694. #define DDR0_00_DLL_INCREMENT_MASK 0x00007F00
  695. #define DDR0_00_DLL_INCREMENT_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  696. #define DDR0_00_DLL_INCREMENT_DECODE(n) ((((u32)(n))>>8)&0x7F)
  697. #define DDR0_00_DLL_START_POINT_MASK 0x0000007F
  698. #define DDR0_00_DLL_START_POINT_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  699. #define DDR0_00_DLL_START_POINT_DECODE(n) ((((u32)(n))>>0)&0x7F)
  700. #define DDR0_01 0x01
  701. #define DDR0_01_PLB0_DB_CS_LOWER_MASK 0x1F000000
  702. #define DDR0_01_PLB0_DB_CS_LOWER_ENCODE(n) ((((u32)(n))&0x1F)<<24)
  703. #define DDR0_01_PLB0_DB_CS_LOWER_DECODE(n) ((((u32)(n))>>24)&0x1F)
  704. #define DDR0_01_PLB0_DB_CS_UPPER_MASK 0x001F0000
  705. #define DDR0_01_PLB0_DB_CS_UPPER_ENCODE(n) ((((u32)(n))&0x1F)<<16)
  706. #define DDR0_01_PLB0_DB_CS_UPPER_DECODE(n) ((((u32)(n))>>16)&0x1F)
  707. #define DDR0_01_OUT_OF_RANGE_TYPE_MASK 0x00000700 /* Read only */
  708. #define DDR0_01_OUT_OF_RANGE_TYPE_ENCODE(n) ((((u32)(n))&0x7)<<8)
  709. #define DDR0_01_OUT_OF_RANGE_TYPE_DECODE(n) ((((u32)(n))>>8)&0x7)
  710. #define DDR0_01_INT_MASK_MASK 0x000000FF
  711. #define DDR0_01_INT_MASK_ENCODE(n) ((((u32)(n))&0xFF)<<0)
  712. #define DDR0_01_INT_MASK_DECODE(n) ((((u32)(n))>>0)&0xFF)
  713. #define DDR0_01_INT_MASK_ALL_ON 0x000000FF
  714. #define DDR0_01_INT_MASK_ALL_OFF 0x00000000
  715. #define DDR0_02 0x02
  716. #define DDR0_02_MAX_CS_REG_MASK 0x02000000 /* Read only */
  717. #define DDR0_02_MAX_CS_REG_ENCODE(n) ((((u32)(n))&0x2)<<24)
  718. #define DDR0_02_MAX_CS_REG_DECODE(n) ((((u32)(n))>>24)&0x2)
  719. #define DDR0_02_MAX_COL_REG_MASK 0x000F0000 /* Read only */
  720. #define DDR0_02_MAX_COL_REG_ENCODE(n) ((((u32)(n))&0xF)<<16)
  721. #define DDR0_02_MAX_COL_REG_DECODE(n) ((((u32)(n))>>16)&0xF)
  722. #define DDR0_02_MAX_ROW_REG_MASK 0x00000F00 /* Read only */
  723. #define DDR0_02_MAX_ROW_REG_ENCODE(n) ((((u32)(n))&0xF)<<8)
  724. #define DDR0_02_MAX_ROW_REG_DECODE(n) ((((u32)(n))>>8)&0xF)
  725. #define DDR0_02_START_MASK 0x00000001
  726. #define DDR0_02_START_ENCODE(n) ((((u32)(n))&0x1)<<0)
  727. #define DDR0_02_START_DECODE(n) ((((u32)(n))>>0)&0x1)
  728. #define DDR0_02_START_OFF 0x00000000
  729. #define DDR0_02_START_ON 0x00000001
  730. #define DDR0_03 0x03
  731. #define DDR0_03_BSTLEN_MASK 0x07000000
  732. #define DDR0_03_BSTLEN_ENCODE(n) ((((u32)(n))&0x7)<<24)
  733. #define DDR0_03_BSTLEN_DECODE(n) ((((u32)(n))>>24)&0x7)
  734. #define DDR0_03_CASLAT_MASK 0x00070000
  735. #define DDR0_03_CASLAT_ENCODE(n) ((((u32)(n))&0x7)<<16)
  736. #define DDR0_03_CASLAT_DECODE(n) ((((u32)(n))>>16)&0x7)
  737. #define DDR0_03_CASLAT_LIN_MASK 0x00000F00
  738. #define DDR0_03_CASLAT_LIN_ENCODE(n) ((((u32)(n))&0xF)<<8)
  739. #define DDR0_03_CASLAT_LIN_DECODE(n) ((((u32)(n))>>8)&0xF)
  740. #define DDR0_03_INITAREF_MASK 0x0000000F
  741. #define DDR0_03_INITAREF_ENCODE(n) ((((u32)(n))&0xF)<<0)
  742. #define DDR0_03_INITAREF_DECODE(n) ((((u32)(n))>>0)&0xF)
  743. #define DDR0_04 0x04
  744. #define DDR0_04_TRC_MASK 0x1F000000
  745. #define DDR0_04_TRC_ENCODE(n) ((((u32)(n))&0x1F)<<24)
  746. #define DDR0_04_TRC_DECODE(n) ((((u32)(n))>>24)&0x1F)
  747. #define DDR0_04_TRRD_MASK 0x00070000
  748. #define DDR0_04_TRRD_ENCODE(n) ((((u32)(n))&0x7)<<16)
  749. #define DDR0_04_TRRD_DECODE(n) ((((u32)(n))>>16)&0x7)
  750. #define DDR0_04_TRTP_MASK 0x00000700
  751. #define DDR0_04_TRTP_ENCODE(n) ((((u32)(n))&0x7)<<8)
  752. #define DDR0_04_TRTP_DECODE(n) ((((u32)(n))>>8)&0x7)
  753. #define DDR0_05 0x05
  754. #define DDR0_05_TMRD_MASK 0x1F000000
  755. #define DDR0_05_TMRD_ENCODE(n) ((((u32)(n))&0x1F)<<24)
  756. #define DDR0_05_TMRD_DECODE(n) ((((u32)(n))>>24)&0x1F)
  757. #define DDR0_05_TEMRS_MASK 0x00070000
  758. #define DDR0_05_TEMRS_ENCODE(n) ((((u32)(n))&0x7)<<16)
  759. #define DDR0_05_TEMRS_DECODE(n) ((((u32)(n))>>16)&0x7)
  760. #define DDR0_05_TRP_MASK 0x00000F00
  761. #define DDR0_05_TRP_ENCODE(n) ((((u32)(n))&0xF)<<8)
  762. #define DDR0_05_TRP_DECODE(n) ((((u32)(n))>>8)&0xF)
  763. #define DDR0_05_TRAS_MIN_MASK 0x000000FF
  764. #define DDR0_05_TRAS_MIN_ENCODE(n) ((((u32)(n))&0xFF)<<0)
  765. #define DDR0_05_TRAS_MIN_DECODE(n) ((((u32)(n))>>0)&0xFF)
  766. #define DDR0_06 0x06
  767. #define DDR0_06_WRITEINTERP_MASK 0x01000000
  768. #define DDR0_06_WRITEINTERP_ENCODE(n) ((((u32)(n))&0x1)<<24)
  769. #define DDR0_06_WRITEINTERP_DECODE(n) ((((u32)(n))>>24)&0x1)
  770. #define DDR0_06_TWTR_MASK 0x00070000
  771. #define DDR0_06_TWTR_ENCODE(n) ((((u32)(n))&0x7)<<16)
  772. #define DDR0_06_TWTR_DECODE(n) ((((u32)(n))>>16)&0x7)
  773. #define DDR0_06_TDLL_MASK 0x0000FF00
  774. #define DDR0_06_TDLL_ENCODE(n) ((((u32)(n))&0xFF)<<8)
  775. #define DDR0_06_TDLL_DECODE(n) ((((u32)(n))>>8)&0xFF)
  776. #define DDR0_06_TRFC_MASK 0x0000007F
  777. #define DDR0_06_TRFC_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  778. #define DDR0_06_TRFC_DECODE(n) ((((u32)(n))>>0)&0x7F)
  779. #define DDR0_07 0x07
  780. #define DDR0_07_NO_CMD_INIT_MASK 0x01000000
  781. #define DDR0_07_NO_CMD_INIT_ENCODE(n) ((((u32)(n))&0x1)<<24)
  782. #define DDR0_07_NO_CMD_INIT_DECODE(n) ((((u32)(n))>>24)&0x1)
  783. #define DDR0_07_TFAW_MASK 0x001F0000
  784. #define DDR0_07_TFAW_ENCODE(n) ((((u32)(n))&0x1F)<<16)
  785. #define DDR0_07_TFAW_DECODE(n) ((((u32)(n))>>16)&0x1F)
  786. #define DDR0_07_AUTO_REFRESH_MODE_MASK 0x00000100
  787. #define DDR0_07_AUTO_REFRESH_MODE_ENCODE(n) ((((u32)(n))&0x1)<<8)
  788. #define DDR0_07_AUTO_REFRESH_MODE_DECODE(n) ((((u32)(n))>>8)&0x1)
  789. #define DDR0_07_AREFRESH_MASK 0x00000001
  790. #define DDR0_07_AREFRESH_ENCODE(n) ((((u32)(n))&0x1)<<0)
  791. #define DDR0_07_AREFRESH_DECODE(n) ((((u32)(n))>>0)&0x1)
  792. #define DDR0_08 0x08
  793. #define DDR0_08_WRLAT_MASK 0x07000000
  794. #define DDR0_08_WRLAT_ENCODE(n) ((((u32)(n))&0x7)<<24)
  795. #define DDR0_08_WRLAT_DECODE(n) ((((u32)(n))>>24)&0x7)
  796. #define DDR0_08_TCPD_MASK 0x00FF0000
  797. #define DDR0_08_TCPD_ENCODE(n) ((((u32)(n))&0xFF)<<16)
  798. #define DDR0_08_TCPD_DECODE(n) ((((u32)(n))>>16)&0xFF)
  799. #define DDR0_08_DQS_N_EN_MASK 0x00000100
  800. #define DDR0_08_DQS_N_EN_ENCODE(n) ((((u32)(n))&0x1)<<8)
  801. #define DDR0_08_DQS_N_EN_DECODE(n) ((((u32)(n))>>8)&0x1)
  802. #define DDR0_08_DDRII_SDRAM_MODE_MASK 0x00000001
  803. #define DDR0_08_DDRII_ENCODE(n) ((((u32)(n))&0x1)<<0)
  804. #define DDR0_08_DDRII_DECODE(n) ((((u32)(n))>>0)&0x1)
  805. #define DDR0_09 0x09
  806. #define DDR0_09_OCD_ADJUST_PDN_CS_0_MASK 0x1F000000
  807. #define DDR0_09_OCD_ADJUST_PDN_CS_0_ENCODE(n) ((((u32)(n))&0x1F)<<24)
  808. #define DDR0_09_OCD_ADJUST_PDN_CS_0_DECODE(n) ((((u32)(n))>>24)&0x1F)
  809. #define DDR0_09_RTT_0_MASK 0x00030000
  810. #define DDR0_09_RTT_0_ENCODE(n) ((((u32)(n))&0x3)<<16)
  811. #define DDR0_09_RTT_0_DECODE(n) ((((u32)(n))>>16)&0x3)
  812. #define DDR0_09_WR_DQS_SHIFT_BYPASS_MASK 0x00007F00
  813. #define DDR0_09_WR_DQS_SHIFT_BYPASS_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  814. #define DDR0_09_WR_DQS_SHIFT_BYPASS_DECODE(n) ((((u32)(n))>>8)&0x7F)
  815. #define DDR0_09_WR_DQS_SHIFT_MASK 0x0000007F
  816. #define DDR0_09_WR_DQS_SHIFT_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  817. #define DDR0_09_WR_DQS_SHIFT_DECODE(n) ((((u32)(n))>>0)&0x7F)
  818. #define DDR0_10 0x0A
  819. #define DDR0_10_WRITE_MODEREG_MASK 0x00010000 /* Write only */
  820. #define DDR0_10_WRITE_MODEREG_ENCODE(n) ((((u32)(n))&0x1)<<16)
  821. #define DDR0_10_WRITE_MODEREG_DECODE(n) ((((u32)(n))>>16)&0x1)
  822. #define DDR0_10_CS_MAP_MASK 0x00000300
  823. #define DDR0_10_CS_MAP_NO_MEM 0x00000000
  824. #define DDR0_10_CS_MAP_RANK0_INSTALLED 0x00000100
  825. #define DDR0_10_CS_MAP_RANK1_INSTALLED 0x00000200
  826. #define DDR0_10_CS_MAP_ENCODE(n) ((((u32)(n))&0x3)<<8)
  827. #define DDR0_10_CS_MAP_DECODE(n) ((((u32)(n))>>8)&0x3)
  828. #define DDR0_10_OCD_ADJUST_PUP_CS_0_MASK 0x0000001F
  829. #define DDR0_10_OCD_ADJUST_PUP_CS_0_ENCODE(n) ((((u32)(n))&0x1F)<<0)
  830. #define DDR0_10_OCD_ADJUST_PUP_CS_0_DECODE(n) ((((u32)(n))>>0)&0x1F)
  831. #define DDR0_11 0x0B
  832. #define DDR0_11_SREFRESH_MASK 0x01000000
  833. #define DDR0_11_SREFRESH_ENCODE(n) ((((u32)(n))&0x1)<<24)
  834. #define DDR0_11_SREFRESH_DECODE(n) ((((u32)(n))>>24)&0x1F)
  835. #define DDR0_11_TXSNR_MASK 0x00FF0000
  836. #define DDR0_11_TXSNR_ENCODE(n) ((((u32)(n))&0xFF)<<16)
  837. #define DDR0_11_TXSNR_DECODE(n) ((((u32)(n))>>16)&0xFF)
  838. #define DDR0_11_TXSR_MASK 0x0000FF00
  839. #define DDR0_11_TXSR_ENCODE(n) ((((u32)(n))&0xFF)<<8)
  840. #define DDR0_11_TXSR_DECODE(n) ((((u32)(n))>>8)&0xFF)
  841. #define DDR0_12 0x0C
  842. #define DDR0_12_TCKE_MASK 0x0000007
  843. #define DDR0_12_TCKE_ENCODE(n) ((((u32)(n))&0x7)<<0)
  844. #define DDR0_12_TCKE_DECODE(n) ((((u32)(n))>>0)&0x7)
  845. #define DDR0_14 0x0E
  846. #define DDR0_14_DLL_BYPASS_MODE_MASK 0x01000000
  847. #define DDR0_14_DLL_BYPASS_MODE_ENCODE(n) ((((u32)(n))&0x1)<<24)
  848. #define DDR0_14_DLL_BYPASS_MODE_DECODE(n) ((((u32)(n))>>24)&0x1)
  849. #define DDR0_14_REDUC_MASK 0x00010000
  850. #define DDR0_14_REDUC_64BITS 0x00000000
  851. #define DDR0_14_REDUC_32BITS 0x00010000
  852. #define DDR0_14_REDUC_ENCODE(n) ((((u32)(n))&0x1)<<16)
  853. #define DDR0_14_REDUC_DECODE(n) ((((u32)(n))>>16)&0x1)
  854. #define DDR0_14_REG_DIMM_ENABLE_MASK 0x00000100
  855. #define DDR0_14_REG_DIMM_ENABLE_ENCODE(n) ((((u32)(n))&0x1)<<8)
  856. #define DDR0_14_REG_DIMM_ENABLE_DECODE(n) ((((u32)(n))>>8)&0x1)
  857. #define DDR0_17 0x11
  858. #define DDR0_17_DLL_DQS_DELAY_0_MASK 0x7F000000
  859. #define DDR0_17_DLL_DQS_DELAY_0_ENCODE(n) ((((u32)(n))&0x7F)<<24)
  860. #define DDR0_17_DLL_DQS_DELAY_0_DECODE(n) ((((u32)(n))>>24)&0x7F)
  861. #define DDR0_17_DLLLOCKREG_MASK 0x00010000 /* Read only */
  862. #define DDR0_17_DLLLOCKREG_LOCKED 0x00010000
  863. #define DDR0_17_DLLLOCKREG_UNLOCKED 0x00000000
  864. #define DDR0_17_DLLLOCKREG_ENCODE(n) ((((u32)(n))&0x1)<<16)
  865. #define DDR0_17_DLLLOCKREG_DECODE(n) ((((u32)(n))>>16)&0x1)
  866. #define DDR0_17_DLL_LOCK_MASK 0x00007F00 /* Read only */
  867. #define DDR0_17_DLL_LOCK_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  868. #define DDR0_17_DLL_LOCK_DECODE(n) ((((u32)(n))>>8)&0x7F)
  869. #define DDR0_18 0x12
  870. #define DDR0_18_DLL_DQS_DELAY_X_MASK 0x7F7F7F7F
  871. #define DDR0_18_DLL_DQS_DELAY_4_MASK 0x7F000000
  872. #define DDR0_18_DLL_DQS_DELAY_4_ENCODE(n) ((((u32)(n))&0x7F)<<24)
  873. #define DDR0_18_DLL_DQS_DELAY_4_DECODE(n) ((((u32)(n))>>24)&0x7F)
  874. #define DDR0_18_DLL_DQS_DELAY_3_MASK 0x007F0000
  875. #define DDR0_18_DLL_DQS_DELAY_3_ENCODE(n) ((((u32)(n))&0x7F)<<16)
  876. #define DDR0_18_DLL_DQS_DELAY_3_DECODE(n) ((((u32)(n))>>16)&0x7F)
  877. #define DDR0_18_DLL_DQS_DELAY_2_MASK 0x00007F00
  878. #define DDR0_18_DLL_DQS_DELAY_2_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  879. #define DDR0_18_DLL_DQS_DELAY_2_DECODE(n) ((((u32)(n))>>8)&0x7F)
  880. #define DDR0_18_DLL_DQS_DELAY_1_MASK 0x0000007F
  881. #define DDR0_18_DLL_DQS_DELAY_1_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  882. #define DDR0_18_DLL_DQS_DELAY_1_DECODE(n) ((((u32)(n))>>0)&0x7F)
  883. #define DDR0_19 0x13
  884. #define DDR0_19_DLL_DQS_DELAY_X_MASK 0x7F7F7F7F
  885. #define DDR0_19_DLL_DQS_DELAY_8_MASK 0x7F000000
  886. #define DDR0_19_DLL_DQS_DELAY_8_ENCODE(n) ((((u32)(n))&0x7F)<<24)
  887. #define DDR0_19_DLL_DQS_DELAY_8_DECODE(n) ((((u32)(n))>>24)&0x7F)
  888. #define DDR0_19_DLL_DQS_DELAY_7_MASK 0x007F0000
  889. #define DDR0_19_DLL_DQS_DELAY_7_ENCODE(n) ((((u32)(n))&0x7F)<<16)
  890. #define DDR0_19_DLL_DQS_DELAY_7_DECODE(n) ((((u32)(n))>>16)&0x7F)
  891. #define DDR0_19_DLL_DQS_DELAY_6_MASK 0x00007F00
  892. #define DDR0_19_DLL_DQS_DELAY_6_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  893. #define DDR0_19_DLL_DQS_DELAY_6_DECODE(n) ((((u32)(n))>>8)&0x7F)
  894. #define DDR0_19_DLL_DQS_DELAY_5_MASK 0x0000007F
  895. #define DDR0_19_DLL_DQS_DELAY_5_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  896. #define DDR0_19_DLL_DQS_DELAY_5_DECODE(n) ((((u32)(n))>>0)&0x7F)
  897. #define DDR0_20 0x14
  898. #define DDR0_20_DLL_DQS_BYPASS_3_MASK 0x7F000000
  899. #define DDR0_20_DLL_DQS_BYPASS_3_ENCODE(n) ((((u32)(n))&0x7F)<<24)
  900. #define DDR0_20_DLL_DQS_BYPASS_3_DECODE(n) ((((u32)(n))>>24)&0x7F)
  901. #define DDR0_20_DLL_DQS_BYPASS_2_MASK 0x007F0000
  902. #define DDR0_20_DLL_DQS_BYPASS_2_ENCODE(n) ((((u32)(n))&0x7F)<<16)
  903. #define DDR0_20_DLL_DQS_BYPASS_2_DECODE(n) ((((u32)(n))>>16)&0x7F)
  904. #define DDR0_20_DLL_DQS_BYPASS_1_MASK 0x00007F00
  905. #define DDR0_20_DLL_DQS_BYPASS_1_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  906. #define DDR0_20_DLL_DQS_BYPASS_1_DECODE(n) ((((u32)(n))>>8)&0x7F)
  907. #define DDR0_20_DLL_DQS_BYPASS_0_MASK 0x0000007F
  908. #define DDR0_20_DLL_DQS_BYPASS_0_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  909. #define DDR0_20_DLL_DQS_BYPASS_0_DECODE(n) ((((u32)(n))>>0)&0x7F)
  910. #define DDR0_21 0x15
  911. #define DDR0_21_DLL_DQS_BYPASS_7_MASK 0x7F000000
  912. #define DDR0_21_DLL_DQS_BYPASS_7_ENCODE(n) ((((u32)(n))&0x7F)<<24)
  913. #define DDR0_21_DLL_DQS_BYPASS_7_DECODE(n) ((((u32)(n))>>24)&0x7F)
  914. #define DDR0_21_DLL_DQS_BYPASS_6_MASK 0x007F0000
  915. #define DDR0_21_DLL_DQS_BYPASS_6_ENCODE(n) ((((u32)(n))&0x7F)<<16)
  916. #define DDR0_21_DLL_DQS_BYPASS_6_DECODE(n) ((((u32)(n))>>16)&0x7F)
  917. #define DDR0_21_DLL_DQS_BYPASS_5_MASK 0x00007F00
  918. #define DDR0_21_DLL_DQS_BYPASS_5_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  919. #define DDR0_21_DLL_DQS_BYPASS_5_DECODE(n) ((((u32)(n))>>8)&0x7F)
  920. #define DDR0_21_DLL_DQS_BYPASS_4_MASK 0x0000007F
  921. #define DDR0_21_DLL_DQS_BYPASS_4_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  922. #define DDR0_21_DLL_DQS_BYPASS_4_DECODE(n) ((((u32)(n))>>0)&0x7F)
  923. #define DDR0_22 0x16
  924. #define DDR0_22_CTRL_RAW_MASK 0x03000000
  925. #define DDR0_22_CTRL_RAW_ECC_DISABLE 0x00000000
  926. #define DDR0_22_CTRL_RAW_ECC_CHECK_ONLY 0x01000000
  927. #define DDR0_22_CTRL_RAW_NO_ECC_RAM 0x02000000
  928. #define DDR0_22_CTRL_RAW_ECC_ENABLE 0x03000000
  929. #define DDR0_22_CTRL_RAW_ENCODE(n) ((((u32)(n))&0x3)<<24)
  930. #define DDR0_22_CTRL_RAW_DECODE(n) ((((u32)(n))>>24)&0x3)
  931. #define DDR0_22_DQS_OUT_SHIFT_BYPASS_MASK 0x007F0000
  932. #define DDR0_22_DQS_OUT_SHIFT_BYPASS_ENCODE(n) ((((u32)(n))&0x7F)<<16)
  933. #define DDR0_22_DQS_OUT_SHIFT_BYPASS_DECODE(n) ((((u32)(n))>>16)&0x7F)
  934. #define DDR0_22_DQS_OUT_SHIFT_MASK 0x00007F00
  935. #define DDR0_22_DQS_OUT_SHIFT_ENCODE(n) ((((u32)(n))&0x7F)<<8)
  936. #define DDR0_22_DQS_OUT_SHIFT_DECODE(n) ((((u32)(n))>>8)&0x7F)
  937. #define DDR0_22_DLL_DQS_BYPASS_8_MASK 0x0000007F
  938. #define DDR0_22_DLL_DQS_BYPASS_8_ENCODE(n) ((((u32)(n))&0x7F)<<0)
  939. #define DDR0_22_DLL_DQS_BYPASS_8_DECODE(n) ((((u32)(n))>>0)&0x7F)
  940. #define DDR0_23 0x17
  941. #define DDR0_23_ODT_RD_MAP_CS0_MASK 0x03000000
  942. #define DDR0_23_ODT_RD_MAP_CS0_ENCODE(n) ((((u32)(n))&0x3)<<24)
  943. #define DDR0_23_ODT_RD_MAP_CS0_DECODE(n) ((((u32)(n))>>24)&0x3)
  944. #define DDR0_23_ECC_C_SYND_MASK 0x00FF0000 /* Read only */
  945. #define DDR0_23_ECC_C_SYND_ENCODE(n) ((((u32)(n))&0xFF)<<16)
  946. #define DDR0_23_ECC_C_SYND_DECODE(n) ((((u32)(n))>>16)&0xFF)
  947. #define DDR0_23_ECC_U_SYND_MASK 0x0000FF00 /* Read only */
  948. #define DDR0_23_ECC_U_SYND_ENCODE(n) ((((u32)(n))&0xFF)<<8)
  949. #define DDR0_23_ECC_U_SYND_DECODE(n) ((((u32)(n))>>8)&0xFF)
  950. #define DDR0_23_FWC_MASK 0x00000001 /* Write only */
  951. #define DDR0_23_FWC_ENCODE(n) ((((u32)(n))&0x1)<<0)
  952. #define DDR0_23_FWC_DECODE(n) ((((u32)(n))>>0)&0x1)
  953. #define DDR0_24 0x18
  954. #define DDR0_24_RTT_PAD_TERMINATION_MASK 0x03000000
  955. #define DDR0_24_RTT_PAD_TERMINATION_ENCODE(n) ((((u32)(n))&0x3)<<24)
  956. #define DDR0_24_RTT_PAD_TERMINATION_DECODE(n) ((((u32)(n))>>24)&0x3)
  957. #define DDR0_24_ODT_WR_MAP_CS1_MASK 0x00030000
  958. #define DDR0_24_ODT_WR_MAP_CS1_ENCODE(n) ((((u32)(n))&0x3)<<16)
  959. #define DDR0_24_ODT_WR_MAP_CS1_DECODE(n) ((((u32)(n))>>16)&0x3)
  960. #define DDR0_24_ODT_RD_MAP_CS1_MASK 0x00000300
  961. #define DDR0_24_ODT_RD_MAP_CS1_ENCODE(n) ((((u32)(n))&0x3)<<8)
  962. #define DDR0_24_ODT_RD_MAP_CS1_DECODE(n) ((((u32)(n))>>8)&0x3)
  963. #define DDR0_24_ODT_WR_MAP_CS0_MASK 0x00000003
  964. #define DDR0_24_ODT_WR_MAP_CS0_ENCODE(n) ((((u32)(n))&0x3)<<0)
  965. #define DDR0_24_ODT_WR_MAP_CS0_DECODE(n) ((((u32)(n))>>0)&0x3)
  966. #define DDR0_25 0x19
  967. #define DDR0_25_VERSION_MASK 0xFFFF0000 /* Read only */
  968. #define DDR0_25_VERSION_ENCODE(n) ((((u32)(n))&0xFFFF)<<16)
  969. #define DDR0_25_VERSION_DECODE(n) ((((u32)(n))>>16)&0xFFFF)
  970. #define DDR0_25_OUT_OF_RANGE_LENGTH_MASK 0x000003FF /* Read only */
  971. #define DDR0_25_OUT_OF_RANGE_LENGTH_ENCODE(n) ((((u32)(n))&0x3FF)<<0)
  972. #define DDR0_25_OUT_OF_RANGE_LENGTH_DECODE(n) ((((u32)(n))>>0)&0x3FF)
  973. #define DDR0_26 0x1A
  974. #define DDR0_26_TRAS_MAX_MASK 0xFFFF0000
  975. #define DDR0_26_TRAS_MAX_ENCODE(n) ((((u32)(n))&0xFFFF)<<16)
  976. #define DDR0_26_TRAS_MAX_DECODE(n) ((((u32)(n))>>16)&0xFFFF)
  977. #define DDR0_26_TREF_MASK 0x00003FFF
  978. #define DDR0_26_TREF_ENCODE(n) ((((u32)(n))&0x3FFF)<<0)
  979. #define DDR0_26_TREF_DECODE(n) ((((u32)(n))>>0)&0x3FFF)
  980. #define DDR0_27 0x1B
  981. #define DDR0_27_EMRS_DATA_MASK 0x3FFF0000
  982. #define DDR0_27_EMRS_DATA_ENCODE(n) ((((u32)(n))&0x3FFF)<<16)
  983. #define DDR0_27_EMRS_DATA_DECODE(n) ((((u32)(n))>>16)&0x3FFF)
  984. #define DDR0_27_TINIT_MASK 0x0000FFFF
  985. #define DDR0_27_TINIT_ENCODE(n) ((((u32)(n))&0xFFFF)<<0)
  986. #define DDR0_27_TINIT_DECODE(n) ((((u32)(n))>>0)&0xFFFF)
  987. #define DDR0_28 0x1C
  988. #define DDR0_28_EMRS3_DATA_MASK 0x3FFF0000
  989. #define DDR0_28_EMRS3_DATA_ENCODE(n) ((((u32)(n))&0x3FFF)<<16)
  990. #define DDR0_28_EMRS3_DATA_DECODE(n) ((((u32)(n))>>16)&0x3FFF)
  991. #define DDR0_28_EMRS2_DATA_MASK 0x00003FFF
  992. #define DDR0_28_EMRS2_DATA_ENCODE(n) ((((u32)(n))&0x3FFF)<<0)
  993. #define DDR0_28_EMRS2_DATA_DECODE(n) ((((u32)(n))>>0)&0x3FFF)
  994. #define DDR0_31 0x1F
  995. #define DDR0_31_XOR_CHECK_BITS_MASK 0x0000FFFF
  996. #define DDR0_31_XOR_CHECK_BITS_ENCODE(n) ((((u32)(n))&0xFFFF)<<0)
  997. #define DDR0_31_XOR_CHECK_BITS_DECODE(n) ((((u32)(n))>>0)&0xFFFF)
  998. #define DDR0_32 0x20
  999. #define DDR0_32_OUT_OF_RANGE_ADDR_MASK 0xFFFFFFFF /* Read only */
  1000. #define DDR0_32_OUT_OF_RANGE_ADDR_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1001. #define DDR0_32_OUT_OF_RANGE_ADDR_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1002. #define DDR0_33 0x21
  1003. #define DDR0_33_OUT_OF_RANGE_ADDR_MASK 0x00000001 /* Read only */
  1004. #define DDR0_33_OUT_OF_RANGE_ADDR_ENCODE(n) ((((u32)(n))&0x1)<<0)
  1005. #define DDR0_33_OUT_OF_RANGE_ADDR_DECODE(n) ((((u32)(n))>>0)&0x1)
  1006. #define DDR0_34 0x22
  1007. #define DDR0_34_ECC_U_ADDR_MASK 0xFFFFFFFF /* Read only */
  1008. #define DDR0_34_ECC_U_ADDR_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1009. #define DDR0_34_ECC_U_ADDR_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1010. #define DDR0_35 0x23
  1011. #define DDR0_35_ECC_U_ADDR_MASK 0x00000001 /* Read only */
  1012. #define DDR0_35_ECC_U_ADDR_ENCODE(n) ((((u32)(n))&0x1)<<0)
  1013. #define DDR0_35_ECC_U_ADDR_DECODE(n) ((((u32)(n))>>0)&0x1)
  1014. #define DDR0_36 0x24
  1015. #define DDR0_36_ECC_U_DATA_MASK 0xFFFFFFFF /* Read only */
  1016. #define DDR0_36_ECC_U_DATA_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1017. #define DDR0_36_ECC_U_DATA_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1018. #define DDR0_37 0x25
  1019. #define DDR0_37_ECC_U_DATA_MASK 0xFFFFFFFF /* Read only */
  1020. #define DDR0_37_ECC_U_DATA_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1021. #define DDR0_37_ECC_U_DATA_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1022. #define DDR0_38 0x26
  1023. #define DDR0_38_ECC_C_ADDR_MASK 0xFFFFFFFF /* Read only */
  1024. #define DDR0_38_ECC_C_ADDR_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1025. #define DDR0_38_ECC_C_ADDR_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1026. #define DDR0_39 0x27
  1027. #define DDR0_39_ECC_C_ADDR_MASK 0x00000001 /* Read only */
  1028. #define DDR0_39_ECC_C_ADDR_ENCODE(n) ((((u32)(n))&0x1)<<0)
  1029. #define DDR0_39_ECC_C_ADDR_DECODE(n) ((((u32)(n))>>0)&0x1)
  1030. #define DDR0_40 0x28
  1031. #define DDR0_40_ECC_C_DATA_MASK 0xFFFFFFFF /* Read only */
  1032. #define DDR0_40_ECC_C_DATA_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1033. #define DDR0_40_ECC_C_DATA_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1034. #define DDR0_41 0x29
  1035. #define DDR0_41_ECC_C_DATA_MASK 0xFFFFFFFF /* Read only */
  1036. #define DDR0_41_ECC_C_DATA_ENCODE(n) ((((u32)(n))&0xFFFFFFFF)<<0)
  1037. #define DDR0_41_ECC_C_DATA_DECODE(n) ((((u32)(n))>>0)&0xFFFFFFFF)
  1038. #define DDR0_42 0x2A
  1039. #define DDR0_42_ADDR_PINS_MASK 0x07000000
  1040. #define DDR0_42_ADDR_PINS_ENCODE(n) ((((u32)(n))&0x7)<<24)
  1041. #define DDR0_42_ADDR_PINS_DECODE(n) ((((u32)(n))>>24)&0x7)
  1042. #define DDR0_42_CASLAT_LIN_GATE_MASK 0x0000000F
  1043. #define DDR0_42_CASLAT_LIN_GATE_ENCODE(n) ((((u32)(n))&0xF)<<0)
  1044. #define DDR0_42_CASLAT_LIN_GATE_DECODE(n) ((((u32)(n))>>0)&0xF)
  1045. #define DDR0_43 0x2B
  1046. #define DDR0_43_TWR_MASK 0x07000000
  1047. #define DDR0_43_TWR_ENCODE(n) ((((u32)(n))&0x7)<<24)
  1048. #define DDR0_43_TWR_DECODE(n) ((((u32)(n))>>24)&0x7)
  1049. #define DDR0_43_APREBIT_MASK 0x000F0000
  1050. #define DDR0_43_APREBIT_ENCODE(n) ((((u32)(n))&0xF)<<16)
  1051. #define DDR0_43_APREBIT_DECODE(n) ((((u32)(n))>>16)&0xF)
  1052. #define DDR0_43_COLUMN_SIZE_MASK 0x00000700
  1053. #define DDR0_43_COLUMN_SIZE_ENCODE(n) ((((u32)(n))&0x7)<<8)
  1054. #define DDR0_43_COLUMN_SIZE_DECODE(n) ((((u32)(n))>>8)&0x7)
  1055. #define DDR0_43_EIGHT_BANK_MODE_MASK 0x00000001
  1056. #define DDR0_43_EIGHT_BANK_MODE_8_BANKS 0x00000001
  1057. #define DDR0_43_EIGHT_BANK_MODE_4_BANKS 0x00000000
  1058. #define DDR0_43_EIGHT_BANK_MODE_ENCODE(n) ((((u32)(n))&0x1)<<0)
  1059. #define DDR0_43_EIGHT_BANK_MODE_DECODE(n) ((((u32)(n))>>0)&0x1)
  1060. #define DDR0_44 0x2C
  1061. #define DDR0_44_TRCD_MASK 0x000000FF
  1062. #define DDR0_44_TRCD_ENCODE(n) ((((u32)(n))&0xFF)<<0)
  1063. #define DDR0_44_TRCD_DECODE(n) ((((u32)(n))>>0)&0xFF)
  1064. #endif /* CONFIG_SDRAM_PPC4xx_DENALI_DDR2 */
  1065. #endif /* _PPC4xx_SDRAM_H_ */