projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a3a49f
)
SMDK6400: Fixup dram_init for relocation support
author
seedshope
<bocui107@gmail.com>
Sat, 22 Jan 2011 10:06:14 +0000
(10:06 +0000)
committer
Albert Aribaud
<albert.aribaud@free.fr>
Sun, 27 Mar 2011 17:19:24 +0000
(19:19 +0200)
Signed-off-by: Zhong Hongbo <bocui107@gmail.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
board/samsung/smdk6400/smdk6400.c
patch
|
blob
|
history
diff --git
a/board/samsung/smdk6400/smdk6400.c
b/board/samsung/smdk6400/smdk6400.c
index 35aa40b30df5312c2813c25c9d13d42b6646e50a..13c7ed5189a4a473fa323c0cc6c37eae2284676b 100644
(file)
--- 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;
}