X-Git-Url: https://git.librecmc.org/?p=oweals%2Fu-boot.git;a=blobdiff_plain;f=board%2Fti%2Fam65x%2Fevm.c;h=a22900dcf97245ae724a20088768cb3b436ea5d7;hp=346f745bb07c56064642a38f3d0c34a0e4eb5434;hb=60c7facfc965af6ff8ea14ee26c9d49cd2d0ec22;hpb=71f70cfcf4a79a58682596e6b7769fe6f8f0c4d1 diff --git a/board/ti/am65x/evm.c b/board/ti/am65x/evm.c index 346f745bb0..a22900dcf9 100644 --- a/board/ti/am65x/evm.c +++ b/board/ti/am65x/evm.c @@ -72,11 +72,13 @@ 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; #ifdef CONFIG_PHYS_64BIT /* Bank 1 declares the memory available in the DDR high region */ gd->bd->bi_dram[1].start = CONFIG_SYS_SDRAM_BASE1; gd->bd->bi_dram[1].size = 0x80000000; + gd->ram_size = 0x100000000; #endif return 0;