diff options
author | Mike Isely <isely@pobox.com> | 2006-03-15 00:44:43 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2006-03-15 00:44:43 -0600 |
commit | 0c57b11076a797902550b9f74763718edb825483 (patch) | |
tree | 950f5fadfdee05d7cc4bfed0ef7d0a5dbc412e66 /linux/drivers/media/video/pvrusb2/pvrusb2-audio.c | |
parent | 1895621dbd8ab81d0545392d3b9dc64a9f3b4593 (diff) | |
download | mediapointer-dvb-s2-0c57b11076a797902550b9f74763718edb825483.tar.gz mediapointer-dvb-s2-0c57b11076a797902550b9f74763718edb825483.tar.bz2 |
Update pvrusb2 driver to operate msp3400 as a pure v4l2 module.
From: Mike Isely <isely@pobox.com>
Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'linux/drivers/media/video/pvrusb2/pvrusb2-audio.c')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-audio.c | 58 |
1 files changed, 17 insertions, 41 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c b/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c index 7e2fab330..c43b98897 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c @@ -38,21 +38,6 @@ struct pvr2_msp3400_handler { }; -/* - - MCI <isely@pobox.com> 10-Mar-2005 - Rather than operate the msp34xx - directly, we rely on the msp3400.ko module to do it for us. We - really have to do this because that $##@!! module is going to attach - itself to us anyway, so we really can't operate the chip ourselves. - Unfortunately msp3400.ko is a real train wreck of a piece of code. - Most of the code below tries to tickle that module in just the right - way to get the results we need. Yuck. msp3400.c should be taken - out back and shot. Based on my reading of the actual chip datasheet - it should in theory be possible to write a far cleaner and simpler - driver than what is currently there right now. - -*/ - static int xlat_audiomode_to_v4l2(int id) { switch (id) { @@ -75,10 +60,10 @@ static int xlat_audiomode_to_v4l2(int id) static void set_stereo(struct pvr2_msp3400_handler *ctxt) { struct pvr2_hdw *hdw = ctxt->hdw; - unsigned short sarg = 0; + struct v4l2_audio ac; struct msp_matrix mspm; - pvr2_trace(PVR2_TRACE_CHIPS,"i2c msp3400 set_stereo"); + pvr2_trace(PVR2_TRACE_CHIPS,"i2c msp3400 v4l2 set_stereo"); if (hdw->controls[PVR2_CID_INPUT].value == PVR2_CVAL_INPUT_TV) { struct v4l2_tuner vt; @@ -88,38 +73,29 @@ static void set_stereo(struct pvr2_msp3400_handler *ctxt) pvr2_i2c_client_cmd(ctxt->client,VIDIOC_S_TUNER,&vt); } - sarg = AUDIO_TUNER; + memset(&ac,0,sizeof(ac)); + ac.index = AUDIO_TUNER; switch (hdw->controls[PVR2_CID_INPUT].value) { case PVR2_CVAL_INPUT_TV: - sarg = AUDIO_TUNER; + ac.index = AUDIO_TUNER; break; case PVR2_CVAL_INPUT_RADIO: - /* Assume that msp34xx also handle FM decoding, in which case - we're still using the tuner. */ - sarg = AUDIO_TUNER; + ac.index = AUDIO_RADIO; break; case PVR2_CVAL_INPUT_SVIDEO: case PVR2_CVAL_INPUT_COMPOSITE: - sarg = AUDIO_EXTERN; + ac.index = AUDIO_EXTERN_1; break; } - pvr2_i2c_client_cmd(ctxt->client,AUDC_SET_INPUT,&sarg); - - /* The above should have been enough to do the job, however - msp3400.ko does an incomplete job of handling the scart - routing. Really. It doesn't even bother to initialize the - SC1 output at all. So we have to help it here... - Unfortunately this also means that we have include - msp3400.c's header file and it currently isn't in a public - place. Damnit! */ + pvr2_i2c_client_cmd(ctxt->client,VIDIOC_S_AUDIO,&ac); mspm.input = SCART_IN1_DA; switch (hdw->controls[PVR2_CID_INPUT].value) { case PVR2_CVAL_INPUT_SVIDEO: case PVR2_CVAL_INPUT_COMPOSITE: /* Bypass the DSP and just use IN1. In theory we - should be able to permanent just use IN1_DA, but to - do that msp3400.ko should be adjusting the DSP + should be able to permanently just use IN1_DA, but + to do that msp3400.ko should be adjusting the DSP input SCART routing correctly when doing video in. Unfortunately that appears not to be the case. I really hate that module. */ @@ -182,19 +158,19 @@ static void msp3400_update(struct pvr2_msp3400_handler *ctxt) } -/* This reads back the current volume parameters and signal type */ +/* This reads back the current signal type */ static int get_audio_status(struct pvr2_msp3400_handler *ctxt) { - struct video_audio vt; + struct v4l2_tuner vt; int stat; memset(&vt,0,sizeof(vt)); - stat = pvr2_i2c_client_cmd(ctxt->client,VIDIOCGAUDIO,&vt); + stat = pvr2_i2c_client_cmd(ctxt->client,VIDIOC_G_TUNER,&vt); if (stat < 0) return stat; - ctxt->hdw->flag_stereo = (vt.mode & VIDEO_SOUND_STEREO) != 0; + ctxt->hdw->flag_stereo = (vt.audmode & V4L2_TUNER_MODE_STEREO) != 0; ctxt->hdw->flag_bilingual = - (vt.mode & (VIDEO_SOUND_LANG1|VIDEO_SOUND_LANG2)) != 0; + (vt.audmode & V4L2_TUNER_MODE_LANG2) != 0; return 0; } @@ -210,7 +186,7 @@ static void pvr2_msp3400_detach(struct pvr2_msp3400_handler *ctxt) static unsigned int pvr2_msp3400_describe(struct pvr2_msp3400_handler *ctxt, char *buf,unsigned int cnt) { - return scnprintf(buf,cnt,"handler: pvrusb2-audio"); + return scnprintf(buf,cnt,"handler: pvrusb2-audio v4l2"); } @@ -243,7 +219,7 @@ int pvr2_i2c_msp3400_setup(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp) sizeof(msp3400_ops[0]))) - 1; cp->handler = &ctxt->i2c_handler; hdw->audio_stat = &ctxt->astat; - pvr2_trace(PVR2_TRACE_CHIPS,"i2c 0x%x msp3400 V4L1 handler set up", + pvr2_trace(PVR2_TRACE_CHIPS,"i2c 0x%x msp3400 V4L2 handler set up", cp->client->addr); return !0; } |