summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDafydd Harries <daf@rhydd.org>2007-09-13 00:41:20 +0100
committerDafydd Harries <daf@rhydd.org>2007-09-13 02:14:18 +0100
commit2fbe3c902f3de9b1d6b3ebc282c0616476b11cb9 (patch)
tree546359b1c36725506df03c88e9b4fb47b5259b47
parent6e154d4c7d696511ffa711b9328c8fb395c48072 (diff)
don't write to stereoscopic display status register
-rw-r--r--avivotool/avivotool.c1
-rw-r--r--xorg/avivo_crtc.c1
-rw-r--r--xorg/avivo_state.c1
3 files changed, 0 insertions, 3 deletions
diff --git a/avivotool/avivotool.c b/avivotool/avivotool.c
index aed03a6..8794bb6 100644
--- a/avivotool/avivotool.c
+++ b/avivotool/avivotool.c
@@ -539,7 +539,6 @@ void radeon_output_set(char *output, char *status)
SET_REG(AVIVO_CRTC1_V_SYNC_POL, 0x00000000);
SET_REG(AVIVO_CRTC1_FB_FORMAT, AVIVO_CRTC_FORMAT_ARGB32);
SET_REG(AVIVO_CRTC1_MODE, 0x00000000);
- SET_REG(AVIVO_CRTC1_STEREO_STATUS, 0x00000000);
SET_REG(AVIVO_CRTC1_CNTL, 0x00010101);
SET_REG(AVIVO_CRTC1_SCAN_ENABLE, AVIVO_CRTC_SCAN_EN);
}
diff --git a/xorg/avivo_crtc.c b/xorg/avivo_crtc.c
index b3db4cb..7114f0d 100644
--- a/xorg/avivo_crtc.c
+++ b/xorg/avivo_crtc.c
@@ -255,7 +255,6 @@ avivo_crtc_mode_set(xf86CrtcPtr crtc,
OUTREG(AVIVO_CRTC1_FB_END + avivo_crtc->crtc_offset,
fb_location + avivo_crtc->fb_length);
OUTREG(AVIVO_CRTC1_MODE + avivo_crtc->crtc_offset, 0);
- OUTREG(AVIVO_CRTC1_STEREO_STATUS + avivo_crtc->crtc_offset, 0);
/* avivo can only shift offset by 4 pixel in x if you program somethings
* not multiple of 4 you gonna drive the GPU crazy and likely won't
* be able to restore it without cold reboot (vbe post not enough)
diff --git a/xorg/avivo_state.c b/xorg/avivo_state.c
index f917456..f7d3864 100644
--- a/xorg/avivo_state.c
+++ b/xorg/avivo_state.c
@@ -115,7 +115,6 @@ avivo_restore_state(ScrnInfoPtr screen_info)
OUTREG(AVIVO_CRTC1_V_SYNC_POL, state->crtc1_v_sync_pol);
OUTREG(AVIVO_CRTC1_CNTL, state->crtc1_cntl);
OUTREG(AVIVO_CRTC1_MODE, state->crtc1_mode);
- OUTREG(AVIVO_CRTC1_STEREO_STATUS, state->crtc1_stereo_status);
OUTREG(AVIVO_CRTC1_SCAN_ENABLE, state->crtc1_scan_enable);
OUTREG(AVIVO_CRTC1_FB_FORMAT, state->crtc1_fb_format);
OUTREG(AVIVO_CRTC1_FB_LOCATION, state->crtc1_fb_location);