Commit 217275d0 authored by Francisco Jerez's avatar Francisco Jerez Committed by Ben Skeggs

drm/nv40: Try to set up CRE_LCD even if it has unknown bits set.

They don't seem to do anything useful, and we really want to program
CRE_LCD if we aren't lucky enough to find the right CRTC binding
already set.
Signed-off-by: default avatarFrancisco Jerez <currojerez@riseup.net>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 7314dec9
...@@ -352,15 +352,9 @@ static void nv04_dac_prepare(struct drm_encoder *encoder) ...@@ -352,15 +352,9 @@ static void nv04_dac_prepare(struct drm_encoder *encoder)
helper->dpms(encoder, DRM_MODE_DPMS_OFF); helper->dpms(encoder, DRM_MODE_DPMS_OFF);
nv04_dfp_disable(dev, head); nv04_dfp_disable(dev, head);
/* Some NV4x have unknown values (0x3f, 0x50, 0x54, 0x6b, 0x79, 0x7f)
* at LCD__INDEX which we don't alter
*/
if (!(crtcstate[head].CRTC[NV_CIO_CRE_LCD__INDEX] & 0x44))
crtcstate[head].CRTC[NV_CIO_CRE_LCD__INDEX] = 0; crtcstate[head].CRTC[NV_CIO_CRE_LCD__INDEX] = 0;
} }
static void nv04_dac_mode_set(struct drm_encoder *encoder, static void nv04_dac_mode_set(struct drm_encoder *encoder,
struct drm_display_mode *mode, struct drm_display_mode *mode,
struct drm_display_mode *adjusted_mode) struct drm_display_mode *adjusted_mode)
......
...@@ -253,10 +253,6 @@ static void nv04_dfp_prepare(struct drm_encoder *encoder) ...@@ -253,10 +253,6 @@ static void nv04_dfp_prepare(struct drm_encoder *encoder)
nv04_dfp_prepare_sel_clk(dev, nv_encoder, head); nv04_dfp_prepare_sel_clk(dev, nv_encoder, head);
/* Some NV4x have unknown values (0x3f, 0x50, 0x54, 0x6b, 0x79, 0x7f)
* at LCD__INDEX which we don't alter
*/
if (!(*cr_lcd & 0x44)) {
*cr_lcd = 0x3; *cr_lcd = 0x3;
if (nv_two_heads(dev)) { if (nv_two_heads(dev)) {
...@@ -275,7 +271,6 @@ static void nv04_dfp_prepare(struct drm_encoder *encoder) ...@@ -275,7 +271,6 @@ static void nv04_dfp_prepare(struct drm_encoder *encoder)
} }
} }
} }
}
} }
......
...@@ -408,15 +408,10 @@ static void nv17_tv_prepare(struct drm_encoder *encoder) ...@@ -408,15 +408,10 @@ static void nv17_tv_prepare(struct drm_encoder *encoder)
} }
/* Some NV4x have unknown values (0x3f, 0x50, 0x54, 0x6b, 0x79, 0x7f)
* at LCD__INDEX which we don't alter
*/
if (!(*cr_lcd & 0x44)) {
if (tv_norm->kind == CTV_ENC_MODE) if (tv_norm->kind == CTV_ENC_MODE)
*cr_lcd = 0x1 | (head ? 0x0 : 0x8); *cr_lcd = 0x1 | (head ? 0x0 : 0x8);
else else
*cr_lcd = 0; *cr_lcd = 0;
}
/* Set the DACCLK register */ /* Set the DACCLK register */
dacclk = (NVReadRAMDAC(dev, 0, dacclk_off) & ~0x30) | 0x1; dacclk = (NVReadRAMDAC(dev, 0, dacclk_off) & ~0x30) | 0x1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment