mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
[media] fc2580: improve set params logic
Calculate PLL dividers slightly differently, most likely it is now correct. Move some register values to innitab. Use jiffies to poll filter lock. Fix logging. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
ef39830dda
commit
46de761572
@ -33,11 +33,6 @@
|
|||||||
* fc2580_wr_regs()
|
* fc2580_wr_regs()
|
||||||
* fc2580_rd_regs()
|
* fc2580_rd_regs()
|
||||||
* could not be used for accessing more than one register at once.
|
* could not be used for accessing more than one register at once.
|
||||||
*
|
|
||||||
* TODO:
|
|
||||||
* Currently it blind writes bunch of static registers from the
|
|
||||||
* fc2580_freq_regs_lut[] when fc2580_set_params() is called. Add some
|
|
||||||
* logic to reduce unneeded register writes.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* write multiple registers */
|
/* write multiple registers */
|
||||||
@ -137,107 +132,110 @@ static int fc2580_wr_reg_ff(struct fc2580_priv *priv, u8 reg, u8 val)
|
|||||||
return fc2580_wr_regs(priv, reg, &val, 1);
|
return fc2580_wr_regs(priv, reg, &val, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int fc2580_set_params(struct dvb_frontend *fe)
|
static int fc2580_set_params(struct dvb_frontend *fe)
|
||||||
{
|
{
|
||||||
struct fc2580_priv *priv = fe->tuner_priv;
|
struct fc2580_priv *priv = fe->tuner_priv;
|
||||||
|
struct i2c_client *client = priv->client;
|
||||||
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
||||||
int ret = 0, i;
|
int ret, i;
|
||||||
unsigned int r_val, n_val, k_val, k_val_reg, f_ref;
|
unsigned int uitmp, div_ref, div_ref_val, div_n, k, k_cw, div_out;
|
||||||
u8 tmp_val, r18_val;
|
|
||||||
u64 f_vco;
|
u64 f_vco;
|
||||||
|
u8 u8tmp, synth_config;
|
||||||
|
unsigned long timeout;
|
||||||
|
|
||||||
/*
|
dev_dbg(&client->dev,
|
||||||
* Fractional-N synthesizer/PLL.
|
"delivery_system=%u frequency=%u bandwidth_hz=%u\n",
|
||||||
* Most likely all those PLL calculations are not correct. I am not
|
c->delivery_system, c->frequency, c->bandwidth_hz);
|
||||||
* sure, but it looks like it is divider based Fractional-N synthesizer.
|
|
||||||
* There is divider for reference clock too?
|
|
||||||
* Anyhow, synthesizer calculation results seems to be quite correct.
|
|
||||||
*/
|
|
||||||
|
|
||||||
dev_dbg(&priv->i2c->dev, "%s: delivery_system=%d frequency=%d " \
|
|
||||||
"bandwidth_hz=%d\n", __func__,
|
|
||||||
c->delivery_system, c->frequency, c->bandwidth_hz);
|
|
||||||
|
|
||||||
if (fe->ops.i2c_gate_ctrl)
|
if (fe->ops.i2c_gate_ctrl)
|
||||||
fe->ops.i2c_gate_ctrl(fe, 1);
|
fe->ops.i2c_gate_ctrl(fe, 1);
|
||||||
|
|
||||||
/* PLL */
|
/*
|
||||||
|
* Fractional-N synthesizer
|
||||||
|
*
|
||||||
|
* +---------------------------------------+
|
||||||
|
* v |
|
||||||
|
* Fref +----+ +----+ +-------+ +----+ +------+ +---+
|
||||||
|
* ------> | /R | --> | PD | --> | VCO | ------> | /2 | --> | /N.F | <-- | K |
|
||||||
|
* +----+ +----+ +-------+ +----+ +------+ +---+
|
||||||
|
* |
|
||||||
|
* |
|
||||||
|
* v
|
||||||
|
* +-------+ Fout
|
||||||
|
* | /Rout | ------>
|
||||||
|
* +-------+
|
||||||
|
*/
|
||||||
for (i = 0; i < ARRAY_SIZE(fc2580_pll_lut); i++) {
|
for (i = 0; i < ARRAY_SIZE(fc2580_pll_lut); i++) {
|
||||||
if (c->frequency <= fc2580_pll_lut[i].freq)
|
if (c->frequency <= fc2580_pll_lut[i].freq)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (i == ARRAY_SIZE(fc2580_pll_lut)) {
|
||||||
if (i == ARRAY_SIZE(fc2580_pll_lut))
|
ret = -EINVAL;
|
||||||
goto err;
|
goto err;
|
||||||
|
}
|
||||||
|
|
||||||
f_vco = c->frequency;
|
#define DIV_PRE_N 2
|
||||||
f_vco *= fc2580_pll_lut[i].div;
|
#define F_REF priv->clk
|
||||||
|
div_out = fc2580_pll_lut[i].div_out;
|
||||||
if (f_vco >= 2600000000UL)
|
f_vco = (u64) c->frequency * div_out;
|
||||||
tmp_val = 0x0e | fc2580_pll_lut[i].band;
|
synth_config = fc2580_pll_lut[i].band;
|
||||||
|
if (f_vco < 2600000000ULL)
|
||||||
|
synth_config |= 0x06;
|
||||||
else
|
else
|
||||||
tmp_val = 0x06 | fc2580_pll_lut[i].band;
|
synth_config |= 0x0e;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x02, tmp_val);
|
/* select reference divider R (keep PLL div N in valid range) */
|
||||||
if (ret < 0)
|
#define DIV_N_MIN 76
|
||||||
goto err;
|
if (f_vco >= div_u64((u64) DIV_PRE_N * DIV_N_MIN * F_REF, 1)) {
|
||||||
|
div_ref = 1;
|
||||||
if (f_vco >= 2UL * 76 * priv->clk) {
|
div_ref_val = 0x00;
|
||||||
r_val = 1;
|
} else if (f_vco >= div_u64((u64) DIV_PRE_N * DIV_N_MIN * F_REF, 2)) {
|
||||||
r18_val = 0x00;
|
div_ref = 2;
|
||||||
} else if (f_vco >= 1UL * 76 * priv->clk) {
|
div_ref_val = 0x10;
|
||||||
r_val = 2;
|
|
||||||
r18_val = 0x10;
|
|
||||||
} else {
|
} else {
|
||||||
r_val = 4;
|
div_ref = 4;
|
||||||
r18_val = 0x20;
|
div_ref_val = 0x20;
|
||||||
}
|
}
|
||||||
|
|
||||||
f_ref = 2UL * priv->clk / r_val;
|
/* calculate PLL integer and fractional control word */
|
||||||
n_val = div_u64_rem(f_vco, f_ref, &k_val);
|
uitmp = DIV_PRE_N * F_REF / div_ref;
|
||||||
k_val_reg = div_u64(1ULL * k_val * (1 << 20), f_ref);
|
div_n = div_u64_rem(f_vco, uitmp, &k);
|
||||||
|
k_cw = div_u64((u64) k * 0x100000, uitmp);
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x18, r18_val | ((k_val_reg >> 16) & 0xff));
|
dev_dbg(&client->dev,
|
||||||
|
"frequency=%u f_vco=%llu F_REF=%u div_ref=%u div_n=%u k=%u div_out=%u k_cw=%0x\n",
|
||||||
|
c->frequency, f_vco, F_REF, div_ref, div_n, k, div_out, k_cw);
|
||||||
|
|
||||||
|
ret = fc2580_wr_reg(priv, 0x02, synth_config);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x1a, (k_val_reg >> 8) & 0xff);
|
ret = fc2580_wr_reg(priv, 0x18, div_ref_val << 0 | k_cw >> 16);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x1b, (k_val_reg >> 0) & 0xff);
|
ret = fc2580_wr_reg(priv, 0x1a, (k_cw >> 8) & 0xff);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x1c, n_val);
|
ret = fc2580_wr_reg(priv, 0x1b, (k_cw >> 0) & 0xff);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
if (priv->clk >= 28000000) {
|
ret = fc2580_wr_reg(priv, 0x1c, div_n);
|
||||||
ret = fc2580_wr_reg(priv, 0x4b, 0x22);
|
if (ret < 0)
|
||||||
if (ret < 0)
|
goto err;
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fc2580_pll_lut[i].band == 0x00) {
|
|
||||||
if (c->frequency <= 794000000)
|
|
||||||
tmp_val = 0x9f;
|
|
||||||
else
|
|
||||||
tmp_val = 0x8f;
|
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x2d, tmp_val);
|
|
||||||
if (ret < 0)
|
|
||||||
goto err;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* registers */
|
/* registers */
|
||||||
for (i = 0; i < ARRAY_SIZE(fc2580_freq_regs_lut); i++) {
|
for (i = 0; i < ARRAY_SIZE(fc2580_freq_regs_lut); i++) {
|
||||||
if (c->frequency <= fc2580_freq_regs_lut[i].freq)
|
if (c->frequency <= fc2580_freq_regs_lut[i].freq)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (i == ARRAY_SIZE(fc2580_freq_regs_lut)) {
|
||||||
if (i == ARRAY_SIZE(fc2580_freq_regs_lut))
|
ret = -EINVAL;
|
||||||
goto err;
|
goto err;
|
||||||
|
}
|
||||||
|
|
||||||
ret = fc2580_wr_reg_ff(priv, 0x25, fc2580_freq_regs_lut[i].r25_val);
|
ret = fc2580_wr_reg_ff(priv, 0x25, fc2580_freq_regs_lut[i].r25_val);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
@ -340,16 +338,18 @@ static int fc2580_set_params(struct dvb_frontend *fe)
|
|||||||
if (c->bandwidth_hz <= fc2580_if_filter_lut[i].freq)
|
if (c->bandwidth_hz <= fc2580_if_filter_lut[i].freq)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (i == ARRAY_SIZE(fc2580_if_filter_lut)) {
|
||||||
if (i == ARRAY_SIZE(fc2580_if_filter_lut))
|
ret = -EINVAL;
|
||||||
goto err;
|
goto err;
|
||||||
|
}
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x36, fc2580_if_filter_lut[i].r36_val);
|
ret = fc2580_wr_reg(priv, 0x36, fc2580_if_filter_lut[i].r36_val);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x37, div_u64(1ULL * priv->clk *
|
u8tmp = div_u64((u64) priv->clk * fc2580_if_filter_lut[i].mul,
|
||||||
fc2580_if_filter_lut[i].mul, 1000000000));
|
1000000000);
|
||||||
|
ret = fc2580_wr_reg(priv, 0x37, u8tmp);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
@ -357,36 +357,25 @@ static int fc2580_set_params(struct dvb_frontend *fe)
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
/* calibration? */
|
timeout = jiffies + msecs_to_jiffies(30);
|
||||||
ret = fc2580_wr_reg(priv, 0x2e, 0x09);
|
for (uitmp = ~0xc0; !time_after(jiffies, timeout) && uitmp != 0xc0;) {
|
||||||
if (ret < 0)
|
/* trigger filter */
|
||||||
goto err;
|
ret = fc2580_wr_reg(priv, 0x2e, 0x09);
|
||||||
|
if (ret)
|
||||||
for (i = 0; i < 5; i++) {
|
|
||||||
ret = fc2580_rd_reg(priv, 0x2f, &tmp_val);
|
|
||||||
if (ret < 0)
|
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
/* done when [7:6] are set */
|
/* locked when [7:6] are set (val: d7 6MHz, d5 7MHz, cd 8MHz) */
|
||||||
if ((tmp_val & 0xc0) == 0xc0)
|
ret = fc2580_rd_reg(priv, 0x2f, &u8tmp);
|
||||||
break;
|
if (ret)
|
||||||
|
goto err;
|
||||||
|
uitmp = u8tmp & 0xc0;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x2e, 0x01);
|
ret = fc2580_wr_reg(priv, 0x2e, 0x01);
|
||||||
if (ret < 0)
|
if (ret)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x2e, 0x09);
|
|
||||||
if (ret < 0)
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
usleep_range(5000, 25000);
|
|
||||||
}
|
}
|
||||||
|
if (uitmp != 0xc0)
|
||||||
dev_dbg(&priv->i2c->dev, "%s: loop=%i\n", __func__, i);
|
dev_dbg(&client->dev, "filter did not lock %02x\n", uitmp);
|
||||||
|
|
||||||
ret = fc2580_wr_reg(priv, 0x2e, 0x01);
|
|
||||||
if (ret < 0)
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
if (fe->ops.i2c_gate_ctrl)
|
if (fe->ops.i2c_gate_ctrl)
|
||||||
fe->ops.i2c_gate_ctrl(fe, 0);
|
fe->ops.i2c_gate_ctrl(fe, 0);
|
||||||
@ -396,7 +385,7 @@ err:
|
|||||||
if (fe->ops.i2c_gate_ctrl)
|
if (fe->ops.i2c_gate_ctrl)
|
||||||
fe->ops.i2c_gate_ctrl(fe, 0);
|
fe->ops.i2c_gate_ctrl(fe, 0);
|
||||||
|
|
||||||
dev_dbg(&priv->i2c->dev, "%s: failed=%d\n", __func__, ret);
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ static const struct fc2580_reg_val fc2580_init_reg_vals[] = {
|
|||||||
|
|
||||||
struct fc2580_pll {
|
struct fc2580_pll {
|
||||||
u32 freq;
|
u32 freq;
|
||||||
u8 div;
|
u8 div_out;
|
||||||
u8 band;
|
u8 band;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -110,15 +110,15 @@ static const struct fc2580_freq_regs fc2580_freq_regs_lut[] = {
|
|||||||
0x50, 0x0f, 0x07, 0x00, 0x15, 0x03, 0x05, 0x10, 0x12, 0x08,
|
0x50, 0x0f, 0x07, 0x00, 0x15, 0x03, 0x05, 0x10, 0x12, 0x08,
|
||||||
0x0a, 0x78, 0x32, 0x54},
|
0x0a, 0x78, 0x32, 0x54},
|
||||||
{ 538000000,
|
{ 538000000,
|
||||||
0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0xff, 0x09, 0xff, 0x8c,
|
0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0x9f, 0x09, 0xff, 0x8c,
|
||||||
0x50, 0x13, 0x07, 0x06, 0x15, 0x06, 0x08, 0x10, 0x12, 0x0b,
|
0x50, 0x13, 0x07, 0x06, 0x15, 0x06, 0x08, 0x10, 0x12, 0x0b,
|
||||||
0x0c, 0x78, 0x32, 0x14},
|
0x0c, 0x78, 0x32, 0x14},
|
||||||
{ 794000000,
|
{ 794000000,
|
||||||
0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0xff, 0x09, 0xff, 0x8c,
|
0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0x9f, 0x09, 0xff, 0x8c,
|
||||||
0x50, 0x15, 0x03, 0x03, 0x15, 0x03, 0x05, 0x0c, 0x0e, 0x0b,
|
0x50, 0x15, 0x03, 0x03, 0x15, 0x03, 0x05, 0x0c, 0x0e, 0x0b,
|
||||||
0x0c, 0x78, 0x32, 0x14},
|
0x0c, 0x78, 0x32, 0x14},
|
||||||
{1000000000,
|
{1000000000,
|
||||||
0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0xff, 0x09, 0xff, 0x8c,
|
0xf0, 0x77, 0x53, 0x60, 0xff, 0xff, 0x8f, 0x09, 0xff, 0x8c,
|
||||||
0x50, 0x15, 0x07, 0x06, 0x15, 0x07, 0x09, 0x10, 0x12, 0x0b,
|
0x50, 0x15, 0x07, 0x06, 0x15, 0x07, 0x09, 0x10, 0x12, 0x0b,
|
||||||
0x0c, 0x78, 0x32, 0x14},
|
0x0c, 0x78, 0x32, 0x14},
|
||||||
{0xffffffff,
|
{0xffffffff,
|
||||||
|
Loading…
Reference in New Issue
Block a user