summaryrefslogtreecommitdiff
path: root/src/mainboard/google/corsola/display.h
blob: 929ddf700246eeed2c37b5b60eab60a239cd0749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __MAINBOARD_GOOGLE_CORSOLA_DISPLAY_H__
#define __MAINBOARD_GOOGLE_CORSOLA_DISPLAY_H__

#include <edid.h>

struct edp_bridge {
	void (*power_on)(void);
	int (*get_edid)(u8 i2c_bus, struct edid *edid);
	int (*post_power_on)(u8 i2c_bus, struct edid *edid);
};

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

#endif