diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-08-26 23:52:32 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-08-27 11:43:52 -0500 |
commit | 9658bec2e8f55d56ca1be70090ce5a348be4980f (patch) | |
tree | 33559925f63bbdd22895f45eea08932b7b3bffc7 /board/mpc8540eval/mpc8540eval.c | |
parent | 6bfa8f723cfd82c55e3ef5620ade396916470a70 (diff) | |
download | u-boot-imx-9658bec2e8f55d56ca1be70090ce5a348be4980f.zip u-boot-imx-9658bec2e8f55d56ca1be70090ce5a348be4980f.tar.gz u-boot-imx-9658bec2e8f55d56ca1be70090ce5a348be4980f.tar.bz2 |
FSL DDR: Convert MPC8540EVAL to new DDR code.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/mpc8540eval/mpc8540eval.c')
-rw-r--r-- | board/mpc8540eval/mpc8540eval.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/mpc8540eval/mpc8540eval.c b/board/mpc8540eval/mpc8540eval.c index 1ac333c..7c54458 100644 --- a/board/mpc8540eval/mpc8540eval.c +++ b/board/mpc8540eval/mpc8540eval.c @@ -25,7 +25,9 @@ #include <common.h> #include <asm/processor.h> +#include <asm/mmu.h> #include <asm/immap_85xx.h> +#include <asm/fsl_ddr_sdram.h> #include <spd_sdram.h> long int fixed_sdram (void); @@ -84,7 +86,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 |