]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/mpl/mip405/mip405.c
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
[karo-tx-uboot.git] / board / mpl / mip405 / mip405.c
1 /*
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>
68 #include <asm/ppc4xx.h>
69 #include <asm/ppc4xx-i2c.h>
70 #include <miiphy.h>
71 #include "../common/common_util.h"
72 #include <stdio_dev.h>
73 #include <i2c.h>
74 #include <rtc.h>
75
76 DECLARE_GLOBAL_DATA_PTR;
77
78 #undef SDRAM_DEBUG
79 #define ENABLE_ECC /* for ecc boards */
80 #define FALSE           0
81 #define TRUE            1
82
83 /* stdlib.h causes some compatibility problems; should fixe these! -- wd */
84 #ifndef __ldiv_t_defined
85 typedef struct {
86         long int quot;          /* Quotient     */
87         long int rem;           /* Remainder    */
88 } ldiv_t;
89 extern ldiv_t ldiv (long int __numer, long int __denom);
90 # define __ldiv_t_defined       1
91 #endif
92
93
94 #define PLD_PART_REG            PER_PLD_ADDR + 0
95 #define PLD_VERS_REG            PER_PLD_ADDR + 1
96 #define PLD_BOARD_CFG_REG       PER_PLD_ADDR + 2
97 #define PLD_IRQ_REG             PER_PLD_ADDR + 3
98 #define PLD_COM_MODE_REG        PER_PLD_ADDR + 4
99 #define PLD_EXT_CONF_REG        PER_PLD_ADDR + 5
100
101 #define MEGA_BYTE (1024*1024)
102
103 typedef struct {
104         unsigned char boardtype; /* Board revision and Population Options */
105         unsigned char cal;              /* cas Latency (will be programmend as cal-1) */
106         unsigned char trp;              /* datain27 in clocks */
107         unsigned char trcd;             /* datain29 in clocks */
108         unsigned char tras;             /* datain30 in clocks */
109         unsigned char tctp;             /* tras - trcd in clocks */
110         unsigned char am;               /* Address Mod (will be programmed as am-1) */
111         unsigned char sz;               /* log binary => Size = (4MByte<<sz) 5 = 128, 4 = 64, 3 = 32, 2 = 16, 1=8 */
112         unsigned char ecc;              /* if true, ecc is enabled */
113 } sdram_t;
114 #if defined(CONFIG_MIP405T)
115 const sdram_t sdram_table[] = {
116         { 0x0F, /* MIP405T Rev A, 64MByte -1 Board */
117                 3,      /* Case Latenty = 3 */
118                 3,      /* trp 20ns / 7.5 ns datain[27] */
119                 3,      /* trcd 20ns /7.5 ns (datain[29]) */
120                 6,      /* tras 44ns /7.5 ns  (datain[30]) */
121                 4,      /* tcpt 44 - 20ns = 24ns */
122                 2,      /* Address Mode = 2 (12x9x4) */
123                 3,      /* size value (32MByte) */
124                 0},     /* ECC disabled */
125         { 0xff, /* terminator */
126           0xff,
127           0xff,
128           0xff,
129           0xff,
130           0xff,
131           0xff,
132           0xff }
133 };
134 #else
135 const sdram_t sdram_table[] = {
136         { 0x0f, /* Rev A, 128MByte -1 Board */
137                 3,      /* Case Latenty = 3 */
138                 3,      /* trp 20ns / 7.5 ns datain[27] */
139                 3,      /* trcd 20ns /7.5 ns (datain[29]) */
140                 6,      /* tras 44ns /7.5 ns  (datain[30]) */
141                 4,      /* tcpt 44 - 20ns = 24ns */
142                 3,      /* Address Mode = 3 */
143                 5,      /* size value */
144                 1},     /* ECC enabled */
145         { 0x07, /* Rev A, 64MByte -2 Board */
146                 3,      /* Case Latenty = 3 */
147                 3,      /* trp 20ns / 7.5 ns datain[27] */
148                 3,      /* trcd 20ns /7.5 ns (datain[29]) */
149                 6,      /* tras 44ns /7.5 ns  (datain[30]) */
150                 4,      /* tcpt 44 - 20ns = 24ns */
151                 2,      /* Address Mode = 2 */
152                 4,      /* size value */
153                 1},     /* ECC enabled */
154         { 0x03, /* Rev A, 128MByte -4 Board */
155                 3,      /* Case Latenty = 3 */
156                 3,      /* trp 20ns / 7.5 ns datain[27] */
157                 3,      /* trcd 20ns /7.5 ns (datain[29]) */
158                 6,      /* tras 44ns /7.5 ns  (datain[30]) */
159                 4,      /* tcpt 44 - 20ns = 24ns */
160                 3,      /* Address Mode = 3 */
161                 5,      /* size value */
162                 1},     /* ECC enabled */
163         { 0x1f, /* Rev B, 128MByte -3 Board */
164                 3,      /* Case Latenty = 3 */
165                 3,      /* trp 20ns / 7.5 ns datain[27] */
166                 3,      /* trcd 20ns /7.5 ns (datain[29]) */
167                 6,      /* tras 44ns /7.5 ns  (datain[30]) */
168                 4,      /* tcpt 44 - 20ns = 24ns */
169                 3,      /* Address Mode = 3 */
170                 5,      /* size value */
171                 1},     /* ECC enabled */
172         { 0x2f, /* Rev C, 128MByte -3 Board */
173                 3,      /* Case Latenty = 3 */
174                 3,      /* trp 20ns / 7.5 ns datain[27] */
175                 3,      /* trcd 20ns /7.5 ns (datain[29]) */
176                 6,      /* tras 44ns /7.5 ns  (datain[30]) */
177                 4,      /* tcpt 44 - 20ns = 24ns */
178                 3,      /* Address Mode = 3 */
179                 5,      /* size value */
180                 1},     /* ECC enabled */
181         { 0xff, /* terminator */
182           0xff,
183           0xff,
184           0xff,
185           0xff,
186           0xff,
187           0xff,
188           0xff }
189 };
190 #endif /*CONFIG_MIP405T */
191 void SDRAM_err (const char *s)
192 {
193 #ifndef SDRAM_DEBUG
194         (void) get_clocks ();
195         gd->baudrate = 9600;
196         serial_init ();
197 #endif
198         serial_puts ("\n");
199         serial_puts (s);
200         serial_puts ("\n enable SDRAM_DEBUG for more info\n");
201         for (;;);
202 }
203
204
205 unsigned char get_board_revcfg (void)
206 {
207         out8 (PER_BOARD_ADDR, 0);
208         return (in8 (PER_BOARD_ADDR));
209 }
210
211
212 #ifdef SDRAM_DEBUG
213
214 void write_hex (unsigned char i)
215 {
216         char cc;
217
218         cc = i >> 4;
219         cc &= 0xf;
220         if (cc > 9)
221                 serial_putc (cc + 55);
222         else
223                 serial_putc (cc + 48);
224         cc = i & 0xf;
225         if (cc > 9)
226                 serial_putc (cc + 55);
227         else
228                 serial_putc (cc + 48);
229 }
230
231 void write_4hex (unsigned long val)
232 {
233         write_hex ((unsigned char) (val >> 24));
234         write_hex ((unsigned char) (val >> 16));
235         write_hex ((unsigned char) (val >> 8));
236         write_hex ((unsigned char) val);
237 }
238
239 #endif
240
241
242 int init_sdram (void)
243 {
244         unsigned long   tmp, baseaddr;
245         unsigned short  i;
246         unsigned char   trp_clocks,
247                         trcd_clocks,
248                         tras_clocks,
249                         trc_clocks;
250         unsigned char   cal_val;
251         unsigned char   bc;
252         unsigned long   sdram_tim, sdram_bank;
253
254         /*i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);*/
255         (void) get_clocks ();
256         gd->baudrate = 9600;
257         serial_init ();
258         /* set up the pld */
259         mtdcr (EBC0_CFGADDR, PB7AP);
260         mtdcr (EBC0_CFGDATA, PLD_AP);
261         mtdcr (EBC0_CFGADDR, PB7CR);
262         mtdcr (EBC0_CFGDATA, PLD_CR);
263         /* THIS IS OBSOLETE */
264         /* set up the board rev reg*/
265         mtdcr (EBC0_CFGADDR, PB5AP);
266         mtdcr (EBC0_CFGDATA, BOARD_AP);
267         mtdcr (EBC0_CFGADDR, PB5CR);
268         mtdcr (EBC0_CFGDATA, BOARD_CR);
269 #ifdef SDRAM_DEBUG
270         /* get all informations from PLD */
271         serial_puts ("\nPLD Part  0x");
272         bc = in8 (PLD_PART_REG);
273         write_hex (bc);
274         serial_puts ("\nPLD Vers  0x");
275         bc = in8 (PLD_VERS_REG);
276         write_hex (bc);
277         serial_puts ("\nBoard Rev 0x");
278         bc = in8 (PLD_BOARD_CFG_REG);
279         write_hex (bc);
280         serial_puts ("\n");
281 #endif
282         /* check board */
283         bc = in8 (PLD_PART_REG);
284 #if defined(CONFIG_MIP405T)
285         if((bc & 0x80)==0)
286                 SDRAM_err ("U-Boot configured for a MIP405T not for a MIP405!!!\n");
287 #else
288         if((bc & 0x80)==0x80)
289                 SDRAM_err ("U-Boot configured for a MIP405 not for a MIP405T!!!\n");
290 #endif
291         /* set-up the chipselect machine */
292         mtdcr (EBC0_CFGADDR, PB0CR);            /* get cs0 config reg */
293         tmp = mfdcr (EBC0_CFGDATA);
294         if ((tmp & 0x00002000) == 0) {
295                 /* MPS Boot, set up the flash */
296                 mtdcr (EBC0_CFGADDR, PB1AP);
297                 mtdcr (EBC0_CFGDATA, FLASH_AP);
298                 mtdcr (EBC0_CFGADDR, PB1CR);
299                 mtdcr (EBC0_CFGDATA, FLASH_CR);
300         } else {
301                 /* Flash boot, set up the MPS */
302                 mtdcr (EBC0_CFGADDR, PB1AP);
303                 mtdcr (EBC0_CFGDATA, MPS_AP);
304                 mtdcr (EBC0_CFGADDR, PB1CR);
305                 mtdcr (EBC0_CFGDATA, MPS_CR);
306         }
307         /* set up UART0 (CS2) and UART1 (CS3) */
308         mtdcr (EBC0_CFGADDR, PB2AP);
309         mtdcr (EBC0_CFGDATA, UART0_AP);
310         mtdcr (EBC0_CFGADDR, PB2CR);
311         mtdcr (EBC0_CFGDATA, UART0_CR);
312         mtdcr (EBC0_CFGADDR, PB3AP);
313         mtdcr (EBC0_CFGDATA, UART1_AP);
314         mtdcr (EBC0_CFGADDR, PB3CR);
315         mtdcr (EBC0_CFGDATA, UART1_CR);
316         bc = in8 (PLD_BOARD_CFG_REG);
317 #ifdef SDRAM_DEBUG
318         serial_puts ("\nstart SDRAM Setup\n");
319         serial_puts ("\nBoard Rev: ");
320         write_hex (bc);
321         serial_puts ("\n");
322 #endif
323         i = 0;
324         baseaddr = CONFIG_SYS_SDRAM_BASE;
325         while (sdram_table[i].sz != 0xff) {
326                 if (sdram_table[i].boardtype == bc)
327                         break;
328                 i++;
329         }
330         if (sdram_table[i].boardtype != bc)
331                 SDRAM_err ("No SDRAM table found for this board!!!\n");
332 #ifdef SDRAM_DEBUG
333         serial_puts (" found table ");
334         write_hex (i);
335         serial_puts (" \n");
336 #endif
337         /* since the ECC initialisation needs some time,
338          * we show that we're alive
339          */
340         if (sdram_table[i].ecc)
341                 serial_puts ("\nInitializing SDRAM, Please stand by");
342         cal_val = sdram_table[i].cal - 1;       /* Cas Latency */
343         trp_clocks = sdram_table[i].trp;        /* 20ns / 7.5 ns datain[27] */
344         trcd_clocks = sdram_table[i].trcd;      /* 20ns /7.5 ns (datain[29]) */
345         tras_clocks = sdram_table[i].tras;      /* 44ns /7.5 ns  (datain[30]) */
346         /* ctp = ((trp + tras) - trp - trcd) => tras - trcd */
347         /* trc_clocks is sum of trp_clocks + tras_clocks */
348         trc_clocks = trp_clocks + tras_clocks;
349         /* get SDRAM timing register */
350         mtdcr (SDRAM0_CFGADDR, SDRAM0_TR);
351         sdram_tim = mfdcr (SDRAM0_CFGDATA) & ~0x018FC01F;
352         /* insert CASL value */
353         sdram_tim |= ((unsigned long) (cal_val)) << 23;
354         /* insert PTA value */
355         sdram_tim |= ((unsigned long) (trp_clocks - 1)) << 18;
356         /* insert CTP value */
357         sdram_tim |=
358                         ((unsigned long) (trc_clocks - trp_clocks -
359                                                           trcd_clocks)) << 16;
360         /* insert LDF (always 01) */
361         sdram_tim |= ((unsigned long) 0x01) << 14;
362         /* insert RFTA value */
363         sdram_tim |= ((unsigned long) (trc_clocks - 4)) << 2;
364         /* insert RCD value */
365         sdram_tim |= ((unsigned long) (trcd_clocks - 1)) << 0;
366
367         tmp = ((unsigned long) (sdram_table[i].am - 1) << 13);  /* AM = 3 */
368         /* insert SZ value; */
369         tmp |= ((unsigned long) sdram_table[i].sz << 17);
370         /* get SDRAM bank 0 register */
371         mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
372         sdram_bank = mfdcr (SDRAM0_CFGDATA) & ~0xFFCEE001;
373         sdram_bank |= (baseaddr | tmp | 0x01);
374
375 #ifdef SDRAM_DEBUG
376         serial_puts ("sdtr: ");
377         write_4hex (sdram_tim);
378         serial_puts ("\n");
379 #endif
380
381         /* write SDRAM timing register */
382         mtdcr (SDRAM0_CFGADDR, SDRAM0_TR);
383         mtdcr (SDRAM0_CFGDATA, sdram_tim);
384
385 #ifdef SDRAM_DEBUG
386         serial_puts ("mb0cf: ");
387         write_4hex (sdram_bank);
388         serial_puts ("\n");
389 #endif
390
391         /* write SDRAM bank 0 register */
392         mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
393         mtdcr (SDRAM0_CFGDATA, sdram_bank);
394
395         if (get_bus_freq (tmp) > 110000000) {   /* > 110MHz */
396                 /* get SDRAM refresh interval register */
397                 mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
398                 tmp = mfdcr (SDRAM0_CFGDATA) & ~0x3FF80000;
399                 tmp |= 0x07F00000;
400         } else {
401                 /* get SDRAM refresh interval register */
402                 mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
403                 tmp = mfdcr (SDRAM0_CFGDATA) & ~0x3FF80000;
404                 tmp |= 0x05F00000;
405         }
406         /* write SDRAM refresh interval register */
407         mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
408         mtdcr (SDRAM0_CFGDATA, tmp);
409         /* enable ECC if used */
410 #if defined(ENABLE_ECC) && !defined(CONFIG_BOOT_PCI)
411         if (sdram_table[i].ecc) {
412                 /* disable checking for all banks */
413                 unsigned long   *p;
414 #ifdef SDRAM_DEBUG
415                 serial_puts ("disable ECC.. ");
416 #endif
417                 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
418                 tmp = mfdcr (SDRAM0_CFGDATA);
419                 tmp &= 0xff0fffff;              /* disable all banks */
420                 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
421                 /* set up SDRAM Controller with ECC enabled */
422 #ifdef SDRAM_DEBUG
423                 serial_puts ("setup SDRAM Controller.. ");
424 #endif
425                 mtdcr (SDRAM0_CFGDATA, tmp);
426                 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
427                 tmp = (mfdcr (SDRAM0_CFGDATA) & ~0xFFE00000) | 0x90800000;
428                 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
429                 mtdcr (SDRAM0_CFGDATA, tmp);
430                 udelay (600);
431 #ifdef SDRAM_DEBUG
432                 serial_puts ("fill the memory..\n");
433 #endif
434                 serial_puts (".");
435                 /* now, fill all the memory */
436                 tmp = ((4 * MEGA_BYTE) << sdram_table[i].sz);
437                 p = (unsigned long) 0;
438                 while ((unsigned long) p < tmp) {
439                         *p++ = 0L;
440                         if (!((unsigned long) p % 0x00800000))  /* every 8MByte */
441                                 serial_puts (".");
442                 }
443                 /* enable bank 0 */
444                 serial_puts (".");
445 #ifdef SDRAM_DEBUG
446                 serial_puts ("enable ECC\n");
447 #endif
448                 udelay (400);
449                 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
450                 tmp = mfdcr (SDRAM0_CFGDATA);
451                 tmp |= 0x00800000;              /* enable bank 0 */
452                 mtdcr (SDRAM0_CFGDATA, tmp);
453                 udelay (400);
454         } else
455 #endif
456         {
457                 /* enable SDRAM controller with no ECC, 32-bit SDRAM width, 16 byte burst */
458                 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
459                 tmp = (mfdcr (SDRAM0_CFGDATA) & ~0xFFE00000) | 0x80C00000;
460                 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
461                 mtdcr (SDRAM0_CFGDATA, tmp);
462                 udelay (400);
463         }
464         serial_puts ("\n");
465         return (0);
466 }
467
468 int board_early_init_f (void)
469 {
470         init_sdram ();
471
472    /*-------------------------------------------------------------------------+
473    | Interrupt controller setup for the PIP405 board.
474    | Note: IRQ 0-15  405GP internally generated; active high; level sensitive
475    |       IRQ 16    405GP internally generated; active low; level sensitive
476    |       IRQ 17-24 RESERVED
477    |       IRQ 25 (EXT IRQ 0) SouthBridge; active low; level sensitive
478    |       IRQ 26 (EXT IRQ 1) NMI: active low; level sensitive
479    |       IRQ 27 (EXT IRQ 2) SMI: active Low; level sensitive
480    |       IRQ 28 (EXT IRQ 3) PCI SLOT 3; active low; level sensitive
481    |       IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
482    |       IRQ 30 (EXT IRQ 5) PCI SLOT 1; active low; level sensitive
483    |       IRQ 31 (EXT IRQ 6) PCI SLOT 0; active low; level sensitive
484    | Note for MIP405 board:
485    |       An interrupt taken for the SouthBridge (IRQ 25) indicates that
486    |       the Interrupt Controller in the South Bridge has caused the
487    |       interrupt. The IC must be read to determine which device
488    |       caused the interrupt.
489    |
490    +-------------------------------------------------------------------------*/
491         mtdcr (UIC0SR, 0xFFFFFFFF);     /* clear all ints */
492         mtdcr (UIC0ER, 0x00000000);     /* disable all ints */
493         mtdcr (UIC0CR, 0x00000000);     /* set all to be non-critical (for now) */
494         mtdcr (UIC0PR, 0xFFFFFF80);     /* set int polarities */
495         mtdcr (UIC0TR, 0x10000000);     /* set int trigger levels */
496         mtdcr (UIC0VCR, 0x00000001);    /* set vect base=0,INT0 highest priority */
497         mtdcr (UIC0SR, 0xFFFFFFFF);     /* clear all ints */
498         return 0;
499 }
500
501
502 /*
503  * Get some PLD Registers
504  */
505
506 unsigned short get_pld_parvers (void)
507 {
508         unsigned short result;
509         unsigned char rc;
510
511         rc = in8 (PLD_PART_REG);
512         result = (unsigned short) rc << 8;
513         rc = in8 (PLD_VERS_REG);
514         result |= rc;
515         return result;
516 }
517
518
519 void user_led0 (unsigned char on)
520 {
521         if (on)
522                 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) | 0x4));
523         else
524                 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) & 0xfb));
525 }
526
527
528 void ide_set_reset (int idereset)
529 {
530         /* if reset = 1 IDE reset will be asserted */
531         if (idereset)
532                 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) | 0x1));
533         else {
534                 udelay (10000);
535                 out8 (PLD_COM_MODE_REG, (in8 (PLD_COM_MODE_REG) & 0xfe));
536         }
537 }
538
539
540 /* ------------------------------------------------------------------------- */
541
542 void get_pcbrev_var(unsigned char *pcbrev, unsigned char *var)
543 {
544 #if !defined(CONFIG_MIP405T)
545         unsigned char bc,rc,tmp;
546         int i;
547
548         bc = in8 (PLD_BOARD_CFG_REG);
549         tmp = ~bc;
550         tmp &= 0xf;
551         rc = 0;
552         for (i = 0; i < 4; i++) {
553                 rc <<= 1;
554                 rc += (tmp & 0x1);
555                 tmp >>= 1;
556         }
557         rc++;
558         if((  (((bc>>4) & 0xf)==0x2) /* Rev C PCB or */
559            || (((bc>>4) & 0xf)==0x1)) /* Rev B PCB with */
560                 && (rc==0x1))     /* Population Option 1 is a -3 */
561                 rc=3;
562         *pcbrev=(bc >> 4) & 0xf;
563         *var=rc;
564 #else
565         unsigned char bc;
566         bc = in8 (PLD_BOARD_CFG_REG);
567         *pcbrev=(bc >> 4) & 0xf;
568         *var=16-(bc & 0xf);
569 #endif
570 }
571
572 /*
573  * Check Board Identity:
574  */
575 /* serial String: "MIP405_1000" OR "MIP405T_1000" */
576 #if !defined(CONFIG_MIP405T)
577 #define BOARD_NAME      "MIP405"
578 #else
579 #define BOARD_NAME      "MIP405T"
580 #endif
581
582 int checkboard (void)
583 {
584         char s[50];
585         unsigned char bc, var;
586         int i;
587         backup_t *b = (backup_t *) s;
588
589         puts ("Board: ");
590         get_pcbrev_var(&bc,&var);
591         i = getenv_f("serial#", (char *)s, 32);
592         if ((i == 0) || strncmp ((char *)s, BOARD_NAME,sizeof(BOARD_NAME))) {
593                 get_backup_values (b);
594                 if (strncmp (b->signature, "MPL\0", 4) != 0) {
595                         puts ("### No HW ID - assuming " BOARD_NAME);
596                         printf ("-%d Rev %c", var, 'A' + bc);
597                 } else {
598                         b->serial_name[sizeof(BOARD_NAME)-1] = 0;
599                         printf ("%s-%d Rev %c SN: %s", b->serial_name, var,
600                                         'A' + bc, &b->serial_name[sizeof(BOARD_NAME)]);
601                 }
602         } else {
603                 s[sizeof(BOARD_NAME)-1] = 0;
604                 printf ("%s-%d Rev %c SN: %s", s, var,'A' + bc,
605                                 &s[sizeof(BOARD_NAME)]);
606         }
607         bc = in8 (PLD_EXT_CONF_REG);
608         printf (" Boot Config: 0x%x\n", bc);
609         return (0);
610 }
611
612
613 /* ------------------------------------------------------------------------- */
614 /* ------------------------------------------------------------------------- */
615 /*
616   initdram(int board_type) reads EEPROM via I2c. EEPROM contains all of
617   the necessary info for SDRAM controller configuration
618 */
619 /* ------------------------------------------------------------------------- */
620 /* ------------------------------------------------------------------------- */
621 static int test_dram (unsigned long ramsize);
622
623 phys_size_t initdram (int board_type)
624 {
625
626         unsigned long bank_reg[4], tmp, bank_size;
627         int i;
628         unsigned long TotalSize;
629
630         /* since the DRAM controller is allready set up, calculate the size with the
631            bank registers    */
632         mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
633         bank_reg[0] = mfdcr (SDRAM0_CFGDATA);
634         mtdcr (SDRAM0_CFGADDR, SDRAM0_B1CR);
635         bank_reg[1] = mfdcr (SDRAM0_CFGDATA);
636         mtdcr (SDRAM0_CFGADDR, SDRAM0_B2CR);
637         bank_reg[2] = mfdcr (SDRAM0_CFGDATA);
638         mtdcr (SDRAM0_CFGADDR, SDRAM0_B3CR);
639         bank_reg[3] = mfdcr (SDRAM0_CFGDATA);
640         TotalSize = 0;
641         for (i = 0; i < 4; i++) {
642                 if ((bank_reg[i] & 0x1) == 0x1) {
643                         tmp = (bank_reg[i] >> 17) & 0x7;
644                         bank_size = 4 << tmp;
645                         TotalSize += bank_size;
646                 }
647         }
648         mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
649         tmp = mfdcr (SDRAM0_CFGDATA);
650
651         if (!tmp)
652                 printf ("No ");
653         printf ("ECC ");
654
655         test_dram (TotalSize * MEGA_BYTE);
656         return (TotalSize * MEGA_BYTE);
657 }
658
659 /* ------------------------------------------------------------------------- */
660
661
662 static int test_dram (unsigned long ramsize)
663 {
664 #ifdef SDRAM_DEBUG
665         mem_test (0L, ramsize, 1);
666 #endif
667         /* not yet implemented */
668         return (1);
669 }
670
671 /* used to check if the time in RTC is valid */
672 static unsigned long start;
673 static struct rtc_time tm;
674 extern flash_info_t flash_info[];       /* info for FLASH chips */
675
676 int misc_init_r (void)
677 {
678         /* adjust flash start and size as well as the offset */
679         gd->bd->bi_flashstart=0-flash_info[0].size;
680         gd->bd->bi_flashsize=flash_info[0].size-CONFIG_SYS_MONITOR_LEN;
681         gd->bd->bi_flashoffset=0;
682
683         /* check, if RTC is running */
684         rtc_get (&tm);
685         start=get_timer(0);
686         /* if MIP405 has booted from PCI, reset CCR0[24] as described in errata PCI_18 */
687         if (mfdcr(CPC0_PSR) & PSR_ROM_LOC)
688                mtspr(SPRN_CCR0, (mfspr(SPRN_CCR0) & ~0x80));
689
690         return (0);
691 }
692
693
694 void print_mip405_rev (void)
695 {
696         unsigned char part, vers, pcbrev, var;
697
698         get_pcbrev_var(&pcbrev,&var);
699         part = in8 (PLD_PART_REG);
700         vers = in8 (PLD_VERS_REG);
701         printf ("Rev:   " BOARD_NAME "-%d Rev %c PLD %d Vers %d\n",
702                         var, pcbrev + 'A', part & 0x7F, vers);
703 }
704
705
706 extern int mk_date (char *, struct rtc_time *);
707
708 int last_stage_init (void)
709 {
710         unsigned long stop;
711         struct rtc_time newtm;
712         char *s;
713
714         /* write correct LED configuration */
715         if (miiphy_write("ppc_4xx_eth0", 0x1, 0x14, 0x2402) != 0) {
716                 printf ("Error writing to the PHY\n");
717         }
718         /* since LED/CFG2 is not connected on the -2,
719          * write to correct capability information */
720         if (miiphy_write("ppc_4xx_eth0", 0x1, 0x4, 0x01E1) != 0) {
721                 printf ("Error writing to the PHY\n");
722         }
723         print_mip405_rev ();
724         stdio_print_current_devices ();
725         check_env ();
726         /* check if RTC time is valid */
727         stop=get_timer(start);
728         while(stop<1200) {   /* we wait 1.2 sec to check if the RTC is running */
729                 udelay(1000);
730                 stop=get_timer(start);
731         }
732         rtc_get (&newtm);
733         if(tm.tm_sec==newtm.tm_sec) {
734                 s=getenv("defaultdate");
735                 if(!s)
736                         mk_date ("010112001970", &newtm);
737                 else
738                         if(mk_date (s, &newtm)!=0) {
739                                 printf("RTC: Bad date format in defaultdate\n");
740                                 return 0;
741                         }
742                 rtc_reset ();
743                 rtc_set(&newtm);
744         }
745         return 0;
746 }
747
748 /***************************************************************************
749  * some helping routines
750  */
751
752 int overwrite_console (void)
753 {
754         return ((in8 (PLD_EXT_CONF_REG) & 0x1)==0);     /* return TRUE if console should be overwritten */
755 }
756
757
758 /************************************************************************
759 * Print MIP405 Info
760 ************************************************************************/
761 void print_mip405_info (void)
762 {
763         unsigned char part, vers, cfg, irq_reg, com_mode, ext;
764
765         part = in8 (PLD_PART_REG);
766         vers = in8 (PLD_VERS_REG);
767         cfg = in8 (PLD_BOARD_CFG_REG);
768         irq_reg = in8 (PLD_IRQ_REG);
769         com_mode = in8 (PLD_COM_MODE_REG);
770         ext = in8 (PLD_EXT_CONF_REG);
771
772         printf ("PLD Part %d version %d\n", part & 0x7F, vers);
773         printf ("Board Revision %c\n", ((cfg >> 4) & 0xf) + 'A');
774         printf ("Population Options %d %d %d %d\n", (cfg) & 0x1,
775                         (cfg >> 1) & 0x1, (cfg >> 2) & 0x1, (cfg >> 3) & 0x1);
776         printf ("User LED %s\n", (com_mode & 0x4) ? "on" : "off");
777         printf ("UART Clocks %d\n", (com_mode >> 4) & 0x3);
778 #if !defined(CONFIG_MIP405T)
779         printf ("User Config Switch %d %d %d %d %d %d %d %d\n",
780                         (ext) & 0x1, (ext >> 1) & 0x1, (ext >> 2) & 0x1,
781                         (ext >> 3) & 0x1, (ext >> 4) & 0x1, (ext >> 5) & 0x1,
782                         (ext >> 6) & 0x1, (ext >> 7) & 0x1);
783         printf ("SER1 uses handshakes %s\n",
784                         (ext & 0x80) ? "DTR/DSR" : "RTS/CTS");
785 #else
786         printf ("User Config Switch %d %d %d %d %d %d %d %d\n",
787                         (ext) & 0x1, (ext >> 1) & 0x1, (ext >> 2) & 0x1,
788                         (ext >> 3) & 0x1, (ext >> 4) & 0x1, (ext >> 5) & 0x1,
789                         (ext >> 6) & 0x1,(ext >> 7) & 0x1);
790 #endif
791         printf ("IDE Reset %s\n", (ext & 0x01) ? "asserted" : "not asserted");
792         printf ("IRQs:\n");
793         printf ("  PIIX INTR: %s\n", (irq_reg & 0x80) ? "inactive" : "active");
794 #if !defined(CONFIG_MIP405T)
795         printf ("  UART0 IRQ: %s\n", (irq_reg & 0x40) ? "inactive" : "active");
796         printf ("  UART1 IRQ: %s\n", (irq_reg & 0x20) ? "inactive" : "active");
797 #endif
798         printf ("  PIIX SMI:  %s\n", (irq_reg & 0x10) ? "inactive" : "active");
799         printf ("  PIIX INIT: %s\n", (irq_reg & 0x8) ? "inactive" : "active");
800         printf ("  PIIX NMI:  %s\n", (irq_reg & 0x4) ? "inactive" : "active");
801 }