Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
ATI drivers 8.23.7 - recommended settings
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
lukas.svoboda
n00b
n00b


Joined: 15 Feb 2005
Posts: 33
Location: Prague, CZ

PostPosted: Sun Mar 26, 2006 1:27 am    Post subject: ATI drivers 8.23.7 - recommended settings Reply with quote

Hi, I have recently installed Gentoo on my new laptop (with ATI X300 Mobility Radeon). I have configured X.org using "X -configure", then installed proprietary ATI drivers 8.23.7 and updated the xorg.conf with "aticonfig --initial". Hardware acceleration works fine (over 3000 fps in glxgears), but I have problems playing videos with xine and mplayer - too many dropped frames. Mplayer cannot be started at all - error opening/initializing the selected video_out (-vo) device. With the opensource "ati" X.org driver everything works fine - but HW acceleration is worse.

So my question is: what are the recommended settings of all possible parameters for the latest version 8.23.7 of the ATI proprietary driver? Or where can I find all available options for the latest drivers?

xorg.conf
Code:

Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "aticonfig Screen 0" 0 0
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "TouchPad" "AlwaysCore"
   InputDevice    "Keyboard0" "CoreKeyboard"
   Option       "BlankTime" "5"
   Option       "StandbyTime" "10"
   Option       "SuspendTime" "20"
   Option       "OffTime" "30"
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/"
EndSection

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

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

Section "InputDevice"
   Identifier  "TouchPad"
   Driver      "synaptics"
   Option       "Protocol" "auto-dev"
   Option       "Device" "/dev/input/mouse0"
   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.09"
   Option       "MaxSpeed" "0.18"
   Option       "AccelFactor" "0.0015"
   Option       "SHMConfig" "on"
EndSection

Section "InputDevice"
   Identifier  "Mouse0"
   Driver      "mouse"
   Option       "Protocol" "IMPS/2"
   Option       "Device" "/dev/input/mice" # mice or mouse1
   Option       "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
   Identifier   "Monitor0"
   VendorName   "Fujitsu Siemens Computers"
   ModelName    "LCD 1280x800"
   Option       "DPMS" "true"
EndSection

Section "Monitor"
   Identifier   "aticonfig Monitor 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     "NoAccel"               # [<bool>]
        #Option     "SWcursor"              # [<bool>]
        #Option     "Dac6Bit"               # [<bool>]
        #Option     "Dac8Bit"               # [<bool>]
        #Option     "BusType"               # [<str>]
        #Option     "CPPIOMode"             # [<bool>]
        #Option     "CPusecTimeout"         # <i>
        #Option     "AGPMode"               # <i>
        #Option     "AGPFastWrite"          # [<bool>]
        #Option     "AGPSize"               # <i>
        #Option     "GARTSize"              # <i>
        #Option     "RingSize"              # <i>
        #Option     "BufferSize"            # <i>
        #Option     "EnableDepthMoves"      # [<bool>]
        #Option     "EnablePageFlip"        # [<bool>]
        #Option     "NoBackBuffer"          # [<bool>]
        #Option     "DRIReinit"             # [<bool>]
        #Option     "PanelOff"              # [<bool>]
        #Option     "DDCMode"               # [<bool>]
        #Option     "MonitorLayout"         # [<str>]
        #Option     "IgnoreEDID"            # [<bool>]
        #Option     "UseFBDev"              # [<bool>]
        #Option     "VideoKey"              # <i>
        #Option     "MergedFB"              # [<bool>]
        #Option     "CRT2HSync"             # [<str>]
        #Option     "CRT2VRefresh"          # [<str>]
        #Option     "CRT2Position"          # [<str>]
        #Option     "MetaModes"             # [<str>]
        #Option     "MergedDPI"             # [<str>]
        #Option     "NoMergedXinerama"      # [<bool>]
        #Option     "MergedXineramaCRT2IsScreen0"    # [<bool>]
        #Option     "DisplayPriority"       # [<str>]
        #Option     "PanelSize"             # [<str>]
        #Option     "ForceMinDotClock"      # <freq>
        #Option     "RenderAccel"           # [<bool>]
        #Option     "SubPixelOrder"         # [<str>]
        #Option     "ShowCache"             # [<bool>]
        #Option     "VGAAccess"             # [<bool>]
        #Option     "LVDSProbePLL"          # [<bool>]
        #Option     "ReverseDDC"            # [<bool>]
        #Option     "BIOSHotkeys"           # [<bool>]
   Identifier  "Card0"
   Driver      "ati"
   VendorName  "ATI Technologies Inc"
   BoardName   "ATI Mobility Radeon X300"
   Option       "DynamicClocks" "true"         # [<bool>]
   BusID       "PCI:1:0:0"
