From b35026d001e64300c01b001ac5763c15ea37951a Mon Sep 17 00:00:00 2001 From: Lucien Mueller Date: Thu, 6 Dec 2018 16:46:36 +0100 Subject: [PATCH] u-boot-env: changed fdt_high and initrd_high to 0xffffffff BugzID: 54592 Signed-off-by: Lucien Mueller --- include/configs/am335x_nmhw21.h | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/include/configs/am335x_nmhw21.h b/include/configs/am335x_nmhw21.h index 64cbea471e..663b7ee6ec 100644 --- a/include/configs/am335x_nmhw21.h +++ b/include/configs/am335x_nmhw21.h @@ -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" \