mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
spl: add a fdt_addr field to spl_image_info
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@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
4914af1286
commit
75014470ae
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue