diff options
author | Mian Yousaf Kaukab <ykaukab@suse.de> | 2019-05-23 10:57:33 +0200 |
---|---|---|
committer | Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> | 2019-06-19 12:54:57 +0530 |
commit | de0f9ad1dee7eb39c0c7b38ea99918823b4f1204 (patch) | |
tree | cc913269ff159eaf8f1673a725e77b5f6b5e625a | |
parent | 91f54e7c61241ef31dbccf04fd269b5757882897 (diff) | |
download | u-boot-de0f9ad1dee7eb39c0c7b38ea99918823b4f1204.zip u-boot-de0f9ad1dee7eb39c0c7b38ea99918823b4f1204.tar.gz u-boot-de0f9ad1dee7eb39c0c7b38ea99918823b4f1204.tar.bz2 |
board: lx2160a: fix fsl-mc status in fdt with bootefi
fsl-mc lazyapply command applies dpl from efi_exit_boot_services().
Status of fsl-mc node in working fdt is updated at this stage.
However, an efi application like grub may already have copied the fdt.
So the updates to fdt done at efi_exit_boot_services() may not be
visible to the OS. Fix it by updating fdt earlier if fsl-mc lazyapply
command is used.
Signed-off-by: Mian Yousaf Kaukab <ykaukab@suse.de>
Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
-rw-r--r-- | board/freescale/lx2160a/lx2160a.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/freescale/lx2160a/lx2160a.c b/board/freescale/lx2160a/lx2160a.c index 6109b28..3b4cb86 100644 --- a/board/freescale/lx2160a/lx2160a.c +++ b/board/freescale/lx2160a/lx2160a.c @@ -509,7 +509,8 @@ void fdt_fixup_board_enet(void *fdt) return; } - if ((get_mc_boot_status() == 0) && (get_dpl_apply_status() == 0)) { + if (get_mc_boot_status() == 0 && + (is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0)) { fdt_status_okay(fdt, offset); fdt_fixup_board_phy(fdt); } else { |