public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] renesas: rcar: Apply ATF overlay for reserved-memory
@ 2022-12-06 15:34 Detlev Casanova
  2022-12-06 15:41 ` Geert Uytterhoeven
  0 siblings, 1 reply; 4+ messages in thread
From: Detlev Casanova @ 2022-12-06 15:34 UTC (permalink / raw)
  To: u-boot; +Cc: Geert Uytterhoeven, Detlev Casanova

The function fdtdec_board_setup() is only called by fdtdec_setup() which
needs to be called by the board file.

This is not the case for the renesas boards so rename the
fdtdec_board_setup() function to a local name and call it directly from
ft_board_setup(), before cleaning up the memory nodes.

Signed-off-by: Detlev Casanova <detlev.casanova@collabora.com>
---
 board/renesas/rcar-common/common.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/renesas/rcar-common/common.c b/board/renesas/rcar-common/common.c
index daa1beb14f..6eaa0d1a65 100644
--- a/board/renesas/rcar-common/common.c
+++ b/board/renesas/rcar-common/common.c
@@ -25,14 +25,12 @@ extern u64 rcar_atf_boot_args[];
 
 #define FDT_RPC_PATH	"/soc/spi@ee200000"
 
-int fdtdec_board_setup(const void *fdt_blob)
+void apply_atf_overlay(void *fdt_blob)
 {
 	void *atf_fdt_blob = (void *)(rcar_atf_boot_args[1]);
 
 	if (fdt_magic(atf_fdt_blob) == FDT_MAGIC)
-		fdt_overlay_apply_node((void *)fdt_blob, 0, atf_fdt_blob, 0);
-
-	return 0;
+		fdt_overlay_apply_node(fdt_blob, 0, atf_fdt_blob, 0);
 }
 
 int dram_init(void)
@@ -159,6 +157,7 @@ static void update_rpc_status(void *blob)
 
 int ft_board_setup(void *blob, struct bd_info *bd)
 {
+	apply_atf_overlay(blob);
 	scrub_duplicate_memory(blob);
 	update_rpc_status(blob);
 
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-23 15:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-06 15:34 [PATCH] renesas: rcar: Apply ATF overlay for reserved-memory Detlev Casanova
2022-12-06 15:41 ` Geert Uytterhoeven
2022-12-06 16:06   ` [PATCH v2] " Detlev Casanova
2023-03-23 15:29     ` Detlev Casanova

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox