]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
V4L/DVB: au8522: fix case where we don't perform the first tune after going digital
authorDevin Heitmueller <dheitmueller@kernellabs.com>
Thu, 18 Feb 2010 01:51:46 +0000 (22:51 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 18 May 2010 03:46:22 +0000 (00:46 -0300)
Address a problem found in MythTV where if we are in digital mode, switch to
analog mode, and the switch back to digital mode, the first tuning request
after switching back to digital mode gets dropped.  This is because the au8522
maintains internal state, and would think the demod was already tuned to the
target frequency.

Thanks to Zaphod Beeblebrox for reporting this issue.

Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/au8522_decoder.c
drivers/media/dvb/frontends/au8522_dig.c

index ef5fd49363c2d24c14984e5faae70ac40915e414..68dba3a4b4dab43fe61584cc7dec323db2765679 100644 (file)
@@ -666,6 +666,11 @@ static int au8522_reset(struct v4l2_subdev *sd, u32 val)
 
        state->operational_mode = AU8522_ANALOG_MODE;
 
+       /* Clear out any state associated with the digital side of the
+          chip, so that when it gets powered back up it won't think
+          that it is already tuned */
+       state->current_frequency = 0;
+
        au8522_writereg(state, 0xa4, 1 << 5);
 
        return 0;
index e2efb25d1a752d8ba5022559705a8676138d251a..65f6a36dfb21b1047807002af182f4cedbd9e073 100644 (file)
@@ -618,6 +618,11 @@ int au8522_init(struct dvb_frontend *fe)
 
        state->operational_mode = AU8522_DIGITAL_MODE;
 
+       /* Clear out any state associated with the digital side of the
+          chip, so that when it gets powered back up it won't think
+          that it is already tuned */
+       state->current_frequency = 0;
+
        au8522_writereg(state, 0xa4, 1 << 5);
 
        au8522_i2c_gate_ctrl(fe, 1);