Commit d9eb3cb2 authored by Max Filippov's avatar Max Filippov

xtensa: nommu: fix default memory start address

RAM starts at 0x60000000 on noMMU cores, not at 0x40000000. Fix the
default.
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
parent 260c64bb
...@@ -408,7 +408,7 @@ config DEFAULT_MEM_START ...@@ -408,7 +408,7 @@ config DEFAULT_MEM_START
hex "Physical address of the default memory area start" hex "Physical address of the default memory area start"
depends on PLATFORM_WANT_DEFAULT_MEM depends on PLATFORM_WANT_DEFAULT_MEM
default 0x00000000 if MMU default 0x00000000 if MMU
default 0x40000000 if !MMU default 0x60000000 if !MMU
help help
This is a fallback start address of the default memory area, it is This is a fallback start address of the default memory area, it is
used when no physical memory size is passed through DTB or through used when no physical memory size is passed through DTB or through
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment