Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
2 Graphics cards plus tvout
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Fri Jun 17, 2005 9:19 pm    Post subject: 2 Graphics cards plus tvout Reply with quote

I have 2 nvidia graphics cards and I use them in a xinerama setup with the nvidia driver. This works flawlessly.
My xorg.conf looks like this:
Code:

Section "ServerLayout"
        Identifier     "Dualhead"
        Screen      0  "LeftScreen" 0 0
        Screen      1  "RightScreen" RightOf "LeftScreen"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/share/fonts/misc/"
        FontPath     "/usr/share/fonts/TTF/"
        FontPath     "/usr/share/fonts/Type1/"
        FontPath     "/usr/share/fonts/75dpi/"
        FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
        Load  "record"
        Load  "extmod"
        Load  "dbe"
        Load  "glx"
        Load  "xtrap"
        Load  "freetype"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/mouse"
        Option      "ZAxisMapping"      "4 5"
EndSection

Section "Monitor"
    Identifier  "LeftDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
    Identifier  "RightDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection


Section "Screen"
    Identifier  "LeftScreen"
    Device      "AGPNVIDIA"
    Monitor     "LeftDell"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
        Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
        Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
        Virtual 0 0
    EndSubsection
EndSection


Section "Screen"
    Identifier  "RightScreen"
    Device      "PCINVIDIA"
    Monitor     "RightDell"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
        Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
        Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
        Virtual 0 0
    EndSubsection
EndSection

Section "Device"
        Identifier  "AGPNVIDIA"
        Driver      "nvidia"
        VendorName  "nVidia Corporation"
        BoardName   "NV34 [GeForce FX 5200]"
        BusID       "PCI:2:0:0"
EndSection

Section "Device"
        Identifier  "PCINVIDIA"
        Driver      "nvidia"
        VendorName  "nVidia Corporation"
        BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
        BusID       "PCI:1:8:0"
EndSection

Section "ServerFlags"
        Option "Xinerama" "true"
EndSection

Now I also want to use the tvout on my AGP-Card but I can't get it to work. If I enable twinview either the monitor or the tv doesn't display anything. If I disable twinview and add the AGP card a second time for tvout I can't access the tv. What I want is my normal xinerama setup and just use
Code:

DISPLAY=:0.2 mplayer ...

to display videos on the tv.
Does anyone have a running setup like this? I've searched the forums but haven't found anything about 2 graphics cards + tvout. It's either one or the other :-(.
Back to top
View user's profile Send private message
alkan
Guru
Guru


Joined: 06 Aug 2004
Posts: 385
Location: kasimlar yaylasi

PostPosted: Sat Jun 18, 2005 8:09 am    Post subject: Reply with quote

You may want to add Screen 0 in the device entry for CRT and Screen 1 for the TV device section (to specify which head) as well as ConnectedMonitor TV and TVOutFormat. As I remember my setup didn't work until I added Screen into device section.
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Mon Jun 20, 2005 8:34 pm    Post subject: Reply with quote

alkan wrote:
You may want to add Screen 0 in the device entry for CRT and Screen 1 for the TV device section (to specify which head) as well as ConnectedMonitor TV and TVOutFormat. As I remember my setup didn't work until I added Screen into device section.

If I do that my left screen is distributed on the TV and the left monitor. The problem is that nvidia twinview does not play nice with xinerama.
Back to top
View user's profile Send private message
alkan
Guru
Guru


Joined: 06 Aug 2004
Posts: 385
Location: kasimlar yaylasi

PostPosted: Mon Jun 20, 2005 10:47 pm    Post subject: Reply with quote

can you post your xorg.conf when you are using LMon+RMon+Tv (not the one above, it is for two CRTs)
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Tue Jun 21, 2005 8:27 pm    Post subject: Reply with quote

alkan wrote:
can you post your xorg.conf when you are using LMon+RMon+Tv (not the one above, it is for two CRTs)

OK, this will be a long post, since I tried numerous configurations.
Here's the first:
Code:

Section "ServerLayout"
   Identifier     "Dualhead"
   Screen      0  "LeftScreen" 0 0
   Screen      1  "RightScreen" RightOf "LeftScreen"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "record"
   Load  "extmod"
   Load  "dbe"
   Load  "glx"
   Load  "xtrap"
   Load  "freetype"
   Load  "type1"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/mouse"
        Option      "ZAxisMapping"   "4 5"
EndSection

Section "Monitor"
    Identifier  "LeftDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
    Identifier  "RightDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
        Identifier      "TV-monitor"
        VendorName      "Sony"
        ModelName       "Television"
        Option       "ConnectedMonitor" "TV"
        HorizSync       30-50
        VertRefresh     60
   Option      "dpms"
EndSection

Section "Screen"
    Identifier  "LeftScreen"
    Device      "AGPNVIDIA"
    Monitor     "LeftDell"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection


Section "Screen"
    Identifier  "RightScreen"
    Device      "PCINVIDIA"
    Monitor     "RightDell"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Device"
   Identifier  "AGPNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
        Option     "ConnectedMonitor"  "TV-Monitor"
        Option     "TVStandard"      "PAL-B"
        Option     "TVOutFormat"     "SVIDEO"     
        Option     "TwinView" "on"
#        Option     "SecondMonitorHorizSync" "30-50"
#        Option     "SecondMonitorVertRefresh"    "60"
#        Option     "MetaModes" "1024x768,800x600"
#        Option     "TwinViewOrientation" "TV-0 Leftof CRT-0"
        Option     "NoTwinViewXineramaInfo" "on"
EndSection

Section "Device"
   Identifier  "PCINVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
   BusID       "PCI:1:8:0"
EndSection

Section "ServerFlags"
        Option "Xinerama" "true"
EndSection         

Result is 2 screens, I can't get anything to display on TV out.
Config 2 is the same as config 1 just without the option NoTwinViewXineramaInfo. The result is the same. Next config the same but without the TwinView option, result is the same.
The next config is with an additional screen and trying to declare the AGP graphics card twice:
Code:

Section "ServerLayout"
   Identifier     "Dualhead"
   Screen      0  "LeftScreen" 0 0
   Screen      1  "RightScreen" RightOf "LeftScreen"
        Screen      2  "TVSCREEN" Above "LeftScreen"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "record"
   Load  "extmod"
   Load  "dbe"
   Load  "glx"
   Load  "xtrap"
   Load  "freetype"
   Load  "type1"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/mouse"
        Option      "ZAxisMapping"   "4 5"
EndSection

Section "Monitor"
    Identifier  "LeftDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
    Identifier  "RightDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
        Identifier      "TV-monitor"
        VendorName      "Sony"
        ModelName       "Television"
        Option       "ConnectedMonitor" "TV"
        HorizSync       30-50
        VertRefresh     60
   Option      "dpms"
EndSection

Section "Screen"
    Identifier  "LeftScreen"
    Device      "AGPNVIDIA"
    Monitor     "LeftDell"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Screen"
    Identifier  "RightScreen"
    Device      "PCINVIDIA"
    Monitor     "RightDell"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

   #### TV SCREEN ####
Section "Screen"
       Identifier   "TVSCREEN"
       Device      "TVNVIDIA"
       Monitor      "TV-monitor"
       DefaultDepth   24
       SubSection "Display"
                Depth      24
                Modes        "800x600"
       EndSubSection
EndSection

Section "Device"
   Identifier  "AGPNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
EndSection

Section "Device"
   Identifier  "TVNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
        Option     "ConnectedMonitor"  "TV-Monitor"
        Option     "TVStandard"      "PAL-B"
        Option     "TVOutFormat"     "SVIDEO"     
EndSection


Section "Device"
   Identifier  "PCINVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
   BusID       "PCI:1:8:0"
EndSection

Section "ServerFlags"
        Option "Xinerama" "true"
EndSection         

Results in 2 screens and I can't get to the video out.
Next I tried specifying exactly what is connected to the AGP-card:
Code:

Section "ServerLayout"
   Identifier     "Dualhead"
   Screen      0  "LeftScreen" 0 0
   Screen      1  "RightScreen" RightOf "LeftScreen"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "record"
   Load  "extmod"
   Load  "dbe"
   Load  "glx"
   Load  "xtrap"
   Load  "freetype"
   Load  "type1"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/mouse"
        Option      "ZAxisMapping"   "4 5"
