]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/lcd.h
update to 2015.04-rc1
[karo-tx-uboot.git] / include / lcd.h
index 160f940d2a6698f6538e084a4322679d69855ae0..eb1d12871fced64adbd09991f8324a369c15a7db 100644 (file)
@@ -1,4 +1,6 @@
 /*
+ * Copyright (C) 2004-2010 Freescale Semiconductor, Inc.
+ *
  * MPC823 and PXA LCD Controller
  *
  * Modeled after video interface by Paolo Scaffardi
@@ -257,6 +259,9 @@ extern vidinfo_t panel_info;
 
 /* Video functions */
 
+void   lcd_disable(void);
+void   lcd_panel_disable(void);
+
 void   lcd_putc(const char c);
 void   lcd_puts(const char *s);
 void   lcd_printf(const char *fmt, ...);
@@ -404,14 +409,23 @@ void lcd_sync(void);
 # define CONSOLE_COLOR_WHITE   0x00ffffff      /* Must remain last / highest*/
 # define NBYTES(bit_code)      (NBITS(bit_code) >> 3)
 
-#else
+#elif LCD_BPP == LCD_COLOR16
 
 /*
  * 16bpp color definitions
  */
 # define CONSOLE_COLOR_BLACK   0x0000
+# define CONSOLE_COLOR_RED     0xf800
+# define CONSOLE_COLOR_GREEN   0x07e0
+# define CONSOLE_COLOR_YELLOW  0xffe0
+# define CONSOLE_COLOR_BLUE    0x001f
+# define CONSOLE_COLOR_MAGENTA 0xf81f
+# define CONSOLE_COLOR_CYAN    0x07ff
+# define CONSOLE_COLOR_GREY    0xcccc
 # define CONSOLE_COLOR_WHITE   0xffff  /* Must remain last / highest   */
 
+#else
+#error Invalid LCD_BPP setting
 #endif /* color definitions */
 
 /************************************************************************/