summaryrefslogtreecommitdiff
path: root/include/configs/ls1012ardb.h
diff options
context:
space:
mode:
authorBiwen Li <biwen.li@nxp.com>2020-01-10 17:16:04 +0800
committerPriyanka Jain <priyanka.jain@nxp.com>2020-01-24 14:28:26 +0530
commit63d3464d2e72158e2d6f20c187be0a066b5d8577 (patch)
tree0377d62ab7993b0b55f3379561e6bb594529fbc4 /include/configs/ls1012ardb.h
parent0b7435107b6b376e4f458db986fe17b14a7e85f7 (diff)
include/configs: ls1012ardb: adjust kernel_addr_r
The linux kernel Image is growing quite quickly, if kernel Image size grow beyond 36 MB then kernel Image at load address 0x81000000 overlaps with the reserved memory region at 0x83400000. Adjust kernel load address(kernel_addr_r) from 0x81000000 to 0x96000000 to avoid kernel Image overlapping with reserved memory region. This change fixes the below U-Boot error while booting uncompressed kernel Image through booti command, ERROR: reserving fdt memory region failed (addr=83400000 size=c00000) Signed-off-by: Biwen Li <biwen.li@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'include/configs/ls1012ardb.h')
-rw-r--r--include/configs/ls1012ardb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ls1012ardb.h b/include/configs/ls1012ardb.h
index 0341495dfb..b419c46829 100644
--- a/include/configs/ls1012ardb.h
+++ b/include/configs/ls1012ardb.h
@@ -69,7 +69,7 @@
"scripthdraddr=0x80080000\0" \
"fdtheader_addr_r=0x80100000\0" \
"kernelheader_addr_r=0x80200000\0" \
- "kernel_addr_r=0x81000000\0" \
+ "kernel_addr_r=0x96000000\0" \
"fdt_addr_r=0x90000000\0" \
"load_addr=0xa0000000\0" \
"kernel_size=0x2800000\0" \