You are not logged in.

#1 2008-01-18 14:45:20

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

ATI catalyst lockups

Hello everyone!

I've been fiddling around with this problem a couple of days, and I can't figure out what is wrong!
I'm using a Radeon 9800XT with the catalyst drivers.

This is my xorg.conf file:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection


Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "glx"
    Load  "bitmap"
    Load  "type1"
    Load  "freetype"
    Load  "record"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
        Option   "DPMS"
EndSection

Section "Device"
     Identifier  "Card0"
    Driver      "fglrx"
    VendorName  "ATI Technologies Inc"
    BoardName   "RV350 NJ [Radeon 9800 XT]"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth 24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes "1280x1024" "1024x768" "800x600"
    EndSubSection
EndSection

Section "DRI"
       Group 0
       Mode 0666
EndSection

Section "Extensions"
    Option "Composite" "Disable"
EndSection

Whenever I run startx, my gnome loads succesfully. However, as soon as I start a terminal, open a browser.. anything actually - it locks the entire system. I can't move my mouse, can't use the keyboard and have to press the reset button on my PC.

I've tried alot of configs for my xorg.conf file, atm i'm using vesa as driver, so I don't have any hardware acceleration.
Any ideas? If you need me to post the output of any commands, let me know, 'cause I'm a bit rusty atm.


Thanks in advance,
Kevin

Last edited by kevin89 (2008-01-18 14:46:00)

Offline

#2 2008-01-18 17:42:56

mintcoffee
Member
From: Waterloo, ON
Registered: 2007-10-05
Posts: 120
Website

Re: ATI catalyst lockups

Have you tried the radeon driver? Its open-source and your video card should be supported by it.


Arch on a Thinkpad T400s

Offline

#3 2008-01-18 18:33:21

May-C
Member
Registered: 2007-12-28
Posts: 83

Re: ATI catalyst lockups

Ati just has released catalyst 8.1. In your case I would wait until they are available in pacman and then try again.

Offline

#4 2008-01-19 09:04:07

signor_rossi
Member
Registered: 2007-08-24
Posts: 257

Re: ATI catalyst lockups

Have you enabled console framebuffer? If so try without first.
Then I experience some hangs lately related to glx, i.e. glxinfo will hang at the first run (only glxinfo window hangs, not the whole system fortunately). Have you tried with a clean user configuration for gnome? Maybe some enabled effects trigger the hang (wild assumption though)?

Bye, signor_rossi.

Offline

#5 2008-01-19 15:16:34

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

@mintcoffee: Yes I've tried the radeon driver. Didn't get direct rendering with it though.

@May-C: That's good news, I'll check it out!

@signor_rossi: I'm not sure what you mean with the console framebuffer, is it an option in Xorg.conf? I'll do a clean install maybe to check if things work better then.

Thanks for the replies.

Offline

#6 2008-01-19 15:48:22

signor_rossi
Member
Registered: 2007-08-24
Posts: 257

Re: ATI catalyst lockups

kevin89 wrote:

@signor_rossi: I'm not sure what you mean with the console framebuffer, is it an option in Xorg.conf? I'll do a clean install maybe to check if things work better then.

The stock kernel has vesafb built in and offers radeonfb as a module and both haven't to do with your xorg.conf. You enable fb with lines similiar to this as kernel options in grubs menu.lst (I guess you use also grub?):
video=vesafb:ywrap,mtrr vga=791
'vga=0' instead disables framebuffer for sure.

Don't be to hasty with a reinstall (unless you tinkered to much with your system lately), it doesn't help that often and is a lot of work. fglrx is simply a bitch and I am eagerly awaiting the new version since the previous version suddenly couldn't do 1680x1050 resolution anymore and I want to try out kwin4 goodies (kwin4 thinks fglrx 7.11 offers what it needs but it doesn't).

Bye, signor_rossi.

Offline

#7 2008-01-19 15:57:55

May-C
Member
Registered: 2007-12-28
Posts: 83

Re: ATI catalyst lockups

Actually I did already build the new driver and install it.

The good news: 1680x1050 is working
The bad news: I had no luck wich KWin and Composite-Effects but maybe something is missing in my configuration. Another problem is that fglrx creates tow instances of Xserver...

That is why I keep using radoenhd... more stable. Can't wait until raedonhd gets composit and the whole thing but I guess I can wait for a loooooooooong time for it wink

Offline

#8 2008-01-19 16:58:23

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

@signor_rossie: Thanks for the clarification on the console framebuffer. I'll be fiddling around a bit with that.

@May-C: That's awesome, I'm gonna try it aswell! Would you mind sharing your xorg.conf?
Trying to build the driver, but the --listpkg option doesn't give me any that I could use? Which pkg should I use?

Thanks in advance & ty for all the help smile

Offline

#9 2008-01-19 18:37:25

signor_rossi
Member
Registered: 2007-08-24
Posts: 257

Re: ATI catalyst lockups

May-C wrote:

Actually I did already build the new driver and install it.

The good news: 1680x1050 is working
The bad news: I had no luck wich KWin and Composite-Effects but maybe something is missing in my configuration. Another problem is that fglrx creates tow instances of Xserver...

That is why I keep using radoenhd... more stable. Can't wait until raedonhd gets composit and the whole thing but I guess I can wait for a loooooooooong time for it wink

Section "Extensions"
        Option      "Composite" "Enable"
EndSection

Section "ServerFlags"
        Option      "AIGLX"
EndSection


These ould be the most important parts in xorg.conf for composite under fglrx, or not?
Do you know if Videoverlay and OpenGLOverlay settings in the Device section have any effect?

Bye, signor_rossi.

Offline

#10 2008-01-20 09:47:15

May-C
Member
Registered: 2007-12-28
Posts: 83

Re: ATI catalyst lockups

@signor_rossi
thanks for the recommendations... will give it a shot later

@kevin
this is my xorg.conf. About Videooverlay and OpenGlOverlay I have no idea. For building the driver I just used the PKGBUILD of 7.11 (catalyst and catalyst-utils) and modified it a little bit:

pkgver=8.1
_installerver=8-01

Here the xorg.conf

# Xorg configuration created by system-config-display

Section "ServerLayout"
Identifier "Arch Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection


Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/Type1"
    FontPath     "/usr/local/share/fonts"
EndSection

Section "Module"
    Load  "xtrap"
    Load  "GLcore"
    Load  "dri"
    Load  "record"
    Load  "extmod"
    Load  "dbe"
    Load  "glx"
    Load  "freetype"
    Load  "ddc"
EndSection


Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "Modes"
#    # 1680x1050 @ 60 Hz (GTF) hsync: 65,22 kHz; pclk: 147.14 MHz
    Identifier "Modes0"
    ModeLine "1680x1050" 147.14 1680 1784 1968 2256 1050 1051 1054 1087
