commit | 8a4e46e05ca3d3304e78280f36c6de5c46cb142c | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Fri Jan 10 17:00:22 2025 -0700 |
committer | Tom Rini <trini@konsulko.com> | Wed Jan 22 17:08:23 2025 -0600 |
tree | b7f230616dcc4499ca604dfb533dbb162aeb2616 | |
parent | 7126c4198356bfc5c84d1ecd414d004b07789d70 [diff] |
x86: Enable UPL handoff for SPL Add the GD_FLG_UPL so that a UPL-handoff is created. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index aad7485..7a03350 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c
@@ -298,6 +298,9 @@ if (IS_ENABLED(CONFIG_QEMU)) qemu_chipset_init(); + if (CONFIG_IS_ENABLED(UPL_OUT)) + gd->flags |= GD_FLG_UPL; + if (CONFIG_IS_ENABLED(VIDEO)) { struct udevice *dev; int ret;