PDA

View Full Version : [SOLVED] Black screen after change of DVI port



JohnFante
February 27th, 2010, 02:59 PM
I use a KVM switch that eats my EDID information from my monitor to my Nvidia GTX275 videocard. Therefore I have had to use a custom edid.bin file that I invoke in xorg.conf. So far that has worked very fine.

My GTX275 has to DVI outputs. So far I have used the port to the right (the one longest away from my motherboard). I would now like to use the other port (I have a MacOS snow leopard dual-boot install and in Mac OS you have to use the port closets to the motherboard to play games - strangely enough).

Now my problem starts.

When I change ports my LCD loses its signal half way trough boot and I have to change back to the other port to get a signal.

I have tried to create a new edid.bin file on the other port (bypassing the KVM) but so with the same result.

My xorg is as follows:


# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 1.0 (buildmeister@builder62) Mon Feb 1 20:10:38 PST 2010

Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "ConnectedMonitor" "DFP"
Option "CustomEDID" "DFP-0:/home/johnfante/edid.bin"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection

Do I have to make changes in the Device section? For instance changing DFP-0 to DFP-1 or something like that? I tried to do it but with no succes.

JohnFante
February 27th, 2010, 03:04 PM
Found the solution:

I changed both Option ConnectedMonitor and CustomEDID to DFP-1.


Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "ConnectedMonitor" "DFP-1"
Option "CustomEDID" "DFP-1:/home/johnfante/edid.bin"
EndSection


As far as I can see everything works fine :-)