diff mbox series

[2/3] board: ti: am62p|j722s: Add ti_set_fdt_env for findfdt

Message ID 20240628-b4-upstream-streamline-platform-v1-2-17659af992c1@ti.com
State Superseded
Delegated to: Tom Rini
Headers show
Series Fix findfdt for j722s and am62p | expand

Commit Message

Manorit Chawdhry June 28, 2024, 8:23 a.m. UTC
stdboot and legacy boot now depend on findfdt and findfdt is populated
based on evm code now. Populate findfdt by calling ti_set_fdt_env in
board files.

Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
---
 board/ti/am62px/evm.c | 9 +++++++++
 board/ti/j722s/evm.c  | 9 +++++++++
 2 files changed, 18 insertions(+)
diff mbox series

Patch

diff --git a/board/ti/am62px/evm.c b/board/ti/am62px/evm.c
index 1a2c46c462b4..7362fa4520a3 100644
--- a/board/ti/am62px/evm.c
+++ b/board/ti/am62px/evm.c
@@ -13,6 +13,7 @@ 
 #include <env.h>
 #include <fdt_support.h>
 #include <spl.h>
+#include "../common/fdt_ops.h"
 
 struct efi_fw_image fw_images[] = {
 	{
@@ -61,3 +62,11 @@  int dram_init_banksize(void)
 {
 	return fdtdec_setup_memory_banksize();
 }
+
+#if IS_ENABLED(CONFIG_BOARD_LATE_INIT)
+int board_late_init(void)
+{
+	ti_set_fdt_env(NULL, NULL);
+	return 0;
+}
+#endif
diff --git a/board/ti/j722s/evm.c b/board/ti/j722s/evm.c
index 515aaa818783..29e06a5442fe 100644
--- a/board/ti/j722s/evm.c
+++ b/board/ti/j722s/evm.c
@@ -12,6 +12,7 @@ 
 #include <env.h>
 #include <fdt_support.h>
 #include <spl.h>
+#include "../common/fdt_ops.h"
 
 int board_init(void)
 {
@@ -27,3 +28,11 @@  int dram_init_banksize(void)
 {
 	return fdtdec_setup_memory_banksize();
 }
+
+#if IS_ENABLED(CONFIG_BOARD_LATE_INIT)
+int board_late_init(void)
+{
+	ti_set_fdt_env(NULL, NULL);
+	return 0;
+}
+#endif