aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/geralt/panel_ciri.c
blob: 4d31711cf6273989855d583ad473838d8bb6818e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/console.h>
#include <soc/i2c.h>
#include <soc/regulator.h>

#include "gpio.h"
#include "panel.h"

#define PMIC_TPS65132_I2C	I2C3

static void power_on_mipi_himax_83102j(void)
{
	const struct tps65132s_reg_setting reg_settings[] = {
		{ PMIC_TPS65132_VPOS, 0x11, 0x1f },
		{ PMIC_TPS65132_VNEG, 0x11, 0x1f },
		{ PMIC_TPS65132_DLYX, 0x55, 0xff },
		{ PMIC_TPS65132_ASSDD, 0x5b, 0xff },
	};
	const struct tps65132s_cfg cfg = {
		.i2c_bus = PMIC_TPS65132_I2C,
		.en = GPIO_EN_PPVAR_MIPI_DISP,
		.sync = GPIO_EN_PPVAR_MIPI_DISP_150MA,
		.settings = reg_settings,
		.setting_counts = ARRAY_SIZE(reg_settings),
	};
	mainboard_set_regulator_voltage(MTK_REGULATOR_VDD18, 1900000);
	power_on_mipi_panel(&cfg);
}

static struct panel_description ciri_panels[] = {
	[17] = {
		.name = "BOE_NV110WUM_L60",
		.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,
	},

	[34] = {
		.name = "IVO_T109NW41",
		.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,
	}
};

struct panel_description *get_panel_description(uint32_t panel_id)
{
	uint32_t id = panel_id & 0xFF;

	if (id >= ARRAY_SIZE(ciri_panels))
		return NULL;

	return &ciri_panels[id];
}