mb/google/brya/var/omnigul: Modify NVMe and UFS Storage support
[coreboot.git] / src / mainboard / google / geralt / panel.h
blob11b7fb0918e260c26bff1e7f4de0e0e2e59e3c01
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __MAINBOARD_GOOGLE_GERALT_PANEL_H__
4 #define __MAINBOARD_GOOGLE_GERALT_PANEL_H__
6 #include <boot/coreboot_tables.h>
7 #include <mipi/panel.h>
8 #include <soc/ddp.h>
10 struct panel_description {
11 const char *name;
12 struct panel_serializable_data *s;
13 void (*power_on)(void);
14 void (*configure_panel_backlight)(void);
15 enum disp_path_sel disp_path;
16 bool pwm_ctrl_gpio;
19 void fill_lp_backlight_gpios(struct lb_gpios *gpios);
20 uint32_t panel_id(void);
21 struct panel_description *get_panel_description(uint32_t panel_id);
22 struct panel_description *get_active_panel(void);
24 #endif