diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-08-26 23:52:58 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-08-27 11:43:52 -0500 |
commit | 8e55313b7ae12352a343f9b9962e662dbd897187 (patch) | |
tree | 6181c86879fee4598e31b754db70c96b40964210 /board/sbc8560/sbc8560.c | |
parent | 9658bec2e8f55d56ca1be70090ce5a348be4980f (diff) | |
download | u-boot-imx-8e55313b7ae12352a343f9b9962e662dbd897187.zip u-boot-imx-8e55313b7ae12352a343f9b9962e662dbd897187.tar.gz u-boot-imx-8e55313b7ae12352a343f9b9962e662dbd897187.tar.bz2 |
FSL DDR: Convert SBC8560 to new DDR code.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/sbc8560/sbc8560.c')
-rw-r--r-- | board/sbc8560/sbc8560.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/sbc8560/sbc8560.c b/board/sbc8560/sbc8560.c index d9e598c..dc66170 100644 --- a/board/sbc8560/sbc8560.c +++ b/board/sbc8560/sbc8560.c @@ -29,7 +29,9 @@ #include <common.h> #include <asm/processor.h> +#include <asm/mmu.h> #include <asm/immap_85xx.h> +#include <asm/fsl_ddr_sdram.h> #include <ioports.h> #include <spd_sdram.h> #include <miiphy.h> @@ -283,7 +285,9 @@ phys_size_t initdram (int board_type) #endif #if defined(CONFIG_SPD_EEPROM) - dram_size = spd_sdram (); + dram_size = fsl_ddr_sdram(); + dram_size = setup_ddr_tlbs(dram_size / 0x100000); + dram_size *= 0x100000; #else dram_size = fixed_sdram (); #endif |