summaryrefslogtreecommitdiff
path: root/include/mxsfb.h
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2014-06-12 19:47:27 +0800
committerPeng Fan <Peng.Fan@freescale.com>2015-04-29 14:43:24 +0800
commita31dcdafb0963381e7213c59f79a340ef27ec2e2 (patch)
tree1432885a159c451c092d2360a551a16d7b738e68 /include/mxsfb.h
parent92295fafcdbaa3a3fe0a63ede15f896dfc9ce0b0 (diff)
downloadu-boot-imx-a31dcdafb0963381e7213c59f79a340ef27ec2e2.zip
u-boot-imx-a31dcdafb0963381e7213c59f79a340ef27ec2e2.tar.gz
u-boot-imx-a31dcdafb0963381e7213c59f79a340ef27ec2e2.tar.bz2
ENGR00315894-81 gis: Add gis module
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 commit a007b00dd8ef9f773dfdebef0b1deb0990281793) Conflicts: drivers/video/Makefile
Diffstat (limited to 'include/mxsfb.h')
-rw-r--r--include/mxsfb.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/mxsfb.h b/include/mxsfb.h
index a4e27a8..ddea7aa 100644
--- a/include/mxsfb.h
+++ b/include/mxsfb.h
@@ -8,6 +8,16 @@
#define __MXSFB_H__
#ifdef CONFIG_VIDEO_MXS
+struct display_panel {
+ unsigned int reg_base;
+ unsigned int width;
+ unsigned int height;
+ unsigned int gdfindex;
+ unsigned int gdfbytespp;
+};
+
+void mxs_lcd_get_panel(struct display_panel *panel);
+void lcdif_power_down(void);
int mxs_lcd_panel_setup(struct fb_videomode mode, int bpp,
uint32_t base_addr);
#endif