|
@@ -615,20 +615,20 @@ static int sde_hw_intf_setup_te_config(struct sde_hw_intf *intf,
|
|
|
struct sde_hw_tear_check *te)
|
|
|
{
|
|
|
struct sde_hw_blk_reg_map *c;
|
|
|
- int cfg;
|
|
|
+ u32 cfg = 0;
|
|
|
|
|
|
if (!intf)
|
|
|
return -EINVAL;
|
|
|
|
|
|
c = &intf->hw;
|
|
|
|
|
|
- cfg = BIT(19); /* VSYNC_COUNTER_EN */
|
|
|
if (te->hw_vsync_mode)
|
|
|
cfg |= BIT(20);
|
|
|
|
|
|
cfg |= te->vsync_count;
|
|
|
|
|
|
SDE_REG_WRITE(c, INTF_TEAR_SYNC_CONFIG_VSYNC, cfg);
|
|
|
+ wmb(); /* disable vsync counter before updating single buffer registers */
|
|
|
SDE_REG_WRITE(c, INTF_TEAR_SYNC_CONFIG_HEIGHT, te->sync_cfg_height);
|
|
|
SDE_REG_WRITE(c, INTF_TEAR_VSYNC_INIT_VAL, te->vsync_init_val);
|
|
|
SDE_REG_WRITE(c, INTF_TEAR_RD_PTR_IRQ, te->rd_ptr_irq);
|
|
@@ -639,6 +639,8 @@ static int sde_hw_intf_setup_te_config(struct sde_hw_intf *intf,
|
|
|
te->sync_threshold_start));
|
|
|
SDE_REG_WRITE(c, INTF_TEAR_SYNC_WRCOUNT,
|
|
|
(te->start_pos + te->sync_threshold_start + 1));
|
|
|
+ cfg |= BIT(19); /* VSYNC_COUNTER_EN */
|
|
|
+ SDE_REG_WRITE(c, INTF_TEAR_SYNC_CONFIG_VSYNC, cfg);
|
|
|
|
|
|
return 0;
|
|
|
}
|