Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
ATI 9800 TV-out [Solved]
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
golgo13
Apprentice
Apprentice


Joined: 24 Nov 2004
Posts: 158

PostPosted: Sun Oct 15, 2006 7:24 am    Post subject: ATI 9800 TV-out [Solved] Reply with quote

I'm using a Radeon 9800 in a Myth box. Unfortunately with the move to modular Xorg and newer ati drivers my xorg.conf no longer seems to work properly. While I do get the desktop on the TV it appears to be scaled. MythTV's video is scaled way to large and I can't properly view anything. I'm no expert with xorg.conf files. Note, this is a single-head system with TV-out only. I've been googling, read the how-to's, searching the forums here and else where but I can't seem to get it working properly. I've actually purchased an Nvidia 5500 but I'd like to get this working in the mean time. Does anyone have a working xorg.conf or advice for ATIs TV-out?
_________________
www.latestintech.com


Last edited by golgo13 on Tue Oct 17, 2006 6:22 am; edited 1 time in total
Back to top
View user's profile Send private message
golgo13
Apprentice
Apprentice


Joined: 24 Nov 2004
Posts: 158

PostPosted: Tue Oct 17, 2006 6:22 am    Post subject: Reply with quote

So it looks like my problems been solved for now; I still think the card is doing some sort of scaling regardless of what I'm telling it to do.

Code:

# File: xorg.conf
#
Section "ServerLayout"
        Identifier     "Server Layout"
        Screen         "Screen0" 0 0
        InputDevice    "Mouse1" "CorePointer"
        InputDevice    "Keyboard1" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        FontPath     "/usr/X11R6/lib/X11/fonts/local/"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
        Load  "dbe"     # Double buffer extension
        SubSection "extmod"
                Option      "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
        Load  "type1"
        Load  "freetype"
# This loads the GLX module
        Load  "glx"   # libglx.a
        Load  "dri"   # libdri.a
EndSection

Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "kbd"
        Option      "AutoRepeat" "500 30"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
        Option      "XkbRules" "xfree86"
        Option      "XkbModel" "pc101"
        Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier  "Mouse1"
        Driver      "mouse"
        Option      "Protocol" "ImPS/2"
        Option      "ZAxisMapping" "4 5"
        Option      "Device" "/dev/input/mice"
# When using XQUEUE, comment out the above two lines, and uncomment
EndSection

Section "Monitor"
        Identifier   "TV"
        DisplaySize  406 292
        HorizSync    30.0 - 40.0
        VertRefresh  60.0 - 60.0
        Option      "DPMS"
EndSection

Section "Device"
        Identifier  "ATI Graphics Adapter"
        Driver      "fglrx"
        Option      "no_accel" "no"
        Option      "no_dri" "no"
# === misc DRI settings ===
        Option      "mtrr" "off" # disable DRI mtrr mapper, driver has its own code for mtrr
        Option      "DesktopSetup" "(null)"
        Option      "ScreenOverlap" "0"
# === TV-out Management ===
        Option      "TVFormat" "NTSC-M"
        Option      "TVStandard" "VIDEO"
        Option      "TVHSizeAdj" "100"
        Option      "TVVSizeAdj" "100"
        Option      "TVHPosAdj" "10"
        Option      "TVVPosAdj" "10"
        Option      "TVHStartAdj" "0"
        Option      "TVColorAdj" "0"
        Option      "GammaCorrectionI" "0x00000000"
        Option      "GammaCorrectionII" "0x00000000"
# === OpenGL specific profiles/settings ===
        Option      "Capabilities" "0x00000000"
        Option      "CapabilitiesEx" "0x00000000"
# === Video Overlay for the Xv extension ===
        Option      "VideoOverlay" "off"
# === OpenGL Overlay ===
        Option      "OpenGLOverlay" "on"
# === Center Mode (Laptops only) ===
        Option      "CenterMode" "off"
# === Pseudo Color Visuals (8-bit visuals) ===
        Option      "PseudoColorVisuals" "off"
# === QBS Management ===
        Option      "Stereo" "off"
        Option      "StereoSyncEnable" "1"
# === FSAA Management ===
        Option      "FSAAEnable" "no"
        Option      "FSAAScale" "1"
        Option      "FSAADisableGamma" "no"
        Option      "FSAACustomizeMSPos" "no"
        Option      "FSAAMSPosX0" "0.000000"
        Option      "FSAAMSPosY0" "0.000000"
        Option      "FSAAMSPosX1" "0.000000"
        Option      "FSAAMSPosY1" "0.000000"
        Option      "FSAAMSPosX2" "0.000000"
        Option      "FSAAMSPosY2" "0.000000"
        Option      "FSAAMSPosX3" "0.000000"
        Option      "FSAAMSPosY3" "0.000000"
        Option      "FSAAMSPosX4" "0.000000"
        Option      "FSAAMSPosY4" "0.000000"
        Option      "FSAAMSPosX5" "0.000000"
        Option      "FSAAMSPosY5" "0.000000"
# === Misc Options ===
        Option      "UseFastTLS" "0"
        Option      "BlockSignalsOnLock" "on"
        Option      "UseInternalAGPGART" "yes"
        Option      "ForceGenericCPU" "no"
        BusID       "PCI:1:0:0"
EndSection

Section "Device"
        Identifier  "Standard VGA"
        Driver      "vga"
        VendorName  "Unknown"
        BoardName   "Unknown"
EndSection

Section "Screen"

    #Option "backingstore"
        Identifier "Screen0"
        Device     "ATI Graphics Adapter"
        Monitor    "TV"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes    "704x480"
        EndSubSection
EndSection

Section "DRI"
        Mode         0666
EndSection


The key was changing the option "VideoOverlay" to "off"
_________________
www.latestintech.com
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