colibri_imx7: prime get_ram_size() using imx_ddr_size()
authorFabio Estevam <festevam@gmail.com>
Wed, 19 Sep 2018 11:01:56 +0000 (13:01 +0200)
committerStefano Babic <sbabic@denx.de>
Tue, 9 Oct 2018 16:33:02 +0000 (18:33 +0200)
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>
board/toradex/colibri_imx7/colibri_imx7.c
include/configs/colibri_imx7.h

index 2b7591eb001796cb7b30ec3dc6a26e495086604f..a4c99626b4f2d8d341f481072413351e35751747 100644 (file)
@@ -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;
 }
index ff6bd678cfadf14fbdbbac4c25865f73b566f11c..02849ba35ff0ea0816224f3188116d71ec9a619d 100644 (file)
@@ -14,7 +14,6 @@
 #include "mx7_common.h"
 
 /*#define CONFIG_DBG_MONITOR*/
-#define PHYS_SDRAM_SIZE                        SZ_1G
 
 /* Size of malloc() pool */
 #define CONFIG_SYS_MALLOC_LEN          (32 * SZ_1M)