diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2015-09-24 23:48:29 +0300 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2015-11-02 18:03:05 +0300 |
commit | d9eb3cb24837f4fb6391b0172f17156377adabba (patch) | |
tree | 5f0c776f1211f40ca75620d71860770285a85fe9 /arch/xtensa/Kconfig | |
parent | 260c64bbabdb8da7248c87e0cdd92023bd7b76c6 (diff) | |
download | linux-d9eb3cb24837f4fb6391b0172f17156377adabba.tar.xz |
xtensa: nommu: fix default memory start address
RAM starts at 0x60000000 on noMMU cores, not at 0x40000000. Fix the
default.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/Kconfig')
-rw-r--r-- | arch/xtensa/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index 3bd3504a6cc7..366a98139909 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig @@ -408,7 +408,7 @@ config DEFAULT_MEM_START hex "Physical address of the default memory area start" depends on PLATFORM_WANT_DEFAULT_MEM default 0x00000000 if MMU - default 0x40000000 if !MMU + default 0x60000000 if !MMU help 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 |