Commit cd74ebaf authored by Jingoo Han's avatar Jingoo Han Committed by Paul Mundt

video: s3c-fb: add additional validate bpps

Additional validate bpps are added to windows as follows:
window0: 18 bpp for RGB666
window1, 2 and 3: 28 bpp for ARGB4888
window4: 19 bpp for ARGB1666, 28 bpp for ARGB4888
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent c9d503e9
...@@ -1628,7 +1628,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = { ...@@ -1628,7 +1628,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
.has_osd_c = 1, .has_osd_c = 1,
.osd_size_off = 0x8, .osd_size_off = 0x8,
.palette_sz = 256, .palette_sz = 256,
.valid_bpp = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24), .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
VALID_BPP(18) | VALID_BPP(24)),
}, },
[1] = { [1] = {
.has_osd_c = 1, .has_osd_c = 1,
...@@ -1638,7 +1639,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = { ...@@ -1638,7 +1639,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
.palette_sz = 256, .palette_sz = 256,
.valid_bpp = (VALID_BPP1248 | VALID_BPP(16) | .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
VALID_BPP(18) | VALID_BPP(19) | VALID_BPP(18) | VALID_BPP(19) |
VALID_BPP(24) | VALID_BPP(25)), VALID_BPP(24) | VALID_BPP(25) |
VALID_BPP(28)),
}, },
[2] = { [2] = {
.has_osd_c = 1, .has_osd_c = 1,
...@@ -1649,7 +1651,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = { ...@@ -1649,7 +1651,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
.palette_16bpp = 1, .palette_16bpp = 1,
.valid_bpp = (VALID_BPP1248 | VALID_BPP(16) | .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
VALID_BPP(18) | VALID_BPP(19) | VALID_BPP(18) | VALID_BPP(19) |
VALID_BPP(24) | VALID_BPP(25)), VALID_BPP(24) | VALID_BPP(25) |
VALID_BPP(28)),
}, },
[3] = { [3] = {
.has_osd_c = 1, .has_osd_c = 1,
...@@ -1658,7 +1661,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = { ...@@ -1658,7 +1661,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
.palette_16bpp = 1, .palette_16bpp = 1,
.valid_bpp = (VALID_BPP124 | VALID_BPP(16) | .valid_bpp = (VALID_BPP124 | VALID_BPP(16) |
VALID_BPP(18) | VALID_BPP(19) | VALID_BPP(18) | VALID_BPP(19) |
VALID_BPP(24) | VALID_BPP(25)), VALID_BPP(24) | VALID_BPP(25) |
VALID_BPP(28)),
}, },
[4] = { [4] = {
.has_osd_c = 1, .has_osd_c = 1,
...@@ -1667,7 +1671,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = { ...@@ -1667,7 +1671,8 @@ static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
.palette_16bpp = 1, .palette_16bpp = 1,
.valid_bpp = (VALID_BPP(1) | VALID_BPP(2) | .valid_bpp = (VALID_BPP(1) | VALID_BPP(2) |
VALID_BPP(16) | VALID_BPP(18) | VALID_BPP(16) | VALID_BPP(18) |
VALID_BPP(24) | VALID_BPP(25)), VALID_BPP(19) | VALID_BPP(24) |
VALID_BPP(25) | VALID_BPP(28)),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment