coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
mipi_display.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Defines for Mobile Industry Processor Interface (MIPI(R))
4  * Display Working Group standards: DSI, DCS, DBI, DPI
5  *
6  * Author: Imre Deak <imre.deak@nokia.com>
7  */
8 #ifndef __SOC_MIPI_DISPLAY_H__
9 #define __SOC_MIPI_DISPLAY_H__
10 
11 #include <mipi/dsi.h>
12 
13 /* MIPI DCS pixel formats */
14 #define MIPI_DCS_PIXEL_FMT_24BIT 7
15 #define MIPI_DCS_PIXEL_FMT_18BIT 6
16 #define MIPI_DCS_PIXEL_FMT_16BIT 5
17 #define MIPI_DCS_PIXEL_FMT_12BIT 3
18 #define MIPI_DCS_PIXEL_FMT_8BIT 2
19 #define MIPI_DCS_PIXEL_FMT_3BIT 1
20 
21 #endif /* __SOC_MIPI_DISPLAY_H__ */