LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-20-2005, 04:10 PM   #1
NX-01
LQ Newbie
 
Registered: May 2005
Location: Boone, NC
Distribution: Slackware, Fedora, Ubuntu, Debian
Posts: 22

Rep: Reputation: 15
Radeon X600 PCI-E, Kernel 2.6.12


Ok I've been trying to get this thing working for a few days on Slack 10.1, with little success.

I've installed the latest version of the ATi drivers (from their site). I've compiled my kernel with PCI-E support built-in. Also even though it's a PCI-E card do I need agpgart? I've trying leaving it in, taking it out, and modulizing it, nothing seems to help.

I'm probably making some newb mistake ... :P plz don't beat on me too hard if I am ...

Here's the errors the ATi installer keeps generating:

ATI module generator V 2.0
==========================
initializing...
cleaning...
patching 'highmem.h'...
assuming new VMA API since we do have kernel 2.6.x...
doing Makefile based build for kernel 2.6.x and higher
make -C /lib/modules/2.6.12/build SUBDIRS=/lib/modules/fglrx/build_mod/2.6.x modules
make[1]: Entering directory `/usr/src/linux'
CC [M] /lib/modules/fglrx/build_mod/2.6.x/agp3.o
CC [M] /lib/modules/fglrx/build_mod/2.6.x/nvidia-agp.o
CC [M] /lib/modules/fglrx/build_mod/2.6.x/agpgart_be.o
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c: In function `agp_find_supported_device':
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7136: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7156: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7161: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7187: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7207: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7227: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7232: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c: In function `__fgl_agp_init':
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7613: warning: `pm_register' is deprecated (declared at include/linux/pm.h:106)
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c: In function `__fgl_agp_cleanup':
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7623: warning: `pm_unregister_all' is deprecated (declared at include/linux/pm.h:116)
make[2]: *** [/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.o] Error 1
make[1]: *** [_module_/lib/modules/fglrx/build_mod/2.6.x] Error 2
make[1]: Leaving directory `/usr/src/linux'
make: *** [kmod_build] Error 2
build failed with return value 2
[Error] Kernel Module : Failed to compile kernel module - please consult readme.
~
 
Old 06-23-2005, 10:33 AM   #2
ZmaTkar
LQ Newbie
 
Registered: Jun 2005
Distribution: Debian unstable
Posts: 1

Rep: Reputation: 0
Hm, your problem is same as mine.
Errors are generated, because structure "dev" has no member slot_name.
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7136: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7156: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7161: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7187: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7207: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7227: error: structure has no member named `slot_name'
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7232: error: structure has no member named `slot_name'

Editing file agpgart_be.c may help compiler compile module. If you replace dev->slot_name on lines 7136,7156 ... 7232 with " " or some other string constant, driver will be compiled.
I did this, but still not working because another error:

fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
fglrx: Unknown symbol inter_module_get

Actualy I dont know how to fix it.
 
Old 06-23-2005, 02:55 PM   #3
FoxMan
LQ Newbie
 
Registered: Jun 2005
Distribution: Debian SID
Posts: 1

Rep: Reputation: 0
You'll have to change all calls to dev->slot_name, because this is not supported by the newer linux kernels anymore. You can use the function pci_name() instead. So just change dev->slot_name to pci_name(dev) and it should compile

Edit:

The other problem is caused by firegl_public.c. It uses the function inter_module_get, you'll have to replace it with the function inter_module_get_request. But inter_module_get_request accepts 2 parameters, inter_module_get appears 3 times in the file. The first time it has to be changed to inter_module_get_request(x,y), the second inter_module_get_request("drm","drm") and the last to inter_module_get_request("drm_agp","drm_agp"). And that's is

Last edited by FoxMan; 06-23-2005 at 04:25 PM.
 
Old 06-24-2005, 01:43 AM   #4
NX-01
LQ Newbie
 
Registered: May 2005
Location: Boone, NC
Distribution: Slackware, Fedora, Ubuntu, Debian
Posts: 22

Original Poster
Rep: Reputation: 15
OK thanks for the help, finally got the buggar to compile ... now I get this when I do a modprode to load up the fglrx module ...

FATAL: Error inserting fglrx (/lib/modules/2.6.12/kernel/drivers/char/drm/fglrx.ko): Operation not permitted

any ideas?
 
Old 06-24-2005, 03:18 AM   #5
cathectic
Member
 
Registered: Sep 2004
Location: UK, Europe
Distribution: Slackware64
Posts: 761

Rep: Reputation: 35
Disable/remove DRM (Direct Rendering Manager) from your kernel.
 
Old 06-24-2005, 04:00 AM   #6
sovietpower
Member
 
Registered: Jun 2003
Distribution: Slackware64 14.1 and -current
Posts: 209

Rep: Reputation: 30
when I change dev->slot_name to pci_name(dev) I get

/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7136: error: parse error before ";" token
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7156: error: parse error before ";" token
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7161: error: parse error before ";" token
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7187: error: parse error before ";" token
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7207: error: parse error before ";" token
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7227: error: parse error before ";" token
/lib/modules/fglrx/build_mod/2.6.x/agpgart_be.c:7232: error: parse error before ";" token

why is there a parse error?

Last edited by sovietpower; 06-24-2005 at 04:03 AM.
 
Old 06-25-2005, 12:57 AM   #7
NX-01
LQ Newbie
 
Registered: May 2005
Location: Boone, NC
Distribution: Slackware, Fedora, Ubuntu, Debian
Posts: 22

Original Poster
Rep: Reputation: 15
Ok, now I get a seg fault when I try and modprobe it (only sometimes) the rest of the time modprobe just hangs ...

Any ideas?
 
Old 06-26-2005, 12:28 AM   #8
NX-01
LQ Newbie
 
Registered: May 2005
Location: Boone, NC
Distribution: Slackware, Fedora, Ubuntu, Debian
Posts: 22

Original Poster
Rep: Reputation: 15
Well I got that fixed as well ... anyway

I'm still trying to get the thing to not suck. I once had 2700+ FPS in glxgears and then I rebooted and some how I've lost most DRI capability ... or something like that cause I went down to ~350 FPS in glxgears.

I didn't change anything .. I've the module built and confiured properly now. But now I'm really lost ... lol I'm tempted to throw this thing up on eBay and get an nVidia ...
 
Old 07-04-2005, 12:47 PM   #9
Atmchicago
Member
 
Registered: Apr 2003
Location: Baltimore
Distribution: Fedora
Posts: 220

Rep: Reputation: 32
Thumbs up

Thanks for the tips. they helped me too. I ended up just commenting out the references to the slots, since your fix didn't help, but the second issue worked. Perhaps writing a patch would be nice so that others can just apply it, but unfortunately I don't know how to do that myself.

Edit: It turns out you really need to fix all those problems otherwise I would hang when it tried to load X. So I found my mistakes and corrected them... so much for being lazy!

Last edited by Atmchicago; 07-04-2005 at 01:05 PM.
 
Old 07-06-2005, 09:49 AM   #10
v1_ad
LQ Newbie
 
Registered: Jul 2005
Location: israel
Distribution: slackware 10.1
Posts: 13

Rep: Reputation: 0
Question fglrx problem kernel 2.6.12.2

Hello !
I've done all stuff that you mentioned here,
fglrx compiled with no errors

modprobe fglrx gives no errors

[17:42][vlad@vld36:~]$ lsmod|grep fglrx
fglrx 240508 0
agpgart 29768 2 fglrx,intel_agp

but

[17:42][vlad@vld36:~]$ glxinfo |grep render
direct rendering: No
GLX_ATI_render_texture
OpenGL renderer string: Mesa GLX Indirect

[17:43][vlad@vld36:~]$ cat /var/log/Xorg.0.log |grep fglrx
(II) LoadModule: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
(II) fglrx(0): pEnt->device->identifier=0x8226ba0
(II) fglrx(0): === [R200PreInit] === begin, [s]
(II) fglrx(0): PCI bus 1 card 0 func 0
(**) fglrx(0): Depth 24, (--) framebuffer bpp 32
(II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) fglrx(0): Default visual is TrueColor
(**) fglrx(0): Option "NoAccel" "no"
(**) fglrx(0): Option "NoDRI" "no"
(**) fglrx(0): Option "Capabilities" "0x00000000"
(**) fglrx(0): Option "GammaCorrectionI" "0x00000000"
(**) fglrx(0): Option "GammaCorrectionII" "0x00000000"
(**) fglrx(0): Option "OpenGLOverlay" "off"
(**) fglrx(0): Option "VideoOverlay" "on"
(**) fglrx(0): Option "DesktopSetup" "0x00000000"
(**) fglrx(0): Option "MonitorLayout" "AUTO, AUTO"
(**) fglrx(0): Option "HSync2" "unspecified"
(**) fglrx(0): Option "VRefresh2" "unspecified"
(**) fglrx(0): Option "ScreenOverlap" "0"
(**) fglrx(0): Option "IgnoreEDID" "off"
(**) fglrx(0): Option "UseInternalAGPGART" "no"
(**) fglrx(0): Option "Stereo" "off"
(**) fglrx(0): Option "StereoSyncEnable" "1"
(**) fglrx(0): Option "UseFastTLS" "0"
(**) fglrx(0): Option "BlockSignalsOnLock" "on"
(**) fglrx(0): Option "ForceGenericCPU" "no"
(**) fglrx(0): Option "CenterMode" "off"
(**) fglrx(0): Option "FSAAScale" "1"
(**) fglrx(0): Option "FSAAEnable" "no"
(**) fglrx(0): Option "FSAADisableGamma" "no"
(**) fglrx(0): Option "FSAACustomizeMSPos" "no"
(**) fglrx(0): Option "FSAAMSPosX0" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY0" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX1" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY1" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX2" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY2" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX3" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY3" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX4" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY4" "0.000000"
(**) fglrx(0): Option "FSAAMSPosX5" "0.000000"
(**) fglrx(0): Option "FSAAMSPosY5" "0.000000"
(**) fglrx(0): Option "NoTV" "yes"
(**) fglrx(0): Option "TVStandard" "NTSC-M"
(**) fglrx(0): Option "TVHSizeAdj" "0"
(**) fglrx(0): Option "TVVSizeAdj" "0"
(**) fglrx(0): Option "TVHPosAdj" "0"
(**) fglrx(0): Option "TVVPosAdj" "0"
(**) fglrx(0): Option "TVHStartAdj" "0"
(**) fglrx(0): Option "TVColorAdj" "0"
(**) fglrx(0): Option "PseudoColorVisuals" "off"
(**) fglrx(0): Qbs disabled
(==) fglrx(0): FAST_SWAP disabled
(==) fglrx(0): RGB weight 888
(II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
(**) fglrx(0): Gamma Correction for I is 0x00000000
(**) fglrx(0): Gamma Correction for II is 0x00000000
(==) fglrx(0): Buffer Tiling is ON
(II) fglrx(0): initializing int10
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(**) fglrx(0): Option "mtrr" "on"
(--) fglrx(0): Chipset: "RADEON 9200 SE (RV280 5964)" (Chipset = 0x5964)
(--) fglrx(0): (PciSubVendor = 0x12ab, PciSubDevice = 0x5964)
(--) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
(--) fglrx(0): Linear framebuffer (phys) at 0xe8000000
(--) fglrx(0): MMIO registers at 0xf9000000
(--) fglrx(0): ChipExtRevID = 0x01
(--) fglrx(0): ChipIntRevID = 0x00
(--) fglrx(0): VideoRAM: 131072 kByte (64-bit DDR SDRAM)
(WW) fglrx(0): board is an unknown third party board, chipset is supported
(II) fglrx(0): I2C bus "DDC" initialized.
(II) fglrx(0): Connector Layout from BIOS --------
(II) fglrx(0): Connector1: DDCType-3, DACType-0, TMDSType--1, ConnectorType-2
(II) fglrx(0): Connector1: DDCType-4, DACType-1, TMDSType--1, ConnectorType-2
(**) fglrx(0): MonitorLayout Option:
(II) fglrx(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) fglrx(0): I2C device "DDC:ddc2" removed.
(II) fglrx(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) fglrx(0): I2C device "DDC:ddc2" removed.
(II) fglrx(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) fglrx(0): I2C device "DDC:ddc2" removed.
(II) fglrx(0): DDC detected on DDCType 4 with Monitor Type 0
(II) fglrx(0): Primary head:
(II) fglrx(0): Secondary head:
(II) fglrx(0):
(II) fglrx(0): DesktopSetup 0x0000
(**) fglrx(0): PseudoColor visuals disabled
(**) fglrx(0): Overlay disabled
(**) fglrx(0): Overlay disabled
(II) fglrx(0): PLL parameters: rf=2700 rd=12 min=20000 max=40000
(==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
(**) fglrx(0): Center Mode is disabled
(==) fglrx(0): TMDS coherent mode is enabled
(II) fglrx(0): Monitor0: Using hsync range of 31.50-91.10 kHz
(II) fglrx(0): Monitor0: Using vrefresh range of 60.00-100.00 Hz
(II) fglrx(0): Clock range: 20.00 to 400.00 MHz
(II) fglrx(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "800x600" (vrefresh out of range)
(II) fglrx(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1792x1344" (hsync out of range)
(II) fglrx(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1856x1392" (hsync out of range)
(II) fglrx(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "416x312" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1152x768" (vrefresh out of range)
(II) fglrx(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1920x1440" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1856x1392" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1792x1344" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1600x1200" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1400x1050" (width too large for virtual size)
(II) fglrx(0): Not using default mode "1400x1050" (width too large for virtual size)
(--) fglrx(0): Virtual size is 1280x1024 (pitch 1280)
(**) fglrx(0): *Default mode "1280x1024": 157.5 MHz (scaled from 0.0 MHz), 91.1 kHz, 85.0 Hz
(II) fglrx(0): Modeline "1280x1024" 157.50 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
(**) fglrx(0): *Default mode "1024x768": 94.5 MHz (scaled from 0.0 MHz), 68.7 kHz, 85.0 Hz
(II) fglrx(0): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
(**) fglrx(0): *Default mode "800x600": 56.3 MHz (scaled from 0.0 MHz), 53.7 kHz, 85.1 Hz
(II) fglrx(0): Modeline "800x600" 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync
(**) fglrx(0): *Default mode "640x480": 36.0 MHz (scaled from 0.0 MHz), 43.3 kHz, 85.0 Hz
(II) fglrx(0): Modeline "640x480" 36.00 640 696 752 832 480 481 484 509 -hsync -vsync
(**) fglrx(0): Default mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
(**) fglrx(0): Default mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
(**) fglrx(0): Default mode "1280x960": 148.5 MHz (scaled from 0.0 MHz), 85.9 kHz, 85.0 Hz
(II) fglrx(0): Modeline "1280x960" 148.50 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
(**) fglrx(0): Default mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x960" 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
(**) fglrx(0): Default mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
(**) fglrx(0): Default mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.1 kHz, 75.1 Hz
(II) fglrx(0): Modeline "1024x768" 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
(**) fglrx(0): Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.1 Hz
(II) fglrx(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
(**) fglrx(0): Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
(**) fglrx(0): Default mode "832x624": 57.3 MHz (scaled from 0.0 MHz), 49.7 kHz, 74.6 Hz
(II) fglrx(0): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync
(**) fglrx(0): Default mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync
(**) fglrx(0): Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.2 Hz
(II) fglrx(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync
(**) fglrx(0): Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
(II) fglrx(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync
(**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync
(**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.8 Hz
(II) fglrx(0): Modeline "640x480" 31.50 640 664 704 832 480 489 491 520 -hsync -vsync
(**) fglrx(0): Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync
(**) fglrx(0): Default mode "720x400": 35.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 85.0 Hz
(II) fglrx(0): Modeline "720x400" 35.50 720 756 828 936 400 401 404 446 -hsync +vsync
(**) fglrx(0): Default mode "640x400": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 85.1 Hz
(II) fglrx(0): Modeline "640x400" 31.50 640 672 736 832 400 401 404 445 -hsync +vsync
(**) fglrx(0): Default mode "640x350": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 85.1 Hz
(II) fglrx(0): Modeline "640x350" 31.50 640 672 736 832 350 382 385 445 +hsync -vsync
(==) fglrx(0): DPI set to (75, 75)
(**) fglrx(0): NoAccel = NO
(==) fglrx(0): HPV inactive
(==) fglrx(0): FSAA enabled: NO
(**) fglrx(0): FSAA Gamma enabled
(**) fglrx(0): FSAA Multisample Position is fix
(**) fglrx(0): NoDRI = NO
(II) Loading sub module "fglrxdrm"
(II) LoadModule: "fglrxdrm"
(II) Loading /usr/X11R6/lib/modules/linux/libfglrxdrm.a
(II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
(II) fglrx(0): Depth moves disabled by default
(**) fglrx(0): Capabilities: 0x00000000
(**) fglrx(0): cpuFlags: 0x8000001d
(**) fglrx(0): cpuSpeedMHz: 0x00000afe
(==) fglrx(0): OpenGL ClientDriverName: "atiogl_a_dri.so"
(**) fglrx(0): using built in AGPGART module: no
(**) fglrx(0): UseFastTLS=0
(**) fglrx(0): BlockSignalsOnLock=1
(==) fglrx(0): EnablePrivateBackZ = NO
(WW) fglrx(0): Cannot read colourmap from VGA. Will restore with default
(II) fglrx(0): UMM area: 0xe8701000 (size=0x078ff000)
(II) fglrx(0): driver needs X.org 6.8.x
(II) fglrx(0): detected X.org 6.8.2
(II) fglrx(0): doing DRIScreenInit
(II) fglrx(0): [drm] loaded kernel module for "fglrx" driver
(II) fglrx(0): [drm] DRM interface version 1.0
(II) fglrx(0): [drm] created "fglrx" driver at busid "PCI:1:0:0"
(II) fglrx(0): [drm] added 8192 byte SAREA at 0xe0e81000
(II) fglrx(0): [drm] mapped SAREA 0xe0e81000 to 0xb7c3e000
(II) fglrx(0): [drm] framebuffer handle = 0xe8000000
(II) fglrx(0): [drm] added 1 reserved context for kernel
(II) fglrx(0): DRIScreenInit done
(II) fglrx(0): Kernel Module Version Information:
(II) fglrx(0): Name: fglrx
(II) fglrx(0): Version: 8.14.13
(II) fglrx(0): Date: Jun 8 2005
(II) fglrx(0): Desc: ATI FireGL DRM kernel module
(II) fglrx(0): Kernel Module version matches driver.
(II) fglrx(0): Kernel Module Build Time Information:
(II) fglrx(0): Build-Kernel UTS_RELEASE: 2.6.12.2
(II) fglrx(0): Build-Kernel MODVERSIONS: no
(II) fglrx(0): Build-Kernel __SMP__: no
(II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
(II) fglrx(0): [drm] register handle = 0xf9000000
(EE) fglrx(0): [agp] unable to acquire AGP, error "xf86_ENODEV"
(EE) fglrx(0): cannot init AGP
(II) fglrx(0): [drm] removed 1 reserved context for kernel
(II) fglrx(0): [drm] unmapping 8192 bytes of SAREA 0xe0e81000 at 0xb7c3e000
(WW) fglrx(0): ***********************************************
(WW) fglrx(0): * DRI initialization failed! *
(WW) fglrx(0): * (maybe driver kernel module missing or bad) *
(WW) fglrx(0): * 2D acceleraton available (MMIO) *
(WW) fglrx(0): * no 3D acceleration available *
(WW) fglrx(0): ********************************************* *
(II) fglrx(0): FBADPhys: 0xe8000000 FBMappedSize: 0x08000000
(WW) fglrx(0): Failed to set up write-combining range (0xe8000000,0x8000000)
(II) fglrx(0): FBMM initialized for area (0,0)-(1280,8191)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,1024) (front color buffer - assumption)
(==) fglrx(0): Backing store disabled
(==) fglrx(0): Silken mouse enabled
(II) fglrx(0): Using hardware cursor (scanline 1024)
(II) fglrx(0): Largest offscreen area available: 1280 x 7163
(**) fglrx(0): DPMS enabled
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
(II) fglrx(0): Acceleration enabled
(II) fglrx(0): Direct rendering disabled
(**) fglrx(0): Video overlay enabled on CRTC1

I don't know what to do !?
Maybe I have to use built in AGPGART module, I'll try
Help me plz...
 
Old 07-06-2005, 10:02 AM   #11
v1_ad
LQ Newbie
 
Registered: Jul 2005
Location: israel
Distribution: slackware 10.1
Posts: 13

Rep: Reputation: 0
Exclamation fglrx kernel 2.6.12.2

Well ,
I've tried to use built in agpgart module...
after stratx screan goes black and computer freezes , only "resset" helps
Maybe someone knows what to do ...... ?
thank YOU !
Vlad
 
Old 07-06-2005, 04:57 PM   #12
Atmchicago
Member
 
Registered: Apr 2003
Location: Baltimore
Distribution: Fedora
Posts: 220

Rep: Reputation: 32
Yes, it turns out I have the same problem - screen freezes and need to do a hard reboot. Not sure why.
 
Old 07-07-2005, 12:11 AM   #13
v1_ad
LQ Newbie
 
Registered: Jul 2005
Location: israel
Distribution: slackware 10.1
Posts: 13

Rep: Reputation: 0
what does it mean "(EE) fglrx(0): [agp] unable to acquire AGP, error "xf86_ENODEV"" ?
Perhaps external agpgart (ati 8.14.13) is not compatible with 2.6.12 kernel !?
someone ???
 
Old 07-08-2005, 05:45 PM   #14
elderwin
LQ Newbie
 
Registered: Aug 2004
Posts: 1

Rep: Reputation: 0
Re: fglrx kernel 2.6.12.2

Quote:
Originally posted by v1_ad
Well ,
I've tried to use built in agpgart module...
after stratx screan goes black and computer freezes , only "resset" helps
Maybe someone knows what to do ...... ?
thank YOU !
Vlad
Glad it isn't just me that gets this... I have even gone back to the world of windows while i save for a high-end nvidia rather than have an ATI
 
Old 07-08-2005, 06:10 PM   #15
xushi
Senior Member
 
Registered: Jun 2003
Location: UK
Distribution: Gentoo
Posts: 1,288

Rep: Reputation: 45
I;m stuck too.. worst of all, i'm on a laptop
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Radeon X600 and Quake 3 NX-01 Slackware 2 11-15-2005 05:46 PM
help with radeon x600 rooster33 SUSE / openSUSE 10 11-02-2005 12:53 PM
Can't use a ATI MOBILITY RADEON X600 under mandrake 10 hpwit Linux - Hardware 0 10-13-2005 06:24 AM
Radeon X600, unknown chip? feeble2 Linux - Hardware 1 08-12-2005 07:20 PM
driver for ATI mobility radeon X600 mat_uk111 Linux - Newbie 7 07-22-2005 02:43 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:47 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration