mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
increase TS output speed for parallel connections
This commit is contained in:
parent
da3539c994
commit
23826d9981
@ -1172,7 +1172,6 @@ static int probe(struct stv *state)
|
|||||||
write_reg(state, RSTV0910_P1_TSCFGM, 0xC0); /* Manual speed */
|
write_reg(state, RSTV0910_P1_TSCFGM, 0xC0); /* Manual speed */
|
||||||
write_reg(state, RSTV0910_P1_TSCFGL, 0x20);
|
write_reg(state, RSTV0910_P1_TSCFGL, 0x20);
|
||||||
|
|
||||||
/* Speed = 67.5 MHz */
|
|
||||||
write_reg(state, RSTV0910_P1_TSSPEED, state->tsspeed);
|
write_reg(state, RSTV0910_P1_TSSPEED, state->tsspeed);
|
||||||
|
|
||||||
write_reg(state, RSTV0910_P2_TSCFGH, state->tscfgh | 0x01);
|
write_reg(state, RSTV0910_P2_TSCFGH, state->tscfgh | 0x01);
|
||||||
@ -1180,7 +1179,6 @@ static int probe(struct stv *state)
|
|||||||
write_reg(state, RSTV0910_P2_TSCFGM, 0xC0); /* Manual speed */
|
write_reg(state, RSTV0910_P2_TSCFGM, 0xC0); /* Manual speed */
|
||||||
write_reg(state, RSTV0910_P2_TSCFGL, 0x20);
|
write_reg(state, RSTV0910_P2_TSCFGL, 0x20);
|
||||||
|
|
||||||
/* Speed = 67.5 MHz */
|
|
||||||
write_reg(state, RSTV0910_P2_TSSPEED, state->tsspeed);
|
write_reg(state, RSTV0910_P2_TSSPEED, state->tsspeed);
|
||||||
|
|
||||||
/* Reset stream merger */
|
/* Reset stream merger */
|
||||||
@ -1840,7 +1838,7 @@ struct dvb_frontend *stv0910_attach(struct i2c_adapter *i2c,
|
|||||||
state->tscfgh = 0x20 | (cfg->parallel ? 0 : 0x40);
|
state->tscfgh = 0x20 | (cfg->parallel ? 0 : 0x40);
|
||||||
state->tsgeneral = (cfg->parallel == 2) ? 0x02 : 0x00;
|
state->tsgeneral = (cfg->parallel == 2) ? 0x02 : 0x00;
|
||||||
state->i2crpt = 0x0A | ((cfg->rptlvl & 0x07) << 4);
|
state->i2crpt = 0x0A | ((cfg->rptlvl & 0x07) << 4);
|
||||||
state->tsspeed = 0x28;
|
state->tsspeed = cfg->parallel ? 0x10 : 0x28;
|
||||||
state->nr = nr;
|
state->nr = nr;
|
||||||
state->regoff = state->nr ? 0 : 0x200;
|
state->regoff = state->nr ? 0 : 0x200;
|
||||||
state->search_range = 16000000;
|
state->search_range = 16000000;
|
||||||
|
Loading…
Reference in New Issue
Block a user