You are not logged in.

#1 2008-03-20 12:36:54

hellknight
Member
From: Lisbon - Portugal
Registered: 2008-03-03
Posts: 12

Radeon video artifacts

I own a laptop with a ATI Mobility Radeon 9700, and since the first time I used the open-source driver (xf86-video-ati) the video quality sucks......
The image isn't full of artifacts, but shows them when there is a transition to black or when the color is really dark. Let's show an example.

I must say this problem comes from a long time ago, when I first used Ubuntu a year ago, then with Gentoo and now with Arch. I've posted in the forums of the first two, but no one answered so far.
I must also say that this problem disappear when a use the fglrx driver (in all the distro I used so far). I just don't want to the the proprietary drivers because I want a good AIGLX support, and since I saw those wonderful news about ATI releasing documentation about r300 chipsets I've been like "SWEAT!!!".
I've googled for this problem and so far haven't found anyone with a similar one. I've tried several version of the driver (6.6.*, 6.7.*, 6.8.* and git) with no luck, using the 6.8.0 version now. I just don't know what to do now, and I'm begging (literally) for someone's help. Hope I'll find in this forum sad

Edit: I don't think the problem comes from the driver, but from Xorg configuration, because I've just tried the vesa driver and I had the same problem.

Here's my xorg.conf file

Section "ServerLayout"
    Identifier     "Xorg Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard" "CoreKeyboard"
    InputDevice    "USB Mouse" "CorePointer"
    InputDevice    "Touchpad" "SendCoreEvents"
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc:unscaled"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/100dpi"
EndSection

Section "Module"
    #Load  "ddc"  # ddc probing of monitor
    Load  "dbe"
    Load  "extmod"
    Load  "bitmap" # bitmap-fonts
    Load  "freetype"
    Load  "record"
    #Load  "synaptics"
    # Modules for graphic card
    Load  "glx"
    Load  "dri"
    #Load  "drm"
    
    SubSection "extmod"
        Option     "omit XFree86-DGA"
    EndSubSection

EndSection

Section "ServerFlags"
    Option        "AIGLX" "off"
EndSection

Section "InputDevice"
    Identifier  "Keyboard"
    Driver      "keyboard"
    Option        "CoreKeyboard"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "acer_laptop"
    Option        "XkbLayout" "pt"
#    Option        "XkbVariant" ""
EndSection

Section "InputDevice"
    Identifier  "Touchpad"
    Driver      "synaptics"
    Option        "Device" "/dev/input/mouse0"
    Option        "Protocol" "auto-dev"
    Option        "LeftEdge" "1700"
    Option        "RightEdge" "5300"
    Option        "TopEdge" "1700"
    Option        "BottomEdge" "4200"
    Option        "FingerLow" "25"
    Option        "FingerHigh" "30"
    Option        "MaxTapTime" "180"
    Option        "MaxTapMove" "220"
    Option        "VertScrollDelta" "100"
    Option        "MinSpeed" "0.06"
    Option        "MaxSpeed" "0.12"
    Option        "AccelFactor" "0.0010"
    Option        "SHMConfig" "on"
EndSection

Section "InputDevice"
    Identifier  "USB Mouse"
    Driver      "mouse"
    Option        "Device" "/dev/input/mice"
    Option        "SendCoreEvents" "true"
    Option        "Protocol" "IMPS/2"
    Option        "ZAxisMapping" "4 5"
    Option        "Buttons" "5"
EndSection

Section "Monitor"
    Identifier   "LCD Panel"
    DisplaySize  336    210
    HorizSync    28.0 - 96.0
    VertRefresh  50.0 - 75.0
    Option        "DPMS" "on"
EndSection

Section "Device"
    Identifier  "VESA"
    Driver      "vesa"
EndSection

Section "Device"
    Identifier  "RADEON"
    Driver      "radeon"
    BusID       "PCI:1:0:0"
    Option      "AGPMode" "4"
    Option      "ColorTiling" "on"
    Option      "AccelMethod" "XAA"
    Option      "EnablePageFlip" "on"
    #Option      "XAANoOffscreenPixmaps" "on"
    Option      "DRI" "on"
    Option      "RenderAccel" "off"
    Option      "DMAForXV" "on"
    Option      "GARTSize" "64"
EndSection

Section "Device"
    Identifier    "FGLRX"
    Driver        "fglrx"
    #Option        "VideoOverlay" "on"
    Option         "UseInternalAGPGart" "off"
    Option         "TexturedVideo" "on"
    Option        "UseFastTLS" "0"
    #Option        "EnablePrivateBackZ" "on"
    Option         "XAANoOffscreenPixmaps" "on"
    Option         "MaxGARTSize" "64"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device        "RADEON"
    Monitor    "LCD Panel"
    DefaultDepth     24
    SubSection "Display"
        Depth     1
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     4
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     8
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     15
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     16
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     24
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     32
        Modes    "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "DRI"
    Group          "video"
    Mode         0666
EndSection

Section "Extensions"
    Option        "Composite" "off"
    Option        "XVideo" "on"
EndSection

Last edited by hellknight (2008-03-21 17:15:42)

Offline

Board footer

Powered by FluxBB