EndSection

Section "Monitor"
    Identifier  "LeftDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
    Identifier  "RightDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
        Identifier      "TV-monitor"
        VendorName      "Sony"
        ModelName       "Television"
        Option       "ConnectedMonitor" "TV"
        HorizSync       30-50
        VertRefresh     60
   Option      "dpms"
EndSection

Section "Screen"
    Identifier  "LeftScreen"
    Device      "AGPNVIDIA"
    Monitor     "LeftDell"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection


Section "Screen"
    Identifier  "RightScreen"
    Device      "PCINVIDIA"
    Monitor     "RightDell"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Device"
   Identifier  "AGPNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
        Option     "ConnectedMonitor"  "TV-Monitor"
        Option     "TVStandard"      "PAL-B"
        Option     "TVOutFormat"     "SVIDEO"     
        Option     "TwinView" "on"
        Option     "SecondMonitorHorizSync" "30-50"
        Option     "SecondMonitorVertRefresh"    "60"
        Option     "MetaModes" "1024x768,800x600"
        Option     "TwinViewOrientation" "TV-0 Leftof CRT-0"
        Option     "NoTwinViewXineramaInfo" "on"
EndSection

Section "Device"
   Identifier  "PCINVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
   BusID       "PCI:1:8:0"
EndSection

Section "ServerFlags"
        Option "Xinerama" "true"
EndSection         

Great, at least something changes, now I only get the right screen and I can't get at either the left or the TV :-(. Next config is the same as the last, only without NoTwinViewXineramaInfo. Result stays the same, only right screen. Then I tried turning also the Twinview option off and that led to the same right screen only result. Any ideas? BTW, maybe I use the wrong command to get something to display to video out (I try something like DISPLAY=:1 mplayer foo.avi, or DISPLAY=:0.1 mplayer foo.avi) what should I use?
Back to top
View user's profile Send private message
alkan
Guru
Guru


Joined: 06 Aug 2004
Posts: 385
Location: kasimlar yaylasi

PostPosted: Thu Jun 23, 2005 2:48 am    Post subject: Reply with quote

Here is my working xorg.conf. two nvidia graphics card, one driving a CRT, the other a CRT and a TV. No Xenarama though, But I am sure it will work if I enable.
Code:

Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "Screen0" 0 0
   Screen      1  "Screen1" RightOf "Screen0"
   Screen      2  "Screen2" LeftOf "Screen0"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/lib/X11/rgb"
   ModulePath   "/usr/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   #FontPath     "/usr/share/fonts/CID/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
   FontPath     "/usr/share/fonts/corefonts/"
   FontPath     "/usr/share/fonts/freefont/"
   FontPath     "/usr/share/fonts/sharefonts/"
   FontPath     "/usr/share/fonts/ttf-bitstream-vera/"
   FontPath     "/usr/share/fonts/intlfonts/"
EndSection

Section "Module"
   Load  "glx"
   Load  "record"
   Load  "extmod"
   Load  "dbe"
   #Load  "dri"
   Load  "xtrap"
   Load  "freetype"
   Load  "type1"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
   Option       "XkbModel" "pc104"
   #Option       "XkbLayout" "tr"
   #Option       "XkbVariant" "tr_alt"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/input/mice"
   Option      "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
   Identifier   "Monitor0"
   VendorName   "HP"
   ModelName    "MX90"
   HorizSync    30.0 - 95.0
   VertRefresh  50.0 - 150.0
        DisplaySize  360 270
   Option         "DPMS"
EndSection


Section "Monitor"
   Identifier   "Monitor1"
   VendorName   "Philips"
   ModelName    "Philips TV"
   HorizSync    30.0 - 50.0
   VertRefresh  60.0
        DisplaySize  201 151
EndSection

Section "Monitor"
   Identifier   "Monitor2"
   VendorName   "HP"
   ModelName    "MX90"
   HorizSync    30.0 - 95.0
   VertRefresh  50.0 - 150.0
        DisplaySize  360 270
   Option         "DPMS"
