summaryrefslogtreecommitdiff
path: root/src/mainboard/google/corsola/display.h
blob: 4e883f2b8849152e5a2e7b2b0f0e3495e835d0c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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);

#endif