Skip to content

Commit

Permalink
V4L/DVB (12838): tm6000: Fix color support on tm6010
Browse files Browse the repository at this point in the history
TM6010 uses some different registers for format support.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed May 18, 2010
1 parent 1b4c5b1 commit 717ecd2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions drivers/staging/tm6000/tm6000-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,16 @@ int tm6000_get_reg16 (struct tm6000_core *dev, u8 req, u16 value, u16 index)

void tm6000_set_fourcc_format(struct tm6000_core *dev)
{
if (dev->fourcc==V4L2_PIX_FMT_UYVY) {
/* Sets driver to UYUV */
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xd0);
if (dev->dev_type == TM6010) {
if (dev->fourcc == V4L2_PIX_FMT_UYVY)
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xfc);
else
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0xfd);
} else {
/* Sets driver to YUV2 */
tm6000_set_reg (dev, REQ_07_SET_GET_AVREG, 0xc1, 0x90);
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);
}
}

Expand Down

0 comments on commit 717ecd2

Please sign in to comment.