blob: 89ea27600dd432dbb33140362004f1f77bbcf696 [file] [log] [blame]
wdenk858b1a62002-09-30 16:12:23 +00001/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland, d.peter@mpl.ch
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 *
24 * TODO: clean-up
25 */
26
27/*
28 * How do I program the SDRAM Timing Register (SDRAM0_TR) for a specific SDRAM or DIMM?
29 *
30 * As an example, consider a case where PC133 memory with CAS Latency equal to 2 is being
31 * used with a 200MHz 405GP. For a typical 128Mb, PC133 SDRAM, the relevant minimum
32 * parameters from the datasheet are:
33 * Tclk = 7.5ns (CL = 2)
34 * Trp = 15ns
35 * Trc = 60ns
36 * Trcd = 15ns
37 * Trfc = 66ns
38 *
39 * If we are operating the 405GP with the MemClk output frequency set to 100 MHZ, the clock
40 * period is 10ns and the parameters needed for the Timing Register are:
41 * CASL = CL = 2 clock cycles
42 * PTA = Trp = 15ns / 10ns = 2 clock cycles
43 * CTP = Trc - Trcd - Trp = (60ns - 15ns - 15ns) / 10ns= 3 clock cycles
44 * LDF = 2 clock cycles (but can be extended to meet board-level timing)
45 * RFTA = Trfc = 66ns / 10ns= 7 clock cycles
46 * RCD = Trcd = 15ns / 10ns= 2 clock cycles
47 *
48 * The actual bit settings in the register would be:
49 *
50 * CASL = 0b01
51 * PTA = 0b01
52 * CTP = 0b10
53 * LDF = 0b01
54 * RFTA = 0b011
55 * RCD = 0b01
56 *
57 * If Trfc is not specified in the datasheet for PC100 or PC133 memory, set RFTA = Trc
58 * instead. Figure 24 in the PC SDRAM Specification Rev. 1.7 shows refresh to active delay
59 * defined as Trc rather than Trfc.
60 * When using DIMM modules, most but not all of the required timing parameters can be read
61 * from the Serial Presence Detect (SPD) EEPROM on the module. Specifically, Trc and Trfc
62 * are not available from the EEPROM
63 */
64
65#include <common.h>
66#include "mip405.h"
67#include <asm/processor.h>
Stefan Roeseafabb492010-09-12 06:21:37 +020068#include <asm/ppc4xx.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020069#include <asm/ppc4xx-i2c.h>
wdenk858b1a62002-09-30 16:12:23 +000070#include <miiphy.h>
71#include "../common/common_util.h"
Jean-Christophe PLAGNIOL-VILLARD28c34502009-05-16 12:14:56 +020072#include <stdio_dev.h>
wdenk858b1a62002-09-30 16:12:23 +000073#include <i2c.h>
wdenk27b207f2003-07-24 23:38:38 +000074#include <rtc.h>
Wolfgang Denkd87080b2006-03-31 18:32:53 +020075
76DECLARE_GLOBAL_DATA_PTR;
77
wdenk858b1a62002-09-30 16:12:23 +000078#undef SDRAM_DEBUG
wdenkf3e0de62003-06-04 15:05:30 +000079#define ENABLE_ECC /* for ecc boards */
wdenk858b1a62002-09-30 16:12:23 +000080
81/* stdlib.h causes some compatibility problems; should fixe these! -- wd */
82#ifndef __ldiv_t_defined
83typedef struct {
84 long int quot; /* Quotient */
85 long int rem; /* Remainder */
86} ldiv_t;
87extern ldiv_t ldiv (long int __numer, long int __denom);
88# define __ldiv_t_defined 1
89#endif
90
91
Wolfgang Denk53677ef2008-05-20 16:00:29 +020092#define PLD_PART_REG PER_PLD_ADDR + 0
93#define PLD_VERS_REG PER_PLD_ADDR + 1
94#define PLD_BOARD_CFG_REG PER_PLD_ADDR + 2
95#define PLD_IRQ_REG PER_PLD_ADDR + 3
96#define PLD_COM_MODE_REG PER_PLD_ADDR + 4
97#define PLD_EXT_CONF_REG PER_PLD_ADDR + 5
wdenk858b1a62002-09-30 16:12:23 +000098
99#define MEGA_BYTE (1024*1024)
100
101typedef struct {
102 unsigned char boardtype; /* Board revision and Population Options */
103 unsigned char cal; /* cas Latency (will be programmend as cal-1) */
104 unsigned char trp; /* datain27 in clocks */
105 unsigned char trcd; /* datain29 in clocks */
106 unsigned char tras; /* datain30 in clocks */
107 unsigned char tctp; /* tras - trcd in clocks */
108 unsigned char am; /* Address Mod (will be programmed as am-1) */
109 unsigned char sz; /* log binary => Size = (4MByte<<sz) 5 = 128, 4 = 64, 3 = 32, 2 = 16, 1=8 */
110 unsigned char ecc; /* if true, ecc is enabled */
111} sdram_t;
wdenkf3e0de62003-06-04 15:05:30 +0000112#if defined(CONFIG_MIP405T)
113const sdram_t sdram_table[] = {
wdenk27b207f2003-07-24 23:38:38 +0000114 { 0x0F, /* MIP405T Rev A, 64MByte -1 Board */
wdenkf3e0de62003-06-04 15:05:30 +0000115 3, /* Case Latenty = 3 */
116 3, /* trp 20ns / 7.5 ns datain[27] */
117 3, /* trcd 20ns /7.5 ns (datain[29]) */
118 6, /* tras 44ns /7.5 ns (datain[30]) */
119 4, /* tcpt 44 - 20ns = 24ns */
wdenk27b207f2003-07-24 23:38:38 +0000120 2, /* Address Mode = 2 (12x9x4) */
121 3, /* size value (32MByte) */
wdenkf3e0de62003-06-04 15:05:30 +0000122 0}, /* ECC disabled */
123 { 0xff, /* terminator */
124 0xff,
125 0xff,
126 0xff,
127 0xff,
128 0xff,
129 0xff,
130 0xff }
131};
132#else
wdenk858b1a62002-09-30 16:12:23 +0000133const sdram_t sdram_table[] = {
134 { 0x0f, /* Rev A, 128MByte -1 Board */
135 3, /* Case Latenty = 3 */
136 3, /* trp 20ns / 7.5 ns datain[27] */
wdenk33149b82003-05-23 11:38:58 +0000137 3, /* trcd 20ns /7.5 ns (datain[29]) */
138 6, /* tras 44ns /7.5 ns (datain[30]) */
wdenk858b1a62002-09-30 16:12:23 +0000139 4, /* tcpt 44 - 20ns = 24ns */
wdenk33149b82003-05-23 11:38:58 +0000140 3, /* Address Mode = 3 */
wdenk858b1a62002-09-30 16:12:23 +0000141 5, /* size value */
142 1}, /* ECC enabled */
143 { 0x07, /* Rev A, 64MByte -2 Board */
144 3, /* Case Latenty = 3 */
145 3, /* trp 20ns / 7.5 ns datain[27] */
wdenk33149b82003-05-23 11:38:58 +0000146 3, /* trcd 20ns /7.5 ns (datain[29]) */
147 6, /* tras 44ns /7.5 ns (datain[30]) */
wdenk858b1a62002-09-30 16:12:23 +0000148 4, /* tcpt 44 - 20ns = 24ns */
wdenk33149b82003-05-23 11:38:58 +0000149 2, /* Address Mode = 2 */
wdenk858b1a62002-09-30 16:12:23 +0000150 4, /* size value */
151 1}, /* ECC enabled */
wdenk3e386912003-04-05 00:53:31 +0000152 { 0x03, /* Rev A, 128MByte -4 Board */
153 3, /* Case Latenty = 3 */
154 3, /* trp 20ns / 7.5 ns datain[27] */
wdenk33149b82003-05-23 11:38:58 +0000155 3, /* trcd 20ns /7.5 ns (datain[29]) */
156 6, /* tras 44ns /7.5 ns (datain[30]) */
wdenk3e386912003-04-05 00:53:31 +0000157 4, /* tcpt 44 - 20ns = 24ns */
wdenk33149b82003-05-23 11:38:58 +0000158 3, /* Address Mode = 3 */
159 5, /* size value */
160 1}, /* ECC enabled */
161 { 0x1f, /* Rev B, 128MByte -3 Board */
162 3, /* Case Latenty = 3 */
163 3, /* trp 20ns / 7.5 ns datain[27] */
164 3, /* trcd 20ns /7.5 ns (datain[29]) */
165 6, /* tras 44ns /7.5 ns (datain[30]) */
166 4, /* tcpt 44 - 20ns = 24ns */
167 3, /* Address Mode = 3 */
wdenk3e386912003-04-05 00:53:31 +0000168 5, /* size value */
169 1}, /* ECC enabled */
wdenk4a551702003-10-08 23:26:14 +0000170 { 0x2f, /* Rev C, 128MByte -3 Board */
171 3, /* Case Latenty = 3 */
172 3, /* trp 20ns / 7.5 ns datain[27] */
173 3, /* trcd 20ns /7.5 ns (datain[29]) */
174 6, /* tras 44ns /7.5 ns (datain[30]) */
175 4, /* tcpt 44 - 20ns = 24ns */
176 3, /* Address Mode = 3 */
177 5, /* size value */
178 1}, /* ECC enabled */
wdenk858b1a62002-09-30 16:12:23 +0000179 { 0xff, /* terminator */
180 0xff,
181 0xff,
182 0xff,
183 0xff,
184 0xff,
185 0xff,
186 0xff }
187};
wdenkf3e0de62003-06-04 15:05:30 +0000188#endif /*CONFIG_MIP405T */
wdenk858b1a62002-09-30 16:12:23 +0000189void SDRAM_err (const char *s)
190{
191#ifndef SDRAM_DEBUG
wdenk858b1a62002-09-30 16:12:23 +0000192 (void) get_clocks ();
193 gd->baudrate = 9600;
194 serial_init ();
195#endif
196 serial_puts ("\n");
197 serial_puts (s);
198 serial_puts ("\n enable SDRAM_DEBUG for more info\n");
199 for (;;);
200}
201
202
203unsigned char get_board_revcfg (void)
204{
205 out8 (PER_BOARD_ADDR, 0);
206 return (in8 (PER_BOARD_ADDR));
207}
208
209
210#ifdef SDRAM_DEBUG
211
212void write_hex (unsigned char i)
213{
214 char cc;
215
216 cc = i >> 4;
217 cc &= 0xf;
218 if (cc > 9)
219 serial_putc (cc + 55);
220 else
221 serial_putc (cc + 48);
222 cc = i & 0xf;
223 if (cc > 9)
224 serial_putc (cc + 55);
225 else
226 serial_putc (cc + 48);
227}
228
229void write_4hex (unsigned long val)
230{
231 write_hex ((unsigned char) (val >> 24));
232 write_hex ((unsigned char) (val >> 16));
233 write_hex ((unsigned char) (val >> 8));
234 write_hex ((unsigned char) val);
235}
236
237#endif
238
239
240int init_sdram (void)
241{
wdenk858b1a62002-09-30 16:12:23 +0000242 unsigned long tmp, baseaddr;
243 unsigned short i;
244 unsigned char trp_clocks,
245 trcd_clocks,
246 tras_clocks,
Stefan Roese4233faf2011-11-15 08:03:39 +0000247 trc_clocks;
wdenk858b1a62002-09-30 16:12:23 +0000248 unsigned char cal_val;
249 unsigned char bc;
wdenkf3e0de62003-06-04 15:05:30 +0000250 unsigned long sdram_tim, sdram_bank;
wdenk858b1a62002-09-30 16:12:23 +0000251
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200252 /*i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);*/
wdenk858b1a62002-09-30 16:12:23 +0000253 (void) get_clocks ();
254 gd->baudrate = 9600;
255 serial_init ();
wdenkf3e0de62003-06-04 15:05:30 +0000256 /* set up the pld */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200257 mtdcr (EBC0_CFGADDR, PB7AP);
258 mtdcr (EBC0_CFGDATA, PLD_AP);
259 mtdcr (EBC0_CFGADDR, PB7CR);
260 mtdcr (EBC0_CFGDATA, PLD_CR);
wdenkf3e0de62003-06-04 15:05:30 +0000261 /* THIS IS OBSOLETE */
262 /* set up the board rev reg*/
Stefan Roesed1c3b272009-09-09 16:25:29 +0200263 mtdcr (EBC0_CFGADDR, PB5AP);
264 mtdcr (EBC0_CFGDATA, BOARD_AP);
265 mtdcr (EBC0_CFGADDR, PB5CR);
266 mtdcr (EBC0_CFGDATA, BOARD_CR);
wdenkf3e0de62003-06-04 15:05:30 +0000267#ifdef SDRAM_DEBUG
268 /* get all informations from PLD */
269 serial_puts ("\nPLD Part 0x");
270 bc = in8 (PLD_PART_REG);
271 write_hex (bc);
272 serial_puts ("\nPLD Vers 0x");
273 bc = in8 (PLD_VERS_REG);
274 write_hex (bc);
275 serial_puts ("\nBoard Rev 0x");
276 bc = in8 (PLD_BOARD_CFG_REG);
277 write_hex (bc);
278 serial_puts ("\n");
279#endif
280 /* check board */
281 bc = in8 (PLD_PART_REG);
282#if defined(CONFIG_MIP405T)
283 if((bc & 0x80)==0)
284 SDRAM_err ("U-Boot configured for a MIP405T not for a MIP405!!!\n");
285#else
286 if((bc & 0x80)==0x80)
287 SDRAM_err ("U-Boot configured for a MIP405 not for a MIP405T!!!\n");
288#endif
wdenkf3e0de62003-06-04 15:05:30 +0000289 /* set-up the chipselect machine */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200290 mtdcr (EBC0_CFGADDR, PB0CR); /* get cs0 config reg */
291 tmp = mfdcr (EBC0_CFGDATA);
wdenkf3e0de62003-06-04 15:05:30 +0000292 if ((tmp & 0x00002000) == 0) {
wdenk858b1a62002-09-30 16:12:23 +0000293 /* MPS Boot, set up the flash */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200294 mtdcr (EBC0_CFGADDR, PB1AP);
295 mtdcr (EBC0_CFGDATA, FLASH_AP);
296 mtdcr (EBC0_CFGADDR, PB1CR);
297 mtdcr (EBC0_CFGDATA, FLASH_CR);
wdenk858b1a62002-09-30 16:12:23 +0000298 } else {
299 /* Flash boot, set up the MPS */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200300 mtdcr (EBC0_CFGADDR, PB1AP);
301 mtdcr (EBC0_CFGDATA, MPS_AP);
302 mtdcr (EBC0_CFGADDR, PB1CR);
303 mtdcr (EBC0_CFGDATA, MPS_CR);
wdenk858b1a62002-09-30 16:12:23 +0000304 }
305 /* set up UART0 (CS2) and UART1 (CS3) */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200306 mtdcr (EBC0_CFGADDR, PB2AP);
307 mtdcr (EBC0_CFGDATA, UART0_AP);
308 mtdcr (EBC0_CFGADDR, PB2CR);
309 mtdcr (EBC0_CFGDATA, UART0_CR);
310 mtdcr (EBC0_CFGADDR, PB3AP);
311 mtdcr (EBC0_CFGDATA, UART1_AP);
312 mtdcr (EBC0_CFGADDR, PB3CR);
313 mtdcr (EBC0_CFGDATA, UART1_CR);
wdenkf3e0de62003-06-04 15:05:30 +0000314 bc = in8 (PLD_BOARD_CFG_REG);
wdenk858b1a62002-09-30 16:12:23 +0000315#ifdef SDRAM_DEBUG
316 serial_puts ("\nstart SDRAM Setup\n");
317 serial_puts ("\nBoard Rev: ");
318 write_hex (bc);
319 serial_puts ("\n");
320#endif
321 i = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200322 baseaddr = CONFIG_SYS_SDRAM_BASE;
wdenk858b1a62002-09-30 16:12:23 +0000323 while (sdram_table[i].sz != 0xff) {
324 if (sdram_table[i].boardtype == bc)
325 break;
326 i++;
327 }
328 if (sdram_table[i].boardtype != bc)
329 SDRAM_err ("No SDRAM table found for this board!!!\n");
330#ifdef SDRAM_DEBUG
331 serial_puts (" found table ");
332 write_hex (i);
333 serial_puts (" \n");
334#endif
wdenk27b207f2003-07-24 23:38:38 +0000335 /* since the ECC initialisation needs some time,
336 * we show that we're alive
337 */
338 if (sdram_table[i].ecc)
339 serial_puts ("\nInitializing SDRAM, Please stand by");
wdenk858b1a62002-09-30 16:12:23 +0000340 cal_val = sdram_table[i].cal - 1; /* Cas Latency */
341 trp_clocks = sdram_table[i].trp; /* 20ns / 7.5 ns datain[27] */
342 trcd_clocks = sdram_table[i].trcd; /* 20ns /7.5 ns (datain[29]) */
343 tras_clocks = sdram_table[i].tras; /* 44ns /7.5 ns (datain[30]) */
344 /* ctp = ((trp + tras) - trp - trcd) => tras - trcd */
wdenk858b1a62002-09-30 16:12:23 +0000345 /* trc_clocks is sum of trp_clocks + tras_clocks */
346 trc_clocks = trp_clocks + tras_clocks;
347 /* get SDRAM timing register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200348 mtdcr (SDRAM0_CFGADDR, SDRAM0_TR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200349 sdram_tim = mfdcr (SDRAM0_CFGDATA) & ~0x018FC01F;
wdenk858b1a62002-09-30 16:12:23 +0000350 /* insert CASL value */
351 sdram_tim |= ((unsigned long) (cal_val)) << 23;
352 /* insert PTA value */
353 sdram_tim |= ((unsigned long) (trp_clocks - 1)) << 18;
354 /* insert CTP value */
355 sdram_tim |=
356 ((unsigned long) (trc_clocks - trp_clocks -
357 trcd_clocks)) << 16;
358 /* insert LDF (always 01) */
359 sdram_tim |= ((unsigned long) 0x01) << 14;
360 /* insert RFTA value */
361 sdram_tim |= ((unsigned long) (trc_clocks - 4)) << 2;
362 /* insert RCD value */
363 sdram_tim |= ((unsigned long) (trcd_clocks - 1)) << 0;
364
365 tmp = ((unsigned long) (sdram_table[i].am - 1) << 13); /* AM = 3 */
366 /* insert SZ value; */
367 tmp |= ((unsigned long) sdram_table[i].sz << 17);
368 /* get SDRAM bank 0 register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200369 mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200370 sdram_bank = mfdcr (SDRAM0_CFGDATA) & ~0xFFCEE001;
wdenk858b1a62002-09-30 16:12:23 +0000371 sdram_bank |= (baseaddr | tmp | 0x01);
372
373#ifdef SDRAM_DEBUG
374 serial_puts ("sdtr: ");
375 write_4hex (sdram_tim);
376 serial_puts ("\n");
377#endif
378
379 /* write SDRAM timing register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200380 mtdcr (SDRAM0_CFGADDR, SDRAM0_TR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200381 mtdcr (SDRAM0_CFGDATA, sdram_tim);
wdenk858b1a62002-09-30 16:12:23 +0000382
383#ifdef SDRAM_DEBUG
384 serial_puts ("mb0cf: ");
385 write_4hex (sdram_bank);
386 serial_puts ("\n");
387#endif
388
389 /* write SDRAM bank 0 register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200390 mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200391 mtdcr (SDRAM0_CFGDATA, sdram_bank);
wdenk858b1a62002-09-30 16:12:23 +0000392
393 if (get_bus_freq (tmp) > 110000000) { /* > 110MHz */
394 /* get SDRAM refresh interval register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200395 mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200396 tmp = mfdcr (SDRAM0_CFGDATA) & ~0x3FF80000;
wdenk858b1a62002-09-30 16:12:23 +0000397 tmp |= 0x07F00000;
398 } else {
399 /* get SDRAM refresh interval register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200400 mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200401 tmp = mfdcr (SDRAM0_CFGDATA) & ~0x3FF80000;
wdenk858b1a62002-09-30 16:12:23 +0000402 tmp |= 0x05F00000;
403 }
404 /* write SDRAM refresh interval register */
Stefan Roese95b602b2009-09-24 13:59:57 +0200405 mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200406 mtdcr (SDRAM0_CFGDATA, tmp);
wdenk858b1a62002-09-30 16:12:23 +0000407 /* enable ECC if used */
wdenkf3e0de62003-06-04 15:05:30 +0000408#if defined(ENABLE_ECC) && !defined(CONFIG_BOOT_PCI)
wdenk858b1a62002-09-30 16:12:23 +0000409 if (sdram_table[i].ecc) {
410 /* disable checking for all banks */
wdenkf3e0de62003-06-04 15:05:30 +0000411 unsigned long *p;
wdenk858b1a62002-09-30 16:12:23 +0000412#ifdef SDRAM_DEBUG
413 serial_puts ("disable ECC.. ");
414#endif
Stefan Roese95b602b2009-09-24 13:59:57 +0200415 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200416 tmp = mfdcr (SDRAM0_CFGDATA);
wdenk858b1a62002-09-30 16:12:23 +0000417 tmp &= 0xff0fffff; /* disable all banks */
Stefan Roese95b602b2009-09-24 13:59:57 +0200418 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
wdenk858b1a62002-09-30 16:12:23 +0000419 /* set up SDRAM Controller with ECC enabled */
420#ifdef SDRAM_DEBUG
421 serial_puts ("setup SDRAM Controller.. ");
422#endif
Stefan Roesed1c3b272009-09-09 16:25:29 +0200423 mtdcr (SDRAM0_CFGDATA, tmp);
Stefan Roese95b602b2009-09-24 13:59:57 +0200424 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200425 tmp = (mfdcr (SDRAM0_CFGDATA) & ~0xFFE00000) | 0x90800000;
Stefan Roese95b602b2009-09-24 13:59:57 +0200426 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200427 mtdcr (SDRAM0_CFGDATA, tmp);
wdenk858b1a62002-09-30 16:12:23 +0000428 udelay (600);
429#ifdef SDRAM_DEBUG
430 serial_puts ("fill the memory..\n");
431#endif
432 serial_puts (".");
433 /* now, fill all the memory */
434 tmp = ((4 * MEGA_BYTE) << sdram_table[i].sz);
435 p = (unsigned long) 0;
436 while ((unsigned long) p < tmp) {
437 *p++ = 0L;
438 if (!((unsigned long) p % 0x00800000)) /* every 8MByte */
439 serial_puts (".");
wdenk858b1a62002-09-30 16:12:23 +0000440 }
441 /* enable bank 0 */
442 serial_puts (".");
443#ifdef SDRAM_DEBUG
444 serial_puts ("enable ECC\n");
445#endif
446 udelay (400);
Stefan Roese95b602b2009-09-24 13:59:57 +0200447 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200448 tmp = mfdcr (SDRAM0_CFGDATA);
wdenk858b1a62002-09-30 16:12:23 +0000449 tmp |= 0x00800000; /* enable bank 0 */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200450 mtdcr (SDRAM0_CFGDATA, tmp);
wdenk858b1a62002-09-30 16:12:23 +0000451 udelay (400);
452 } else
453#endif
454 {
455 /* enable SDRAM controller with no ECC, 32-bit SDRAM width, 16 byte burst */
Stefan Roese95b602b2009-09-24 13:59:57 +0200456 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200457 tmp = (mfdcr (SDRAM0_CFGDATA) & ~0xFFE00000) | 0x80C00000;
Stefan Roese95b602b2009-09-24 13:59:57 +0200458 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200459 mtdcr (SDRAM0_CFGDATA, tmp);
wdenk858b1a62002-09-30 16:12:23 +0000460 udelay (400);
461 }
462 serial_puts ("\n");
463 return (0);
464}
465
wdenkc837dcb2004-01-20 23:12:12 +0000466int board_early_init_f (void)
wdenk858b1a62002-09-30 16:12:23 +0000467{
468 init_sdram ();
469
470 /*-------------------------------------------------------------------------+
471 | Interrupt controller setup for the PIP405 board.
472 | Note: IRQ 0-15 405GP internally generated; active high; level sensitive
473 | IRQ 16 405GP internally generated; active low; level sensitive
474 | IRQ 17-24 RESERVED
475 | IRQ 25 (EXT IRQ 0) SouthBridge; active low; level sensitive
476 | IRQ 26 (EXT IRQ 1) NMI: active low; level sensitive
477 | IRQ 27 (EXT IRQ 2) SMI: active Low; level sensitive
478 | IRQ 28 (EXT IRQ 3) PCI SLOT 3; active low; level sensitive
479 | IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
480 | IRQ 30 (EXT IRQ 5) PCI SLOT 1; active low; level sensitive
481 | IRQ 31 (EXT IRQ 6) PCI SLOT 0; active low; level sensitive
482 | Note for MIP405 board:
483 | An interrupt taken for the SouthBridge (IRQ 25) indicates that
484 | the Interrupt Controller in the South Bridge has caused the
485 | interrupt. The IC must be read to determine which device
486 | caused the interrupt.
487 |
488 +-------------------------------------------------------------------------*/
Stefan Roese952e7762009-09-24 09:55:50 +0200489 mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */
490 mtdcr (UIC0ER, 0x00000000); /* disable all ints */
491 mtdcr (UIC0CR, 0x00000000); /* set all to be non-critical (for now) */
492 mtdcr (UIC0PR, 0xFFFFFF80); /* set int polarities */
493 mtdcr (UIC0TR, 0x10000000); /* set int trigger levels */
494 mtdcr (UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority */
495 mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */
wdenk858b1a62002-09-30 16:12:23 +0000496 return 0;
497}
498
David Müller39441b32011-12-22 13:38:21 +0100499int board_early_init_r(void)
500{
501 int mode;
502
503 /*
504 * since we are relocated, we can finally enable i-cache
505 * and set up the flash CS correctly
506 */
507 icache_enable();
508 setup_cs_reloc();
509 /* get and display boot mode */
510 mode = get_boot_mode();
511 if (mode & BOOT_PCI)
512 printf("PCI Boot %s Map\n", (mode & BOOT_MPS) ?
513 "MPS" : "Flash");
514 else
515 printf("%s Boot\n", (mode & BOOT_MPS) ?
516 "MPS" : "Flash");
517
518 return 0;
519}
wdenk858b1a62002-09-30 16:12:23 +0000520
521/*
522 * Get some PLD Registers
523 */
524
525unsigned short get_pld_parvers (void)
526{
527 unsigned short result;
528 unsigned char rc;
529
530 rc = in8 (PLD_PART_REG);
531 result = (unsigned short) rc << 8;
532 rc = in8 (PLD_VERS_REG);
533 result |= rc;
534 return result;
535}
536
537
wdenk858b1a62002-09-30 16:12:23 +0000538void user_led0 (unsigned char on)
539{
540 if (on)
541 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) | 0x4));
542 else
543 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) & 0xfb));
544}
545
546
547void ide_set_reset (int idereset)
548{
549 /* if reset = 1 IDE reset will be asserted */
550 if (idereset)
551 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) | 0x1));
552 else {
553 udelay (10000);
554 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) & 0xfe));
555 }
556}
557
558
559/* ------------------------------------------------------------------------- */
560
wdenkf3e0de62003-06-04 15:05:30 +0000561void get_pcbrev_var(unsigned char *pcbrev, unsigned char *var)
wdenk858b1a62002-09-30 16:12:23 +0000562{
wdenkf3e0de62003-06-04 15:05:30 +0000563#if !defined(CONFIG_MIP405T)
564 unsigned char bc,rc,tmp;
wdenk858b1a62002-09-30 16:12:23 +0000565 int i;
wdenk858b1a62002-09-30 16:12:23 +0000566
wdenkf3e0de62003-06-04 15:05:30 +0000567 bc = in8 (PLD_BOARD_CFG_REG);
568 tmp = ~bc;
569 tmp &= 0xf;
wdenk858b1a62002-09-30 16:12:23 +0000570 rc = 0;
571 for (i = 0; i < 4; i++) {
572 rc <<= 1;
wdenkf3e0de62003-06-04 15:05:30 +0000573 rc += (tmp & 0x1);
574 tmp >>= 1;
wdenk858b1a62002-09-30 16:12:23 +0000575 }
576 rc++;
wdenk4a551702003-10-08 23:26:14 +0000577 if(( (((bc>>4) & 0xf)==0x2) /* Rev C PCB or */
578 || (((bc>>4) & 0xf)==0x1)) /* Rev B PCB with */
wdenk33149b82003-05-23 11:38:58 +0000579 && (rc==0x1)) /* Population Option 1 is a -3 */
580 rc=3;
wdenkf3e0de62003-06-04 15:05:30 +0000581 *pcbrev=(bc >> 4) & 0xf;
582 *var=rc;
583#else
584 unsigned char bc;
585 bc = in8 (PLD_BOARD_CFG_REG);
586 *pcbrev=(bc >> 4) & 0xf;
wdenk27b207f2003-07-24 23:38:38 +0000587 *var=16-(bc & 0xf);
wdenkf3e0de62003-06-04 15:05:30 +0000588#endif
589}
590
591/*
592 * Check Board Identity:
593 */
594/* serial String: "MIP405_1000" OR "MIP405T_1000" */
595#if !defined(CONFIG_MIP405T)
596#define BOARD_NAME "MIP405"
597#else
598#define BOARD_NAME "MIP405T"
599#endif
600
601int checkboard (void)
602{
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200603 char s[50];
wdenkf3e0de62003-06-04 15:05:30 +0000604 unsigned char bc, var;
605 int i;
606 backup_t *b = (backup_t *) s;
607
608 puts ("Board: ");
609 get_pcbrev_var(&bc,&var);
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200610 i = getenv_f("serial#", (char *)s, 32);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200611 if ((i == 0) || strncmp ((char *)s, BOARD_NAME,sizeof(BOARD_NAME))) {
wdenk858b1a62002-09-30 16:12:23 +0000612 get_backup_values (b);
613 if (strncmp (b->signature, "MPL\0", 4) != 0) {
wdenkf3e0de62003-06-04 15:05:30 +0000614 puts ("### No HW ID - assuming " BOARD_NAME);
615 printf ("-%d Rev %c", var, 'A' + bc);
wdenk858b1a62002-09-30 16:12:23 +0000616 } else {
wdenkf3e0de62003-06-04 15:05:30 +0000617 b->serial_name[sizeof(BOARD_NAME)-1] = 0;
618 printf ("%s-%d Rev %c SN: %s", b->serial_name, var,
619 'A' + bc, &b->serial_name[sizeof(BOARD_NAME)]);
wdenk858b1a62002-09-30 16:12:23 +0000620 }
621 } else {
wdenkf3e0de62003-06-04 15:05:30 +0000622 s[sizeof(BOARD_NAME)-1] = 0;
623 printf ("%s-%d Rev %c SN: %s", s, var,'A' + bc,
624 &s[sizeof(BOARD_NAME)]);
wdenk858b1a62002-09-30 16:12:23 +0000625 }
626 bc = in8 (PLD_EXT_CONF_REG);
627 printf (" Boot Config: 0x%x\n", bc);
628 return (0);
629}
630
631
632/* ------------------------------------------------------------------------- */
633/* ------------------------------------------------------------------------- */
634/*
635 initdram(int board_type) reads EEPROM via I2c. EEPROM contains all of
636 the necessary info for SDRAM controller configuration
637*/
638/* ------------------------------------------------------------------------- */
639/* ------------------------------------------------------------------------- */
640static int test_dram (unsigned long ramsize);
641
Becky Bruce9973e3c2008-06-09 16:03:40 -0500642phys_size_t initdram (int board_type)
wdenk858b1a62002-09-30 16:12:23 +0000643{
644
645 unsigned long bank_reg[4], tmp, bank_size;
Stefan Roese4233faf2011-11-15 08:03:39 +0000646 int i;
wdenk858b1a62002-09-30 16:12:23 +0000647 unsigned long TotalSize;
648
wdenk858b1a62002-09-30 16:12:23 +0000649 /* since the DRAM controller is allready set up, calculate the size with the
650 bank registers */
Stefan Roese95b602b2009-09-24 13:59:57 +0200651 mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200652 bank_reg[0] = mfdcr (SDRAM0_CFGDATA);
Stefan Roese95b602b2009-09-24 13:59:57 +0200653 mtdcr (SDRAM0_CFGADDR, SDRAM0_B1CR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200654 bank_reg[1] = mfdcr (SDRAM0_CFGDATA);
Stefan Roese95b602b2009-09-24 13:59:57 +0200655 mtdcr (SDRAM0_CFGADDR, SDRAM0_B2CR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200656 bank_reg[2] = mfdcr (SDRAM0_CFGDATA);
Stefan Roese95b602b2009-09-24 13:59:57 +0200657 mtdcr (SDRAM0_CFGADDR, SDRAM0_B3CR);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200658 bank_reg[3] = mfdcr (SDRAM0_CFGDATA);
wdenk858b1a62002-09-30 16:12:23 +0000659 TotalSize = 0;
660 for (i = 0; i < 4; i++) {
661 if ((bank_reg[i] & 0x1) == 0x1) {
662 tmp = (bank_reg[i] >> 17) & 0x7;
663 bank_size = 4 << tmp;
664 TotalSize += bank_size;
Stefan Roese4233faf2011-11-15 08:03:39 +0000665 }
wdenk858b1a62002-09-30 16:12:23 +0000666 }
Stefan Roese95b602b2009-09-24 13:59:57 +0200667 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200668 tmp = mfdcr (SDRAM0_CFGDATA);
wdenk858b1a62002-09-30 16:12:23 +0000669
670 if (!tmp)
671 printf ("No ");
672 printf ("ECC ");
673
674 test_dram (TotalSize * MEGA_BYTE);
675 return (TotalSize * MEGA_BYTE);
676}
677
678/* ------------------------------------------------------------------------- */
679
wdenk858b1a62002-09-30 16:12:23 +0000680
681static int test_dram (unsigned long ramsize)
682{
683#ifdef SDRAM_DEBUG
684 mem_test (0L, ramsize, 1);
685#endif
686 /* not yet implemented */
687 return (1);
688}
689
wdenk27b207f2003-07-24 23:38:38 +0000690/* used to check if the time in RTC is valid */
691static unsigned long start;
692static struct rtc_time tm;
693
wdenk858b1a62002-09-30 16:12:23 +0000694int misc_init_r (void)
695{
wdenk7205e402003-09-10 22:30:53 +0000696 /* adjust flash start and size as well as the offset */
697 gd->bd->bi_flashstart=0-flash_info[0].size;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200698 gd->bd->bi_flashsize=flash_info[0].size-CONFIG_SYS_MONITOR_LEN;
wdenk7205e402003-09-10 22:30:53 +0000699 gd->bd->bi_flashoffset=0;
700
wdenk27b207f2003-07-24 23:38:38 +0000701 /* check, if RTC is running */
702 rtc_get (&tm);
703 start=get_timer(0);
wdenkf3e0de62003-06-04 15:05:30 +0000704 /* if MIP405 has booted from PCI, reset CCR0[24] as described in errata PCI_18 */
Stefan Roesed1c3b272009-09-09 16:25:29 +0200705 if (mfdcr(CPC0_PSR) & PSR_ROM_LOC)
Matthias Fuchs58ea1422009-07-22 17:27:56 +0200706 mtspr(SPRN_CCR0, (mfspr(SPRN_CCR0) & ~0x80));
wdenkf3e0de62003-06-04 15:05:30 +0000707
wdenk858b1a62002-09-30 16:12:23 +0000708 return (0);
709}
710
711
712void print_mip405_rev (void)
713{
wdenkf3e0de62003-06-04 15:05:30 +0000714 unsigned char part, vers, pcbrev, var;
wdenk858b1a62002-09-30 16:12:23 +0000715
wdenkf3e0de62003-06-04 15:05:30 +0000716 get_pcbrev_var(&pcbrev,&var);
wdenk858b1a62002-09-30 16:12:23 +0000717 part = in8 (PLD_PART_REG);
718 vers = in8 (PLD_VERS_REG);
wdenkf3e0de62003-06-04 15:05:30 +0000719 printf ("Rev: " BOARD_NAME "-%d Rev %c PLD %d Vers %d\n",
720 var, pcbrev + 'A', part & 0x7F, vers);
wdenk858b1a62002-09-30 16:12:23 +0000721}
722
wdenk63e73c92004-02-23 22:22:28 +0000723
wdenk27b207f2003-07-24 23:38:38 +0000724extern int mk_date (char *, struct rtc_time *);
wdenk858b1a62002-09-30 16:12:23 +0000725
726int last_stage_init (void)
727{
wdenk27b207f2003-07-24 23:38:38 +0000728 unsigned long stop;
729 struct rtc_time newtm;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200730 char *s;
Peter Tyser331ab602009-09-21 11:20:33 -0500731
wdenk3e386912003-04-05 00:53:31 +0000732 /* write correct LED configuration */
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200733 if (miiphy_write("ppc_4xx_eth0", 0x1, 0x14, 0x2402) != 0) {
wdenk858b1a62002-09-30 16:12:23 +0000734 printf ("Error writing to the PHY\n");
735 }
wdenk3e386912003-04-05 00:53:31 +0000736 /* since LED/CFG2 is not connected on the -2,
737 * write to correct capability information */
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200738 if (miiphy_write("ppc_4xx_eth0", 0x1, 0x4, 0x01E1) != 0) {
wdenk3e386912003-04-05 00:53:31 +0000739 printf ("Error writing to the PHY\n");
740 }
wdenk858b1a62002-09-30 16:12:23 +0000741 print_mip405_rev ();
Jean-Christophe PLAGNIOL-VILLARD28c34502009-05-16 12:14:56 +0200742 stdio_print_current_devices ();
wdenk858b1a62002-09-30 16:12:23 +0000743 check_env ();
wdenk27b207f2003-07-24 23:38:38 +0000744 /* check if RTC time is valid */
745 stop=get_timer(start);
746 while(stop<1200) { /* we wait 1.2 sec to check if the RTC is running */
747 udelay(1000);
748 stop=get_timer(start);
749 }
750 rtc_get (&newtm);
751 if(tm.tm_sec==newtm.tm_sec) {
752 s=getenv("defaultdate");
753 if(!s)
754 mk_date ("010112001970", &newtm);
755 else
756 if(mk_date (s, &newtm)!=0) {
757 printf("RTC: Bad date format in defaultdate\n");
758 return 0;
759 }
760 rtc_reset ();
761 rtc_set(&newtm);
762 }
wdenk858b1a62002-09-30 16:12:23 +0000763 return 0;
764}
765
766/***************************************************************************
767 * some helping routines
768 */
769
770int overwrite_console (void)
771{
York Sun472d5462013-04-01 11:29:11 -0700772 /* return true if console should be overwritten */
773 return ((in8(PLD_EXT_CONF_REG) & 0x1) == 0);
wdenk858b1a62002-09-30 16:12:23 +0000774}
775
776
777/************************************************************************
778* Print MIP405 Info
779************************************************************************/
780void print_mip405_info (void)
781{
782 unsigned char part, vers, cfg, irq_reg, com_mode, ext;
783
784 part = in8 (PLD_PART_REG);
785 vers = in8 (PLD_VERS_REG);
786 cfg = in8 (PLD_BOARD_CFG_REG);
787 irq_reg = in8 (PLD_IRQ_REG);
788 com_mode = in8 (PLD_COM_MODE_REG);
789 ext = in8 (PLD_EXT_CONF_REG);
790
wdenkf3e0de62003-06-04 15:05:30 +0000791 printf ("PLD Part %d version %d\n", part & 0x7F, vers);
wdenk858b1a62002-09-30 16:12:23 +0000792 printf ("Board Revision %c\n", ((cfg >> 4) & 0xf) + 'A');
793 printf ("Population Options %d %d %d %d\n", (cfg) & 0x1,
794 (cfg >> 1) & 0x1, (cfg >> 2) & 0x1, (cfg >> 3) & 0x1);
795 printf ("User LED %s\n", (com_mode & 0x4) ? "on" : "off");
796 printf ("UART Clocks %d\n", (com_mode >> 4) & 0x3);
wdenkf3e0de62003-06-04 15:05:30 +0000797#if !defined(CONFIG_MIP405T)
wdenk858b1a62002-09-30 16:12:23 +0000798 printf ("User Config Switch %d %d %d %d %d %d %d %d\n",
799 (ext) & 0x1, (ext >> 1) & 0x1, (ext >> 2) & 0x1,
800 (ext >> 3) & 0x1, (ext >> 4) & 0x1, (ext >> 5) & 0x1,
801 (ext >> 6) & 0x1, (ext >> 7) & 0x1);
802 printf ("SER1 uses handshakes %s\n",
803 (ext & 0x80) ? "DTR/DSR" : "RTS/CTS");
wdenkf3e0de62003-06-04 15:05:30 +0000804#else
wdenk27b207f2003-07-24 23:38:38 +0000805 printf ("User Config Switch %d %d %d %d %d %d %d %d\n",
wdenkf3e0de62003-06-04 15:05:30 +0000806 (ext) & 0x1, (ext >> 1) & 0x1, (ext >> 2) & 0x1,
807 (ext >> 3) & 0x1, (ext >> 4) & 0x1, (ext >> 5) & 0x1,
wdenk27b207f2003-07-24 23:38:38 +0000808 (ext >> 6) & 0x1,(ext >> 7) & 0x1);
wdenkf3e0de62003-06-04 15:05:30 +0000809#endif
wdenk858b1a62002-09-30 16:12:23 +0000810 printf ("IDE Reset %s\n", (ext & 0x01) ? "asserted" : "not asserted");
811 printf ("IRQs:\n");
812 printf (" PIIX INTR: %s\n", (irq_reg & 0x80) ? "inactive" : "active");
wdenkf3e0de62003-06-04 15:05:30 +0000813#if !defined(CONFIG_MIP405T)
wdenk858b1a62002-09-30 16:12:23 +0000814 printf (" UART0 IRQ: %s\n", (irq_reg & 0x40) ? "inactive" : "active");
815 printf (" UART1 IRQ: %s\n", (irq_reg & 0x20) ? "inactive" : "active");
wdenkf3e0de62003-06-04 15:05:30 +0000816#endif
wdenk858b1a62002-09-30 16:12:23 +0000817 printf (" PIIX SMI: %s\n", (irq_reg & 0x10) ? "inactive" : "active");
818 printf (" PIIX INIT: %s\n", (irq_reg & 0x8) ? "inactive" : "active");
819 printf (" PIIX NMI: %s\n", (irq_reg & 0x4) ? "inactive" : "active");
820}