summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorseedshope <bocui107@gmail.com>2011-01-22 10:06:14 +0000
committerAlbert Aribaud <albert.aribaud@free.fr>2011-03-27 19:19:24 +0200
commitecc7cedd5ae1d63b50094efeb392a5925ec0f1de (patch)
treef9393916e4f07d79ec4ce2a84a68a9906dfd400e /board
parent9a3a49fb00a22324873f1e331379877ec3374962 (diff)
downloadblackbird-obmc-uboot-ecc7cedd5ae1d63b50094efeb392a5925ec0f1de.tar.gz
blackbird-obmc-uboot-ecc7cedd5ae1d63b50094efeb392a5925ec0f1de.zip
SMDK6400: Fixup dram_init for relocation support
Signed-off-by: Zhong Hongbo <bocui107@gmail.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board')
-rw-r--r--board/samsung/smdk6400/smdk6400.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/board/samsung/smdk6400/smdk6400.c b/board/samsung/smdk6400/smdk6400.c
index 35aa40b30d..13c7ed5189 100644
--- a/board/samsung/smdk6400/smdk6400.c
+++ b/board/samsung/smdk6400/smdk6400.c
@@ -78,10 +78,16 @@ int board_init(void)
return 0;
}
-int dram_init(void)
+void dram_init_banksize(void)
{
gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
+}
+
+int dram_init(void)
+{
+ gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
+ PHYS_SDRAM_1_SIZE);
return 0;
}
OpenPOWER on IntegriCloud