[media] rtl2830: implement .read_signal_strength()
authorAntti Palosaari <crope@iki.fi>
Fri, 18 May 2012 18:17:51 +0000 (15:17 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sun, 20 May 2012 13:24:12 +0000 (10:24 -0300)
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/rtl2830.c

index 266098656c4808e60642a1034da7465f856e8f82..6e4029de3c73aa7f39a4cd5cb541aad34db871b3 100644 (file)
@@ -474,8 +474,29 @@ static int rtl2830_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
 
 static int rtl2830_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
 {
-       *strength = 0;
+       struct rtl2830_priv *priv = fe->demodulator_priv;
+       int ret;
+       u8 buf[2];
+       u16 if_agc_raw, if_agc;
+
+       ret = rtl2830_rd_regs(priv, 0x359, buf, 2);
+       if (ret)
+               goto err;
+
+       if_agc_raw = (buf[0] << 8 | buf[1]) & 0x3fff;
+
+       if (if_agc_raw & (1 << 9))
+               if_agc = -(~(if_agc_raw - 1) & 0x1ff);
+       else
+               if_agc = if_agc_raw;
+
+       *strength = (u8) (55 - if_agc / 182);
+       *strength |= *strength << 8;
+
        return 0;
+err:
+       dbg("%s: failed=%d", __func__, ret);
+       return ret;
 }
 
 static struct dvb_frontend_ops rtl2830_ops;
This page took 0.026427 seconds and 5 git commands to generate.