Date: Tue, 18 Jan 2005 21:01:17 -0600 From: Mike Meyer <mwm@mired.org> To: questions@freebsd.org Subject: Keyboard not working under X. Message-ID: <16877.52605.294956.783382@guru.mired.org>
index | next in thread | raw e-mail
[-- Attachment #1 --] I'm running 5.3-STABLE, built from sources around Dec 17th. I had things working fine with Xorg X, and was reasonably happy with things. After updating ports, my keyboard quit working with X. Checking the x.org bugs database, it turns out they are working on a new keyboard driver, and a recent change had vanished the old driver and made configurations that tried to use the old driver get the new driver instead - and various reports of keyboards not working properly with the new driver. Figuring I was getting bit by one of the bugs in the new driver, I decided to switch back to XFree86-4. It worked fine on 4.10 before I upgraded, and I could live with it. Except that my keyboard no longer works in X with XFree86, either. Not having X avaiable is becoming a serious pain. I've attached config files, log files, and dmesg for your perusal. Any pointers on getting either one of these two X systems working again would be greatly appreciated. Thanks, <mike -- Mike Meyer <mwm@mired.org> http://www.mired.org/consulting.html Independent Network/Unix/Perforce consultant, email for more information. [-- Attachment #2 --] # File generated by xf86config. # # Copyright (c) 1999 by The XFree86 Project, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # Except as contained in this notice, the name of the XFree86 Project shall # not be used in advertising or otherwise to promote the sale, use or other # dealings in this Software without prior written authorization from the # XFree86 Project. # # ********************************************************************** # Refer to the XF86Config(4/5) man page for details about the format of # this file. # ********************************************************************** # ********************************************************************** # Module section -- this section is used to specify # which dynamically loadable modules to load. # ********************************************************************** # Section "Module" Load "dbe" # Double buffer extension # This loads the miscellaneous extensions module. SubSection "extmod" EndSubSection Load "type1" Load "freetype" EndSection # ********************************************************************** # Files section. This allows default font and rgb paths to be set # ********************************************************************** Section "Files" # The location of the RGB database. Note, this is the name of the # file minus the extension (like ".txt" or ".db"). There is normally # no need to change the default. RgbPath "/usr/X11R6/lib/X11/rgb" # Multiple FontPath entries are allowed (which are concatenated together), # as well as specifying multiple comma-separated entries in one FontPath # command (or a combination of both methods) # # If you don't have a floating point coprocessor and emacs, Mosaic or other # programs take long to start up, try moving the Type1 and Speedo directory # to the end of this list (or comment them out). # FontPath "/usr/X11R6/lib/X11/fonts/local/" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" FontPath "/home/fonts/type1/" FontPath "/usr/X11R6/lib/X11/fonts/webfonts/" # The module search path. The default path is shown here. # ModulePath "/usr/X11R6/lib/modules" EndSection # ********************************************************************** # Server flags section. # ********************************************************************** Section "ServerFlags" # Uncomment this to cause a core dump at the spot where a signal is # received. This may leave the console in an unusable state, but may # provide a better stack trace in the core dump to aid in debugging # Option "NoTrapSignals" # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence # This allows clients to receive this key event. Option "DontZap" # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching # sequences. This allows clients to receive these key events. # Option "Dont Zoom" # Uncomment this to disable tuning with the xvidtune client. With # it the client can still run and fetch card and monitor attributes, # but it will not be allowed to change them. If it tries it will # receive a protocol error. # Option "DisableVidModeExtension" # Uncomment this to enable the use of a non-local xvidtune client. # Option "AllowNonLocalXvidtune" # Uncomment this to disable dynamically modifying the input device # (mouse and keyboard) settings. # Option "DisableModInDev" # Uncomment this to enable the use of a non-local client to # change the keyboard or mouse settings (currently only xset). # Option "AllowNonLocalModInDev" EndSection # ********************************************************************** # Input devices # ********************************************************************** # ********************************************************************** # Core keyboard's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Keyboard1" Driver "Keyboard" # For most OSs the protocol can be omitted (it defaults to "Standard"). # When using XQUEUE (only for SVR3 and SVR4, but not Solaris), # uncomment the following line. # Option "Protocol" "Xqueue" Option "AutoRepeat" "500 30" # Specify which keyboard LEDs can be user-controlled (eg, with xset(1)) # Option "Xleds" "1 2 3" # Option "LeftAlt" "Meta" # Option "RightAlt" "ModeShift" # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a non-U.S. # keyboard, you will probably want to use: # Option "XkbModel" "pc102" # If you have a US Microsoft Natural keyboard, you can use: # Option "XkbModel" "microsoft" # # Then to change the language, change the Layout setting. # For example, a german layout can be obtained with: # Option "XkbLayout" "de" # or: # Option "XkbLayout" "de" # Option "XkbVariant" "nodeadkeys" # # If you'd like to switch the positions of your capslock and # control keys, use: # Option "XkbOptions" "ctrl:swapcaps" # These are the default XKB settings for XFree86 # Option "XkbRules" "xfree86" # Option "XkbModel" "pc101" # Option "XkbLayout" "us" # Option "XkbVariant" "" # Option "XkbOptions" "" # Option "XkbDisable" Option "XkbRules" "xfree86" Option "XkbModel" "pc104" Option "XkbLayout" "us" Option "XkbOptions" "ctrl:nocaps" EndSection # ********************************************************************** # Core Pointer's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "PS/2" Option "Device" "/dev/psm0" EndSection # ********************************************************************** # Monitor section # ********************************************************************** # Any number of monitor sections may be present Section "Monitor" Identifier "ViewSonic P810" HorizSync 30-95 VertRefresh 50-160 EndSection Section "Monitor" Identifier "Gateway EV500" HorizSync 30-69 VertRefresh 47-100 EndSection # ********************************************************************** # Graphics device section # ********************************************************************** # Any number of graphics device sections may be present # Standard VGA Device: Section "Device" Identifier "Standard VGA" VendorName "Unknown" BoardName "Unknown" # The chipset line is optional in most cases. It can be used to override # the driver's chipset detection, and should not normally be specified. # Chipset "generic" # The Driver line must be present. When using run-time loadable driver # modules, this line instructs the server to load the specified driver # module. Even when not using loadable driver modules, this line # indicates which driver should interpret the information in this section. Driver "vga" # The BusID line is used to specify which of possibly multiple devices # this section is intended for. When this line isn't present, a device # section can only match up with the primary video device. For PCI # devices a line like the following could be used. This line should not # normally be included unless there is more than one video device # intalled. # BusID "PCI:0:10:0" # VideoRam 256 # Clocks 25.2 28.3 EndSection # Device configured by xf86config: Section "Device" Identifier "Diamond Viper 550" Driver "nv" BusID "PCI:1:0:0" EndSection Section "Device" Identifier "ATI Mach 64" Driver "ati" BusID "PCI:0:17:0" EndSection # ********************************************************************** # Screen sections # ********************************************************************** # Any number of screen sections may be present. Each describes # the configuration of a single screen. A single specific screen section # may be specified from the X server command line with the "-screen" # option. Section "Screen" Identifier "Screen 1" Device "Diamond Viper 550" Monitor "ViewSonic P810" DefaultDepth 24 Subsection "Display" Depth 24 Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480" "544x352" "536x344" "480x288" "384x288" "352x288" "352x280" "352x240" "320x240" ViewPort 0 0 EndSubsection EndSection Section "Screen" Identifier "Screen 2" Device "ATI Mach 64" Monitor "Gateway EV500" DefaultDepth 24 Subsection "Display" Depth 24 Modes "1024x768" "800x600" "640x480" "544x352" "536x344" "480x288" "384x288" "352x288" "352x280" "352x240" "320x240" ViewPort 0 0 EndSubsection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** # Any number of ServerLayout sections may be present. Each describes # the way multiple screens are organised. A specific ServerLayout # section may be specified from the X server command line with the # "-layout" option. In the absence of this, the first section is used. # When now ServerLayout section is present, the first Screen section # is used alone. Section "ServerLayout" # The Identifier line must be present Identifier "Simple Layout" # Each Screen line specifies a Screen section name, and optionally # the relative position of other screens. The four names after # primary screen name are the screens to the top, bottom, left and right # of the primary screen. In this example, screen 2 is located to the # right of screen 1. Screen "Screen 1" "" "" "Screen 2" "" Screen "Screen 2" "" "" "" "Screen 1" # Each InputDevice line specifies an InputDevice section name and # optionally some options to specify the way the device is to be # used. Those options include "CorePointer", "CoreKeyboard" and # "SendCoreEvents". InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" EndSection [-- Attachment #3 --] # File generated by xf86config. # # Copyright (c) 1999 by The XFree86 Project, Inc. # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # Except as contained in this notice, the name of the XFree86 Project shall # not be used in advertising or otherwise to promote the sale, use or other # dealings in this Software without prior written authorization from the # XFree86 Project. # # ********************************************************************** # Refer to the XF86Config(4/5) man page for details about the format of # this file. # ********************************************************************** # ********************************************************************** # Module section -- this section is used to specify # which dynamically loadable modules to load. # ********************************************************************** # Section "Module" Load "dbe" # Double buffer extension # This loads the miscellaneous extensions module. SubSection "extmod" EndSubSection Load "type1" Load "freetype" EndSection # ********************************************************************** # Files section. This allows default font and rgb paths to be set # ********************************************************************** Section "Files" # The location of the RGB database. Note, this is the name of the # file minus the extension (like ".txt" or ".db"). There is normally # no need to change the default. RgbPath "/usr/X11R6/lib/X11/rgb" # Multiple FontPath entries are allowed (which are concatenated together), # as well as specifying multiple comma-separated entries in one FontPath # command (or a combination of both methods) # # If you don't have a floating point coprocessor and emacs, Mosaic or other # programs take long to start up, try moving the Type1 and Speedo directory # to the end of this list (or comment them out). # FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" FontPath "/home/fonts/type1/" FontPath "/usr/X11R6/lib/X11/fonts/webfonts/" # The module search path. The default path is shown here. # ModulePath "/usr/X11R6/lib/modules" EndSection # ********************************************************************** # Server flags section. # ********************************************************************** Section "ServerFlags" # Enable Energy Star features. Option "DPMS" # Uncomment this to cause a core dump at the spot where a signal is # received. This may leave the console in an unusable state, but may # provide a better stack trace in the core dump to aid in debugging # Option "NoTrapSignals" # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence # This allows clients to receive this key event. Option "DontZap" # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching # sequences. This allows clients to receive these key events. # Option "Dont Zoom" # Uncomment this to disable tuning with the xvidtune client. With # it the client can still run and fetch card and monitor attributes, # but it will not be allowed to change them. If it tries it will # receive a protocol error. # Option "DisableVidModeExtension" # Uncomment this to enable the use of a non-local xvidtune client. # Option "AllowNonLocalXvidtune" # Uncomment this to disable dynamically modifying the input device # (mouse and keyboard) settings. # Option "DisableModInDev" # Uncomment this to enable the use of a non-local client to # change the keyboard or mouse settings (currently only xset). # Option "AllowNonLocalModInDev" EndSection # ********************************************************************** # Input devices # ********************************************************************** # ********************************************************************** # Core keyboard's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Keyboard1" Driver "kbd" # For most OSs the protocol can be omitted (it defaults to "Standard"). # When using XQUEUE (only for SVR3 and SVR4, but not Solaris), # uncomment the following line. # Option "Protocol" "Xqueue" Option "AutoRepeat" "500 30" # Specify which keyboard LEDs can be user-controlled (eg, with xset(1)) # Option "Xleds" "1 2 3" # Option "LeftAlt" "Meta" # Option "RightAlt" "ModeShift" # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a non-U.S. # keyboard, you will probably want to use: # Option "XkbModel" "pc102" # If you have a US Microsoft Natural keyboard, you can use: # Option "XkbModel" "microsoft" # # Then to change the language, change the Layout setting. # For example, a german layout can be obtained with: # Option "XkbLayout" "de" # or: # Option "XkbLayout" "de" # Option "XkbVariant" "nodeadkeys" # # If you'd like to switch the positions of your capslock and # control keys, use: # Option "XkbOptions" "ctrl:swapcaps" # These are the default XKB settings for XFree86 # Option "XkbRules" "xfree86" # Option "XkbModel" "pc101" # Option "XkbLayout" "us" # Option "XkbVariant" "" # Option "XkbOptions" "" # Option "XkbDisable" Option "XkbRules" "xfree86" Option "XkbModel" "pc104" Option "XkbLayout" "us" EndSection # ********************************************************************** # Core Pointer's InputDevice section # ********************************************************************** Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "PS/2" Option "Device" "/dev/psm0" EndSection # ********************************************************************** # Monitor section # ********************************************************************** # Any number of monitor sections may be present Section "Monitor" Identifier "ViewSonic P810" HorizSync 30-95 VertRefresh 50-160 EndSection Section "Monitor" Identifier "Gateway EV500" HorizSync 30-69 VertRefresh 47-100 EndSection # ********************************************************************** # Graphics device section # ********************************************************************** # Any number of graphics device sections may be present # Standard VGA Device: Section "Device" Identifier "Standard VGA" VendorName "Unknown" BoardName "Unknown" # The chipset line is optional in most cases. It can be used to override # the driver's chipset detection, and should not normally be specified. # Chipset "generic" # The Driver line must be present. When using run-time loadable driver # modules, this line instructs the server to load the specified driver # module. Even when not using loadable driver modules, this line # indicates which driver should interpret the information in this section. Driver "vga" # The BusID line is used to specify which of possibly multiple devices # this section is intended for. When this line isn't present, a device # section can only match up with the primary video device. For PCI # devices a line like the following could be used. This line should not # normally be included unless there is more than one video device # intalled. # BusID "PCI:0:10:0" # VideoRam 256 # Clocks 25.2 28.3 EndSection # Device configured by xf86config: Section "Device" Identifier "unknown nvidia TNT2 card" Driver "nv" BusID "PCI:1:0:0" EndSection Section "Device" Identifier "ATI Mach 64" Driver "ati" BusID "PCI:0:17:0" EndSection # ********************************************************************** # Screen sections # ********************************************************************** # Any number of screen sections may be present. Each describes # the configuration of a single screen. A single specific screen section # may be specified from the X server command line with the "-screen" # option. Section "Screen" Identifier "Screen 1" Device "unknown nvidia TNT2 card" Monitor "ViewSonic P810" DefaultDepth 24 Subsection "Display" Depth 24 Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480" "544x352" "536x344" "480x288" "384x288" "352x288" "352x280" "352x240" "320x240" ViewPort 0 0 EndSubsection EndSection Section "Screen" Identifier "Screen 2" Device "ATI Mach 64" Monitor "Gateway EV500" DefaultDepth 24 Subsection "Display" Depth 24 Modes "1024x768" "800x600" "640x480" "544x352" "536x344" "480x288" "384x288" "352x288" "352x280" "352x240" "320x240" ViewPort 0 0 EndSubsection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** # Any number of ServerLayout sections may be present. Each describes # the way multiple screens are organised. A specific ServerLayout # section may be specified from the X server command line with the # "-layout" option. In the absence of this, the first section is used. # When now ServerLayout section is present, the first Screen section # is used alone. Section "ServerLayout" # The Identifier line must be present Identifier "Simple Layout" # Each Screen line specifies a Screen section name, and optionally # the relative position of other screens. The four names after # primary screen name are the screens to the top, bottom, left and right # of the primary screen. In this example, screen 2 is located to the # right of screen 1. Screen "Screen 1" "" "" "Screen 2" "" Screen "Screen 2" "" "" "" "Screen 1" # Each InputDevice line specifies an InputDevice section name and # optionally some options to specify the way the device is to be # used. Those options include "CorePointer", "CoreKeyboard" and # "SendCoreEvents". InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" EndSection [-- Attachment #4 --] XFree86 Version 4.4.0 Release Date: 29 February 2004 X Protocol Version 11, Revision 0, Release 6.6 Build Operating System: FreeBSD 5.3 i386 [ELF] Current Operating System: FreeBSD guru.mired.org 5.3-STABLE FreeBSD 5.3-STABLE #13: Fri Dec 17 18:32:15 CST 2004 mwm@guru.mired.org:/usr/src/sys/i386/compile/GURU i386 Build Date: 18 January 2005 Changelog Date: 29 February 2004 Before reporting problems, check http://www.XFree86.Org/ to make sure that you have the latest version. Module Loader present 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: Tue Jan 18 20:37:51 2005 (==) Using config file: "/etc/X11/XF86Config" (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "ViewSonic P810" (**) | |-->Device "Diamond Viper 550" (**) |-->Screen "Screen 2" (1) (**) | |-->Monitor "Gateway EV500" (**) | |-->Device "ATI Mach 64" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xfree86" (**) XKB: rules: "xfree86" (**) Option "XkbModel" "pc104" (**) XKB: model: "pc104" (**) Option "XkbLayout" "us" (**) XKB: layout: "us" (**) Option "XkbOptions" "ctrl:nocaps" (**) XKB: options: "ctrl:nocaps" (==) Keyboard: CustomKeycode disabled (WW) The directory "/usr/X11R6/lib/X11/fonts/webfonts/" does not exist. Entry deleted from font path. (**) FontPath set to "/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/,/home/fonts/type1/" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (**) Option "DontZap" (II) Module ABI versions: XFree86 ANSI C Emulation: 0.2 XFree86 Video Driver: 0.7 XFree86 XInput driver : 0.4 XFree86 Server Extension : 0.2 XFree86 Font Renderer : 0.4 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.4.0, 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.4.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.7 (--) Using syscons driver with X support (version 2.0) (--) using VT number 2 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 1039,0735 card 0000,0000 rev 01 class 06,00,00 hdr 80 (II) PCI: 00:01:0: chip 1039,0001 card 0000,0000 rev 00 class 06,04,00 hdr 01 (II) PCI: 00:02:0: chip 1039,0008 card 0000,0000 rev 00 class 06,01,00 hdr 80 (II) PCI: 00:02:2: chip 1039,7001 card 1019,0a14 rev 07 class 0c,03,10 hdr 00 (II) PCI: 00:02:3: chip 1039,7001 card 1019,0a14 rev 07 class 0c,03,10 hdr 00 (II) PCI: 00:02:5: chip 1039,5513 card 1039,5513 rev d0 class 01,01,80 hdr 80 (II) PCI: 00:02:7: chip 1039,7012 card 1019,0a14 rev a0 class 04,01,00 hdr 00 (II) PCI: 00:03:0: chip 1039,0900 card 1019,0a14 rev 90 class 02,00,00 hdr 00 (II) PCI: 00:09:0: chip 1274,1371 card 1274,1371 rev 06 class 04,01,00 hdr 00 (II) PCI: 00:0b:0: chip 109e,036e card 0070,13eb rev 02 class 04,00,00 hdr 80 (II) PCI: 00:0b:1: chip 109e,0878 card 0070,13eb rev 02 class 04,80,00 hdr 80 (II) PCI: 00:0d:0: chip 9004,8178 card 9004,7881 rev 01 class 01,00,00 hdr 00 (II) PCI: 00:0f:0: chip 9004,5078 card 9004,7850 rev 03 class 01,00,00 hdr 00 (II) PCI: 00:11:0: chip 1002,4756 card 1002,0084 rev 7a class 03,00,00 hdr 00 (II) PCI: 01:00:0: chip 10de,0020 card 1092,5802 rev 04 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,1), 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-PCI bridge: (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set) (II) Bus 1 non-prefetchable memory range: [0] -1 0 0xcde00000 - 0xcfefffff (0x2100000) MX[B] (II) Bus 1 prefetchable memory range: [0] -1 0 0xc9c00000 - 0xcbcfffff (0x2100000) MX[B] (II) PCI-to-ISA bridge: (II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set) (!!) More than one primary device found (--) PCI: (0:11:0) Brooktree Corporation Bt878 Video Capture rev 2, Mem @ 0xcddfe000/12 (--) PCI: (0:17:0) ATI Technologies Inc 3D Rage IIC 215IIC [Mach64 GT IIC] rev 122, Mem @ 0xcc000000/24, 0xcfffa000/12, I/O @ 0xc400/8, BIOS @ 0xcffa0000/17 (--) PCI: (1:0:0) nVidia Corporation NV4 [RIVA TNT] rev 4, Mem @ 0xce000000/24, 0xca000000/24, BIOS @ 0xcfef0000/16 (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) PCI Memory resource overlap reduced 0xd0000000 from 0xdfffffff to 0xcfffffff (II) Active PCI resource ranges: [0] -1 0 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [1] -1 0 0xcfffc000 - 0xcfffffff (0x4000) MX[B]E [2] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [3] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [4] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [5] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [6] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [7] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [8] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [9] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [11] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [12] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [13] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [14] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [15] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [16] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [17] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [18] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [19] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) Inactive PCI resource ranges: [0] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [1] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E (II) PCI Memory resource overlap reduced 0xcfffc000 from 0xcfffffff to 0xcfffcfff (II) Active PCI resource ranges after removing overlaps: [0] -1 0 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [1] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [2] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [3] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [4] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [5] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [6] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [7] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [8] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [9] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [11] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [12] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [13] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [14] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [15] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [16] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [17] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [18] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [19] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) Inactive PCI resource ranges after removing overlaps: [0] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [1] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E (II) OS-reported resource ranges after removing overlaps with PCI: [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) All system 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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [22] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [23] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [24] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [25] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [27] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [28] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) LoadModule: "dbe" (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.4.0, 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: "extmod" (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.4.0, 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: "type1" (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="The XFree86 Project" compiled for 4.4.0, 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: "freetype" (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a (II) Module freetype: vendor="The XFree86 Project & the After X-TT Project" compiled for 4.4.0, module version = 2.1.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.4 (II) Loading font FreeType (II) LoadModule: "nv" (II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o (II) Module nv: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.0.1 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.7 (II) LoadModule: "ati" (II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o (II) Module ati: vendor="The XFree86 Project" compiled for 4.4.0, module version = 6.5.6 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.7 (II) LoadModule: "mouse" (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.0.0 Module class: XFree86 XInput Driver ABI class: XFree86 XInput driver, version 0.4 (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2, Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64, Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400, GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go, GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra, Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420, GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go, GeForce4 420 Go 32M, GeForce4 460 Go, GeForce4 440 Go 64M, GeForce4 410 Go 16M, Quadro4 500 GoGL, Quadro4 550 XGL, Quadro4 NVS, GeForce4 MX 440 with AGP8X, GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL, Quadro4 280 NVS, Quadro4 380 XGL, GeForce4 MX Integrated GPU, GeForce3, GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600, GeForce4 Ti 4400, 0x0252, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL, Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X, GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL, Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra, GeForce FX 5800, Quadro FX 2000, Quadro FX 1000, GeForce FX 5600 Ultra, GeForce FX 5600, 0x0313, GeForce FX 5600SE, 0x0316, 0x0317, GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700, 0x031D, 0x031E, 0x031F, GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200, GeForce FX 5200SE, GeForce FX Go5200, GeForce FX Go5250, GeForce FX Go5200 32M/64M, 0x0329, Quadro NVS 280 PCI, Quadro FX 500, GeForce FX Go5300, GeForce FX Go5100, 0x032F, GeForce FX 5900 Ultra, GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra, 0x0334, Quadro FX 3000, GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE, GeForce FX 5700VE, 0x0345, GeForce FX Go5700, GeForce FX Go5700, 0x0349, 0x034B, Quadro FX Go1000, Quadro FX 1100, 0x034F (II) ATI: ATI driver (version 6.5.6) for chipsets: ati, ativga (II) R128: Driver for ATI Rage 128 chipsets: ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP), ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP), ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP), ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI), ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP), ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP), ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP), ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP), ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP), ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI), ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI), ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP), ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP), ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP), ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP), ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI), ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP), ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP), ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP), ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP), ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP), ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP), ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?), ATI Rage 128 Pro ULTRA TU (AGP?) (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP), ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI), ATI Radeon Mobility M7 LW (AGP), ATI Mobility FireGL 7800 M7 LX (AGP), ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon IGP330M/340M/350M (U2) 4337, ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437, ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP), ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI), ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI), ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP), ATI Radeon Mobility 9000 (M9) Lf (AGP), ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9100 IGP (A5) 5834, ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon 9200PRO 5960 (AGP), ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP), ATI Radeon 9200SE 5964 (AGP), ATI Radeon Mobility 9200 (M9+) 5C61 (AGP), ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP), ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9700 NF (AGP), ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP), ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI FireGL RV360 AV (AGP), ATI Radeon Mobility 9600 (M10) NP (AGP), ATI Radeon Mobility 9600 (M10) NQ (AGP), ATI Radeon Mobility 9600 (M11) NR (AGP), ATI Radeon Mobility 9600 (M10) NS (AGP), ATI FireGL Mobility T2 (M10) NT (AGP), ATI FireGL Mobility T2 (M11) NV (AGP), ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP), ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP) (II) Primary Device is: (--) Chipset RIVA TNT found (II) resource ranges after xf86ClaimFixedResources() call: [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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [22] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [23] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [24] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [25] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [27] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [28] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) ATI: Candidate "Device" section "ATI Mach 64". (II) ATI: Unshared VGA not probed. (II) ATI: Shared PCI/AGP Mach64 in slot 0:17:0 detected. (II) ATI: Shared PCI/AGP Mach64 in slot 0:17:0 assigned to active "Device" section "ATI Mach 64". (II) resource ranges after xf86ClaimFixedResources() call: [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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [22] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [23] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [24] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [25] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [27] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [28] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) Loading sub module "atimisc" (II) LoadModule: "atimisc" (II) Loading /usr/X11R6/lib/modules/drivers/atimisc_drv.o (II) Module atimisc: vendor="The XFree86 Project" compiled for 4.4.0, module version = 6.5.6 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.7 (II) resource ranges after probing: [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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [22] 1 0 0x000a0000 - 0x000affff (0x10000) MS[B] [23] 1 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [24] 1 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [25] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [26] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [27] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [28] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [29] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [30] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [31] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [32] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [33] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [34] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] [37] 1 0 0x000003b0 - 0x000003bb (0xc) IS[B] [38] 1 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Setting vga for screen 1. (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.7 (II) NV(0): Initializing int10 (==) NV(0): Write-combining range (0xa0000,0x20000) was already clear (==) NV(0): Write-combining range (0xc0000,0x40000) was already clear (II) Truncating PCI BIOS Length to 34816 (--) NV(0): Chipset: "RIVA TNT" (**) NV(0): Depth 24, (--) framebuffer bpp 32 (==) NV(0): RGB weight 888 (==) NV(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.4.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.7 (==) NV(0): Using HW cursor (--) NV(0): Linear framebuffer at 0xCA000000 (--) NV(0): MMIO registers at 0xCE000000 (==) NV(0): Write-combining range (0xce000000,0x1000000) was already clear (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Loading /usr/X11R6/lib/modules/libi2c.a (II) Module i2c: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.2.0 ABI class: XFree86 Video Driver, version 0.7 (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.7 (II) NV(0): I2C bus "DDC" initialized. (II) NV(0): Probing for EDID on I2C bus A... (II) NV(0): I2C device "DDC:ddc2" registered at address 0xA0. (II) NV(0): I2C device "DDC:ddc2" removed. (II) NV(0): ... none found (--) NV(0): HW is currently programmed for CRT (II) NV(0): Using CRT on CRTC 0 (--) NV(0): VideoRAM: 16384 kBytes (==) NV(0): Using gamma correction (1.0, 1.0, 1.0) (II) NV(0): ViewSonic P810: Using hsync range of 30.00-95.00 kHz (II) NV(0): ViewSonic P810: Using vrefresh range of 50.00-160.00 Hz (II) NV(0): Clock range: 12.00 to 350.00 MHz (II) NV(0): Not using default mode "1600x1200" (hsync out of range) (II) NV(0): Not using default mode "800x600" (hsync out of range) (II) NV(0): Not using default mode "1792x1344" (hsync out of range) (II) NV(0): Not using default mode "896x672" (hsync out of range) (II) NV(0): Not using default mode "1856x1392" (hsync out of range) (II) NV(0): Not using default mode "928x696" (hsync out of range) (II) NV(0): Not using default mode "1920x1440" (hsync out of range) (II) NV(0): Not using default mode "960x720" (hsync out of range) (II) NV(0): Not using default mode "1920x1440" (hsync out of range) (II) NV(0): Not using default mode "960x720" (hsync out of range) (II) NV(0): Not using default mode "2048x1536" (width requires unsupported line pitch) (II) NV(0): Not using default mode "2048x1536" (width requires unsupported line pitch) (II) NV(0): Not using default mode "1024x768" (hsync out of range) (II) NV(0): Not using default mode "2048x1536" (width requires unsupported line pitch) (II) NV(0): Not using default mode "1024x768" (hsync out of range) (II) NV(0): Not using mode "544x352" (no mode of this name) (II) NV(0): Not using mode "536x344" (no mode of this name) (II) NV(0): Not using mode "480x288" (no mode of this name) (II) NV(0): Not using mode "384x288" (no mode of this name) (II) NV(0): Not using mode "352x288" (no mode of this name) (II) NV(0): Not using mode "352x280" (no mode of this name) (II) NV(0): Not using mode "352x240" (no mode of this name) (II) NV(0): Not using default mode "1920x1440" (width too large for virtual size) (II) NV(0): Not using default mode "1856x1392" (width too large for virtual size) (II) NV(0): Not using default mode "1792x1344" (width too large for virtual size) (--) NV(0): Virtual size is 1600x1200 (pitch 1600) (**) NV(0): *Default mode "1600x1200": 202.5 MHz, 93.8 kHz, 75.0 Hz (II) NV(0): Modeline "1600x1200" 202.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): *Default mode "1280x1024": 157.5 MHz, 91.1 kHz, 85.0 Hz (II) NV(0): Modeline "1280x1024" 157.50 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync (**) NV(0): *Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz (II) NV(0): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (**) NV(0): *Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz (II) NV(0): Modeline "800x600" 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (**) NV(0): *Default mode "640x480": 74.2 MHz, 85.9 kHz, 85.1 Hz (D) (II) NV(0): Modeline "640x480" 74.25 640 672 752 864 480 480 482 505 doublescan +hsync +vsync (**) NV(0): *Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D) (II) NV(0): Modeline "320x240" 18.00 320 348 376 416 240 240 242 254 doublescan -hsync -vsync (**) NV(0): Default mode "1600x1200": 189.0 MHz, 87.5 kHz, 70.0 Hz (II) NV(0): Modeline "1600x1200" 189.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): Default mode "1600x1200": 175.5 MHz, 81.2 kHz, 65.0 Hz (II) NV(0): Modeline "1600x1200" 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): Default mode "1600x1200": 162.0 MHz, 75.0 kHz, 60.0 Hz (II) NV(0): Modeline "1600x1200" 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): Default mode "1400x1050": 155.8 MHz, 81.5 kHz, 74.8 Hz (II) NV(0): Modeline "1400x1050" 155.80 1400 1464 1784 1912 1050 1052 1064 1090 +hsync +vsync (**) NV(0): Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz (II) NV(0): Modeline "1400x1050" 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (**) NV(0): Default mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz (II) NV(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (**) NV(0): Default mode "1280x1024": 108.0 MHz, 64.0 kHz, 60.0 Hz (II) NV(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (**) NV(0): Default mode "1280x960": 148.5 MHz, 85.9 kHz, 85.0 Hz (II) NV(0): Modeline "1280x960" 148.50 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync (**) NV(0): Default mode "1280x960": 108.0 MHz, 60.0 kHz, 60.0 Hz (II) NV(0): Modeline "1280x960" 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (**) NV(0): Default mode "1152x864": 108.0 MHz, 67.5 kHz, 75.0 Hz (II) NV(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (**) NV(0): Default mode "1152x768": 65.0 MHz, 44.2 kHz, 54.8 Hz (II) NV(0): Modeline "1152x768" 65.00 1152 1178 1314 1472 768 771 777 806 +hsync +vsync (**) NV(0): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz (II) NV(0): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (**) NV(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz (II) NV(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (**) NV(0): Default mode "1024x768": 133.5 MHz, 95.3 kHz, 60.0 Hz (D) (II) NV(0): Modeline "1024x768" 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (**) NV(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz (II) NV(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (**) NV(0): Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I) (II) NV(0): Modeline "1024x768" 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (**) NV(0): Default mode "960x720": 117.0 MHz, 90.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "960x720" 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (**) NV(0): Default mode "928x696": 109.2 MHz, 86.4 kHz, 60.1 Hz (D) (II) NV(0): Modeline "928x696" 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (**) NV(0): Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D) (II) NV(0): Modeline "896x672" 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (**) NV(0): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz (II) NV(0): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (**) NV(0): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz (II) NV(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (**) NV(0): Default mode "800x600": 101.2 MHz, 93.8 kHz, 75.0 Hz (D) (II) NV(0): Modeline "800x600" 101.25 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz (II) NV(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (**) NV(0): Default mode "800x600": 94.5 MHz, 87.5 kHz, 70.0 Hz (D) (II) NV(0): Modeline "800x600" 94.50 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D) (II) NV(0): Modeline "800x600" 87.75 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz (II) NV(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (**) NV(0): Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "800x600" 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz (II) NV(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (**) NV(0): Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D) (II) NV(0): Modeline "700x525" 77.90 700 732 892 956 525 526 532 545 doublescan +hsync +vsync (**) NV(0): Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D) (II) NV(0): Modeline "700x525" 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (**) NV(0): Default mode "640x512": 78.8 MHz, 91.1 kHz, 85.0 Hz (D) (II) NV(0): Modeline "640x512" 78.75 640 672 752 864 512 512 514 536 doublescan +hsync +vsync (**) NV(0): Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D) (II) NV(0): Modeline "640x512" 67.50 640 648 720 844 512 512 514 533 doublescan +hsync +vsync (**) NV(0): Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "640x512" 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (**) NV(0): Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz (II) NV(0): Modeline "640x480" 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (**) NV(0): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz (II) NV(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (**) NV(0): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz (II) NV(0): Modeline "640x480" 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (**) NV(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz (II) NV(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (**) NV(0): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "640x480" 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (**) NV(0): Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz (II) NV(0): Modeline "720x400" 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (**) NV(0): Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) NV(0): Modeline "640x400" 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (**) NV(0): Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D) (II) NV(0): Modeline "576x432" 54.00 576 608 672 800 432 432 434 450 doublescan +hsync +vsync (**) NV(0): Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) NV(0): Modeline "640x350" 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (**) NV(0): Default mode "576x384": 32.5 MHz, 44.2 kHz, 54.8 Hz (D) (II) NV(0): Modeline "576x384" 32.50 576 589 657 736 384 385 388 403 doublescan +hsync +vsync (**) NV(0): Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D) (II) NV(0): Modeline "512x384" 47.25 512 536 584 688 384 384 386 404 doublescan +hsync +vsync (**) NV(0): Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D) (II) NV(0): Modeline "512x384" 39.40 512 520 568 656 384 384 386 400 doublescan +hsync +vsync (**) NV(0): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D) (II) NV(0): Modeline "512x384" 37.50 512 524 592 664 384 385 388 403 doublescan -hsync -vsync (**) NV(0): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D) (II) NV(0): Modeline "512x384" 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (**) NV(0): Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D) (II) NV(0): Modeline "512x384" 22.45 512 516 604 632 384 384 388 409 interlace doublescan +hsync +vsync (**) NV(0): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D) (II) NV(0): Modeline "416x312" 28.64 416 432 464 576 312 312 314 333 doublescan -hsync -vsync (**) NV(0): Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D) (II) NV(0): Modeline "400x300" 28.15 400 416 448 524 300 300 302 315 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D) (II) NV(0): Modeline "400x300" 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D) (II) NV(0): Modeline "400x300" 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D) (II) NV(0): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D) (II) NV(0): Modeline "400x300" 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (**) NV(0): Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D) (II) NV(0): Modeline "320x240" 15.75 320 328 360 420 240 240 242 250 doublescan -hsync -vsync (**) NV(0): Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D) (II) NV(0): Modeline "320x240" 15.75 320 332 352 416 240 244 245 260 doublescan -hsync -vsync (**) NV(0): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D) (II) NV(0): Modeline "320x240" 12.60 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (**) NV(0): Default mode "360x200": 17.8 MHz, 37.9 kHz, 85.0 Hz (D) (II) NV(0): Modeline "360x200" 17.75 360 378 414 468 200 200 202 223 doublescan -hsync +vsync (**) NV(0): Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) NV(0): Modeline "320x200" 15.75 320 336 368 416 200 200 202 222 doublescan -hsync +vsync (**) NV(0): Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) NV(0): Modeline "320x175" 15.75 320 336 368 416 175 191 192 222 doublescan +hsync -vsync (==) NV(0): DPI set to (75, 75) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/X11R6/lib/modules/libfb.a (II) Module fb: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.0.0 ABI class: XFree86 ANSI C Emulation, version 0.2 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/X11R6/lib/modules/libxaa.a (II) Module xaa: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.1.0 ABI class: XFree86 Video Driver, version 0.7 (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.4.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.7 (==) ATI(1): Chipset: "ati". (**) ATI(1): Depth 24, (--) framebuffer bpp 32 (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Reloading /usr/X11R6/lib/modules/libint10.a (==) ATI(1): Write-combining range (0xa0000,0x20000) was already clear (II) Truncating PCI BIOS Length to 32768 (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Reloading /usr/X11R6/lib/modules/libddc.a (II) Loading sub module "vbe" (II) LoadModule: "vbe" (II) Loading /usr/X11R6/lib/modules/libvbe.a (II) Module vbe: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.1.0 ABI class: XFree86 Video Driver, version 0.7 (II) ATI(1): VESA BIOS detected (II) ATI(1): VESA VBE Version 2.0 (II) ATI(1): VESA VBE Total Mem: 4096 kB (II) ATI(1): VESA VBE OEM: ATI MACH64 (II) ATI(1): VESA VBE OEM Software Rev: 1.0 (II) ATI(1): VESA VBE OEM Vendor: ATI Technologies Inc. (II) ATI(1): VESA VBE OEM Product: MACH64GT (II) ATI(1): VESA VBE OEM Product Rev: 01.00 (II) ATI(1): VESA VBE DDC supported (II) ATI(1): VESA VBE DDC Level none (II) ATI(1): VESA VBE DDC transfer in appr. 2 sec. (II) ATI(1): VESA VBE DDC read failed (==) ATI(1): Write-combining range (0xa0000,0x10000) was already clear (==) ATI(1): Write-combining range (0xcfffa000,0x1000) was already clear (II) ATI(1): BIOS Data: BIOSSize=0x8000, ROMTable=0x0100. (II) ATI(1): BIOS Data: ClockTable=0x071E, FrequencyTable=0x06F8. (II) ATI(1): BIOS Data: LCDTable=0x0000, LCDPanelInfo=0x0000. (II) ATI(1): BIOS Data: VideoTable=0x0000, HardwareTable=0x014A. (II) ATI(1): BIOS Data: I2CType=0x0F, Tuner=0x00, Decoder=0x00, Audio=0x0F. (--) ATI(1): ATI 3D Rage IIc graphics controller detected. (--) ATI(1): Chip type 4756 "GV", version 2, foundry UMC, class 0, revision 0x01. (--) ATI(1): PCI bus interface detected; block I/O base is 0xC400. (--) ATI(1): ATI Mach64 adapter detected. (!!) ATI(1): For information on using the multimedia capabilities of this adapter, please see http://gatos.sf.net. (--) ATI(1): Internal RAMDAC (subtype 1) detected. (==) ATI(1): RGB weight 888 (==) ATI(1): Default visual is TrueColor (==) ATI(1): Using gamma correction (1.0, 1.0, 1.0) (II) ATI(1): Using Mach64 accelerator CRTC. (II) ATI(1): Storing hardware cursor image at 0xCC3FFC00. (II) ATI(1): Using 8 MB linear aperture at 0xCC000000. (!!) ATI(1): Virtual resolutions will be limited to 4095 kB due to linear aperture size and/or placement of hardware cursor image area. (II) ATI(1): Using Block 0 MMIO aperture at 0xCFFFA400. (II) ATI(1): Using Block 1 MMIO aperture at 0xCFFFA000. (==) ATI(1): Write-combining range (0xa0000,0x10000) was already clear (==) ATI(1): Write-combining range (0xcc000000,0x400000) (==) ATI(1): Write-combining range (0xcfffa000,0x1000) was already clear (II) ATI(1): MMIO write caching enabled. (--) ATI(1): 4096 kB of SDRAM (1:1) detected (using 4095 kB). (WW) ATI(1): Cannot shadow an accelerated frame buffer. (II) ATI(1): Engine XCLK 99.765 MHz; Refresh rate code 7. (--) ATI(1): Internal programmable clock generator detected. (--) ATI(1): Reference clock 157.5/11 (14.318) MHz. (II) ATI(1): Gateway EV500: Using hsync range of 30.00-69.00 kHz (II) ATI(1): Gateway EV500: Using vrefresh range of 47.00-100.00 Hz (II) ATI(1): Maximum clock: 199.00 MHz (II) ATI(1): Not using default mode "1280x960" (insufficient memory for mode) (II) ATI(1): Not using default mode "1280x960" (insufficient memory for mode) (II) ATI(1): Not using default mode "640x480" (hsync out of range) (II) ATI(1): Not using default mode "1280x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "1280x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "640x512" (hsync out of range) (II) ATI(1): Not using default mode "1280x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "640x512" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1792x1344" (insufficient memory for mode) (II) ATI(1): Not using default mode "896x672" (hsync out of range) (II) ATI(1): Not using default mode "1792x1344" (insufficient memory for mode) (II) ATI(1): Not using default mode "896x672" (hsync out of range) (II) ATI(1): Not using default mode "1856x1392" (insufficient memory for mode) (II) ATI(1): Not using default mode "928x696" (hsync out of range) (II) ATI(1): Not using default mode "1856x1392" (insufficient memory for mode) (II) ATI(1): Not using default mode "928x696" (hsync out of range) (II) ATI(1): Not using default mode "1920x1440" (insufficient memory for mode) (II) ATI(1): Not using default mode "960x720" (hsync out of range) (II) ATI(1): Not using default mode "1920x1440" (insufficient memory for mode) (II) ATI(1): Not using default mode "960x720" (hsync out of range) (II) ATI(1): Not using default mode "1400x1050" (insufficient memory for mode) (II) ATI(1): Not using default mode "1400x1050" (insufficient memory for mode) (II) ATI(1): Not using default mode "700x525" (hsync out of range) (II) ATI(1): Not using default mode "1600x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "1920x1440" (insufficient memory for mode) (II) ATI(1): Not using default mode "960x720" (hsync out of range) (II) ATI(1): Not using default mode "2048x1536" (insufficient memory for mode) (II) ATI(1): Not using default mode "1024x768" (hsync out of range) (II) ATI(1): Not using default mode "2048x1536" (insufficient memory for mode) (II) ATI(1): Not using default mode "1024x768" (hsync out of range) (II) ATI(1): Not using default mode "2048x1536" (insufficient memory for mode) (II) ATI(1): Not using default mode "1024x768" (hsync out of range) (II) ATI(1): Not using mode "544x352" (no mode of this name) (II) ATI(1): Not using mode "536x344" (no mode of this name) (II) ATI(1): Not using mode "480x288" (no mode of this name) (II) ATI(1): Not using mode "384x288" (no mode of this name) (II) ATI(1): Not using mode "352x288" (no mode of this name) (II) ATI(1): Not using mode "352x280" (no mode of this name) (II) ATI(1): Not using mode "352x240" (no mode of this name) (II) ATI(1): Not using default mode "1152x864" (width too large for virtual size) (II) ATI(1): Not using default mode "1152x768" (width too large for virtual size) (--) ATI(1): Virtual size is 1024x768 (pitch 1024) (**) ATI(1): *Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz (II) ATI(1): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (**) ATI(1): *Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz (II) ATI(1): Modeline "800x600" 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (**) ATI(1): *Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz (II) ATI(1): Modeline "640x480" 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (**) ATI(1): *Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D) (II) ATI(1): Modeline "320x240" 18.00 320 348 376 416 240 240 242 254 doublescan -hsync -vsync (**) ATI(1): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz (II) ATI(1): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (**) ATI(1): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz (II) ATI(1): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (**) ATI(1): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz (II) ATI(1): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (**) ATI(1): Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I) (II) ATI(1): Modeline "1024x768" 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (**) ATI(1): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz (II) ATI(1): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (**) ATI(1): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz (II) ATI(1): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (**) ATI(1): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz (II) ATI(1): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (**) ATI(1): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz (II) ATI(1): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (**) ATI(1): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz (II) ATI(1): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (**) ATI(1): Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "700x525" 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (**) ATI(1): Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "640x512" 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (**) ATI(1): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz (II) ATI(1): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (**) ATI(1): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz (II) ATI(1): Modeline "640x480" 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (**) ATI(1): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz (II) ATI(1): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (**) ATI(1): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "640x480" 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (**) ATI(1): Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz (II) ATI(1): Modeline "720x400" 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (**) ATI(1): Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) ATI(1): Modeline "640x400" 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (**) ATI(1): Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D) (II) ATI(1): Modeline "576x432" 54.00 576 608 672 800 432 432 434 450 doublescan +hsync +vsync (**) ATI(1): Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) ATI(1): Modeline "640x350" 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (**) ATI(1): Default mode "576x384": 32.5 MHz, 44.2 kHz, 54.8 Hz (D) (II) ATI(1): Modeline "576x384" 32.50 576 589 657 736 384 385 388 403 doublescan +hsync +vsync (**) ATI(1): Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D) (II) ATI(1): Modeline "512x384" 47.25 512 536 584 688 384 384 386 404 doublescan +hsync +vsync (**) ATI(1): Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D) (II) ATI(1): Modeline "512x384" 39.40 512 520 568 656 384 384 386 400 doublescan +hsync +vsync (**) ATI(1): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D) (II) ATI(1): Modeline "512x384" 37.50 512 524 592 664 384 385 388 403 doublescan -hsync -vsync (**) ATI(1): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "512x384" 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (**) ATI(1): Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D) (II) ATI(1): Modeline "512x384" 22.45 512 516 604 632 384 384 388 409 interlace doublescan +hsync +vsync (**) ATI(1): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D) (II) ATI(1): Modeline "416x312" 28.64 416 432 464 576 312 312 314 333 doublescan -hsync -vsync (**) ATI(1): Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D) (II) ATI(1): Modeline "400x300" 28.15 400 416 448 524 300 300 302 315 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D) (II) ATI(1): Modeline "400x300" 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D) (II) ATI(1): Modeline "400x300" 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D) (II) ATI(1): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D) (II) ATI(1): Modeline "400x300" 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (**) ATI(1): Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D) (II) ATI(1): Modeline "320x240" 15.75 320 328 360 420 240 240 242 250 doublescan -hsync -vsync (**) ATI(1): Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D) (II) ATI(1): Modeline "320x240" 15.75 320 332 352 416 240 244 245 260 doublescan -hsync -vsync (**) ATI(1): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D) (II) ATI(1): Modeline "320x240" 12.60 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (**) ATI(1): Default mode "360x200": 17.8 MHz, 37.9 kHz, 85.0 Hz (D) (II) ATI(1): Modeline "360x200" 17.75 360 378 414 468 200 200 202 223 doublescan -hsync +vsync (**) ATI(1): Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) ATI(1): Modeline "320x200" 15.75 320 336 368 416 200 200 202 222 doublescan -hsync +vsync (**) ATI(1): Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) ATI(1): Modeline "320x175" 15.75 320 336 368 416 175 191 192 222 doublescan +hsync -vsync (==) ATI(1): DPI set to (75, 75) (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Reloading /usr/X11R6/lib/modules/libxaa.a (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Reloading /usr/X11R6/lib/modules/libramdac.a (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Reloading /usr/X11R6/lib/modules/libfb.a (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Reloading /usr/X11R6/lib/modules/libi2c.a (II) ATI(1): I2C bus "Mach64" initialized. (--) ATI(1): ImpacTV chip ID 0x8A detected. (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? Yes, I do. (II) LoadModule: "rac" (II) Loading /usr/X11R6/lib/modules/librac.a (II) Module rac: vendor="The XFree86 Project" compiled for 4.4.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.7 (II) resource ranges after preInit: [0] 1 0 0xcfffa000 - 0xcfffafff (0x1000) MS[B] [1] 1 0 0xcc000000 - 0xccffffff (0x1000000) MS[B] [2] 0 0 0xca000000 - 0xcaffffff (0x1000000) MX[B] [3] 0 0 0xce000000 - 0xceffffff (0x1000000) MX[B] [4] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [5] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [6] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [7] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [8] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [9] -1 0 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [10] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [11] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [12] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [13] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [14] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [15] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [16] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [17] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [18] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [19] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [20] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [21] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [22] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [23] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [24] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [25] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [26] 1 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprU) [27] 1 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU) [28] 1 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprU) [29] 1 0 0x0000c400 - 0x0000c4ff (0x100) IS[B] [30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [31] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [32] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [33] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [34] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [35] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [36] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [37] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [38] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [39] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) [40] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [41] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) [42] 1 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [43] 1 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (==) NV(0): Write-combining range (0xca000000,0x1000000) (II) NV(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Scanline Image Writes Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 22 256x256 slots (==) NV(0): Backing store disabled (==) NV(0): Silken mouse enabled (==) RandR enabled (==) ATI(1): Write-combining range (0xa0000,0x10000) was already clear (==) ATI(1): Write-combining range (0xcc000000,0x400000) (==) ATI(1): Write-combining range (0xcfffa000,0x1000) was already clear (II) ATI(1): Largest offscreen areas (with overlaps): (II) ATI(1): 1024 x 255 rectangle at 0,768 (II) ATI(1): 768 x 256 rectangle at 0,768 (II) ATI(1): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Offscreen Pixmaps Setting up tile and stipple cache: 8 128x128 slots (==) ATI(1): Backing store disabled (==) ATI(1): Silken mouse enabled (==) RandR enabled (II) Entity 0 shares no resources (II) Entity 1 shares no resources (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension LBX (II) Initializing built-in extension XC-APPGROUP (II) Initializing built-in extension SECURITY (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFree86-Bigfont (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (**) Option "Protocol" "PS/2" (**) Mouse1: Device: "/dev/psm0" (**) Mouse1: Protocol: "PS/2" (**) Option "CorePointer" (**) Mouse1: Core Pointer (**) Option "Device" "/dev/psm0" (**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50 (==) Mouse1: Buttons: 3 (II) Keyboard "Keyboard1" handled by legacy driver (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (WW) fcntl(6, O_ASYNC): Inappropriate ioctl for device Could not init font path element /usr/X11R6/lib/X11/fonts/local/, removing from list! (II) 3rd Button detected: disabling emulate3Button [-- Attachment #5 --] X Window System Version 6.8.1 Release Date: 17 September 2004 X Protocol Version 11, Revision 0, Release 6.8.1 Build Operating System: FreeBSD 5.3 i386 [ELF] Current Operating System: FreeBSD guru.mired.org 5.3-STABLE FreeBSD 5.3-STABLE #13: Fri Dec 17 18:32:15 CST 2004 mwm@guru.mired.org:/usr/src/sys/i386/compile/GURU i386 Build Date: 15 January 2005 Before reporting problems, check http://wiki.X.Org to make sure that you have the latest version. Module Loader present 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/Xorg.0.log", Time: Sat Jan 15 21:00:50 2005 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "ViewSonic P810" (**) | |-->Device "unknown nvidia TNT2 card" (**) |-->Screen "Screen 2" (1) (**) | |-->Monitor "Gateway EV500" (**) | |-->Device "ATI Mach 64" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/,/home/fonts/type1/,/usr/X11R6/lib/X11/fonts/webfonts/" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (**) Option "DontZap" (II) Module ABI versions: X.Org ANSI C Emulation: 0.2 X.Org Video Driver: 0.7 X.Org XInput driver : 0.4 X.Org Server Extension : 0.2 X.Org Font Renderer : 0.4 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.4 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 ABI class: X.Org Video Driver, version 0.7 (--) Using syscons driver with X support (version 2.0) (--) using VT number 3 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 1039,0735 card 0000,0000 rev 01 class 06,00,00 hdr 80 (II) PCI: 00:01:0: chip 1039,0001 card 0000,0000 rev 00 class 06,04,00 hdr 01 (II) PCI: 00:02:0: chip 1039,0008 card 0000,0000 rev 00 class 06,01,00 hdr 80 (II) PCI: 00:02:2: chip 1039,7001 card 1019,0a14 rev 07 class 0c,03,10 hdr 00 (II) PCI: 00:02:3: chip 1039,7001 card 1019,0a14 rev 07 class 0c,03,10 hdr 00 (II) PCI: 00:02:5: chip 1039,5513 card 1039,5513 rev d0 class 01,01,80 hdr 80 (II) PCI: 00:02:7: chip 1039,7012 card 1019,0a14 rev a0 class 04,01,00 hdr 00 (II) PCI: 00:03:0: chip 1039,0900 card 1019,0a14 rev 90 class 02,00,00 hdr 00 (II) PCI: 00:09:0: chip 1274,1371 card 1274,1371 rev 06 class 04,01,00 hdr 00 (II) PCI: 00:0b:0: chip 109e,036e card 0070,13eb rev 02 class 04,00,00 hdr 80 (II) PCI: 00:0b:1: chip 109e,0878 card 0070,13eb rev 02 class 04,80,00 hdr 80 (II) PCI: 00:0d:0: chip 9004,8178 card 9004,7881 rev 01 class 01,00,00 hdr 00 (II) PCI: 00:0f:0: chip 9004,5078 card 9004,7850 rev 03 class 01,00,00 hdr 00 (II) PCI: 00:11:0: chip 1002,4756 card 1002,0084 rev 7a class 03,00,00 hdr 00 (II) PCI: 01:00:0: chip 10de,0020 card 1092,5802 rev 04 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,1), 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-PCI bridge: (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set) (II) Bus 1 non-prefetchable memory range: [0] -1 0 0xcde00000 - 0xcfefffff (0x2100000) MX[B] (II) Bus 1 prefetchable memory range: [0] -1 0 0xc9c00000 - 0xcbcfffff (0x2100000) MX[B] (II) PCI-to-ISA bridge: (II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set) (!!) More than one primary device found (--) PCI: (0:11:0) Brooktree Corporation Bt878 Video Capture rev 2, Mem @ 0xcddfe000/12 (--) PCI: (0:17:0) ATI Technologies Inc 3D Rage IIC 215IIC [Mach64 GT IIC] rev 122, Mem @ 0xcc000000/24, 0xcfffa000/12, I/O @ 0xc400/8, BIOS @ 0xcffa0000/17 (--) PCI: (1:0:0) nVidia Corporation NV4 [RIVA TNT] rev 4, Mem @ 0xce000000/24, 0xca000000/24, BIOS @ 0xcfef0000/16 (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) PCI Memory resource overlap reduced 0xd0000000 from 0xdfffffff to 0xcfffffff (II) Active PCI resource ranges: [0] -1 0 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [1] -1 0 0xcfffc000 - 0xcfffffff (0x4000) MX[B]E [2] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [3] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [4] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [5] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [6] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [7] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [8] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [9] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [11] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [12] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [13] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [14] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [15] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [16] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [17] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [18] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [19] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) Inactive PCI resource ranges: [0] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [1] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E (II) PCI Memory resource overlap reduced 0xcfffc000 from 0xcfffffff to 0xcfffcfff (II) Active PCI resource ranges after removing overlaps: [0] -1 0 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [1] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [2] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [3] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [4] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [5] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [6] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [7] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [8] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [9] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [10] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [11] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [12] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [13] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [14] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [15] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [16] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [17] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [18] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [19] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) Inactive PCI resource ranges after removing overlaps: [0] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [1] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E (II) OS-reported resource ranges after removing overlaps with PCI: [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) All system 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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [22] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [23] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [24] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [25] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [27] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [28] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) LoadModule: "dbe" (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 0.2 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org 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 TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "type1" (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.2 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.4 (II) Loading font Type1 (II) Loading font CID (II) LoadModule: "freetype" (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 6.8.1, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.4 (II) Loading font FreeType (II) LoadModule: "nv" (II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o (II) Module nv: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 0.7 (II) LoadModule: "ati" (II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o (II) Module ati: vendor="X.Org Foundation" compiled for 6.8.1, module version = 6.5.6 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 0.7 (II) LoadModule: "mouse" (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.4 (II) LoadModule: "kbd" (II) Loading /usr/X11R6/lib/modules/input/kbd_drv.o (II) Module kbd: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 0.4 (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2, Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64, Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400, GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go, GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra, Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420, GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go, GeForce4 420 Go 32M, GeForce4 460 Go, GeForce4 440 Go 64M, GeForce4 410 Go 16M, Quadro4 500 GoGL, Quadro4 550 XGL, Quadro4 NVS, GeForce4 MX 440 with AGP8X, GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL, Quadro4 280 NVS, Quadro4 380 XGL, GeForce4 MX Integrated GPU, GeForce3, GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600, GeForce4 Ti 4400, 0x0252, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL, Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X, GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL, Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra, GeForce FX 5800, Quadro FX 2000, Quadro FX 1000, GeForce FX 5600 Ultra, GeForce FX 5600, 0x0313, GeForce FX 5600SE, 0x0316, 0x0317, GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700, 0x031D, 0x031E, 0x031F, GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200, GeForce FX 5200SE, GeForce FX Go5200, GeForce FX Go5250, GeForce FX Go5200 32M/64M, 0x0329, Quadro NVS 280 PCI, Quadro FX 500, GeForce FX Go5300, GeForce FX Go5100, 0x032F, GeForce FX 5900 Ultra, GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra, 0x0334, Quadro FX 3000, GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE, GeForce FX 5700VE, 0x0345, GeForce FX Go5700, GeForce FX Go5700, 0x0349, 0x034B, Quadro FX Go1000, Quadro FX 1100, 0x034F (II) ATI: ATI driver (version 6.5.6) for chipsets: ati, ativga (II) R128: Driver for ATI Rage 128 chipsets: ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP), ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP), ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP), ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI), ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP), ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP), ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP), ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP), ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP), ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI), ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI), ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP), ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP), ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP), ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP), ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI), ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP), ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP), ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP), ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP), ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP), ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP), ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?), ATI Rage 128 Pro ULTRA TU (AGP?) (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP), ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI), ATI Radeon Mobility M7 LW (AGP), ATI Mobility FireGL 7800 M7 LX (AGP), ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon IGP330M/340M/350M (U2) 4337, ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437, ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP), ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI), ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI), ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP), ATI Radeon Mobility 9000 (M9) Lf (AGP), ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9100 IGP (A5) 5834, ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9200PRO 5960 (AGP), ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP), ATI Radeon 9200SE 5964 (AGP), ATI Radeon Mobility 9200 (M9+) 5C61 (AGP), ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP), ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9700 NF (AGP), ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP), ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI FireGL RV360 AV (AGP), ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP), ATI Radeon Mobility 9600 (M10) NQ (AGP), ATI Radeon Mobility 9600 (M11) NR (AGP), ATI Radeon Mobility 9600 (M10) NS (AGP), ATI FireGL Mobility T2 (M10) NT (AGP), ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP), ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP), ATI Radeon X600 (RV380) 3E50 (PCIE), ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE), ATI Radeon X600 (RV370) 5B62 (PCIE), ATI FireGL V3100 (RV370) 5B64 (PCIE), ATI FireGL D1100 (RV370) 5B65 (PCIE), ATI Radeon Mobility M300 (M22) 5460 (PCIE), ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP), ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), ATI Radeon Mobility 9800 (M18) JN (AGP), ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 (R423) UH (PCIE), ATI Radeon X800PRO (R423) UI (PCIE), ATI Radeon X800LE (R423) UJ (PCIE), ATI Radeon X800SE (R423) UK (PCIE), ATI FireGL V7200 (R423) UQ (PCIE), ATI FireGL V5100 (R423) UR (PCIE), ATI FireGL V7100 (R423) UT (PCIE), ATI Radeon X800XT (R423) 5D57 (PCIE) (II) Primary Device is: (--) Chipset RIVA TNT found (II) resource ranges after xf86ClaimFixedResources() call: [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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [22] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [23] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [24] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [25] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [27] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [28] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) ATI: Candidate "Device" section "ATI Mach 64". (II) ATI: Unshared VGA not probed. (II) ATI: Shared PCI/AGP Mach64 in slot 0:17:0 detected. (II) ATI: Shared PCI/AGP Mach64 in slot 0:17:0 assigned to active "Device" section "ATI Mach 64". (II) resource ranges after xf86ClaimFixedResources() call: [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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [22] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [23] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [24] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [25] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [26] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [27] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [28] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) (II) Loading sub module "atimisc" (II) LoadModule: "atimisc" (II) Loading /usr/X11R6/lib/modules/drivers/atimisc_drv.o (II) Module atimisc: vendor="X.Org Foundation" compiled for 6.8.1, module version = 6.5.6 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 0.7 (II) resource ranges after probing: [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 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [6] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [7] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [8] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [9] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [10] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [11] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [12] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [13] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [14] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [15] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [16] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [17] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [18] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [22] 1 0 0x000a0000 - 0x000affff (0x10000) MS[B] [23] 1 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [24] 1 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [25] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [26] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [27] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [28] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [29] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [30] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [31] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [32] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [33] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [34] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] [37] 1 0 0x000003b0 - 0x000003bb (0xc) IS[B] [38] 1 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Setting vga for screen 1. (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 ABI class: X.Org Video Driver, version 0.7 (II) NV(0): Initializing int10 (==) NV(0): Write-combining range (0xa0000,0x20000) was already clear (==) NV(0): Write-combining range (0xc0000,0x40000) was already clear (II) Truncating PCI BIOS Length to 34816 (--) NV(0): Chipset: "RIVA TNT" (**) NV(0): Depth 24, (--) framebuffer bpp 32 (==) NV(0): RGB weight 888 (==) NV(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="X.Org Foundation" compiled for 6.8.1, module version = 0.1.0 ABI class: X.Org Video Driver, version 0.7 (==) NV(0): Using HW cursor (--) NV(0): Linear framebuffer at 0xCA000000 (--) NV(0): MMIO registers at 0xCE000000 (==) NV(0): Write-combining range (0xce000000,0x1000000) was already clear (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Loading /usr/X11R6/lib/modules/libi2c.a (II) Module i2c: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.2.0 ABI class: X.Org Video Driver, version 0.7 (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Loading /usr/X11R6/lib/modules/libddc.a (II) Module ddc: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 ABI class: X.Org Video Driver, version 0.7 (II) NV(0): I2C bus "DDC" initialized. (II) NV(0): Probing for EDID on I2C bus A... (II) NV(0): I2C device "DDC:ddc2" registered at address 0xA0. (II) NV(0): I2C device "DDC:ddc2" removed. (II) NV(0): ... none found (--) NV(0): HW is currently programmed for CRT (II) NV(0): Using CRT on CRTC 0 (--) NV(0): VideoRAM: 16384 kBytes (==) NV(0): Using gamma correction (1.0, 1.0, 1.0) (II) NV(0): ViewSonic P810: Using hsync range of 30.00-95.00 kHz (II) NV(0): ViewSonic P810: Using vrefresh range of 50.00-160.00 Hz (II) NV(0): Clock range: 12.00 to 350.00 MHz (II) NV(0): Not using default mode "1600x1200" (hsync out of range) (II) NV(0): Not using default mode "800x600" (hsync out of range) (II) NV(0): Not using default mode "1792x1344" (hsync out of range) (II) NV(0): Not using default mode "896x672" (hsync out of range) (II) NV(0): Not using default mode "1856x1392" (hsync out of range) (II) NV(0): Not using default mode "928x696" (hsync out of range) (II) NV(0): Not using default mode "1920x1440" (hsync out of range) (II) NV(0): Not using default mode "960x720" (hsync out of range) (II) NV(0): Not using default mode "1920x1440" (hsync out of range) (II) NV(0): Not using default mode "960x720" (hsync out of range) (II) NV(0): Not using default mode "2048x1536" (width requires unsupported line pitch) (II) NV(0): Not using default mode "2048x1536" (width requires unsupported line pitch) (II) NV(0): Not using default mode "1024x768" (hsync out of range) (II) NV(0): Not using default mode "2048x1536" (width requires unsupported line pitch) (II) NV(0): Not using default mode "1024x768" (hsync out of range) (II) NV(0): Not using mode "544x352" (no mode of this name) (II) NV(0): Not using mode "536x344" (no mode of this name) (II) NV(0): Not using mode "480x288" (no mode of this name) (II) NV(0): Not using mode "384x288" (no mode of this name) (II) NV(0): Not using mode "352x288" (no mode of this name) (II) NV(0): Not using mode "352x280" (no mode of this name) (II) NV(0): Not using mode "352x240" (no mode of this name) (II) NV(0): Not using default mode "1920x1440" (width too large for virtual size) (II) NV(0): Not using default mode "1856x1392" (width too large for virtual size) (II) NV(0): Not using default mode "1792x1344" (width too large for virtual size) (--) NV(0): Virtual size is 1600x1200 (pitch 1600) (**) NV(0): *Default mode "1600x1200": 202.5 MHz, 93.8 kHz, 75.0 Hz (II) NV(0): Modeline "1600x1200" 202.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): *Default mode "1280x1024": 157.5 MHz, 91.1 kHz, 85.0 Hz (II) NV(0): Modeline "1280x1024" 157.50 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync (**) NV(0): *Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz (II) NV(0): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (**) NV(0): *Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz (II) NV(0): Modeline "800x600" 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (**) NV(0): *Default mode "640x480": 74.2 MHz, 85.9 kHz, 85.1 Hz (D) (II) NV(0): Modeline "640x480" 74.25 640 672 752 864 480 480 482 505 doublescan +hsync +vsync (**) NV(0): *Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D) (II) NV(0): Modeline "320x240" 18.00 320 348 376 416 240 240 242 254 doublescan -hsync -vsync (**) NV(0): Default mode "1600x1200": 189.0 MHz, 87.5 kHz, 70.0 Hz (II) NV(0): Modeline "1600x1200" 189.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): Default mode "1600x1200": 175.5 MHz, 81.2 kHz, 65.0 Hz (II) NV(0): Modeline "1600x1200" 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): Default mode "1600x1200": 162.0 MHz, 75.0 kHz, 60.0 Hz (II) NV(0): Modeline "1600x1200" 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (**) NV(0): Default mode "1400x1050": 155.8 MHz, 81.5 kHz, 74.8 Hz (II) NV(0): Modeline "1400x1050" 155.80 1400 1464 1784 1912 1050 1052 1064 1090 +hsync +vsync (**) NV(0): Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz (II) NV(0): Modeline "1400x1050" 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (**) NV(0): Default mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz (II) NV(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (**) NV(0): Default mode "1280x1024": 108.0 MHz, 64.0 kHz, 60.0 Hz (II) NV(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (**) NV(0): Default mode "1280x960": 148.5 MHz, 85.9 kHz, 85.0 Hz (II) NV(0): Modeline "1280x960" 148.50 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync (**) NV(0): Default mode "1280x960": 108.0 MHz, 60.0 kHz, 60.0 Hz (II) NV(0): Modeline "1280x960" 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (**) NV(0): Default mode "1152x864": 108.0 MHz, 67.5 kHz, 75.0 Hz (II) NV(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (**) NV(0): Default mode "1152x768": 65.0 MHz, 44.2 kHz, 54.8 Hz (II) NV(0): Modeline "1152x768" 65.00 1152 1178 1314 1472 768 771 777 806 +hsync +vsync (**) NV(0): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz (II) NV(0): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (**) NV(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz (II) NV(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (**) NV(0): Default mode "1024x768": 133.5 MHz, 95.3 kHz, 60.0 Hz (D) (II) NV(0): Modeline "1024x768" 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (**) NV(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz (II) NV(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (**) NV(0): Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I) (II) NV(0): Modeline "1024x768" 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (**) NV(0): Default mode "960x720": 117.0 MHz, 90.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "960x720" 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (**) NV(0): Default mode "928x696": 109.2 MHz, 86.4 kHz, 60.1 Hz (D) (II) NV(0): Modeline "928x696" 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (**) NV(0): Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D) (II) NV(0): Modeline "896x672" 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (**) NV(0): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz (II) NV(0): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (**) NV(0): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz (II) NV(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (**) NV(0): Default mode "800x600": 101.2 MHz, 93.8 kHz, 75.0 Hz (D) (II) NV(0): Modeline "800x600" 101.25 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz (II) NV(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (**) NV(0): Default mode "800x600": 94.5 MHz, 87.5 kHz, 70.0 Hz (D) (II) NV(0): Modeline "800x600" 94.50 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D) (II) NV(0): Modeline "800x600" 87.75 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz (II) NV(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (**) NV(0): Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "800x600" 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (**) NV(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz (II) NV(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (**) NV(0): Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D) (II) NV(0): Modeline "700x525" 77.90 700 732 892 956 525 526 532 545 doublescan +hsync +vsync (**) NV(0): Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D) (II) NV(0): Modeline "700x525" 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (**) NV(0): Default mode "640x512": 78.8 MHz, 91.1 kHz, 85.0 Hz (D) (II) NV(0): Modeline "640x512" 78.75 640 672 752 864 512 512 514 536 doublescan +hsync +vsync (**) NV(0): Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D) (II) NV(0): Modeline "640x512" 67.50 640 648 720 844 512 512 514 533 doublescan +hsync +vsync (**) NV(0): Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "640x512" 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (**) NV(0): Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz (II) NV(0): Modeline "640x480" 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (**) NV(0): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz (II) NV(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (**) NV(0): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz (II) NV(0): Modeline "640x480" 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (**) NV(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz (II) NV(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (**) NV(0): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D) (II) NV(0): Modeline "640x480" 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (**) NV(0): Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz (II) NV(0): Modeline "720x400" 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (**) NV(0): Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) NV(0): Modeline "640x400" 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (**) NV(0): Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D) (II) NV(0): Modeline "576x432" 54.00 576 608 672 800 432 432 434 450 doublescan +hsync +vsync (**) NV(0): Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) NV(0): Modeline "640x350" 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (**) NV(0): Default mode "576x384": 32.5 MHz, 44.2 kHz, 54.8 Hz (D) (II) NV(0): Modeline "576x384" 32.50 576 589 657 736 384 385 388 403 doublescan +hsync +vsync (**) NV(0): Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D) (II) NV(0): Modeline "512x384" 47.25 512 536 584 688 384 384 386 404 doublescan +hsync +vsync (**) NV(0): Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D) (II) NV(0): Modeline "512x384" 39.40 512 520 568 656 384 384 386 400 doublescan +hsync +vsync (**) NV(0): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D) (II) NV(0): Modeline "512x384" 37.50 512 524 592 664 384 385 388 403 doublescan -hsync -vsync (**) NV(0): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D) (II) NV(0): Modeline "512x384" 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (**) NV(0): Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D) (II) NV(0): Modeline "512x384" 22.45 512 516 604 632 384 384 388 409 interlace doublescan +hsync +vsync (**) NV(0): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D) (II) NV(0): Modeline "416x312" 28.64 416 432 464 576 312 312 314 333 doublescan -hsync -vsync (**) NV(0): Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D) (II) NV(0): Modeline "400x300" 28.15 400 416 448 524 300 300 302 315 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D) (II) NV(0): Modeline "400x300" 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D) (II) NV(0): Modeline "400x300" 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D) (II) NV(0): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (**) NV(0): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D) (II) NV(0): Modeline "400x300" 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (**) NV(0): Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D) (II) NV(0): Modeline "320x240" 15.75 320 328 360 420 240 240 242 250 doublescan -hsync -vsync (**) NV(0): Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D) (II) NV(0): Modeline "320x240" 15.75 320 332 352 416 240 244 245 260 doublescan -hsync -vsync (**) NV(0): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D) (II) NV(0): Modeline "320x240" 12.60 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (**) NV(0): Default mode "360x200": 17.8 MHz, 37.9 kHz, 85.0 Hz (D) (II) NV(0): Modeline "360x200" 17.75 360 378 414 468 200 200 202 223 doublescan -hsync +vsync (**) NV(0): Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) NV(0): Modeline "320x200" 15.75 320 336 368 416 200 200 202 222 doublescan -hsync +vsync (**) NV(0): Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) NV(0): Modeline "320x175" 15.75 320 336 368 416 175 191 192 222 doublescan +hsync -vsync (==) NV(0): DPI set to (75, 75) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/X11R6/lib/modules/libfb.a (II) Module fb: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.2 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/X11R6/lib/modules/libxaa.a (II) Module xaa: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.2.0 ABI class: X.Org Video Driver, version 0.7 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Loading /usr/X11R6/lib/modules/libramdac.a (II) Module ramdac: vendor="X.Org Foundation" compiled for 6.8.1, module version = 0.1.0 ABI class: X.Org Video Driver, version 0.7 (==) ATI(1): Chipset: "ati". (**) ATI(1): Depth 24, (--) framebuffer bpp 32 (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Reloading /usr/X11R6/lib/modules/libint10.a (==) ATI(1): Write-combining range (0xa0000,0x20000) was already clear (II) Truncating PCI BIOS Length to 32768 (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Reloading /usr/X11R6/lib/modules/libddc.a (II) Loading sub module "vbe" (II) LoadModule: "vbe" (II) Loading /usr/X11R6/lib/modules/libvbe.a (II) Module vbe: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.1.0 ABI class: X.Org Video Driver, version 0.7 (II) ATI(1): VESA BIOS detected (II) ATI(1): VESA VBE Version 2.0 (II) ATI(1): VESA VBE Total Mem: 4096 kB (II) ATI(1): VESA VBE OEM: ATI MACH64 (II) ATI(1): VESA VBE OEM Software Rev: 1.0 (II) ATI(1): VESA VBE OEM Vendor: ATI Technologies Inc. (II) ATI(1): VESA VBE OEM Product: MACH64GT (II) ATI(1): VESA VBE OEM Product Rev: 01.00 (II) ATI(1): VESA VBE DDC supported (II) ATI(1): VESA VBE DDC Level none (II) ATI(1): VESA VBE DDC transfer in appr. 2 sec. (II) ATI(1): VESA VBE DDC read failed (==) ATI(1): Write-combining range (0xa0000,0x10000) was already clear (==) ATI(1): Write-combining range (0xcfffa000,0x1000) was already clear (II) ATI(1): BIOS Data: BIOSSize=0x8000, ROMTable=0x0100. (II) ATI(1): BIOS Data: ClockTable=0x071E, FrequencyTable=0x06F8. (II) ATI(1): BIOS Data: LCDTable=0x0000, LCDPanelInfo=0x0000. (II) ATI(1): BIOS Data: VideoTable=0x0000, HardwareTable=0x014A. (II) ATI(1): BIOS Data: I2CType=0x0F, Tuner=0x00, Decoder=0x00, Audio=0x0F. (--) ATI(1): ATI 3D Rage IIc graphics controller detected. (--) ATI(1): Chip type 4756 "GV", version 2, foundry UMC, class 0, revision 0x01. (--) ATI(1): PCI bus interface detected; block I/O base is 0xC400. (--) ATI(1): ATI Mach64 adapter detected. (!!) ATI(1): For information on using the multimedia capabilities of this adapter, please see http://gatos.sf.net. (--) ATI(1): Internal RAMDAC (subtype 1) detected. (==) ATI(1): RGB weight 888 (==) ATI(1): Default visual is TrueColor (==) ATI(1): Using gamma correction (1.0, 1.0, 1.0) (II) ATI(1): Using Mach64 accelerator CRTC. (II) ATI(1): Storing hardware cursor image at 0xCC3FFC00. (II) ATI(1): Using 8 MB linear aperture at 0xCC000000. (!!) ATI(1): Virtual resolutions will be limited to 4095 kB due to linear aperture size and/or placement of hardware cursor image area. (II) ATI(1): Using Block 0 MMIO aperture at 0xCFFFA400. (II) ATI(1): Using Block 1 MMIO aperture at 0xCFFFA000. (==) ATI(1): Write-combining range (0xa0000,0x10000) was already clear (==) ATI(1): Write-combining range (0xcc000000,0x400000) (==) ATI(1): Write-combining range (0xcfffa000,0x1000) was already clear (II) ATI(1): MMIO write caching enabled. (--) ATI(1): 4096 kB of SDRAM (1:1) detected (using 4095 kB). (WW) ATI(1): Cannot shadow an accelerated frame buffer. (II) ATI(1): Engine XCLK 99.765 MHz; Refresh rate code 7. (--) ATI(1): Internal programmable clock generator detected. (--) ATI(1): Reference clock 157.5/11 (14.318) MHz. (II) ATI(1): Gateway EV500: Using hsync range of 30.00-69.00 kHz (II) ATI(1): Gateway EV500: Using vrefresh range of 47.00-100.00 Hz (II) ATI(1): Maximum clock: 199.00 MHz (II) ATI(1): Not using default mode "1280x960" (insufficient memory for mode) (II) ATI(1): Not using default mode "1280x960" (insufficient memory for mode) (II) ATI(1): Not using default mode "640x480" (hsync out of range) (II) ATI(1): Not using default mode "1280x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "1280x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "640x512" (hsync out of range) (II) ATI(1): Not using default mode "1280x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "640x512" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1600x1200" (insufficient memory for mode) (II) ATI(1): Not using default mode "800x600" (hsync out of range) (II) ATI(1): Not using default mode "1792x1344" (insufficient memory for mode) (II) ATI(1): Not using default mode "896x672" (hsync out of range) (II) ATI(1): Not using default mode "1792x1344" (insufficient memory for mode) (II) ATI(1): Not using default mode "896x672" (hsync out of range) (II) ATI(1): Not using default mode "1856x1392" (insufficient memory for mode) (II) ATI(1): Not using default mode "928x696" (hsync out of range) (II) ATI(1): Not using default mode "1856x1392" (insufficient memory for mode) (II) ATI(1): Not using default mode "928x696" (hsync out of range) (II) ATI(1): Not using default mode "1920x1440" (insufficient memory for mode) (II) ATI(1): Not using default mode "960x720" (hsync out of range) (II) ATI(1): Not using default mode "1920x1440" (insufficient memory for mode) (II) ATI(1): Not using default mode "960x720" (hsync out of range) (II) ATI(1): Not using default mode "1400x1050" (insufficient memory for mode) (II) ATI(1): Not using default mode "1400x1050" (insufficient memory for mode) (II) ATI(1): Not using default mode "700x525" (hsync out of range) (II) ATI(1): Not using default mode "1600x1024" (insufficient memory for mode) (II) ATI(1): Not using default mode "1920x1440" (insufficient memory for mode) (II) ATI(1): Not using default mode "960x720" (hsync out of range) (II) ATI(1): Not using default mode "2048x1536" (insufficient memory for mode) (II) ATI(1): Not using default mode "1024x768" (hsync out of range) (II) ATI(1): Not using default mode "2048x1536" (insufficient memory for mode) (II) ATI(1): Not using default mode "1024x768" (hsync out of range) (II) ATI(1): Not using default mode "2048x1536" (insufficient memory for mode) (II) ATI(1): Not using default mode "1024x768" (hsync out of range) (II) ATI(1): Not using mode "544x352" (no mode of this name) (II) ATI(1): Not using mode "536x344" (no mode of this name) (II) ATI(1): Not using mode "480x288" (no mode of this name) (II) ATI(1): Not using mode "384x288" (no mode of this name) (II) ATI(1): Not using mode "352x288" (no mode of this name) (II) ATI(1): Not using mode "352x280" (no mode of this name) (II) ATI(1): Not using mode "352x240" (no mode of this name) (II) ATI(1): Not using default mode "1152x864" (width too large for virtual size) (II) ATI(1): Not using default mode "1152x768" (width too large for virtual size) (--) ATI(1): Virtual size is 1024x768 (pitch 1024) (**) ATI(1): *Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz (II) ATI(1): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (**) ATI(1): *Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz (II) ATI(1): Modeline "800x600" 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (**) ATI(1): *Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz (II) ATI(1): Modeline "640x480" 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (**) ATI(1): *Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D) (II) ATI(1): Modeline "320x240" 18.00 320 348 376 416 240 240 242 254 doublescan -hsync -vsync (**) ATI(1): Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz (II) ATI(1): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (**) ATI(1): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz (II) ATI(1): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (**) ATI(1): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz (II) ATI(1): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (**) ATI(1): Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I) (II) ATI(1): Modeline "1024x768" 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (**) ATI(1): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz (II) ATI(1): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (**) ATI(1): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz (II) ATI(1): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (**) ATI(1): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz (II) ATI(1): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (**) ATI(1): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz (II) ATI(1): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (**) ATI(1): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz (II) ATI(1): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (**) ATI(1): Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "700x525" 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (**) ATI(1): Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "640x512" 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (**) ATI(1): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz (II) ATI(1): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (**) ATI(1): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz (II) ATI(1): Modeline "640x480" 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (**) ATI(1): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz (II) ATI(1): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (**) ATI(1): Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "640x480" 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (**) ATI(1): Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz (II) ATI(1): Modeline "720x400" 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (**) ATI(1): Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) ATI(1): Modeline "640x400" 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (**) ATI(1): Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D) (II) ATI(1): Modeline "576x432" 54.00 576 608 672 800 432 432 434 450 doublescan +hsync +vsync (**) ATI(1): Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz (II) ATI(1): Modeline "640x350" 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (**) ATI(1): Default mode "576x384": 32.5 MHz, 44.2 kHz, 54.8 Hz (D) (II) ATI(1): Modeline "576x384" 32.50 576 589 657 736 384 385 388 403 doublescan +hsync +vsync (**) ATI(1): Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D) (II) ATI(1): Modeline "512x384" 47.25 512 536 584 688 384 384 386 404 doublescan +hsync +vsync (**) ATI(1): Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D) (II) ATI(1): Modeline "512x384" 39.40 512 520 568 656 384 384 386 400 doublescan +hsync +vsync (**) ATI(1): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D) (II) ATI(1): Modeline "512x384" 37.50 512 524 592 664 384 385 388 403 doublescan -hsync -vsync (**) ATI(1): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D) (II) ATI(1): Modeline "512x384" 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (**) ATI(1): Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D) (II) ATI(1): Modeline "512x384" 22.45 512 516 604 632 384 384 388 409 interlace doublescan +hsync +vsync (**) ATI(1): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D) (II) ATI(1): Modeline "416x312" 28.64 416 432 464 576 312 312 314 333 doublescan -hsync -vsync (**) ATI(1): Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D) (II) ATI(1): Modeline "400x300" 28.15 400 416 448 524 300 300 302 315 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D) (II) ATI(1): Modeline "400x300" 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D) (II) ATI(1): Modeline "400x300" 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D) (II) ATI(1): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (**) ATI(1): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D) (II) ATI(1): Modeline "400x300" 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (**) ATI(1): Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D) (II) ATI(1): Modeline "320x240" 15.75 320 328 360 420 240 240 242 250 doublescan -hsync -vsync (**) ATI(1): Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D) (II) ATI(1): Modeline "320x240" 15.75 320 332 352 416 240 244 245 260 doublescan -hsync -vsync (**) ATI(1): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D) (II) ATI(1): Modeline "320x240" 12.60 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (**) ATI(1): Default mode "360x200": 17.8 MHz, 37.9 kHz, 85.0 Hz (D) (II) ATI(1): Modeline "360x200" 17.75 360 378 414 468 200 200 202 223 doublescan -hsync +vsync (**) ATI(1): Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) ATI(1): Modeline "320x200" 15.75 320 336 368 416 200 200 202 222 doublescan -hsync +vsync (**) ATI(1): Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D) (II) ATI(1): Modeline "320x175" 15.75 320 336 368 416 175 191 192 222 doublescan +hsync -vsync (==) ATI(1): DPI set to (75, 75) (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Reloading /usr/X11R6/lib/modules/libxaa.a (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Reloading /usr/X11R6/lib/modules/libramdac.a (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Reloading /usr/X11R6/lib/modules/libfb.a (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Reloading /usr/X11R6/lib/modules/libi2c.a (WW) ATI(1): I2C bus Mach64 initialisation failure. (II) ATI(1): I2C bus "Mach64" removed. (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? Yes, I do. (II) LoadModule: "rac" (II) Loading /usr/X11R6/lib/modules/librac.a (II) Module rac: vendor="X.Org Foundation" compiled for 6.8.1, module version = 1.0.0 ABI class: X.Org Video Driver, version 0.7 (II) resource ranges after preInit: [0] 1 0 0xcfffa000 - 0xcfffafff (0x1000) MS[B] [1] 1 0 0xcc000000 - 0xccffffff (0x1000000) MS[B] [2] 0 0 0xca000000 - 0xcaffffff (0x1000000) MX[B] [3] 0 0 0xce000000 - 0xceffffff (0x1000000) MX[B] [4] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [5] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [6] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [7] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [8] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [9] -1 0 0xcddff000 - 0xcddfffff (0x1000) MX[B]E [10] -1 0 0xcfffc000 - 0xcfffcfff (0x1000) MX[B]E [11] -1 0 0xcfffe000 - 0xcfffffff (0x2000) MX[B]E [12] -1 0 0xcfffd000 - 0xcfffdfff (0x1000) MX[B]E [13] -1 0 0xd0000000 - 0xcfffffff (0x0) MX[B]EO [14] -1 0 0xcfef0000 - 0xcfefffff (0x10000) MX[B](B) [15] -1 0 0xca000000 - 0xcaffffff (0x1000000) MX[B](B) [16] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[B](B) [17] -1 0 0xcffa0000 - 0xcffbffff (0x20000) MX[B](B) [18] -1 0 0xcfffa000 - 0xcfffafff (0x1000) MX[B](B) [19] -1 0 0xcc000000 - 0xccffffff (0x1000000) MX[B](B) [20] -1 0 0xcddfe000 - 0xcddfefff (0x1000) MX[B](B) [21] -1 0 0xcfffb000 - 0xcfffbfff (0x1000) MX[B]E [22] -1 0 0xcffff000 - 0xcfffffff (0x1000) MX[B]E [23] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [24] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [25] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [26] 1 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprU) [27] 1 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU) [28] 1 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprU) [29] 1 0 0x0000c400 - 0x0000c4ff (0x100) IS[B] [30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [31] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [32] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]E [33] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]E [34] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]E [35] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]E [36] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]E [37] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]E [38] -1 0 0x0000ff00 - 0x0000ffff (0x100) IX[B]E [39] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B](B) [40] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [41] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) [42] 1 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [43] 1 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (==) NV(0): Write-combining range (0xca000000,0x1000000) (II) NV(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Scanline Image Writes Offscreen Pixmaps Setting up tile and stipple cache: 32 128x128 slots 22 256x256 slots (==) NV(0): Backing store disabled (==) NV(0): Silken mouse enabled (==) RandR enabled (==) ATI(1): Write-combining range (0xa0000,0x10000) was already clear (==) ATI(1): Write-combining range (0xcc000000,0x400000) (==) ATI(1): Write-combining range (0xcfffa000,0x1000) was already clear (II) ATI(1): Largest offscreen areas (with overlaps): (II) ATI(1): 1024 x 255 rectangle at 0,768 (II) ATI(1): 768 x 256 rectangle at 0,768 (II) ATI(1): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Offscreen Pixmaps Setting up tile and stipple cache: 8 128x128 slots (==) ATI(1): Backing store disabled (==) ATI(1): Silken mouse enabled (==) RandR enabled (II) Entity 0 shares no resources (II) Entity 1 shares no resources (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-APPGROUP (II) Initializing built-in extension SECURITY (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension XFree86-Bigfont (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE (**) Option "Protocol" "PS/2" (**) Mouse1: Device: "/dev/psm0" (**) Mouse1: Protocol: "PS/2" (**) Option "CorePointer" (**) Mouse1: Core Pointer (**) Option "Device" "/dev/psm0" (==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50 (==) Mouse1: Buttons: 3 (**) Option "CoreKeyboard" (**) Keyboard1: Core Keyboard (**) Option "Protocol" "standard" (**) Keyboard1: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xfree86" (**) Keyboard1: XkbRules: "xfree86" (**) Option "XkbModel" "pc104" (**) Keyboard1: XkbModel: "pc104" (**) Option "XkbLayout" "us" (**) Keyboard1: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) Keyboard1: CustomKeycodes disabled (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD) (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (WW) fcntl(6, O_ASYNC): Inappropriate ioctl for device (II) 3rd Button detected: disabling emulate3Button (II) Screen 0 shares mem & io resources (II) Screen 1 shares mem & io resources (II) Screen 0 shares mem & io resources (II) Screen 1 shares mem & io resources [-- Attachment #6 --] Copyright (c) 1992-2004 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.3-STABLE #13: Fri Dec 17 18:32:15 CST 2004 mwm@guru.mired.org:/usr/src/sys/i386/compile/GURU Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) Processor (995.77-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x642 Stepping = 2 Features=0x183f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR> AMD Features=0xc0440000<RSVD,AMIE,DSP,3DNow!> real memory = 536870912 (512 MB) avail memory = 519987200 (495 MB) npx0: [FAST] npx0: <math processor> on motherboard npx0: INT 16 interface pcib0: <Host to PCI bridge> pcibus 0 on motherboard pir0: <PCI Interrupt Routing Table: 8 Entries> on motherboard pci0: <PCI bus> on pcib0 pcib1: <PCI-PCI bridge> at device 1.0 on pci0 pci1: <PCI bus> on pcib1 pci1: <display, VGA> at device 0.0 (no driver attached) isab0: <PCI-ISA bridge> at device 2.0 on pci0 isa0: <ISA bus> on isab0 ohci0: <SiS 5571 USB controller> mem 0xcfffd000-0xcfffdfff irq 15 at device 2.2 on pci0 ohci0: [GIANT-LOCKED] usb0: OHCI version 1.0, legacy support usb0: <SiS 5571 USB controller> on ohci0 usb0: USB revision 1.0 uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 3 ports with 3 removable, self powered umass0: Hagiwara Sys-Com SmartMedia R/W, rev 1.10/2.00, addr 2 umass0: Get Max Lun not supported (STALLED) ohci1: <SiS 5571 USB controller> mem 0xcfffe000-0xcfffefff irq 10 at device 2.3 on pci0 ohci1: [GIANT-LOCKED] usb1: OHCI version 1.0, legacy support usb1: <SiS 5571 USB controller> on ohci1 usb1: USB revision 1.0 uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 3 ports with 3 removable, self powered ulpt0: Belkin Components F5U002 Parallel printer adapter, rev 1.00/1.04, addr 2, iclass 7/1 ulpt0: using bi-directional mode pci0: <mass storage, ATA> at device 2.5 (no driver attached) pci0: <multimedia, audio> at device 2.7 (no driver attached) sis0: <SiS 900 10/100BaseTX> port 0xd000-0xd0ff mem 0xcfffc000-0xcfffcfff irq 14 at device 3.0 on pci0 miibus0: <MII bus> on sis0 rlphy0: <RTL8201L 10/100 media interface> on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sis0: Ethernet address: 00:d0:09:e4:d6:8c pcm0: <AudioPCI ES1373-B> port 0xcc00-0xcc3f irq 11 at device 9.0 on pci0 pcm0: <TriTech TR28023 AC97 Codec> pcm0: [GIANT-LOCKED] bktr0: <BrookTree 878> mem 0xcddfe000-0xcddfefff irq 10 at device 11.0 on pci0 bktr0: [GIANT-LOCKED] bktr0: Hauppauge Model 61291 D110 bktr0: Hauppauge WinCast/TV, Philips NTSC tuner, remote control. pci0: <multimedia> at device 11.1 (no driver attached) ahc0: <Adaptec 2940 Ultra SCSI adapter> port 0xdc00-0xdcff mem 0xcffff000-0xcfffffff irq 5 at device 13.0 on pci0 ahc0: [GIANT-LOCKED] aic7880: Ultra Wide Channel A, SCSI Id=7, 16/253 SCBs ahc1: <Adaptec 2902/04/10/15/20C/30C SCSI adapter> port 0xc800-0xc8ff mem 0xcfffb000-0xcfffbfff irq 15 at device 15.0 on pci0 ahc1: Host Adapter Bios disabled. Using default SCSI device parameters ahc1: [GIANT-LOCKED] aic7850: Single Channel A, SCSI Id=7, 3/253 SCBs pci0: <display, VGA> at device 17.0 (no driver attached) cpu0 on motherboard orm0: <ISA Option ROMs> at iomem 0xd0800-0xd87ff,0xc8800-0xccfff,0xc0000-0xc87ff on isa0 atkbdc0: <Keyboard controller (i8042)> at port 0x64,0x60 on isa0 atkbd0: <AT Keyboard> irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: <PS/2 Mouse> irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model Generic PS/2 mouse, device ID 0 fdc0: <Enhanced floppy controller> at port 0x3f0-0x3f5 irq 6 drq 2 on isa0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: <Parallel port> at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: <Parallel port bus> on ppc0 lpt0: <Printer> on ppbus0 lpt0: Interrupt-driven port sc0: <System console> at flags 0x100 on isa0 sc0: VGA <4 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A vga0: <Generic ISA VGA> at port 0x3b0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: <PNP0303> can't assign resources (port) unknown: <PNP0501> can't assign resources (port) unknown: <PNP0501> can't assign resources (port) unknown: <PNP0400> can't assign resources (port) unknown: <PNP0700> can't assign resources (port) unknown: <PNP0f13> can't assign resources (irq) Timecounter "TSC" frequency 995768263 Hz quality 800 Timecounters tick every 10.000 msec ipfw2 initialized, divert disabled, rule-based forwarding disabled, default to deny, logging unlimited Waiting 15 seconds for SCSI devices to settle da1 at ahc0 bus 0 target 0 lun 0 da1: <SEAGATE ST39236LW 0004> Fixed Direct Access SCSI-3 device da1: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 8761MB (17942584 512 byte sectors: 255H 63S/T 1116C) da2 at ahc0 bus 0 target 1 lun 0 da2: <SEAGATE ST39173W 5958> Fixed Direct Access SCSI-2 device da2: 40.000MB/s transfers (20.000MHz, offset 8, 16bit), Tagged Queueing Enabled da2: 8683MB (17783240 512 byte sectors: 255H 63S/T 1106C) da3 at ahc0 bus 0 target 3 lun 0 da3: <iomega jaz 1GB J.86> Removable Direct Access SCSI-2 device da3: 10.000MB/s transfers (10.000MHz, offset 15) da3: 1021MB (2091050 512 byte sectors: 64H 32S/T 1021C) cd0 at ahc0 bus 0 target 4 lun 0 cd0: <NEC CD-ROM DRIVE:466 1.26> Removable CD-ROM SCSI-2 device cd0: 20.000MB/s transfers (20.000MHz, offset 15) cd0: cd present [309787 x 2048 byte records] cd1 at ahc1 bus 0 target 5 lun 0 cd1: <MEMOREX CD-RW 8220S 1.10> Removable CD-ROM SCSI-2 device cd1: 10.000MB/s transfers (10.000MHz, offset 8) cd1: Attempt to query device size failed: NOT READY, Incompatible medium installed da0 at umass-sim0 bus 0 target 0 lun 0 da0: <HAGIWARA SmartMedia R/W 2.00> Removable Direct Access SCSI-2 device da0: 1.000MB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 Mounting root from ufs:/dev/da1ahelp
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?16877.52605.294956.783382>
