Hi All,
Just thought i would post up my problems and fixes that got this to work.
I'm running Ubuntu 7.04 on:
- Integrated Intel X3000(G965) Graphics Card (VGA output)
- SAMSUNG LE40A556P (Series 5) 40" (VGA input)
- 1 ordinary VGA cable
To get this to work make sure your using the "intel" graphics driver not the "i810" driver.
Now the samsung tv and intel chips didn't mix in my case so i needed to override some things in the xorg.conf file to tell it exactly what to pump out at the tv.
Here are the settings that worked for me...
Code:
Section "Device"
Identifier "Intel Corporation 82G965 Integrated Graphics Controller"
Driver "intel"
BusID "PCI:0:2:0"
Option "UseFBDev" "true"
Option "NoDDC" "on" # These 3 options override the default settings
Option "DDCMode" "off" # the tv/graphics card think it should use
Option "IgnoreEDID" "on" #
EndSection
Section "Monitor"
Identifier "SAMSUNG"
Option "DPMS"
HorizSync 30-81
VertRefresh 59-75
# This is the new settings
Modeline "1920x1080" 138.407 1920 1984 2016 2096 1080 1082 1087 1111 +hsync -vsync
# This is to give it an extra nudge in the right direction
Option "PreferredMode" "1920x1080"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82G965 Integrated Graphics Controller"
Monitor "SAMSUNG"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
screen 0 "Default Screen" 0 0
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Different TVs will need a different "Modeline" settings. This site was where i found some settings that closely matched the basic information in my TVs User Manual(res,HFeq,VFeq,clockFeq, sync Polarity)... http://www.mythtv.org/wiki/index.php/Modeline_Database
Also I have a laptop with an Nvidia card in it and that was able to work perfectly without any configuration in WindowsXP and Ubuntu 8.04.
Anyway i hope that helps someone.
Luciano
Bookmarks