"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rockchip: rk3128: Add fdt_high and initrd_high

Similar to other ARMv7 Rockchip SoCs the linux kernel is unable to access an
fdt blob or initrd if it is put in DRAM above 512 MB. Add fdt_high and
initrd_high in order to prevent that.

Signed-off-by: Alex Bee <knaerzche@gmail.com>

+2
+2
include/configs/rk3128_common.h
··· 25 25 #define CFG_EXTRA_ENV_SETTINGS \ 26 26 ENV_MEM_LAYOUT_SETTINGS \ 27 27 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ 28 + "fdt_high=0x7fffffff\0" \ 29 + "initrd_high=0x7fffffff\0" \ 28 30 "partitions=" PARTS_DEFAULT \ 29 31 "boot_targets=" BOOT_TARGETS "\0" 30 32