diff options
author | Yidi Lin <yidilin@chromium.org> | 2023-10-02 16:44:55 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-10-04 09:38:55 +0000 |
commit | 773d4b8fb00613b373d81e877a7014c338542e86 (patch) | |
tree | 46fed0d751c99b1af723195d91fd261d5a4cbcd8 /src/mainboard/google/geralt | |
parent | da630738277ad5548d36eec864169c6d7de1056e (diff) |
mb/google/geralt: Remove SAMSUNG_ATANA33XC20 panel support
This panel is never actually enabled on Geralt. The derived project
won't use this panel either. Therefore, remove this panel support.
BUG=none
BRANCH=none
TEST=emerge-geralt coreboot
Change-Id: I97ed5b341724ed42098b2c17d0eb75eab881dbb1
Signed-off-by: Yidi Lin <yidilin@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78210
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/mainboard/google/geralt')
-rw-r--r-- | src/mainboard/google/geralt/panel_geralt.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mainboard/google/geralt/panel_geralt.c b/src/mainboard/google/geralt/panel_geralt.c index 443703d6f6..455f7591fe 100644 --- a/src/mainboard/google/geralt/panel_geralt.c +++ b/src/mainboard/google/geralt/panel_geralt.c @@ -24,11 +24,6 @@ static void configure_mipi_pwm_backlight(void) gpio_output(GPIO_MIPI_BL_PWM_1V8, 0); } -static void configure_edp_backlight(void) -{ - gpio_output(GPIO_AP_DISP_BKLTEN, 0); -} - static void power_on_mipi_boe_tv110c9m_ll0(void) { const struct tps65132s_reg_setting reg_settings[] = { @@ -61,13 +56,6 @@ static void power_on_mipi_boe_tv110c9m_ll0(void) mdelay(6); } -static void power_on_edp_samsung_atana33xc20(void) -{ - gpio_output(GPIO_EN_PP3300_EDP_DISP_X, 1); - gpio_set_pull(GPIO_EDP_HPD_1V8, GPIO_PULL_ENABLE, GPIO_PULL_UP); - gpio_set_mode(GPIO_EDP_HPD_1V8, 4); -} - static struct panel_description panels[] = { [1] = { .name = "BOE_TV110C9M_LL0", @@ -76,13 +64,6 @@ static struct panel_description panels[] = { .disp_path = DISP_PATH_MIPI, .pwm_ctrl_gpio = true, }, - [11] = { - .name = "SAMSUNG_ATANA33XC20", - .power_on = power_on_edp_samsung_atana33xc20, - .configure_panel_backlight = configure_edp_backlight, - .disp_path = DISP_PATH_EDP, - .pwm_ctrl_gpio = false, - }, }; struct panel_description *get_panel_description(uint32_t panel_id) |