EndSection

Section "Monitor"
    Identifier "Monitor0"
    VendorName "Hewlett Packard"
    ModelName "LCD Panel 1680x1050"
    UseModes "Modes0"
    #DisplaySize 474 303

    HorizSync 24.0 - 83.0
    VertRefresh 48.0 - 76.0
    Option "dpms"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
        Viewport 0 0
        Depth 16
        Modes "1680x1050"
    EndSubSection
    SubSection "Display"
        Viewport 0 0
        Depth 24
        Modes "1680x1050"   
    EndSubSection
EndSection


Section "Device"
    Identifier  "Card0"
    Driver      "fglrx"
    VendorName  "ATI Technologies Inc"
    BoardName   "Unknown Board"
    BusID       "PCI:2:0:0"
EndSection

Section "DRI"
    Group "users"
    Mode 0660
EndSection

Last edited by May-C (2008-01-20 09:51:48)

Offline

#11 2008-01-21 09:31:49

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

@May-C: I've tried some options from your xorg.conf, but to no avail. I've also checked out the pkgbuild, however it doesn't compile since it depends on catalyst-utils8.1... Also it's for kernel-kamikaze. Or am I missing something vital? wink

Offline

#12 2008-01-21 14:13:45

aspid
Member
From: Russia, Stv
Registered: 2008-01-21
Posts: 4

Re: ATI catalyst lockups

try this:

Section "Device"
        Identifier  "aticonfig-Device[0]"
        Driver      "fglrx"
        Option "XAANoOffscreenPixmaps" "true"
        Option "UseInternalAGPGART"         "no"
        Option "KernelModuleParm"           "agplock=0"
EndSection

Offline

#13 2008-01-21 15:58:57

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

@aspid; thanks for your input, it loaded to gnome, loaded abit of the gnome-panel and then freezes again sad
Btw I've found in my Xorg.log that '"glx" will be loaded by default'. I don't have glx in my modules in my xorg.conf. Could this be a part of the problem? Since glx is for AIGLX, right?

Offline

#14 2008-01-21 16:18:38

May-C
Member
Registered: 2007-12-28
Posts: 83

Re: ATI catalyst lockups

I've also checked out the pkgbuild, however it doesn't compile since it depends on catalyst-utils8.1... Also it's for kernel-kamikaze. Or am I missing something vital?

So lets do a step by step instrction:

1. get root access
2. pacman -S abs #if not already abs is installed
3. abs # to update the abs tree
4. cd /var/abs/extra/modules/
5. cp -r catalyst-utils /var/abs/local/
6. cp -r catalys /var/abs/local/
7. cd /var/abs/local/catalyst-utils  
8. edit in the PKGBUILD the pkgver to 8.1 and the _installerver to 8-01  
9. makepkg
10. pacman -U <the created pkg>
11. cd /var/abs/local/catalyst
12. repeat steps 8-10

Offline

#15 2008-01-21 16:20:33

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

@May-C: Wow, thanks for the step by step instructions. (made me feel dumb tho..) I was searching for the package at aur.archlinux.org. I didn't think of looking at /var/abs, forgot about that hmm
Thanks so much big_smile I'll try it right away!

Offline

#16 2008-01-21 17:51:11

philefou
Member
Registered: 2006-05-23
Posts: 15

Re: ATI catalyst lockups

Could you please post the md5sum for the driver 8.1.
Thanks

Offline

#17 2008-01-21 17:54:56

signor_rossi
Member
Registered: 2007-08-24
Posts: 257

Re: ATI catalyst lockups

philefou wrote:

Could you please post the md5sum for the driver 8.1.
Thanks

Just get it yourself. wink

[val@tux catalyst]$ md5sum ati-driver-installer-8-01-x86.x86_64.run
cf8f493901f5abb28347e7aa7c9d6cca  ati-driver-installer-8-01-x86.x86_64.run

It's as easy as that.

Bye, signor_rossi.

Offline

#18 2008-01-21 21:23:37

phenom
Member
Registered: 2007-07-06
Posts: 4

Re: ATI catalyst lockups

hi. i'm trying build catalyst myself --doing all step what be posted early, but take this error:
...
make: Entering directory `/usr/src/linux-2.6.23-ARCH'
Makefile:1220: *** образец цели не содержит `%'.  Останов.
make: Leaving directory `/usr/src/linux-2.6.23-ARCH'
==> ERROR: Build Failed.
    Aborting...
what is it!
ps. sorry for my english

Offline

#19 2008-01-21 21:30:26

phenom
Member
Registered: 2007-07-06
Posts: 4

Re: ATI catalyst lockups

sorry! i forget translate ( from russian).
...
make: Entering directory `/usr/src/linux-2.6.23-ARCH'
Makefile:1220: *** target pattern contains no `%'.  Stop.
make: Leaving directory `/usr/src/linux-2.6.23-ARCH'
==> ERROR: Build Failed.
    Aborting...

Offline

#20 2008-01-21 22:21:45

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

Well, I have managed to get in to X with "fglrx" as driver, using catalyst 8.1.
The thing is, "glxinfo | grep rendering" returns nothing. And fglrxinfo just hangs yikes

I'm kind of clueless hmm

@phenom I don't know sorry..

Offline

#21 2008-01-22 00:29:37

May-C
Member
Registered: 2007-12-28
Posts: 83

Re: ATI catalyst lockups

Maybe you find more information in /var/log/Xorg.0.log
Your xorg.conf would be helpful too...
Did you already take a look in the wiki: http://wiki.archlinux.org/index.php/ATI … ary_driver

Btw I've found in my Xorg.log that '"glx" will be loaded by default'. I don't have glx in my modules in my xorg.conf. Could this be a part of the problem? Since glx is for AIGLX, right?

GLX has nothing to do with AIGLX but with opengl AFAIK. However make sure you put it in the module section! Maybe without GLX GLXINFO does not work but I am not so sure about that...

Last edited by May-C (2008-01-22 00:32:05)

Offline

#22 2008-01-22 00:44:33

kevin89
Arch Linux f@h Team Member
From: Netherlands
Registered: 2007-03-14
Posts: 218

Re: ATI catalyst lockups

@May-C:

xorg.conf:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
    Option    "AIGLX"    "false"
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "GLcore"
    Load  "glx"
    Load  "drm"
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "record"
    Load  "xtrap"
    Load  "freetype"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
    Option    "DPMS"    "true"
EndSection

