summaryrefslogtreecommitdiff
path: root/include/configs/rk3288_common.h
diff options
context:
space:
mode:
authorSandy Patterson <apatterson@sightlogix.com>2016-07-11 17:38:52 (GMT)
committerSimon Glass <sjg@chromium.org>2016-10-30 19:29:05 (GMT)
commit60169826b7cee90ebc69e5b3fe38f1b833ba5b2d (patch)
treefadc13219000192a68f66c70570974b1e256e742 /include/configs/rk3288_common.h
parent48d2fc47c9feac54fdc0e2e0462f13b1a8689ece (diff)
downloadu-boot-60169826b7cee90ebc69e5b3fe38f1b833ba5b2d.tar.xz
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: Sandy Patterson <apatterson@sightlogix.com> Updated commit subject: Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/configs/rk3288_common.h')
-rw-r--r--include/configs/rk3288_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/rk3288_common.h b/include/configs/rk3288_common.h
index cf6f355..af99d63 100644
--- a/include/configs/rk3288_common.h
+++ b/include/configs/rk3288_common.h
@@ -114,11 +114,11 @@
#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 */
#define CONFIG_EXTRA_ENV_SETTINGS \
- "fdt_high=0x1fffffff\0" \
- "initrd_high=0x1fffffff\0" \
+ "fdt_high=0x0fffffff\0" \
+ "initrd_high=0x0fffffff\0" \
"partitions=" PARTS_DEFAULT \
ENV_MEM_LAYOUT_SETTINGS \
ROCKCHIP_DEVICE_SETTINGS \