aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nv50_sor.c
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2010-07-05 01:19:16 -0400
committerBen Skeggs <bskeggs@redhat.com>2010-07-12 20:13:30 -0400
commit835aadbef3b762bc43eceddfec90c9a5a312d3c1 (patch)
tree1f79a03f0c690b51ab5ba9fcc970998d83d76667 /drivers/gpu/drm/nouveau/nv50_sor.c
parent4664c67b5d054012562a74414ed3f8619912b3d1 (diff)
drm/nv50: send evo "update" command after each disconnect
It turns out that the display engine signals an interrupt for disconnects too. In order to make it easier to process the display interrupts correctly, we want to ensure we only get one operation per interrupt sequence - this is what this commit achieves. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv50_sor.c')
-rw-r--r--drivers/gpu/drm/nouveau/nv50_sor.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c
index 03cb021bf292..6461eaef6ec8 100644
--- a/drivers/gpu/drm/nouveau/nv50_sor.c
+++ b/drivers/gpu/drm/nouveau/nv50_sor.c
@@ -47,16 +47,19 @@ nv50_sor_disconnect(struct drm_encoder *encoder)
47 47
48 if (!nv_encoder->crtc) 48 if (!nv_encoder->crtc)
49 return; 49 return;
50 nv50_crtc_blank(nouveau_crtc(nv_encoder->crtc), true);
50 51
51 NV_DEBUG_KMS(dev, "Disconnecting SOR %d\n", nv_encoder->or); 52 NV_DEBUG_KMS(dev, "Disconnecting SOR %d\n", nv_encoder->or);
52 53
53 ret = RING_SPACE(evo, 2); 54 ret = RING_SPACE(evo, 4);
54 if (ret) { 55 if (ret) {
55 NV_ERROR(dev, "no space while disconnecting SOR\n"); 56 NV_ERROR(dev, "no space while disconnecting SOR\n");
56 return; 57 return;
57 } 58 }
58 BEGIN_RING(evo, 0, NV50_EVO_SOR(nv_encoder->or, MODE_CTRL), 1); 59 BEGIN_RING(evo, 0, NV50_EVO_SOR(nv_encoder->or, MODE_CTRL), 1);
59 OUT_RING(evo, 0); 60 OUT_RING (evo, 0);
61 BEGIN_RING(evo, 0, NV50_EVO_UPDATE, 1);
62 OUT_RING (evo, 0);
60 63
61 nv_encoder->crtc = NULL; 64 nv_encoder->crtc = NULL;
62 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF; 65 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;