3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
13 * Memory Controller Using
15 * CS0 - Flash memory (0x40000000)
16 * CS1 - SDRAM (0x00000000}
17 * CS2 - S/UNI Ultra ATM155
18 * CS3 - IDT 77106 ATM25
20 * CS5 - E1/T1 Interface device
25 /* ------------------------------------------------------------------------- */
27 #define _not_used_ 0xffffffff
29 const uint sdram_table[] = {
30 /* single read. (offset 0 in upm RAM) */
31 0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00,
34 /* MRS initialization (offset 5) */
36 0x1ff77c34, 0xefeabc34, 0x1fb57c35,
38 /* burst read. (offset 8 in upm RAM) */
39 0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00,
40 0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47,
41 _not_used_, _not_used_, _not_used_, _not_used_,
42 _not_used_, _not_used_, _not_used_, _not_used_,
44 /* single write. (offset 18 in upm RAM) */
45 0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47,
46 _not_used_, _not_used_, _not_used_, _not_used_,
48 /* burst write. (offset 20 in upm RAM) */
49 0x1f07fc04, 0xeeaebc00, 0x10ad7c00, 0xf0affc00,
50 0xf0affc00, 0xe1bbbc04, 0x1ff77c47, _not_used_,
51 _not_used_, _not_used_, _not_used_, _not_used_,
52 _not_used_, _not_used_, _not_used_, _not_used_,
54 /* refresh. (offset 30 in upm RAM) */
55 0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04,
56 0xfffffc84, 0xfffffc07, _not_used_, _not_used_,
57 _not_used_, _not_used_, _not_used_, _not_used_,
59 /* exception. (offset 3c in upm RAM) */
60 0x7ffffc07, _not_used_, _not_used_, _not_used_
63 /* ------------------------------------------------------------------------- */
66 * Check Board Identity:
71 puts ("Board: ICU862 Board\n");
75 /* ------------------------------------------------------------------------- */
77 static long int dram_size (long int, long int *, long int);
79 /* ------------------------------------------------------------------------- */
81 phys_size_t initdram (int board_type)
83 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
84 volatile memctl8xx_t *memctl = &immap->im_memctl;
85 long int size8, size9;
89 upmconfig (UPMA, (uint *) sdram_table,
90 sizeof (sdram_table) / sizeof (uint));
93 * Preliminary prescaler for refresh (depends on number of
94 * banks): This value is selected for four cycles every 62.4 us
95 * with two SDRAM banks or four cycles every 31.2 us with one
96 * bank. It will be adjusted after memory sizing.
98 memctl->memc_mptpr = CONFIG_SYS_MPTPR_2BK_8K;
100 memctl->memc_mar = 0x00000088;
103 * Map controller bank 1 to the SDRAM bank at
104 * preliminary address - these have to be modified after the
105 * SDRAM size has been determined.
107 memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
108 memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
110 memctl->memc_mamr = CONFIG_SYS_MAMR_8COL & (~(MAMR_PTAE)); /* no refresh yet */
114 /* perform SDRAM initializsation sequence */
116 memctl->memc_mcr = 0x80002105; /* SDRAM bank 0 */
118 memctl->memc_mcr = 0x80002230; /* SDRAM bank 0 - execute twice */
121 memctl->memc_mamr |= MAMR_PTAE; /* enable refresh */
126 * Check Bank 0 Memory Size for re-configuration
130 size8 = dram_size (CONFIG_SYS_MAMR_8COL, SDRAM_BASE1_PRELIM,
138 size9 = dram_size (CONFIG_SYS_MAMR_9COL, SDRAM_BASE1_PRELIM,
141 if (size8 < size9) { /* leave configuration at 9 columns */
143 /* debug ("SDRAM Bank 0 in 9 column mode: %ld MB\n", size >> 20); */
144 } else { /* back to 8 columns */
146 memctl->memc_mamr = CONFIG_SYS_MAMR_8COL;
148 /* debug ("SDRAM Bank 0 in 8 column mode: %ld MB\n", size >> 20); */
154 * Adjust refresh rate depending on SDRAM type, both banks
155 * For types > 128 MBit leave it at the current (fast) rate
157 if ((size_b0 < 0x02000000)) {
158 /* reduce to 15.6 us (62.4 us / quad) */
159 memctl->memc_mptpr = CONFIG_SYS_MPTPR_2BK_4K;
167 memctl->memc_or1 = ((-size_b0) & 0xFFFF0000) | CONFIG_SYS_OR_TIMING_SDRAM;
168 memctl->memc_br1 = (CONFIG_SYS_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
170 /* adjust refresh rate depending on SDRAM type, one bank */
171 reg = memctl->memc_mptpr;
172 reg >>= 1; /* reduce to CONFIG_SYS_MPTPR_1BK_8K / _4K */
173 memctl->memc_mptpr = reg;
180 /* ------------------------------------------------------------------------- */
183 * Check memory range for valid RAM. A simple memory test determines
184 * the actually available RAM size between addresses `base' and
185 * `base + maxsize'. Some (not all) hardware errors are detected:
186 * - short between address lines
187 * - short between data lines
190 static long int dram_size (long int mamr_value, long int *base,
193 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
194 volatile memctl8xx_t *memctl = &immap->im_memctl;
196 memctl->memc_mamr = mamr_value;
198 return (get_ram_size(base, maxsize));