/* SPDX-License-Identifier: GPL-2.0-only */ /* * Defines for Mobile Industry Processor Interface (MIPI(R)) * Display Working Group standards: DSI, DCS, DBI, DPI * * Copyright (C) 2010 Guennadi Liakhovetski <[email protected]> * Copyright (C) 2006 Nokia Corporation * Author: Imre Deak <[email protected]> */ #ifndef MIPI_DISPLAY_H #define MIPI_DISPLAY_H /* MIPI DSI Processor-to-Peripheral transaction types */ enum { … }; /* MIPI DSI Peripheral-to-Processor transaction types */ enum { … }; /* MIPI DCS commands */ enum { … }; /* MIPI DCS pixel formats */ #define MIPI_DCS_PIXEL_FMT_24BIT … #define MIPI_DCS_PIXEL_FMT_18BIT … #define MIPI_DCS_PIXEL_FMT_16BIT … #define MIPI_DCS_PIXEL_FMT_12BIT … #define MIPI_DCS_PIXEL_FMT_8BIT … #define MIPI_DCS_PIXEL_FMT_3BIT … #endif