coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
display.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __SOC_ROCKCHIP_RK3288_DISPLAY_H__
4 #define __SOC_ROCKCHIP_RK3288_DISPLAY_H__
5 
6 #include <device/device.h>
7 #include <stdint.h>
8 
9 /*
10  * this bit select edp phy pll, this bit define different between
11  * rk3288 and rk3399 in edp phy, so implement it in soc specific code
12  */
13 #define REF_CLK_24M (0x0 << 0)
14 #define REF_CLK_27M (0x1 << 0)
15 
16 void rk_display_init(struct device *dev, u32 lcdbase, unsigned long fb_size);
17 
19 
20 #endif
void mainboard_power_on_backlight(void)
Definition: mainboard.c:356
void rk_display_init(struct device *dev, u32 lcdbase, unsigned long fb_size)
Definition: display.c:24
uint32_t u32
Definition: stdint.h:51
Definition: device.h:107