Commit f1e80919 authored by Andrew de Quincey's avatar Andrew de Quincey Committed by Mauro Carvalho Chehab

V4L/DVB (3862): Convert tda10021 to refactored tuner code

Convert to tuner_ops calls.
Remove pll function pointers from structure.
Remove unneeded tuner calls.
Add i2c gate control function.
Signed-off-by: default avatarAndrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent d1544ecb
...@@ -225,13 +225,6 @@ static int tda10021_init (struct dvb_frontend *fe) ...@@ -225,13 +225,6 @@ static int tda10021_init (struct dvb_frontend *fe)
//Activate PLL //Activate PLL
tda10021_writereg(state, 0x2a, tda10021_inittab[0x2a] & 0xef); tda10021_writereg(state, 0x2a, tda10021_inittab[0x2a] & 0xef);
if (state->config->pll_init) {
lock_tuner(state);
state->config->pll_init(fe);
unlock_tuner(state);
}
return 0; return 0;
} }
...@@ -259,9 +252,10 @@ static int tda10021_set_parameters (struct dvb_frontend *fe, ...@@ -259,9 +252,10 @@ static int tda10021_set_parameters (struct dvb_frontend *fe,
//printk("tda10021: set frequency to %d qam=%d symrate=%d\n", p->frequency,qam,p->u.qam.symbol_rate); //printk("tda10021: set frequency to %d qam=%d symrate=%d\n", p->frequency,qam,p->u.qam.symbol_rate);
lock_tuner(state); if (fe->ops->tuner_ops.set_params) {
state->config->pll_set(fe, p); fe->ops->tuner_ops.set_params(fe, p);
unlock_tuner(state); if (fe->ops->i2c_gate_ctrl) fe->ops->i2c_gate_ctrl(fe, 0);
}
tda10021_set_symbolrate (state, p->u.qam.symbol_rate); tda10021_set_symbolrate (state, p->u.qam.symbol_rate);
tda10021_writereg (state, 0x34, state->pwm); tda10021_writereg (state, 0x34, state->pwm);
...@@ -376,6 +370,18 @@ static int tda10021_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_pa ...@@ -376,6 +370,18 @@ static int tda10021_get_frontend(struct dvb_frontend* fe, struct dvb_frontend_pa
return 0; return 0;
} }
static int tda10021_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
{
struct tda10021_state* state = fe->demodulator_priv;
if (enable) {
lock_tuner(state);
} else {
unlock_tuner(state);
}
return 0;
}
static int tda10021_sleep(struct dvb_frontend* fe) static int tda10021_sleep(struct dvb_frontend* fe)
{ {
struct tda10021_state* state = fe->demodulator_priv; struct tda10021_state* state = fe->demodulator_priv;
...@@ -448,6 +454,7 @@ static struct dvb_frontend_ops tda10021_ops = { ...@@ -448,6 +454,7 @@ static struct dvb_frontend_ops tda10021_ops = {
.init = tda10021_init, .init = tda10021_init,
.sleep = tda10021_sleep, .sleep = tda10021_sleep,
.i2c_gate_ctrl = tda10021_i2c_gate_ctrl,
.set_frontend = tda10021_set_parameters, .set_frontend = tda10021_set_parameters,
.get_frontend = tda10021_get_frontend, .get_frontend = tda10021_get_frontend,
......
...@@ -30,10 +30,6 @@ struct tda10021_config ...@@ -30,10 +30,6 @@ struct tda10021_config
{ {
/* the demodulator's i2c address */ /* the demodulator's i2c address */
u8 demod_address; u8 demod_address;
/* PLL maintenance */
int (*pll_init)(struct dvb_frontend* fe);
int (*pll_set)(struct dvb_frontend* fe, struct dvb_frontend_parameters* params);
}; };
extern struct dvb_frontend* tda10021_attach(const struct tda10021_config* config, extern struct dvb_frontend* tda10021_attach(const struct tda10021_config* config,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment