diff options
author | Jim Liu | 2024-04-23 15:22:09 +0800 |
---|---|---|
committer | Tom Rini | 2024-05-03 12:22:59 -0600 |
commit | e7c3948ec51d6dd2d31525c8207b5e8ccceb496a (patch) | |
tree | d355389d44a5e856c6b24162cf174460aae3a290 /include/configs/arbel.h | |
parent | ceec9c9d291bf76ccc9338ded89e1b5156313db1 (diff) |
configs: arbel: increase u-boot mapping size
When u-boot enable CONFIG_SYS_BOOT_RAMDISK_HIGH, rootfs image relocated
from FIU address space to memory address before jump to kernel.
Since Arbel reserved memory from 0x00000000 to 0x06200000 for tip image,
and rootfs image may too large that cannot found a suitable location
before 128MB(0x8000000), so increase mapping size from 128MB to 192MB.
Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
Diffstat (limited to 'include/configs/arbel.h')
-rw-r--r-- | include/configs/arbel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/arbel.h b/include/configs/arbel.h index 576ee37ee4a..d8ccc459682 100644 --- a/include/configs/arbel.h +++ b/include/configs/arbel.h @@ -7,7 +7,7 @@ #define __CONFIG_ARBEL_H #define CFG_SYS_SDRAM_BASE 0x0 -#define CFG_SYS_BOOTMAPSZ (128 << 20) +#define CFG_SYS_BOOTMAPSZ (192 << 20) #define CFG_SYS_BOOTM_LEN (20 << 20) #define CFG_SYS_INIT_RAM_ADDR CFG_SYS_SDRAM_BASE #define CFG_SYS_INIT_RAM_SIZE 0x8000 |