[U-Boot] [PATCH 02/15] spl: add a fdt_addr field to spl_image_info

Philipp Tomsich philipp.tomsich at theobroma-systems.com
Wed Sep 13 19:29:30 UTC 2017


When loading a full U-Boot with detached device-tree using the SPL FIT
backend, we should store the address of the FDT loaded as part of the
SPL image info: this allows us to fixup the FDT with additional info
we may want to propagate onward.

Signed-off-by: Philipp Tomsich <philipp.tomsich at theobroma-systems.com>
---

 include/spl.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/spl.h b/include/spl.h
index ce4cf0a..acbc47a 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -25,6 +25,9 @@ struct spl_image_info {
 	u8 os;
 	ulong load_addr;
 	ulong entry_point;
+#if CONFIG_IS_ENABLED(LOAD_FIT)
+	void *fdt_addr;
+#endif
 	u32 size;
 	u32 flags;
 	void *arg;
-- 
2.1.4



More information about the U-Boot mailing list