README | 21 +++++++++++++++++++++ configure.ac | 2 +- man/s3virge.man | 2 +- src/s3v_driver.c | 8 ++++---- 4 files changed, 27 insertions(+), 6 deletions(-)
New commits: commit 7f563782c34e247c70b2a0271ce3d8c221510f3c Author: Alan Coopersmith <alan.coopersm...@sun.com> Date: Fri Jan 30 20:59:35 2009 -0800 Add README with pointers to mailing list, bugzilla & git repos diff --git a/README b/README index d16f23f..72b75b2 100644 --- a/README +++ b/README @@ -1,4 +1,25 @@ +xf86-video-s3virge - S3 ViRGE video driver for the Xorg X server +Please submit bugs & patches to the Xorg bugzilla: + + https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +All questions regarding this software should be directed at the +Xorg mailing list: + + http://lists.freedesktop.org/mailman/listinfo/xorg + +The master development code repository can be found at: + + git://anongit.freedesktop.org/git/xorg/driver/xf86-video-s3virge + + http://cgit.freedesktop.org/xorg/driver/xf86-video-s3virge + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage + +------------------------------------------------------------------------ What works: - Supports 8bpp, 15/16bpp, 24bpp and 32bpp. Heavy testing on ViRGE DX. - There is some known instability in ViRGE GX2, please report problems. commit 731e70acccb5da4a630b0dd13a24f5d8f34903e8 Author: Alan Coopersmith <alan.coopersm...@sun.com> Date: Fri Jan 9 16:33:16 2009 -0800 Remove xorgconfig & xorgcfg from See Also list in man page diff --git a/man/s3virge.man b/man/s3virge.man index 6235d0b..6ef7661 100644 --- a/man/s3virge.man +++ b/man/s3virge.man @@ -221,7 +221,7 @@ development debug option. Default: off. Enable or disable a cr3a fix added for ViRGE MX. Default: on. .SH SEE ALSO -__xservername__(1), __xconfigfile__(__filemansuffix__), xorgconfig(1), Xserver(1), X(__miscmansuffix__) +__xservername__(1), __xconfigfile__(__filemansuffix__), Xserver(1), X(__miscmansuffix__) .SH KNOWN BUGS The VideoRam generic driver parameter is presently ignored by the commit 188fc3302f61c7e6dfc92dd99f5938f732002616 Author: Dave Airlie <airl...@redhat.com> Date: Mon Dec 22 15:35:24 2008 +1000 s3virge 1.10.2 diff --git a/configure.ac b/configure.ac index 244a27d..1ac7860 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-s3virge], - 1.10.1, + 1.10.2, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-s3virge) commit 20d2095d85582662722c43f2b368bba676e4a790 Author: Christian Aistleitner <christian.aistleit...@gmx.at> Date: Mon Jul 14 06:56:00 2008 -0300 Respect rotation upon ShadowFB initialization fixes ShadowFB initialization while respecting rotation The shadowFB is initialized using the screen's VirtualX for width and VirtualY for height and regardless of the rotation. When using the Option "Rotate" "CW" such initialization of the ShadowFB results in such a setup 331 331 22 although the correct setup would be 33 33 33 the 1s and 3s represent the usable workspace. the 2s and 3s represent the monitor. Signed-off-by: Paulo Cesar Pereira de Andrade <p...@mandriva.com.br> diff --git a/src/s3v_driver.c b/src/s3v_driver.c index 499d2cf..0f605df 100644 --- a/src/s3v_driver.c +++ b/src/s3v_driver.c @@ -2651,8 +2651,8 @@ S3VInternalScreenInit( int scrnIndex, ScreenPtr pScreen) case 16: case 24: case 32: - ret = fbScreenInit(pScreen, FBStart, pScrn->virtualX, - pScrn->virtualY, pScrn->xDpi, pScrn->yDpi, + ret = fbScreenInit(pScreen, FBStart, width, + height, pScrn->xDpi, pScrn->yDpi, displayWidth, pScrn->bitsPerPixel); break; default: commit 29e413c850e18f43dbd011689973399c5d7d340d Author: Paulo Cesar Pereira de Andrade <p...@mandriva.com.br> Date: Mon Jul 21 19:02:52 2008 -0300 Correct calls to find_bios_string It was changed to receive a S3VPtr instead of a PCITAG in commit 44aca1d9fe5c51e591aa5a33a3f46d3ad46dc0b9, for PCIACCESS conversion. But the callers were not updated, so, it is assumed that without this patch, the driver will just crash when calling find_bios_string. Signed-off-by: Paulo Cesar Pereira de Andrade <p...@mandriva.com.br> diff --git a/src/s3v_driver.c b/src/s3v_driver.c index d0fd463..499d2cf 100644 --- a/src/s3v_driver.c +++ b/src/s3v_driver.c @@ -1232,12 +1232,12 @@ S3VPreInit(ScrnInfoPtr pScrn, int flags) * Toshiba Tecra 5x0/7x0 seems to use 28.636 MHz * Compaq Armada 7x00 uses 14.318 MHz */ - if (find_bios_string(ps3v->PciTag, BIOS_BASE, "COMPAQ M5 BIOS", NULL) != NULL) { + if (find_bios_string(ps3v, BIOS_BASE, "COMPAQ M5 BIOS", NULL) != NULL) { if (xf86GetVerbosity()) xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "COMPAQ M5 BIOS found\n"); /* ps3v->refclk_fact = 1.0; */ } - else if (find_bios_string(ps3v->PciTag, BIOS_BASE, "TOSHIBA Video BIOS", NULL) != NULL) { + else if (find_bios_string(ps3v, BIOS_BASE, "TOSHIBA Video BIOS", NULL) != NULL) { if (xf86GetVerbosity()) xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "TOSHIBA Video BIOS found\n"); /* ps3v->refclk_fact = 2.0; */ -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org