Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
ATI radeon Sticky
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page Previous  1, 2, 3 ... 70, 71, 72 ... 74, 75, 76  Next  
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
vitke
n00b
n00b


Joined: 18 Feb 2003
Posts: 24

PostPosted: Tue Jul 06, 2004 12:26 pm    Post subject: Reply with quote

Oh, I can't believe... After months of struggling DRI finally works on my my Radeon 7000 with 2.6.6 kernel!

Here I will describe the crucial points of this experience to enlight otherwise mysterious path of lonely hackers who dare to quest for DRI in Linux.

First, kernel configuration: Device Drivers -> Character Devices -> Direct Rendering Manager (isn't it logical to look for grapical extensions under "Character Devices"?): enable it, and enable ATI Radeon as a module (yes, do it, it is not supposed to be done in 2.4 kernels but in 2.6 it works). Edit /etc/modules.autoload.d/kernel-2.6 and add radeon.

Enable /dev/agpgart. I don't really understand do these agp drivers refer to the graphic card (it seems not), to the motherboard, or to the processor, so when I got tired of trying to exclude the unnecessary things, I just added all drivers, not as modules, and then it worked.

make bzImage, make modules, make modules_install, cp arch/i386/boot/bzImage /boot and configure your boot loader, then reboot.

Another important thing: you do NOT need to emerge ati-drivers and ati-drivers-extra. They are not for this card. If you did it, and you did "opengl-update ati", now you have to do "opengl-update xfree".

As with the 2.4 kernels, your /etc/X11/XF86Config should have the following entries:

Code:

...
Section "Module"
...
    Load       "glx"
    Load       "dri"
...
EndSection
...
Section "Device"
   BoardName "ATI Radeon 32 MB DDR AGP"
   Driver "ati" # or "radeon", it seems to be the same thing
   Option "AGPMode" "4" # or less, it's just a matter of speed
   Identifier "Device[0]"
   VendorName "ATI"
EndSection
...
Section "dri"
   Mode 0666 # I don't know if this matters
EndSection
...
Section "Screen"
    Identifier  "Screen 1"
    Device      "Device[0]"
...

And then it worked. I'm not saying that then it should work for you, because DRI in Linux is such a peculiar matter, full of traps... However, I still have the following error in /var/log/XFree86.0.log:
Code:

(WW) RADEON(0): Failed to set up write-combining range (0xd0000000,0x2000000)

I've found somewhere that this is just a matter of performance.

I'd like to note that 70 pages of discussion on such thing as DRI for Radeon is one of the reasons why Linux is usefull only if you happened a devoted hacker who has nothing better to do in life (like me). The rest have no choice. You know how it works in Windows? You insert the installation CD, press "Yes" couple of times, reboot, and it works. This is also the reason why we don't have enough support to fight the software patents in Europe. Drivers are extremely important, because people pay for their hardware and they want it to work (yes,so why don't I write one?).

So I'm dropping this post into this discussion in hope that someone will read it while it is still at the last page, because... did you actually read page 36?
Back to top
View user's profile Send private message
Wedge_
Advocate
Advocate


Joined: 08 Aug 2002
Posts: 3614
Location: Scotland

PostPosted: Tue Jul 06, 2004 2:34 pm    Post subject: Reply with quote

Quote:
Enable /dev/agpgart. I don't really understand do these agp drivers refer to the graphic card (it seems not), to the motherboard, or to the processor, so when I got tired of trying to exclude the unnecessary things, I just added all drivers, not as modules, and then it worked.

Those options are for the AGP chipset on the motherboard. It doesn't matter what type of graphics card you have, just pick the one that matches your board.
_________________
Per Ardua Ad Astra
The Earth is the cradle of the mind, but we cannot live forever in a cradle - Konstantin E. Tsiolkovsky
Gentoo Radeon FAQ
Back to top
View user's profile Send private message
carsten90
n00b
n00b


Joined: 30 Jun 2004
Posts: 21

PostPosted: Tue Jul 06, 2004 6:24 pm    Post subject: Reply with quote

Hello,
it's me again... Sorry for beeing annoying... (is this sentence correct? I'm not good in English ;))

Well, I get great glxgears scores... But very bad Americas Army scores. About 15fps sometimes. Much worse than in windoze.

Then I noticed an error in dmesg... The last lines of 'dmesg | grep fglrx':

Code:
 [<e095e564>] drm_getmagic+0x124/0x1c0 [fglrx]
 [<e095e440>] drm_getmagic+0x0/0x1c0 [fglrx]
 [<e0950e8d>] firegl_ioctl+0x15d/0x1e0 [fglrx]
[fglrx:firegl_agp_lock_pages] *ERROR* agp_allocate_memory_phys_list failed


The error happens, when I play armyops. I tried it a few times, armyops causes it.

Any suggestions?

Thank you again...

Carsten
Back to top
View user's profile Send private message
sven99
n00b
n00b


Joined: 06 Jul 2004
Posts: 1

PostPosted: Tue Jul 06, 2004 7:34 pm    Post subject: Reply with quote

Quote:

Red_Weasel wrote:
After banging my head around and dealing with the "xf86_ENOMEM" issue, here's my configuration that now reports Direct Rendering: YES.

System:
AMD Athlon 2500+
512MB DDR (2x256MB)
Abit NF7-S Rev. 2
Made by Radeon 9600/128MB

Environment:
Vanilla dev kernel (2.6.7)
ati-drivers 3.9.0-r1
`opengl-update ati`

Here's the steps I performed to get this to work:
1. Increased the AGP Apeture to 128MB in BIOS
2. Added
Code:
Option "UseInternalAGPGART" "no"
to the card section of /etc/X11/XF86config
3. Compiled /dev/agpgart (AGP Support) and NVIDIA nforce/nforce2 chipset support as modules (No DRM necessary)
4. De-selected Hangcheck Timer (This is what got it to work)

My `dmesg` is now clean of Fire GL errors and I have 2100fps.



Disabling Hangcheck Timer worked for me too! (On an Asus A7N8X Deluxe w/ Radeon 9700.) Thanks for sharing this. Any chance of someone putting this in one of the Gentoo/ATI/N-Force FAQs :idea: :?:
Back to top
View user's profile Send private message
Wedge_
Advocate
Advocate


Joined: 08 Aug 2002
Posts: 3614
Location: Scotland

PostPosted: Tue Jul 06, 2004 7:38 pm    Post subject: Reply with quote

I'll add it to mine sometime soon.
_________________
Per Ardua Ad Astra
The Earth is the cradle of the mind, but we cannot live forever in a cradle - Konstantin E. Tsiolkovsky
Gentoo Radeon FAQ
Back to top
View user's profile Send private message
zerb
Tux's lil' helper
Tux's lil' helper


Joined: 07 Aug 2003
Posts: 145
Location: Germany

PostPosted: Wed Jul 07, 2004 6:39 pm    Post subject: Reply with quote

any ideas about my issue already?
Back to top
View user's profile Send private message
veezi
Apprentice
Apprentice


Joined: 10 Nov 2003
Posts: 226

PostPosted: Wed Jul 07, 2004 8:48 pm    Post subject: Reply with quote

Hello all ..

Does anybody get more than 800 FPS with the following:
Radeon 9200 AGP, 128MB
Xorg X11
Kernel 2.6.6
ATI drivers 3.9

Show your X11 config, or just tell me what did you do?

Thanks,
Back to top
View user's profile Send private message
boxofdeath
n00b
n00b


Joined: 16 May 2004
Posts: 30

PostPosted: Thu Jul 08, 2004 6:09 am    Post subject: Reply with quote

Hi all who are in need of help with getting a stupid ati card to work! After a month and a half of jumping around in fourms faq's and howto's I finaly found one that worked.

http://odin.prohosting.com/wedge01/gentoo-radeon-faq.html

It solved most of my problems, and got DRI and glx to work... but now I'm having problems with running anything in wine or winex3. Why i try and load Counter-Strike in winex3 the screan just freezes and i can only move my mouse. I then have to killall wine on a remote box to get back to my desktop. When I try and run photoshop using wine the screen goes black and yet again I must do a killall. I am currently using the 3.9.0 ATI drivers xfree-4.3.0-r6 with the gentoo-dev-sources-2.6.7-r8 kernel on a Radeon 9200. Any clue as to howto get my wine working again?
Back to top
View user's profile Send private message
tcma
Apprentice
Apprentice


Joined: 28 Jun 2004
Posts: 208

PostPosted: Fri Jul 09, 2004 2:24 am    Post subject: X blank screen eMachines M6807 x86_64 64bit ATI Radeon 9600 Reply with quote

I try to install X on eMachines M6807 (AMD64) notebook which has ATI Mobility Radeon 9600 video card on 2.6.7-r8 gentoo x86_64 (64bit).
I unmerge the ati drivers because ati still has only a 32 bit driver released which won't work in 64 bit mode. I use the generic radeon driver in
xorg.conf. My mouse is usb which I had tested ok.
When I do Xorg -config /root/xorg.conf.new, I get a blank screen, but I can see my usb mouse moving around.

This is the Xorg.0.log file:
Code:

Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: Linux 2.6.7-gentoo-r8 x86_64 [ELF]
Current Operating System: Linux rose 2.6.7-gentoo-r8 #2 Thu Jul 8 16:06:14 EST 2004 x86_64
Build Date: 08 July 2004
   Before reporting problems, check http://wiki.X.Org
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Jul  8 17:33:55 2004
(++) Using config file: "/root/xorg.conf.new"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.2
   X.Org Video Driver: 0.7
   X.Org XInput driver : 0.4
   X.Org Server Extension : 0.2
   X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
Using vt 7
(--) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3188 card 1106,3188 rev 01 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b188 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:0a:0: chip 1524,1410 card 0000,0000 rev 00 class 06,07,00 hdr 02
(II) PCI: 00:0c:0: chip 14e4,4320 card 14e4,0418 rev 03 class 02,80,00 hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 161f,2032 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 161f,2032 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 161f,2032 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3104 card 161f,2032 rev 82 class 0c,03,20 hdr 00
(II) PCI: 00:11:0: chip 1106,3177 card 1106,3177 rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 161f,2032 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 161f,2032 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:11:6: chip 1106,3068 card 161f,2032 rev 80 class 07,80,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card 1106,0102 rev 74 class 02,00,00 hdr 00
(II) PCI: 00:13:0: chip 1106,3044 card 1106,3044 rev 80 class 0c,00,10 hdr 00
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 1002,4e50 card 161f,2032 rev 00 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
   [0] -1   0   0x00002000 - 0x000020ff (0x100) IX[B]
   [1] -1   0   0x00002400 - 0x000024ff (0x100) IX[B]
   [2] -1   0   0x00002800 - 0x000028ff (0x100) IX[B]
   [3] -1   0   0x00002c00 - 0x00002cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xd0100000 - 0xd01fffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B]
(II) PCI-to-CardBus bridge:
(II) Bus 2: bridge is at (0:10:0), (0,2,5), BCTRL: 0x03c0 (VGA_EN is cleared)
(II) Bus 2 prefetchable memory range:
   [0] -1   0   0xffe7e000 - 0xffe7efff (0x1000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:0), (-1,-1,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus -1 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:1), (-1,-1,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus -1 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:2), (-1,-1,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus -1 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus -1: bridge is at (0:24:3), (-1,-1,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus -1 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus -1 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus -1 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI:*(1:0:0) ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] rev 0, Mem @ 0xd8000000/27, 0xd0100000/16, I/O @ 0x2000/8
(II) Addressable bus resource ranges are
   [0] -1   0   0x00000000 - 0xffffffff (0x100000000) MX[B]
   [1] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xefffffff to 0xdfffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xd0002000 - 0xd00027ff (0x800) MX[B]
   [1] -1   0   0xd0002c00 - 0xd0002cff (0x100) MX[B]
   [2] -1   0   0xd0002800 - 0xd00028ff (0x100) MX[B]
   [3] -1   0   0xd0000000 - 0xd0001fff (0x2000) MX[B]
   [4] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [5] -1   0   0xd0100000 - 0xd010ffff (0x10000) MX[B](B)
   [6] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [7] -1   0   0x00001c00 - 0x00001c7f (0x80) IX[B]
   [8] -1   0   0x00001800 - 0x000018ff (0x100) IX[B]
   [9] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [10] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [11] -1   0   0x00001ce0 - 0x00001cef (0x10) IX[B]
   [12] -1   0   0x00001cc0 - 0x00001cdf (0x20) IX[B]
   [13] -1   0   0x00001ca0 - 0x00001cbf (0x20) IX[B]
   [14] -1   0   0x00001c80 - 0x00001c9f (0x20) IX[B]
   [15] -1   0   0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xd0002000 - 0xd00027ff (0x800) MX[B]
   [1] -1   0   0xd0002c00 - 0xd0002cff (0x100) MX[B]
   [2] -1   0   0xd0002800 - 0xd00028ff (0x100) MX[B]
   [3] -1   0   0xd0000000 - 0xd0001fff (0x2000) MX[B]
   [4] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [5] -1   0   0xd0100000 - 0xd010ffff (0x10000) MX[B](B)
   [6] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [7] -1   0   0x00001c00 - 0x00001c7f (0x80) IX[B]
   [8] -1   0   0x00001800 - 0x000018ff (0x100) IX[B]
   [9] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [10] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [11] -1   0   0x00001ce0 - 0x00001cef (0x10) IX[B]
   [12] -1   0   0x00001cc0 - 0x00001cdf (0x20) IX[B]
   [13] -1   0   0x00001ca0 - 0x00001cbf (0x20) IX[B]
   [14] -1   0   0x00001c80 - 0x00001c9f (0x20) IX[B]
   [15] -1   0   0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xd0002000 - 0xd00027ff (0x800) MX[B]
   [6] -1   0   0xd0002c00 - 0xd0002cff (0x100) MX[B]
   [7] -1   0   0xd0002800 - 0xd00028ff (0x100) MX[B]
   [8] -1   0   0xd0000000 - 0xd0001fff (0x2000) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xd0100000 - 0xd010ffff (0x10000) MX[B](B)
   [11] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [12] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [13] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [14] -1   0   0x00001c00 - 0x00001c7f (0x80) IX[B]
   [15] -1   0   0x00001800 - 0x000018ff (0x100) IX[B]
   [16] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [17] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [18] -1   0   0x00001ce0 - 0x00001cef (0x10) IX[B]
   [19] -1   0   0x00001cc0 - 0x00001cdf (0x20) IX[B]
   [20] -1   0   0x00001ca0 - 0x00001cbf (0x20) IX[B]
   [21] -1   0   0x00001c80 - 0x00001c9f (0x20) IX[B]
   [22] -1   0   0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.13.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "xtrap"
(II) Loading /usr/X11R6/lib/modules/extensions/libxtrap.a
(II) Module xtrap: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DEC-XTRAP
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
(II) Module speedo: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.1
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.2
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
   compiled for 6.7.0, module version = 2.1.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "ati"
(II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.o
(II) Module ati: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 6.5.6
   Module class: X.Org Video Driver
   ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.4
(II) ATI: ATI driver (version 6.5.6) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets:
   ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP),
   ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP),
   ATI Rage 128 Pro GL PA (AGP?), ATI Rage 128 Pro GL PB (AGP?),
   ATI Rage 128 Pro GL PC (AGP?), ATI Rage 128 Pro GL PD (PCI),
   ATI Rage 128 Pro GL PE (AGP?), ATI Rage 128 Pro GL PF (AGP),
   ATI Rage 128 Pro VR PG (AGP?), ATI Rage 128 Pro VR PH (AGP?),
   ATI Rage 128 Pro VR PI (AGP?), ATI Rage 128 Pro VR PJ (AGP?),
   ATI Rage 128 Pro VR PK (AGP?), ATI Rage 128 Pro VR PL (AGP?),
   ATI Rage 128 Pro VR PM (AGP?), ATI Rage 128 Pro VR PN (AGP?),
   ATI Rage 128 Pro VR PO (AGP?), ATI Rage 128 Pro VR PP (PCI),
   ATI Rage 128 Pro VR PQ (AGP?), ATI Rage 128 Pro VR PR (PCI),
   ATI Rage 128 Pro VR PS (AGP?), ATI Rage 128 Pro VR PT (AGP?),
   ATI Rage 128 Pro VR PU (AGP?), ATI Rage 128 Pro VR PV (AGP?),
   ATI Rage 128 Pro VR PW (AGP?), ATI Rage 128 Pro VR PX (AGP?),
   ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP),
   ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI),
   ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (AGP?),
   ATI Rage 128 4X SF (AGP?), ATI Rage 128 4X SG (AGP?),
   ATI Rage 128 4X SH (AGP?), ATI Rage 128 4X SK (AGP?),
   ATI Rage 128 4X SL (AGP?), ATI Rage 128 4X SM (AGP),
   ATI Rage 128 4X SN (AGP?), ATI Rage 128 Pro ULTRA TF (AGP),
   ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP),
   ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?),
   ATI Rage 128 Pro ULTRA TU (AGP?)
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
   ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
   ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI),
   ATI Radeon Mobility M7 LW (AGP),
   ATI Mobility FireGL 7800 M7 LX (AGP),
   ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
   ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336,
   ATI Radeon IGP330/340/350 (A4) 4137,
   ATI Radeon IGP330M/340M/350M (U2) 4337,
   ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437,
   ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
   ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP),
   ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI),
   ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI),
   ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP),
   ATI Radeon Mobility 9000 (M9) Lf (AGP),
   ATI Radeon Mobility 9000 (M9) Lg (AGP),
   ATI Radeon 9100 IGP (A5) 5834,
   ATI Radeon Mobility 9100 IGP (U3) 5835,
   ATI Radeon 9200PRO 5960 (AGP), ATI Radeon 9200 5961 (AGP),
   ATI Radeon 9200 5962 (AGP), ATI Radeon 9200SE 5964 (AGP),
   ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
   ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP),
   ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
   ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP),
   ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9700 NF (AGP),
   ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP),
   ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
   ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP),
   ATI FireGL RV360 AV (AGP), ATI Radeon Mobility 9600 (M10) NP (AGP),
   ATI Radeon Mobility 9600 (M10) NQ (AGP),
   ATI Radeon Mobility 9600 (M11) NR (AGP),
   ATI Radeon Mobility 9600 (M10) NS (AGP),
   ATI FireGL Mobility T2 (M10) NT (AGP),
   ATI FireGL Mobility T2 (M11) NV (AGP), ATI Radeon 9800SE AH (AGP),
   ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
   ATI FireGL X2 AK (AGP), ATI Radeon 9800PRO NH (AGP),
   ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
   ATI Radeon 9800XT NJ (AGP)
(II) Primary Device is: PCI 01:00:0
(II) ATI:  Candidate "Device" section "Card0".
(--) Chipset ATI Radeon Mobility 9600 (M10) NP (AGP) found
(II) resource ranges after xf86ClaimFixedResources() call:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xd0002000 - 0xd00027ff (0x800) MX[B]
   [6] -1   0   0xd0002c00 - 0xd0002cff (0x100) MX[B]
   [7] -1   0   0xd0002800 - 0xd00028ff (0x100) MX[B]
   [8] -1   0   0xd0000000 - 0xd0001fff (0x2000) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xd0100000 - 0xd010ffff (0x10000) MX[B](B)
   [11] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [12] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [13] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [14] -1   0   0x00001c00 - 0x00001c7f (0x80) IX[B]
   [15] -1   0   0x00001800 - 0x000018ff (0x100) IX[B]
   [16] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [17] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [18] -1   0   0x00001ce0 - 0x00001cef (0x10) IX[B]
   [19] -1   0   0x00001cc0 - 0x00001cdf (0x20) IX[B]
   [20] -1   0   0x00001ca0 - 0x00001cbf (0x20) IX[B]
   [21] -1   0   0x00001c80 - 0x00001c9f (0x20) IX[B]
   [22] -1   0   0x00002000 - 0x000020ff (0x100) IX[B](B)
(II) Loading sub module "radeon"
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.o
(II) Module radeon: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 4.0.1
   Module class: X.Org Video Driver
   ABI class: X.Org Video Driver, version 0.7
(II) resource ranges after probing:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xd0002000 - 0xd00027ff (0x800) MX[B]
   [6] -1   0   0xd0002c00 - 0xd0002cff (0x100) MX[B]
   [7] -1   0   0xd0002800 - 0xd00028ff (0x100) MX[B]
   [8] -1   0   0xd0000000 - 0xd0001fff (0x2000) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xd0100000 - 0xd010ffff (0x10000) MX[B](B)
   [11] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [12] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [13] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [14] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [15] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [16] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [17] -1   0   0x00001c00 - 0x00001c7f (0x80) IX[B]
   [18] -1   0   0x00001800 - 0x000018ff (0x100) IX[B]
   [19] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [20] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [21] -1   0   0x00001ce0 - 0x00001cef (0x10) IX[B]
   [22] -1   0   0x00001cc0 - 0x00001cdf (0x20) IX[B]
   [23] -1   0   0x00001ca0 - 0x00001cbf (0x20) IX[B]
   [24] -1   0   0x00001c80 - 0x00001c9f (0x20) IX[B]
   [25] -1   0   0x00002000 - 0x000020ff (0x100) IX[B](B)
   [26] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [27] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) RADEON(0): MMIO registers at 0xd0100000
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) RADEON(0): PCI bus 1 card 0 func 0
(==) RADEON(0): Depth 16, (==) framebuffer bpp 16
(II) RADEON(0): Pixel depth = 16 bits stored in 2 bytes (16 bpp pixmaps)
(==) RADEON(0): Default visual is TrueColor
(==) RADEON(0): RGB weight 565
(II) RADEON(0): Using 6 bits per RGB (8 bit DAC)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(--) RADEON(0): Chipset: "ATI Radeon Mobility 9600 (M10) NP (AGP)" (ChipID = 0x4e50)
(--) RADEON(0): Linear framebuffer at 0xd8000000
(--) RADEON(0): VideoRAM: 65536 kByte (128 bit DDR SDRAM)
(II) RADEON(0): AGP card detected
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.2.0
   ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): I2C bus "DDC" initialized.
(II) RADEON(0): DDC Type: 2, Detected Type: 0
(II) RADEON(0): DDC Type: 4, Detected Type: 0
(II) RADEON(0): Non-DDC laptop panel detected
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 3, Detected Type: 0
(II) RADEON(0): DDC Type: 4, Detected Type: 0
(II) RADEON(0): Displays Detected: Monitor1--Type 2, Monitor2--Type 0

(II) RADEON(0):
(II) RADEON(0): Primary Display == Type 2
(II) RADEON(0): Panel ID string: Samsung LTN154X1 WXGA   
(II) RADEON(0): Panel Size from BIOS: 1280x800
(II) RADEON(0): BIOS provided dividers will be used.
(==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
(II) RADEON(0): Validating modes on Primary head ---------
(II) RADEON(0): Total number of valid DDC mode(s) found: 0
(II) RADEON(0): No valid mode specified, force to native mdoe
(II) RADEON(0): Total number of valid FP mode(s) found: 1
(--) RADEON(0): Virtual size is 1280x800 (pitch 1280)
(**) RADEON(0): *Mode "1280x800": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "1280x800"   68.90  1280 1288 1328 1408  800 800 803 816
(**) RADEON(0):  Default mode "640x350": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "640x350"   68.90  640 1288 1328 1408  350 800 803 816
(**) RADEON(0):  Default mode "640x400": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "640x400"   68.90  640 1288 1328 1408  400 800 803 816
(**) RADEON(0):  Default mode "720x400": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "720x400"   68.90  720 1288 1328 1408  400 800 803 816
(**) RADEON(0):  Default mode "640x480": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "640x480"   68.90  640 1288 1328 1408  480 800 803 816
(**) RADEON(0):  Default mode "800x600": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "800x600"   68.90  800 1288 1328 1408  600 800 803 816
(**) RADEON(0):  Default mode "1024x768": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "1024x768"   68.90  1024 1288 1328 1408  768 800 803 816
(**) RADEON(0):  Default mode "832x624": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "832x624"   68.90  832 1288 1328 1408  624 800 803 816
(**) RADEON(0):  Default mode "1152x768": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) RADEON(0): Modeline "1152x768"   68.90  1152 1288 1328 1408  768 800 803 816
(==) RADEON(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.1.0
   ABI class: X.Org Video Driver, version 0.7
(II) RADEON(0): AGP Fast Write disabled by default
(II) RADEON(0): Depth moves disabled by default
(II) Loading sub module "shadowfb"
(II) LoadModule: "shadowfb"
(II) Loading /usr/X11R6/lib/modules/libshadowfb.a
(II) Module shadowfb: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.2
(II) RADEON(0): Page flipping disabled
(!!) RADEON(0): For information on using the multimedia capabilities
 of this adapter, please see http://gatos.sf.net.
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
   [0] 0   0   0xd0100000 - 0xd010ffff (0x10000) MX[B]
   [1] 0   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B]
   [2] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [3] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [4] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [5] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [6] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [7] -1   0   0xd0002000 - 0xd00027ff (0x800) MX[B]
   [8] -1   0   0xd0002c00 - 0xd0002cff (0x100) MX[B]
   [9] -1   0   0xd0002800 - 0xd00028ff (0x100) MX[B]
   [10] -1   0   0xd0000000 - 0xd0001fff (0x2000) MX[B]
   [11] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [12] -1   0   0xd0100000 - 0xd010ffff (0x10000) MX[B](B)
   [13] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [14] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B](OprU)
   [15] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU)
   [16] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B](OprU)
   [17] 0   0   0x00002000 - 0x000020ff (0x100) IX[B]
   [18] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [19] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [20] -1   0   0x00001c00 - 0x00001c7f (0x80) IX[B]
   [21] -1   0   0x00001800 - 0x000018ff (0x100) IX[B]
   [22] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [23] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [24] -1   0   0x00001ce0 - 0x00001cef (0x10) IX[B]
   [25] -1   0   0x00001cc0 - 0x00001cdf (0x20) IX[B]
   [26] -1   0   0x00001ca0 - 0x00001cbf (0x20) IX[B]
   [27] -1   0   0x00001c80 - 0x00001c9f (0x20) IX[B]
   [28] -1   0   0x00002000 - 0x000020ff (0x100) IX[B](B)
   [29] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
   [30] 0   0   0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(==) RADEON(0): Write-combining range (0xd8000000,0x4000000)
(WW) RADEON(0): Direct rendering not yet supported on Radeon 9500/9700 and newer cards
(II) RADEON(0): Memory manager initialized to (0,0) (1280,8191)
(II) RADEON(0): Reserved area from (0,800) to (1280,802)
(II) RADEON(0): Largest offscreen area available: 1280 x 7389
(II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
   Screen to screen bit blits
   Solid filled rectangles
   8x8 mono pattern filled rectangles
   Indirect CPU to Screen color expansion
   Solid Lines
   Scanline Image Writes
   Offscreen Pixmaps
   Setting up tile and stipple cache:
      32 128x128 slots
      32 256x256 slots
      16 512x512 slots
(II) RADEON(0): Acceleration enabled
(==) RADEON(0): Backing store disabled
(==) RADEON(0): Silken mouse enabled
(II) RADEON(0): Using hardware cursor (scanline 802)
(II) RADEON(0): Largest offscreen area available: 1280 x 7382
(II) RADEON(0): Direct rendering disabled
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/mouse"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: Core Pointer
(**) Option "Device" "/dev/mouse"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(==) Mouse0: Buttons: 3
(II) Keyboard "Keyboard0" handled by legacy driver
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
(II) RADEON(0): Wrote: rd=6, fd=61, pd=2
Back to top
View user's profile Send private message
tcma
Apprentice
Apprentice


Joined: 28 Jun 2004
Posts: 208

PostPosted: Fri Jul 09, 2004 9:22 pm    Post subject: Reply with quote

According to "The X Server Configuration HOWTO" documentation on the gentoo website, I should be able to:
"Now go into one of the terminals you see on your screen and type in exit (or press Ctrl-D) until Xorg shuts down."

However, I do not see any terminals on my screen, so I cannot type in exit.
Press Ctrl-D do not shut down Xorg.
Back to top
View user's profile Send private message
Wedge_
Advocate
Advocate


Joined: 08 Aug 2002
Posts: 3614
Location: Scotland

PostPosted: Fri Jul 09, 2004 9:52 pm    Post subject: Reply with quote

Try CTRL-ALT-Backspace then. To set up a window manager / desktop environment, read the Desktop Configuration guide: http://www.gentoo.org/doc/en/desktop.xml

Edit: you do know that the "radeon" driver won't give you 3D acceleration, right? The only way to get that, like I said in your other thread, would be to run the ATI binary driver in 32 bit mode.
_________________
Per Ardua Ad Astra
The Earth is the cradle of the mind, but we cannot live forever in a cradle - Konstantin E. Tsiolkovsky
Gentoo Radeon FAQ
Back to top
View user's profile Send private message
tcma
Apprentice
Apprentice


Joined: 28 Jun 2004
Posts: 208

PostPosted: Sat Jul 10, 2004 1:21 am    Post subject: Reply with quote

I continue to emerge kde and kde works as expected.
Even though "I do not see any terminals on my screen, so I cannot type in exit.
Press Ctrl-D do not shut down Xorg." when I was testing the twm window manager, maybe twm is really "ugly, loathsome, repulsive, deformed" as described in the "The X Server Configuration HOWTO" documentation on the gentoo website.

Thanks for all the help!
Back to top
View user's profile Send private message
Thad
n00b
n00b


Joined: 19 Jun 2004
Posts: 24

PostPosted: Mon Jul 12, 2004 2:47 am    Post subject: Reply with quote

First thing: have managed to get TV-out working in Clone mode. (This for some reason shrinks my X fonts almost to the point of illegibility; anybody know why?) Unfortunately, video won't play on the TV; it only plays on my CRT monitor, with a corresponding blank black window on the TV screen. There are settings under Windows to fix this and display the image on both screens; does anyone know the corresponding setting for X?

I also can't get any other mode -- wide desktop, dual-head -- to work properly. Have tried with default fglrxconfig-generated XF86config-4 and with slight modifications. Don't have an Xorg.0.log onhand that gives the errors; will post one later.

Meanwhile, I don't suppose anybody's had any sudden insight into my DRI/GLX problem? Sorry to rehash it, but essentially what happens is X.org dies with symbol errors when I try to load both DRI and GLX.

Here's the Xorg.0.log when I attempt to load both:

Code:
Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: Linux 2.6.7 i686 [ELF]
Current Operating System: Linux localhost 2.6.7 #1 Sun Jul 11 14:45:12 MST 2004 i686
Build Date: 11 July 2004
   Before reporting problems, check http://wiki.X.Org
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun Jul 11 16:53:11 2004
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Server Layout"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "ATI Graphics Adapter"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbModel" "microsoft"
(**) XKB: model: "microsoft"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/share/fonts/local/, /usr/share/fonts/misc/, /usr/share/fonts/75dpi/:unscaled, /usr/share/fonts/100dpi/:unscaled, /usr/share/fonts/Type1/, /usr/share/fonts/Speedo/, /usr/share/fonts/75dpi/, /usr/share/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.2
   X.Org Video Driver: 0.7
   X.Org XInput driver : 0.4
   X.Org Server Extension : 0.2
   X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(++) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3099 card 1043,807f rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b099 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:05:0: chip 13f6,0111 card 1043,80e2 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0e:0: chip 8086,1030 card 8086,1030 rev 08 class 02,00,00 hdr 00
(II) PCI: 00:0f:0: chip 1103,0004 card 1103,0005 rev 03 class 01,80,00 hdr 00
(II) PCI: 00:11:0: chip 1106,3147 card 1043,808c rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 1043,808c rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:2: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 00
(II) PCI: 00:11:3: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4e48 card 1002,0002 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,4e68 card 1002,0003 rev 00 class 03,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
   [0] -1   0   0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xc6800000 - 0xc7dfffff (0x1600000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xc8000000 - 0xdfffffff (0x18000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc Radeon R350 [Radeon 9800] rev 0, Mem @ 0xd8000000/27, 0xc7000000/16, I/O @ 0xd800/8, BIOS @ 0xd7fe0000/17
(--) PCI: (1:0:1) ATI Technologies Inc Radeon R350 [Radeon 9800] (Secondary) rev 0, Mem @ 0xc8000000/27, 0xc6800000/16
(II) Addressable bus resource ranges are
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
   [1] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xe3ffffff to 0xdfffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [1] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [2] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [3] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [4] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [5] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [6] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [7] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [8] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [9] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [10] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [11] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [12] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [13] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [14] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [15] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [16] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [17] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [18] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [1] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [2] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [3] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [4] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [5] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [6] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [7] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [8] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [9] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [10] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [11] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [12] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [13] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [14] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [15] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [16] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [17] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [18] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [14] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [15] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [16] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [17] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [18] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [19] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [20] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [21] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [22] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [23] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [24] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [25] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.2
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
   compiled for 6.7.0, module version = 2.1.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="Fire GL - ATI Research GmbH, Germany"
   compiled for 4.3.0.1, module version = 3.9.0
   Module class: XFree86 Video Driver
   ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.4
(II) FireGL8700/8800: Driver for chipset: ATI RV250 Id (R9000),
   ATI RV250 Ie (R9000), ATI RV250 If (R9000), ATI RV250 Ig (R9000),
   ATI RV250 Ld (M9), ATI RV250 Le (M9), ATI RV250 Lf (M9),
   ATI RV250 Lg (M9), ATI RV280 5960 (R9200 PRO),
   ATI RV280 Ya (R9200LE), ATI RV250SE Yd (R9200SE),
   ATI RV250 5C61 (M9+), ATI RV250 5C63 (M9+), ATI R200 QH (R8500),
   ATI R200 QL (R8500), ATI R200 QM (R9100), ATI R200 QT (R8500),
   ATI R200 QU (R9100), ATI R200 BB (R8500), ATI RV350 AP (R9600),
   ATI RV350SE AQ (R9600SE), ATI RV350 AR (R9600 PRO),
   ATI RV350 NP (M10), ATI R300 AD (R9500), ATI R300 AE (R9500),
   ATI R300 AF (R9500), ATI R300 AG (Fire GL Z1/X1),
   ATI R300 ND (R9700 PRO), ATI R300 NE (R9700/R9500 PRO),
   ATI R300 NF (R9600 TX), ATI R300 NG (Fire GL X1),
   ATI R350SE AH (R9800SE), ATI R350 AK (Fire GL unknown),
   ATI RV350 AT (Fire GL T2), ATI RV350 AU (Fire GL T2),
   ATI RV350 AV (Fire GL T2), ATI RV350 AW (Fire GL T2),
   ATI R350 NH (R9800), ATI R350LE NI (R9800LE), ATI R350 NJ (R9800),
   ATI R350 NK (Fire GL X2), ATI RV350 NT (WS/M10)
(II) Primary Device is: PCI 01:00:0
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset ATI R350 NH (R9800) found
(II) resource ranges after xf86ClaimFixedResources() call:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [14] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [15] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [16] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [17] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [18] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [19] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [20] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [21] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [22] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [23] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [24] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [25] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) fglrx(0): pEnt->device->identifier=0x8261680
(II) resource ranges after probing:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [14] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [15] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [19] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [20] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [21] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [22] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [23] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [24] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [25] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [26] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [27] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [28] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
   [29] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [30] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) fglrx(0): === [R200PreInit] === begin, [s]
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(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" "0x00000100"
(**) fglrx(0): Option "MonitorLayout" "CRT, STV"
(**) fglrx(0): Option "HSync2" "31.5       "
(**) fglrx(0): Option "VRefresh2" "50 - 70"
(**) 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" "no"
(**) 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): 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) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) fglrx(0): initializing int10
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(**) fglrx(0): Option "mtrr" "off"
(--) fglrx(0): Chipset: "ATI R350 NH (R9800)" (Chipset = 0x4e48)
(--) fglrx(0): (PciSubVendor = 0x1002, PciSubDevice = 0x0002)
(--) fglrx(0): board vendor info: original ATI grafics adapter
(--) fglrx(0): Linear framebuffer (phys) at 0xd8000000
(--) fglrx(0): MMIO registers at 0xc7000000
(--) fglrx(0): ROM-BIOS at 0xd7fe0000
(--) fglrx(0): ChipExtRevID = 0x00
(--) fglrx(0): ChipIntRevID = 0x02
(--) fglrx(0): VideoRAM: 131072 kByte (64-bit SDR SDRAM)
(II) fglrx(0): board/chipset is supported by this driver (original ATI board)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.2.0
   ABI class: X.Org Video Driver, version 0.7
(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): Connector0: DDCType-2, DACType-1, TMDSType-0, ConnectorType-3
(**) fglrx(0): MonitorLayout Option:
   Monitor1--Type CRT, Monitor2--Type STV

(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 2 with Monitor Type 0
(II) fglrx(0): Primary head:
 Monitor   -- CRT
 Connector -- DVI-I
 DAC Type  -- TVDAC/ExtDAC
 TMDS Type -- Internal
 DDC Type  -- DVI_DDC
(II) fglrx(0): Secondary head:
 Monitor   -- STV
 Connector -- VGA
 DAC Type  -- Primary
 TMDS Type -- NONE
 DDC Type  -- VGA_DDC
(II) fglrx(0):
(II) fglrx(0): DesktopSetup 0x0001
(**) fglrx(0): Using TV stanadard NTSC-M from configure file
(II) fglrx(0): TV stanadard 0
(**) fglrx(0): TV HSizeAdj: 0
(**) fglrx(0): TV VSizeAdj: 0
(**) fglrx(0): TV HPosAdj: 0
(**) fglrx(0): TV VPosAdj: 0
(**) fglrx(0): TV HStartAdj: 0
(**) fglrx(0): TV ColorAdj: 0
(**) 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; xclk=33800
(==) 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): Validating mode for clone (secondary) head ------------
(WW) fglrx(0): Mode 1600x1200 is not a valid TV mode.
(WW) fglrx(0): Mode 1400x1050 is not a valid TV mode.
(WW) fglrx(0): Mode 1280x1024 is not a valid TV mode.
(WW) fglrx(0): Mode 1280x960 is not a valid TV mode.
(WW) fglrx(0): Mode 1152x864 is not a valid TV mode.
(II) fglrx(0): Valid CloneTV Mode: 1024x768
(II) fglrx(0): Valid CloneTV Mode: 800x600
(II) fglrx(0): Valid CloneTV Mode: 640x480
(II) fglrx(0): Total of 3 clone modes found ------------

(II) fglrx(0): Validating modes on Primary head ---------
(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 "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1792x1344" (hsync out of range)
(II) fglrx(0): Not using default mode "896x672" (hsync out of range)
(II) fglrx(0): Not using default mode "1856x1392" (hsync out of range)
(II) fglrx(0): Not using default mode "928x696" (hsync out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "1152x768" (vrefresh out of range)
(II) fglrx(0): Not using default mode "576x384" (vrefresh out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(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)
(--) fglrx(0): Virtual size is 1600x1200 (pitch 1600)
(**) fglrx(0): *Default mode "1600x1200": 189.0 MHz, 87.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1600x1200"  189.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0): *Default mode "1400x1050": 155.8 MHz, 81.5 kHz, 74.8 Hz
(II) fglrx(0): Modeline "1400x1050"  155.80  1400 1464 1784 1912  1050 1052 1064 1090 +hsync +vsync
(**) fglrx(0): *Default mode "1280x1024": 157.5 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 "1280x960": 148.5 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 "1152x864": 108.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": 94.5 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, 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": 74.2 MHz, 85.9 kHz, 85.1 Hz (D)
(II) fglrx(0): Modeline "640x480"   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "1600x1200": 175.5 MHz, 81.2 kHz, 65.0 Hz
(II) fglrx(0): Modeline "1600x1200"  175.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0):  Default mode "1600x1200": 162.0 MHz, 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0):  Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync
(**) fglrx(0):  Default mode "1280x1024": 135.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, 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": 108.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 "1024x768": 78.8 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, 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, 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 "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I)
(II) fglrx(0): Modeline "1024x768"   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync
(**) fglrx(0):  Default mode "960x720": 117.0 MHz, 90.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "960x720"  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "928x696": 109.2 MHz, 86.4 kHz, 60.1 Hz (D)
(II) fglrx(0): Modeline "928x696"  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "896x672"  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "832x624": 57.3 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, 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, 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": 94.5 MHz, 87.5 kHz, 70.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 40.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 "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(II) fglrx(0): Modeline "700x525"   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "700x525"   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 78.8 MHz, 91.1 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x480": 36.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 "640x480": 31.5 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, 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, 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 "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x480"   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "720x400": 35.5 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, 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 "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "576x432"   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x350": 31.5 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):  Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   39.40  512 520 568 656  384 384 386 400 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   22.45  512 516 604 632  384 384 388 409 interlace doublescan +hsync +vsync
(**) fglrx(0):  Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(II) fglrx(0): Modeline "416x312"   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "400x300"   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(II) fglrx(0): Modeline "400x300"   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync
(==) fglrx(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(**) fglrx(0): NoAccel = NO
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.1.0
   ABI class: X.Org Video Driver, version 0.7
(==) 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="Fire GL - ATI Research GmbH, Germany"
   compiled for 4.3.0.1, module version = 3.9.0
   ABI class: XFree86 Server Extension, version 0.2
(II) fglrx(0): Depth moves disabled by default
(**) fglrx(0): Capabilities: 0x00000000
(**) fglrx(0): cpuFlags: 0x4000000f
(**) fglrx(0): cpuSpeedMHz: 0x0000063f
(==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
(**) fglrx(0): using built in AGPGART module: no
(**) fglrx(0): UseFastTLS=0
(**) fglrx(0): BlockSignalsOnLock=1
(==) fglrx(0): EnablePrivateBackZ = NO
(II) fglrx(0): using CAIL version [ATI LIB=CAIL.LIB,IA32,2.0024]
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
   [0] 0   0   0xc7000000 - 0xc700ffff (0x10000) MX[B]
   [1] 0   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B]
   [2] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [3] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [4] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [5] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [6] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [7] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [8] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [11] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [12] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [13] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [14] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [15] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [16] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [17] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [18] 0   0   0x0000d800 - 0x0000d8ff (0x100) IX[B]
   [19] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [20] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [21] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [22] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [23] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [24] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [25] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [26] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [27] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [28] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [29] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [30] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [31] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
   [32] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [33] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) fglrx(0): UMM area:     0xd8953000 (size=0x076ad000)
(II) fglrx(0): driver needs XFree86 version: 4.3.x
(WW) fglrx(0): could not detect XFree86 version (query_status=-3)
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
Symbol gnu_dev_makedev from module /usr/X11R6/lib/modules/linux/libdrm.a is unresolved!

   *** If unresolved symbols were reported above, they might not
   *** be the reason for the server aborting.

Fatal server error:
Caught signal 4.  Server aborting


Please consult the The X.Org Foundation support
    at http://wiki.X.Org
 for help.
Please also check the log file at "/var/log/Xorg.0.log" for additional information.


EDIT: Well this is really bizarre; the second half of my post renders correctly when I hit Preview but cuts off when I hit Submit. I'm going to go ahead and split it into two posts; apologies for the inconvenience.
_________________
Thad

www.corporate-sellout.com
Back to top
View user's profile Send private message
Thad
n00b
n00b


Joined: 19 Jun 2004
Posts: 24

PostPosted: Mon Jul 12, 2004 2:54 am    Post subject: Reply with quote

Continued:


And here's what it looks like when I comment out the DRI line and just load GLX:

Code:
Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: Linux 2.6.7 i686 [ELF]
Current Operating System: Linux localhost 2.6.7 #1 Sun Jul 11 14:45:12 MST 2004 i686
Build Date: 11 July 2004
   Before reporting problems, check http://wiki.X.Org
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun Jul 11 16:53:21 2004
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Server Layout"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "ATI Graphics Adapter"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbModel" "microsoft"
(**) XKB: model: "microsoft"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/share/fonts/local/, /usr/share/fonts/misc/, /usr/share/fonts/75dpi/:unscaled, /usr/share/fonts/100dpi/:unscaled, /usr/share/fonts/Type1/, /usr/share/fonts/Speedo/, /usr/share/fonts/75dpi/, /usr/share/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.2
   X.Org Video Driver: 0.7
   X.Org XInput driver : 0.4
   X.Org Server Extension : 0.2
   X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(++) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3099 card 1043,807f rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b099 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:05:0: chip 13f6,0111 card 1043,80e2 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0e:0: chip 8086,1030 card 8086,1030 rev 08 class 02,00,00 hdr 00
(II) PCI: 00:0f:0: chip 1103,0004 card 1103,0005 rev 03 class 01,80,00 hdr 00
(II) PCI: 00:11:0: chip 1106,3147 card 1043,808c rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 1043,808c rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:2: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 00
(II) PCI: 00:11:3: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4e48 card 1002,0002 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,4e68 card 1002,0003 rev 00 class 03,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
   [0] -1   0   0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xc6800000 - 0xc7dfffff (0x1600000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xc8000000 - 0xdfffffff (0x18000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc Radeon R350 [Radeon 9800] rev 0, Mem @ 0xd8000000/27, 0xc7000000/16, I/O @ 0xd800/8, BIOS @ 0xd7fe0000/17
(--) PCI: (1:0:1) ATI Technologies Inc Radeon R350 [Radeon 9800] (Secondary) rev 0, Mem @ 0xc8000000/27, 0xc6800000/16
(II) Addressable bus resource ranges are
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
   [1] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xe3ffffff to 0xdfffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [1] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [2] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [3] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [4] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [5] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [6] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [7] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [8] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [9] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [10] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [11] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [12] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [13] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [14] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [15] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [16] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [17] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [18] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [1] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [2] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [3] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [4] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [5] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [6] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [7] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [8] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [9] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [10] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [11] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [12] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [13] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [14] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [15] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [16] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [17] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [18] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [14] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [15] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [16] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [17] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [18] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [19] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [20] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [21] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [22] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [23] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [24] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [25] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.2
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
   compiled for 6.7.0, module version = 2.1.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="Fire GL - ATI Research GmbH, Germany"
   compiled for 4.3.0.1, module version = 3.9.0
   Module class: XFree86 Video Driver
   ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.4
(II) FireGL8700/8800: Driver for chipset: ATI RV250 Id (R9000),
   ATI RV250 Ie (R9000), ATI RV250 If (R9000), ATI RV250 Ig (R9000),
   ATI RV250 Ld (M9), ATI RV250 Le (M9), ATI RV250 Lf (M9),
   ATI RV250 Lg (M9), ATI RV280 5960 (R9200 PRO),
   ATI RV280 Ya (R9200LE), ATI RV250SE Yd (R9200SE),
   ATI RV250 5C61 (M9+), ATI RV250 5C63 (M9+), ATI R200 QH (R8500),
   ATI R200 QL (R8500), ATI R200 QM (R9100), ATI R200 QT (R8500),
   ATI R200 QU (R9100), ATI R200 BB (R8500), ATI RV350 AP (R9600),
   ATI RV350SE AQ (R9600SE), ATI RV350 AR (R9600 PRO),
   ATI RV350 NP (M10), ATI R300 AD (R9500), ATI R300 AE (R9500),
   ATI R300 AF (R9500), ATI R300 AG (Fire GL Z1/X1),
   ATI R300 ND (R9700 PRO), ATI R300 NE (R9700/R9500 PRO),
   ATI R300 NF (R9600 TX), ATI R300 NG (Fire GL X1),
   ATI R350SE AH (R9800SE), ATI R350 AK (Fire GL unknown),
   ATI RV350 AT (Fire GL T2), ATI RV350 AU (Fire GL T2),
   ATI RV350 AV (Fire GL T2), ATI RV350 AW (Fire GL T2),
   ATI R350 NH (R9800), ATI R350LE NI (R9800LE), ATI R350 NJ (R9800),
   ATI R350 NK (Fire GL X2), ATI RV350 NT (WS/M10)
(II) Primary Device is: PCI 01:00:0
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset ATI R350 NH (R9800) found
(II) resource ranges after xf86ClaimFixedResources() call:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [14] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [15] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [16] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [17] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [18] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [19] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [20] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [21] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [22] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [23] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [24] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [25] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) fglrx(0): pEnt->device->identifier=0x8261820
(II) resource ranges after probing:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [14] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [15] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [19] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [20] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [21] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [22] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [23] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [24] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [25] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [26] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [27] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [28] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
   [29] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [30] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) fglrx(0): === [R200PreInit] === begin, [s]
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(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" "0x00000100"
(**) fglrx(0): Option "MonitorLayout" "CRT, STV"
(**) fglrx(0): Option "HSync2" "31.5       "
(**) fglrx(0): Option "VRefresh2" "50 - 70"
(**) 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" "no"
(**) 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): 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) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) fglrx(0): initializing int10
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(**) fglrx(0): Option "mtrr" "off"
(--) fglrx(0): Chipset: "ATI R350 NH (R9800)" (Chipset = 0x4e48)
(--) fglrx(0): (PciSubVendor = 0x1002, PciSubDevice = 0x0002)
(--) fglrx(0): board vendor info: original ATI grafics adapter
(--) fglrx(0): Linear framebuffer (phys) at 0xd8000000
(--) fglrx(0): MMIO registers at 0xc7000000
(--) fglrx(0): ROM-BIOS at 0xd7fe0000
(--) fglrx(0): ChipExtRevID = 0x00
(--) fglrx(0): ChipIntRevID = 0x02
(--) fglrx(0): VideoRAM: 131072 kByte (64-bit SDR SDRAM)
(II) fglrx(0): board/chipset is supported by this driver (original ATI board)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.2.0
   ABI class: X.Org Video Driver, version 0.7
(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): Connector0: DDCType-2, DACType-1, TMDSType-0, ConnectorType-3
(**) fglrx(0): MonitorLayout Option:
   Monitor1--Type CRT, Monitor2--Type STV

(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 2 with Monitor Type 0
(II) fglrx(0): Primary head:
 Monitor   -- CRT
 Connector -- DVI-I
 DAC Type  -- TVDAC/ExtDAC
 TMDS Type -- Internal
 DDC Type  -- DVI_DDC
(II) fglrx(0): Secondary head:
 Monitor   -- STV
 Connector -- VGA
 DAC Type  -- Primary
 TMDS Type -- NONE
 DDC Type  -- VGA_DDC
(II) fglrx(0):
(II) fglrx(0): DesktopSetup 0x0001
(**) fglrx(0): Using TV stanadard NTSC-M from configure file
(II) fglrx(0): TV stanadard 0
(**) fglrx(0): TV HSizeAdj: 0
(**) fglrx(0): TV VSizeAdj: 0
(**) fglrx(0): TV HPosAdj: 0
(**) fglrx(0): TV VPosAdj: 0
(**) fglrx(0): TV HStartAdj: 0
(**) fglrx(0): TV ColorAdj: 0
(**) 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; xclk=33800
(==) 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): Validating mode for clone (secondary) head ------------
(WW) fglrx(0): Mode 1600x1200 is not a valid TV mode.
(WW) fglrx(0): Mode 1400x1050 is not a valid TV mode.
(WW) fglrx(0): Mode 1280x1024 is not a valid TV mode.
(WW) fglrx(0): Mode 1280x960 is not a valid TV mode.
(WW) fglrx(0): Mode 1152x864 is not a valid TV mode.
(II) fglrx(0): Valid CloneTV Mode: 1024x768
(II) fglrx(0): Valid CloneTV Mode: 800x600
(II) fglrx(0): Valid CloneTV Mode: 640x480
(II) fglrx(0): Total of 3 clone modes found ------------

(II) fglrx(0): Validating modes on Primary head ---------
(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 "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1792x1344" (hsync out of range)
(II) fglrx(0): Not using default mode "896x672" (hsync out of range)
(II) fglrx(0): Not using default mode "1856x1392" (hsync out of range)
(II) fglrx(0): Not using default mode "928x696" (hsync out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "1152x768" (vrefresh out of range)
(II) fglrx(0): Not using default mode "576x384" (vrefresh out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(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)
(--) fglrx(0): Virtual size is 1600x1200 (pitch 1600)
(**) fglrx(0): *Default mode "1600x1200": 189.0 MHz, 87.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1600x1200"  189.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0): *Default mode "1400x1050": 155.8 MHz, 81.5 kHz, 74.8 Hz
(II) fglrx(0): Modeline "1400x1050"  155.80  1400 1464 1784 1912  1050 1052 1064 1090 +hsync +vsync
(**) fglrx(0): *Default mode "1280x1024": 157.5 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 "1280x960": 148.5 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 "1152x864": 108.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": 94.5 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, 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": 74.2 MHz, 85.9 kHz, 85.1 Hz (D)
(II) fglrx(0): Modeline "640x480"   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "1600x1200": 175.5 MHz, 81.2 kHz, 65.0 Hz
(II) fglrx(0): Modeline "1600x1200"  175.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0):  Default mode "1600x1200": 162.0 MHz, 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0):  Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync
(**) fglrx(0):  Default mode "1280x1024": 135.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, 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": 108.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 "1024x768": 78.8 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, 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, 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 "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I)
(II) fglrx(0): Modeline "1024x768"   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync
(**) fglrx(0):  Default mode "960x720": 117.0 MHz, 90.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "960x720"  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "928x696": 109.2 MHz, 86.4 kHz, 60.1 Hz (D)
(II) fglrx(0): Modeline "928x696"  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "896x672"  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "832x624": 57.3 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, 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, 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": 94.5 MHz, 87.5 kHz, 70.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 40.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 "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(II) fglrx(0): Modeline "700x525"   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "700x525"   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 78.8 MHz, 91.1 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x480": 36.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 "640x480": 31.5 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, 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, 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 "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x480"   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "720x400": 35.5 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, 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 "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "576x432"   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x350": 31.5 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):  Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   39.40  512 520 568 656  384 384 386 400 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   22.45  512 516 604 632  384 384 388 409 interlace doublescan +hsync +vsync
(**) fglrx(0):  Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(II) fglrx(0): Modeline "416x312"   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "400x300"   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(II) fglrx(0): Modeline "400x300"   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync
(==) fglrx(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 0.1.0
   ABI class: X.Org Video Driver, version 0.7
(**) fglrx(0): NoAccel = NO
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="X.Org Foundation"
   compiled for 6.7.0, module version = 1.1.0
   ABI class: X.Org Video Driver, version 0.7
(==) 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="Fire GL - ATI Research GmbH, Germany"
   compiled for 4.3.0.1, module version = 3.9.0
   ABI class: XFree86 Server Extension, version 0.2
(II) fglrx(0): Depth moves disabled by default
(**) fglrx(0): Capabilities: 0x00000000
(**) fglrx(0): cpuFlags: 0x4000000f
(**) fglrx(0): cpuSpeedMHz: 0x0000063f
(==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
(**) fglrx(0): using built in AGPGART module: no
(**) fglrx(0): UseFastTLS=0
(**) fglrx(0): BlockSignalsOnLock=1
(==) fglrx(0): EnablePrivateBackZ = NO
(II) fglrx(0): using CAIL version [ATI LIB=CAIL.LIB,IA32,2.0024]
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
   [0] 0   0   0xc7000000 - 0xc700ffff (0x10000) MX[B]
   [1] 0   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B]
   [2] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [3] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [4] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [5] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [6] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [7] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [8] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [11] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [12] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [13] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [14] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [15] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [16] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [17] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [18] 0   0   0x0000d800 - 0x0000d8ff (0x100) IX[B]
   [19] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [20] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [21] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [22] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [23] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [24] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [25] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [26] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [27] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [28] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [29] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [30] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [31] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
   [32] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [33] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) fglrx(0): UMM area:     0xd8953000 (size=0x076ad000)
