[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#289334: xserver-xfree86: XFree86 erroneously detects multiple instances of the videocard



Package: xserver-xfree86
Version: 4.3.0.dfsg.1-10
Severity: important
Tags: patch

XFree86 refuses to run on my old Pentium desktop. It finds multiple
copies of my video card all but one of which are clearly bogus (they
have a PCI id that doesn't exist on the box).

Specifically I see

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1250 card 0000,0000 rev 03 class 06,00,00
hdr 00
(II) PCI: 00:07:0: chip 8086,7000 card 0000,0000 rev 01 class 06,01,00
hdr 80
(II) PCI: 00:07:1: chip 8086,7010 card 0000,0000 rev 00 class 01,01,80
hdr 00
(II) PCI: 00:09:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00
hdr 00
(II) PCI: 00:0b:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: 00:0f:0: chip 9004,7178 card 0000,0000 rev 00 class 01,00,00
hdr 00
(II) PCI: 40:00:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: 40:01:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: 40:02:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: 40:03:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: 40:04:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
...
(II) PCI: 41:18:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: 41:19:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00
hdr 00
(II) PCI: End of PCI scan

All of the devices at PCI: 40:00:0 onwards are copies of the real video
device at (II) PCI: 00:0b:0

XFree86 reports exactly 64 pci devices and it is failing to find a tag
!= PCI_NOT_FOUND in the following line in xf86scanpci() of
xc/programs/Xserver/hw/xfree86/os-support/bus/Pci.c

    while (idx < MAX_PCI_DEVICES && tag != PCI_NOT_FOUND) {

I had a look at the latest sources on xfree86.org and found a fix exists
in revision 1.86 of
http://cvsweb.xfree86.org/cvsweb/xc/programs/Xserver/hw/xfree86/os-support/bus/Pci.c

i.e.

--- hw/xfree86/os-support/bus/Pci.c.orig	2005-01-08 12:57:10.000000000 +0000
+++ hw/xfree86/os-support/bus/Pci.c	2005-01-08 12:54:16.000000000 +0000
@@ -742,9 +742,11 @@
 	    for (;;) {
 	        if (++pciDevNum >= pciBusInfo[pciBusNum]->numDevices)
 		    goto NextSpeculativeBus;
-		if (devid !=
-		    pciReadLong(PCI_MAKE_TAG(pciBusNum, pciDevNum, 0),
-			        PCI_ID_REG))
+		inProbe = TRUE;
+		tmp = pciReadLong(PCI_MAKE_TAG(pciBusNum, pciDevNum, 0),
+				  PCI_ID_REG);
+		inProbe = FALSE;
+		if (devid != tmp)
 		    break;
 	    }
 

With this fixed XFree86 only finds one instance of the video card. It
still doesn't work however reporting

(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
        compiled for 4.3.0.1, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.6
(--) s3(0): Attached RAMDAC is IBM 526
(--) s3(0): This IBM RAMDAC is NOT supported by this driver, aborting
(EE) s3(0): Ramdac probe failed
(II) UnloadModule: "s3"

I don't know whether this should be a different bug but if I manually
change the driver from "s3" to "vesa" then the Xserver works. I guess
that this information needs putting into the hardware database somewhere

Just in case you need it here is the output of lspci for the video card

0000:00:0b.0 VGA compatible controller: S3 Inc. 86c968 [Vision 968 VRAM]
rev 0 (prog-if 00 [VGA])
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
        Interrupt: pin A routed to IRQ 12
        Region 0: Memory at 10000000 (32-bit, non-prefetchable) [size=64M]

and lspci -vvn

0000:00:0b.0 0300: 5333:88f0
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR- FastB2B-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR-
        Interrupt: pin A routed to IRQ 12
        Region 0: Memory at 10000000 (32-bit, non-prefetchable) [size=64M]


Regards

Richard



-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 20 2005-01-06 23:24 /etc/X11/X -> /usr/bin/X11/XFree86
-rwxr-xr-x  1 root root 1745740 2005-01-08 13:07 /usr/bin/X11/XFree86

Contents of /var/lib/xfree86/XF86Config-4.roster:
xserver-xfree86

VGA-compatible devices on PCI bus:
0000:00:0b.0 VGA compatible controller: S3 Inc. 86c968 [Vision 968 VRAM] rev 0

/etc/X11/XF86Config-4 does not match checksum in /var/lib/xfree86/XF86Config-4.md5sum.

XFree86 X server configuration file status:
-rw-r--r--  1 root root 3322 2005-01-07 22:06 /etc/X11/XF86Config-4

Contents of /etc/X11/XF86Config-4:
# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "Files"
	FontPath	"unix/:7100"			# local font server
	# if the local font server has problems, we can fall back on these
	FontPath	"/usr/lib/X11/fonts/misc"
	FontPath	"/usr/lib/X11/fonts/cyrillic"
	FontPath	"/usr/lib/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/Type1"
	FontPath	"/usr/lib/X11/fonts/CID"
	FontPath	"/usr/lib/X11/fonts/Speedo"
	FontPath	"/usr/lib/X11/fonts/100dpi"
	FontPath	"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
	Load	"GLcore"
	Load	"bitmap"
	Load	"dbe"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"record"
	Load	"speedo"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xfree86"
	Option		"XkbModel"	"pc101"
	Option		"XkbLayout"	"gb"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/ttyS0"
	Option		"Protocol"		"Auto"
	Option		"Emulate3Buttons"	"true"
	Option		"ZAxisMapping"		"4 5"
EndSection
Section "InputDevice"
	Identifier	"Generic Mouse"
	Driver		"mouse"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"true"
	Option		"ZAxisMapping"		"4 5"
EndSection

Section "Device"
	Identifier	"S3 Inc. 86c968 [Vision 968 VRAM] rev 0"
	# Driver		"vga"
	Driver		"s3"
EndSection

Section "Monitor"
	Identifier	"IMR:0377"
	HorizSync	28-50
	VertRefresh	43-75
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"S3 Inc. 86c968 [Vision 968 VRAM] rev 0"
	Monitor		"IMR:0377"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1280x1024" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice	"Generic Mouse"
EndSection

Section "DRI"
	Mode	0666
EndSection


XFree86 X server log files on system:
-rw-r--r--  1 root root 15767 2005-01-08 12:53 /var/log/XFree86.0.log

Contents of most recent XFree86 X server log file
/var/log/XFree86.0.log:
XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-10 20041215174925 fabbione@fabbione.net)
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.26 i686 [ELF] 
Build Date: 15 December 2004

This version of XFree86 has been extensively modified by the Debian
Project, and is not supported by the XFree86 Project, Inc., in any
way.  Bugs should be reported to the Debian Bug Tracking System; see
<URL: http://www.debian.org/Bugs/Reporting >.

We strongly encourage the use of the "reportbug" package and command
to ensure that bug reports contain as much useful information as
possible.

Before filing a bug report, you may want to consult the Debian X FAQ:
       XHTML version: file:///usr/share/doc/xfree86-common/FAQ.xhtml
  plain text version: file:///usr/share/doc/xfree86-common/FAQ.gz

Module Loader present
OS Kernel: Linux version 2.6.8-1-386 (joshk@trollwife) (gcc version 3.3.5 (Debian 1:3.3.5-2)) #1 Thu Nov 25 04:24:08 UTC 2004 
Markers: (--) probed, (**) from config file, (==) default setting,
         (++) from command line, (!!) notice, (II) informational,
         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Sat Jan  8 14:55:26 2005
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "IMR:0377"
(**) |   |-->Device "S3 Inc. 86c968 [Vision 968 VRAM] rev 0"
(**) |-->Input Device "Generic Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc101"
(**) XKB: model: "pc101"
(**) Option "XkbLayout" "gb"
(**) XKB: layout: "gb"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Generic Mouse"
(WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
	Entry deleted from font path.
(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
	Entry deleted from font path.
(**) FontPath set to "unix/:7100,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(--) using VT number 8

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.6
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8000783c, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1250 card 0000,0000 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:07:0: chip 8086,7000 card 0000,0000 rev 01 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7010 card 0000,0000 rev 00 class 01,01,80 hdr 00
(II) PCI: 00:09:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 00:0b:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 00:0f:0: chip 9004,7178 card 0000,0000 rev 00 class 01,00,00 hdr 00
(II) PCI: 40:00:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:01:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:02:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:03:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:04:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:05:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:06:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:07:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:08:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:09:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:0a:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:0b:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:0c:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:0d:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:0e:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:0f:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:10:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:11:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:12:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:13:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:14:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:15:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:16:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:17:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:18:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:19:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:1a:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:1b:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:1c:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:1d:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:1e:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 40:1f:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:00:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:01:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:02:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:03:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:04:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:05:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:06:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:07:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:08:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:09:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:0a:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:0b:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:0c:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:0d:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:0e:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:0f:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:10:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:11:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:12:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:13:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:14:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:15:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:16:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:17:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:18:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: 41:19:0: chip 5333,88f0 card 0000,0000 rev 00 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,65), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus 64: bridge is at (0:0:0), (64,64,0), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 64 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 64 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 64 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 65: bridge is at (0:0:0), (65,65,0), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 65 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 65 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 65 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(!!) More than one primary device found
(--) PCI: (0:11:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/26
(--) PCI: (64:0:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:1:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:2:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:3:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:4:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:5:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:6:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:7:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:8:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:9:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:10:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:11:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:12:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:13:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:14:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:15:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:16:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:17:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:18:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:19:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:20:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:21:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:22:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:23:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:24:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:25:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:26:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:27:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:28:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:29:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:30:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (64:31:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:0:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:1:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:2:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:3:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:4:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:5:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:6:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:7:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:8:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:9:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:10:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:11:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:12:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:13:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:14:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:15:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:16:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:17:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:18:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:19:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:20:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:21:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:22:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:23:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:24:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(--) PCI: (65:25:0) S3 Inc. 86c968 [Vision 968 VRAM] rev 0 rev 0, Mem @ 0x10000000/25
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
	[0] -1	0	0xe4001000 - 0xe4001fff (0x1000) MX[B]
	[1] -1	0	0xe4000000 - 0xe40000ff (0x100) MX[B]
	[2] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[3] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[4] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[5] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[6] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[7] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[8] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[9] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[10] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[11] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[12] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[13] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[14] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[15] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[16] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[17] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[18] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[19] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[20] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[21] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[22] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[23] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[24] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[25] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[26] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[27] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[28] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[29] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[30] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[31] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[32] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[33] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[34] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[35] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[36] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[37] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[38] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[39] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[40] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[41] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[42] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[43] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[44] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[45] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[46] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[47] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[48] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[49] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[50] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[51] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[52] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[53] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[54] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[55] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[56] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[57] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[58] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[59] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[60] -1	0	0x10000000 - 0x13ffffff (0x4000000) MX[B](B)
	[61] -1	0	0x00006400 - 0x000064ff (0x100) IX[B]
	[62] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) Inactive PCI resource ranges:
	[0] -1	0	0x00006000 - 0x000060ff (0x100) IX[B]
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xe4001000 - 0xe4001fff (0x1000) MX[B]
	[1] -1	0	0xe4000000 - 0xe40000ff (0x100) MX[B]
	[2] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[3] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[4] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[5] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[6] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[7] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[8] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[9] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[10] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[11] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[12] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[13] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[14] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[15] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[16] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[17] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[18] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[19] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[20] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[21] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[22] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[23] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[24] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[25] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[26] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[27] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[28] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[29] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[30] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[31] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[32] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[33] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[34] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[35] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[36] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[37] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[38] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[39] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[40] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[41] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[42] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[43] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[44] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[45] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[46] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[47] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[48] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[49] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[50] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[51] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[52] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[53] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[54] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[55] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[56] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[57] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[58] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[59] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[60] -1	0	0x10000000 - 0x13ffffff (0x4000000) MX[B](B)
	[61] -1	0	0x00006400 - 0x000064ff (0x100) IX[B]
	[62] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
(II) Inactive PCI resource ranges after removing overlaps:
	[0] -1	0	0x00006000 - 0x000060ff (0x100) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xe4001000 - 0xe4001fff (0x1000) MX[B]
	[6] -1	0	0xe4000000 - 0xe40000ff (0x100) MX[B]
	[7] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[8] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[9] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[10] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[11] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[12] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[13] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[14] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[15] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[16] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[17] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[18] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[19] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[20] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[21] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[22] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[23] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[24] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[25] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[26] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[27] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[28] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[29] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[30] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[31] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[32] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[33] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[34] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[35] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[36] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[37] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[38] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[39] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[40] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[41] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[42] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[43] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[44] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[45] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[46] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[47] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[48] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[49] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[50] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[51] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[52] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[53] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[54] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[55] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[56] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[57] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[58] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[59] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[60] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[61] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[62] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[63] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[64] -1	0	0x10000000 - 0x11ffffff (0x2000000) MX[B](B)
	[65] -1	0	0x10000000 - 0x13ffffff (0x4000000) MX[B](B)
	[66] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[67] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[68] -1	0	0x00006400 - 0x000064ff (0x100) IX[B]
	[69] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
	[70] -1	0	0x00006000 - 0x000060ff (0x100) IX[B]
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o":  No symbols found
(II) Module GLcore: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 2.0.2
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Reloading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.13.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o":  No symbols found
(II) Module speedo: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.1
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.2
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.1.0
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "s3"
(II) Loading /usr/X11R6/lib/modules/drivers/s3_drv.o
(II) Module s3: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 0.3.5
	Module class: XFree86 Video Driver
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 XInput Driver
	ABI class: XFree86 XInput driver, version 0.4
(II) S3: driver (version 0.3.5 for S3 chipset: 964-0, 964-1, 968,
	Trio32/64, Aurora64V+, Trio64V2/DX or /GX
(II) Primary Device is: 
(WW) s3: No matching Device section for instance (BusID PCI:0:11:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:0:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:1:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:2:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:3:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:4:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:5:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:6:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:7:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:8:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:9:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:10:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:11:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:12:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:13:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:14:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:15:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:16:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:17:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:18:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:19:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:20:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:21:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:22:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:23:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:24:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:25:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:26:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:27:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:28:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:29:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:30:0) found
(WW) s3: No matching Device section for instance (BusID PCI:64:31:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:0:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:1:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:2:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:3:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:4:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:5:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:6:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:7:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:8:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:9:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:10:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:11:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:12:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:13:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:14:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:15:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:16:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:17:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:18:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:19:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:20:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:21:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:22:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:23:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:24:0) found
(WW) s3: No matching Device section for instance (BusID PCI:65:25:0) found
(EE) No devices detected.

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file "/var/log/XFree86.0.log".
Please report problems to submit@bugs.debian.org.




-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i486)
Kernel: Linux 2.6.8-1-386
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages xserver-xfree86 depends on:
ii  debconf [debconf-2.0]    1.4.30.11       Debian configuration management sy
ii  libc6                    2.3.2.ds1-20    GNU C Library: Shared libraries an
ii  libgcc1                  1:3.4.3-6       GCC support library
ii  xserver-common           4.3.0.dfsg.1-10 files and utilities common to all 
ii  zlib1g                   1:1.2.2-3       compression library - runtime

-- debconf information:
  xserver-xfree86/config/device/identifier: S3 Inc. 86c968 [Vision 968 VRAM] rev 0
  xserver-xfree86/config/monitor/screen-size: 17 inches (430 mm)
  xserver-xfree86/config/device/use_fbdev:
  xserver-xfree86/config/monitor/selection-method: Advanced
  xserver-xfree86/config/doublequote_in_string_error:
  shared/default-x-server: xserver-xfree86
  xserver-xfree86/config/inputdevice/mouse/emulate3buttons: true
  xserver-xfree86/config/device/bus_id:
* xserver-xfree86/config/inputdevice/keyboard/layout: gb
  xserver-xfree86/config/monitor/horiz-sync: 28-50
  xserver-xfree86/config/monitor/identifier: IMR:0377
  shared/no_known_x-server:
* xserver-xfree86/autodetect_mouse: false
  xserver-xfree86/config/device/video_ram:
  xserver-xfree86/config/monitor/mode-list: 1280x960 @ 60Hz
  xserver-xfree86/config/monitor/lcd: false
  xserver-xfree86/config/inputdevice/keyboard/internal:
* xserver-xfree86/config/inputdevice/keyboard/rules: xfree86
  xserver-xfree86/multiple_possible_x-drivers:
* xserver-xfree86/config/inputdevice/keyboard/model: pc101
  xserver-xfree86/config/write_dri_section: true
  xserver-xfree86/config/device/driver: s3
  xserver-xfree86/config/monitor/vert-refresh: 43-75
* xserver-xfree86/config/display/default_depth: 24
  xserver-xfree86/config/inputdevice/mouse/zaxismapping: true
* xserver-xfree86/config/display/modes: 1280x1024, 1024x768, 800x600, 640x480
  xserver-xfree86/config/device/bus_id_error:
  xserver-xfree86/config/modules: GLcore, bitmap, dbe, ddc, dri, extmod, freetype, glx, int10, record, speedo, type1, vbe
* xserver-xfree86/config/inputdevice/keyboard/options:
  xserver-xfree86/config/nonnumeric_string_error:
* xserver-xfree86/config/inputdevice/mouse/protocol: Auto
  shared/multiple_possible_x-servers:
  xserver-xfree86/config/null_string_error:
  xserver-xfree86/config/monitor/range_input_error:
* xserver-xfree86/autodetect_video_card: true
* xserver-xfree86/config/inputdevice/keyboard/variant:
* xserver-xfree86/config/inputdevice/mouse/port: /dev/ttyS0
  xserver-xfree86/config/write_files_section: true
* xserver-xfree86/autodetect_monitor: true



Reply to: