diff options
author | Amber Jain <amber@ti.com> | 2011-05-19 19:47:50 +0530 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-23 08:29:47 +0300 |
commit | f20e42205ab172cfd449c10e5183e2e371a629d6 (patch) | |
tree | 2d5652fcf8eed5a7e55cd75ef40ed9ab465fe72a /include/video/omapdss.h | |
parent | ad44cc3298872c4d4f4b034df9163c3944ae8c1c (diff) | |
download | talos-obmc-linux-f20e42205ab172cfd449c10e5183e2e371a629d6.tar.gz talos-obmc-linux-f20e42205ab172cfd449c10e5183e2e371a629d6.zip |
OMAP: DSS2: Add new color formats for OMAP4
Add new color formats supported by OMAP4: NV12, RGBA16, RGBX16,
ARGB16_1555, XRGB16_1555.
NV12 color format is defined here, its support in DSS will be added separately.
Signed-off-by: Amber Jain <amber@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video/omapdss.h')
-rw-r--r-- | include/video/omapdss.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index e62674599b3d..5658b4b83db8 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -86,6 +86,11 @@ enum omap_color_mode { OMAP_DSS_COLOR_ARGB32 = 1 << 11, /* ARGB32 */ OMAP_DSS_COLOR_RGBA32 = 1 << 12, /* RGBA32 */ OMAP_DSS_COLOR_RGBX32 = 1 << 13, /* RGBx32 */ + OMAP_DSS_COLOR_NV12 = 1 << 14, /* NV12 format: YUV 4:2:0 */ + OMAP_DSS_COLOR_RGBA16 = 1 << 15, /* RGBA16 - 4444 */ + OMAP_DSS_COLOR_RGBX16 = 1 << 16, /* RGBx16 - 4444 */ + OMAP_DSS_COLOR_ARGB16_1555 = 1 << 17, /* ARGB16 - 1555 */ + OMAP_DSS_COLOR_XRGB16_1555 = 1 << 18, /* xRGB16 - 1555 */ }; enum omap_lcd_display_type { |