(II) fglrx(0): driver needs XFree86 version: 4.3.x
(WW) fglrx(0): could not detect XFree86 version (query_status=-3)
(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: 0xd8000000 FBMappedSize: 0x08000000
(II) fglrx(0): FBMM initialized for area (0,0)-(1600,8191)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1600,1200) (front color buffer - assumption)
(==) fglrx(0): Backing store disabled
(==) fglrx(0): Silken mouse enabled
(II) fglrx(0): Using hardware cursor (scanline 1200)
(II) fglrx(0): Largest offscreen area available: 1600 x 6988
(**) Option "dpms"
(**) fglrx(0): DPMS enabled
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
   Screen to screen bit blits
   Solid filled rectangles
   Solid Horizontal and Vertical Lines
   Offscreen Pixmaps
   Setting up tile and stipple cache:
      32 128x128 slots
      32 256x256 slots
      16 512x512 slots
(II) fglrx(0): Acceleration enabled
(II) fglrx(0): Direct rendering disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(==) RandR enabled
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMalloc from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMalloc from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMalloc from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMalloc from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmFree from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMalloc from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol drmMalloc from module /usr/X11R6/lib/modules/linux/libfglrxdrm.a is unresolved!
Symbol DRIGetDrawableInfo from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpBase from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpSize from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpEnable from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpRelease from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpDeviceId from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpVendorId from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmAgpGetMode from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol DRIGetDeviceInfo from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmMap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
Symbol drmUnmap from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
(II) Setting vga for screen 0.
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(**) Option "Protocol" "ImPS/2"
(**) Mouse1: Device: "/dev/mouse"
(**) Mouse1: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/mouse"
(==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 5
(II) Keyboard "Keyboard1" handled by legacy driver
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) Mouse1: ps2EnableDataReporting: succeeded
Could not init font path element /usr/share/fonts/local/, removing from list!
Could not init font path element /usr/share/fonts/Type1/, removing from list!
Could not init font path element /usr/share/fonts/Speedo/, removing from list!
SetClientVersion: 0 8
SetClientVersion: 0 8
SetGrabKeysState - disabled
SetGrabKeysState - enabled


I assume the reason for all the DRM symbol errors from fglrx is that DRI hasn't loaded correctly.

I've tried removing libfglrxdrm.a and re-emerging ati-drivers, and removing libdrm.a and re-emerging X.org. Same errors. Also, dumping X.org and going back to XFree generates similar difficulties.

Does anybody recognize these symbol errors and have any idea what might be causing them?

...Also, I've run opengl-update xorg-x11 and opengl-update ati. I am supposed to run both, right?

Anyhow. That's it for now. I'll go ahead and post the Xorg.0.log files with errors for dual-head and wide desktop when I get the time.

Thanks in advance.
_________________
Thad

www.corporate-sellout.com
Back to top
View user's profile Send private message
Nicolinux
Apprentice
Apprentice


Joined: 22 Dec 2002
Posts: 204

PostPosted: Tue Jul 13, 2004 12:34 am    Post subject: Reply with quote

Hi,

anybody here is talking about raw performance and installation problems. As a laptop user I also would like to ask if this ati crap also crashes other people's boxes when returning from hibernate mode (kernel 2.6.x).

Thanks
Stefan
Back to top
View user's profile Send private message
Thad
n00b
n00b


Joined: 19 Jun 2004
Posts: 24

PostPosted: Thu Jul 15, 2004 1:56 am    Post subject: Reply with quote

New and exciting errors!

I can now get XFree (I'm back to XFree for the moment; have been switching back and forth with X.org for awhile) to load without commenting out the DRI line. However, the error seems more nonsensical than ever; I have no idea why it occurs.

Here's the latest log:

Code:
This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to XFree86@XFree86.Org and patches submitted
to fixes@XFree86.Org.  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.0.1
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.7-gentoo-r10 i686 [ELF]
Build Date: 13 July 2004
   Before reporting problems, check http://www.XFree86.Org/
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
         (++) from command line, (!!) notice, (II) informational,
         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Wed Jul 14 18:29:48 2004
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Server Layout"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "ATI Graphics Adapter"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "microsoft"
(**) XKB: model: "microsoft"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/, /usr/X11R6/lib/X11/fonts/75dpi/:unscaled, /usr/X11R6/lib/X11/fonts/100dpi/:unscaled, /usr/X11R6/lib/X11/fonts/Type1/, /usr/X11R6/lib/X11/fonts/Speedo/, /usr/X11R6/lib/X11/fonts/75dpi/, /usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(++) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
   XFree86 ANSI C Emulation: 0.2
   XFree86 Video Driver: 0.6
   XFree86 XInput driver : 0.4
   XFree86 Server Extension : 0.2
   XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3099 card 1043,807f rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b099 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:05:0: chip 13f6,0111 card 1043,80e2 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0e:0: chip 8086,1030 card 8086,1030 rev 08 class 02,00,00 hdr 00
(II) PCI: 00:0f:0: chip 1103,0004 card 1103,0005 rev 03 class 01,80,00 hdr 00
(II) PCI: 00:11:0: chip 1106,3147 card 1043,808c rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 1043,808c rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:2: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 00
(II) PCI: 00:11:3: chip 1106,3038 card 1043,808c rev 23 class 0c,03,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4e48 card 1002,0002 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,4e68 card 1002,0003 rev 00 class 03,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
   [0] -1   0   0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xc6800000 - 0xc7dfffff (0x1600000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xc8000000 - 0xdfffffff (0x18000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x4e48) rev 0, Mem @ 0xd8000000/27, 0xc7000000/16, I/O @ 0xd800/8, BIOS @ 0xd7fe0000/17
(--) PCI: (1:0:1) ATI Technologies Inc unknown chipset (0x4e68) rev 0, Mem @ 0xc8000000/27, 0xc6800000/16
(II) Addressable bus resource ranges are
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
   [1] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xe3ffffff to 0xdfffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [1] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [2] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [3] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [4] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [5] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [6] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [7] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [8] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [9] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [10] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [11] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [12] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [13] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [14] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [15] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [16] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [17] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [18] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [1] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [2] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [3] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [4] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [5] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [6] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [7] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [8] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [9] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [10] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [11] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [12] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [13] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [14] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [15] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [16] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [17] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [18] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [6] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [14] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [15] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [16] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [17] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [18] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [19] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [20] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [21] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [22] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [23] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [24] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [25] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 Server Extension
   ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 Server Extension
   ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.2
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 2.0.2
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(WW) Warning, couldn't open module glx
(II) UnloadModule: "glx"
(EE) Failed to load module "glx" (module does not exist, 0)
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="Fire GL - ATI Research GmbH, Germany"
   compiled for 4.3.0.1, module version = 3.9.0
   Module class: XFree86 Video Driver
   ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   Module class: XFree86 XInput Driver
   ABI class: XFree86 XInput driver, version 0.4
(II) FireGL8700/8800: Driver for chipset: ATI RV250 Id (R9000),
   ATI RV250 Ie (R9000), ATI RV250 If (R9000), ATI RV250 Ig (R9000),
   ATI RV250 Ld (M9), ATI RV250 Le (M9), ATI RV250 Lf (M9),
   ATI RV250 Lg (M9), ATI RV280 5960 (R9200 PRO),
   ATI RV280 Ya (R9200LE), ATI RV250SE Yd (R9200SE),
   ATI RV250 5C61 (M9+), ATI RV250 5C63 (M9+), ATI R200 QH (R8500),
   ATI R200 QL (R8500), ATI R200 QM (R9100), ATI R200 QT (R8500),
   ATI R200 QU (R9100), ATI R200 BB (R8500), ATI RV350 AP (R9600),
   ATI RV350SE AQ (R9600SE), ATI RV350 AR (R9600 PRO),
   ATI RV350 NP (M10), ATI R300 AD (R9500), ATI R300 AE (R9500),
   ATI R300 AF (R9500), ATI R300 AG (Fire GL Z1/X1),
   ATI R300 ND (R9700 PRO), ATI R300 NE (R9700/R9500 PRO),
   ATI R300 NF (R9600 TX), ATI R300 NG (Fire GL X1),
   ATI R350SE AH (R9800SE), ATI R350 AK (Fire GL unknown),
   ATI RV350 AT (Fire GL T2), ATI RV350 AU (Fire GL T2),
   ATI RV350 AV (Fire GL T2), ATI RV350 AW (Fire GL T2),
   ATI R350 NH (R9800), ATI R350LE NI (R9800LE), ATI R350 NJ (R9800),
   ATI R350 NK (Fire GL X2), ATI RV350 NT (WS/M10)
(II) Primary Device is: PCI 01:00:0
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset ATI R350 NH (R9800) found
(II) resource ranges after xf86ClaimFixedResources() call:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [14] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [15] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [16] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [17] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [18] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [19] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [20] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [21] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [22] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [23] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [24] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [25] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
(II) fglrx(0): pEnt->device->identifier=0x8267348
(II) resource ranges after probing:
   [0] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [1] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [2] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [3] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [4] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [5] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [6] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [7] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [8] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [9] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [10] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [11] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [12] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [13] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [14] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [15] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [19] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [20] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [21] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [22] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [23] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [24] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [25] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [26] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [27] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [28] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
   [29] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [30] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) fglrx(0): === [R200PreInit] === begin, [s]
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 0.1.0
   ABI class: XFree86 Video Driver, version 0.6
(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" "0x00000100"
(**) fglrx(0): Option "MonitorLayout" "CRT, STV"
(**) fglrx(0): Option "HSync2" "31.5       "
(**) fglrx(0): Option "VRefresh2" "50 - 70"
(**) 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" "no"
(**) 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): 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) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 Video Driver, version 0.6
(II) fglrx(0): initializing int10
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(**) fglrx(0): Option "mtrr" "off"
(--) fglrx(0): Chipset: "ATI R350 NH (R9800)" (Chipset = 0x4e48)
(--) fglrx(0): (PciSubVendor = 0x1002, PciSubDevice = 0x0002)
(--) fglrx(0): board vendor info: original ATI grafics adapter
(--) fglrx(0): Linear framebuffer (phys) at 0xd8000000
(--) fglrx(0): MMIO registers at 0xc7000000
(--) fglrx(0): ROM-BIOS at 0xd7fe0000
(--) fglrx(0): ChipExtRevID = 0x00
(--) fglrx(0): ChipIntRevID = 0x02
(--) fglrx(0): VideoRAM: 131072 kByte (64-bit SDR SDRAM)
(II) fglrx(0): board/chipset is supported by this driver (original ATI board)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 Video Driver, version 0.6
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.2.0
   ABI class: XFree86 Video Driver, version 0.6
(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): Connector0: DDCType-2, DACType-1, TMDSType-0, ConnectorType-3
(**) fglrx(0): MonitorLayout Option:
   Monitor1--Type CRT, Monitor2--Type STV

(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 2 with Monitor Type 0
(II) fglrx(0): Primary head:
 Monitor   -- CRT
 Connector -- DVI-I
 DAC Type  -- TVDAC/ExtDAC
 TMDS Type -- Internal
 DDC Type  -- DVI_DDC
(II) fglrx(0): Secondary head:
 Monitor   -- STV
 Connector -- VGA
 DAC Type  -- Primary
 TMDS Type -- NONE
 DDC Type  -- VGA_DDC
(II) fglrx(0):
(II) fglrx(0): DesktopSetup 0x0001
(**) fglrx(0): Using TV stanadard NTSC-M from configure file
(II) fglrx(0): TV stanadard 0
(**) fglrx(0): TV HSizeAdj: 0
(**) fglrx(0): TV VSizeAdj: 0
(**) fglrx(0): TV HPosAdj: 0
(**) fglrx(0): TV VPosAdj: 0
(**) fglrx(0): TV HStartAdj: 0
(**) fglrx(0): TV ColorAdj: 0
(**) 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; xclk=33800
(==) 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): Validating mode for clone (secondary) head ------------
(WW) fglrx(0): Mode 1600x1200 is not a valid TV mode.
(WW) fglrx(0): Mode 1400x1050 is not a valid TV mode.
(WW) fglrx(0): Mode 1280x1024 is not a valid TV mode.
(WW) fglrx(0): Mode 1280x960 is not a valid TV mode.
(WW) fglrx(0): Mode 1152x864 is not a valid TV mode.
(II) fglrx(0): Valid CloneTV Mode: 1024x768
(II) fglrx(0): Valid CloneTV Mode: 800x600
(II) fglrx(0): Valid CloneTV Mode: 640x480
(II) fglrx(0): Total of 3 clone modes found ------------

(II) fglrx(0): Validating modes on Primary head ---------
(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 "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1792x1344" (hsync out of range)
(II) fglrx(0): Not using default mode "896x672" (hsync out of range)
(II) fglrx(0): Not using default mode "1856x1392" (hsync out of range)
(II) fglrx(0): Not using default mode "928x696" (hsync out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "1152x768" (vrefresh out of range)
(II) fglrx(0): Not using default mode "576x384" (vrefresh out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(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)
(--) fglrx(0): Virtual size is 1600x1200 (pitch 1600)
(**) fglrx(0): *Default mode "1600x1200": 189.0 MHz, 87.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1600x1200"  189.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0): *Default mode "1400x1050": 155.8 MHz, 81.5 kHz, 74.8 Hz
(II) fglrx(0): Modeline "1400x1050"  155.80  1400 1464 1784 1912  1050 1052 1064 1090 +hsync +vsync
(**) fglrx(0): *Default mode "1280x1024": 157.5 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 "1280x960": 148.5 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 "1152x864": 108.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": 94.5 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, 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": 74.2 MHz, 85.9 kHz, 85.1 Hz (D)
(II) fglrx(0): Modeline "640x480"   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "1600x1200": 175.5 MHz, 81.2 kHz, 65.0 Hz
(II) fglrx(0): Modeline "1600x1200"  175.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0):  Default mode "1600x1200": 162.0 MHz, 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync
(**) fglrx(0):  Default mode "1400x1050": 122.0 MHz, 64.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync
(**) fglrx(0):  Default mode "1280x1024": 135.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, 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": 108.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 "1024x768": 78.8 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, 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, 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 "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I)
(II) fglrx(0): Modeline "1024x768"   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync
(**) fglrx(0):  Default mode "960x720": 117.0 MHz, 90.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "960x720"  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "928x696": 109.2 MHz, 86.4 kHz, 60.1 Hz (D)
(II) fglrx(0): Modeline "928x696"  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "896x672": 102.4 MHz, 83.7 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "896x672"  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync
(**) fglrx(0):  Default mode "832x624": 57.3 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, 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, 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": 94.5 MHz, 87.5 kHz, 70.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 87.8 MHz, 81.2 kHz, 65.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 40.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 "800x600": 81.0 MHz, 75.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "800x600"   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 77.9 MHz, 81.5 kHz, 74.8 Hz (D)
(II) fglrx(0): Modeline "700x525"   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "700x525"   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 78.8 MHz, 91.1 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 67.5 MHz, 80.0 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x480": 36.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 "640x480": 31.5 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, 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, 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 "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x480"   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "720x400": 35.5 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, 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 "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "576x432"   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x350": 31.5 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):  Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   39.40  512 520 568 656  384 384 386 400 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   22.45  512 516 604 632  384 384 388 409 interlace doublescan +hsync +vsync
(**) fglrx(0):  Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(II) fglrx(0): Modeline "416x312"   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "400x300"   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(II) fglrx(0): Modeline "400x300"   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync
(==) fglrx(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.0.0
   ABI class: XFree86 ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 0.1.0
   ABI class: XFree86 Video Driver, version 0.6
(**) fglrx(0): NoAccel = NO
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="The XFree86 Project"
   compiled for 4.3.0.1, module version = 1.1.0
   ABI class: XFree86 Video Driver, version 0.6
(==) 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="Fire GL - ATI Research GmbH, Germany"
   compiled for 4.3.0.1, module version = 3.9.0
   ABI class: XFree86 Server Extension, version 0.2
(II) fglrx(0): Depth moves disabled by default
(**) fglrx(0): Capabilities: 0x00000000
(**) fglrx(0): cpuFlags: 0x4000000f
(**) fglrx(0): cpuSpeedMHz: 0x0000063f
(==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
(**) fglrx(0): using built in AGPGART module: no
(**) fglrx(0): UseFastTLS=0
(**) fglrx(0): BlockSignalsOnLock=1
(==) fglrx(0): EnablePrivateBackZ = NO
(II) fglrx(0): using CAIL version [ATI LIB=CAIL.LIB,IA32,2.0024]
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
   [0] 0   0   0xc7000000 - 0xc700ffff (0x10000) MX[B]
   [1] 0   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B]
   [2] -1   0   0xffe00000 - 0xffffffff (0x200000) MX[B](B)
   [3] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [4] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [5] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [6] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [7] -1   0   0xc5800000 - 0xc58fffff (0x100000) MX[B]
   [8] -1   0   0xc6000000 - 0xc6000fff (0x1000) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xc6800000 - 0xc680ffff (0x10000) MX[B](B)
   [11] -1   0   0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
   [12] -1   0   0xd7fe0000 - 0xd7ffffff (0x20000) MX[B](B)
   [13] -1   0   0xc7000000 - 0xc700ffff (0x10000) MX[B](B)
   [14] -1   0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
   [15] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [16] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [17] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [18] 0   0   0x0000d800 - 0x0000d8ff (0x100) IX[B]
   [19] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [20] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [21] -1   0   0x00008800 - 0x0000881f (0x20) IX[B]
   [22] -1   0   0x00009000 - 0x0000901f (0x20) IX[B]
   [23] -1   0   0x00009400 - 0x0000940f (0x10) IX[B]
   [24] -1   0   0x00009800 - 0x000098ff (0x100) IX[B]
   [25] -1   0   0x0000a000 - 0x0000a003 (0x4) IX[B]
   [26] -1   0   0x0000a400 - 0x0000a407 (0x8) IX[B]
   [27] -1   0   0x0000a800 - 0x0000a803 (0x4) IX[B]
   [28] -1   0   0x0000b000 - 0x0000b007 (0x8) IX[B]
   [29] -1   0   0x0000b400 - 0x0000b43f (0x40) IX[B]
   [30] -1   0   0x0000b800 - 0x0000b8ff (0x100) IX[B]
   [31] -1   0   0x0000d800 - 0x0000d8ff (0x100) IX[B](B)
   [32] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [33] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) fglrx(0): UMM area:     0xd8953000 (size=0x076ad000)
(II) fglrx(0): driver needs XFree86 version: 4.3.x
(II) fglrx(0): detected XFree86 version: 4.3.0
(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: 0xd8000000 FBMappedSize: 0x08000000
(II) fglrx(0): FBMM initialized for area (0,0)-(1600,8191)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1600,1200) (front color buffer - assumption)
(==) fglrx(0): Backing store disabled
(==) fglrx(0): Silken mouse enabled
(II) fglrx(0): Using hardware cursor (scanline 1200)
(II) fglrx(0): Largest offscreen area available: 1600 x 6988
(**) Option "dpms"
(**) fglrx(0): DPMS enabled
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
   Screen to screen bit blits
   Solid filled rectangles
   Solid Horizontal and Vertical Lines
   Offscreen Pixmaps
   Setting up tile and stipple cache:
      32 128x128 slots
      32 256x256 slots
      16 512x512 slots
(II) fglrx(0): Acceleration enabled
(II) fglrx(0): Direct rendering disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(==) RandR enabled
Symbol gnu_dev_makedev from module /usr/X11R6/lib/modules/linux/libdrm.a is unresolved!
Symbol __glXActiveScreens from module /usr/X11R6/lib/modules/extensions/libdri.a is unresolved!
Symbol __glXActiveScreens from module /usr/X11R6/lib/modules/extensions/libdri.a is unresolved!
Symbol __glXActiveScreens from module /usr/X11R6/lib/modules/drivers/fglrx_drv.o is unresolved!
(II) Setting vga for screen 0.
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(**) Option "Protocol" "ImPS/2"
(**) Mouse1: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/mouse"
(**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 5
(II) Keyboard "Keyboard1" handled by legacy driver
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) Mouse1: ps2EnableDataReporting: succeeded
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
SetClientVersion: 0 7
(II) 3rd Button detected: disabling emulate3Button


And the latest output from glxinfo:

Code:
name of display: :0.0
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual

   visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
 id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
----------------------------------------------------------------------
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
0x21 24 tc  1  0  0 c  .  .  0  0  0  0  0  0  0  0  0  0  0  0 0 None
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
0x22 24 dc  1  0  0 c  .  .  0  0  0  0  0  0  0  0  0  0  0  0 0 None


Looks like I'm back to the very first error I got at the beginning, with neither GLX nor DRI wanting to load.

Any new ideas for my new errors?
_________________
Thad

www.corporate-sellout.com
Back to top
View user's profile Send private message
jdhooghe85
Tux's lil' helper
Tux's lil' helper


Joined: 12 Jun 2004
Posts: 133

PostPosted: Thu Jul 15, 2004 4:14 am    Post subject: Reply with quote

First of all, I got a radeon 9700 pro and im using the latest 3.9 linux driver(I have also tried others). I have the 2.6.7 kernel with the latest version of xorg installed. When I try to start a game, such as ET, some errors pop up, some of which include:

Xlib: extension "XFree86-DGA" missing on display ":0.0".
Xlib: extension "Xfree86-DRI" missing on display ":0.0".

Now i have compiled the ati driver and DRM in my kernel, i have also gone into my xorg.conf file and made sure load dri
load glx
was enabled, but i wasnt able to enable
Mode 0666
like the instructions said because it would screw up xorg so that instead of being able to get into the login screen it took me to the default command line. I would then have to edit out that line from my xorg.conf before it was able to boot and take me to the login screen. glxgears work and i have configured fglrxconfig also. If any of you guys could help it would be much appreciated
Back to top
View user's profile Send private message
Nicolinux
Apprentice
Apprentice


Joined: 22 Dec 2002
Posts: 204

PostPosted: Thu Jul 15, 2004 8:00 am    Post subject: Reply with quote

Hi,

just out of interest - aren't ATI owners supposed to NOT use the Direct Rendering Manager in the Kernel?
The Gentoo Ati Faq clearly states not to use it...
http://odin.prohosting.com/wedge01/gentoo-radeon-faq.html#2_kernelopts

Sorry if you ment something else.

Stefan
Back to top
View user's profile Send private message
Wedge_
Advocate
Advocate


Joined: 08 Aug 2002
Posts: 3614
Location: Scotland

PostPosted: Thu Jul 15, 2004 9:29 am    Post subject: Reply with quote

jdhooghe85 wrote:
Now i have compiled the ati driver and DRM in my kernel, i have also gone into my xorg.conf file and made sure load dri

Nicolinux wrote:
just out of interest - aren't ATI owners supposed to NOT use the Direct Rendering Manager in the Kernel?
The Gentoo Ati Faq clearly states not to use it...
http://odin.prohosting.com/wedge01/gentoo-radeon-faq.html#2_kernelopts

Yes, you should not have DRM enabled in the kernel while using the ATI drivers. Disable it and see if your problems still exist.

@Thad: I still have no idea where all these unresolved symbols are coming from. Have you got the fglrx module loaded? These warnings:
Code:
(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): ********************************************* *
usually indicate that it isn't.
_________________
Per Ardua Ad Astra
The Earth is the cradle of the mind, but we cannot live forever in a cradle - Konstantin E. Tsiolkovsky
Gentoo Radeon FAQ
Back to top
View user's profile Send private message
Nicolinux
Apprentice
Apprentice


Joined: 22 Dec 2002
Posts: 204

PostPosted: Thu Jul 15, 2004 10:04 am    Post subject: Reply with quote

Hi Wedge_

speaking of the Ati Faq that you wrote - you say that the agpgart option in the kernel may be selected as a module. Using the XF86Conf directive
Code:
Option "UseInternalAGPGART"         "yes"

is it possible to not load the kernel agpgart module at all?
I am asking because this is the one making trouble after suspending the computer.

Thanks

Stefan
Back to top
View user's profile Send private message
Wedge_
Advocate
Advocate


Joined: 08 Aug 2002
Posts: 3614
Location: Scotland

PostPosted: Thu Jul 15, 2004 10:18 am    Post subject: Reply with quote

Quote:
is it possible to not load the kernel agpgart module at all?

As far as I know, yes.
_________________
Per Ardua Ad Astra
The Earth is the cradle of the mind, but we cannot live forever in a cradle - Konstantin E. Tsiolkovsky
Gentoo Radeon FAQ
Back to top
View user's profile Send private message
darkn0th
n00b
n00b


Joined: 14 Jul 2004
Posts: 42
Location: Lausanne, Switzerland

PostPosted: Thu Jul 15, 2004 10:20 am    Post subject: Video on TV out Reply with quote

Hi all,

Thad wrote:
First thing: have managed to get TV-out working in Clone mode. (This for some reason shrinks my X fonts almost to the point of illegibility; anybody know why?) Unfortunately, video won't play on the TV; it only plays on my CRT monitor, with a corresponding blank black window on the TV screen. There are settings under Windows to fix this and display the image on both screens; does anyone know the corresponding setting for X?


I had this same issue and found it seems to stem from using XVideo as the renderer. If you use Xshm in xine for example you'll be able to display video on both screens. This is only a workaround, I've so far been unable to find a way to define which screen should display the Xv output (probably the cloned screen) and whether it's at all possible to use Xv simultaneously on both.
Back to top
View user's profile Send private message
Nicolinux
Apprentice
Apprentice


Joined: 22 Dec 2002
Posts: 204

PostPosted: Thu Jul 15, 2004 11:06 am    Post subject: Reply with quote

Wedge_ wrote:
Quote:
is it possible to not load the kernel agpgart module at all?

As far as I know, yes.


Just in case some one else is interested - it works but the coputer still crashes when it returns from hibernate mode...

Well... I will give up trying the suspend thing with Linux and ATI..
Someone here who wants to trade a nvidia card for a ati radeon 9600 pro turbo (dell inspiron 8600) :)


