lantec.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * (C) Copyright 2000, 2001
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. * (C) Copyright 2001
  5. * Torsten Stevens, FHG IMS, stevens@ims.fhg.de
  6. * Bruno Achauer, Exet AG, bruno@exet-ag.de.
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. /*
  27. * Derived from ../tqm8xx/tqm8xx.c
  28. */
  29. #include <common.h>
  30. #include <mpc8xx.h>
  31. /* ------------------------------------------------------------------------- */
  32. static long int dram_size (long int, long int *, long int);
  33. /* ------------------------------------------------------------------------- */
  34. #define _NOT_USED_ 0xFFFFFFFF
  35. const uint sdram_table[] =
  36. {
  37. /*
  38. * Single Read. (Offset 0 in UPMA RAM)
  39. */
  40. 0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00,
  41. 0x1ff77c47, /* last */
  42. /*
  43. * SDRAM Initialization (offset 5 in UPMA RAM)
  44. *
  45. * This is no UPM entry point. The following definition uses
  46. * the remaining space to establish an initialization
  47. * sequence, which is executed by a RUN command.
  48. *
  49. */
  50. 0x1ff77c35, 0xefeabc34, 0x1fb57c35, /* last */
  51. /*
  52. * Burst Read. (Offset 8 in UPMA RAM)
  53. */
  54. 0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00,
  55. 0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47, /* last */
  56. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  57. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  58. /*
  59. * Single Write. (Offset 18 in UPMA RAM)
  60. */
  61. 0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47, /* last */
  62. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  63. /*
  64. * Burst Write. (Offset 20 in UPMA RAM)
  65. */
  66. 0x1f07fc04, 0xeeaebc00, 0x10ad7c00, 0xf0affc00,
  67. 0xf0affc00, 0xe1bbbc04, 0x1ff77c47, /* last */
  68. _NOT_USED_,
  69. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  70. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  71. /*
  72. * Refresh (Offset 30 in UPMA RAM)
  73. */
  74. 0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04,
  75. 0xfffffc84, 0xfffffc07, 0xfffffc07, /* last */
  76. _NOT_USED_,
  77. _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
  78. /*
  79. * Exception. (Offset 3c in UPMA RAM)
  80. */
  81. 0x7ffffc07, /* last */
  82. _NOT_USED_, _NOT_USED_, _NOT_USED_,
  83. };
  84. /* ------------------------------------------------------------------------- */
  85. /*
  86. * Check Board Identity:
  87. *
  88. * Test TQ ID string (TQM8xx...)
  89. * If present, check for "L" type (no second DRAM bank),
  90. * otherwise "L" type is assumed as default.
  91. *
  92. * Return 1 for "L" type, 0 else.
  93. */
  94. int checkboard (void)
  95. {
  96. printf("Board: Lantec special edition rev.%d\n", CONFIG_LANTEC);
  97. return 0;
  98. }
  99. /* ------------------------------------------------------------------------- */
  100. long int initdram (int board_type)
  101. {
  102. volatile immap_t *immap = (immap_t *)CFG_IMMR;
  103. volatile memctl8xx_t *memctl = &immap->im_memctl;
  104. long int size_b0;
  105. int i;
  106. /*
  107. * Configure UPMA for SDRAM
  108. */
  109. upmconfig(UPMA, (uint *)sdram_table, sizeof(sdram_table)/sizeof(uint));
  110. memctl->memc_mptpr = CFG_MPTPR_1BK_8K /* XXX CFG_MPTPR XXX */;
  111. /* burst length=4, burst type=sequential, CAS latency=2 */
  112. memctl->memc_mar = 0x00000088;
  113. /*
  114. * Map controller bank 3 to the SDRAM bank at preliminary address.
  115. */
  116. memctl->memc_or3 = CFG_OR3_PRELIM;
  117. memctl->memc_br3 = CFG_BR3_PRELIM;
  118. /* initialize memory address register */
  119. memctl->memc_mamr = CFG_MAMR_8COL; /* refresh not enabled yet */
  120. /* mode initialization (offset 5) */
  121. udelay(200); /* 0x80006105 */
  122. memctl->memc_mcr = MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF(1) | MCR_MAD(0x05);
  123. /* run 2 refresh sequence with 4-beat refresh burst (offset 0x30) */
  124. udelay(1); /* 0x80006130 */
  125. memctl->memc_mcr = MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF(1) | MCR_MAD(0x30);
  126. udelay(1); /* 0x80006130 */
  127. memctl->memc_mcr = MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF(1) | MCR_MAD(0x30);
  128. udelay(1); /* 0x80006106 */
  129. memctl->memc_mcr = MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF(1) | MCR_MAD(0x06);
  130. memctl->memc_mamr |= MAMR_PTAE; /* refresh enabled */
  131. udelay(200);
  132. /* Need at least 10 DRAM accesses to stabilize */
  133. for (i=0; i<10; ++i) {
  134. volatile unsigned long *addr = \
  135. (volatile unsigned long *)SDRAM_BASE3_PRELIM;
  136. unsigned long val;
  137. val = *(addr + i);
  138. *(addr + i) = val;
  139. }
  140. /*
  141. * Check Bank 0 Memory Size for re-configuration
  142. */
  143. size_b0 = dram_size (CFG_MAMR_8COL,
  144. (ulong *)SDRAM_BASE3_PRELIM,
  145. SDRAM_MAX_SIZE);
  146. memctl->memc_mamr = CFG_MAMR_8COL | MAMR_PTAE;
  147. /*
  148. * Final mapping:
  149. */
  150. memctl->memc_or3 = ((-size_b0) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
  151. memctl->memc_br3 = (CFG_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
  152. udelay(1000);
  153. return (size_b0);
  154. }
  155. /* ------------------------------------------------------------------------- */
  156. /*
  157. * Check memory range for valid RAM. A simple memory test determines
  158. * the actually available RAM size between addresses `base' and
  159. * `base + maxsize'. Some (not all) hardware errors are detected:
  160. * - short between address lines
  161. * - short between data lines
  162. */
  163. static long int dram_size (long int mamr_value, long int *base, long int maxsize)
  164. {
  165. volatile immap_t *immap = (immap_t *)CFG_IMMR;
  166. volatile memctl8xx_t *memctl = &immap->im_memctl;
  167. volatile long int *addr;
  168. ulong cnt, val;
  169. ulong save[32]; /* to make test non-destructive */
  170. unsigned char i = 0;
  171. memctl->memc_mamr = mamr_value;
  172. for (cnt = maxsize/sizeof(long); cnt > 0; cnt >>= 1) {
  173. addr = base + cnt; /* pointer arith! */
  174. save[i++] = *addr;
  175. *addr = ~cnt;
  176. }
  177. /* write 0 to base address */
  178. addr = base;
  179. save[i] = *addr;
  180. *addr = 0;
  181. /* check at base address */
  182. if ((val = *addr) != 0) {
  183. *addr = save[i];
  184. return (0);
  185. }
  186. for (cnt = 1; cnt <= maxsize/sizeof(long); cnt <<= 1) {
  187. addr = base + cnt; /* pointer arith! */
  188. val = *addr;
  189. *addr = save[--i];
  190. if (val != (~cnt)) {
  191. return (cnt * sizeof(long));
  192. }
  193. }
  194. return (maxsize);
  195. }