]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
Set SDelay register in the DDR controller for the MPC5200B chip.
authorRafal Jaworowski <raj@pollux.denx.de>
Wed, 29 Mar 2006 11:17:09 +0000 (13:17 +0200)
committerRafal Jaworowski <raj@pollux.denx.de>
Wed, 29 Mar 2006 11:17:09 +0000 (13:17 +0200)
board/icecube/icecube.c
cpu/mpc5xxx/cpu.c
include/configs/IceCube.h
include/mpc5xxx.h

index 44831c625a932f37f1be1f15ff5696a378f11248..4197a7c5212b2ade40b0bbd5553d4e91a9a9b4a5 100644 (file)
@@ -27,6 +27,7 @@
 #include <common.h>
 #include <mpc5xxx.h>
 #include <pci.h>
+#include <asm/processor.h>
 
 #if defined(CONFIG_LITE5200B)
 #include "mt46v32m16.h"
@@ -89,6 +90,8 @@ long int initdram (int board_type)
 {
        ulong dramsize = 0;
        ulong dramsize2 = 0;
+       uint svr, pvr;
+
 #ifndef CFG_RAMBOOT
        ulong test1, test2;
 
@@ -183,6 +186,24 @@ long int initdram (int board_type)
 
 #endif /* CFG_RAMBOOT */
 
+       /*
+        * On MPC5200B we need to set the special configuration delay in the 
+        * DDR controller. Please refer to Freescale's AN3221 "MPC5200B SDRAM 
+        * Initialization and Configuration", 3.3.1 SDelay--MBAR + 0x0190:
+        *
+        * "The SDelay should be written to a value of 0x00000004. It is 
+        * required to account for changes caused by normal wafer processing 
+        * parameters."
+        */ 
+       svr = get_svr();
+       pvr = get_pvr();
+       if ((SVR_MJREV(svr) >= 2) && 
+           (PVR_MAJ(pvr) == 1) && (PVR_MIN(pvr) == 4)) {
+
+               *(vu_long *)MPC5XXX_SDRAM_SDELAY = 0x04;
+               __asm__ volatile ("sync");
+       }
+
        return dramsize + dramsize2;
 }
 
index 2d695d12eb1025e337d07e96de9219cf0e61632b..8d1e7c637792cad79e9a74ec3c92a0f8666608c5 100644 (file)
@@ -38,7 +38,7 @@ int checkcpu (void)
        ulong clock = gd->cpu_clk;
        char buf[32];
 #ifndef CONFIG_MGT5100
-       uint svr;
+       uint svr, pvr;
 #endif
 
        puts ("CPU:   ");
@@ -47,7 +47,8 @@ int checkcpu (void)
        puts   (CPU_ID_STR);
        printf (" (JTAG ID %08lx)", *(vu_long *)MPC5XXX_CDM_JTAGID);
 #else
-       svr = get_svr ();
+       svr = get_svr();
+       pvr = get_pvr();
        switch (SVR_VER (svr)) {
        case SVR_MPC5200:
                printf ("MPC5200");
@@ -57,11 +58,10 @@ int checkcpu (void)
                break;
        }
 
-       printf (" v%d.%d", SVR_MJREV (svr), SVR_MNREV (svr));
+       printf (" v%d.%d, Core v%d.%d", SVR_MJREV (svr), SVR_MNREV (svr), 
+               PVR_MAJ(pvr), PVR_MIN(pvr));
 #endif
-
        printf (" at %s MHz\n", strmhz (buf, clock));
-
        return 0;
 }
 
index 596e52ce3c708f05e728e2bf730c566d0d2bae42..1152f838d9880682e3e7652bd76582e8bfb05d60 100644 (file)
@@ -56,7 +56,9 @@
  * 0x40000000 - 0x4fffffff - PCI Memory
  * 0x50000000 - 0x50ffffff - PCI IO Space
  */
-#define CONFIG_PCI             1
+#define CONFIG_PCI
+
+#if defined(CONFIG_PCI)
 #define CONFIG_PCI_PNP         1
 #define CONFIG_PCI_SCAN_SHOW   1
 
@@ -67,6 +69,8 @@
 #define CONFIG_PCI_IO_BUS      0x50000000
 #define CONFIG_PCI_IO_PHYS     CONFIG_PCI_IO_BUS
 #define CONFIG_PCI_IO_SIZE     0x01000000
+#define ADD_PCI_CMD            CFG_CMD_PCI
+#endif
 
 #define CFG_XLB_PIPELINING     1
 
@@ -76,8 +80,6 @@
 #define CFG_RX_ETH_BUFFER      8  /* use 8 rx buffer on eepro100  */
 #define CONFIG_NS8382X         1
 
-#define ADD_PCI_CMD            CFG_CMD_PCI
-
 #else  /* MPC5100 */
 
 #define CONFIG_MII             1
index f33d8585522388826b1bba794adbeb05a5ed4f90..50a6ac1e98d5f1aabdb97bc0c31d0f50bebf33b1 100644 (file)
 #if defined(CONFIG_MGT5100)
 #define MPC5XXX_SDRAM_XLBSEL   (MPC5XXX_SDRAM + 0x0010)
 #endif
+#define MPC5XXX_SDRAM_SDELAY   (MPC5XXX_SDRAM + 0x0090)
 
 /* Clock Distribution Module */
 #define MPC5XXX_CDM_JTAGID     (MPC5XXX_CDM + 0x0000)