summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/geralt/panel.h
blob: 40e880b6c6e00de3e3c831192e37678d29d8150f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __MAINBOARD_GOOGLE_GERALT_PANEL_H__
#define __MAINBOARD_GOOGLE_GERALT_PANEL_H__

#include <mipi/panel.h>
#include <soc/ddp.h>

struct panel_description {
	const char *name;
	struct panel_serializable_data *s;
	void (*power_on)(void);
	void (*configure_panel_backlight)(void);
	enum disp_path_sel disp_path;
};

uint32_t panel_id(void);
struct panel_description *get_panel_description(uint32_t panel_id);
struct panel_description *get_active_panel(void);

#endif