EndSection


Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "DigitalVibrance"       # <i>
        #Option     "NoFlip"                # [<bool>]
        #Option     "Dac8Bit"               # [<bool>]
        #Option     "NoLogo"                # [<bool>]
        #Option     "UBB"                   # [<bool>]
        #Option     "Stereo"                # <i>
        #Option     "SWcursor"              # [<bool>]
        #Option     "HWcursor"              # [<bool>]
        #Option     "VideoKey"              # <i>
        #Option     "NvAGP"                 # <i>
        #Option     "IgnoreEDID"            # [<bool>]
        #Option     "NoDDC"                 # [<bool>]
        Option     "ConnectedMonitor"  "CRT"    # <str>
        #Option     "ConnectedMonitors"     # <str>
        #Option     "TVStandard"            # <str>
        #Option     "TVOutFormat"           # <str>
        Option     "RenderAccel"           # [<bool>]
        #Option     "CursorShadow"          # [<bool>]
        #Option     "CursorShadowAlpha"     # <i>
        #Option     "CursorShadowXOffset"    # <i>
        #Option     "CursorShadowYOffset"    # <i>
        #Option     "UseEdidFreqs"          # [<bool>]
        #Option     "FlatPanelProperties"    # <str>
        #Option     "TwinView"              # [<bool>]
        #Option     "TwinViewOrientation"    # <str>
        #Option     "SecondMonitorHorizSync"    # <str>
        #Option     "SecondMonitorVertRefresh"    # <str>
        #Option     "MetaModes"             # <str>
        #Option     "UseInt10Module"        # [<bool>]
        #Option     "NoTwinViewXineramaInfo"    # [<bool>]
        #Option     "NoRenderExtension"     # [<bool>]
        #Option     "Overlay"               # [<bool>]
        #Option     "CIOverlay"             # [<bool>]
        #Option     "ForceEmulatedOverlay"    # [<bool>]
        #Option     "TransparentIndex"      # <i>
        #Option     "OverlayDefaultVisual"    # [<bool>]
        #Option     "NvEmulate"             # <i>
        #Option     "NoBandWidthTest"       # [<bool>]
        #Option     "CustomEDID-CRT-0"      # <str>
        #Option     "CustomEDID-CRT-1"      # <str>
        #Option     "CustomEDID-DFP-0"      # <str>
        #Option     "CustomEDID-DFP-1"      # <str>
        #Option     "CustomEDID-TV-0"       # <str>
        #Option     "CustomEDID-TV-1"       # <str>
        #Option     "TVOverScan"            # <f>
        #Option     "IgnoreDisplayDevices"    # <str>
        #Option     "MultisampleCompatibility"    # [<bool>]
        #Option     "RegistryDwords"        # <str>
        #Option     "RegistryBinary"        # <str>
        #Option     "NoPowerConnectorCheck"    # [<bool>]
        #Option     "AllowDFPStereo"        # [<bool>]
        #Option     "XvMCUsesTextures"      # [<bool>]
        #Option     "HorizSync"             # <str>
        #Option     "VertRefresh"           # <str>
        #Option     "AllowGLXWithComposite"    # [<bool>]
   Identifier  "Card0"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV18 [GeForce4 MX 440 AGP 8x]"
   BusID       "PCI:2:9:0"
   Screen       0
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "DigitalVibrance"       # <i>
        #Option     "NoFlip"                # [<bool>]
        #Option     "Dac8Bit"               # [<bool>]
        #Option     "NoLogo"                # [<bool>]
        #Option     "UBB"                   # [<bool>]
        #Option     "Stereo"                # <i>
        #Option     "SWcursor"              # [<bool>]
        #Option     "HWcursor"              # [<bool>]
        #Option     "VideoKey"              # <i>
        #Option     "NvAGP"                 # <i>
        #Option     "IgnoreEDID"            # [<bool>]
        #Option     "NoDDC"                 # [<bool>]
        Option     "ConnectedMonitor"  "TV"    # <str>
        #Option     "ConnectedMonitors"     # <str>
        Option     "TVStandard" "NTSC-M"           # <str>
        Option     "TVOutFormat" "COMPOSITE"          # <str>
        Option     "RenderAccel"           # [<bool>]
        #Option     "CursorShadow"          # [<bool>]
        #Option     "CursorShadowAlpha"     # <i>
        #Option     "CursorShadowXOffset"    # <i>
        #Option     "CursorShadowYOffset"    # <i>
        #Option     "UseEdidFreqs"          # [<bool>]
        #Option     "FlatPanelProperties"    # <str>
        #Option     "TwinView"              # [<bool>]
        #Option     "TwinViewOrientation"    # <str>
        #Option     "SecondMonitorHorizSync"    # <str>
        #Option     "SecondMonitorVertRefresh"    # <str>
        #Option     "MetaModes"             # <str>
        #Option     "UseInt10Module"        # [<bool>]
        #Option     "NoTwinViewXineramaInfo"    # [<bool>]
        #Option     "NoRenderExtension"     # [<bool>]
        #Option     "Overlay"               # [<bool>]
        #Option     "CIOverlay"             # [<bool>]
        #Option     "ForceEmulatedOverlay"    # [<bool>]
        #Option     "TransparentIndex"      # <i>
        #Option     "OverlayDefaultVisual"    # [<bool>]
        #Option     "NvEmulate"             # <i>
        #Option     "NoBandWidthTest"       # [<bool>]
        #Option     "CustomEDID-CRT-0"      # <str>
        #Option     "CustomEDID-CRT-1"      # <str>
        #Option     "CustomEDID-DFP-0"      # <str>
        #Option     "CustomEDID-DFP-1"      # <str>
        #Option     "CustomEDID-TV-0"       # <str>
        #Option     "CustomEDID-TV-1"       # <str>
        #Option     "TVOverScan"            # <f>
        #Option     "IgnoreDisplayDevices"    # <str>
        #Option     "MultisampleCompatibility"    # [<bool>]
        #Option     "RegistryDwords"        # <str>
        #Option     "RegistryBinary"        # <str>
        #Option     "NoPowerConnectorCheck"    # [<bool>]
        #Option     "AllowDFPStereo"        # [<bool>]
        #Option     "XvMCUsesTextures"      # [<bool>]
        #Option     "HorizSync"             # <str>
        #Option     "VertRefresh"           # <str>
        #Option     "AllowGLXWithComposite"    # [<bool>]
   Identifier  "Card1"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV18 [GeForce4 MX 440 AGP 8x]"
   BusID       "PCI:2:9:0"
   Screen        1
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "DigitalVibrance"       # <i>
        #Option     "NoFlip"                # [<bool>]
        #Option     "Dac8Bit"               # [<bool>]
        #Option     "NoLogo"                # [<bool>]
        #Option     "UBB"                   # [<bool>]
        #Option     "Stereo"                # <i>
        #Option     "SWcursor"              # [<bool>]
        #Option     "HWcursor"              # [<bool>]
        #Option     "VideoKey"              # <i>
        #Option     "NvAGP"                 # <i>
        #Option     "IgnoreEDID"            # [<bool>]
        #Option     "NoDDC"                 # [<bool>]
        Option     "ConnectedMonitor"  "CRT"    # <str>
        #Option     "ConnectedMonitors"     # <str>
        #Option     "TVStandard"            # <str>
        #Option     "TVOutFormat"           # <str>
        Option     "RenderAccel"           # [<bool>]
        #Option     "CursorShadow"          # [<bool>]
        #Option     "CursorShadowAlpha"     # <i>
        #Option     "CursorShadowXOffset"    # <i>
        #Option     "CursorShadowYOffset"    # <i>
        #Option     "UseEdidFreqs"          # [<bool>]
        #Option     "FlatPanelProperties"    # <str>
        #Option     "TwinView"              # [<bool>]
        #Option     "TwinViewOrientation"    # <str>
        #Option     "SecondMonitorHorizSync"    # <str>
        #Option     "SecondMonitorVertRefresh"    # <str>
        #Option     "MetaModes"             # <str>
        #Option     "UseInt10Module"        # [<bool>]
        #Option     "NoTwinViewXineramaInfo"    # [<bool>]
        #Option     "NoRenderExtension"     # [<bool>]
        #Option     "Overlay"               # [<bool>]
        #Option     "CIOverlay"             # [<bool>]
        #Option     "ForceEmulatedOverlay"    # [<bool>]
        #Option     "TransparentIndex"      # <i>
        #Option     "OverlayDefaultVisual"    # [<bool>]
        #Option     "NvEmulate"             # <i>
        #Option     "NoBandWidthTest"       # [<bool>]
        #Option     "CustomEDID-CRT-0"      # <str>
        #Option     "CustomEDID-CRT-1"      # <str>
        #Option     "CustomEDID-DFP-0"      # <str>
        #Option     "CustomEDID-DFP-1"      # <str>
        #Option     "CustomEDID-TV-0"       # <str>
        #Option     "CustomEDID-TV-1"       # <str>
        #Option     "TVOverScan"            # <f>
        #Option     "IgnoreDisplayDevices"    # <str>
        #Option     "MultisampleCompatibility"    # [<bool>]
        #Option     "RegistryDwords"        # <str>
        #Option     "RegistryBinary"        # <str>
        #Option     "NoPowerConnectorCheck"    # [<bool>]
        #Option     "AllowDFPStereo"        # [<bool>]
        #Option     "XvMCUsesTextures"      # [<bool>]
        #Option     "HorizSync"             # <str>
        #Option     "VertRefresh"           # <str>
        #Option     "AllowGLXWithComposite"    # [<bool>]
   Identifier  "Card2"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV18 [GeForce4 MX/MX 400]"
   BusID       "PCI:1:0:0"
   Screen       0
EndSection


Section "Screen"
   Identifier    "Screen0"
   Device        "Card0"
   Monitor       "Monitor0"
   DefaultDepth    24
   SubSection "Display"
      Depth    24
      Modes    "1280x1024"
   EndSubSection
EndSection

Section "Screen"
   Identifier    "Screen1"
   Device         "Card1"
      Monitor       "Monitor1"
   DefaultDepth    24
   SubSection "Display"
      Depth    24
      Modes    "800x600"
   EndSubSection
EndSection

Section "Screen"
   Identifier    "Screen2"
   Device        "Card2"
   Monitor       "Monitor2"
   DefaultDepth    24
   SubSection "Display"
      Depth    24
      Modes    "1280x1024"
   EndSubSection
EndSection
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Mon Jul 04, 2005 8:24 pm    Post subject: Reply with quote

alkan wrote:
Here is my working xorg.conf. two nvidia graphics card, one driving a CRT, the other a CRT and a TV. No Xenarama though, But I am sure it will work if I enable.

Thanks for your answer and sorry it took me a week to reply, real life interfered. But I could now test your setup (adapted to my config). After I started it up I could output stuff on the left monitor with
Code:

DISPLAY=:0.0 mplayer foo.avi

and to the right monitor with
Code:

DISPLAY=:0.1 mplayer foo.avi

but when I tried
Code:

DISPLAY=:0.2 mplayer foo.avi

to access the TV I got
Code:

vo: couldn't open the X11 display (:0.2)!
Error opening/initializing the selected video_out (-vo) device.

