From: Georgi Vlaev Date: Tue, 14 Jun 2022 14:45:32 +0000 (+0300) Subject: board: ti: am62x: Use fdt functions for ram and bank init X-Git-Tag: baikal/mips/sdk5.8.2~5^2~292^2~5^2~37 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=21181e233f1f1290b4e56b355e1eb1e7b7cbd603;p=uboot.git board: ti: am62x: Use fdt functions for ram and bank init Use the appropriate fdtdec_setup_mem_size_base() call in dram_init() and fdtdec_setup_bank_size() in dram_bank_init() to pull these values from DT, where they are already available, instead of hardcoding them. Signed-off-by: Georgi Vlaev Reviewed-by: Tom Rini --- diff --git a/board/ti/am62x/evm.c b/board/ti/am62x/evm.c index 4dd5e64299..fb5106d1f3 100644 --- a/board/ti/am62x/evm.c +++ b/board/ti/am62x/evm.c @@ -23,17 +23,10 @@ int board_init(void) int dram_init(void) { - gd->ram_size = 0x80000000; - - return 0; + return fdtdec_setup_mem_size_base(); } int dram_init_banksize(void) { - /* Bank 0 declares the memory available in the DDR low region */ - gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; - gd->bd->bi_dram[0].size = 0x80000000; - gd->ram_size = 0x80000000; - - return 0; + return fdtdec_setup_memory_banksize(); }