Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 306528
b: refs/heads/master
c: eba672a
h: refs/heads/master
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed May 20, 2012
1 parent b0539f4 commit 2b5184a
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f6f379df6516d6fab27367706fcaafa88df41178
refs/heads/master: eba672a045d8fbf62b229eac74ef444b6000c4c2
42 changes: 41 additions & 1 deletion trunk/drivers/media/dvb/frontends/rtl2830.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,48 @@ static int rtl2830_read_status(struct dvb_frontend *fe, fe_status_t *status)

static int rtl2830_read_snr(struct dvb_frontend *fe, u16 *snr)
{
*snr = 0;
struct rtl2830_priv *priv = fe->demodulator_priv;
int ret, hierarchy, constellation;
u8 buf[2], tmp;
u16 tmp16;
#define CONSTELLATION_NUM 3
#define HIERARCHY_NUM 4
static const u32 snr_constant[CONSTELLATION_NUM][HIERARCHY_NUM] = {
{ 70705899, 70705899, 70705899, 70705899 },
{ 82433173, 82433173, 87483115, 94445660 },
{ 92888734, 92888734, 95487525, 99770748 },
};

/* reports SNR in resolution of 0.1 dB */

ret = rtl2830_rd_reg(priv, 0x33c, &tmp);
if (ret)
goto err;

constellation = (tmp >> 2) & 0x03; /* [3:2] */
if (constellation > CONSTELLATION_NUM - 1)
goto err;

hierarchy = (tmp >> 4) & 0x07; /* [6:4] */
if (hierarchy > HIERARCHY_NUM - 1)
goto err;

ret = rtl2830_rd_regs(priv, 0x40c, buf, 2);
if (ret)
goto err;

tmp16 = buf[0] << 8 | buf[1];

if (tmp16)
*snr = (snr_constant[constellation][hierarchy] -
intlog10(tmp16)) / ((1 << 24) / 100);
else
*snr = 0;

return 0;
err:
dbg("%s: failed=%d", __func__, ret);
return ret;
}

static int rtl2830_read_ber(struct dvb_frontend *fe, u32 *ber)
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/media/dvb/frontends/rtl2830_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#define RTL2830_PRIV_H

#include "dvb_frontend.h"
#include "dvb_math.h"
#include "rtl2830.h"

#define LOG_PREFIX "rtl2830"
Expand Down

0 comments on commit 2b5184a

Please sign in to comment.