drivers/video/am335x-fb: Fix bits for LCD_PALMODE_RAWDATA definition
authorMartin Pietryka <martin.pietryka@chello.at>
Mon, 25 Apr 2016 19:25:07 +0000 (21:25 +0200)
committerAnatolij Gustschin <agust@denx.de>
Mon, 25 Apr 2016 20:02:08 +0000 (22:02 +0200)
According to the TRM you have to set bits [21:20] to 0b10 for RAW mode, so
(0x10 << 20) is obviously wrong here.

Signed-off-by: Martin Pietryka <martin.pietryka@chello.at>
drivers/video/am335x-fb.c

index e23d1720018f8820a3d963c943c8a5ebc025f62c..0ec843f6b3a05cbd78599f9dcfe47ff0afa9e6fe 100644 (file)
@@ -55,7 +55,7 @@
 /* LCD Raster Ctrl Register */
 #define LCD_TFT_24BPP_MODE                     (1 << 25)
 #define LCD_TFT_24BPP_UNPACK                   (1 << 26)
-#define LCD_PALMODE_RAWDATA                    (0x10 << 20)
+#define LCD_PALMODE_RAWDATA                    (0x02 << 20)
 #define LCD_TFT_MODE                           (0x01 << 7)
 #define LCD_RASTER_ENABLE                      (0x01 << 0)