]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/freescale/t4qds/ddr.c
powerpc/T4QDS: add two stage boot of nand/sd
[karo-tx-uboot.git] / board / freescale / t4qds / ddr.c
index 7586cc3c4bda640e0e07ee786fdd6490bee8e2e4..7abd38def1af6c5751eacfa24d81dab2fd213997 100644 (file)
@@ -117,11 +117,15 @@ phys_size_t initdram(int board_type)
 
        puts("Initializing....using SPD\n");
 
+#if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_RAMBOOT_PBL)
        dram_size = fsl_ddr_sdram();
 
        dram_size = setup_ddr_tlbs(dram_size / 0x100000);
        dram_size *= 0x100000;
 
-       puts("    DDR: ");
+#else
+       /* DDR has been initialised by first stage boot loader */
+       dram_size = fsl_ddr_sdram_size();
+#endif
        return dram_size;
 }