summaryrefslogtreecommitdiffstats
path: root/src/soc/nvidia/tegra210/include/soc/mipi_display.h
blob: e5c7596b9794aed3923f5da2ec54773ad2fdae1e (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 */
/*
 * Defines for Mobile Industry Processor Interface (MIPI(R))
 * Display Working Group standards: DSI, DCS, DBI, DPI
 *
 * Author: Imre Deak <imre.deak@nokia.com>
 */
#ifndef __SOC_MIPI_DISPLAY_H__
#define __SOC_MIPI_DISPLAY_H__

#include <mipi/dsi.h>

/* MIPI DCS pixel formats */
#define MIPI_DCS_PIXEL_FMT_24BIT	7
#define MIPI_DCS_PIXEL_FMT_18BIT	6
#define MIPI_DCS_PIXEL_FMT_16BIT	5
#define MIPI_DCS_PIXEL_FMT_12BIT	3
#define MIPI_DCS_PIXEL_FMT_8BIT		2
#define MIPI_DCS_PIXEL_FMT_3BIT		1

#endif	/* __SOC_MIPI_DISPLAY_H__ */