Section "Device"
        Option     "OpenGLOverlay"    "on"
        Option     "VideoOverlay"    "off"
    Identifier  "Card0"
    Driver      "fglrx"
    VendorName  "ATI Technologies Inc"
    BoardName   "RV350 NJ [Radeon 9800 XT]"
    BusID       "PCI:1:0:0"
    Option    "XAANoOffscreenPixmaps"    "true"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth    24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x1024"    "1024x768"    "800x600"
    EndSubSection
EndSection

Section    "DRI"
    Group    "video"
    Mode    0666
EndSection

Section    "Extensions"
    Option    "Composite"    "Disable"
EndSection

/var/log/Xorg.0.log

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.23-ARCH i686 
Current Operating System: Linux dont-panic 2.6.23-ARCH #1 SMP PREEMPT Tue Jan 15 06:34:36 UTC 2008 i686
Build Date: 20 January 2008  08:27:43PM
 
    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: Tue Jan 22 01:45:10 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) Option "AIGLX" "false"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
(==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
(**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
(**) RgbPath set to "/usr/share/X11/rgb"
(**) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is disabled
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Loader magic: 0x81d65c0
(II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 2.0
    X.Org XInput driver : 2.0
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,00e1 card 0000,0000 rev a1 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 10de,00e0 card 10de,0c11 rev a2 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,00e4 card 10de,0c11 rev a1 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,00e7 card 10de,0c11 rev a1 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,00e7 card 10de,0c11 rev a1 class 0c,03,10 hdr 80
(II) PCI: 00:02:2: chip 10de,00e8 card 10de,0c11 rev a2 class 0c,03,20 hdr 80
(II) PCI: 00:05:0: chip 10de,00df card 10de,0c11 rev a2 class 06,80,00 hdr 00
(II) PCI: 00:06:0: chip 10de,00ea card 10de,0c11 rev a1 class 04,01,00 hdr 00
(II) PCI: 00:08:0: chip 10de,00e5 card f0de,0c11 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:0b:0: chip 10de,00e2 card 0000,0000 rev a2 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,00ed card 0000,0000 rev a2 class 06,04,00 hdr 01
(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,4e4a card 1002,0002 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,4e6a card 1002,0003 rev 00 class 03,80,00 hdr 00
(II) PCI: 02:0a:0: chip 10ec,8139 card 4554,434e rev 10 class 02,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 (0x0) MX[b]
(II) Bus 0 prefetchable memory range:
    [0] -1    0    0x00000000 - 0xffffffff (0x0) MX[b]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:11:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
    [0] -1    0    0x0000c000 - 0x0000cfff (0x1000) IX[b]
(II) Bus 1 non-prefetchable memory range:
    [0] -1    0    0xec000000 - 0xecffffff (0x1000000) MX[b]
(II) Bus 1 prefetchable memory range:
    [0] -1    0    0xd8000000 - 0xe7ffffff (0x10000000) MX[b]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:14:0), (0,2,2), BCTRL: 0x0202 (VGA_EN is cleared)
(II) Bus 2 I/O range:
    [0] -1    0    0x0000d000 - 0x0000dfff (0x1000) IX[b]
(II) Bus 2 non-prefetchable memory range:
    [0] -1    0    0xed000000 - 0xedffffff (0x1000000) MX[b]
(--) PCI:*(1:0:0) ATI Technologies Inc RV350 NJ [Radeon 9800 XT] rev 0, Mem @ 0xd8000000/27, 0xec030000/16, I/O @ 0xc000/8
(--) PCI: (1:0:1) ATI Technologies Inc RV350 NJ [Radeon 9800 XT] (Secondary) rev 0, Mem @ 0xe0000000/27, 0xec020000/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    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
(II) PCI Memory resource overlap reduced 0xe8000000 from 0xebffffff to 0xe7ffffff
(II) Active PCI resource ranges:
    [0] -1    0    0xed021000 - 0xed0210ff (0x100) MX[b]
    [1] -1    0    0xee001000 - 0xee001fff (0x1000) MX[b]
    [2] -1    0    0xee000000 - 0xee000fff (0x1000) MX[b]
    [3] -1    0    0xee005000 - 0xee0050ff (0x100) MX[b]
    [4] -1    0    0xee004000 - 0xee004fff (0x1000) MX[b]
    [5] -1    0    0xee003000 - 0xee003fff (0x1000) MX[b]
    [6] -1    0    0xe8000000 - 0xe7ffffff (0x0) MX[b]O
    [7] -1    0    0xec030000 - 0xec03ffff (0x10000) MX[b](B)
    [8] -1    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [9] -1    0    0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [10] -1    0    0x0000f000 - 0x0000f00f (0x10) IX[b]
    [11] -1    0    0x0000e300 - 0x0000e37f (0x80) IX[b]
    [12] -1    0    0x0000e200 - 0x0000e2ff (0x100) IX[b]
    [13] -1    0    0x0000e100 - 0x0000e107 (0x8) IX[b]
    [14] -1    0    0x00004c40 - 0x00004c7f (0x40) IX[b]
    [15] -1    0    0x00004c00 - 0x00004c3f (0x40) IX[b]
    [16] -1    0    0x0000e600 - 0x0000e61f (0x20) IX[b]
    [17] -1    0    0x0000c000 - 0x0000c0ff (0x100) IX[b](B)
(II) Inactive PCI resource ranges:
    [0] -1    0    0xec020000 - 0xec02ffff (0x10000) MX[b](B)
    [1] -1    0    0xe0000000 - 0xe7ffffff (0x8000000) MX[b](B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1    0    0xed021000 - 0xed0210ff (0x100) MX[b]
    [1] -1    0    0xee001000 - 0xee001fff (0x1000) MX[b]
    [2] -1    0    0xee000000 - 0xee000fff (0x1000) MX[b]
    [3] -1    0    0xee005000 - 0xee0050ff (0x100) MX[b]
    [4] -1    0    0xee004000 - 0xee004fff (0x1000) MX[b]
    [5] -1    0    0xee003000 - 0xee003fff (0x1000) MX[b]
    [6] -1    0    0xe8000000 - 0xe7ffffff (0x0) MX[b]O
    [7] -1    0    0xec030000 - 0xec03ffff (0x10000) MX[b](B)
    [8] -1    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [9] -1    0    0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [10] -1    0    0x0000f000 - 0x0000f00f (0x10) IX[b]
    [11] -1    0    0x0000e300 - 0x0000e37f (0x80) IX[b]
    [12] -1    0    0x0000e200 - 0x0000e2ff (0x100) IX[b]
    [13] -1    0    0x0000e100 - 0x0000e107 (0x8) IX[b]
    [14] -1    0    0x00004c40 - 0x00004c7f (0x40) IX[b]
    [15] -1    0    0x00004c00 - 0x00004c3f (0x40) IX[b]
    [16] -1    0    0x0000e600 - 0x0000e61f (0x20) IX[b]
    [17] -1    0    0x0000c000 - 0x0000c0ff (0x100) IX[b](B)
(II) Inactive PCI resource ranges after removing overlaps:
    [0] -1    0    0xec020000 - 0xec02ffff (0x10000) MX[b](B)
    [1] -1    0    0xe0000000 - 0xe7ffffff (0x8000000) MX[b](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
(II) All system resource ranges:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0xed021000 - 0xed0210ff (0x100) MX[b]
    [5] -1    0    0xee001000 - 0xee001fff (0x1000) MX[b]
    [6] -1    0    0xee000000 - 0xee000fff (0x1000) MX[b]
    [7] -1    0    0xee005000 - 0xee0050ff (0x100) MX[b]
    [8] -1    0    0xee004000 - 0xee004fff (0x1000) MX[b]
    [9] -1    0    0xee003000 - 0xee003fff (0x1000) MX[b]
    [10] -1    0    0xe8000000 - 0xe7ffffff (0x0) MX[b]O
    [11] -1    0    0xec030000 - 0xec03ffff (0x10000) MX[b](B)
    [12] -1    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [13] -1    0    0xec020000 - 0xec02ffff (0x10000) MX[b](B)
    [14] -1    0    0xe0000000 - 0xe7ffffff (0x8000000) MX[b](B)
    [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [17] -1    0    0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [18] -1    0    0x0000f000 - 0x0000f00f (0x10) IX[b]
    [19] -1    0    0x0000e300 - 0x0000e37f (0x80) IX[b]
    [20] -1    0    0x0000e200 - 0x0000e2ff (0x100) IX[b]
    [21] -1    0    0x0000e100 - 0x0000e107 (0x8) IX[b]
    [22] -1    0    0x00004c40 - 0x00004c7f (0x40) IX[b]
    [23] -1    0    0x00004c00 - 0x00004c3f (0x40) IX[b]
    [24] -1    0    0x0000e600 - 0x0000e61f (0x20) IX[b]
    [25] -1    0    0x0000c000 - 0x0000c0ff (0x100) IX[b](B)
(II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
(II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
(II) "glx" will be loaded. This was enabled by default and also specified in the config file.
(II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
(II) "record" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri" will be loaded. This was enabled by default and also specified in the config file.
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(**) AIGLX disabled
(II) Loading extension GLX
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(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 TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD
(II) LoadModule: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.4.0.90, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "fglrx"
(II) Loading /usr/lib/xorg/modules/drivers//fglrx_drv.so
(II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    compiled for 7.1.0, module version = 8.45.4
    Module class: X.Org Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) Primary Device is: PCI 01:00:0
(II) ATI Proprietary Linux Driver Version Identifier:8.45.4
(II) ATI Proprietary Linux Driver Release Identifier: UNSUPPORTED-8.452.1                  
(II) ATI Proprietary Linux Driver Build Date: Jan 16 2008 10:42:57
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset Supported AMD Graphics Processor (0x4E4A) found
(II) AMD Video driver is running on a device belonging to a group targeted for this release
(II) AMD Video driver is signed
(II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0xed021000 - 0xed0210ff (0x100) MX[b]
    [5] -1    0    0xee001000 - 0xee001fff (0x1000) MX[b]
    [6] -1    0    0xee000000 - 0xee000fff (0x1000) MX[b]
    [7] -1    0    0xee005000 - 0xee0050ff (0x100) MX[b]
    [8] -1    0    0xee004000 - 0xee004fff (0x1000) MX[b]
    [9] -1    0    0xee003000 - 0xee003fff (0x1000) MX[b]
    [10] -1    0    0xe8000000 - 0xe7ffffff (0x0) MX[b]O
    [11] -1    0    0xec030000 - 0xec03ffff (0x10000) MX[b](B)
    [12] -1    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [13] -1    0    0xec020000 - 0xec02ffff (0x10000) MX[b](B)
    [14] -1    0    0xe0000000 - 0xe7ffffff (0x8000000) MX[b](B)
    [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [17] -1    0    0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [18] -1    0    0x0000f000 - 0x0000f00f (0x10) IX[b]
    [19] -1    0    0x0000e300 - 0x0000e37f (0x80) IX[b]
    [20] -1    0    0x0000e200 - 0x0000e2ff (0x100) IX[b]
    [21] -1    0    0x0000e100 - 0x0000e107 (0x8) IX[b]
    [22] -1    0    0x00004c40 - 0x00004c7f (0x40) IX[b]
    [23] -1    0    0x00004c00 - 0x00004c3f (0x40) IX[b]
    [24] -1    0    0x0000e600 - 0x0000e61f (0x20) IX[b]
    [25] -1    0    0x0000c000 - 0x0000c0ff (0x100) IX[b](B)
(II) fglrx(0): pEnt->device->identifier=0x820acd8
(II) resource ranges after probing:
    [0] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0xed021000 - 0xed0210ff (0x100) MX[b]
    [5] -1    0    0xee001000 - 0xee001fff (0x1000) MX[b]
    [6] -1    0    0xee000000 - 0xee000fff (0x1000) MX[b]
    [7] -1    0    0xee005000 - 0xee0050ff (0x100) MX[b]
    [8] -1    0    0xee004000 - 0xee004fff (0x1000) MX[b]
    [9] -1    0    0xee003000 - 0xee003fff (0x1000) MX[b]
    [10] -1    0    0xe8000000 - 0xe7ffffff (0x0) MX[b]O
    [11] -1    0    0xec030000 - 0xec03ffff (0x10000) MX[b](B)
    [12] -1    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [13] -1    0    0xec020000 - 0xec02ffff (0x10000) MX[b](B)
    [14] -1    0    0xe0000000 - 0xe7ffffff (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] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [20] -1    0    0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [21] -1    0    0x0000f000 - 0x0000f00f (0x10) IX[b]
    [22] -1    0    0x0000e300 - 0x0000e37f (0x80) IX[b]
    [23] -1    0    0x0000e200 - 0x0000e2ff (0x100) IX[b]
    [24] -1    0    0x0000e100 - 0x0000e107 (0x8) IX[b]
    [25] -1    0    0x00004c40 - 0x00004c7f (0x40) IX[b]
    [26] -1    0    0x00004c00 - 0x00004c3f (0x40) IX[b]
    [27] -1    0    0x0000e600 - 0x0000e61f (0x20) IX[b]
    [28] -1    0    0x0000c000 - 0x0000c0ff (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): === [atiddxPreInit] === begin
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules//libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 0.1.0
    ABI class: X.Org Video Driver, version 2.0
(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 "OpenGLOverlay" "on"
(**) fglrx(0): Option "VideoOverlay" "off"
(**) fglrx(0): Option "DPMS" "true"
(II) fglrx(0): Loading PCS database from /etc/ati/amdpcsdb
(==) fglrx(0): RGB weight 888
(II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
(==) fglrx(0): Gamma Correction for I is 0x06419064
(==) fglrx(0): Gamma Correction for II is 0x06419064
(==) fglrx(0): Buffer Tiling is ON
(--) fglrx(0): Chipset: "RADEON 9800 XT" (Chipset = 0x4e4a)
(--) fglrx(0): (PciSubVendor = 0x1002, PciSubDevice = 0x0002)
(--) fglrx(0): board vendor info: original ATI graphics adapter
(--) fglrx(0): Linear framebuffer (phys) at 0xd8000000
(--) fglrx(0): MMIO registers at 0xec030000
(==) fglrx(0): ROM-BIOS at 0x000c0000
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.1.0
    ABI class: X.Org Video Driver, version 2.0
(II) fglrx(0): VESA BIOS detected
(II) fglrx(0): VESA VBE Version 2.0
(II) fglrx(0): VESA VBE Total Mem: 16384 kB
(II) fglrx(0): VESA VBE OEM: ATI R360
(II) fglrx(0): VESA VBE OEM Software Rev: 1.0
(II) fglrx(0): VESA VBE OEM Vendor: ATI Technologies Inc.
(II) fglrx(0): VESA VBE OEM Product: R360
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmGetBusid returned ''
(II) Loading sub module "fglrxdrm"
(II) LoadModule: "fglrxdrm"
(II) Loading /usr/lib/xorg/modules/linux//libfglrxdrm.so
(II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    compiled for 7.1.0, module version = 8.45.4
    ABI class: X.Org Server Extension, version 0.3
(II) fglrx(0): Using adapter: PCI:1:0:0.
(--) fglrx(0): VideoRAM: 131072 kByte, Type: DDR SGRAM / SDRAM
(II) fglrx(0): AGP card detected
(II) fglrx(0): board/chipset is supported by this driver (original ATI board)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"(II) Module "ddc" already built-in
(II) fglrx(0): Connected Display1: CRT on primary DAC [crt1]
(II) fglrx(0): Display1 EDID data ---------------------------
(II) fglrx(0): Manufacturer: BNQ  Model: 766e  Serial#: 696
(II) fglrx(0): Year: 2004  Week: 7
(II) fglrx(0): EDID Version: 1.3
(II) fglrx(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
(II) fglrx(0): Sync:  Separate  Composite
(II) fglrx(0): Max H-Image Size [cm]: horiz.: 34  vert.: 27
(II) fglrx(0): Gamma: 2.20
(II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) fglrx(0): First detailed timing is preferred mode
(II) fglrx(0): redX: 0.640 redY: 0.340   greenX: 0.290 greenY: 0.609
(II) fglrx(0): blueX: 0.140 blueY: 0.069   whiteX: 0.310 whiteY: 0.330
(II) fglrx(0): Supported VESA Video Modes:
(II) fglrx(0): 720x400@70Hz
(II) fglrx(0): 640x480@60Hz
(II) fglrx(0): 640x480@67Hz
(II) fglrx(0): 640x480@72Hz
(II) fglrx(0): 640x480@75Hz
(II) fglrx(0): 800x600@60Hz
(II) fglrx(0): 800x600@72Hz
(II) fglrx(0): 800x600@75Hz
(II) fglrx(0): 832x624@75Hz
(II) fglrx(0): 1024x768@60Hz
(II) fglrx(0): 1024x768@70Hz
(II) fglrx(0): 1024x768@75Hz
(II) fglrx(0): 1280x1024@75Hz
(II) fglrx(0): 1152x870@75Hz
(II) fglrx(0): Manufacturer's mask: 0
(II) fglrx(0): Supported Future Video Modes:
(II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
(II) fglrx(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
(II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 72  vid: 35969
(II) fglrx(0): Supported additional Video Mode:
(II) fglrx(0): clock: 135.0 MHz   Image Size:  338 x 270 mm
(II) fglrx(0): h_active: 1280  h_sync: 1296  h_sync_end 1440 h_blank_end 1688 h_border: 0
(II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
(II) fglrx(0): Supported additional Video Mode:
(II) fglrx(0): clock: 25.2 MHz   Image Size:  338 x 270 mm
(II) fglrx(0): h_active: 640  h_sync: 656  h_sync_end 752 h_blank_end 800 h_border: 0
(II) fglrx(0): v_active: 350  v_sync: 387  v_sync_end 389 v_blanking: 449 v_border: 0
(II) fglrx(0): Ranges: V min: 56  V max: 76 Hz, H min: 31  H max: 83 kHz, PixClock max 140 MHz
(II) fglrx(0): Monitor name: BenQ FP767-12
(II) fglrx(0): EDID (in hex):
(II) fglrx(0):     00ffffffffffff0009d16e76b8020000
(II) fglrx(0):     070e01036c221b78eac4f6a3574a9c23
(II) fglrx(0):     114f54bdef80714f8180818c01010101
(II) fglrx(0):     010101010101bc34009851002a401090
(II) fglrx(0):     1300520e1100001ed50980a0205e6310
(II) fglrx(0):     10605208520e1100001a000000fd0038
(II) fglrx(0):     4c1f530e000a202020202020000000fc
(II) fglrx(0):     0042656e512046503736372d31320015
(II) fglrx(0): End of Display1 EDID data --------------------
(WW) fglrx(0): Only one display is connnected,so single mode is enabled
(II) fglrx(0): Primary Controller - CRT on primary DAC
(II) fglrx(0): Internal Desktop Setting: 0x00000001
(II) fglrx(0): POWERplay version 3.  4 power states available:
(II) fglrx(0):   1. 419/365MHz @ 50Hz [enable load balancing, overdrive]
(II) fglrx(0):   2. 317/365MHz @ 50Hz [enable load balancing, overdrive]
(II) fglrx(0):   3. 419/365MHz @ 50Hz [overclocked, enable load balancing, overdrive]
(II) fglrx(0):   4. 419/365MHz @ 50Hz [overclocked, enable load balancing, overdrive]
(==) fglrx(0): Qbs is not supported in this release. Disabled.
(==) fglrx(0): FAST_SWAP disabled
(==) fglrx(0):  PseudoColor visuals disabled
(**) fglrx(0): OpenGL Overlay enabled
(==) 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): Total of 35 modes found for primary display.
(--) fglrx(0): Virtual size is 1280x1024 (pitch 0)
(**) fglrx(0): *Mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 (80.0 kHz)
(**) fglrx(0):  Default mode "1280x1024": 128.9 MHz (scaled from 0.0 MHz), 74.6 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1280x1024"x70.0  128.94  1280 1368 1504 1728  1024 1025 1028 1066 +hsync (74.6 kHz)
(**) fglrx(0):  Default mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 (64.0 kHz)
(**) fglrx(0): *Mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.0 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 (60.0 kHz)
(**) fglrx(0):  Default mode "1024x768": 78.4 MHz (scaled from 0.0 MHz), 57.7 kHz, 72.0 Hz
(II) fglrx(0): Modeline "1024x768"x72.0   78.43  1024 1080 1192 1360  768 769 772 801 +hsync (57.7 kHz)
(**) fglrx(0):  Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 +hsync +vsync (56.5 kHz)
(**) fglrx(0):  Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 +hsync +vsync (48.4 kHz)
(**) fglrx(0): *Mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 (46.9 kHz)
(**) fglrx(0):  Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.0 Hz
(II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 (48.1 kHz)
(**) fglrx(0):  Default mode "800x600": 45.5 MHz (scaled from 0.0 MHz), 43.8 kHz, 70.0 Hz
(II) fglrx(0): Modeline "800x600"x70.0   45.50  800 840 920 1040  600 601 604 625 +hsync (43.8 kHz)
(**) fglrx(0):  Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 (37.9 kHz)
(**) fglrx(0):  Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.0 Hz
(II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 (35.2 kHz)
(**) fglrx(0):  Default mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 (60.0 kHz)
(**) fglrx(0):  Default mode "1280x768": 102.2 MHz (scaled from 0.0 MHz), 60.3 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x768"x75.0  102.25  1280 1360 1488 1696  768 771 778 805 +hsync (60.3 kHz)
(**) fglrx(0):  Default mode "1280x768": 79.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x768"x60.0   79.50  1280 1344 1472 1664  768 771 778 798 +hsync (47.8 kHz)
(**) fglrx(0):  Default mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 (67.5 kHz)
(**) fglrx(0):  Default mode "1152x864": 96.8 MHz (scaled from 0.0 MHz), 63.0 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1152x864"x70.0   96.76  1152 1224 1344 1536  864 865 868 900 +hsync (63.0 kHz)
(**) fglrx(0):  Default mode "1152x864": 81.6 MHz (scaled from 0.0 MHz), 53.7 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1152x864"x60.0   81.62  1152 1216 1336 1520  864 865 868 895 +hsync (53.7 kHz)
(**) fglrx(0):  Default mode "1024x480": 38.2 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x480"x60.0   38.16  1024 1048 1152 1280  480 481 484 497 +hsync (29.8 kHz)
(**) fglrx(0):  Default mode "848x480": 33.8 MHz (scaled from 0.0 MHz), 31.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 (31.0 kHz)
(**) fglrx(0):  Default mode "720x576": 32.7 MHz (scaled from 0.0 MHz), 35.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "720x576"x60.0   32.66  720 744 816 912  576 577 580 597 +hsync (35.8 kHz)
(**) fglrx(0):  Default mode "720x480": 26.7 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "720x480"x60.0   26.71  720 736 808 896  480 481 484 497 +hsync (29.8 kHz)
(**) fglrx(0):  Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 +hsync +vsync (37.5 kHz)
(**) fglrx(0):  Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.0 Hz
(II) fglrx(0): Modeline "640x480"x72.0   31.50  640 664 704 832  480 489 492 520 +hsync +vsync (37.9 kHz)
(**) fglrx(0):  Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480"x60.0   25.18  640 656 752 800  480 490 492 525 +hsync +vsync (31.5 kHz)
(**) fglrx(0):  Default mode "640x400": 28.1 MHz (scaled from 0.0 MHz), 33.7 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x400"x75.0   28.07  640 696 736 832  400 413 415 449 (33.7 kHz)
(**) fglrx(0):  Default mode "640x400": 24.9 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x400"x60.0   24.92  640 664 760 792  400 460 462 525 (31.5 kHz)
(**) fglrx(0):  Default mode "640x350": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "640x350"x70.0   25.17  640 656 752 800  350 387 389 449 +vsync (31.5 kHz)
(**) fglrx(0):  Default mode "512x384": 19.8 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "512x384"x60.0   19.81  512 544 624 664  384 451 453 497 (29.8 kHz)
(**) fglrx(0):  Default mode "400x300": 24.8 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "400x300"x75.0   24.75  400 408 448 528  300 601 602 625 doublescan (46.9 kHz)
(**) fglrx(0):  Default mode "400x300": 22.3 MHz (scaled from 0.0 MHz), 45.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "400x300"x60.0   22.33  400 416 480 496  300 601 605 742 doublescan (45.0 kHz)
(**) fglrx(0):  Default mode "320x240": 15.8 MHz (scaled from 0.0 MHz), 37.9 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "320x240"x75.0   15.75  320 328 360 416  240 481 482 501 doublescan (37.9 kHz)
(**) fglrx(0):  Default mode "320x240": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "320x240"x60.0   12.59  320 328 376 400  240 491 493 525 doublescan (31.5 kHz)
(**) fglrx(0):  Default mode "320x200": 13.1 MHz (scaled from 0.0 MHz), 31.5 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "320x200"x75.0   13.10  320 352 368 416  200 406 407 417 doublescan (31.5 kHz)
(**) fglrx(0):  Default mode "320x200": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "320x200"x60.0   12.59  320 336 384 400  200 457 459 524 doublescan (31.5 kHz)
(--) fglrx(0): Display dimensions: (340, 270) mm
(--) fglrx(0): DPI set to (95, 96)
(--) fglrx(0): Virtual size is 1280x1024 (pitch 1280)
(**) fglrx(0): *Mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 (80.0 kHz)
(**) fglrx(0):  Default mode "1280x1024": 128.9 MHz (scaled from 0.0 MHz), 74.6 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1280x1024"x70.0  128.94  1280 1368 1504 1728  1024 1025 1028 1066 +hsync (74.6 kHz)
(**) fglrx(0):  Default mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 (64.0 kHz)
(**) fglrx(0): *Mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.0 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 (60.0 kHz)
(**) fglrx(0):  Default mode "1024x768": 78.4 MHz (scaled from 0.0 MHz), 57.7 kHz, 72.0 Hz
(II) fglrx(0): Modeline "1024x768"x72.0   78.43  1024 1080 1192 1360  768 769 772 801 +hsync (57.7 kHz)
(**) fglrx(0):  Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 +hsync +vsync (56.5 kHz)
(**) fglrx(0):  Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 +hsync +vsync (48.4 kHz)
(**) fglrx(0): *Mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 (46.9 kHz)
(**) fglrx(0):  Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.0 Hz
(II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 (48.1 kHz)
(**) fglrx(0):  Default mode "800x600": 45.5 MHz (scaled from 0.0 MHz), 43.8 kHz, 70.0 Hz
(II) fglrx(0): Modeline "800x600"x70.0   45.50  800 840 920 1040  600 601 604 625 +hsync (43.8 kHz)
(**) fglrx(0):  Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 (37.9 kHz)
(**) fglrx(0):  Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.0 Hz
(II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 (35.2 kHz)
(**) fglrx(0):  Default mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 (60.0 kHz)
(**) fglrx(0):  Default mode "1280x768": 102.2 MHz (scaled from 0.0 MHz), 60.3 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x768"x75.0  102.25  1280 1360 1488 1696  768 771 778 805 +hsync (60.3 kHz)
(**) fglrx(0):  Default mode "1280x768": 79.5 MHz (scaled from 0.0 MHz), 47.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x768"x60.0   79.50  1280 1344 1472 1664  768 771 778 798 +hsync (47.8 kHz)
(**) fglrx(0):  Default mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 (67.5 kHz)
(**) fglrx(0):  Default mode "1152x864": 96.8 MHz (scaled from 0.0 MHz), 63.0 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1152x864"x70.0   96.76  1152 1224 1344 1536  864 865 868 900 +hsync (63.0 kHz)
(**) fglrx(0):  Default mode "1152x864": 81.6 MHz (scaled from 0.0 MHz), 53.7 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1152x864"x60.0   81.62  1152 1216 1336 1520  864 865 868 895 +hsync (53.7 kHz)
(**) fglrx(0):  Default mode "1024x480": 38.2 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x480"x60.0   38.16  1024 1048 1152 1280  480 481 484 497 +hsync (29.8 kHz)
(**) fglrx(0):  Default mode "848x480": 33.8 MHz (scaled from 0.0 MHz), 31.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 (31.0 kHz)
(**) fglrx(0):  Default mode "720x576": 32.7 MHz (scaled from 0.0 MHz), 35.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "720x576"x60.0   32.66  720 744 816 912  576 577 580 597 +hsync (35.8 kHz)
(**) fglrx(0):  Default mode "720x480": 26.7 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "720x480"x60.0   26.71  720 736 808 896  480 481 484 497 +hsync (29.8 kHz)
(**) fglrx(0):  Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 +hsync +vsync (37.5 kHz)
(**) fglrx(0):  Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.0 Hz
(II) fglrx(0): Modeline "640x480"x72.0   31.50  640 664 704 832  480 489 492 520 +hsync +vsync (37.9 kHz)
(**) fglrx(0):  Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480"x60.0   25.18  640 656 752 800  480 490 492 525 +hsync +vsync (31.5 kHz)
(**) fglrx(0):  Default mode "640x400": 28.1 MHz (scaled from 0.0 MHz), 33.7 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x400"x75.0   28.07  640 696 736 832  400 413 415 449 (33.7 kHz)
(**) fglrx(0):  Default mode "640x400": 24.9 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x400"x60.0   24.92  640 664 760 792  400 460 462 525 (31.5 kHz)
(**) fglrx(0):  Default mode "640x350": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "640x350"x70.0   25.17  640 656 752 800  350 387 389 449 +vsync (31.5 kHz)
(**) fglrx(0):  Default mode "512x384": 19.8 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "512x384"x60.0   19.81  512 544 624 664  384 451 453 497 (29.8 kHz)
(**) fglrx(0):  Default mode "400x300": 24.8 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "400x300"x75.0   24.75  400 408 448 528  300 601 602 625 doublescan (46.9 kHz)
(**) fglrx(0):  Default mode "400x300": 22.3 MHz (scaled from 0.0 MHz), 45.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "400x300"x60.0   22.33  400 416 480 496  300 601 605 742 doublescan (45.0 kHz)
(**) fglrx(0):  Default mode "320x240": 15.8 MHz (scaled from 0.0 MHz), 37.9 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "320x240"x75.0   15.75  320 328 360 416  240 481 482 501 doublescan (37.9 kHz)
(**) fglrx(0):  Default mode "320x240": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "320x240"x60.0   12.59  320 328 376 400  240 491 493 525 doublescan (31.5 kHz)
(**) fglrx(0):  Default mode "320x200": 13.1 MHz (scaled from 0.0 MHz), 31.5 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "320x200"x75.0   13.10  320 352 368 416  200 406 407 417 doublescan (31.5 kHz)
(**) fglrx(0):  Default mode "320x200": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "320x200"x60.0   12.59  320 336 384 400  200 457 459 524 doublescan (31.5 kHz)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
(==) fglrx(0): NoAccel = NO
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules//libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.2.0
    ABI class: X.Org Video Driver, version 2.0
(==) fglrx(0): NoDRI = NO
(II) Loading sub module "fglrxdrm"
(II) LoadModule: "fglrxdrm"
(II) Reloading /usr/lib/xorg/modules/linux//libfglrxdrm.so
(II) fglrx(0): Depth moves disabled by default
(==) fglrx(0): Capabilities: 0x00000000
(==) fglrx(0): CapabilitiesEx: 0x00000000
(==) fglrx(0): cpuFlags: 0x4000001f
(==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
(**) fglrx(0): ATI GART size: 256 MB
(II) fglrx(0): [pci] find AGP GART
(II) fglrx(0): [agp] Mode=0x1f00421b bridge: 0x10de/0x00e1
(II) fglrx(0): [agp] AGP v1/2 disable mask 0x00000000
(II) fglrx(0): [agp] AGP v3 disable mask   0x00000000
(II) fglrx(0): [agp] enabling AGP with mode=0x1f00431a
(II) fglrx(0): [agp] Remapping MC AGP space (new MCAGPBase = 0xe8000000)
(II) fglrx(0): [agp] AGP protocol is enabled for graphics board. (cmd=0x1f004312)
(II) fglrx(0): [agp] graphics chipset has AGP v3.0 (native mode)
(II) fglrx(0): [pcie] 0 kB allocated
(II) fglrx(0): [drm] DRM buffer queue setup: nbufs = 100 bufsize = 65536
(==) fglrx(0): UseFastTLS=0
(==) fglrx(0): BlockSignalsOnLock=1
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] 0    0    0xec030000 - 0xec03ffff (0x10000) MX[b]
    [1] 0    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b]
    [2] -1    0    0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1    0    0xed021000 - 0xed0210ff (0x100) MX[b]
    [7] -1    0    0xee001000 - 0xee001fff (0x1000) MX[b]
    [8] -1    0    0xee000000 - 0xee000fff (0x1000) MX[b]
    [9] -1    0    0xee005000 - 0xee0050ff (0x100) MX[b]
    [10] -1    0    0xee004000 - 0xee004fff (0x1000) MX[b]
    [11] -1    0    0xee003000 - 0xee003fff (0x1000) MX[b]
    [12] -1    0    0xe8000000 - 0xe7ffffff (0x0) MX[b]O
    [13] -1    0    0xec030000 - 0xec03ffff (0x10000) MX[b](B)
    [14] -1    0    0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [15] -1    0    0xec020000 - 0xec02ffff (0x10000) MX[b](B)
    [16] -1    0    0xe0000000 - 0xe7ffffff (0x8000000) MX[b](B)
    [17] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [18] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [19] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [20] 0    0    0x0000c000 - 0x0000c0ff (0x100) IX[b]
    [21] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [22] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [23] -1    0    0x0000d000 - 0x0000d0ff (0x100) IX[b]
    [24] -1    0    0x0000f000 - 0x0000f00f (0x10) IX[b]
    [25] -1    0    0x0000e300 - 0x0000e37f (0x80) IX[b]
    [26] -1    0    0x0000e200 - 0x0000e2ff (0x100) IX[b]
    [27] -1    0    0x0000e100 - 0x0000e107 (0x8) IX[b]
    [28] -1    0    0x00004c40 - 0x00004c7f (0x40) IX[b]
    [29] -1    0    0x00004c00 - 0x00004c3f (0x40) IX[b]
    [30] -1    0    0x0000e600 - 0x0000e61f (0x20) IX[b]
    [31] -1    0    0x0000c000 - 0x0000c0ff (0x100) IX[b](B)
    [32] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [33] 0    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
(II) fglrx(0): driver needs X.org 7.1.x.y with x.y >= 0.0
(WW) fglrx(0): could not detect X server version (query_status=-3)
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenByBusid: drmOpenMinor returns 6
drmOpenByBusid: drmGetBusid reports 
drmOpenDevice: node name is /dev/dri/card1
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card2
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card3
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card4
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card5
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card6
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card7
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card8
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card9
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card10
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card11
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card12
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card13
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card14
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: open result is -1, (No such device)
drmOpenDevice: Open failed
drmOpenByBusid: drmOpenMinor returns -19
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 6, (OK)
drmGetBusid returned ''
(II) [drm] DRM interface version 1.0
(II) [drm] DRM open master succeeded.
(II) fglrx(0): [drm] Using the DRM lock SAREA also for drawables.
(II) fglrx(0): [drm] framebuffer handle = 0x1aa000
(II) fglrx(0): [drm] added 1 reserved context for kernel
(II) fglrx(0): X context handle = 0x1
(II) fglrx(0): [drm] installed DRM signal handler
(II) fglrx(0): DRIScreenInit done
(II) fglrx(0): Kernel Module Version Information:
(II) fglrx(0):     Name: fglrx
(II) fglrx(0):     Version: 8.45.4
(II) fglrx(0):     Date: Jan 16 2008
(II) fglrx(0):     Desc: ATI FireGL DRM kernel module
(II) fglrx(0): Kernel Module version matches driver.
(II) fglrx(0): Kernel Module Build Time Information:
(II) fglrx(0):     Build-Kernel UTS_RELEASE:        2.6.23-ARCH
(II) fglrx(0):     Build-Kernel MODVERSIONS:        no
(II) fglrx(0):     Build-Kernel __SMP__:            no
(II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
(II) fglrx(0): [drm] register handle = 0x001ac000
(II) fglrx(0): Interrupt handler installed at IRQ 20.
(II) fglrx(0): Exposed events to the /proc interface
(II) fglrx(0): DRI initialization successfull!
(II) fglrx(0): FBADPhys: 0xd0000000 FBMappedSize: 0x00708000
(II) fglrx(0): FBMM initialized for area (0,0)-(1280,1440)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,1024) (front color buffer - assumption)
(II) fglrx(0): Largest offscreen area available: 1280 x 416
(==) fglrx(0): Backing store disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(**) fglrx(0): DPMS enabled
(**) fglrx(0): Option "XaaNoOffscreenPixmaps" "true"
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Solid Lines
    Dashed Lines
    Setting up tile and stipple cache:
        30 128x128 slots
(II) fglrx(0): Acceleration enabled
(II) fglrx(0): [DRI] installation complete
(II) fglrx(0): Direct rendering enabled
[atiddx] ASYNCIO init succeed!
Receive enable interrupt ret message
...irqEnableMask: 20008000
...dwIRQEnableId: 00000004
Receive enable interrupt ret message
...irqEnableMask: 10000000
...dwIRQEnableId: 00000005
(==) fglrx(0): Silken mouse enabled
(==) fglrx(0): Using hardware cursor
(==) 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 XC-APPGROUP
(II) Initializing built-in extension XAccessControlExtension
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/lib/xorg/modules/extensions//libGLcore.so
(II) Module GLcore: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(II) GLX: Initialized MESA-PROXY GL provider for screen 0
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/input/mice"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: always reports core events
(**) Option "Device" "/dev/input/mice"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5 6 7"
(**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
(**) Mouse0: Buttons: 11
(**) Mouse0: Sensitivity: 1
(**) Option "CoreKeyboard"
(**) Keyboard0: always reports core events
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Keyboard0: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) evaluating device (Keyboard0)
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) evaluating device (Mouse0)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded

Also I have this catalyst installed:

catalyst 8.1-2
catalyst-utils 8.1-1

fglrx is also added to the modules array in /etc/rc.conf

Last edited by kevin89 (2008-01-22 00:47:37)

Offline

#23 2008-01-22 01:07:16

May-C
Member
Registered: 2007-12-28
Posts: 83

Re: ATI catalyst lockups

looks everything alright and I have no idea why glxinfo | grep direct returns nothing... In your case I would just try an opengl application and look if it works...

Offline

#24 2008-01-22 06:49:39

aspid
Member
From: Russia, Stv
Registered: 2008-01-21
Posts: 4

Re: ATI catalyst lockups

khm... did you succesfully start gnome? afaik, you can start "glxinfo" only in X.
seems, like all drivers loaded. may be problem with a gnome? can you try smth another and post if it freeze too?

Offline

#25 2008-01-22 09:02:52

maschino
Member
From: Vienna
Registered: 2008-01-01
Posts: 19
Website

Re: ATI catalyst lockups

I have to start glxinfo and than quit it with ctrl+c the first time I do it after a X restart. The second time I start glxinfo it works. Also openGL doesn't work at the first try - I have to kill the app and restart it. The new catalyst 8.1 doesn't help sad

Offline

Board footer

Powered by FluxBB