diff options
author | Dmitry Belimov <d.belimov@gmail.com> | 2008-08-26 12:44:40 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:55 -0400 |
commit | f03813e4d1900b619d4cb133506b130e535614f0 (patch) | |
tree | 3803072475bafcc341d82feb0ce257be29a566f0 /drivers/media/video/saa7134/saa6752hs.c | |
parent | 9d95af9d09d537d287eea9914c0d1ca4cfa0ec7f (diff) |
V4L/DVB (8795): saa7134-empress: insert leading null bytes for Beholder M6 empress cards
Additional code to improve the init sequence and add board type tests
were done by Hans Verkuil.
Signed-off-by: Beholder Intl. Ltd. Dmitry Belimov <d.belimov@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa7134/saa6752hs.c')
-rw-r--r-- | drivers/media/video/saa7134/saa6752hs.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/drivers/media/video/saa7134/saa6752hs.c b/drivers/media/video/saa7134/saa6752hs.c index 28499e591925..f40cb0b479b1 100644 --- a/drivers/media/video/saa7134/saa6752hs.c +++ b/drivers/media/video/saa7134/saa6752hs.c | |||
@@ -653,7 +653,7 @@ static int saa6752hs_qmenu(struct saa6752hs_state *h, | |||
653 | return v4l2_ctrl_query_menu(qmenu, &qctrl, NULL); | 653 | return v4l2_ctrl_query_menu(qmenu, &qctrl, NULL); |
654 | } | 654 | } |
655 | 655 | ||
656 | static int saa6752hs_init(struct i2c_client* client) | 656 | static int saa6752hs_init(struct i2c_client *client, u32 leading_null_bytes) |
657 | { | 657 | { |
658 | unsigned char buf[9], buf2[4]; | 658 | unsigned char buf[9], buf2[4]; |
659 | struct saa6752hs_state *h; | 659 | struct saa6752hs_state *h; |
@@ -705,6 +705,12 @@ static int saa6752hs_init(struct i2c_client* client) | |||
705 | buf[1] = 0x05; | 705 | buf[1] = 0x05; |
706 | i2c_master_send(client,buf,2); | 706 | i2c_master_send(client,buf,2); |
707 | 707 | ||
708 | /* Set leading null byte for TS */ | ||
709 | buf[0] = 0xF6; | ||
710 | buf[1] = (leading_null_bytes >> 8) & 0xff; | ||
711 | buf[2] = leading_null_bytes & 0xff; | ||
712 | i2c_master_send(client, buf, 3); | ||
713 | |||
708 | /* compute PAT */ | 714 | /* compute PAT */ |
709 | memcpy(localPAT, PAT, sizeof(PAT)); | 715 | memcpy(localPAT, PAT, sizeof(PAT)); |
710 | localPAT[17] = 0xe0 | ((h->params.ts_pid_pmt >> 8) & 0x0f); | 716 | localPAT[17] = 0xe0 | ((h->params.ts_pid_pmt >> 8) & 0x0f); |
@@ -812,14 +818,13 @@ saa6752hs_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
812 | int i; | 818 | int i; |
813 | 819 | ||
814 | switch (cmd) { | 820 | switch (cmd) { |
821 | case VIDIOC_INT_INIT: | ||
822 | /* apply settings and start encoder */ | ||
823 | saa6752hs_init(client, *(u32 *)arg); | ||
824 | break; | ||
815 | case VIDIOC_S_EXT_CTRLS: | 825 | case VIDIOC_S_EXT_CTRLS: |
816 | if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG) | 826 | if (ctrls->ctrl_class != V4L2_CTRL_CLASS_MPEG) |
817 | return -EINVAL; | 827 | return -EINVAL; |
818 | if (ctrls->count == 0) { | ||
819 | /* apply settings and start encoder */ | ||
820 | saa6752hs_init(client); | ||
821 | break; | ||
822 | } | ||
823 | /* fall through */ | 828 | /* fall through */ |
824 | case VIDIOC_TRY_EXT_CTRLS: | 829 | case VIDIOC_TRY_EXT_CTRLS: |
825 | case VIDIOC_G_EXT_CTRLS: | 830 | case VIDIOC_G_EXT_CTRLS: |