Skip to content
Snippets Groups Projects
Commit 59e0d611 authored by Ben Gardiner's avatar Ben Gardiner Committed by Wolfgang Denk
Browse files

da850evm: fix linux bootparam address


This patch fixes the LINUX_BOOT_PARAM_ADDR define to be based off of
PHYS_SDRAM_1 instead of CONFIG_SYS_MEMTEST_START. On da830 they are the same
thing but on da850 the CONFIG_SYS_MEMSTART define is offset from the
PHYS_SDRAM_1 start.

Without this patch it is not possible to boot linux on da850 -- bootm hangs
at "Uncompressing Linux... done, booting the kernel."

Signed-off-by: default avatarBen Gardiner <bengardiner@nanometrics.ca>
Signed-off-by: default avatarSandeep Paulraj <s-paulraj@ti.com>
parent 3d248d37
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
/* /*
* Linux Information * Linux Information
*/ */
#define LINUX_BOOT_PARAM_ADDR (CONFIG_SYS_MEMTEST_START + 0x100) #define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
#define CONFIG_CMDLINE_TAG #define CONFIG_CMDLINE_TAG
#define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_SETUP_MEMORY_TAGS
#define CONFIG_BOOTARGS \ #define CONFIG_BOOTARGS \
......
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