[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_outputs.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Thu Apr 14 21:19:14 UTC 2016
configure.ac | 2 +-
src/via_outputs.c | 6 ++++++
2 files changed, 7 insertions(+), 1 deletion(-)
New commits:
commit 15b1ec777ddc8d22f558b454a0356fb7068af18f
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Thu Apr 14 14:17:37 2016 -0700
Turning off IGA1 before changing the controller parameters
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_outputs.c b/src/via_outputs.c
index eabb1c6..3d0a12b 100644
--- a/src/via_outputs.c
+++ b/src/via_outputs.c
@@ -1335,6 +1335,9 @@ ViaModeFirstCRTC(ScrnInfoPtr pScrn, DisplayModePtr mode)
/* Turn off Screen */
ViaCrtcMask(hwp, 0x17, 0x00, 0x80);
+ /* Disable IGA1 */
+ ViaSeqMask(hwp, 0x59, 0x00, 0x80);
+
ViaFirstCRTCSetMode(pScrn, mode);
pBIOSInfo->Clock = ViaModeDotClockTranslate(pScrn, mode);
pBIOSInfo->ClockExternal = FALSE;
@@ -1350,6 +1353,9 @@ ViaModeFirstCRTC(ScrnInfoPtr pScrn, DisplayModePtr mode)
hwp->disablePalette(hwp);
+ /* Enable IGA1 */
+ ViaSeqMask(hwp, 0x59, 0x80, 0x80);
+
/* Turn on Screen */
ViaCrtcMask(hwp, 0x17, 0x80, 0x80);
}
commit 5e02cafee84e077bba6587fada420368b82eca0d
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Thu Apr 14 02:53:09 2016 -0700
Version bumped to 0.4.110
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index 893cbf2..81392e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ(2.57)
AC_INIT([xf86-video-openchrome],
- [0.4.109],
+ [0.4.110],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
More information about the Openchrome-devel
mailing list