Stefan
Back to top
View user's profile Send private message
rb338
n00b
n00b


Joined: 03 Oct 2002
Posts: 40
Location: Eindhoven, The Netherlands

PostPosted: Thu Jul 15, 2004 11:55 am    Post subject: Reply with quote

I've been reading a lot on the forums about the ATi linux driver, and I got it all to work using the Gentoo Radeon FAQ. Xorg's log file says DRI works, glxinfo and fglrxinfo all report working hardware accelleration.

My problem: my screen and keyboard lock up every time I start glxgears or any other GL program. I haven't seen any relevant postings about this, and those that were relevant I already tried the solutions from.

Specs:
Sapphire Radeon 9600XT 256 MB
Gentoo 2004.1 / kernel 2.6.7-gentoo-r8
XFree86 4.3.0 and Xorg 6.7 (same problem on both)
Radeon drivers 3.2.8 and 3.9.0 (same problem on both)

I switched the following options around to see if they make any difference, but none do (or they cause hardware accelleration not to function)...

Kernel DRI / radeon module
via-agp / agpgart
ATi internal agpgart
preemptive kernel
4kb/8kb kernel stacks

What could this be? The kernel? I'll try an older 2.6.x kernel now...
Back to top
View user's profile Send private message
bkunlimited
l33t
l33t


Joined: 18 Jun 2004
Posts: 672

PostPosted: Thu Jul 15, 2004 12:41 pm    Post subject: Reply with quote

hi @all,

i'm using kernel 2.6.7-gentoo-r11 on a AMD AthlonXP 3000+ with ASRock K7S8XE+ Board (SiS 748+964) and ATI Radeon 9600 Pro card. I installed ati-drivers and configured them to use kernel agpgart instead of internal one. i have the following messages in /var/log/messages and dmesg:

Code:

fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
[fglrx] Maximum main memory to use for locked dma buffers: 431 MBytes.
[fglrx] module loaded - fglrx 3.9.0 [May 11 2004] on minor 0
Debug: sleeping function called from invalid context at mm/slab.c:1996
in_atomic():1, irqs_disabled():0
 [<c0116bf7>] __might_sleep+0xb7/0xe0
 [<c013e03c>] kmem_cache_alloc+0x6c/0x70
 [<e090ecc8>] __ke_alloc_wait_queue_head_struct+0x18/0x30 [fglrx]
 [<e092126f>] firegl_open_helper+0x15f/0x190 [fglrx]
 [<e0912376>] firegl_setup_dev+0x126/0x1d0 [fglrx]
 [<e0911994>] firegl_open+0x194/0x260 [fglrx]
 [<c015ca9f>] exact_lock+0xf/0x20
 [<e090ea42>] firegl_stub_open+0x102/0x1b0 [fglrx]
 [<e090e940>] firegl_stub_open+0x0/0x1b0 [fglrx]
 [<c015c886>] chrdev_open+0xe6/0x210
 [<c01526e4>] dentry_open+0x144/0x220
 [<c0152598>] filp_open+0x68/0x70
 [<c0152a2b>] sys_open+0x5b/0xb0
 [<c01060c7>] syscall_call+0x7/0xb

[fglrx] AGP detected, AgpState   = 0x1f004e1b (hardware caps of chipset)
agpgart: Found an AGP 3.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V3 device at 0000:00:00.0 into 8x mode
agpgart: SiS delay workaround: giving bridge time to recover.
agpgart: Putting AGP V3 device at 0000:01:00.0 into 8x mode
[fglrx] AGP enabled,  AgpCommand = 0x1f004312 (selected caps)
[fglrx] free  AGP = 54800384
[fglrx] max   AGP = 54800384
[fglrx] free  LFB = 116391936
[fglrx] max   LFB = 116391936
[fglrx] free  Inv = 0
[fglrx] max   Inv = 0
[fglrx] total Inv = 0
[fglrx] total TIM = 0
[fglrx] total FB  = 0
[fglrx] total AGP = 16384
atkbd.c: Spurious ACK on isa0060/serio0. Some program, like XFree86, might be trying access hardware directly.
atkbd.c: Spurious ACK on isa0060/serio0. Some program, like XFree86, might be trying access hardware directly.
Debug: sleeping function called from invalid context at include/asm/semaphore.h:119
in_atomic():1, irqs_disabled():0
 [<c0116bf7>] __might_sleep+0xb7/0xe0
 [<e091dd87>] drm_free+0xb7/0x150 [fglrx]
 [<e090f1ca>] __ke_down_struct_sem+0x2a/0x50 [fglrx]
 [<e091fb2f>] firegl_remove_all_drawables+0x3f/0x100 [fglrx]
 [<e09217e6>] firegl_release_helper+0x546/0x750 [fglrx]
 [<e0912452>] firegl_takedown+0x32/0xaa0 [fglrx]
 [<e0911b8f>] firegl_release+0x12f/0x190 [fglrx]
 [<c015d6e7>] sys_fstat64+0x37/0x40
 [<c01543a6>] __fput+0x106/0x120
 [<c0152b09>] filp_close+0x59/0x90
 [<c0152ba1>] sys_close+0x61/0xa0
 [<c01060c7>] syscall_call+0x7/0xb


what can that be?
Back to top
View user's profile Send private message
Display posts from previous:   
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Desktop Environments All times are GMT
Goto page Previous  1, 2, 3 ... 70, 71, 72 ... 74, 75, 76  Next
Page 71 of 76

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum