Skip to content
Snippets Groups Projects
Commit 60169826 authored by Sandy Patterson's avatar Sandy Patterson Committed by Simon Glass
Browse files

rockchip: RK3288 needs fdt and initrd below 256M now


I am not sure why this limit is changing. But my kernel
doesn't load when it's above 256. This was testing on the
rock2 board.

Signed-off-by: default avatarSandy Patterson <apatterson@sightlogix.com>
Updated commit subject:
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 48d2fc47
No related branches found
No related tags found
No related merge requests found
...@@ -114,11 +114,11 @@ ...@@ -114,11 +114,11 @@
#include <config_distro_bootcmd.h> #include <config_distro_bootcmd.h>
/* Linux fails to load the fdt if it's loaded above 512M on a Rock 2 board, so /* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so
* limit the fdt reallocation to that */ * limit the fdt reallocation to that */
#define CONFIG_EXTRA_ENV_SETTINGS \ #define CONFIG_EXTRA_ENV_SETTINGS \
"fdt_high=0x1fffffff\0" \ "fdt_high=0x0fffffff\0" \
"initrd_high=0x1fffffff\0" \ "initrd_high=0x0fffffff\0" \
"partitions=" PARTS_DEFAULT \ "partitions=" PARTS_DEFAULT \
ENV_MEM_LAYOUT_SETTINGS \ ENV_MEM_LAYOUT_SETTINGS \
ROCKCHIP_DEVICE_SETTINGS \ ROCKCHIP_DEVICE_SETTINGS \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment