Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/86158?usp=email )
Change subject: mb/google/geralt: Enable CSOT_PNA957QT1_1 panel for Ciri ......................................................................
mb/google/geralt: Enable CSOT_PNA957QT1_1 panel for Ciri
Add CSOT_PNA957QT1_1 MIPI panel for Ciri. Datasheet: PNA957QT1-1 Product Spec_CSOT_V02_20250110.pdf
BUG=b:391796227 TEST=Boot to firmware screen BRANCH=Geralt
Change-Id: I306298c6eb172e4dd199e45a50e197fa87905e8c Signed-off-by: Yang Wu wuyang5@huaqin.corp-partner.google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/86158 Reviewed-by: David Hendricks david.hendricks@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Xinxiong Xu xuxinxiong@huaqin.corp-partner.google.com --- M src/mainboard/google/geralt/Kconfig M src/mainboard/google/geralt/panel_ciri.c 2 files changed, 10 insertions(+), 0 deletions(-)
Approvals: David Hendricks: Looks good to me, approved build bot (Jenkins): Verified Xinxiong Xu: Looks good to me, but someone else must approve
diff --git a/src/mainboard/google/geralt/Kconfig b/src/mainboard/google/geralt/Kconfig index 42522f5..dbc155c 100644 --- a/src/mainboard/google/geralt/Kconfig +++ b/src/mainboard/google/geralt/Kconfig @@ -39,6 +39,7 @@ select RTC select MIPI_PANEL_BOE_TV110C9M_LL0 if BOARD_GOOGLE_GERALT select MIPI_PANEL_BOE_NV110WUM_L60 if BOARD_GOOGLE_CIRI + select MIPI_PANEL_CSOT_PNA957QT1_1 if BOARD_GOOGLE_CIRI select MIPI_PANEL_IVO_T109NW41 if BOARD_GOOGLE_CIRI select FW_CONFIG select FW_CONFIG_SOURCE_CHROMEEC_CBI diff --git a/src/mainboard/google/geralt/panel_ciri.c b/src/mainboard/google/geralt/panel_ciri.c index 15c8859..4c21e90 100644 --- a/src/mainboard/google/geralt/panel_ciri.c +++ b/src/mainboard/google/geralt/panel_ciri.c @@ -44,6 +44,15 @@ .orientation = LB_FB_ORIENTATION_LEFT_UP, .disp_path = DISP_PATH_MIPI, .pwm_ctrl_gpio = true, + }, + + [51] = { + .name = "CSOT_PNA957QT1_1", + .power_on = power_on_mipi_himax_83102j, + .configure_backlight = configure_mipi_pwm_backlight, + .orientation = LB_FB_ORIENTATION_LEFT_UP, + .disp_path = DISP_PATH_MIPI, + .pwm_ctrl_gpio = true, } };