Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1699865 > unrolled thread
| Started by | Mark Yao <mark.yao@rock-chips.com> |
|---|---|
| First post | 2017-07-31 12:00 +0200 |
| Last post | 2017-08-03 14:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 1/6] drm/rockchip: vop: no need wait vblank on crtc enable Mark Yao <mark.yao@rock-chips.com> - 2017-07-31 12:00 +0200
Re: [PATCH 1/6] drm/rockchip: vop: no need wait vblank on crtc enable Sandy Huang <sandy.huang@rock-chips.com> - 2017-08-03 14:40 +0200
| From | Mark Yao <mark.yao@rock-chips.com> |
|---|---|
| Date | 2017-07-31 12:00 +0200 |
| Subject | [PATCH 1/6] drm/rockchip: vop: no need wait vblank on crtc enable |
| Message-ID | <u9fEt-4EG-1@gated-at.bofh.it> |
Since atomic framework, crtc enable and disable are in pairs,
no need to wait vblank.
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
---
drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 36 -----------------------------
1 file changed, 36 deletions(-)
diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
index 1d42049..0bfd563 100644
--- a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
+++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
@@ -893,42 +893,6 @@ static void vop_crtc_enable(struct drm_crtc *crtc)
return;
}
- /*
- * If dclk rate is zero, mean that scanout is stop,
- * we don't need wait any more.
- */
- if (clk_get_rate(vop->dclk)) {
- /*
- * Rk3288 vop timing register is immediately, when configure
- * display timing on display time, may cause tearing.
- *
- * Vop standby will take effect at end of current frame,
- * if dsp hold valid irq happen, it means standby complete.
- *
- * mode set:
- * standby and wait complete --> |----
- * | display time
- * |----
- * |---> dsp hold irq
- * configure display timing --> |
- * standby exit |
- * | new frame start.
- */
-
- reinit_completion(&vop->dsp_hold_completion);
- vop_dsp_hold_valid_irq_enable(vop);
-
- spin_lock(&vop->reg_lock);
-
- VOP_REG_SET(vop, common, standby, 1);
-
- spin_unlock(&vop->reg_lock);
-
- wait_for_completion(&vop->dsp_hold_completion);
-
- vop_dsp_hold_valid_irq_disable(vop);
- }
-
pin_pol = BIT(DCLK_INVERT);
pin_pol |= (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) ?
BIT(HSYNC_POSITIVE) : 0;
--
1.9.1
[toc] | [next] | [standalone]
| From | Sandy Huang <sandy.huang@rock-chips.com> |
|---|---|
| Date | 2017-08-03 14:40 +0200 |
| Message-ID | <uanzY-8o6-5@gated-at.bofh.it> |
| In reply to | #1699865 |
Hi mark, 在 2017/7/31 17:49, Mark Yao 写道: > Since atomic framework, crtc enable and disable are in pairs, > no need to wait vblank. > > Signed-off-by: Mark Yao <mark.yao@rock-chips.com> > --- > drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 36 ----------------------------- > 1 file changed, 36 deletions(-) > Reviewed-by: Sandy huang <sandy.huang@rock-chips.com>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web