]> git.dujemihanovic.xyz Git - u-boot.git/commit
board: sifive: overwrite board_fdt_blob_setup in u-boot proper
authorZong Li <zong.li@sifive.com>
Tue, 27 Jul 2021 09:06:59 +0000 (17:06 +0800)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Tue, 17 Aug 2021 11:28:37 +0000 (19:28 +0800)
commit47d73ba4f4a40f17622d93f96b48e285b73c3061
tree62f978c3d380e56c69f407f68d61799c52c9a06f
parent87e84818857db1d710002217eea66bb3596f5571
board: sifive: overwrite board_fdt_blob_setup in u-boot proper

Add board_fdt_blob_setup to return the device tree location which is
passed by prior stage in u-boot proper. The generic board_fdt_blob_setup
always returns _end, it mignt be ok because u-boot SPL would currently
put the dtb there, but it would be broken if we put the dtb to another
place and assigned the location into a1 register for u-boot proper. Use
the location passed by prior stage would make more sence, because we
actually pass the location to u-boot proper and want to use that one,
rather than the dtb which in _end.

We can't use CONFIG_OF_PRIOR_STAGE because it doens't distinguish the
implementation of u-boot SPL and u-boot proper, so u-boot SPL need to
reply on the prior stage to pass device tree location as well, but we
don't pass the DT from boot rom now. In addition, when
CONFIG_OF_PRIOR_STAGE is enabled, the u-boot-spl.bin and u-boot.itb won't
include the device tree.

Signed-off-by: Zong Li <zong.li@sifive.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
board/sifive/unleashed/unleashed.c
board/sifive/unmatched/unmatched.c