Skip to content

Commit

Permalink
drm/nouveau: Call drm_vblank_pre/post_modeset() around mode setting.
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Francisco Jerez authored and Ben Skeggs committed Dec 3, 2010
1 parent 332b242 commit 1c180fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/gpu/drm/nouveau/nv04_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,7 @@ static void nv_crtc_prepare(struct drm_crtc *crtc)
if (nv_two_heads(dev))
NVSetOwner(dev, nv_crtc->index);

drm_vblank_pre_modeset(dev, nv_crtc->index);
funcs->dpms(crtc, DRM_MODE_DPMS_OFF);

NVBlankScreen(dev, nv_crtc->index, true);
Expand Down Expand Up @@ -704,6 +705,7 @@ static void nv_crtc_commit(struct drm_crtc *crtc)
#endif

funcs->dpms(crtc, DRM_MODE_DPMS_ON);
drm_vblank_post_modeset(dev, nv_crtc->index);
}

static void nv_crtc_destroy(struct drm_crtc *crtc)
Expand Down
2 changes: 2 additions & 0 deletions drivers/gpu/drm/nouveau/nv50_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,7 @@ nv50_crtc_prepare(struct drm_crtc *crtc)

NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);

drm_vblank_pre_modeset(dev, nv_crtc->index);
nv50_crtc_blank(nv_crtc, true);
}

Expand All @@ -469,6 +470,7 @@ nv50_crtc_commit(struct drm_crtc *crtc)
NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);

nv50_crtc_blank(nv_crtc, false);
drm_vblank_post_modeset(dev, nv_crtc->index);

ret = RING_SPACE(evo, 2);
if (ret) {
Expand Down

0 comments on commit 1c180fa

Please sign in to comment.