mb/google/geralt: Move backlight-related functions to common panel.c
These backlight related functions can be reused in other variants, move them out to the panel.c. Also the panel_geralt.c should be used for Geralt, enable it on Geralt board only. BUG=b:308968270 TEST=emerge-geralt coreboot BRANCH=None Change-Id: I5d4035d5f480551c428c450826e23bf77f2fe08a Signed-off-by: Ruihai Zhou <zhouruihai@huaqin.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/78955 Reviewed-by: Yidi Lin <yidilin@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: cong yang <yangcong5@huaqin.corp-partner.google.com>
This commit is contained in:
parent
77eaec6587
commit
d3089a36d5
|
@ -23,6 +23,6 @@ ramstage-y += chromeos.c
|
||||||
ramstage-y += display.c
|
ramstage-y += display.c
|
||||||
ramstage-y += mainboard.c
|
ramstage-y += mainboard.c
|
||||||
ramstage-y += panel.c
|
ramstage-y += panel.c
|
||||||
ramstage-y += panel_geralt.c
|
|
||||||
ramstage-y += regulator.c
|
ramstage-y += regulator.c
|
||||||
ramstage-y += reset.c
|
ramstage-y += reset.c
|
||||||
|
ramstage-$(CONFIG_BOARD_GOOGLE_GERALT) += panel_geralt.c
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <edid.h>
|
#include <edid.h>
|
||||||
#include <gpio.h>
|
#include <gpio.h>
|
||||||
|
#include <identity.h>
|
||||||
#include <soc/gpio_common.h>
|
#include <soc/gpio_common.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -35,6 +36,13 @@ static void get_mipi_cmd_from_cbfs(struct panel_description *desc)
|
||||||
printk(BIOS_ERR, "Missing %s in CBFS.\n", cbfs_name);
|
printk(BIOS_ERR, "Missing %s in CBFS.\n", cbfs_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct panel_description __weak *get_panel_description(uint32_t panel_id)
|
||||||
|
{
|
||||||
|
printk(BIOS_WARNING, "%s: %s: the panel configuration is not ready\n",
|
||||||
|
__func__, mainboard_part_number);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
struct panel_description *get_active_panel(void)
|
struct panel_description *get_active_panel(void)
|
||||||
{
|
{
|
||||||
uint32_t active_panel_id = panel_id();
|
uint32_t active_panel_id = panel_id();
|
||||||
|
@ -66,3 +74,38 @@ struct panel_description *get_active_panel(void)
|
||||||
}
|
}
|
||||||
return panel;
|
return panel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void configure_mipi_pwm_backlight(void)
|
||||||
|
{
|
||||||
|
gpio_output(GPIO_AP_DISP_BKLTEN, 0);
|
||||||
|
gpio_output(GPIO_MIPI_BL_PWM_1V8, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fill_lp_backlight_gpios(struct lb_gpios *gpios)
|
||||||
|
{
|
||||||
|
struct panel_description *panel = get_active_panel();
|
||||||
|
if (!panel || panel->disp_path == DISP_PATH_NONE)
|
||||||
|
return;
|
||||||
|
|
||||||
|
struct lb_gpio mipi_pwm_gpios[] = {
|
||||||
|
{GPIO_MIPI_BL_PWM_1V8.id, ACTIVE_HIGH, -1, "PWM control"},
|
||||||
|
};
|
||||||
|
|
||||||
|
struct lb_gpio edp_pwm_gpios[] = {
|
||||||
|
{GPIO_EDP_BL_PWM_1V8.id, ACTIVE_HIGH, -1, "PWM control"},
|
||||||
|
};
|
||||||
|
|
||||||
|
if (panel->pwm_ctrl_gpio) {
|
||||||
|
/* PWM control for typical eDP and MIPI panels */
|
||||||
|
if (panel->disp_path == DISP_PATH_MIPI)
|
||||||
|
lb_add_gpios(gpios, mipi_pwm_gpios, ARRAY_SIZE(mipi_pwm_gpios));
|
||||||
|
else
|
||||||
|
lb_add_gpios(gpios, edp_pwm_gpios, ARRAY_SIZE(edp_pwm_gpios));
|
||||||
|
}
|
||||||
|
|
||||||
|
struct lb_gpio backlight_gpios[] = {
|
||||||
|
{GPIO_AP_DISP_BKLTEN.id, ACTIVE_HIGH, -1, "backlight enable"},
|
||||||
|
};
|
||||||
|
|
||||||
|
lb_add_gpios(gpios, backlight_gpios, ARRAY_SIZE(backlight_gpios));
|
||||||
|
}
|
||||||
|
|
|
@ -16,6 +16,7 @@ struct panel_description {
|
||||||
bool pwm_ctrl_gpio;
|
bool pwm_ctrl_gpio;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void configure_mipi_pwm_backlight(void);
|
||||||
void fill_lp_backlight_gpios(struct lb_gpios *gpios);
|
void fill_lp_backlight_gpios(struct lb_gpios *gpios);
|
||||||
uint32_t panel_id(void);
|
uint32_t panel_id(void);
|
||||||
struct panel_description *get_panel_description(uint32_t panel_id);
|
struct panel_description *get_panel_description(uint32_t panel_id);
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
#include <boardid.h>
|
#include <boardid.h>
|
||||||
#include <boot/coreboot_tables.h>
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <gpio.h>
|
#include <gpio.h>
|
||||||
|
@ -12,18 +11,11 @@
|
||||||
#include <soc/pmif.h>
|
#include <soc/pmif.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "display.h"
|
|
||||||
#include "gpio.h"
|
#include "gpio.h"
|
||||||
#include "panel.h"
|
#include "panel.h"
|
||||||
|
|
||||||
#define PMIC_TPS65132_I2C I2C3
|
#define PMIC_TPS65132_I2C I2C3
|
||||||
|
|
||||||
static void configure_mipi_pwm_backlight(void)
|
|
||||||
{
|
|
||||||
gpio_output(GPIO_AP_DISP_BKLTEN, 0);
|
|
||||||
gpio_output(GPIO_MIPI_BL_PWM_1V8, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void power_on_mipi_boe_tv110c9m_ll0(void)
|
static void power_on_mipi_boe_tv110c9m_ll0(void)
|
||||||
{
|
{
|
||||||
const struct tps65132s_reg_setting reg_settings[] = {
|
const struct tps65132s_reg_setting reg_settings[] = {
|
||||||
|
@ -76,32 +68,3 @@ struct panel_description *get_panel_description(uint32_t panel_id)
|
||||||
|
|
||||||
return &panels[id];
|
return &panels[id];
|
||||||
}
|
}
|
||||||
|
|
||||||
void fill_lp_backlight_gpios(struct lb_gpios *gpios)
|
|
||||||
{
|
|
||||||
struct panel_description *panel = get_active_panel();
|
|
||||||
if (!panel || panel->disp_path == DISP_PATH_NONE)
|
|
||||||
return;
|
|
||||||
|
|
||||||
struct lb_gpio mipi_pwm_gpios[] = {
|
|
||||||
{GPIO_MIPI_BL_PWM_1V8.id, ACTIVE_HIGH, -1, "PWM control"},
|
|
||||||
};
|
|
||||||
|
|
||||||
struct lb_gpio edp_pwm_gpios[] = {
|
|
||||||
{GPIO_EDP_BL_PWM_1V8.id, ACTIVE_HIGH, -1, "PWM control"},
|
|
||||||
};
|
|
||||||
|
|
||||||
if (panel->pwm_ctrl_gpio) {
|
|
||||||
/* PWM control for typical eDP and MIPI panels */
|
|
||||||
if (panel->disp_path == DISP_PATH_MIPI)
|
|
||||||
lb_add_gpios(gpios, mipi_pwm_gpios, ARRAY_SIZE(mipi_pwm_gpios));
|
|
||||||
else
|
|
||||||
lb_add_gpios(gpios, edp_pwm_gpios, ARRAY_SIZE(edp_pwm_gpios));
|
|
||||||
}
|
|
||||||
|
|
||||||
struct lb_gpio backlight_gpios[] = {
|
|
||||||
{GPIO_AP_DISP_BKLTEN.id, ACTIVE_HIGH, -1, "backlight enable"},
|
|
||||||
};
|
|
||||||
|
|
||||||
lb_add_gpios(gpios, backlight_gpios, ARRAY_SIZE(backlight_gpios));
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue