3 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
5 * (C) Copyright 2001-2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * See file CREDITS for list of people who contributed to this
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.
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.
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,
32 DECLARE_GLOBAL_DATA_PTR
;
34 static long int dram_size (long int, long int *, long int);
36 #define _NOT_USED_ 0xFFFFFFFF
38 const uint sdram_table
[] = {
39 #if (MPC8XX_SPEED <= 50000000L)
41 * Single Read. (Offset 0 in UPMA RAM)
43 0x0F07EC04, 0x01BBD804, 0x1FF7F440, 0xFFFFFC07,
47 * SDRAM Initialization (offset 5 in UPMA RAM)
49 * This is no UPM entry point. The following definition uses
50 * the remaining space to establish an initialization
51 * sequence, which is executed by a RUN command.
54 0x1FE7F434, 0xEFABE834, 0x1FA7D435,
57 * Burst Read. (Offset 8 in UPMA RAM)
59 0x0F07EC04, 0x10EFDC04, 0xF0AFFC00, 0xF0AFFC00,
60 0xF1AFFC00, 0xFFAFFC40, 0xFFAFFC07, 0xFFFFFFFF,
61 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
62 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
65 * Single Write. (Offset 18 in UPMA RAM)
67 0x0E07E804, 0x01BBD000, 0x1FF7F447, 0xFFFFFFFF,
68 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
71 * Burst Write. (Offset 20 in UPMA RAM)
73 0x0E07E800, 0x10EFD400, 0xF0AFFC00, 0xF0AFFC00,
74 0xF1AFFC47, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
75 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
76 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
79 * Refresh (Offset 30 in UPMA RAM)
81 0x1FF7DC84, 0xFFFFFC04, 0xFFFFFC84, 0xFFFFFC07,
82 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
83 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
86 * Exception. (Offset 3c in UPMA RAM)
88 0x7FFFFC07, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF
92 * Single Read. (Offset 0 in UPMA RAM)
94 0x1F07FC04, 0xEEAFEC04, 0x11AFDC04, 0xEFBBF800,
98 * SDRAM Initialization (offset 5 in UPMA RAM)
100 * This is no UPM entry point. The following definition uses
101 * the remaining space to establish an initialization
102 * sequence, which is executed by a RUN command.
105 0x1FF7F434, 0xEFEBE834, 0x1FB7D435,
108 * Burst Read. (Offset 8 in UPMA RAM)
110 0x1F07FC04, 0xEEAFEC04, 0x10AFDC04, 0xF0AFFC00,
111 0xF0AFFC00, 0xF1AFFC00, 0xEFBBF800, 0x1FF7F447,
112 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
113 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
116 * Single Write. (Offset 18 in UPMA RAM)
118 0x1F07FC04, 0xEEAFE800, 0x01BBD004, 0x1FF7F447,
119 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
122 * Burst Write. (Offset 20 in UPMA RAM)
124 0x1F07FC04, 0xEEAFE800, 0x10AFD400, 0xF0AFFC00,
125 0xF0AFFC00, 0xE1BBF804, 0x1FF7F447, _NOT_USED_
,
126 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
127 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
130 * Refresh (Offset 30 in UPMA RAM)
132 0x1FF7DC84, 0xFFFFFC04, 0xFFFFFC04, 0xFFFFFC04,
133 0xFFFFFC84, 0xFFFFFC07,
134 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
135 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
138 * Exception. (Offset 3c in UPMA RAM)
140 0x7FFFFC07, /* last */
141 _NOT_USED_
, _NOT_USED_
, _NOT_USED_
,
145 /* ------------------------------------------------------------------------- */
149 * Check Board Identity:
153 int checkboard (void)
155 printf ("Board: Nexus NX823");
159 /* ------------------------------------------------------------------------- */
161 phys_size_t
initdram (int board_type
)
163 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
164 volatile memctl8xx_t
*memctl
= &immap
->im_memctl
;
165 long int size_b0
, size_b1
, size8
, size9
;
167 upmconfig (UPMA
, (uint
*) sdram_table
,
168 sizeof (sdram_table
) / sizeof (uint
));
171 * Up to 2 Banks of 64Mbit x 2 devices
172 * Initial builds only have 1
174 memctl
->memc_mptpr
= CONFIG_SYS_MPTPR_1BK_4K
;
175 memctl
->memc_mar
= 0x00000088;
178 * Map controller SDRAM bank 0
180 memctl
->memc_or1
= CONFIG_SYS_OR1_PRELIM
;
181 memctl
->memc_br1
= CONFIG_SYS_BR1_PRELIM
;
182 memctl
->memc_mamr
= CONFIG_SYS_MAMR_8COL
& (~(MAMR_PTAE
)); /* no refresh yet */
186 * Map controller SDRAM bank 1
188 memctl
->memc_or2
= CONFIG_SYS_OR2_PRELIM
;
189 memctl
->memc_br2
= CONFIG_SYS_BR2_PRELIM
;
192 * Perform SDRAM initializsation sequence
194 memctl
->memc_mcr
= 0x80002105; /* SDRAM bank 0 */
196 memctl
->memc_mcr
= 0x80002230; /* SDRAM bank 0 - execute twice */
199 memctl
->memc_mcr
= 0x80004105; /* SDRAM bank 1 */
201 memctl
->memc_mcr
= 0x80004230; /* SDRAM bank 1 - execute twice */
204 memctl
->memc_mamr
|= MAMR_PTAE
; /* enable refresh */
208 * Preliminary prescaler for refresh (depends on number of
209 * banks): This value is selected for four cycles every 62.4 us
210 * with two SDRAM banks or four cycles every 31.2 us with one
211 * bank. It will be adjusted after memory sizing.
213 memctl
->memc_mptpr
= CONFIG_SYS_MPTPR_2BK_8K
;
215 memctl
->memc_mar
= 0x00000088;
219 * Check Bank 0 Memory Size for re-configuration
223 size8
= dram_size (CONFIG_SYS_MAMR_8COL
, (long *) SDRAM_BASE1_PRELIM
,
231 size9
= dram_size (CONFIG_SYS_MAMR_9COL
, (long *) SDRAM_BASE1_PRELIM
,
234 if (size8
< size9
) { /* leave configuration at 9 columns */
236 /* debug ("SDRAM Bank 0 in 9 column mode: %ld MB\n", size >> 20); */
237 } else { /* back to 8 columns */
239 memctl
->memc_mamr
= CONFIG_SYS_MAMR_8COL
;
241 /* debug ("SDRAM Bank 0 in 8 column mode: %ld MB\n", size >> 20); */
245 * Check Bank 1 Memory Size
246 * use current column settings
247 * [9 column SDRAM may also be used in 8 column mode,
248 * but then only half the real size will be used.]
250 size_b1
= dram_size (memctl
->memc_mamr
, (long *) SDRAM_BASE2_PRELIM
,
252 /* debug ("SDRAM Bank 1: %ld MB\n", size8 >> 20); */
257 * Adjust refresh rate depending on SDRAM type, both banks
258 * For types > 128 MBit leave it at the current (fast) rate
260 if ((size_b0
< 0x02000000) && (size_b1
< 0x02000000)) {
261 /* reduce to 15.6 us (62.4 us / quad) */
262 memctl
->memc_mptpr
= CONFIG_SYS_MPTPR_2BK_4K
;
267 * Final mapping: map bigger bank first
269 if (size_b1
> size_b0
) { /* SDRAM Bank 1 is bigger - map first */
272 ((-size_b1
) & 0xFFFF0000) | CONFIG_SYS_OR_TIMING_SDRAM
;
274 (CONFIG_SYS_SDRAM_BASE
& BR_BA_MSK
) | BR_MS_UPMA
| BR_V
;
278 * Position Bank 0 immediately above Bank 1
281 ((-size_b0
) & 0xFFFF0000) |
282 CONFIG_SYS_OR_TIMING_SDRAM
;
284 ((CONFIG_SYS_SDRAM_BASE
& BR_BA_MSK
) | BR_MS_UPMA
|
295 memctl
->memc_br1
= 0;
297 /* adjust refresh rate depending on SDRAM type, one bank */
298 reg
= memctl
->memc_mptpr
;
299 reg
>>= 1; /* reduce to CONFIG_SYS_MPTPR_1BK_8K / _4K */
300 memctl
->memc_mptpr
= reg
;
303 } else { /* SDRAM Bank 0 is bigger - map first */
306 ((-size_b0
) & 0xFFFF0000) | CONFIG_SYS_OR_TIMING_SDRAM
;
308 (CONFIG_SYS_SDRAM_BASE
& BR_BA_MSK
) | BR_MS_UPMA
| BR_V
;
312 * Position Bank 1 immediately above Bank 0
315 ((-size_b1
) & 0xFFFF0000) |
316 CONFIG_SYS_OR_TIMING_SDRAM
;
318 ((CONFIG_SYS_SDRAM_BASE
& BR_BA_MSK
) | BR_MS_UPMA
|
329 memctl
->memc_br2
= 0;
331 /* adjust refresh rate depending on SDRAM type, one bank */
332 reg
= memctl
->memc_mptpr
;
333 reg
>>= 1; /* reduce to CONFIG_SYS_MPTPR_1BK_8K / _4K */
334 memctl
->memc_mptpr
= reg
;
340 return (size_b0
+ size_b1
);
343 /* ------------------------------------------------------------------------- */
346 * Check memory range for valid RAM. A simple memory test determines
347 * the actually available RAM size between addresses `base' and
348 * `base + maxsize'. Some (not all) hardware errors are detected:
349 * - short between address lines
350 * - short between data lines
353 static long int dram_size (long int mamr_value
, long int *base
,
356 volatile immap_t
*immap
= (immap_t
*) CONFIG_SYS_IMMR
;
357 volatile memctl8xx_t
*memctl
= &immap
->im_memctl
;
359 memctl
->memc_mamr
= mamr_value
;
361 return (get_ram_size (base
, maxsize
));
364 int misc_init_r (void)
370 ulong
*my_sernum
= (unsigned long *)&bd
->bi_sernum
;
372 /* load unique serial number */
373 for (i
= 0; i
< 8; ++i
)
374 bd
->bi_sernum
[i
] = *(u_char
*) (CONFIG_SYS_FLASH_SN_BASE
+ i
);
376 /* save env variables according to sernum */
377 sprintf (tmp
, "%08lx%08lx", my_sernum
[0], my_sernum
[1]);
378 setenv ("serial#", tmp
);
380 if (!eth_getenv_enetaddr("ethaddr", ethaddr
)) {
384 ethaddr
[3] = bd
->bi_sernum
[1] << 4 | bd
->bi_sernum
[2];
385 ethaddr
[4] = bd
->bi_sernum
[5];
386 ethaddr
[5] = bd
->bi_sernum
[6];