EndSection

Section "Device"
   Identifier  "ATI Graphics Adapter 0"
   Driver      "fglrx"
   BusID       "PCI:1:0:0"
EndSection

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

Section "Screen"
   Identifier "aticonfig Screen 0"
   Device     "ATI Graphics Adapter 0"
   Monitor    "aticonfig Monitor 0"
   DefaultDepth     24
   SubSection "Display"
      Viewport   0 0
      Depth     24
   EndSubSection
EndSection

Section "dri"
   Mode 0666
EndSection
Back to top
View user's profile Send private message
hermanng
Apprentice
Apprentice


Joined: 28 Jan 2004
Posts: 175
Location: Nussberg,Germany,Earth

PostPosted: Sun Mar 26, 2006 4:18 am    Post subject: Reply with quote

I don't know what the recommended settings for the ati-driver are. The following settings work fine here, although I had to say, my graphics card is a little bit older than yours (ATI M11, aka Mobility 9700). You may have a different amount of video ram though.
Code:
Section "Device"
    BoardName                           "RV350 NP"
    Identifier                          "ATI Graphics Adapter"
#    Chipset                            "MOBILITY RADEON 9600/9700 (M10/M11 4E50)"
    Driver                              "fglrx"
# === disable PnP Monitor  ===
    #Option                              "NoDDC"
# === disable/enable XAA/DRI ===
    Option "no_accel"                   "no"
    Option "no_dri"                     "no"
# === FireGL DDX driver module specific settings ===
#    Option "KernelModuleParm"          "agplock=0"
# === Screen Management ===
    Option "DesktopSetup"               "0x00000000"
    Option "MonitorLayout"              "AUTO, AUTO"
    Option "IgnoreEDID"                 "off"
    Option "HSync2"                     "unspecified"
    Option "VRefresh2"                  "unspecified"
    Option "ScreenOverlap"              "0"
    Option "GammaCorrectionI"           "0x00000000"
    Option "GammaCorrectionII"          "0x00000000"
# === OpenGL specific profiles/settings ===
    Option "Capabilities"               "0x00000000"
# === Video Overlay for the Xv extension ===
    Option "VideoOverlay"               "on"
# === OpenGL Overlay ===
# Note: When OpenGL Overlay is enabled, Video Overlay
#       will be disabled automatically
    Option "OpenGLOverlay"              "off"
# === Misc Options ===
    Option "UseFastTLS"                 "0"
    Option "EnablePrivateBackZ"         "yes"
    Option "BlockSignalsOnLock"         "on"
    Option "UseInternalAGPGART"         "no"
    Option "ForceGenericCPU"            "no"
    BusID "PCI:1:0:0"    # vendor=1002, device=4e50
    VideoRam    131072
    Screen 0
EndSection

_________________
Hermann
Back to top
View user's profile Send private message
lukas.svoboda
n00b
n00b


Joined: 15 Feb 2005
Posts: 33
Location: Prague, CZ

PostPosted: Sun Mar 26, 2006 6:54 pm    Post subject: Reply with quote

Thanks for your help, unfortunatelly X locks on startup with black screen with your settings.

Is there anyone here with working ATI X300 Mobility Radeon (64MB memory) and ATI drivers 8.23.7? Can you please send your xorg.conf? Thanks.

edit: I've tried Strowi's configuration from https://forums.gentoo.org/viewtopic-t-435072.html - everything seems to be OK now :)
Back to top
View user's profile Send private message
widremann
Veteran
Veteran


Joined: 14 Mar 2005
Posts: 1314

PostPosted: Sun Mar 26, 2006 8:46 pm    Post subject: Reply with quote

I have the same graphics card. Here's the relevant section of my xorg.conf:
Code:
Section "Device"
    Identifier  "ATI Graphics Adapter 0"
    Option      "RenderAccel" "true"            # [<bool>]
    Option      "PseudoColorVisuals" "false"
    Option      "VideoOverlay" "true"
    Option      "OpenGLOverlay" "false"
    Option      "ForceMonitors" "lvds,crt1"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
EndSection

That makes XV work for most programs (kmplayer has a problem with it, though, so I have to use x11 instead).
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