]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
PXA: pxafb: Marvell Littleton LCD definition
authorMarek Vasut <marek.vasut@gmail.com>
Thu, 31 Dec 2009 02:44:22 +0000 (03:44 +0100)
committerWolfgang Denk <wd@denx.de>
Tue, 19 Oct 2010 20:46:56 +0000 (22:46 +0200)
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
arch/arm/cpu/pxa/pxafb.c

index 2f0f707ba035b9fd66bffa89b0ba6260154fffc1..987fa0682c8d5b9da794e223bfdfeca1f510dc93 100644 (file)
@@ -284,6 +284,39 @@ vidinfo_t panel_info = {
 
 /*----------------------------------------------------------------------*/
 
+#ifdef CONFIG_LITTLETON_LCD
+# define LCD_BPP       LCD_COLOR8
+
+/* you have to set lccr0 and lccr3 (including pcd) */
+# define REG_LCCR0     0x003008f8
+# define REG_LCCR3     0x0300FF04
+
+vidinfo_t panel_info = {
+       .vl_col         = 480,
+       .vl_row         = 640,
+       .vl_width       = 480,
+       .vl_height      = 640,
+       .vl_clkp        = CONFIG_SYS_HIGH,
+       .vl_oep         = CONFIG_SYS_HIGH,
+       .vl_hsp         = CONFIG_SYS_HIGH,
+       .vl_vsp         = CONFIG_SYS_HIGH,
+       .vl_dp          = CONFIG_SYS_HIGH,
+       .vl_bpix        = LCD_BPP,
+       .vl_lbw         = 0,
+       .vl_splt        = 0,
+       .vl_clor        = 0,
+       .vl_tft         = 1,
+       .vl_hpw         = 9,
+       .vl_blw         = 8,
+       .vl_elw         = 24,
+       .vl_vpw         = 2,
+       .vl_bfw         = 2,
+       .vl_efw         = 4,
+};
+#endif /* CONFIG_LITTLETON_LCD */
+
+/*----------------------------------------------------------------------*/
+
 #if LCD_BPP == LCD_COLOR8
 void lcd_setcolreg (ushort regno, ushort red, ushort green, ushort blue);
 #endif