mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-21 14:11:36 +00:00
riscv: image: Use the first DRAM bank for bootm_low
bootm_low is used as a base address is used to allocate space for the FDT blob, initrd, cmdline, etc. when booting Linux. Set the default value for RISC-V to the start of the first DRAM bank, so platforms can get their DRAM layout from the device tree, and do not need to define CONFIG_SYS_SDRAM_BASE. Signed-off-by: Samuel Holland <samuel@sholland.org> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
This commit is contained in:
parent
0d625f400b
commit
dd573b6b21
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ ulong env_get_bootm_low(void)
|
|||
|
||||
#if defined(CONFIG_SYS_SDRAM_BASE)
|
||||
return CONFIG_SYS_SDRAM_BASE;
|
||||
#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
|
||||
#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_RISCV)
|
||||
return gd->bd->bi_dram[0].start;
|
||||
#else
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue