diff options
author | Anatolij Gustschin <agust@denx.de> | 2012-03-13 09:13:57 -0400 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-03-19 18:59:47 -0400 |
commit | f413070e3f0bccb40ca939b90699347daf815607 (patch) | |
tree | de2d560d7082ecf1df9ba57ecd4376ba2dfddf2a /drivers/video/Kconfig | |
parent | 084e104bd8e03e1f8e10ae73944de497f4f427b5 (diff) |
fbdev: da8xx: add support for SP10Q010 display
Add timing data for Hitachi SP10Q010 display and allow configuration
of the 4bpp palette. For 4bpp framebuffer enable reversed order of
pixels in a byte. This requires defining FB_CFB_REV_PIXELS_IN_BYTE
and additionally setting var.nonstd to the value FB_NONSTD_REV_PIX_IN_B.
Note that it is not enough to set da8xx_fb_var.nonstd to this value
statically, since FBIOPUT_VSCREENINFO ioctl might pass var struct with
.nonstd field set to zero or another value. Therefore this setting must
be adjusted in fb_check_var() according to the requested bpp value.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Manjunathappa, Prakash <prakash.pm@ti.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index a43594243186..005347a35b61 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -2246,6 +2246,7 @@ config FB_DA8XX | |||
2246 | select FB_CFB_FILLRECT | 2246 | select FB_CFB_FILLRECT |
2247 | select FB_CFB_COPYAREA | 2247 | select FB_CFB_COPYAREA |
2248 | select FB_CFB_IMAGEBLIT | 2248 | select FB_CFB_IMAGEBLIT |
2249 | select FB_CFB_REV_PIXELS_IN_BYTE | ||
2249 | ---help--- | 2250 | ---help--- |
2250 | This is the frame buffer device driver for the TI LCD controller | 2251 | This is the frame buffer device driver for the TI LCD controller |
2251 | found on DA8xx/OMAP-L1xx SoCs. | 2252 | found on DA8xx/OMAP-L1xx SoCs. |