c2mon.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. * (C) Copyright 2001
  3. * Wolfgang Denk, DENX Software Engineering, wd@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. #include <common.h>
  24. #include <mpc8xx.h>
  25. /* ------------------------------------------------------------------------- */
  26. static long int dram_size (long int, long int *, long int);
  27. /* ------------------------------------------------------------------------- */
  28. #define _NOT_USED_ 0xFFFFFFFF
  29. const uint sdram_table[] =
  30. {
  31. /*
  32. * Single Read. (Offset 0 in UPMA RAM)
  33. */
  34. 0x1F07FC04, 0xEEAEFC04, 0x11ADFC04, 0xEFBBBC00,
  35. 0x1FF77C47, /* last */
  36. /*
  37. * SDRAM Initialization (offset 5 in UPMA RAM)
  38. *
  39. * This is no UPM entry point. The following definition uses
  40. * the remaining space to establish an initialization
  41. * sequence, which is executed by a RUN command.
  42. *
  43. */
  44. 0x1FF77C34, 0xEFEABC34, 0x1FB57C35, /* last */
  45. /*
  46. * Burst Read. (Offset 8 in UPMA RAM)
  47. */
  48. 0x1F07FC04, 0xEEAEFC04, 0x10ADFC04, 0xF0AFFC00,
  49. 0xF0AFFC00, 0xF1AFFC00, 0xEFBBBC00, 0x1FF77C47, /* last */
  50. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  51. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  52. /*
  53. * Single Write. (Offset 18 in UPMA RAM)
  54. */
  55. 0x1F07FC04, 0xEEAEBC00, 0x01B93C04, 0x1FF77C47, /* last */
  56. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  57. /*
  58. * Burst Write. (Offset 20 in UPMA RAM)
  59. */
  60. 0x1F07FC04, 0xEEAEBC00, 0x10AD7C00, 0xF0AFFC00,
  61. 0xF0AFFC00, 0xE1BBBC04, 0x1FF77C47, /* last */
  62. _NOT_USED_,
  63. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  64. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  65. /*
  66. * Refresh (Offset 30 in UPMA RAM)
  67. */
  68. 0x1FF5FC84, 0xFFFFFC04, 0xFFFFFC04, 0xFFFFFC04,
  69. 0xFFFFFC84, 0xFFFFFC07, /* last */
  70. _NOT_USED_, _NOT_USED_,
  71. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  72. /*
  73. * Exception. (Offset 3c in UPMA RAM)
  74. */
  75. 0x7FFFFC07, /* last */
  76. _NOT_USED_, _NOT_USED_, _NOT_USED_,
  77. };
  78. /* ------------------------------------------------------------------------- */
  79. /*
  80. * Check Board Identity:
  81. */
  82. int checkboard (void)
  83. {
  84. unsigned char *s = (unsigned char *)getenv ("serial#");
  85. puts ("Board: TTTech C2MON ");
  86. for (; s && *s; ++s) {
  87. if (*s == ' ')
  88. break;
  89. putc (*s);
  90. }
  91. putc ('\n');
  92. return (0);
  93. }
  94. /* ------------------------------------------------------------------------- */
  95. long int initdram (int board_type)
  96. {
  97. volatile immap_t *immap = (immap_t *) CFG_IMMR;
  98. volatile memctl8xx_t *memctl = &immap->im_memctl;
  99. unsigned long reg;
  100. long int size8, size9;
  101. long int size = 0;
  102. upmconfig (UPMA, (uint *)sdram_table, sizeof(sdram_table) / sizeof(uint));
  103. /*
  104. * Preliminary prescaler for refresh (depends on number of
  105. * banks): This value is selected for four cycles every 62.4 us
  106. * with two SDRAM banks or four cycles every 31.2 us with one
  107. * bank. It will be adjusted after memory sizing.
  108. */
  109. memctl->memc_mptpr = CFG_MPTPR_2BK_8K;
  110. memctl->memc_mar = 0x00000088;
  111. /*
  112. * Map controller bank 2 the SDRAM bank 2 at physical address 0.
  113. */
  114. memctl->memc_or2 = CFG_OR2_PRELIM;
  115. memctl->memc_br2 = CFG_BR2_PRELIM;
  116. memctl->memc_mamr = CFG_MAMR_8COL & (~(MAMR_PTAE)); /* no refresh yet */
  117. udelay (200);
  118. /* perform SDRAM initializsation sequence */
  119. memctl->memc_mcr = 0x80004105; /* SDRAM bank 0 */
  120. udelay (1);
  121. memctl->memc_mcr = 0x80004230; /* SDRAM bank 0 - execute twice */
  122. udelay (1);
  123. memctl->memc_mamr |= MAMR_PTAE; /* enable refresh */
  124. udelay (1000);
  125. /*
  126. * Check Bank 0 Memory Size
  127. *
  128. * try 8 column mode
  129. */
  130. size8 = dram_size (CFG_MAMR_8COL,
  131. SDRAM_BASE2_PRELIM,
  132. SDRAM_MAX_SIZE);
  133. udelay (1000);
  134. /*
  135. * try 9 column mode
  136. */
  137. size9 = dram_size (CFG_MAMR_9COL,
  138. SDRAM_BASE2_PRELIM,
  139. SDRAM_MAX_SIZE);
  140. if (size8 < size9) { /* leave configuration at 9 columns */
  141. size = size9;
  142. /* debug ("SDRAM Bank 0 in 9 column mode: %ld MB\n", size >> 20); */
  143. } else { /* back to 8 columns */
  144. size = size8;
  145. memctl->memc_mamr = CFG_MAMR_8COL;
  146. udelay (500);
  147. /* debug ("SDRAM Bank 0 in 8 column mode: %ld MB\n", size >> 20); */
  148. }
  149. udelay (1000);
  150. /*
  151. * Adjust refresh rate depending on SDRAM type
  152. * For types > 128 MBit leave it at the current (fast) rate
  153. */
  154. if (size < 0x02000000) {
  155. /* reduce to 15.6 us (62.4 us / quad) */
  156. memctl->memc_mptpr = CFG_MPTPR_2BK_4K;
  157. udelay (1000);
  158. }
  159. /*
  160. * Final mapping
  161. */
  162. memctl->memc_or2 = ((-size) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
  163. memctl->memc_br2 = (CFG_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
  164. /*
  165. * No bank 1
  166. *
  167. * invalidate bank
  168. */
  169. memctl->memc_br3 = 0;
  170. /* adjust refresh rate depending on SDRAM type, one bank */
  171. reg = memctl->memc_mptpr;
  172. reg >>= 1; /* reduce to CFG_MPTPR_1BK_8K / _4K */
  173. memctl->memc_mptpr = reg;
  174. udelay (10000);
  175. return (size);
  176. }
  177. /* ------------------------------------------------------------------------- */
  178. /*
  179. * Check memory range for valid RAM. A simple memory test determines
  180. * the actually available RAM size between addresses `base' and
  181. * `base + maxsize'. Some (not all) hardware errors are detected:
  182. * - short between address lines
  183. * - short between data lines
  184. */
  185. static long int dram_size (long int mamr_value, long int *base,
  186. long int maxsize)
  187. {
  188. volatile immap_t *immap = (immap_t *) CFG_IMMR;
  189. volatile memctl8xx_t *memctl = &immap->im_memctl;
  190. memctl->memc_mamr = mamr_value;
  191. return (get_ram_size(base, maxsize));
  192. }