 |
 |
 |
 |
| Guides & Solutions (No Questions) Post your guides here (No links to Blogs accepted). You can also append your comments/questions to a guide, but don't start a new thread to ask a question. Use another forum for that. |

28th October 2006, 01:58 AM
|
|
Registered User
|
|
Join Date: Nov 2005
Location: Los Angeles area
Posts: 887

|
|
OK. I have used ati-driver-installer-8.29.6.
I still have a couple of errors showing up (in /var/log/Xorg.0.log).
[Of note, I did not have to do the moving/linking reported by kiram9. Also, I tried to
build the rpms again without the /usr/src/kernel link. I found the code in the build script (common/lib/modules/fglrx/build_mod/make.sh) which looks in /lib/2.*/build.]
Now, the first is that my board seems to have two chips. (It has connectors for two
monitors.) Only one is recognized (late in the process). The two chips are 7187 and 71a7.
Code:
(--) PCI:*(3:0:0) ATI Technologies Inc unknown chipset (0x7187) ... (Xorg.0.log
line 139)
(--) PCI: (3:0:1) ATI Technologies Inc unknown chipset (0x71a7) ... (line 140)
...
(II) ATI Radeon/FireGL: The following chipsets are supported:
...
RADEON X1300 (RV516 7187), MOBILITY RADEON X1350 (M62P 718B) ... (line
403)
(--) Chipset RADEON X1300 (RV516 7187) found (Xorg.0.log line 430)
The other issue is that _driCreateNewScreen_20050727 is not found. I found this symbol
in /usr/lib/xorg/modules/extensions/libglx.so. I do have "Load "glx"" in my xorg.conf file.
Any clues?
Code:
(EE) AIGLX error: dlsym for __driCreateNewScreen_20050727 failed (/usr/lib/dri/f
glrx_dri.so: undefined symbol: __driCreateNewScreen_20050727)
(EE) AIGLX: reverting to software rendering
|

28th October 2006, 03:19 AM
|
|
Registered User
|
|
Join Date: Mar 2004
Location: Montreal, PQ, Canada
Posts: 139

|
|
Quote:
|
Originally Posted by mwette
OK. I have used ati-driver-installer-8.29.6.
I still have a couple of errors showing up (in /var/log/Xorg.0.log).
[Of note, I did not have to do the moving/linking reported by kiram9. Also, I tried to
build the rpms again without the /usr/src/kernel link. I found the code in the build script (common/lib/modules/fglrx/build_mod/make.sh) which looks in /lib/2.*/build.]
Now, the first is that my board seems to have two chips. (It has connectors for two
monitors.) Only one is recognized (late in the process). The two chips are 7187 and 71a7.
Code:
(--) PCI:*(3:0:0) ATI Technologies Inc unknown chipset (0x7187) ... (Xorg.0.log
line 139)
(--) PCI: (3:0:1) ATI Technologies Inc unknown chipset (0x71a7) ... (line 140)
...
(II) ATI Radeon/FireGL: The following chipsets are supported:
...
RADEON X1300 (RV516 7187), MOBILITY RADEON X1350 (M62P 718B) ... (line
403)
(--) Chipset RADEON X1300 (RV516 7187) found (Xorg.0.log line 430)
The other issue is that _driCreateNewScreen_20050727 is not found. I found this symbol
in /usr/lib/xorg/modules/extensions/libglx.so. I do have "Load "glx"" in my xorg.conf file.
Any clues?
Code:
(EE) AIGLX error: dlsym for __driCreateNewScreen_20050727 failed (/usr/lib/dri/f
glrx_dri.so: undefined symbol: __driCreateNewScreen_20050727)
(EE) AIGLX: reverting to software rendering
|
Your first problem is not a problem, this is only a message informing you that a monitor couldn't be detected on the second video port.
Your second problem, is there because the fglrx doesn't support composite therefore AIGLX can't work. The solution is to add the following line in your /etc/X11/xorg.conf:
Code:
Section "ServerFlags"
Option "AIGLX" "off"
EndSection
Now, if you want to have the video effects, you'll need to configure xgl.
Last edited by glussier; 28th October 2006 at 03:21 AM.
|

28th October 2006, 03:19 PM
|
 |
Administrator
|
|
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224

|
|
I'm not sure if both will work, but I've testing
Code:
Section "Extensions"
Option "Composite" "False"
EndSection
To work and re-enable my DRI.
Firewing1
|

28th October 2006, 03:50 PM
|
 |
Retired Administrator
|
|
Join Date: Oct 2006
Posts: 21,509

|
|
HI here is a link to DRI
http://dri.freedesktop.org/wiki/ATIRadeon
DRI supported ATI list
7000 denotes a rv100 based card.
*
7200 denotes a R100 based card.
*
7500 denotes a rv200 based card.
*
8X00 denotes a R200 based card.
*
9000 denotes a rv250 based card.
*
9100 denotes a R200 based card
*
9200 denotes a rv280 based card.
o
Cards below this point are not well supported for 3D, but do have accelerated 2D
*
9500 denotes a R300 based card.
*
9600 denotes a rv350 or rv360 based card.
*
9700 denotes a R300 based card.
*
9800 denotes a R350 or R360 based card.
*
X300 denotes a rv370 based card.
*
X600 denotes a rv380 based card.
*
X700 denotes a rv410 based card.
*
X800 denotes a R420 or R423 or R430 based card. And some "X800 GTO" cards seems to be based on R480 too.
*
X850 denotes a R480 or R481 based card.
o
Cards below this point have no acceleration support
*
X1300 denotes a R515 based card.
*
X1600 denotes a R530 based card.
*
X1800 denotes a R520 based card.
*
X1900 denotes a R580 based card.
|

28th October 2006, 03:57 PM
|
 |
Administrator
|
|
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224

|
|
|
I'm pretty sure any recent ones (I'm not sure where the line is drawn, I think it's the X[whatever] series) don't work with the current 'radeon' driver in Fedora, but they will work if you use fglrx because they have their own DRI drivers.
However, you need to add that Option "Composite" "False" to your xorg.conf as the mainpage shows at the bottom or else fglrx will disable it's built-in DRI.
Firewing1
|

28th October 2006, 05:07 PM
|
|
Registered User
|
|
Join Date: Nov 2005
Location: Los Angeles area
Posts: 887

|
|
Quote:
|
Originally Posted by Firewing1
I'm pretty sure any recent ones (I'm not sure where the line is drawn, I think it's the X[whatever] series) don't work with the current 'radeon' driver in Fedora, but they will work if you use fglrx because they have their own DRI drivers.
However, you need to add that Option "Composite" "False" to your xorg.conf as the mainpage shows at the bottom or else fglrx will disable it's built-in DRI.
Firewing1
|
I've done all this and my board still doesn't work. glxgears and fgl_glxgears will
run (glxgears:125FPS, fgl_glxgears 620FPS) but the screen is blank. I am attaching
my xorg.conf file. Do you see anything that might be off?
Code:
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "ServerFlags"
# not supported by ATI proprietary driver
Option "AIGLX" "off"
EndSection
Section "Module"
Load "glx"
Load "dri"
Load "extmod"
Load "freetype"
Load "type1"
Load "record"
Load "fbdevhw"
Load "dbe"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
# doesn't work:
#Option "ButtonMapping" "3 2 1"
EndSection
Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1920x1200"
HorizSync 31.5 - 90.0
VertRefresh 59.9 - 60.1
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "fglrx"
# Got this from stuff on fedoraforum.org
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
Option "UseInternalAGPGART" "no"
# from freedesktop.org - based on "radeon" driver
#Option "AccelMethod" "XAA"
#Option "AccelDFS" "1"
#Option "AGPMode" "1"
#Option "AGPFastWrite" "1"
#Option "GARTSize" "64"
#Option "EnablePageFlip" "1"
#Option "ColorTiling" "1"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "DRI"
Mode 0666
EndSection
Section "Extensions"
Option "Composite" "Disable"
EndSection
|

28th October 2006, 05:30 PM
|
 |
Administrator
|
|
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224

|
|
Code:
# Got this from stuff on fedoraforum.org
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
Option "UseInternalAGPGART" "no"
# from freedesktop.org - based on "radeon" driver
#Option "AccelMethod" "XAA"
#Option "AccelDFS" "1"
#Option "AGPMode" "1"
#Option "AGPFastWrite" "1"
#Option "GARTSize" "64"
#Option "EnablePageFlip" "1"
#Option "ColorTiling" "1"
Never seen/used that before, that could be the issue.
BTW - Option "Composite" "False" not "Disable"
Firewing1
|

28th October 2006, 05:39 PM
|
 |
Retired Administrator
|
|
Join Date: Oct 2006
Posts: 21,509

|
|
|
VertRefresh 59.9 - 60.1 looks wrong to me
Last edited by leigh123linux; 28th October 2006 at 05:42 PM.
|

28th October 2006, 05:42 PM
|
 |
Administrator
|
|
Join Date: Dec 2004
Location: Canada
Age: 22
Posts: 9,224

|
|
|
Good point, refresh rates never even crossed my mind.
Firewing1
|

28th October 2006, 05:46 PM
|
|
Registered User
|
|
Join Date: Nov 2005
Location: Los Angeles area
Posts: 887

|
|
Quote:
|
Originally Posted by Firewing1
Never seen/used that before, that could be the issue.
BTW - Option "Composite" "False" not "Disable"
Firewing1
|
I removed the options (added them in as trial).
Good catch on the "composite" flag. (The xorg.conf man page says
viable options are "0", "off", "false", or "no".)
I retried. No changes. The "gears" programs run but nothing gets
displayed.
leigh, the vertrefresh number was stuffed in by aticonfig, if I remember right.
The display looks great under normal operation. Here is info from xvidtune:
1920x1200
HSyncStart: 1968, HSyncEnd: 2000, HTotal: 2080
VSyncStart: 1203, VSyncEnd: 1209, VTotal: 1235
Pixel clock: 154.00
Hsync: 74.4kHz
VSync: 59.95 Hz
|

28th October 2006, 05:51 PM
|
 |
Retired Administrator
|
|
Join Date: Oct 2006
Posts: 21,509

|
|
|
try checking with monitor maker for detail there should be two numbers for each value i.e 50 - 75 also you have no screen modes defined. and the font server doesnt get a look in?
Last edited by leigh123linux; 28th October 2006 at 05:54 PM.
|

28th October 2006, 05:58 PM
|
|
Registered User
|
|
Join Date: Mar 2004
Location: Montreal, PQ, Canada
Posts: 139

|
|
If it can help, here's my working fglrx /etc/X11/xorg.conf file. It's for dual head but easy to adapt to single monitor:
Code:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "aticonfig-Screen[0]" 0 0
Screen "aticonfig-Screen[1]" RightOf "aticonfig-Screen[0]"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
FontPath "unix/:7100"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "ca(fr)"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor 1024x768"
HorizSync 31.5 - 57.0
VertRefresh 50.0 - 70.0
Option "dpms"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[1]"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Gamma 2.0
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]"
Driver "fglrx"
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
Option "UseInternalAGPGART" "no"
BusID "PCI:2:0:0"
EndSection
Section "Device"
Identifier "aticonfig-Device[1]"
Driver "fglrx"
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
Option "UseInternalAGPGART" "no"
BusID "PCI:2:0:0"
Screen 1
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 "Screen"
Identifier "aticonfig-Screen[1]"
Device "aticonfig-Device[1]"
Monitor "aticonfig-Monitor[1]"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
Section "ServerFlags"
Option "AIGLX" "off"
EndSection
Section "Extensions"
Option "Composite" "Disable"
EndSection
|

28th October 2006, 06:07 PM
|
 |
Retired Administrator
|
|
Join Date: Oct 2006
Posts: 21,509

|
|
|
glussier's xorg.conf doesnt have his screen modes defined
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 16
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
|

28th October 2006, 06:15 PM
|
|
Registered User
|
|
Join Date: Nov 2005
Location: Los Angeles area
Posts: 887

|
|
Quote:
|
Originally Posted by leigh123
try checking with monitor maker for detail there should be two numbers for each value i.e 50 - 75 also you have no screen modes defined. and the font server doesnt get a look in?
|
Monitor: vendor (Dell 2407WFP reports max sync rate of 76Hz x 81kHz).
(I may boot WinXP today to see what XP is using.)
As far as fontpath. I just started from the default xorg.conf. Here is what Xorg.0.log says:
Code:
(WW) No FontPath specified. Using compiled-in default.
(==) FontPath set to:
unix/:7100,
built-in
|

28th October 2006, 06:29 PM
|
|
Registered User
|
|
Join Date: Mar 2004
Location: Montreal, PQ, Canada
Posts: 139

|
|
Quote:
|
Originally Posted by mwette
Monitor: vendor (Dell 2407WFP reports max sync rate of 76Hz x 81kHz).
(I may boot WinXP today to see what XP is using.)
As far as fontpath. I just started from the default xorg.conf. Here is what Xorg.0.log says:
Code:
(WW) No FontPath specified. Using compiled-in default.
(==) FontPath set to:
unix/:7100,
built-in
|
Add the following in your xorg.conf file and you'll get rid of the FontPath warning:
Code:
Section "Files"
FontPath "unix/:7100"
EndSection
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 23:52 (Thursday, 23-05-2013)
|
|
 |
 |
 |
 |
|
|