Add gis module, current gis is support vadc input. Add power down function to lcdif driver. Signed-off-by: Sandor Yu <R01008@freescale.com> Signed-off-by: Ye.Li <B37916@freescale.com> (cherry picked from commita007b00dd8) (cherry picked from commita31dcdafb0)
20 lines
320 B
C
20 lines
320 B
C
/*
|
|
* Copyright (C) 2014 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef GIS_H
|
|
#define GIS_H
|
|
|
|
#define FMT_YUV444 0
|
|
#define FMT_YUYV 1
|
|
#define FMT_UYVY 2
|
|
#define FMT_RGB565 3
|
|
#define FMT_RGB888 4
|
|
|
|
void mxc_enable_gis(void);
|
|
void mxc_disable_gis(void);
|
|
|
|
#endif
|