From f89ac4e6ce267ce875f6ea40f4e907e47e24ee1e Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Mon, 23 Feb 2026 12:01:42 +0530 Subject: [PATCH] soc/mediatek/common: Adjust splash logo bottom margin Increase the logo_bottom_margin from 100 to 200 in the display_logo configuration if FRAMEBUFFER_SPLASH_TEXT Kconfig is enabled. This adjustment ensures the OEM footer logo and associated splash text are rendered higher on the screen, improving visibility and alignment with updated UX requirements. BUG=None TEST=Boot MediaTek device and verify the splash text is 200px from the screen bottom edge as expected. Change-Id: I490e50e200dfffedf24cb30fe0ca6ea6ae037d3d Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/c/coreboot/+/91383 Reviewed-by: Yidi Lin Reviewed-by: Kapil Porwal Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/soc/mediatek/common/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/mediatek/common/display.c b/src/soc/mediatek/common/display.c index 9d2c873838..3b9d8be96c 100644 --- a/src/soc/mediatek/common/display.c +++ b/src/soc/mediatek/common/display.c @@ -90,7 +90,7 @@ static void display_logo(struct panel_description *panel, .panel_orientation = panel->orientation, .halignment = FW_SPLASH_HALIGNMENT_CENTER, .valignment = FW_SPLASH_VALIGNMENT_CENTER, - .logo_bottom_margin = 100, + .logo_bottom_margin = CONFIG(FRAMEBUFFER_SPLASH_TEXT) ? 200 : 100, }; render_logo_to_framebuffer(&config);