diff options
Diffstat (limited to 'src/mainboard/google/corsola/display.h')
-rw-r--r-- | src/mainboard/google/corsola/display.h | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/src/mainboard/google/corsola/display.h b/src/mainboard/google/corsola/display.h index 929ddf7002..afff4bf30f 100644 --- a/src/mainboard/google/corsola/display.h +++ b/src/mainboard/google/corsola/display.h @@ -4,14 +4,37 @@ #define __MAINBOARD_GOOGLE_CORSOLA_DISPLAY_H__ #include <edid.h> +#include <mipi/panel.h> +#include <soc/i2c.h> -struct edp_bridge { - void (*power_on)(void); - int (*get_edid)(u8 i2c_bus, struct edid *edid); +#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 |