public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [RFC] colibri_imx7: Do not hardcode the memory size
@ 2018-09-17 17:09 Fabio Estevam
  2018-09-18 12:28 ` Marcel Ziswiler
  0 siblings, 1 reply; 3+ messages in thread
From: Fabio Estevam @ 2018-09-17 17:09 UTC (permalink / raw)
  To: u-boot

Instead of hardcoding the memory size, use the generic 
imx_ddr_size() function, which extracts the memory size
in runtime by reading the DDR controller registers.

This helps in supporting 512MB and 1GB modules.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
Hi Stefan,

I don't have the hardware to test, but I think we
should be good by using imx_ddr_size() here.

 board/toradex/colibri_imx7/colibri_imx7.c | 2 +-
 include/configs/colibri_imx7.h            | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/board/toradex/colibri_imx7/colibri_imx7.c b/board/toradex/colibri_imx7/colibri_imx7.c
index 2b7591e..9029c0b 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 = imx_ddr_size();
 
 	return 0;
 }
diff --git a/include/configs/colibri_imx7.h b/include/configs/colibri_imx7.h
index ff6bd67..02849ba 100644
--- a/include/configs/colibri_imx7.h
+++ b/include/configs/colibri_imx7.h
@@ -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)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-19 11:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-17 17:09 [U-Boot] [RFC] colibri_imx7: Do not hardcode the memory size Fabio Estevam
2018-09-18 12:28 ` Marcel Ziswiler
2018-09-19 11:01   ` Marcel Ziswiler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox