Phoronix Forums  

Go Back   Phoronix Forums > Linux Graphics / X.Org Drivers > AMD/ATI Linux

AMD/ATI Linux Technical support and discussion of the ATI/AMD proprietary Linux driver.

Reply
 
Thread Tools Display Modes
  #1  
Old 11-15-2006, 11:55 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,559
Default ATI fglrx 8.31.5 Display Drivers

No new features are in this release, but there is a chunk of resolved issues:

Quote:
# Setting the display resolution to 400x300 or less no longer results in the mouse pointer not being able to move across the entire desktop. Further details can be found in topic number 733-23732
# The graphics driver no longer hangs the system shortly after the X Server is started on Red Hat enterprise Linux 3 system running Uniprocessor kernels. Further details can be found in topic number 733-23731
# Playing a media file under any distribution with X Server 6.9 or greater no longer results in a brief pause or video tearing when resizing the video window or running the mouse pointer over the video player window. Further details can be found in topic number 733-23730
# Using aticonfig to set the TV format to PAL-COMB-N no longer fails to update the X Server configuration file. Further details can be found in topic number 733-23729
Release Notes: https://a248.e.akamai.net/f/674/9206...ux_8.31.5.html (Note they are now the AMD Proprietary Display Drivers)

Phoronix Review: http://www.phoronix.com/vr.php?view=7876
Reply With Quote
  #2  
Old 11-16-2006, 06:11 AM
crash_override crash_override is offline
Junior Member
 
Join Date: Nov 2006
Posts: 6
Default

Hi, I'm aThinkpad T60 user;
I've succesfullyy installed 8.29.6 drivers with you script on my FC6;

Now I'm trying to update to 8.31.5 but I receive some errors.

Which is the way do you used to install this driver on T60?

Thanks

Crash_Override

Linux Registered User #353811
---------------------------------
" I Shall Be Free "
The Freewheelin' Bob Dylan, 1963
Reply With Quote
  #3  
Old 11-16-2006, 06:44 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,559
Default

I just use ./ati-831-driver-name.run --buildpkg Fedora/FC6

What errors are you running into?
Reply With Quote
  #4  
Old 11-16-2006, 07:56 AM
crash_override crash_override is offline
Junior Member
 
Join Date: Nov 2006
Posts: 6
Default

Hi,
with ./ati-831-driver-name.run --buildpkg Fedora/FC6 I've built rpms.
After I've installed *.rpm without errors.
I've rebooted the pc, then I've run aticonfig --initial without errors; but direct rendering is disabled.

Code:
[root@hal9000 X11]# fglrxinfo 
Xlib:  extension "XFree86-DRI" missing on display ":0.0".
display: :0.0  screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.5.1)
this is my xorg.conf

Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "aticonfig-Screen[0]" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
EndSection

Section "Module"
        Load  "glx"
        Load  "dri"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "it"
EndSection

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

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[0]"
        Driver      "fglrx"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[0]"
        Device     "aticonfig-Device[0]"
        Monitor    "aticonfig-Monitor[0]"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection
Reply With Quote
  #5  
Old 11-16-2006, 08:04 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,559
Default

What errors are in your Xorg.0.log?

I have no problems with the T60 and the 8.31 drivers.
Reply With Quote
  #6  
Old 11-16-2006, 08:14 AM
crash_override crash_override is offline
Junior Member
 
Join Date: Nov 2006
Posts: 6
Default

Reply With Quote
  #7  
Old 11-16-2006, 08:23 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,559
Default

Oops I just noticed from your above xorg.conf that it doesn't look like Composite is disabled. Here is a working conf from a T60.

Quote:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "aticonfig-Screen[0]" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Synaptics" "CorePointer"
EndSection

Section "Files"
EndSection

Section "Module"
Load "dbe"
Load "v4l"
Load "extmod"
Load "type1"
Load "freetype"
Load "dri"
Load "glx"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Synaptics"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto-dev"
Option "Emulate3Buttons" "yes"
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"
EndSection

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

Section "Extensions"
Option "Composite" "disable"
EndSection
Reply With Quote
  #8  
Old 11-16-2006, 08:31 AM
crash_override crash_override is offline
Junior Member
 
Join Date: Nov 2006
Posts: 6
Default

But with

Code:
Section "Extensions"
Option "Composite" "disable"
EndSection
I can't run AIGLX...It's true?
Reply With Quote
  #9  
Old 11-16-2006, 08:44 AM
Michael Michael is offline
Phoronix
 
Join Date: Jun 2006
Location: United States
Posts: 4,559
Default

The fglrx drivers do not support AIGLX.
Reply With Quote
  #10  
Old 11-16-2006, 08:49 AM
crash_override crash_override is offline
Junior Member
 
Join Date: Nov 2006
Posts: 6
Default


oh no..... I've tryed with DRI drivers, but (I dont knw why) I can't build them; only may I hope for support in future releases....

Thank you very much for help.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 06:17 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright ©2004 - 2009 by Phoronix Media.