So no luck here. When I turned on xinerama I couldn' even use DISPLAY=:0.1 (which makes sense since in xinerama all monitors are one big display 0.0). I'm fresh out of ideas :-( and now I have a second question just out of interest: How do you directly access the second monitor in xinerama mode?
Back to top
View user's profile Send private message
alkan
Guru
Guru


Joined: 06 Aug 2004
Posts: 385
Location: kasimlar yaylasi

PostPosted: Tue Jul 05, 2005 12:59 am    Post subject: Reply with quote

strange, the above conf works for me. Before you try to run xinerama, what is your /var/log/Xorg.-.log files says? any error in there, It should tell why your display is not initialized. And what are the resolutions set in those log files.

For the xinerama, I am not aware of a method about how to output to an xinerama screen directly other than specifying geometry option "man xterm". You should be able to drag your window between xinerama screen.
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Tue Jul 05, 2005 4:35 pm    Post subject: Reply with quote

alkan wrote:
strange, the above conf works for me. Before you try to run xinerama, what is your /var/log/Xorg.-.log files says? any error in there, It should tell why your display is not initialized. And what are the resolutions set in those log files.

For the xinerama, I am not aware of a method about how to output to an xinerama screen directly other than specifying geometry option "man xterm". You should be able to drag your window between xinerama screen.

Oh there's one more difference in the xorg.conf files. Whenever I tried to set the Screen in Device it errors.
This is the xorg.conf that works without xinerama:
Code:

Section "ServerLayout"
   Identifier     "TripleHead"
   Screen      0  "LeftScreen" 0 0
   Screen      1  "RightScreen" RightOf "LeftScreen"
        Screen      2  "TVScreen" LeftOf "LeftScreen"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "record"
   Load  "extmod"
   Load  "dbe"
   Load  "glx"
   Load  "xtrap"
   Load  "freetype"
   Load  "type1"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/mouse"
        Option      "ZAxisMapping"   "4 5"
EndSection

Section "Monitor"
    Identifier  "LeftDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
    Identifier  "RightDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
        Identifier      "TVMonitor"
        VendorName      "Sony"
        ModelName       "Television"
        HorizSync       30-50
        VertRefresh     60
   Option      "dpms"
EndSection

Section "Screen"
    Identifier  "LeftScreen"
    Device      "AGPNVIDIA"
    Monitor     "LeftDell"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Screen"
    Identifier  "RightScreen"
    Device      "PCINVIDIA"
    Monitor     "RightDell"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Screen"
   Identifier    "TVSCREEN"
   Device        "TVNVIDIA"
   Monitor       "TVMonitor"
   SubSection "Display"
      Depth    24
      Modes    "800x600"
   EndSubSection
EndSection

Section "Device"
   Identifier  "AGPNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
#   Screen      1
EndSection

Section "Device"
   Identifier  "TVNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
        Option     "ConnectedMonitor"  "TV-Monitor"
        Option     "TVStandard"      "PAL-B"
        Option     "TVOutFormat"     "SVIDEO"
        Option     "RenderAccel"
#   Screen     2
EndSection


Section "Device"
   Identifier  "PCINVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
   BusID       "PCI:1:8:0"
#   Screen      0
EndSection

And this is the corresponding xorg.log (see next post):


Last edited by weingbz on Tue Jul 05, 2005 4:58 pm; edited 1 time in total
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Tue Jul 05, 2005 4:39 pm    Post subject: Reply with quote

(... continued)
Code:


X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.11.2 i686 [ELF]
Current Operating System: Linux amdtux 2.6.11.12 #1 Sun Jun 12 23:08:03 CEST 2005 i686
Build Date: 13 March 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: Tue Jul  5 19:01:43 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "TripleHead"
(**) |-->Screen "LeftScreen" (0)
(**) |   |-->Monitor "LeftDell"
(**) |   |-->Device "AGPNVIDIA"
(**) |-->Screen "RightScreen" (1)
(**) |   |-->Monitor "RightDell"
(**) |   |-->Device "PCINVIDIA"
(**) |-->Screen "TVSCREEN" (2)
(**) |   |-->Monitor "TVMonitor"
(**) |   |-->Device "TVNVIDIA"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(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 linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 6.8.2, 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.2, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
Using vt 7
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,01e0 card 0000,0000 rev c1 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,01eb card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,01ee card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,01ed card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:4: chip 10de,01ec card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:5: chip 10de,01ef card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:01:0: chip 10de,0080 card 1695,100f rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0084 card 1695,100f rev a1 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,0087 card 1695,100f rev a1 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,0087 card 1695,100f rev a1 class 0c,03,10 hdr 80
(II) PCI: 00:02:2: chip 10de,0088 card 1695,100f rev a2 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,008c card 1695,100f rev a3 class 06,80,00 hdr 00
(II) PCI: 00:06:0: chip 10de,008a card 1695,100e rev a1 class 04,01,00 hdr 00
(II) PCI: 00:08:0: chip 10de,008b card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,0085 card 1695,100f rev a3 class 01,01,8a hdr 00
(II) PCI: 00:0b:0: chip 10de,008e card 1695,100f rev a3 class 01,01,85 hdr 00
(II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev c1 class 06,04,00 hdr 01
(II) PCI: 01:08:0: chip 10de,002d card 10de,0006 rev 15 class 03,00,00 hdr 00
(II) PCI: 01:0c:0: chip 1095,3114 card 1695,9018 rev 02 class 01,04,00 hdr 00
(II) PCI: 01:0d:0: chip 1106,3044 card 1695,900e rev 80 class 0c,00,10 hdr 00
(II) PCI: 02:00:0: chip 10de,0322 card 10b0,0431 rev a1 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,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 1 I/O range:
   [0] -1   0   0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xec000000 - 0xedffffff (0x2000000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 2 non-prefetchable memory range:
   [0] -1   0   0xea000000 - 0xebffffff (0x2000000) MX[B]
(II) Bus 2 prefetchable memory range:
   [0] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B]
(--) PCI: (1:8:0) nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro] rev 21, Mem @ 0xec000000/24, 0xe8000000/25
(--) PCI:*(2:0:0) nVidia Corporation NV34 [GeForce FX 5200] rev 161, Mem @ 0xea000000/24, 0xe0000000/27
(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 0xd8000000 from 0xdfffffff to 0xd7ffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xed080000 - 0xed0807ff (0x800) MX[B]
   [1] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [2] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [3] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [4] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [5] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [6] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [7] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [8] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [9] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [10] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [11] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [12] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [13] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [14] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [15] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [16] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [17] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [18] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [19] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [20] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [21] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [22] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [23] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [24] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [25] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [26] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(II) Inactive PCI resource ranges:
   [0] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [1] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xed080000 - 0xed0807ff (0x800) MX[B]
   [1] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [2] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [3] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [4] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [5] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [6] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [7] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [8] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [9] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [10] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [11] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [12] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [13] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [14] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [15] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [16] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [17] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [18] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [19] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [20] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [21] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [22] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [23] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [24] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [25] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [26] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(II) Inactive PCI resource ranges after removing overlaps:
   [0] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [1] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
(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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [18] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [19] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [20] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [21] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [22] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [23] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [24] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [25] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [26] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [27] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [28] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [29] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [30] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [31] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [32] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [33] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [34] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [35] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
   compiled for 6.8.2, module version = 1.13.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 6.8.2, 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: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 6.8.2, 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: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
   compiled for 4.0.2, module version = 1.0.6629
   Module class: XFree86 Server Extension
   ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "xtrap"
(II) Loading /usr/X11R6/lib/modules/extensions/libxtrap.a
(II) Module xtrap: vendor="X.Org Foundation"
   compiled for 6.8.2, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DEC-XTRAP
(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.2, 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: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
   compiled for 6.8.2, 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: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
   compiled for 4.0.2, module version = 1.0.6629
   Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 6.8.2, 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.2, module version = 1.0.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.4
(II) NVIDIA X Driver  1.0-6629  Wed Nov  3 13:14:07 PST 2004
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 02:00:0
(WW) NVIDIA: More than one matching Device section for instances
   (BusID: PCI:2:0:0) found: TVNVIDIA
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU 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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [18] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [19] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [20] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [21] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [22] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [23] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [24] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [25] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [26] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [27] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [28] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [29] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [30] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [31] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [32] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [33] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [34] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [35] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [18] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [19] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [20] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [21] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [22] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [23] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [24] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [25] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [26] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [27] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [28] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [29] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [30] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [31] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [32] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [33] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [34] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [35] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [18] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [19] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [20] 1   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [21] 1   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [22] 1   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [23] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [24] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [25] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [26] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [27] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [28] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [29] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [30] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [31] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [32] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [33] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [34] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [35] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [36] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [37] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [38] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [39] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [40] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [41] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
   [42] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [43] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
   [44] 1   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [45] 1   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(--) NVIDIA(0): Linear framebuffer at 0xE0000000
(--) NVIDIA(0): MMIO registers at 0xEA000000
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce FX 5200
(--) NVIDIA(0): VideoBIOS: 04.34.20.87.00
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(II) NVIDIA(0): Detected AGP rate: 8X
(--) NVIDIA(0): VideoRAM: 131072 kBytes
(II) NVIDIA(0): Connected display device(s): CRT-1, TV-0
(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0):      using first display
(--) NVIDIA(0): Display device CRT-1: maximum pixel clock at  8 bpp: 400 MHz
(--) NVIDIA(0): Display device CRT-1: maximum pixel clock at 16 bpp: 400 MHz
(--) NVIDIA(0): Display device CRT-1: maximum pixel clock at 32 bpp: 400 MHz
(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.2, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
   compiled for 6.8.2, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) NVIDIA(0): Primary V_BIOS segment is: 0xc000
(II) NVIDIA(0): LeftDell: Using hsync range of 30.00-85.00 kHz
(II) NVIDIA(0): LeftDell: Using vrefresh range of 48.00-120.00 Hz
(II) NVIDIA(0): Clock range:  12.00 to 400.00 MHz
(WW) (1024x768/100Hz,LeftDell) mode clock 115.5MHz exceeds DDC maximum 0MHz
(WW) (640x350,LeftDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x175,LeftDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (640x400,LeftDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x200,LeftDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (720x400,LeftDell) mode clock 35.5MHz exceeds DDC maximum 0MHz
(WW) (360x200,LeftDell) mode clock 17.75MHz exceeds DDC maximum 0MHz
(WW) (640x480,LeftDell) mode clock 25.2MHz exceeds DDC maximum 0MHz
(WW) (320x240,LeftDell) mode clock 12.6MHz exceeds DDC maximum 0MHz
(WW) (640x480,LeftDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x240,LeftDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (640x480,LeftDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x240,LeftDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (640x480,LeftDell) mode clock 36MHz exceeds DDC maximum 0MHz
(WW) (320x240,LeftDell) mode clock 18MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 36MHz exceeds DDC maximum 0MHz
(WW) (400x300,LeftDell) mode clock 18MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 40MHz exceeds DDC maximum 0MHz
(WW) (400x300,LeftDell) mode clock 20MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 50MHz exceeds DDC maximum 0MHz
(WW) (400x300,LeftDell) mode clock 25MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 49.5MHz exceeds DDC maximum 0MHz
(WW) (400x300,LeftDell) mode clock 24.75MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 56.3MHz exceeds DDC maximum 0MHz
(WW) (400x300,LeftDell) mode clock 28.15MHz exceeds DDC maximum 0MHz
(WW) (1024x768,LeftDell) mode clock 44.9MHz exceeds DDC maximum 0MHz
(WW) (512x384,LeftDell) mode clock 22.45MHz exceeds DDC maximum 0MHz
(WW) (1024x768,LeftDell) mode clock 65MHz exceeds DDC maximum 0MHz
(WW) (512x384,LeftDell) mode clock 32.5MHz exceeds DDC maximum 0MHz
(WW) (1024x768,LeftDell) mode clock 75MHz exceeds DDC maximum 0MHz
(WW) (512x384,LeftDell) mode clock 37.5MHz exceeds DDC maximum 0MHz
(WW) (1024x768,LeftDell) mode clock 78.8MHz exceeds DDC maximum 0MHz
(WW) (512x384,LeftDell) mode clock 39.4MHz exceeds DDC maximum 0MHz
(WW) (1024x768,LeftDell) mode clock 94.5MHz exceeds DDC maximum 0MHz
(WW) (512x384,LeftDell) mode clock 47.25MHz exceeds DDC maximum 0MHz
(WW) (1152x864,LeftDell) mode clock 108MHz exceeds DDC maximum 0MHz
(WW) (576x432,LeftDell) mode clock 54MHz exceeds DDC maximum 0MHz
(WW) (1280x960,LeftDell) mode clock 108MHz exceeds DDC maximum 0MHz
(WW) (640x480,LeftDell) mode clock 54MHz exceeds DDC maximum 0MHz
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(WW) (1280x1024,LeftDell) mode clock 108MHz exceeds DDC maximum 0MHz
(WW) (640x512,LeftDell) mode clock 54MHz exceeds DDC maximum 0MHz
(WW) (1280x1024,LeftDell) mode clock 135MHz exceeds DDC maximum 0MHz
(WW) (640x512,LeftDell) mode clock 67.5MHz exceeds DDC maximum 0MHz
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(WW) (1600x1200,LeftDell) mode clock 162MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 81MHz exceeds DDC maximum 0MHz
(WW) (1600x1200,LeftDell) mode clock 175.5MHz exceeds DDC maximum 0MHz
(WW) (800x600,LeftDell) mode clock 87.75MHz exceeds DDC maximum 0MHz
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(WW) (1792x1344,LeftDell) mode clock 204.8MHz exceeds DDC maximum 0MHz
(WW) (896x672,LeftDell) mode clock 102.4MHz exceeds DDC maximum 0MHz
(II) NVIDIA(0): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(WW) (832x624,LeftDell) mode clock 57.284MHz exceeds DDC maximum 0MHz

The forum software really choked on this so now I post it in 2 parts


Last edited by weingbz on Tue Jul 05, 2005 5:10 pm; edited 5 times in total
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Tue Jul 05, 2005 4:41 pm    Post subject: Reply with quote

Code:

(WW) (416x312,LeftDell) mode clock 28.642MHz exceeds DDC maximum 0MHz
(WW) (1152x768,LeftDell) mode clock 64.995MHz exceeds DDC maximum 0MHz
(WW) (576x384,LeftDell) mode clock 32.497MHz exceeds DDC maximum 0MHz
(WW) (1400x1050,LeftDell) mode clock 122MHz exceeds DDC maximum 0MHz
(WW) (700x525,LeftDell) mode clock 61MHz exceeds DDC maximum 0MHz
(WW) (1400x1050,LeftDell) mode clock 155.8MHz exceeds DDC maximum 0MHz
(WW) (700x525,LeftDell) mode clock 77.9MHz exceeds DDC maximum 0MHz
(WW) (1600x1024,LeftDell) mode clock 106.91MHz exceeds DDC maximum 0MHz
(WW) (800x512,LeftDell) mode clock 53.455MHz exceeds DDC maximum 0MHz
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1792x1344" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1280x960" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x864" (width too large for virtual size)
(II) NVIDIA(0): Not using default mode "1152x768" (width too large for virtual size)
(WW) NVIDIA(0): Not using mode "896x672" (height 1344 is larger than
(WW) NVIDIA(0):      EDID-specified maximum 1200)
(WW) NVIDIA(0): Not using mode "576x384":
(WW) NVIDIA(0):   horizontal sync start (589) not a multiple of 8
(WW) NVIDIA(0): Not using mode "360x200":
(WW) NVIDIA(0):   horizontal sync start (378) not a multiple of 8
(**) NVIDIA(0): Validated modes for display device CRT-1:
(**) NVIDIA(0):      Mode "1024x768/100Hz": 115.5 MHz, 80.2 kHz, 100.0 Hz
(**) NVIDIA(0):      Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
(**) NVIDIA(0):      Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz
(**) NVIDIA(0):      Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
(**) NVIDIA(0):      Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(**) NVIDIA(0):      Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(**) NVIDIA(0):      Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(0):      Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.0 Hz (I)
(**) NVIDIA(0):      Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
(**) NVIDIA(0):      Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(**) NVIDIA(0):      Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(**) NVIDIA(0):      Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(**) NVIDIA(0):      Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(0):      Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0):      Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(**) NVIDIA(0):      Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(**) NVIDIA(0):      Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(**) NVIDIA(0):      Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(**) NVIDIA(0):      Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0):      Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(**) NVIDIA(0):      Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
(**) NVIDIA(0):      Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(0):      Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(**) NVIDIA(0):      Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
(**) NVIDIA(0):      Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(0):      Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(**) NVIDIA(0):      Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(0):      Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(**) NVIDIA(0):      Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(**) NVIDIA(0):      Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(**) NVIDIA(0):      Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(**) NVIDIA(0):      Default mode "512x384": 22.4 MHz, 35.5 kHz, 86.9 Hz (D)
(**) NVIDIA(0):      Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(**) NVIDIA(0):      Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(**) NVIDIA(0):      Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(**) NVIDIA(0):      Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(**) NVIDIA(0):      Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(0):      Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
(**) NVIDIA(0):      Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D)
(**) NVIDIA(0):      Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D)
(**) NVIDIA(0):      Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D)
(**) NVIDIA(0):      Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(**) NVIDIA(0):      Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(**) NVIDIA(0):      Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
(--) NVIDIA(0): Display dimensions: (330, 240) mm
(--) NVIDIA(0): DPI set to (78, 81)
(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.2, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.2
(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.2, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(1): RGB weight 888
(==) NVIDIA(1): Default visual is TrueColor
(==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
(--) NVIDIA(1): Linear framebuffer at 0xE8000000
(--) NVIDIA(1): MMIO registers at 0xEC000000
(II) NVIDIA(1): NVIDIA GPU detected as: RIVA TNT2 Model 64/Model 64 Pro
(--) NVIDIA(1): VideoBIOS: 02.05.17.01.00
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(--) NVIDIA(1): VideoRAM: 16384 kBytes
(II) NVIDIA(1): Connected display device(s): CRT-0
(--) NVIDIA(1): Display device CRT-0: maximum pixel clock at  8 bpp: 250 MHz
(--) NVIDIA(1): Display device CRT-0: maximum pixel clock at 16 bpp: 250 MHz
(--) NVIDIA(1): Display device CRT-0: maximum pixel clock at 32 bpp: 215 MHz
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(II) NVIDIA(1): RightDell: Using hsync range of 30.00-85.00 kHz
(II) NVIDIA(1): RightDell: Using vrefresh range of 48.00-120.00 Hz
(II) NVIDIA(1): Clock range:  12.00 to 215.00 MHz
(WW) (1024x768/100Hz,RightDell) mode clock 115.5MHz exceeds DDC maximum 0MHz
(WW) (640x350,RightDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x175,RightDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (640x400,RightDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x200,RightDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (720x400,RightDell) mode clock 35.5MHz exceeds DDC maximum 0MHz
(WW) (360x200,RightDell) mode clock 17.75MHz exceeds DDC maximum 0MHz
(WW) (640x480,RightDell) mode clock 25.2MHz exceeds DDC maximum 0MHz
(WW) (320x240,RightDell) mode clock 12.6MHz exceeds DDC maximum 0MHz
(WW) (640x480,RightDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x240,RightDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (640x480,RightDell) mode clock 31.5MHz exceeds DDC maximum 0MHz
(WW) (320x240,RightDell) mode clock 15.75MHz exceeds DDC maximum 0MHz
(WW) (640x480,RightDell) mode clock 36MHz exceeds DDC maximum 0MHz
(WW) (320x240,RightDell) mode clock 18MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 36MHz exceeds DDC maximum 0MHz
(WW) (400x300,RightDell) mode clock 18MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 40MHz exceeds DDC maximum 0MHz
(WW) (400x300,RightDell) mode clock 20MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 50MHz exceeds DDC maximum 0MHz
(WW) (400x300,RightDell) mode clock 25MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 49.5MHz exceeds DDC maximum 0MHz
(WW) (400x300,RightDell) mode clock 24.75MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 56.3MHz exceeds DDC maximum 0MHz
(WW) (400x300,RightDell) mode clock 28.15MHz exceeds DDC maximum 0MHz
(WW) (1024x768,RightDell) mode clock 44.9MHz exceeds DDC maximum 0MHz
(WW) (512x384,RightDell) mode clock 22.45MHz exceeds DDC maximum 0MHz
(WW) (1024x768,RightDell) mode clock 65MHz exceeds DDC maximum 0MHz
(WW) (512x384,RightDell) mode clock 32.5MHz exceeds DDC maximum 0MHz
(WW) (1024x768,RightDell) mode clock 75MHz exceeds DDC maximum 0MHz
(WW) (512x384,RightDell) mode clock 37.5MHz exceeds DDC maximum 0MHz
(WW) (1024x768,RightDell) mode clock 78.8MHz exceeds DDC maximum 0MHz
(WW) (512x384,RightDell) mode clock 39.4MHz exceeds DDC maximum 0MHz
(WW) (1024x768,RightDell) mode clock 94.5MHz exceeds DDC maximum 0MHz
(WW) (512x384,RightDell) mode clock 47.25MHz exceeds DDC maximum 0MHz
(WW) (1152x864,RightDell) mode clock 108MHz exceeds DDC maximum 0MHz
(WW) (576x432,RightDell) mode clock 54MHz exceeds DDC maximum 0MHz
(WW) (1280x960,RightDell) mode clock 108MHz exceeds DDC maximum 0MHz
(WW) (640x480,RightDell) mode clock 54MHz exceeds DDC maximum 0MHz
(II) NVIDIA(1): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x480" (hsync out of range)
(WW) (1280x1024,RightDell) mode clock 108MHz exceeds DDC maximum 0MHz
(WW) (640x512,RightDell) mode clock 54MHz exceeds DDC maximum 0MHz
(WW) (1280x1024,RightDell) mode clock 135MHz exceeds DDC maximum 0MHz
(WW) (640x512,RightDell) mode clock 67.5MHz exceeds DDC maximum 0MHz
(II) NVIDIA(1): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(1): Not using default mode "640x512" (hsync out of range)
(WW) (1600x1200,RightDell) mode clock 162MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 81MHz exceeds DDC maximum 0MHz
(WW) (1600x1200,RightDell) mode clock 175.5MHz exceeds DDC maximum 0MHz
(WW) (800x600,RightDell) mode clock 87.75MHz exceeds DDC maximum 0MHz
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "800x600" (hsync out of range)
(WW) (1792x1344,RightDell) mode clock 204.8MHz exceeds DDC maximum 0MHz
(WW) (896x672,RightDell) mode clock 102.4MHz exceeds DDC maximum 0MHz
(II) NVIDIA(1): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "960x720" (hsync out of range)
(WW) (832x624,RightDell) mode clock 57.284MHz exceeds DDC maximum 0MHz
(WW) (416x312,RightDell) mode clock 28.642MHz exceeds DDC maximum 0MHz
(WW) (1152x768,RightDell) mode clock 64.995MHz exceeds DDC maximum 0MHz
(WW) (576x384,RightDell) mode clock 32.497MHz exceeds DDC maximum 0MHz
(WW) (1400x1050,RightDell) mode clock 122MHz exceeds DDC maximum 0MHz
(WW) (700x525,RightDell) mode clock 61MHz exceeds DDC maximum 0MHz
(WW) (1400x1050,RightDell) mode clock 155.8MHz exceeds DDC maximum 0MHz
(WW) (700x525,RightDell) mode clock 77.9MHz exceeds DDC maximum 0MHz
(WW) (1600x1024,RightDell) mode clock 106.91MHz exceeds DDC maximum 0MHz
(WW) (800x512,RightDell) mode clock 53.455MHz exceeds DDC maximum 0MHz
(II) NVIDIA(1): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
(II) NVIDIA(1): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(1): Not using default mode "2048x1536" (width requires unsupported line pitch)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "2048x1536" (width requires unsupported line pitch)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "2048x1536" (width requires unsupported line pitch)
(II) NVIDIA(1): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(1): Not using default mode "1792x1344" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1600x1200" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1400x1050" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1280x1024" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1280x960" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1152x864" (width too large for virtual size)
(II) NVIDIA(1): Not using default mode "1152x768" (width too large for virtual size)
(WW) NVIDIA(1): Not using mode "896x672" (height 1344 is larger than
(WW) NVIDIA(1):      EDID-specified maximum 1200)
(WW) NVIDIA(1): Not using mode "576x384":
(WW) NVIDIA(1):   horizontal sync start (589) not a multiple of 8
(WW) NVIDIA(1): Not using mode "360x200":
(WW) NVIDIA(1):   horizontal sync start (378) not a multiple of 8
(**) NVIDIA(1): Validated modes for display device CRT-0:
(**) NVIDIA(1):      Mode "1024x768/100Hz": 115.5 MHz, 80.2 kHz, 100.0 Hz
(**) NVIDIA(1):      Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
(**) NVIDIA(1):      Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz
(**) NVIDIA(1):      Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
(**) NVIDIA(1):      Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(**) NVIDIA(1):      Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(**) NVIDIA(1):      Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(1):      Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.0 Hz (I)
(**) NVIDIA(1):      Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
(**) NVIDIA(1):      Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(**) NVIDIA(1):      Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(**) NVIDIA(1):      Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(**) NVIDIA(1):      Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(1):      Default mode "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(**) NVIDIA(1):      Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(**) NVIDIA(1):      Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(**) NVIDIA(1):      Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(**) NVIDIA(1):      Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(**) NVIDIA(1):      Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(**) NVIDIA(1):      Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(**) NVIDIA(1):      Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
(**) NVIDIA(1):      Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(1):      Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(**) NVIDIA(1):      Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
(**) NVIDIA(1):      Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(1):      Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(**) NVIDIA(1):      Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
(**) NVIDIA(1):      Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(**) NVIDIA(1):      Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(**) NVIDIA(1):      Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(**) NVIDIA(1):      Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(**) NVIDIA(1):      Default mode "512x384": 22.4 MHz, 35.5 kHz, 86.9 Hz (D)
(**) NVIDIA(1):      Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(**) NVIDIA(1):      Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(**) NVIDIA(1):      Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(**) NVIDIA(1):      Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(**) NVIDIA(1):      Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(1):      Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
(**) NVIDIA(1):      Default mode "320x240": 18.0 MHz, 43.3 kHz, 85.2 Hz (D)
(**) NVIDIA(1):      Default mode "320x240": 15.8 MHz, 37.5 kHz, 75.0 Hz (D)
(**) NVIDIA(1):      Default mode "320x240": 15.8 MHz, 37.9 kHz, 72.8 Hz (D)
(**) NVIDIA(1):      Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(**) NVIDIA(1):      Default mode "320x200": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(**) NVIDIA(1):      Default mode "320x175": 15.8 MHz, 37.9 kHz, 85.3 Hz (D)
(II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
(--) NVIDIA(1): Display dimensions: (330, 240) mm
(--) NVIDIA(1): DPI set to (78, 81)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Reloading /usr/X11R6/lib/modules/libfb.a
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Reloading /usr/X11R6/lib/modules/libramdac.a
(--) 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.2, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) resource ranges after preInit:
   [0] 0   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B]
   [1] 0   0   0xec000000 - 0xecffffff (0x1000000) MX[B]
   [2] 1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B]
   [3] 1   0   0xea000000 - 0xeaffffff (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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [10] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [11] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [12] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [13] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [14] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [15] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [16] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [17] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [18] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [19] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [20] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [21] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
   [22] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
   [23] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
   [24] 1   0   0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
   [25] 1   0   0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
   [26] 1   0   0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
   [27] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [28] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [29] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [30] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [31] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [32] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [33] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [34] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [35] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [36] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [37] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [38] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [39] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [40] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [41] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [42] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [43] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [44] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [45] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
   [46] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
   [47] 0   0   0x000003c0 - 0x000003df (0x20) IS[B](OprU)
   [48] 1   0   0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
   [49] 1   0   0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) NVIDIA(0): Setting mode "1024x768/100Hz"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) NVIDIA(1): Setting mode "1024x768/100Hz"
(II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(1): Backing store disabled
(==) NVIDIA(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 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
(II) Initializing extension GLX
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/mouse"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/mouse"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse0: ZAxisMapping: buttons 4 and 5
(**) Mouse0: Buttons: 5
(**) Mouse0: SmartScroll: 1
(**) Option "CoreKeyboard"
(**) Keyboard0: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Keyboard0: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
SetClientVersion: 0 8
(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

The problem is probably
Code:

(WW) NVIDIA(0): Multiple displays connected, but only one display allowed;
(WW) NVIDIA(0):      using first display

If I turn on the Screen statements in the graphiccard device sections I get the following (continued in next post)


Last edited by weingbz on Tue Jul 05, 2005 5:19 pm; edited 2 times in total
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Tue Jul 05, 2005 4:43 pm    Post subject: Reply with quote

Code:


X Window System Version 6.8.2
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.11.2 i686 [ELF]
Current Operating System: Linux amdtux 2.6.11.12 #1 Sun Jun 12 23:08:03 CEST 2005 i686
Build Date: 13 March 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: Tue Jul  5 19:02:45 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "TripleHead"
(**) |-->Screen "LeftScreen" (0)
(**) |   |-->Monitor "LeftDell"
(**) |   |-->Device "AGPNVIDIA"
(**) |-->Screen "RightScreen" (1)
(**) |   |-->Monitor "RightDell"
(**) |   |-->Device "PCINVIDIA"
(**) |-->Screen "TVSCREEN" (2)
(**) |   |-->Monitor "TVMonitor"
(**) |   |-->Device "TVNVIDIA"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(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 linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 6.8.2, 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.2, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
Using vt 7
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,01e0 card 0000,0000 rev c1 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,01eb card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,01ee card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,01ed card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:4: chip 10de,01ec card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:5: chip 10de,01ef card 1695,100f rev c1 class 05,00,00 hdr 80
(II) PCI: 00:01:0: chip 10de,0080 card 1695,100f rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0084 card 1695,100f rev a1 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,0087 card 1695,100f rev a1 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,0087 card 1695,100f rev a1 class 0c,03,10 hdr 80
(II) PCI: 00:02:2: chip 10de,0088 card 1695,100f rev a2 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,008c card 1695,100f rev a3 class 06,80,00 hdr 00
(II) PCI: 00:06:0: chip 10de,008a card 1695,100e rev a1 class 04,01,00 hdr 00
(II) PCI: 00:08:0: chip 10de,008b card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,0085 card 1695,100f rev a3 class 01,01,8a hdr 00
(II) PCI: 00:0b:0: chip 10de,008e card 1695,100f rev a3 class 01,01,85 hdr 00
(II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev c1 class 06,04,00 hdr 01
(II) PCI: 01:08:0: chip 10de,002d card 10de,0006 rev 15 class 03,00,00 hdr 00
(II) PCI: 01:0c:0: chip 1095,3114 card 1695,9018 rev 02 class 01,04,00 hdr 00
(II) PCI: 01:0d:0: chip 1106,3044 card 1695,900e rev 80 class 0c,00,10 hdr 00
(II) PCI: 02:00:0: chip 10de,0322 card 10b0,0431 rev a1 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,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 1 I/O range:
   [0] -1   0   0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xec000000 - 0xedffffff (0x2000000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 2 non-prefetchable memory range:
   [0] -1   0   0xea000000 - 0xebffffff (0x2000000) MX[B]
(II) Bus 2 prefetchable memory range:
   [0] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B]
(--) PCI: (1:8:0) nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro] rev 21, Mem @ 0xec000000/24, 0xe8000000/25
(--) PCI:*(2:0:0) nVidia Corporation NV34 [GeForce FX 5200] rev 161, Mem @ 0xea000000/24, 0xe0000000/27
(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 0xd8000000 from 0xdfffffff to 0xd7ffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xed080000 - 0xed0807ff (0x800) MX[B]
   [1] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [2] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [3] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [4] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [5] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [6] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [7] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [8] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [9] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [10] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [11] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [12] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [13] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [14] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [15] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [16] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [17] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [18] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [19] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [20] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [21] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [22] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [23] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [24] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [25] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [26] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(II) Inactive PCI resource ranges:
   [0] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [1] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xed080000 - 0xed0807ff (0x800) MX[B]
   [1] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [2] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [3] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [4] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [5] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [6] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [7] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [8] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [9] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [10] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [11] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [12] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [13] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [14] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [15] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [16] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [17] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [18] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [19] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [20] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [21] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [22] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [23] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [24] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [25] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [26] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(II) Inactive PCI resource ranges after removing overlaps:
   [0] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [1] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
(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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [18] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [19] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [20] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [21] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [22] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [23] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [24] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [25] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [26] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [27] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [28] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [29] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [30] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [31] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [32] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [33] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [34] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [35] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
   compiled for 6.8.2, module version = 1.13.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 6.8.2, 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: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 6.8.2, 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: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
   compiled for 4.0.2, module version = 1.0.6629
   Module class: XFree86 Server Extension
   ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "xtrap"
(II) Loading /usr/X11R6/lib/modules/extensions/libxtrap.a
(II) Module xtrap: vendor="X.Org Foundation"
   compiled for 6.8.2, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DEC-XTRAP
(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.2, 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: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
   compiled for 6.8.2, 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: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
   compiled for 4.0.2, module version = 1.0.6629
   Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 6.8.2, 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.2, module version = 1.0.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.4
(II) NVIDIA X Driver  1.0-6629  Wed Nov  3 13:14:07 PST 2004
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 02:00:0
(WW) NVIDIA: No matching Device section for instance (BusID PCI:2:0:0) found
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU 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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [18] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [19] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [20] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [21] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [22] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [23] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [24] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [25] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [26] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [27] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [28] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [29] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [30] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [31] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [32] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [33] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [34] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [35] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(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   0xed080000 - 0xed0807ff (0x800) MX[B]
   [6] -1   0   0xed081000 - 0xed0813ff (0x400) MX[B]
   [7] -1   0   0xee000000 - 0xee000fff (0x1000) MX[B]
   [8] -1   0   0xee005000 - 0xee005fff (0x1000) MX[B]
   [9] -1   0   0xee004000 - 0xee0040ff (0x100) MX[B]
   [10] -1   0   0xee003000 - 0xee003fff (0x1000) MX[B]
   [11] -1   0   0xee002000 - 0xee002fff (0x1000) MX[B]
   [12] -1   0   0xd8000000 - 0xd7ffffff (0x0) MX[B]O
   [13] -1   0   0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
   [14] -1   0   0xea000000 - 0xeaffffff (0x1000000) MX[B](B)
   [15] -1   0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B](B)
   [16] -1   0   0xec000000 - 0xecffffff (0x1000000) MX[B](B)
   [17] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [18] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [19] -1   0   0x0000d500 - 0x0000d57f (0x80) IX[B]
   [20] -1   0   0x0000d400 - 0x0000d40f (0x10) IX[B]
   [21] -1   0   0x0000d300 - 0x0000d303 (0x4) IX[B]
   [22] -1   0   0x0000d200 - 0x0000d207 (0x8) IX[B]
   [23] -1   0   0x0000d100 - 0x0000d103 (0x4) IX[B]
   [24] -1   0   0x0000d000 - 0x0000d007 (0x8) IX[B]
   [25] -1   0   0x0000eb00 - 0x0000eb7f (0x80) IX[B]
   [26] -1   0   0x0000ea00 - 0x0000ea0f (0x10) IX[B]
   [27] -1   0   0x00000b70 - 0x00000b73 (0x4) IX[B]
   [28] -1   0   0x00000970 - 0x00000977 (0x8) IX[B]
   [29] -1   0   0x00000bf0 - 0x00000bf3 (0x4) IX[B]
   [30] -1   0   0x000009f0 - 0x000009f7 (0x8) IX[B]
   [31] -1   0   0x0000f000 - 0x0000f00f (0x10) IX[B]
   [32] -1   0   0x0000e200 - 0x0000e27f (0x80) IX[B]
   [33] -1   0   0x0000e100 - 0x0000e1ff (0x100) IX[B]
   [34] -1   0   0x0000e000 - 0x0000e007 (0x8) IX[B]
   [35] -1   0   0x0000e500 - 0x0000e51f (0x20) IX[B]
(EE) Screen 1 deleted because of no matching config section.
Symbol fbCloseScreen from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbCreateWindow from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbCreateGC from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbGCPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbValidateGC from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbPictureInit from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!
Symbol fbWinPrivateIndex from module /usr/X11R6/lib/modules/drivers/nvidia_drv.o is unresolved!

   *** If unresolved symbols were reported above, they might not
   *** be the reason for the server aborting.

Fatal server error:
Caught signal 11.  Server aborting


Please consult the The X.Org Foundation support
    at http://wiki.X.Org
 for help.
Please also check the log file at "/var/log/Xorg.0.log" for additional information.


Last edited by weingbz on Tue Jul 05, 2005 5:13 pm; edited 1 time in total
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Tue Jul 05, 2005 4:46 pm    Post subject: Reply with quote

So why do I get unresolved symbols? Why doesn't it find a device for PCI:2:0:0 when before it complained that it found more than one? Do you have warnings about multiply defined devices?


I'm sorry about the multiple messages, seems like the forum software here has some annoying bugs where the preview works but not the posting :-(.
Back to top
View user's profile Send private message
alkan
Guru
Guru


Joined: 06 Aug 2004
Posts: 385
Location: kasimlar yaylasi

PostPosted: Tue Jul 05, 2005 9:36 pm    Post subject: Reply with quote

I am not sure if it is the reason but look at my post above. Screen numbers in device section doesn't go 0,1,2. It goes like 0,1,0. I guess it tells nvidia driver which head to use per card. secreen 2 would be wrong since you don''t have a a third head in your graphics cards.

I have no idea about uresolved symbols, google may help.

On my logs, I don't have warning about multiple defined devices
Back to top
View user's profile Send private message
weingbz
n00b
n00b


Joined: 29 Jan 2005
Posts: 46

PostPosted: Wed Jul 06, 2005 4:02 pm    Post subject: Reply with quote

alkan wrote:
I am not sure if it is the reason but look at my post above. Screen numbers in device section doesn't go 0,1,2. It goes like 0,1,0. I guess it tells nvidia driver which head to use per card. secreen 2 would be wrong since you don''t have a a third head in your graphics cards.

I have no idea about uresolved symbols, google may help.

On my logs, I don't have warning about multiple defined devices

OK, I'm one step further. Seems like my graphics card can't do CRT+TV but it can do DVI+TV (would have been nice if Gainward had mentioned this in the users manual). Now I have a non-xinerama setup where I get a desktop on the TV. The following xorg.conf works at least so far:
Code:

Section "ServerLayout"
   Identifier     "TripleHead"
   Screen      0  "LeftScreen" 0 0
   Screen      1  "RightScreen" RightOf "LeftScreen"
        Screen      2  "TVScreen" LeftOf "LeftScreen"
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "record"
   Load  "extmod"
   Load  "dbe"
   Load  "glx"
   Load  "xtrap"
   Load  "freetype"
   Load  "type1"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/mouse"
        Option      "ZAxisMapping"   "4 5"
EndSection

Section "Monitor"
    Identifier  "LeftDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
    Identifier  "RightDell"
    HorizSync   30-85
    VertRefresh 48-120
    vendorname "Dell"
    modelname "P780"
    ModeLine "1024x768/100Hz" 115.5 1024 1056 1248 1440 768 771 781 802  -HSync -VSync
EndSection

Section "Monitor"
        Identifier      "TVMonitor"
        VendorName      "Sony"
        ModelName       "Television"
        HorizSync       30-50
        VertRefresh     60
   Option      "dpms"
EndSection

Section "Screen"
    Identifier  "LeftScreen"
    Device      "AGPNVIDIA"
    Monitor     "LeftDell"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Screen"
    Identifier  "RightScreen"
    Device      "PCINVIDIA"
    Monitor     "RightDell"
    DefaultDepth 24
    Subsection "Display"
        Depth       8
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768/100Hz" "1024x768" "800x600" "640x480"
        ViewPort    0 0
   Virtual 0 0
    EndSubsection
EndSection

Section "Screen"
   Identifier    "TVSCREEN"
   Device        "TVNVIDIA"
   Monitor       "TVMonitor"
   SubSection "Display"
      Depth     24
      Modes    "800x600"
   EndSubSection
EndSection

Section "Device"
   Identifier  "AGPNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
   Screen      0
EndSection

Section "Device"
   Identifier  "TVNVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV34 [GeForce FX 5200]"
   BusID       "PCI:2:0:0"
        Option     "ConnectedMonitor"  "TVSCREEN"
        Option     "TVStandard"      "PAL-B"
        Option     "TVOutFormat"     "SVIDEO"
        Option     "RenderAccel"
   Screen     1
EndSection


Section "Device"
   Identifier  "PCINVIDIA"
   Driver      "nvidia"
   VendorName  "nVidia Corporation"
   BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
   BusID       "PCI:1:8:0"
   Screen      0
EndSection

But I still can't use mplayer to put something on the TV. if I try the following error occurs:
Code:

vo: X11 running at 1024x768 with depth 8 and 8 bpp (":0.2" => local display)
It seems there is no Xvideo support for your video card available.
Run 'xvinfo' to verify its Xv support and read DOCS/HTML/en/video.html#xv!
See 'mplayer -vo help' for other (non-xv) video out drivers. Try -vo x11
Error opening/initializing the selected video_out (-vo) device.

Why does it run with 1024x768 when I specified 800X600?
And if I try to enable xinerama X just locks up the computer even CTRL-ALT-BACKSPACE doesn't work anymore.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum