You are not logged in.

#26 2008-03-10 01:41:06

arew264
Member
From: Friendswood, Texas, US
Registered: 2006-07-01
Posts: 394
Website

Re: Catalyst 8.3 vel 8.47 drivers released!

Commenting out my Xorg.conf and even recreating it using aticonfig -f didn't fix anything. Should I downgrade (if so, how?) or try to switch to the open source drivers?
my xorg.conf:

# Various Xorg extensions are loaded in the "Module" section
# These are various settings for the
# Xorg server. See man xorg.conf.
# This section defines your keyboard.
# See man keyboard for details
# The xf86-input-keyboard package must be installed
# This section defines your mouse.
# See man mouse for details
# The xf86-input-mouse package must be installed
# This example shows a standard wheel mouse

Section "ServerLayout"
    Identifier     "aticonfig-Layout[all]"
    Screen      0  "aticonfig-Screen[0]" 0 0
EndSection

Section "Files"

    # Always specify RgdPath like this
    # Add all your font directorires here.
    # If you don't know which ones you need,
    # just add the ones listed here:
    # This is the default module path
    # It is not necessary to add it here
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc/"
    FontPath     "/usr/share/fonts/TTF/"
    FontPath     "/usr/share/fonts/Type1/"
    FontPath     "/usr/share/fonts/75dpi/"
    FontPath     "/usr/share/fonts/100dpi/"
    FontPath     "/usr/share/fonts/local/"
EndSection

Section "Module"

    # like XVideo. These lines loads extmod, but omits
    # the DGA extension, which isn't required these days
    # If you want to load extmod completely, use this line instead
    #Load        "extmod"
    # You need the type1 and freetype modules for displaying
    # type1 and freetype fonts
    # OpenGL - don't load it if you use the nvidia driver
    Load  "dbe"
    # The extmod module contains some important extensions
    SubSection "extmod"
        Option        "omit xfree86-dga"
    EndSubSection
    Load  "type1"
    Load  "freetype"
    # The glx module is necessary for OpenGL applications
    Load  "glx"
    # Load the dri module if you want hardware-accelerated
    Load  "dri"
    # Depending on your system, you can add more modules here
EndSection

Section "InputDevice"

    #Option "XkbOptions" "..."
    Identifier  "Keyboard1"
    Driver      "kbd"
    Option        "AutoRepeat" "250 30"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "pc105"
    Option        "XkbLayout" "us"
    #Option "XkbVariant" "..."
EndSection

Section "InputDevice"

    # It should work for USB, PS/2 and serial mice
    Identifier  "Mouse1"
    Driver      "mouse"
    Option        "Protocol" "IMPS/2"
    # This option can always be /dev/input/mice
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier   "aticonfig-Monitor[0]"
    Option        "VendorName" "ATI Proprietary Driver"
    Option        "ModelName" "Generic Autodetecting Monitor"
    Option        "DPMS" "true"
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]"
    Driver      "fglrx"
    Option        "VideoOverlay" "on"
    Option        "OpenGLOverlay" "off"
    Option        "OverlayOnCRTC2" "1"
    Option        "Centermode" "on"
    Option        "DesktopSetup" "mirror"
    Option        "Capabilities" "0x00000800"
    Option        "TexturedVideoSync" "on"
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device     "aticonfig-Device[0]"
    Monitor    "aticonfig-Monitor[0]"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x800"
    EndSubSection
EndSection

Last edited by arew264 (2008-03-10 01:42:13)

Offline

#27 2008-03-10 02:46:28

joephantom
Member
From: Latinoamérica
Registered: 2008-01-09
Posts: 94
Website

Re: Catalyst 8.3 vel 8.47 drivers released!

I have an ATI X850 XT with catalyst 8.3-1 installed by pacman. I was using 1680x1050 resolution (native resolution of my Viewsonic VX2025wm) perfectly before update. Now I can't.
This is my /var/log/Xorg.0.log:
http://pastebin.ca/936070
This is my xorg.conf:

Section "ServerLayout"
    Identifier     "Simple Layout"
    Screen      0  "Default Screen" 0 0
    InputDevice    "MX1000" "CorePointer"
    InputDevice    "Generic Keyboard" "CoreKeyboard"
EndSection

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

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

