V4L/DVB (12838): tm6000: Fix color support on tm6010
TM6010 uses some different registers for format support. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
1b4c5b1f05
commit
717ecd2b9a
|
@ -140,11 +140,15 @@ int tm6000_get_reg16 (struct tm6000_core *dev, u8 req, u16 value, u16 index)
|
||||||
|
|
||||||
void tm6000_set_fourcc_format(struct tm6000_core *dev)
|
void tm6000_set_fourcc_format(struct tm6000_core *dev)
|
||||||
{
|
{
|
||||||
if (dev->fourcc==V4L2_PIX_FMT_UYVY) {
|
if (dev->dev_type == TM6010) {
|
||||||
/* Sets driver to UYUV */
|
if (dev->fourcc == V4L2_PIX_FMT_UYVY)
|
||||||
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xd0);
|
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xfc);
|
||||||
|
else
|
||||||
|
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xfd);
|
||||||
} else {
|
} else {
|
||||||
/* Sets driver to YUV2 */
|
if (dev->fourcc == V4L2_PIX_FMT_UYVY)
|
||||||
|
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xd0);
|
||||||
|
else
|
||||||
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0x90);
|
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0x90);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue