From: Simon Glass Date: Sat, 11 Jan 2025 00:00:22 +0000 (-0700) Subject: x86: Enable UPL handoff for SPL X-Git-Tag: v2025.04-rc1~27^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4339a82a4908b5905f70ea8f8d5cde7455fefb92;p=pandora-u-boot.git x86: Enable UPL handoff for SPL Add the GD_FLG_UPL so that a UPL-handoff is created. Signed-off-by: Simon Glass --- diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index aad748532d0..7a033505101 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c @@ -298,6 +298,9 @@ void spl_board_init(void) 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;