]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mpc512x: fix fixed_sdram() init code.
authorWolfgang Denk <wd@denx.de>
Sun, 4 Oct 2009 20:56:08 +0000 (22:56 +0200)
committerWolfgang Denk <wd@denx.de>
Wed, 7 Oct 2009 22:23:12 +0000 (00:23 +0200)
Commit 054197ba and later fixes used an array to initialize some of
the MDDRC parameters; however, the use of an array turned out to be a
bad idea as it was not possible to correlate structure entries to
array indices in readable and reliable way. Now we use a struct
instead, which makes this self-explanatory.

Signed-off-by: Wolfgang Denk <wd@denx.de>
board/freescale/mpc5121ads/mpc5121ads.c
cpu/mpc512x/fixed_sdram.c
include/asm-ppc/immap_512x.h
include/asm-ppc/mpc512x.h

index 13bd73c81e9cfc1ad9d408156e8c0f3bf187781e..2fa365009254314a4230fa693d3edbb2a32d4033 100644 (file)
@@ -169,11 +169,11 @@ phys_size_t initdram(int board_type)
         * Elpida MDDRC and initialization settings are an alternative
         * to the Default Micron ones for all but the earliest Rev 4 boards
         */
-       u32 elpida_mddrc_config[4] = {
-               CONFIG_SYS_MDDRC_TIME_CFG0,
-               CONFIG_SYS_MDDRC_TIME_CFG1_ELPIDA,
-               CONFIG_SYS_MDDRC_TIME_CFG2_ELPIDA,
-               CONFIG_SYS_MDDRC_SYS_CFG_ELPIDA,
+       ddr512x_config_t elpida_mddrc_config = {
+               .ddr_sys_config   = CONFIG_SYS_MDDRC_SYS_CFG_ELPIDA,
+               .ddr_time_config0 = CONFIG_SYS_MDDRC_TIME_CFG0,
+               .ddr_time_config1 = CONFIG_SYS_MDDRC_TIME_CFG1_ELPIDA,
+               .ddr_time_config2 = CONFIG_SYS_MDDRC_TIME_CFG2_ELPIDA,
        };
 
        u32 elpida_init_sequence[] = {
@@ -229,7 +229,7 @@ phys_size_t initdram(int board_type)
        if (is_micron()) {
                msize = fixed_sdram(NULL, NULL, 0);
        } else {
-               msize = fixed_sdram(elpida_mddrc_config,
+               msize = fixed_sdram(&elpida_mddrc_config,
                                elpida_init_sequence,
                                sizeof(elpida_init_sequence)/sizeof(u32));
        }
index 673d61ee1005af04b84b7e846fd81f84d91495d9..442b5fc918009ddd9e310dfe5ced34bbec31ec9b 100644 (file)
 #include <asm/mpc512x.h>
 
 /*
- * MDDRC Config Runtime Settings in order of the 4 MDDRC cfg registers
+ * MDDRC Config Runtime Settings
  */
-u32 default_mddrc_config[4] = {
-       CONFIG_SYS_MDDRC_TIME_CFG0,     /* time_config0 */
-       CONFIG_SYS_MDDRC_TIME_CFG1,     /* time_config1 */
-       CONFIG_SYS_MDDRC_TIME_CFG2,     /* time_config2 */
-       CONFIG_SYS_MDDRC_SYS_CFG,       /* sys_config   */
+ddr512x_config_t default_mddrc_config = {
+       .ddr_sys_config   = CONFIG_SYS_MDDRC_SYS_CFG,
+       .ddr_time_config0 = CONFIG_SYS_MDDRC_TIME_CFG0,
+       .ddr_time_config1 = CONFIG_SYS_MDDRC_TIME_CFG1,
+       .ddr_time_config2 = CONFIG_SYS_MDDRC_TIME_CFG2,
 };
 
 u32 default_init_seq[] = {
@@ -74,7 +74,8 @@ u32 default_init_seq[] = {
  * The board doesn't use memory modules that have serial presence
  * detect or similar mechanism for discovery of the DRAM settings
  */
-long int fixed_sdram(u32 *mddrc_config, u32 *dram_init_seq, int seq_sz)
+long int fixed_sdram(ddr512x_config_t *mddrc_config,
+                       u32 *dram_init_seq, int seq_sz)
 {
        volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
        u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
@@ -83,7 +84,7 @@ long int fixed_sdram(u32 *mddrc_config, u32 *dram_init_seq, int seq_sz)
 
        /* take default settings and init sequence if necessary */
        if (mddrc_config == NULL)
-               mddrc_config = default_mddrc_config;
+               mddrc_config = &default_mddrc_config;
        if (dram_init_seq == NULL) {
                dram_init_seq = default_init_seq;
                seq_sz = sizeof(default_init_seq)/sizeof(u32);
@@ -130,18 +131,22 @@ long int fixed_sdram(u32 *mddrc_config, u32 *dram_init_seq, int seq_sz)
         *  put MDDRC in CMD mode and
         *  set the max time between refreshes to 0 during init process
         */
-       out_be32(&im->mddrc.ddr_sys_config, mddrc_config[3] | MDDRC_SYS_CFG_CMD_MASK);
-       out_be32(&im->mddrc.ddr_time_config0, mddrc_config[0] & MDDRC_REFRESH_ZERO_MASK);
-       out_be32(&im->mddrc.ddr_time_config1, mddrc_config[1]);
-       out_be32(&im->mddrc.ddr_time_config2, mddrc_config[2]);
+       out_be32(&im->mddrc.ddr_sys_config,
+               mddrc_config->ddr_sys_config | MDDRC_SYS_CFG_CMD_MASK);
+       out_be32(&im->mddrc.ddr_time_config0,
+               mddrc_config->ddr_time_config0 & MDDRC_REFRESH_ZERO_MASK);
+       out_be32(&im->mddrc.ddr_time_config1,
+               mddrc_config->ddr_time_config1);
+       out_be32(&im->mddrc.ddr_time_config2,
+               mddrc_config->ddr_time_config2);
 
        /* Initialize DDR with either default or supplied init sequence */
        for (i = 0; i < seq_sz; i++)
                out_be32(&im->mddrc.ddr_command, dram_init_seq[i]);
 
        /* Start MDDRC */
-       out_be32(&im->mddrc.ddr_time_config0, mddrc_config[0]);
-       out_be32(&im->mddrc.ddr_sys_config, mddrc_config[3]);
+       out_be32(&im->mddrc.ddr_time_config0, mddrc_config->ddr_time_config0);
+       out_be32(&im->mddrc.ddr_sys_config, mddrc_config->ddr_sys_config);
 
        return msize;
 }
index 79cdd80298f9fb1de907905103316ac1d9ff1509..bdc6ff28453839c66e85e94aed3cb8b0d431d0d3 100644 (file)
@@ -346,6 +346,16 @@ typedef struct ddr512x {
 #define MDDRC_SYS_CFG_CMD_MASK 0x10000000
 #define MDDRC_REFRESH_ZERO_MASK        0x0000FFFF
 
+/*
+ * DDR Memory Controller Configuration settings
+ */
+typedef struct ddr512x_config {
+       u32 ddr_sys_config;     /* System Configuration Register */
+       u32 ddr_time_config0;   /* Timing Configuration Register */
+       u32 ddr_time_config1;   /* Timing Configuration Register */
+       u32 ddr_time_config2;   /* Timing Configuration Register */
+} ddr512x_config_t;
+
 /*
  * DMA/Messaging Unit
  */
index 8ef0d9ca6ddbf4e77d68ccde6357ed6f3ff8b4f4..960e2292942a353db9cdb940b364c983e8cb719c 100644 (file)
@@ -50,7 +50,8 @@ static inline void sync_law(volatile void *addr)
 /*
  * Prototypes
  */
-extern long int fixed_sdram(u32 *mddrc_config, u32 *dram_init_seq, int seq_sz);
+extern long int fixed_sdram(ddr512x_config_t *mddrc_config,
+                               u32 *dram_init_seq, int seq_sz);
 extern int mpc5121_diu_init(void);
 extern void ide_set_reset(int idereset);