Section "InputDevice"
    Identifier  "Generic Keyboard"
    Driver      "kbd"
    Option        "AutoRepeat" "500 30"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "pc104"
    Option        "XkbLayout" "latam"
    Option        "CoreKeyboard"
EndSection

Section "InputDevice"
    Identifier  "MX1000"
    Driver      "evdev"
    Option        "Name" "Logitech USB RECEIVER"
    Option        "Device" "/dev/input/event4" #(cat /proc/bus/input/devices)
    Option        "CorePointer"
EndSection

Section "Monitor"
        #V-freq: 60.00 Hz  // h-freq: 65.35 KHz
    Identifier   "Viewsonic VX2025wm"
    HorizSync    30.0 - 82.0
    VertRefresh  50.0 - 75.0
    ModeLine     "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087 -hsync +vsync
    Option        "DPMS"
EndSection

Section "Device"
    Identifier  "ATI X850 XT"
    Driver      "fglrx"
EndSection

Section "Screen"
    Identifier "Default Screen"
    Device     "ATI X850 XT"
    Monitor    "Viewsonic VX2025wm"
    DefaultDepth     24
    SubSection "Display"
        Viewport  0 0
        Depth     24
        Modes    "1680x1050" "1280x1024"
    EndSubSection
EndSection

Any idea?

Last edited by joephantom (2008-03-10 02:47:30)


By striving to do the impossible, man has always achieved what is possible. Those who have cautiously done no more than they believed possible have never taken a single step forward - Mikhail Bakunin

Offline

#28 2008-03-12 23:27:06

adax
Member
Registered: 2006-10-28
Posts: 31

Re: Catalyst 8.3 vel 8.47 drivers released!

I have the same problem as arew264,
fujitsu laptop running x1400.
glxgears reports about 53fps (way lower than before) but no gears are actually displayed.
also, none of the GL screensavers work, they just blank the screen.
there are no obvious errors in Xorg.0.log

oh well, at least i can watch video without the annoying diagonal now.

Offline

#29 2008-03-18 17:31:50

adax
Member
Registered: 2006-10-28
Posts: 31

Re: Catalyst 8.3 vel 8.47 drivers released!

hello.
has anyone else had the problem of the blank opengl?
does anyone have a solution?

Offline

#30 2008-03-21 05:35:36

arew264
Member
From: Friendswood, Texas, US
Registered: 2006-07-01
Posts: 394
Website

Re: Catalyst 8.3 vel 8.47 drivers released!

I solved the blank opengl by rolling back to the old version.

Offline

#31 2008-03-21 10:22:45

ora
Member
Registered: 2007-06-20
Posts: 26

Re: Catalyst 8.3 vel 8.47 drivers released!

Option "BackingStore" "on"
will slow my metacity
I disable it, everthing works except my mplayer still blinks  with Xv output when running compiz

Offline

#32 2008-03-21 14:15:57

zhuqin
Member
Registered: 2008-01-31
Posts: 61

Re: Catalyst 8.3 vel 8.47 drivers released!

ora wrote:

Option "BackingStore" "on"
will slow my metacity
I disable it, everthing works except my mplayer still blinks  with Xv output when running compiz

hi, blinking xv playback can be solved by a mplayer patch, take a look at
http://aur.archlinux.org/packages.php?ID=15690
& http://aur.archlinux.org/packages.php?ID=14304
it works perfectly.

Offline

#33 2008-04-19 17:39:04

Zibi1981
Member
From: Poland
Registered: 2008-01-31
Posts: 644

Re: Catalyst 8.3 vel 8.47 drivers released!

Any chance on ATI Catalyst™ 8.4 Proprietary Linux Display Driver in [extra] soon???


"... being a Linux user is sort of like living in a house inhabited by a large family of carpenters and architects. Every morning when you wake up, the house is a little different. Maybe there is a new turret, or some walls have moved. Or perhaps someone has temporarily removed the floor under your bed."

MSI Raider GE78HX 13VI-032PL

Offline

#34 2008-04-30 11:49:25

vlstefanovic
Member
From: Serbia
Registered: 2008-04-30
Posts: 2

Re: Catalyst 8.3 vel 8.47 drivers released!

Zibi1981 wrote:

Any chance on ATI Catalyst™ 8.4 Proprietary Linux Display Driver in [extra] soon???

smile

Offline

Board footer

Powered by FluxBB