[PATCH] common: board_f: fix to display wrong memory information

Jaehoon Chung jh80.chung at samsung.com
Wed Dec 30 00:24:12 CET 2020


When run meminfo command, it's displayed wrong memory information.
Because it's using gd->ram_size what didn't configure ram size.

On 4G RPI4 target
- Before
   U-Boot> meminfo
   DRAM: 948MiB
- After
   U-Boot> meminfo
   DRAM: 3.9GiB

Signed-off-by: Jaehoon Chung <jh80.chung at samsung.com>
---
 common/board_f.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/board_f.c b/common/board_f.c
index 9f441c44f176..96c675ea28e4 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -228,6 +228,7 @@ static int show_dram_config(void)
 	}
 	debug("\nDRAM:  ");
 
+	gd->ram_size = size;
 	print_size(size, "");
 	board_add_ram_info(0);
 	putc('\n');
-- 
2.29.0



More information about the U-Boot mailing list