aboutsummaryrefslogtreecommitdiff
path: root/board/toradex/colibri_imx7
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2018-09-19 13:01:56 +0200
committerStefano Babic <sbabic@denx.de>2018-10-09 18:33:02 +0200
commit787075e0692e36e793fa8a453a1b2dfc98def711 (patch)
tree2ad3dc2dae834507c561ad9d678ec4730add8ddc /board/toradex/colibri_imx7
parent2cea8d74dc3a80bbc06aff6b6dcaceb806d563b4 (diff)
downloadu-boot-787075e0692e36e793fa8a453a1b2dfc98def711.zip
u-boot-787075e0692e36e793fa8a453a1b2dfc98def711.tar.gz
u-boot-787075e0692e36e793fa8a453a1b2dfc98def711.tar.bz2
colibri_imx7: prime get_ram_size() using imx_ddr_size()
Rather than passing a hardcoded maxsize to the generic get_ram_size() function use the i.MX 7 specific imx_ddr_size() function, which extracts the memory size at runtime by reading the DDR controller registers. This is a purely cosmetic change as the generic get_ram_size() function already took care of properly automatically detecting 256MB, 512MB or 1GB modules. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com> Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com> Acked-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'board/toradex/colibri_imx7')
-rw-r--r--board/toradex/colibri_imx7/colibri_imx7.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/colibri_imx7/colibri_imx7.c b/board/toradex/colibri_imx7/colibri_imx7.c
index 2b7591e..a4c9962 100644
--- a/board/toradex/colibri_imx7/colibri_imx7.c
+++ b/board/toradex/colibri_imx7/colibri_imx7.c
@@ -52,7 +52,7 @@ DECLARE_GLOBAL_DATA_PTR;
int dram_init(void)
{
- gd->ram_size = get_ram_size((void *)PHYS_SDRAM, PHYS_SDRAM_SIZE);
+ gd->ram_size = get_ram_size((void *)PHYS_SDRAM, imx_ddr_size());
return 0;
}