mb/google/corsola/var/wugtrio: Add TG-XTI05101 MIPI panel

Add TG-XTI05101 MIPI panel for Wugtrio.
Datasheet:TG-XTI05101-01A-SPEC-V1_20260202.pdf

BUG=b:479758139
TEST=emerge-staryu coreboot depthcharge libpayload chromeos-bootimage
     can see the fw screen,jump to kernel and can see chromeos logo
BRANCH=corsola

Change-Id: Ibec69165fe39675d6e6ef4e0db7733825af7bf56
Signed-off-by: Cindy Lu <luyi8@huaqin.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90873
Reviewed-by: Yang Wu <wuyang5@huaqin.corp-partner.google.com>
Reviewed-by: Yidi Lin <yidilin@google.com>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Cindy Lu 2026-01-23 16:19:42 +08:00 committed by Yidi Lin
commit 0efea195b2
2 changed files with 9 additions and 0 deletions

View file

@ -77,6 +77,7 @@ config BOARD_SPECIFIC_OPTIONS
select MIPI_PANEL_STA_ER88577 if BOARD_GOOGLE_WUGTRIO
select MIPI_PANEL_STA_HIMAX83102_J02 if BOARD_GOOGLE_STARMIE
select MIPI_PANEL_STA_ILI9882T if BOARD_GOOGLE_STARMIE
select MIPI_PANEL_TG_XTI05101 if BOARD_GOOGLE_WUGTRIO
config VBOOT
select EC_GOOGLE_CHROMEEC_SWITCHES

View file

@ -49,6 +49,14 @@ static struct panel_description wugtrio_panels[] = {
.disp_path = DISP_PATH_MIPI,
.orientation = LB_FB_ORIENTATION_RIGHT_UP,
},
/* TaiGuan Corporation panel with bias IC on it */
[10] = {
.configure_backlight = backlight_control,
.power_on = mipi_panel_power_on,
.name = "TG_XTI05101",
.disp_path = DISP_PATH_MIPI,
.orientation = LB_FB_ORIENTATION_RIGHT_UP,
},
};
struct panel_description *get_panel_description(void)