sdram.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. /*
  2. * (C) Copyright 2006
  3. * Sylvie Gohl, AMCC/IBM, gohl.sylvie@fr.ibm.com
  4. * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com
  5. * Thierry Roman, AMCC/IBM, thierry_roman@fr.ibm.com
  6. * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com
  7. * Robert Snyder, AMCC/IBM, rob.snyder@fr.ibm.com
  8. *
  9. * (C) Copyright 2007
  10. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. /* define DEBUG for debugging output (obviously ;-)) */
  28. #if 0
  29. #define DEBUG
  30. #endif
  31. #include <common.h>
  32. #include <asm/processor.h>
  33. #include <asm/mmu.h>
  34. #include <asm/io.h>
  35. #include <ppc440.h>
  36. /*
  37. * This DDR2 setup code can dynamically setup the TLB entries for the DDR2 memory
  38. * region. Right now the cache should still be disabled in U-Boot because of the
  39. * EMAC driver, that need it's buffer descriptor to be located in non cached
  40. * memory.
  41. *
  42. * If at some time this restriction doesn't apply anymore, just define
  43. * CFG_ENABLE_SDRAM_CACHE in the board config file and this code should setup
  44. * everything correctly.
  45. */
  46. #ifdef CFG_ENABLE_SDRAM_CACHE
  47. #define MY_TLB_WORD2_I_ENABLE 0 /* enable caching on SDRAM */
  48. #else
  49. #define MY_TLB_WORD2_I_ENABLE TLB_WORD2_I_ENABLE /* disable caching on SDRAM */
  50. #endif
  51. /*-----------------------------------------------------------------------------+
  52. * Prototypes
  53. *-----------------------------------------------------------------------------*/
  54. extern int denali_wait_for_dlllock(void);
  55. extern void denali_core_search_data_eye(void);
  56. extern void dcbz_area(u32 start_address, u32 num_bytes);
  57. extern void dflush(void);
  58. static u32 is_ecc_enabled(void)
  59. {
  60. u32 val;
  61. mfsdram(DDR0_22, val);
  62. val &= DDR0_22_CTRL_RAW_MASK;
  63. if (val)
  64. return 1;
  65. else
  66. return 0;
  67. }
  68. void board_add_ram_info(int use_default)
  69. {
  70. PPC4xx_SYS_INFO board_cfg;
  71. u32 val;
  72. if (is_ecc_enabled())
  73. puts(" (ECC");
  74. else
  75. puts(" (ECC not");
  76. get_sys_info(&board_cfg);
  77. printf(" enabled, %d MHz", (board_cfg.freqPLB * 2) / 1000000);
  78. mfsdram(DDR0_03, val);
  79. val = DDR0_03_CASLAT_DECODE(val);
  80. printf(", CL%d)", val);
  81. }
  82. #ifdef CONFIG_DDR_ECC
  83. static void wait_ddr_idle(void)
  84. {
  85. /*
  86. * Controller idle status cannot be determined for Denali
  87. * DDR2 code. Just return here.
  88. */
  89. }
  90. static void blank_string(int size)
  91. {
  92. int i;
  93. for (i=0; i<size; i++)
  94. putc('\b');
  95. for (i=0; i<size; i++)
  96. putc(' ');
  97. for (i=0; i<size; i++)
  98. putc('\b');
  99. }
  100. static void program_ecc(u32 start_address,
  101. u32 num_bytes,
  102. u32 tlb_word2_i_value)
  103. {
  104. u32 current_address;
  105. u32 end_address;
  106. u32 address_increment;
  107. u32 val;
  108. char str[] = "ECC generation -";
  109. char slash[] = "\\|/-\\|/-";
  110. int loop = 0;
  111. int loopi = 0;
  112. current_address = start_address;
  113. sync();
  114. eieio();
  115. wait_ddr_idle();
  116. if (tlb_word2_i_value == TLB_WORD2_I_ENABLE) {
  117. /* ECC bit set method for non-cached memory */
  118. address_increment = 4;
  119. end_address = current_address + num_bytes;
  120. puts(str);
  121. while (current_address < end_address) {
  122. *((u32 *)current_address) = 0x00000000;
  123. current_address += address_increment;
  124. if ((loop++ % (2 << 20)) == 0) {
  125. putc('\b');
  126. putc(slash[loopi++ % 8]);
  127. }
  128. }
  129. blank_string(strlen(str));
  130. } else {
  131. /* ECC bit set method for cached memory */
  132. #if 0 /* test-only: will remove this define later, when ECC problems are solved! */
  133. /*
  134. * Some boards (like lwmon5) need to preserve the memory
  135. * content upon ECC generation (for the log-buffer).
  136. * Therefore we don't fill the memory with a pattern or
  137. * just zero it, but write the same values back that are
  138. * already in the memory cells.
  139. */
  140. address_increment = CFG_CACHELINE_SIZE;
  141. end_address = current_address + num_bytes;
  142. current_address = start_address;
  143. while (current_address < end_address) {
  144. /*
  145. * TODO: Th following sequence doesn't work correctly.
  146. * Just invalidating and flushing the cache doesn't
  147. * seem to trigger the re-write of the memory.
  148. */
  149. ppcDcbi(current_address);
  150. ppcDcbf(current_address);
  151. current_address += CFG_CACHELINE_SIZE;
  152. }
  153. #else
  154. dcbz_area(start_address, num_bytes);
  155. dflush();
  156. #endif
  157. }
  158. sync();
  159. eieio();
  160. wait_ddr_idle();
  161. /* Clear error status */
  162. mfsdram(DDR0_00, val);
  163. mtsdram(DDR0_00, val | DDR0_00_INT_ACK_ALL);
  164. /* Set 'int_mask' parameter to functionnal value */
  165. mfsdram(DDR0_01, val);
  166. mtsdram(DDR0_01, ((val &~ DDR0_01_INT_MASK_MASK) | DDR0_01_INT_MASK_ALL_OFF));
  167. sync();
  168. eieio();
  169. wait_ddr_idle();
  170. }
  171. #endif
  172. /*************************************************************************
  173. *
  174. * initdram -- 440EPx's DDR controller is a DENALI Core
  175. *
  176. ************************************************************************/
  177. long int initdram (int board_type)
  178. {
  179. #if 0 /* test-only: will remove this define later, when ECC problems are solved! */
  180. /* CL=3 */
  181. mtsdram(DDR0_02, 0x00000000);
  182. mtsdram(DDR0_00, 0x0000190A);
  183. mtsdram(DDR0_01, 0x01000000);
  184. mtsdram(DDR0_03, 0x02030603); /* A suitable burst length was taken. CAS is right for our board */
  185. mtsdram(DDR0_04, 0x0A030300);
  186. mtsdram(DDR0_05, 0x02020308);
  187. mtsdram(DDR0_06, 0x0103C812);
  188. mtsdram(DDR0_07, 0x00090100);
  189. mtsdram(DDR0_08, 0x02c80001);
  190. mtsdram(DDR0_09, 0x00011D5F);
  191. mtsdram(DDR0_10, 0x00000300);
  192. mtsdram(DDR0_11, 0x000CC800);
  193. mtsdram(DDR0_12, 0x00000003);
  194. mtsdram(DDR0_14, 0x00000000);
  195. mtsdram(DDR0_17, 0x1e000000);
  196. mtsdram(DDR0_18, 0x1e1e1e1e);
  197. mtsdram(DDR0_19, 0x1e1e1e1e);
  198. mtsdram(DDR0_20, 0x0B0B0B0B);
  199. mtsdram(DDR0_21, 0x0B0B0B0B);
  200. #ifdef CONFIG_DDR_ECC
  201. mtsdram(DDR0_22, 0x00267F0B | DDR0_22_CTRL_RAW_ECC_ENABLE); /* enable ECC */
  202. #else
  203. mtsdram(DDR0_22, 0x00267F0B);
  204. #endif
  205. mtsdram(DDR0_23, 0x01000000);
  206. mtsdram(DDR0_24, 0x01010001);
  207. mtsdram(DDR0_26, 0x2D93028A);
  208. mtsdram(DDR0_27, 0x0784682B);
  209. mtsdram(DDR0_28, 0x00000080);
  210. mtsdram(DDR0_31, 0x00000000);
  211. mtsdram(DDR0_42, 0x01000006);
  212. mtsdram(DDR0_43, 0x030A0200);
  213. mtsdram(DDR0_44, 0x00000003);
  214. mtsdram(DDR0_02, 0x00000001); /* Activate the denali core */
  215. #else
  216. /* CL=4 */
  217. mtsdram(DDR0_02, 0x00000000);
  218. mtsdram(DDR0_00, 0x0000190A);
  219. mtsdram(DDR0_01, 0x01000000);
  220. mtsdram(DDR0_03, 0x02040803); /* A suitable burst length was taken. CAS is right for our board */
  221. mtsdram(DDR0_04, 0x0B030300);
  222. mtsdram(DDR0_05, 0x02020308);
  223. mtsdram(DDR0_06, 0x0003C812);
  224. mtsdram(DDR0_07, 0x00090100);
  225. mtsdram(DDR0_08, 0x03c80001);
  226. mtsdram(DDR0_09, 0x00011D5F);
  227. mtsdram(DDR0_10, 0x00000300);
  228. mtsdram(DDR0_11, 0x000CC800);
  229. mtsdram(DDR0_12, 0x00000003);
  230. mtsdram(DDR0_14, 0x00000000);
  231. mtsdram(DDR0_17, 0x1e000000);
  232. mtsdram(DDR0_18, 0x1e1e1e1e);
  233. mtsdram(DDR0_19, 0x1e1e1e1e);
  234. mtsdram(DDR0_20, 0x0B0B0B0B);
  235. mtsdram(DDR0_21, 0x0B0B0B0B);
  236. #ifdef CONFIG_DDR_ECC
  237. mtsdram(DDR0_22, 0x00267F0B | DDR0_22_CTRL_RAW_ECC_ENABLE); /* enable ECC */
  238. #else
  239. mtsdram(DDR0_22, 0x00267F0B);
  240. #endif
  241. mtsdram(DDR0_23, 0x01000000);
  242. mtsdram(DDR0_24, 0x01010001);
  243. mtsdram(DDR0_26, 0x2D93028A);
  244. mtsdram(DDR0_27, 0x0784682B);
  245. mtsdram(DDR0_28, 0x00000080);
  246. mtsdram(DDR0_31, 0x00000000);
  247. mtsdram(DDR0_42, 0x01000008);
  248. mtsdram(DDR0_43, 0x050A0200);
  249. mtsdram(DDR0_44, 0x00000005);
  250. mtsdram(DDR0_02, 0x00000001); /* Activate the denali core */
  251. #endif
  252. denali_wait_for_dlllock();
  253. #if defined(CONFIG_DDR_DATA_EYE)
  254. /* -----------------------------------------------------------+
  255. * Perform data eye search if requested.
  256. * ----------------------------------------------------------*/
  257. program_tlb(0, CFG_SDRAM_BASE, CFG_MBYTES_SDRAM << 20,
  258. TLB_WORD2_I_ENABLE);
  259. denali_core_search_data_eye();
  260. remove_tlb(CFG_SDRAM_BASE, CFG_MBYTES_SDRAM << 20);
  261. #endif
  262. /*
  263. * Program tlb entries for this size (dynamic)
  264. */
  265. program_tlb(0, CFG_SDRAM_BASE, CFG_MBYTES_SDRAM << 20,
  266. MY_TLB_WORD2_I_ENABLE);
  267. /*
  268. * Setup 2nd TLB with same physical address but different virtual address
  269. * with cache enabled. This is done for fast ECC generation.
  270. */
  271. program_tlb(0, CFG_DDR_CACHED_ADDR, CFG_MBYTES_SDRAM << 20, 0);
  272. #ifdef CONFIG_DDR_ECC
  273. /*
  274. * If ECC is enabled, initialize the parity bits.
  275. */
  276. program_ecc(CFG_DDR_CACHED_ADDR, CFG_MBYTES_SDRAM << 20, 0);
  277. #endif
  278. /*
  279. * Clear possible errors resulting from data-eye-search.
  280. * If not done, then we could get an interrupt later on when
  281. * exceptions are enabled.
  282. */
  283. set_mcsr(get_mcsr());
  284. return (CFG_MBYTES_SDRAM << 20);
  285. }