[media] cx231xx: Fix vblank/vactive line counts for PAL/SECAM
Adjust the vblank and vactive counts so that they don't throw an error in cx25840's set_std call (we did an equivalent change for NTSC when we got the scaler working). Signed-off-by: Devin Heitmueller <dheitmueller@hauppauge.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
222c435205
commit
6af8cc0b25
@@ -1012,21 +1012,21 @@ int cx231xx_do_mode_ctrl_overrides(struct cx231xx *dev)
|
|||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
VERT_TIM_CTRL,
|
VERT_TIM_CTRL,
|
||||||
FLD_VBLANK_CNT, 0x24);
|
FLD_VBLANK_CNT, 0x20);
|
||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
VERT_TIM_CTRL,
|
VERT_TIM_CTRL,
|
||||||
FLD_VACTIVE_CNT,
|
FLD_VACTIVE_CNT,
|
||||||
cx231xx_set_field
|
cx231xx_set_field
|
||||||
(FLD_VACTIVE_CNT,
|
(FLD_VACTIVE_CNT,
|
||||||
0x240));
|
0x244));
|
||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
VERT_TIM_CTRL,
|
VERT_TIM_CTRL,
|
||||||
FLD_V656BLANK_CNT,
|
FLD_V656BLANK_CNT,
|
||||||
cx231xx_set_field
|
cx231xx_set_field
|
||||||
(FLD_V656BLANK_CNT,
|
(FLD_V656BLANK_CNT,
|
||||||
0x28));
|
0x24));
|
||||||
/* Adjust the active video horizontal start point */
|
/* Adjust the active video horizontal start point */
|
||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
@@ -1039,21 +1039,21 @@ int cx231xx_do_mode_ctrl_overrides(struct cx231xx *dev)
|
|||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
VERT_TIM_CTRL,
|
VERT_TIM_CTRL,
|
||||||
FLD_VBLANK_CNT, 0x24);
|
FLD_VBLANK_CNT, 0x20);
|
||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
VERT_TIM_CTRL,
|
VERT_TIM_CTRL,
|
||||||
FLD_VACTIVE_CNT,
|
FLD_VACTIVE_CNT,
|
||||||
cx231xx_set_field
|
cx231xx_set_field
|
||||||
(FLD_VACTIVE_CNT,
|
(FLD_VACTIVE_CNT,
|
||||||
0x240));
|
0x244));
|
||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
VERT_TIM_CTRL,
|
VERT_TIM_CTRL,
|
||||||
FLD_V656BLANK_CNT,
|
FLD_V656BLANK_CNT,
|
||||||
cx231xx_set_field
|
cx231xx_set_field
|
||||||
(FLD_V656BLANK_CNT,
|
(FLD_V656BLANK_CNT,
|
||||||
0x28));
|
0x24));
|
||||||
/* Adjust the active video horizontal start point */
|
/* Adjust the active video horizontal start point */
|
||||||
status = cx231xx_read_modify_write_i2c_dword(dev,
|
status = cx231xx_read_modify_write_i2c_dword(dev,
|
||||||
VID_BLK_I2C_ADDRESS,
|
VID_BLK_I2C_ADDRESS,
|
||||||
|
Reference in New Issue
Block a user