When I bought this laptop, because wanted to have dedicated vga controller. I knew that it was shipped with ATI Mobility Radeon™ X1300 graphic adapter, it’s my challenge to install the driver and get it worked properly as it has some issue in installing process by (end) user that day.
Today, no more pain when we do that trough easy way
, until you are in a situation that need to have newest version. That’s your time to try this way (that i usually do, even i don’t really need those new features anyway, just for having fun!
).
ATI Catalyst is a utility software driver package for several ATI products for several operating systems. The Catalyst software was instituted after the release of the Radeon 8500. This driver development paradigm at ATI promised monthly driver updates which included performance enhancements, bug fixes, and new features. As of 2007, the Catalyst driver package typically included ATI Catalyst Control Center; an interface for manipulating many of the hardware’s functions, such as 3D settings, monitor controls, video options, among other things. It also offered a small 3D preview, allowing the user to see how changes to the graphics settings affected the quality of the rendered image.
See the release note to know new features in this ATI Catalyst™ 9.1 Proprietary Linux Display Driver.
The comprehensive tutorial about installing this driver has been written in openSUSE-ATI page, here I just explain what I’ve done (in HARD WAY) and things workaround on my laptop, a simple How To Install Fglrx-ATI Proprietary Driver on openSUSE 11.1 (at least) for me. So, if you feel that you are inexperienced user in (especially) re-building the Linux kernel, please leave this page and go to EASY WAY I’ve pointed previously.
Let’s have a lot of fun, then!..
One: Download it!
Before download the driver, find out what chipset your VGA Adapter is first, consult with your hardware (book) manual or type: sudo /sbin/lspci | grep VGA in your favorite console application (or just launch konsole for KDE user), give root’s password if it’s asked. Mine looks like this:
iamandi:~> sudo /sbin/lspci | grep VGA root's password: 01:00.0 VGA compatible controller: ATI Technologies Inc M52 [Mobility Radeon X1300]
![]() |
| From openSUSE |
And finally download the driver package (installer, ATI Catalyst) that matches your Linux machine type, ATI product Family, and its VGA controller’s name. Save it, mine is in my home directory. In shell, andi’s home directory is written: /home/andi.
![]() |
| From openSUSE |
Two: Preparing the System
Lets prepare the (kernel) system now. Why? Because (almost) all hardware driver (in this case, fglrx that included in ATI Catalyst), known as kernel module, will be inserted as a module to the running kernel. Therefore the kernel it self must be prepared to prevent unresolved problem.
If we insert this driver manually, so we prepare the kernel manually either.
To meet this condition, some packages need to be installed (see here if you run 32-bit machine, and here for 64-bit user) before continue following steps.
If all requirements packages have been installed, we should now access shell by root user, by log in-ing as root user, or type su - if we’re in a common user environment. And don’t forget to give its root password.
Then change the working directory to /usr/src/linux (known as kernel-source) directory:
iamandi:~ # cd /usr/src/linux
iamandi:/usr/src/linux #
Now lets clean out configuration files and any object files of an older Linux kernel version might have, and also restore the build directory to its original clean state:
iamandi:/usr/src/linux # make mrproper
CLEAN scripts/basic CLEAN scripts/genksyms CLEAN scripts/kconfig CLEAN scripts/mod CLEAN scripts CLEAN include/config CLEAN .config include/asm include/linux/autoconf.h include/linux/version.h include/linux/utsrelease.h
We can now get a (Linux) kernel that is configured like the running kernel:
iamandi:/usr/src/linux # make cloneconfig
HOSTCC scripts/basic/fixdep HOSTCC scripts/basic/docproc HOSTCC scripts/basic/hash HOSTCC scripts/kconfig/conf.o HOSTCC scripts/kconfig/kxgettext.o SHIPPED scripts/kconfig/zconf.tab.c SHIPPED scripts/kconfig/lex.zconf.c SHIPPED scripts/kconfig/zconf.hash.c HOSTCC scripts/kconfig/zconf.tab.o HOSTLD scripts/kconfig/conf Cloning configuration file /proc/config.gz # # configuration written to .config #
Because we want to insert fglrx as an (external) kernel module, we should make sure that kernel is expected to be prepared. This includes the presence of certain binaries, the kernel configuration and the symlink to include/asm. To do this a convenient target is made by:
iamandi:/usr/src/linux # make modules_prepare
scripts/kconfig/conf -s arch/x86/Kconfig CHK include/linux/version.h UPD include/linux/version.h CHK include/linux/utsrelease.h UPD include/linux/utsrelease.h SYMLINK include/asm -> include/asm-x86 CC kernel/bounds.s GEN include/linux/bounds.h CC arch/x86/kernel/asm-offsets.s GEN include/asm/asm-offsets.h CALL scripts/checksyscalls.sh HOSTCC scripts/genksyms/genksyms.o SHIPPED scripts/genksyms/lex.c SHIPPED scripts/genksyms/parse.h SHIPPED scripts/genksyms/keywords.c HOSTCC scripts/genksyms/lex.o SHIPPED scripts/genksyms/parse.c HOSTCC scripts/genksyms/parse.o HOSTLD scripts/genksyms/genksyms CC scripts/mod/empty.o HOSTCC scripts/mod/mk_elfconfig MKELF scripts/mod/elfconfig.h HOSTCC scripts/mod/file2alias.o HOSTCC scripts/mod/modpost.o HOSTCC scripts/mod/sumversion.o HOSTLD scripts/mod/modpost HOSTCC scripts/kallsyms HOSTCC scripts/conmakehash HOSTCC scripts/bin2c
Finally we should clean the object files and other temporary files (but except configuration files):
iamandi:/usr/src/linux # make clean
CLEAN /usr/src/linux-2.6.27.7-9 CLEAN .tmp_versions
Done!
Our system is already to be inserted by ‘fglrx’ kernel module. But make sure that there are NO OTHER fglrx version installed in the system. Then..
Three: Removing Older Version
Remove any fglrx or (maybe) nvidia package, if you have one. We could do this using rpm utility, OR trough YaST Software Management:
iamandi:/usr/src/linux # rpm -e $(rpm -qa '*fglrx*')
OR
![]() |
| From openSUSE |
Four: Package Building
We may (optional) create xorg.conf file in /etc/X11 directory by sax2–I didn’t do this, as i have xorg.conf worked fine already:
iamandi:/usr/src/linux # sax2 -a
Now, we should change our working directory (to make things easy) to place where the ATI Catalyst (installer) has been downloaded (in my case, it is in my home directory, /home/andi)
iamandi:/usr/src/linux # cd /home/andi/ iamandi:/home/andi # iamandi:/home/andi # ls -l ati-driver-installer-9-1-x86.x86_64.run -rw------- 1 andi users 82398155 Jan 29 21:47 ati-driver-installer-9-1-x86.x86_64.run
We’re going to run the installer inside this (/home/andi ) directory, to produce fglrx (rpm) package:
(NOTE: I’m running 32-bit machine, for AMD/64-bit user see different command line below, after the end of the preformated paragraph)
iamandi:/home/andi # sh ati-driver-installer-9-1-x86.x86_64.run --buildpkg SuSE/SUSE111-IA32
Created directory fglrx-install.ILog9C
Verifying archive integrity... All good.
Uncompressing ATI Proprietary Linux Driver-8.573.......................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
.......................................................................................
..............................................................................
==================================================
ATI Technologies Linux Driver Installer/Packager
==================================================
Generating package: SuSE/SUSE111-IA32
/tmp/ati.gAy2lf
Package /home/andi/fglrx_7_4_0_SUSE111-8.573-1.i386.rpm has been successfully generated
Removing temporary directory: fglrx-install.ILog9C
You can see text in bold and purple color format above, it says that fglrx package has been successfully generated..
For AMD/64-bit user, choose this command:
sh ati*.run --buildpkg SuSE/SUSE111-AMD64
The installer made a fglrx package for our system in the same directory as where the installer is located.
iamandi:/home/andi # ls -l fglrx_7_4_0_SUSE111-8.573-1.i386.rpm
-rw-r--r-- 1 root root 21184915 Feb 10 09:43 fglrx_7_4_0_SUSE111-8.573-1.i386.rpm
Now, we’re ready to install this driver..
Five: Installing
We should turn the X off now, because sax2 need to re-probe the original running graphic adapter driver. Therefore we should switch to init 3 to kill X.
iamandi:/home/andi # init 3
If you run init 3 in konsole (as i said in Step One) you’ll probably be taken to the terminal. Just login (again) as root user and give the password. And DON’T FORGET to change the working directory to /home/andi , place where the generated (rpm) package has been built previously.
Finally install the fglrx package:
iamandi:/home/andi # rpm -Uvh fglrx_7_4_0_SUSE111-8.573-1.i386.rpm
Preparing... ################################################## fglrx_7_4_0_SUSE111 ################################################## /usr/src/kernel-modules/fglrx / make: Entering directory `/usr/src/linux-2.6.27.7-9-obj/i386/pae' make -C ../../../linux-2.6.27.7-9 O=/usr/src/linux-2.6.27.7-9-obj/i386/pae/. LD /usr/src/kernel-modules/fglrx/built-in.o CC [M] /usr/src/kernel-modules/fglrx/firegl_public.o CC [M] /usr/src/kernel-modules/fglrx/kcl_acpi.o CC [M] /usr/src/kernel-modules/fglrx/kcl_agp.o CC [M] /usr/src/kernel-modules/fglrx/kcl_debug.o CC [M] /usr/src/kernel-modules/fglrx/kcl_ioctl.o CC [M] /usr/src/kernel-modules/fglrx/kcl_io.o CC [M] /usr/src/kernel-modules/fglrx/kcl_pci.o CC [M] /usr/src/kernel-modules/fglrx/kcl_str.o CC [M] /usr/src/kernel-modules/fglrx/kcl_wait.o LD [M] /usr/src/kernel-modules/fglrx/fglrx.o Building modules, stage 2. MODPOST 1 modules CC /usr/src/kernel-modules/fglrx/fglrx.mod.o LD [M] /usr/src/kernel-modules/fglrx/fglrx.ko make: Leaving directory `/usr/src/linux-2.6.27.7-9-obj/i386/pae' make: Entering directory `/usr/src/linux-2.6.27.7-9-obj/i386/pae' make -C ../../../linux-2.6.27.7-9 O=/usr/src/linux-2.6.27.7-9-obj/i386/pae/. modules_install INSTALL /usr/src/kernel-modules/fglrx/fglrx.ko DEPMOD 2.6.27.7-9-pae make: Leaving directory `/usr/src/linux-2.6.27.7-9-obj/i386/pae' make: Entering directory `/usr/src/linux-2.6.27.7-9-obj/i386/pae' make -C ../../../linux-2.6.27.7-9 O=/usr/src/linux-2.6.27.7-9-obj/i386/pae/. clean CLEAN /usr/src/kernel-modules/fglrx/.tmp_versions CLEAN /usr/src/kernel-modules/fglrx/Module.symvers make: Leaving directory `/usr/src/linux-2.6.27.7-9-obj/i386/pae' / ************************************************************* Please read "/usr/share/doc/packages/fglrx/README.SuSE" for configuration details when using SaX2. *************************************************************
Make sure you have similar output as i have above.
And then run ldconfig to make sure that libraries provided by fglrx are linked to the system properly:
iamandi:/home/andi # ldconfig
And run aticonfig utility, so X will be using fglrx driver in graphical environment.
iamandi:/home/andi # aticonfig --initial --input=/etc/X11/xorg.conf
Found fglrx primary device section Using /etc/X11/xorg.conf Saved back-up to /etc/X11/xorg.conf.fglrx-0
Done! We’re finished! We just need to reboot the machine now!..
In previous fglrx (8.561, Catalyst 8.12) driver, still on the same openSUSE 11.1 version, we need to launch this:
iamandi:/home/andi # sax2 -r -m 0=fglrxBut NO MORE needed in this release as it still have an issue that will produce a blank screen (fglrx 8.573, another name of Catalyst 9.1) on openSUSE 11.1. This issue is also said in its release note.
Six: Testing
if we’re curious that we have installed fglrx correctly and has worked as expected or not, run this:
andi@iamandi:~> fglrxinfo
display: :0.0 screen: 0 OpenGL vendor string: ATI Technologies Inc. OpenGL renderer string: ATI Mobility Radeon X1300 OpenGL version string: 2.1.8395 Release
this:
andi@iamandi:~> glxinfo | grep render
direct rendering: Yes OpenGL renderer string: ATI Mobility Radeon X1300 GL_KTX_buffer_region, GL_NV_blend_square, GL_NV_conditional_render,
I’m running glxgears with KWin-Desktop Effects enabled:
andi@iamandi:~> glxgears
5022 frames in 5.0 seconds = 1004.269 FPS 6086 frames in 5.0 seconds = 1216.191 FPS 6295 frames in 5.0 seconds = 1257.649 FPS 5975 frames in 5.0 seconds = 1194.411 FPS 6208 frames in 5.0 seconds = 1241.553 FPS 6138 frames in 5.0 seconds = 1227.591 FPS
![]() |
| From openSUSE |
If they give you similar output as mine, so you have it installed and worked correctly..
Ok! See you in next post, then..
, and always have a lot of fun!




