aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nv50_sor.c
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2011-08-03 21:04:47 -0400
committerBen Skeggs <bskeggs@redhat.com>2011-09-20 02:10:19 -0400
commita002feceb7852964af579ece784b0123869f1e3f (patch)
tree971a8aa550f6800b1164dca99706bcaa10eef34c /drivers/gpu/drm/nouveau/nv50_sor.c
parenta8e415d3eb1bed184d73e22c62cd1f992bd33d63 (diff)
drm/nouveau/dp: pass in required datarate to link training
Not used currently, but it will be used in preference to pre-determined lane/bandwidth numbers at a later point. 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.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c
index f359f94626c2..2633aa8554eb 100644
--- a/drivers/gpu/drm/nouveau/nv50_sor.c
+++ b/drivers/gpu/drm/nouveau/nv50_sor.c
@@ -124,7 +124,7 @@ nv50_sor_dpms(struct drm_encoder *encoder, int mode)
124 if (mode == DRM_MODE_DPMS_ON) { 124 if (mode == DRM_MODE_DPMS_ON) {
125 u8 status = DP_SET_POWER_D0; 125 u8 status = DP_SET_POWER_D0;
126 nouveau_dp_auxch(auxch, 8, DP_SET_POWER, &status, 1); 126 nouveau_dp_auxch(auxch, 8, DP_SET_POWER, &status, 1);
127 nouveau_dp_link_train(encoder); 127 nouveau_dp_link_train(encoder, nv_encoder->dp.datarate);
128 } else { 128 } else {
129 u8 status = DP_SET_POWER_D3; 129 u8 status = DP_SET_POWER_D3;
130 nouveau_dp_auxch(auxch, 8, DP_SET_POWER, &status, 1); 130 nouveau_dp_auxch(auxch, 8, DP_SET_POWER, &status, 1);
@@ -194,8 +194,6 @@ nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
194 NV_DEBUG_KMS(dev, "or %d type %d -> crtc %d\n", 194 NV_DEBUG_KMS(dev, "or %d type %d -> crtc %d\n",
195 nv_encoder->or, nv_encoder->dcb->type, crtc->index); 195 nv_encoder->or, nv_encoder->dcb->type, crtc->index);
196 196
197 nv50_sor_dpms(encoder, DRM_MODE_DPMS_ON);
198
199 switch (nv_encoder->dcb->type) { 197 switch (nv_encoder->dcb->type) {
200 case OUTPUT_TMDS: 198 case OUTPUT_TMDS:
201 if (nv_encoder->dcb->sorconf.link & 1) { 199 if (nv_encoder->dcb->sorconf.link & 1) {
@@ -208,10 +206,13 @@ nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
208 break; 206 break;
209 case OUTPUT_DP: 207 case OUTPUT_DP:
210 nv_connector = nouveau_encoder_connector_get(nv_encoder); 208 nv_connector = nouveau_encoder_connector_get(nv_encoder);
211 if (nv_connector && nv_connector->base.display_info.bpc == 6) 209 if (nv_connector && nv_connector->base.display_info.bpc == 6) {
210 nv_encoder->dp.datarate = crtc->mode->clock * 18 / 8;
212 mode_ctl |= 0x00020000; 211 mode_ctl |= 0x00020000;
213 else 212 } else {
213 nv_encoder->dp.datarate = crtc->mode->clock * 24 / 8;
214 mode_ctl |= 0x00050000; 214 mode_ctl |= 0x00050000;
215 }
215 216
216 if (nv_encoder->dcb->sorconf.link & 1) 217 if (nv_encoder->dcb->sorconf.link & 1)
217 mode_ctl |= 0x00000800; 218 mode_ctl |= 0x00000800;
@@ -233,6 +234,8 @@ nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
233 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) 234 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
234 mode_ctl |= NV50_EVO_SOR_MODE_CTRL_NVSYNC; 235 mode_ctl |= NV50_EVO_SOR_MODE_CTRL_NVSYNC;
235 236
237 nv50_sor_dpms(encoder, DRM_MODE_DPMS_ON);
238
236 ret = RING_SPACE(evo, 2); 239 ret = RING_SPACE(evo, 2);
237 if (ret) { 240 if (ret) {
238 NV_ERROR(dev, "no space while connecting SOR\n"); 241 NV_ERROR(dev, "no space while connecting SOR\n");