Skip to content

Commit

Permalink
V4L/DVB (11057): Fix CiMax stability in Netup Dual DVB-S2 CI
Browse files Browse the repository at this point in the history
It appears TS discontinuity about one per 10 hrs if CAM used.
Patch to fix it.

Signed-off-by: Abylay Ospan <aospan@netup.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Abylay Ospan authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent f1bee69 commit e9d4a6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/stv0900_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ enum fe_stv0900_error stv0900_initialize(struct stv0900_internal *i_params)
}

msleep(3);
for (i = 0; i < 180; i++)
for (i = 0; i < 182; i++)
stv0900_write_reg(i_params, STV0900_InitVal[i][0], STV0900_InitVal[i][1]);

if (stv0900_read_reg(i_params, R0900_MID) >= 0x20) {
Expand Down
4 changes: 3 additions & 1 deletion drivers/media/dvb/frontends/stv0900_init.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ static const struct stv0900_short_frames_car_loop_optim FE_STV0900_S2ShortCarLoo
{ STV0900_32APSK, 0x1B, 0x1E, 0x1B, 0x1E, 0x1B, 0x1E, 0x3A, 0x3D, 0x2A, 0x2D }
};

static const u16 STV0900_InitVal[180][2] = {
static const u16 STV0900_InitVal[182][2] = {
{ R0900_OUTCFG , 0x00 },
{ R0900_MODECFG , 0xff },
{ R0900_AGCRF1CFG , 0x11 },
Expand Down Expand Up @@ -396,6 +396,8 @@ static const u16 STV0900_InitVal[180][2] = {
{ R0900_DATA72CFG , 0x52 },
{ R0900_P1_TSCFGM , 0xc0 },
{ R0900_P2_TSCFGM , 0xc0 },
{ R0900_P1_TSCFGH , 0xe0 }, /* DVB-CI timings */
{ R0900_P2_TSCFGH , 0xe0 }, /* DVB-CI timings */
{ R0900_P1_TSSPEED , 0x40 },
{ R0900_P2_TSSPEED , 0x40 },
};
Expand Down

0 comments on commit e9d4a6d

Please sign in to comment.