Skip to content
Snippets Groups Projects
Commit 3fd38af7 authored by Kevin Smith's avatar Kevin Smith Committed by Luka Perkov
Browse files

db-88f6820-gp.h: Load data blobs into lower memory


By default on this platform, u-boot loads data into high memory
in the range of 0x7Fxxxxxx, which generates a data abort when the
kernel tries to read it.  Config the u-boot environment to load
the device tree and initrd image into lower memory to make them
accessible to the kernel.

Signed-off-by: default avatarKevin Smith <kevin.smith@elecsyscorp.com>
Acked-by: default avatarStefan Roese <sr@denx.de>
parent ae68763b
No related branches found
No related tags found
No related merge requests found
...@@ -62,6 +62,11 @@ ...@@ -62,6 +62,11 @@
#define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup */ #define CONFIG_SYS_CONSOLE_INFO_QUIET /* don't print console @ startup */
#define CONFIG_SYS_ALT_MEMTEST #define CONFIG_SYS_ALT_MEMTEST
/* Keep device tree and initrd in lower memory so the kernel can access them */
#define CONFIG_EXTRA_ENV_SETTINGS \
"fdt_high=0x10000000\0" \
"initrd_high=0x10000000\0"
/* /*
* mv-common.h should be defined after CMD configs since it used them * mv-common.h should be defined after CMD configs since it used them
* to enable certain macros * to enable certain macros
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment