View previous topic :: View next topic |
Author |
Message |
sephiroth2005.0 n00b
Joined: 19 Mar 2005 Posts: 14
|
Posted: Mon Mar 28, 2005 7:54 pm Post subject: no hardware accelearaton after installing ati-drivers |
|
|
Hi
i have radeon 9550 and Asrock motherboard on via chipset.
i have installed ati-drivers.. but in glxgears i have only 200fps. i think that is because of dri ??????
What should i do to have it working????
what modules should i have compiled in kenrel (2.6.11) and which i should not have?????? (agpgart?????)
PLEASE HELP
thx |
|
Back to top |
|
|
hlewagastir n00b
Joined: 30 Aug 2004 Posts: 10 Location: Sweden
|
Posted: Wed Mar 30, 2005 1:34 am Post subject: |
|
|
You need agpgart and also a specific agp-driver for your motherboard (since you have a via chipset I guess you should select "VIA chipset support") but you don't need to have them compiled into the kernel, you can have them as modules.
You also need to load the correct drivers for X in /etc/X11/xorg.conf (probably):
Load "radeon"
Load "dri"
I'm sure there are a lot of other things needed as well.
To check if you have DRI working, type 'glxinfo' in an xterm.
If it says "direct rendering: Yes" it's working. |
|
Back to top |
|
|
feardapenguin Guru
Joined: 23 Jul 2003 Posts: 414 Location: Texas
|
Posted: Wed Mar 30, 2005 2:06 am Post subject: |
|
|
I've got a similar config. Here are my kernel settings:
Code: | Device Drivers -->
Character Devices -->
/dev/agpgart (AGP Support) -->
M ATI chipset support
M VIA chipset support
Direct Rendering Manager -->
M ATI Radeon |
Next, /etc/modules.autoload.d/kernel-2.6 should contain something like:
Code: | agpgart
via-agp
radeon |
Then make sure your /etc/X11/xorg.conf (or XF86Config) is set with the following:
Add this to section "Module"
Code: | # This loads the GLX module
Load "glx"
# This loads the DRI module
Load "dri" |
In my case, the "Device" section is set up as follows:
Code: |
Section "Device"
Identifier "Card0"
Driver "radeon"
Option "AGPMode" "4"
EndSection |
Note that even though I've got an 8X AGP slot and card I have to run at "4".
Add this to the end of the file:
Code: | Section "DRI"
Mode 0666
EndSection |
With this setup my glxgears shows an average of 2250fps (at 16 color depth). Obviously, your mileage will vary based on your hardware. |
|
Back to top |
|
|
|