X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fexynos_lcd.h;h=484bd36334f06f5da685e7ba172035de77d4918a;hb=24b77393a5fcc3e1f51b4e3a1080c0efb60b52eb;hp=cf389dac692f603698f5639814480cebd8118b91;hpb=baaa7dd7061521509792ca158508b2c4554a7184;p=oweals%2Fu-boot.git diff --git a/include/exynos_lcd.h b/include/exynos_lcd.h index cf389dac69..484bd36334 100644 --- a/include/exynos_lcd.h +++ b/include/exynos_lcd.h @@ -1,10 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * exynos_lcd.h - Exynos LCD Controller structures * * (C) Copyright 2001 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _EXYNOS_LCD_H_ @@ -25,6 +24,7 @@ enum exynos_fb_rgb_mode_t { typedef struct vidinfo { ushort vl_col; /* Number of columns (i.e. 640) */ ushort vl_row; /* Number of rows (i.e. 480) */ + ushort vl_rot; /* Rotation of Display (0, 1, 2, 3) */ ushort vl_width; /* Width of display area in millimeters */ ushort vl_height; /* Height of display area in millimeters */ @@ -74,8 +74,8 @@ typedef struct vidinfo { unsigned int sclk_div; unsigned int dual_lcd_enabled; + struct exynos_fb *reg; + struct exynos_platform_mipi_dsim *dsim_platform_data_dt; } vidinfo_t; -void init_panel_info(vidinfo_t *vid); - #endif