Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 367123
b: refs/heads/master
c: 7a5ef30
h: refs/heads/master
i:
  367121: bee50af
  367119: f80d920
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Apr 17, 2013
1 parent ba85a55 commit ee55039
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 18 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: 9e30edd8907e5a7e92b04b1d05de5619c4a35d47
refs/heads/master: 7a5ef30dc3363ae1ab7243397be7dd8449063999
50 changes: 33 additions & 17 deletions trunk/drivers/media/tuners/r820t.c
Original file line number Diff line number Diff line change
Expand Up @@ -1193,8 +1193,6 @@ static int generic_set_freq(struct dvb_frontend *fe,
tuner_dbg("should set frequency to %d kHz, bw %d MHz\n",
freq / 1000, bw);

mutex_lock(&priv->lock);

if ((type == V4L2_TUNER_ANALOG_TV) && (std == V4L2_STD_SECAM_LC))
lo_freq = freq - priv->int_freq;
else
Expand All @@ -1218,7 +1216,6 @@ static int generic_set_freq(struct dvb_frontend *fe,

rc = r820t_sysfreq_sel(priv, freq, type, std, delsys);
err:
mutex_unlock(&priv->lock);

if (rc < 0)
tuner_dbg("%s: failed=%d\n", __func__, rc);
Expand Down Expand Up @@ -1335,6 +1332,8 @@ static int r820t_xtal_check(struct r820t_priv *priv)

/*
* r820t frontend operations and tuner attach code
*
* All driver locks and i2c control are only in this part of the code
*/

static int r820t_init(struct dvb_frontend *fe)
Expand All @@ -1345,11 +1344,10 @@ static int r820t_init(struct dvb_frontend *fe)

tuner_dbg("%s:\n", __func__);

mutex_lock(&priv->lock);
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

mutex_lock(&priv->lock);

if ((priv->cfg->rafael_chip == CHIP_R820T) ||
(priv->cfg->rafael_chip == CHIP_R828S) ||
(priv->cfg->rafael_chip == CHIP_R820C)) {
Expand All @@ -1369,17 +1367,13 @@ static int r820t_init(struct dvb_frontend *fe)
rc = r820t_write(priv, 0x05,
r820t_init_array, sizeof(r820t_init_array));

mutex_unlock(&priv->lock);

if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);

return rc;
err:
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);
mutex_unlock(&priv->lock);

tuner_dbg("%s: failed=%d\n", __func__, rc);
if (rc < 0)
tuner_dbg("%s: failed=%d\n", __func__, rc);
return rc;
}

Expand All @@ -1390,15 +1384,15 @@ static int r820t_sleep(struct dvb_frontend *fe)

tuner_dbg("%s:\n", __func__);

mutex_lock(&priv->lock);
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

mutex_lock(&priv->lock);
rc = r820t_standby(priv);
mutex_unlock(&priv->lock);

if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);
mutex_unlock(&priv->lock);

tuner_dbg("%s: failed=%d\n", __func__, rc);
return rc;
Expand All @@ -1409,6 +1403,7 @@ static int r820t_set_analog_freq(struct dvb_frontend *fe,
{
struct r820t_priv *priv = fe->tuner_priv;
unsigned bw;
int rc;

tuner_dbg("%s called\n", __func__);

Expand All @@ -1421,8 +1416,18 @@ static int r820t_set_analog_freq(struct dvb_frontend *fe,
else
bw = 8;

return generic_set_freq(fe, 62500l * p->frequency, bw,
V4L2_TUNER_ANALOG_TV, p->std, SYS_UNDEFINED);
mutex_lock(&priv->lock);
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

rc = generic_set_freq(fe, 62500l * p->frequency, bw,
V4L2_TUNER_ANALOG_TV, p->std, SYS_UNDEFINED);

if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);
mutex_unlock(&priv->lock);

return rc;
}

static int r820t_set_params(struct dvb_frontend *fe)
Expand All @@ -1435,6 +1440,7 @@ static int r820t_set_params(struct dvb_frontend *fe)
tuner_dbg("%s: delivery_system=%d frequency=%d bandwidth_hz=%d\n",
__func__, c->delivery_system, c->frequency, c->bandwidth_hz);

mutex_lock(&priv->lock);
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

Expand All @@ -1447,6 +1453,7 @@ static int r820t_set_params(struct dvb_frontend *fe)

if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);
mutex_unlock(&priv->lock);

if (rc)
tuner_dbg("%s: failed=%d\n", __func__, rc);
Expand All @@ -1458,17 +1465,26 @@ static int r820t_signal(struct dvb_frontend *fe, u16 *strength)
struct r820t_priv *priv = fe->tuner_priv;
int rc = 0;

mutex_lock(&priv->lock);
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 1);

if (priv->has_lock) {
rc = r820t_read_gain(priv);
if (rc < 0)
return rc;
goto err;

/* A higher gain at LNA means a lower signal strength */
*strength = (45 - rc) << 4 | 0xff;
} else {
*strength = 0;
}

err:
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0);
mutex_unlock(&priv->lock);

tuner_dbg("%s: %s, gain=%d strength=%d\n",
__func__,
priv->has_lock ? "PLL locked" : "no signal",
Expand Down

0 comments on commit ee55039

Please sign in to comment.