diff options
author | Wolfgang Denk <wd@denx.de> | 2008-08-28 00:26:52 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-08-28 00:26:52 +0200 |
commit | 0ba6bfef061872dbe04e6bebbb225806c7fa34ec (patch) | |
tree | 25d0e07c2d902998c3a679aaf6bf4ffedff9289c /board/sbc8560/sbc8560.c | |
parent | d26b739afe5a6760bd345743188759cd9d0f3b47 (diff) | |
parent | 9cff4448a9cb882defe6c8bde73b77fc0c636799 (diff) | |
download | u-boot-imx-0ba6bfef061872dbe04e6bebbb225806c7fa34ec.zip u-boot-imx-0ba6bfef061872dbe04e6bebbb225806c7fa34ec.tar.gz u-boot-imx-0ba6bfef061872dbe04e6bebbb225806c7fa34ec.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
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 |