blob: 2694d62d21488b02156bc7b2266291de6edb111e [file] [log] [blame]
wdenka445ddf2004-06-09 00:34:46 +00001 /*
wdenk9c53f402003-10-15 23:53:47 +00002 * (C) Copyright 2002,2003, Motorola Inc.
3 * Xianghua Xiao, (X.Xiao@motorola.com)
4 *
5 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26
27extern long int spd_sdram (void);
28
29#include <common.h>
30#include <asm/processor.h>
31#include <asm/immap_85xx.h>
32#include <spd.h>
33
34long int fixed_sdram (void);
35
wdenka445ddf2004-06-09 00:34:46 +000036#if defined(CONFIG_DDR_ECC)
37void dma_init(void);
38uint dma_check(void);
39int dma_xfer(void *dest, uint count, void *src);
40#endif
41
42
wdenk9c53f402003-10-15 23:53:47 +000043/* MPC8540ADS Board Status & Control Registers */
44#if 0
45typedef struct bscr_ {
46 unsigned long bcsr0;
47 unsigned long bcsr1;
48 unsigned long bcsr2;
49 unsigned long bcsr3;
50 unsigned long bcsr4;
51 unsigned long bcsr5;
52 unsigned long bcsr6;
53 unsigned long bcsr7;
54} bcsr_t;
55#endif
56
wdenkda55c6e2004-01-20 23:12:12 +000057int board_early_init_f (void)
wdenk9c53f402003-10-15 23:53:47 +000058{
59#if defined(CONFIG_PCI)
60 volatile immap_t *immr = (immap_t *)CFG_IMMR;
61 volatile ccsr_pcix_t *pci = &immr->im_pcix;
62
63 pci->peer &= 0xffffffdf; /* disable master abort */
64#endif
65 return 0;
66}
67
68int checkboard (void)
69{
wdenka445ddf2004-06-09 00:34:46 +000070 puts("Board: ADS\n");
71 return 0;
wdenk9c53f402003-10-15 23:53:47 +000072}
73
wdenka445ddf2004-06-09 00:34:46 +000074
wdenk9c53f402003-10-15 23:53:47 +000075long int initdram (int board_type)
76{
77 long dram_size = 0;
78 extern long spd_sdram (void);
79 volatile immap_t *immap = (immap_t *)CFG_IMMR;
80#if !defined(CONFIG_RAM_AS_FLASH)
81 volatile ccsr_lbc_t *lbc= &immap->im_lbc;
82 sys_info_t sysinfo;
83 uint temp_lbcdll = 0;
84#endif
85#if !defined(CONFIG_RAM_AS_FLASH) || defined(CONFIG_DDR_DLL)
86 volatile ccsr_gur_t *gur= &immap->im_gur;
87#endif
wdenka445ddf2004-06-09 00:34:46 +000088
wdenk9c53f402003-10-15 23:53:47 +000089#if defined(CONFIG_DDR_DLL)
wdenka445ddf2004-06-09 00:34:46 +000090 uint temp_ddrdll = 0;
wdenk9c53f402003-10-15 23:53:47 +000091
92 /* Work around to stabilize DDR DLL */
93 temp_ddrdll = gur->ddrdllcr;
94 gur->ddrdllcr = ((temp_ddrdll & 0xff) << 16) | 0x80000000;
95 asm("sync;isync;msync");
96#endif
97
98#if defined(CONFIG_SPD_EEPROM)
99 dram_size = spd_sdram ();
100#else
101 dram_size = fixed_sdram ();
102#endif
103
104#if !defined(CONFIG_RAM_AS_FLASH) /* LocalBus is not emulating flash */
105 get_sys_info(&sysinfo);
106 /* if localbus freq is less than 66Mhz,we use bypass mode,otherwise use DLL */
107 if(sysinfo.freqSystemBus/(CFG_LBC_LCRR & 0x0f) < 66000000) {
108 lbc->lcrr = (CFG_LBC_LCRR & 0x0fffffff)| 0x80000000;
109 } else {
wdenka445ddf2004-06-09 00:34:46 +0000110 uint pvr = get_pvr();
111
112 if (pvr == PVR_85xx_REV1) {
113 /*
114 * Need change CLKDIV before enable DLL.
115 * Default CLKDIV is 8, change it to 4
116 * temporarily.
117 */
118 lbc->lcrr = 0x10000004;
119 }
wdenk9c53f402003-10-15 23:53:47 +0000120 lbc->lcrr = CFG_LBC_LCRR & 0x7fffffff;
121 udelay(200);
122 temp_lbcdll = gur->lbcdllcr;
123 gur->lbcdllcr = ((temp_lbcdll & 0xff) << 16 ) | 0x80000000;
124 asm("sync;isync;msync");
125 }
126 lbc->or2 = CFG_OR2_PRELIM; /* 64MB SDRAM */
127 lbc->br2 = CFG_BR2_PRELIM;
128 lbc->lbcr = CFG_LBC_LBCR;
129 lbc->lsdmr = CFG_LBC_LSDMR_1;
130 asm("sync");
131 (unsigned int) * (ulong *)0 = 0x000000ff;
132 lbc->lsdmr = CFG_LBC_LSDMR_2;
133 asm("sync");
134 (unsigned int) * (ulong *)0 = 0x000000ff;
135 lbc->lsdmr = CFG_LBC_LSDMR_3;
136 asm("sync");
137 (unsigned int) * (ulong *)0 = 0x000000ff;
138 lbc->lsdmr = CFG_LBC_LSDMR_4;
139 asm("sync");
140 (unsigned int) * (ulong *)0 = 0x000000ff;
141 lbc->lsdmr = CFG_LBC_LSDMR_5;
142 asm("sync");
143 lbc->lsrt = CFG_LBC_LSRT;
144 asm("sync");
145 lbc->mrtpr = CFG_LBC_MRTPR;
146 asm("sync");
147#endif
148
149#if defined(CONFIG_DDR_ECC)
150 {
151 /* Initialize all of memory for ECC, then
152 * enable errors */
153 uint *p = 0;
154 uint i = 0;
155 volatile immap_t *immap = (immap_t *)CFG_IMMR;
156 volatile ccsr_ddr_t *ddr= &immap->im_ddr;
157 dma_init();
158 for (*p = 0; p < (uint *)(8 * 1024); p++) {
159 if (((unsigned int)p & 0x1f) == 0) { dcbz(p); }
160 *p = (unsigned int)0xdeadbeef;
161 if (((unsigned int)p & 0x1c) == 0x1c) { dcbf(p); }
162 }
163
164 /* 8K */
165 dma_xfer((uint *)0x2000,0x2000,(uint *)0);
166 /* 16K */
167 dma_xfer((uint *)0x4000,0x4000,(uint *)0);
168 /* 32K */
169 dma_xfer((uint *)0x8000,0x8000,(uint *)0);
170 /* 64K */
171 dma_xfer((uint *)0x10000,0x10000,(uint *)0);
172 /* 128k */
173 dma_xfer((uint *)0x20000,0x20000,(uint *)0);
174 /* 256k */
175 dma_xfer((uint *)0x40000,0x40000,(uint *)0);
176 /* 512k */
177 dma_xfer((uint *)0x80000,0x80000,(uint *)0);
178 /* 1M */
179 dma_xfer((uint *)0x100000,0x100000,(uint *)0);
180 /* 2M */
181 dma_xfer((uint *)0x200000,0x200000,(uint *)0);
182 /* 4M */
183 dma_xfer((uint *)0x400000,0x400000,(uint *)0);
184
185 for (i = 1; i < dram_size / 0x800000; i++) {
186 dma_xfer((uint *)(0x800000*i),0x800000,(uint *)0);
187 }
188
189 /* Enable errors for ECC */
190 ddr->err_disable = 0x00000000;
191 asm("sync;isync;msync");
192 }
193#endif
194
195 return dram_size;
196}
197
198
199#if defined(CFG_DRAM_TEST)
200int testdram (void)
201{
202 uint *pstart = (uint *) CFG_MEMTEST_START;
203 uint *pend = (uint *) CFG_MEMTEST_END;
204 uint *p;
205
206 printf("SDRAM test phase 1:\n");
207 for (p = pstart; p < pend; p++)
208 *p = 0xaaaaaaaa;
209
210 for (p = pstart; p < pend; p++) {
211 if (*p != 0xaaaaaaaa) {
212 printf ("SDRAM test fails at: %08x\n", (uint) p);
213 return 1;
214 }
215 }
216
217 printf("SDRAM test phase 2:\n");
218 for (p = pstart; p < pend; p++)
219 *p = 0x55555555;
220
221 for (p = pstart; p < pend; p++) {
222 if (*p != 0x55555555) {
223 printf ("SDRAM test fails at: %08x\n", (uint) p);
224 return 1;
225 }
226 }
227
228 printf("SDRAM test passed.\n");
229 return 0;
230}
231#endif
232
233
234#if !defined(CONFIG_SPD_EEPROM)
235/*************************************************************************
236 * fixed sdram init -- doesn't use serial presence detect.
237 ************************************************************************/
238long int fixed_sdram (void)
239{
240 #ifndef CFG_RAMBOOT
241 volatile immap_t *immap = (immap_t *)CFG_IMMR;
242 volatile ccsr_ddr_t *ddr= &immap->im_ddr;
243
244 ddr->cs0_bnds = CFG_DDR_CS0_BNDS;
245 ddr->cs0_config = CFG_DDR_CS0_CONFIG;
246 ddr->timing_cfg_1 = CFG_DDR_TIMING_1;
247 ddr->timing_cfg_2 = CFG_DDR_TIMING_2;
248 ddr->sdram_mode = CFG_DDR_MODE;
249 ddr->sdram_interval = CFG_DDR_INTERVAL;
250 #if defined (CONFIG_DDR_ECC)
251 ddr->err_disable = 0x0000000D;
252 ddr->err_sbe = 0x00ff0000;
253 #endif
254 asm("sync;isync;msync");
255 udelay(500);
256 #if defined (CONFIG_DDR_ECC)
257 /* Enable ECC checking */
258 ddr->sdram_cfg = (CFG_DDR_CONTROL | 0x20000000);
259 #else
260 ddr->sdram_cfg = CFG_DDR_CONTROL;
261 #endif
262 asm("sync; isync; msync");
263 udelay(500);
264 #endif
265 return (CFG_SDRAM_SIZE * 1024 * 1024);
266}
267#endif /* !defined(CONFIG_SPD_EEPROM) */