summaryrefslogtreecommitdiff
path: root/src/mainboard/google/corsola/display.h
blob: afff4bf30fbdcb924e61ca71493e2fd7638acd0d (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
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __MAINBOARD_GOOGLE_CORSOLA_DISPLAY_H__
#define __MAINBOARD_GOOGLE_CORSOLA_DISPLAY_H__

#include <edid.h>
#include <mipi/panel.h>
#include <soc/i2c.h>

#define BRIDGE_I2C		I2C0
#define PMIC_TPS65132_I2C	I2C6
#define PMIC_TPS65132_SLAVE	0x3E

struct panel_description {
	void (*power_on)(void);	/* Callback to turn on panel */
	int (*post_power_on)(u8 i2c_bus, struct edid *edid);
	const char *name;	/* Panel name in CBFS */
	struct panel_serializable_data *s;
	enum lb_fb_orientation orientation;
};

int configure_display(void);
uint32_t panel_id(void);

/* Return the mipi panel description from given panel id */
struct panel_description *get_panel_description(void);

/* Return the ANX7625 bridge description */
struct panel_description *get_anx7625_description(void);

/* Return the PS8640 bridge description */
struct panel_description *get_ps8640_description(void);

/* Load panel serializable data from CBFS */
struct panel_description *get_panel_from_cbfs(struct panel_description *desc);

void tps65132s_program_eeprom(void);
int panel_pmic_reg_mask(u32 bus, u8 chip, u8 addr, u8 val, u8 mask);

#endif