summaryrefslogtreecommitdiffstats
path: root/board/wandboard
diff options
context:
space:
mode:
authorTapani Utriainen <tapani@technexion.com>2013-06-26 17:51:49 +0800
committerStefano Babic <sbabic@denx.de>2013-06-26 16:14:32 +0200
commit491f2947a1abf12aa119f9412aa259c0b128f859 (patch)
tree1e8f04afd688cf64f40793cec056cbfab30397ac /board/wandboard
parent4a1c7b13ae104d4526d3176793b7f6b06694df15 (diff)
downloadtalos-obmc-uboot-491f2947a1abf12aa119f9412aa259c0b128f859.tar.gz
talos-obmc-uboot-491f2947a1abf12aa119f9412aa259c0b128f859.zip
Add support for Wandboard Quad
Add support for the Quad version of Wandboard; fix compile warning resulting from having 2G of memory. Signed-off-by: Tapani Utriainen <tapani@technexion.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/wandboard')
-rw-r--r--board/wandboard/README5
-rw-r--r--board/wandboard/wandboard.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/board/wandboard/README b/board/wandboard/README
index ce83bbe4c5..498db2fd47 100644
--- a/board/wandboard/README
+++ b/board/wandboard/README
@@ -22,6 +22,11 @@ To build U-Boot for the Wandboard Solo version:
$ make wandboard_solo_config
$ make
+To build U-Boot for the Wandboard Quad version:
+
+$ make wandboard_quad_config
+$ make
+
Flashing U-boot into the SD card
--------------------------------
diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c
index 5666cbf26f..43c02acfd1 100644
--- a/board/wandboard/wandboard.c
+++ b/board/wandboard/wandboard.c
@@ -48,7 +48,7 @@ DECLARE_GLOBAL_DATA_PTR;
int dram_init(void)
{
- gd->ram_size = CONFIG_DDR_MB * SZ_1M;
+ gd->ram_size = (phys_size_t)CONFIG_DDR_MB * 1024 * 1024;
return 0;
}
OpenPOWER on IntegriCloud