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 <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/91383
Reviewed-by: Yidi Lin <yidilin@google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Subrata Banik 2026-02-23 12:01:42 +05:30
commit f89ac4e6ce

View file

@ -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);