arm64: zynqmp: Add support for OF_SEPARATE with board DTB
authorMichal Simek <michal.simek@xilinx.com>
Thu, 19 Dec 2019 16:45:15 +0000 (17:45 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Tue, 14 Jan 2020 08:05:53 +0000 (09:05 +0100)
OF_BOARD and OF_SEPARATE can use board specific board_fdt_blob_setup().

OF_BOARD option is mostly used for picking up DTB from certain location.

OF_SEPARATE option is used when DTB is appended after u-boot binary.

This board specific function is aligned with current version in
lib/fdtdec.c with checking CONFIG_XILINX_OF_BOARD_DTB_ADDR address first.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
board/xilinx/Kconfig
board/xilinx/common/board.c

index 7833b11767c4be50cf43364da055048d1ceb0aa7..73fc1be0141ecc7ee7a1cfd5f566e72e47f6cf81 100644 (file)
@@ -44,7 +44,7 @@ config XILINX_OF_BOARD_DTB_ADDR
        hex
        default 0x1000 if ARCH_VERSAL
        default 0x100000 if ARCH_ZYNQ || ARCH_ZYNQMP
-       depends on OF_BOARD
+       depends on OF_BOARD || OF_SEPARATE
        help
          Offset in the memory where the board configuration DTB is placed.
 
index 62dafe0f90582b454d040f9c92cf7fb3f39464a0..ae5fe2729f7ebe9948b2947913530aae2ff3a5de 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include <common.h>
+#include <asm/sections.h>
 #include <dm/uclass.h>
 #include <i2c.h>
 
@@ -37,16 +38,32 @@ int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
        return ret;
 }
 
-#if defined(CONFIG_OF_BOARD)
+#if defined(CONFIG_OF_BOARD) || defined(CONFIG_OF_SEPARATE)
 void *board_fdt_blob_setup(void)
 {
        static void *fdt_blob = (void *)CONFIG_XILINX_OF_BOARD_DTB_ADDR;
 
-       if (fdt_magic(fdt_blob) != FDT_MAGIC) {
-               printf("DTB is not passed via %p\n", fdt_blob);
-               return NULL;
-       }
+       if (fdt_magic(fdt_blob) == FDT_MAGIC)
+               return fdt_blob;
 
-       return fdt_blob;
+       debug("DTB is not passed via %p\n", fdt_blob);
+
+#ifdef CONFIG_SPL_BUILD
+       /* FDT is at end of BSS unless it is in a different memory region */
+       if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS))
+               fdt_blob = (ulong *)&_image_binary_end;
+       else
+               fdt_blob = (ulong *)&__bss_end;
+#else
+       /* FDT is at end of image */
+       fdt_blob = (ulong *)&_end;
+#endif
+
+       if (fdt_magic(fdt_blob) == FDT_MAGIC)
+               return fdt_blob;
+
+       debug("DTB is also not passed via %p\n", fdt_blob);
+
+       return NULL;
 }
 #endif