]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
xilinx: versal: Use lowest memory for U-Boot
authorMichal Simek <michal.simek@xilinx.com>
Fri, 10 Jul 2020 10:42:09 +0000 (12:42 +0200)
committerMichal Simek <michal.simek@xilinx.com>
Thu, 20 Aug 2020 07:49:20 +0000 (09:49 +0200)
Find and use the lowest memory for Versal to make sure that we keep u-boot
as low as possible and never use memory above u-boot's maximum VA mapping.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
board/xilinx/versal/board.c

index 45cf1d2d0cadec8f9144e0db17442ad0d5312527..3dc7044b213ebbe9ec0b1f41f778d4d90249da75 100644 (file)
@@ -229,7 +229,7 @@ int dram_init_banksize(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_mem_size_base() != 0)
+       if (fdtdec_setup_mem_size_base_lowest() != 0)
                return -EINVAL;
 
        return 0;