ATI Catalyst 9.1 don’t work for me, ATI XPRESS 200M (PCIE) on Opensuse 11.1 64 bit. With 8.12 all works fine, but now I have Problem. Somebody help me ?
X.Org X Server 1.5.2
Release Date: 10 October 2008
X Protocol Version 11, Revision 0
Build Operating System: openSUSE SUSE LINUX
Current Operating System: Linux linux-0h9v 2.6.27.7-9-default #1 SMP 2008-12-04 18:10:04 +0100 x86_64
Build Date: 03 December 2008 02:40:38PM
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: Mon Feb 16 11:38:41 2009
(==) Using config file: “/etc/X11/xorg.conf”
(==) ServerLayout “Layout[all]”
(**) |–>Screen “aticonfig-Screen[0]-0″ (0)
(**) | |–>Monitor “aticonfig-Monitor[0]-0″
(**) | |–>Device “aticonfig-Device[0]-0″
(**) |–>Input Device “Keyboard[0]”
(**) |–>Input Device “Mouse[1]”
(**) |–>Input Device “Mouse[3]”
(**) Option “ZapWarning” “on”
(**) Option “AllowMouseOpenFail” “on”
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory “/usr/share/fonts/local” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/PEX” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/latin2/misc” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/latin2/75dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/latin2/100dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/latin2/Type1″ does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/latin7/75dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/baekmuk” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/japanese” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/kwintv” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/uni” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/CID” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/ucs/misc” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/ucs/75dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/ucs/100dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/hellas/misc” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/hellas/75dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/hellas/100dpi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/hellas/Type1″ does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/misc/sgi” does not exist.
Entry deleted from font path.
(WW) The directory “/usr/share/fonts/xtest” does not exist.
Entry deleted from font path.
(==) Including the default font path /usr/share/fonts/misc:unscaled,/usr/share/fonts/TTF/,/usr/share/fonts/OTF,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled.
(**) FontPath set to:
/usr/share/fonts/misc:unscaled,
/usr/share/fonts/75dpi:unscaled,
/usr/share/fonts/100dpi:unscaled,
/usr/share/fonts/Type1,
/usr/share/fonts/URW,
/usr/share/fonts/Speedo,
/usr/share/fonts/cyrillic,
/usr/share/fonts/truetype,
/opt/kde3/share/fonts,
/usr/share/fonts/misc:unscaled,
/usr/share/fonts/TTF/,
/usr/share/fonts/OTF,
/usr/share/fonts/Type1/,
/usr/share/fonts/100dpi:unscaled,
/usr/share/fonts/75dpi:unscaled
(**) Input device list set to “/dev/gpmdata,/dev/input/mice”
(==) ModulePath set to “/usr/lib64/xorg/modules/updates,/usr/lib64/xorg/modules”
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0×7ae680
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 4.1
X.Org XInput driver : 2.1
X.Org Server Extension : 1.1
X.Org Font Renderer : 0.6
(II) Loader running on linux
(++) using VT number 7
(–) PCI:*(0@1:5:0) unknown vendor (0×1002) unknown chipset (0×5975) rev 0, Mem @ 0xd0000000/268435456, 0xf0200000/65536, I/O @ 0×00009000/256, BIOS @ 0x????????/131072
(II) System resource ranges:
[0] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[1] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[2] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[3] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[5] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[6] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[7] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[9] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[10] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[11] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[13] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[14] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[15] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[17] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[18] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[19] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[20] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[21] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[22] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[23] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[24] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[25] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[26] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[27] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[28] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[29] -1 0 0×00000000 – 0×00000000 (0×1) IX[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 by default.
(II) “dri” will be loaded. This was enabled by default and also specified in the config file.
(II) LoadModule: “dri”
(II) Loading /usr/lib64/xorg/modules/updates//extensions/libdri.so
(II) Module dri: vendor=”X.Org Foundation”
compiled for 7.4.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 1.1
(II) Loading extension XFree86-DRI
(II) LoadModule: “dbe”
(II) Loading /usr/lib64/xorg/modules//extensions/libdbe.so
(II) Module dbe: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 1.1
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: “freetype”
(II) Loading /usr/lib64/xorg/modules//fonts/libfreetype.so
(II) Module freetype: vendor=”X.Org Foundation & the After X-TT Project”
compiled for 1.5.2, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.6
(II) Loading font FreeType
(II) LoadModule: “extmod”
(II) Loading /usr/lib64/xorg/modules//extensions/libextmod.so
(II) Module extmod: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 1.1
(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: “glx”
(II) Loading /usr/lib64/xorg/modules/updates//extensions/libglx.so
(II) Module glx: vendor=”X.Org Foundation”
compiled for 7.4.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 1.1
(==) AIGLX disabled
(WW) fglrx: Force AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: “record”
(II) Loading /usr/lib64/xorg/modules//extensions/librecord.so
(II) Module record: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.13.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 1.1
(II) Loading extension RECORD
(II) LoadModule: “fglrx”
(II) Loading /usr/lib64/xorg/modules//drivers/fglrx_drv.so
(II) Module fglrx: vendor=”FireGL – ATI Technologies Inc.”
compiled for 1.4.99.906, module version = 8.57.2
Module class: X.Org Video Driver
(II) LoadModule: “kbd”
(II) Loading /usr/lib64/xorg/modules//input/kbd_drv.so
(II) Module kbd: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.3.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 2.1
(II) LoadModule: “synaptics”
(II) Loading /usr/lib64/xorg/modules//input/synaptics_drv.so
(II) Module synaptics: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 0.15.2
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 2.1
(II) LoadModule: “mouse”
(II) Loading /usr/lib64/xorg/modules//input/mouse_drv.so
(II) Module mouse: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.3.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 2.1
(II) Primary Device is: PCI 01@00:05:0
(WW) Falling back to old probe method for fglrx
(II) ATI Proprietary Linux Driver Version Identifier:8.57.2
(II) ATI Proprietary Linux Driver Release Identifier: 8.573
(II) ATI Proprietary Linux Driver Build Date: Jan 13 2009 23:22:50
(WW) This ATI Proprietary Linux Driver does not guarantee support of video driver ABI higher than 2.0
(WW) Video driver ABI version of the X server is 4.1
(II) AMD ASIC control file status: R12 S1 B313 N313 T312
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:0:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:1:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:4:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:5:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:1) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:2) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:1) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:2) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:3) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:4) found
(–) Chipset Supported AMD Graphics Processor (0×5975) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:0:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:1:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:4:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:5:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:1) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:2) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:0) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:1) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:2) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:3) found
(WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:4) 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 0xffffffff – 0xffffffff (0×1) MX[B]
[1] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[2] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[3] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[5] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[6] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[7] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[9] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[10] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[11] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[13] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[14] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[15] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[17] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[18] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[19] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[20] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[21] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[22] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[23] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[24] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[25] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[26] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[27] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[28] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[29] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
(II) fglrx(0): pEnt->device->identifier=0×7eade0
(II) resource ranges after probing:
[0] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[1] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[2] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[3] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[5] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[6] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[7] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[9] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[10] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[11] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[13] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[14] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[15] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[17] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[18] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[19] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[20] 0 0 0×000a0000 – 0×000affff (0×10000) MS[B]
[21] 0 0 0×000b0000 – 0×000b7fff (0×8000) MS[B]
[22] 0 0 0×000b8000 – 0×000bffff (0×8000) MS[B]
[23] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[24] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[25] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[26] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[27] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[28] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[29] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[30] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[31] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[32] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[33] 0 0 0×000003b0 – 0×000003bb (0xc) IS[B]
[34] 0 0 0×000003c0 – 0×000003df (0×20) IS[B]
(II) Setting vga for screen 0.
(II) fglrx(0): === [atiddxPreInit] === begin
(II) Loading sub module “vgahw”
(II) LoadModule: “vgahw”
(II) Loading /usr/lib64/xorg/modules//libvgahw.so
(II) Module vgahw: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 0.1.0
ABI class: X.Org Video Driver, version 4.1
(II) fglrx(0): PCI bus 1 card 5 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 “DPMS” “true”
(II) fglrx(0): Loading PCS database from /etc/ati/amdpcsdb
(II) fglrx(0): 10BitPixelFormat disabled by default
(==) fglrx(0): RGB weight 888
(II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
(==) fglrx(0): Gamma Correction for I is 0×06419064
(==) fglrx(0): Gamma Correction for II is 0×06419064
(==) fglrx(0): Buffer Tiling is ON
(II) Loading sub module “fglrxdrm”
(II) LoadModule: “fglrxdrm”
(II) Loading /usr/lib64/xorg/modules/linux//libfglrxdrm.so
(II) Module fglrxdrm: vendor=”FireGL – ATI Technologies Inc.”
compiled for 1.4.99.906, module version = 8.57.2
ABI class: X.Org Server Extension, version 1.1
(–) fglrx(0): Chipset: “ATI Radeon Xpress Series ” (Chipset = 0×5975)
(–) fglrx(0): (PciSubVendor = 0×1025, PciSubDevice = 0×009f)
(–) fglrx(0): board vendor info: third party graphics adapter – NOT original ATI
(–) fglrx(0): Linear framebuffer (phys) at 0xd0000000
(–) fglrx(0): MMIO registers at 0xf0200000
(–) fglrx(0): I/O port at 0×00009000
(==) fglrx(0): ROM-BIOS at 0×000c0000
(II) Loading sub module “int10″
(II) LoadModule: “int10″
(II) Loading /usr/lib64/xorg/modules//libint10.so
(II) Module int10: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 4.1
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(II) Loading sub module “vbe”
(II) LoadModule: “vbe”
(II) Loading /usr/lib64/xorg/modules//libvbe.so
(II) Module vbe: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.1.0
ABI class: X.Org Video Driver, version 4.1
(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 RADEON XPRESS 200M Series
(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: MS48
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID PCI:1:5:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports PCI:1:5:0
(II) fglrx(0): Using adapter: 1:5.0.
(II) fglrx(0): [FB] MC range(MCFBBase = 0xb0000000, MCFBSize = 0×10000000)
(–) fglrx(0): Video RAM: 262144 kByte, Type: DDR SGRAM / SDRAM
(II) fglrx(0): PCIE card detected
(WW) fglrx(0): board is an unknown third party board, chipset is supported
(II) Loading sub module “ddc”
(II) LoadModule: “ddc”
(II) Module “ddc” already built-in
(II) fglrx(0): ***Display: ConnectedDisplayTypes=0×00000002, disabled=0×00000000
(II) fglrx(0): Connected Display1: LCD on internal LVDS [lvds]
(II) fglrx(0): Display1 EDID data —————————
(II) fglrx(0): Manufacturer: SEC Model: 3845 Serial#: 0
(II) fglrx(0): Year: 2006 Week: 0
(II) fglrx(0): EDID Version: 1.3
(II) fglrx(0): Digital Display Input
(II) fglrx(0): Max Image Size [cm]: horiz.: 33 vert.: 21
(II) fglrx(0): Gamma: 2.20
(II) fglrx(0): No DPMS capabilities specified
(II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
(II) fglrx(0): First detailed timing is preferred mode
(II) fglrx(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550
(II) fglrx(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329
(II) fglrx(0): Manufacturer’s mask: 0
(II) fglrx(0): Supported additional Video Mode:
(II) fglrx(0): clock: 68.9 MHz Image Size: 331 x 207 mm
(II) fglrx(0): h_active: 1280 h_sync: 1296 h_sync_end 1344 h_blank_end 1408 h_border: 0
(II) fglrx(0): v_active: 800 v_sync: 801 v_sync_end 804 v_blanking: 816 v_border: 0
(WW) fglrx(0): Unknown vendor-specific block f
(II) fglrx(0): SAMSUNG
(II) fglrx(0): LTN154XA-L01
(II) fglrx(0): EDID (in hex):
(II) fglrx(0): 00ffffffffffff004ca3453800000000
(II) fglrx(0): 00100103802115780a87f594574f8c27
(II) fglrx(0): 27505400000001010101010101010101
(II) fglrx(0): 010101010101ee1a0080502010301030
(II) fglrx(0): 13004bcf100000190000000f00000000
(II) fglrx(0): 00000000002387026400000000fe0053
(II) fglrx(0): 414d53554e470a2020202020000000fe
(II) fglrx(0): 004c544e31353458412d4c30310a0054
(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 – LCD on internal LVDS
(II) fglrx(0): Internal Desktop Setting: 0×00000001
(II) fglrx(0): POWERplay version 3. 2 power states available:
(II) fglrx(0): 1. 301/301MHz @ 60Hz [enable load balancing]
(II) fglrx(0): 2. 100/133MHz @ 60Hz []
(==) fglrx(0): QBS 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 14 modes found for primary display.
(–) fglrx(0): Virtual size is 1280×800 (pitch 0)
(**) fglrx(0): *Mode “1280×800″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “1280×800″x60.0 68.94 1280 1296 1344 1408 800 801 804 816 (49.0 kHz)
(**) fglrx(0): *Mode “1280×768″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “1280×768″x60.0 68.94 1280 1296 1344 1408 768 785 788 816 (49.0 kHz)
(**) fglrx(0): *Mode “1024×768″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “1024×768″x60.0 68.94 1024 1168 1216 1408 768 785 788 816 (49.0 kHz)
(**) fglrx(0): *Mode “848×480″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “848×480″x60.0 68.94 848 1080 1128 1408 480 641 644 816 (49.0 kHz)
(**) fglrx(0): *Mode “800×600″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “800×600″x60.0 68.94 800 1056 1104 1408 600 701 704 816 (49.0 kHz)
(**) fglrx(0): *Mode “720×576″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “720×576″x60.0 68.94 720 1016 1064 1408 576 689 692 816 (49.0 kHz)
(**) fglrx(0): *Mode “720×480″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “720×480″x60.0 68.94 720 1016 1064 1408 480 641 644 816 (49.0 kHz)
(**) fglrx(0): *Mode “640×480″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “640×480″x60.0 68.94 640 976 1024 1408 480 641 644 816 (49.0 kHz)
(**) fglrx(0): Default mode “640×400″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “640×400″x60.0 68.94 640 976 1024 1408 400 601 604 816 (49.0 kHz)
(**) fglrx(0): Default mode “640×350″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “640×350″x60.0 68.94 640 976 1024 1408 350 576 579 816 (49.0 kHz)
(**) fglrx(0): Default mode “512×384″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “512×384″x60.0 68.94 512 912 960 1408 384 593 596 816 (49.0 kHz)
(**) fglrx(0): Default mode “400×300″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline “400×300″x60.0 68.94 400 856 904 1408 300 701 704 816 doublescan (49.0 kHz)
(**) fglrx(0): Default mode “320×240″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline “320×240″x60.0 68.94 320 816 864 1408 240 641 644 816 doublescan (49.0 kHz)
(**) fglrx(0): Default mode “320×200″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline “320×200″x60.0 68.94 320 816 864 1408 200 601 604 816 doublescan (49.0 kHz)
(–) fglrx(0): Display dimensions: (330, 210) mm
(–) fglrx(0): DPI set to (98, 96)
(–) fglrx(0): Virtual size is 1280×800 (pitch 1280)
(**) fglrx(0): *Mode “1280×800″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “1280×800″x60.0 68.94 1280 1296 1344 1408 800 801 804 816 (49.0 kHz)
(**) fglrx(0): *Mode “1280×768″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “1280×768″x60.0 68.94 1280 1296 1344 1408 768 785 788 816 (49.0 kHz)
(**) fglrx(0): *Mode “1024×768″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “1024×768″x60.0 68.94 1024 1168 1216 1408 768 785 788 816 (49.0 kHz)
(**) fglrx(0): *Mode “848×480″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “848×480″x60.0 68.94 848 1080 1128 1408 480 641 644 816 (49.0 kHz)
(**) fglrx(0): *Mode “800×600″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “800×600″x60.0 68.94 800 1056 1104 1408 600 701 704 816 (49.0 kHz)
(**) fglrx(0): *Mode “720×576″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “720×576″x60.0 68.94 720 1016 1064 1408 576 689 692 816 (49.0 kHz)
(**) fglrx(0): *Mode “720×480″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “720×480″x60.0 68.94 720 1016 1064 1408 480 641 644 816 (49.0 kHz)
(**) fglrx(0): *Mode “640×480″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “640×480″x60.0 68.94 640 976 1024 1408 480 641 644 816 (49.0 kHz)
(**) fglrx(0): Default mode “640×400″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “640×400″x60.0 68.94 640 976 1024 1408 400 601 604 816 (49.0 kHz)
(**) fglrx(0): Default mode “640×350″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “640×350″x60.0 68.94 640 976 1024 1408 350 576 579 816 (49.0 kHz)
(**) fglrx(0): Default mode “512×384″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline “512×384″x60.0 68.94 512 912 960 1408 384 593 596 816 (49.0 kHz)
(**) fglrx(0): Default mode “400×300″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline “400×300″x60.0 68.94 400 856 904 1408 300 701 704 816 doublescan (49.0 kHz)
(**) fglrx(0): Default mode “320×240″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline “320×240″x60.0 68.94 320 816 864 1408 240 641 644 816 doublescan (49.0 kHz)
(**) fglrx(0): Default mode “320×200″: 68.9 MHz (scaled from 0.0 MHz), 49.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline “320×200″x60.0 68.94 320 816 864 1408 200 601 604 816 doublescan (49.0 kHz)
(II) Loading sub module “fb”
(II) LoadModule: “fb”
(II) Loading /usr/lib64/xorg/modules//libfb.so
(II) Module fb: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.4
(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/lib64/xorg/modules//libxaa.so
(II) Module xaa: vendor=”X.Org Foundation”
compiled for 1.5.2, module version = 1.2.1
ABI class: X.Org Video Driver, version 4.1
(==) fglrx(0): NoDRI = NO
(II) Loading sub module “fglrxdrm”
(II) LoadModule: “fglrxdrm”
(II) Reloading /usr/lib64/xorg/modules/linux//libfglrxdrm.so
(**) fglrx(0): Capabilities: 0×00000000
(**) fglrx(0): CapabilitiesEx: 0×00000000
(==) fglrx(0): cpuFlags: 0×4000001f
(==) fglrx(0): OpenGL ClientDriverName: “fglrx_dri.so”
(II) fglrx(0): [pcie] 1413772 kB allocated
(II) fglrx(0): [drm] DRM buffer queue setup: nbufs = 100 bufsize = 65536
(==) fglrx(0): UseFastTLS=0
(==) fglrx(0): BlockSignalsOnLock=1
(II) fglrx(0): Direct rendering enabled
(II) fglrx(0): AC Adapter is used
(II) fglrx(0): Interrupt handler installed at IRQ 17.
(II) fglrx(0): Exposed events to the /proc interface
(–) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don’t.
(II) resource ranges after preInit:
[0] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[1] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[2] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[3] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[4] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[5] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[6] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[7] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[8] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[9] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[10] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[11] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[12] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[13] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[14] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[15] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[16] -1 0 0xffffffff – 0xffffffff (0×1) MX[B]
[17] -1 0 0×000f0000 – 0×000fffff (0×10000) MX[B]
[18] -1 0 0×000c0000 – 0×000effff (0×30000) MX[B]
[19] -1 0 0×00000000 – 0×0009ffff (0xa0000) MX[B]
[20] 0 0 0×000a0000 – 0×000affff (0×10000) MS[B](OprU)
[21] 0 0 0×000b0000 – 0×000b7fff (0×8000) MS[B](OprU)
[22] 0 0 0×000b8000 – 0×000bffff (0×8000) MS[B](OprU)
[23] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[24] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[25] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[26] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[27] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[28] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[29] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[30] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[31] -1 0 0×0000ffff – 0×0000ffff (0×1) IX[B]
[32] -1 0 0×00000000 – 0×00000000 (0×1) IX[B]
[33] 0 0 0×000003b0 – 0×000003bb (0xc) IS[B](OprU)
[34] 0 0 0×000003c0 – 0×000003df (0×20) IS[B](OprU)
(II) fglrx(0): driver needs X.org 1.4.x.y with x.y >= 99.906
(II) fglrx(0): detected X.org 7.4.2.0
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
(II) fglrx(0): DRIScreenInit for fglrx driver
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 12, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 12, (OK)
drmOpenByBusid: Searching for BusID PCI:1:5:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 12, (OK)
drmOpenByBusid: drmOpenMinor returns 12
drmOpenByBusid: drmGetBusid reports PCI:1:5:0
(II) fglrx(0): [drm] DRM interface version 1.0
(II) fglrx(0): [drm] created “fglrx” driver at busid “PCI:1:5:0″
(II) fglrx(0): [drm] added 8192 byte SAREA at 0×2000
(II) fglrx(0): [drm] mapped SAREA 0×2000 to 0×7fa96f3ae000
(II) fglrx(0): [drm] framebuffer handle = 0×3000
(II) fglrx(0): [drm] added 1 reserved context for kernel
(II) fglrx(0): DRIScreenInit done
(II) fglrx(0): Kernel Module Version Information:
(II) fglrx(0): Name: fglrx
(II) fglrx(0): Version: 8.57.2
(II) fglrx(0): Date: Jan 14 2009
(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.27.7-9-default
(II) fglrx(0): Build-Kernel MODVERSIONS: no
(II) fglrx(0): Build-Kernel __SMP__: yes
(II) fglrx(0): Build-Kernel PAGE_SIZE: 0×1000
(II) fglrx(0): [drm] register handle = 0×00004000
(II) fglrx(0): DRI initialization successfull!
(II) fglrx(0): FBADPhys: 0xb0140000 FBMappedSize: 0×005f0000
(II) fglrx(0): FBMM initialized for area (0,0)-(1280,1216)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,800) (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
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
8×8 mono pattern filled rectangles
Solid Lines
Dashed Lines
Setting up tile and stipple cache:
30 128×128 slots
(II) fglrx(0): Acceleration enabled
(II) LoadModule: “amdxmm”
(II) Loading /usr/lib64/xorg/modules//amdxmm.so
(II) Module amdxmm: vendor=”X.Org Foundation”
compiled for 1.4.99.906, module version = 1.0.0
ABI class: X.Org Server Extension, version 1.1
(WW) fglrx(0): Option “VendorName” is not used
(WW) fglrx(0): Option “ModelName” is not used
(II) fglrx(0): X context handle = 0×1
(II) fglrx(0): [DRI] installation complete
(==) 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 XINERAMA
(II) Initializing built-in extension XFIXES
(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
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 13, (OK)
drmOpenByBusid: Searching for BusID PCI:1:5:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 13, (OK)
drmOpenByBusid: drmOpenMinor returns 13
drmOpenByBusid: drmGetBusid reports PCI:1:5:0
Backtrace:
0: /usr/bin/Xorg(xf86SigHandler+0×65) [0x47e715]
1: /lib64/libc.so.6 [0x7fa96d32a6e0]
2: /usr/lib64/dri/fglrx_dri.so [0x7fa968eb7872]
3: /usr/lib64/dri/fglrx_dri.so [0x7fa9687ba804]
4: /usr/lib64/dri/fglrx_dri.so [0x7fa96874fa63]
5: /usr/lib64/dri/fglrx_dri.so [0x7fa9682f8d61]
6: /usr/lib64/dri/fglrx_dri.so [0x7fa9689e0ef6]
7: /usr/lib64/dri/fglrx_dri.so [0x7fa9689f767c]
8: /usr/lib64/dri/fglrx_dri.so [0x7fa9689f7a00]
9: /usr/lib64/dri/fglrx_dri.so(__driCreateNewScreen_20050727+0×929) [0x7fa9690877c9]
10: /usr/lib64/xorg/modules/updates//extensions/libglx.so [0x7fa96bf063ad]
11: /usr/lib64/xorg/modules/updates//extensions/libglx.so(__glXInitScreens+0×69) [0x7fa96bf07959]
12: /usr/lib64/xorg/modules/updates//extensions/libglx.so(GlxExtensionInit+0xe9) [0x7fa96bf06f99]
13: /usr/bin/Xorg(InitExtensions+0×8a) [0x4a421a]
14: /usr/bin/Xorg(main+0×2b0) [0x432170]
15: /lib64/libc.so.6(__libc_start_main+0xe6) [0x7fa96d316586]
16: /usr/bin/Xorg [0x4316f9]
Fatal server error:
Caught signal 11. Server aborting
Backtrace:
0: /usr/bin/Xorg(xf86SigHandler+0×65) [0x47e715]
1: /lib64/libc.so.6 [0x7fa96d32a6e0]
2: /usr/lib64/dri/fglrx_dri.so [0x7fa968eb7872]
3: /usr/lib64/dri/fglrx_dri.so [0x7fa9687ba804]
4: /usr/lib64/dri/fglrx_dri.so [0x7fa96874fa63]
5: /usr/lib64/dri/fglrx_dri.so [0x7fa9682f8d61]
6: /usr/lib64/dri/fglrx_dri.so [0x7fa9689e0ef6]
7: /usr/lib64/dri/fglrx_dri.so [0x7fa9689f767c]
8: /usr/lib64/dri/fglrx_dri.so [0x7fa9689f7a00]
9: /usr/lib64/dri/fglrx_dri.so(__driCreateNewScreen_20050727+0×929) [0x7fa9690877c9]
10: /usr/lib64/xorg/modules/updates//extensions/libglx.so [0x7fa96bf063ad]
11: /usr/lib64/xorg/modules/updates//extensions/libglx.so(__glXInitScreens+0×69) [0x7fa96bf07959]
12: /usr/lib64/xorg/modules/updates//extensions/libglx.so(GlxExtensionInit+0xe9) [0x7fa96bf06f99]
13: /usr/bin/Xorg(InitExtensions+0×8a) [0x4a421a]
14: /usr/bin/Xorg(main+0×2b0) [0x432170]
15: /lib64/libc.so.6(__libc_start_main+0xe6) [0x7fa96d316586]
16: /usr/bin/Xorg [0x4316f9]
Fatal server error:
Caught signal 11. Server aborting