u-boot-env: changed fdt_high and initrd_high to 0xffffffff

BugzID: 54592

Signed-off-by: Lucien Mueller <lucien.mueller@netmodule.com>
This commit is contained in:
Lucien Mueller 2018-12-06 16:46:36 +01:00
parent be3dbc4966
commit b35026d001
1 changed files with 13 additions and 10 deletions

View File

@ -56,9 +56,7 @@ Memory map:
0x80000000 KERNEL_ADDR
+63MB
0x83F00000 FDT_ADDR
+512kB
0x83F80000 FDT_HIGH_ADDR
+512kB
+1MB
0x84000000 OT_RD_ADDR
+126MB
0x8BE00000 PXE_ADDR
@ -71,20 +69,25 @@ Memory map:
*/
#define KERNEL_ADDR "0x80000000"
#define FDT_ADDR "0x83F00000"
#define FDT_HIGH_ADDR "0x83F80000"
#define OT_RD_ADDR "0x84000000"
#define PXE_ADDR "0x8BE00000"
#define LOAD_ADDR "0x8C000000"
#define OT_KERNEL_ADDR "0x8C100000"
#define KERNEL_ADDR "0x80000000"
#define FDT_ADDR "0x83F00000"
#define OT_RD_ADDR "0x84000000"
#define PXE_ADDR "0x8BE00000"
#define LOAD_ADDR "0x8C000000"
#define OT_KERNEL_ADDR "0x8C100000"
/* If this is set, the initrd will not be copyed to a high_addr when booting but used from OT_KERNEL_ADDR */
#define INITRD_HIGH_ADDR "0xffffffff"
/* If this is set, the fdt will not be copyed to a high_addr when booting but used from FDT_ADDR */
#define FDT_HIGH_ADDR "0xffffffff"
#define CONFIG_EXTRA_ENV_SETTINGS \
"kernel_image=zImage\0" \
"fdt_image=am335x-nmhw21-prod1.dtb\0"\
"fdt_addr_r=" FDT_ADDR "\0" \
"fdt_high=" FDT_HIGH_ADDR "\0" \
"initrd_high=" INITRD_HIGH_ADDR "\0" \
"kernel_addr=" KERNEL_ADDR "\0" \
"kernel_addr_r=" OT_KERNEL_ADDR "\0" \
"load_addr=" LOAD_ADDR "\0" \