Installation drivers 3D pour ATI

Ba le souci est comment modifier le fichier xorg.conf pour qu’il prenne en compte les drivers ati
car quand je fait un apt-get install du driver et que je redemare x sa plante …

#m-a a-i fglrx peut-être ?

Je test ce soir et je te dit merci :slightly_smiling:

En faite ça fonctionne pas. Quand je relance le serveur x pas de problème mais dés que je redémarre le pc et que je fais un startx le x11 plante.
Bizarre.

Lenny 5.0.3 Novembre 2009, contrib non-free ajouté au sources.list:
(si vous êtes sous gnome)invoke-rc.d gdm stp
(si vous êtes sous kde)invoke-rc.d kdm stop
aptitude update
aptitude install module-assistant fglrx-driver fglrx-control
m-a a-i fglrx
modprobe -r radeon drm
modprobe fglrx
echo fglrx >> /etc/modules
aticonfig --initial -f
redémarrer le pc, pour bien tous fonctionner et puis rien à faire tous fonctionne correctement, pas de plantage comme le poste juste au dessus du mien.

(Avant c’était squeeze qui fonctionnait et pas lenny, maintenant c’est squeeze qui plante et lenny qui fonctionne.)

Not: je possède un ati hd 4850.

Avec une ATI 3650HD, j’ai du lancer cette commande (une fois suffit) à la fin.

Là mon xorg démarre.
Des infos sur ces “services”? qu’est ce que acpi a à voir là dedans?

[quote=“silver.sax”]Avec une ATI 3650HD, j’ai du lancer cette commande (une fois suffit) à la fin.

Là mon xorg démarre.
Des infos sur ces “services”? qu’est ce que acpi a à voir là dedans?[/quote]

Je suis pas sûr de la véracité:ACPI mai (à la machine en cours, et plus spécifiquement pour les portables), ne pas être éteint, non seulement que nosmp noacpi abrite également tous les mécanismes de protection de surchauffe sont désactivés et donc le matériel peut prendre un dommage significatif.
C’est une traduction allemande > franco.

Merci pour le p’tit tuto simple et qui marche :smt038 ( j’ai eu du bol je crois) 8)

:~$ fglrxinfo display: :0.0 screen: 0 OpenGL vendor string: ATI Technologies Inc. OpenGL renderer string: ATI Radeon HD 4600 Series OpenGL version string: 2.1.9116

Hourra

Et encore merci mille fois

Bonjour,
Avec Lenny installé de frais, j’avais installé le pilote propriétaire directement depuis chez ATI et ça saccadait à mort quand j’utilisais le défilement dans le navigateur intenet. J’ai décidé de suivre cette recette.
Après un nettoyage assez (trop peut-être ?) profond de tout ce qui comportait la racine “fglrx”, tant en dossier, qu’en paquet, etc… sans redémarrer le PC, j’ai suivi à la lettre la procédure du post de tête de la présente discussion et au bout, ça fonctionne au poil (plus de saccades).
Après cela, résultat de la commande :

~$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Radeon HD 3450
OpenGL version string: 2.1.8304 Release

~$ 

Le xorg.conf créé par cette procédure :

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Files"
EndSection

Section "Module"
EndSection

Section "InputDevice"
	Identifier  "Generic Keyboard"
	Driver      "kbd"
	Option	    "XkbRules" "xorg"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "fr"
	Option	    "XkbVariant" "latin9"
EndSection

Section "InputDevice"
	Identifier  "Configured Mouse"
	Driver      "mouse"
EndSection

Section "Monitor"
	Identifier   "Moniteur"
	HorizSync    30.0 - 83.0
	VertRefresh  56.0 - 75.0
	Option	    "DPMS"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "Configured Video Device"
	Driver      "vesa"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Default Screen"
	Device     "Configured Video Device"
	Monitor    "Moniteur"
	DefaultDepth     24
	SubSection "Display"
		Depth     24
		Modes    "1280x960" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

le xorg de base était fait à la main par mes petites mains (depuis Ubuntu) pour pouvoir démarrer sur le driver vesa. Lenny a eu la gentillesse de bien vouloir démarrrer la-dessus. Les parties utiles rajoutées au xorg.conf par cette procédure sont donc celles-ci :

[code]Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option “VendorName” "ATI Proprietary Driver"
Option “ModelName” "Generic Autodetecting Monitor"
Option “DPMS” "true"
EndSection

Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
[/code]

bcass m’a sauver.
Un grand merci pour sa procédure très claire et efficace.

[quote=“malbo”]Bonjour,
Avec Lenny version 32 bits installé de frais dans mon PC Medion (Pentium 4), j’avais installé dans un premier temps le pilote propriétaire directement depuis chez ATI et ça saccadait à mort quand j’utilisais le défilement dans le navigateur intenet. J’ai décidé de suivre cette recette de bcass (post de tête de cette discussion).
Après un nettoyage assez (trop peut-être ?) profond de tout ce qui comportait la racine “fglrx”, tant en dossier, qu’en paquet, etc… sans redémarrer le PC, j’ai suivi à la lettre la procédure du post de tête de la présente discussion et au bout, ça fonctionne au poil (plus de saccades).
Après cela, résultat de la commande :

~$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Radeon HD 3450
OpenGL version string: 2.1.8304 Release

~$ 

Le xorg.conf créé par cette procédure :

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Files"
EndSection

Section "Module"
EndSection

Section "InputDevice"
	Identifier  "Generic Keyboard"
	Driver      "kbd"
	Option	    "XkbRules" "xorg"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "fr"
	Option	    "XkbVariant" "latin9"
EndSection

Section "InputDevice"
	Identifier  "Configured Mouse"
	Driver      "mouse"
EndSection

Section "Monitor"
	Identifier   "Moniteur"
	HorizSync    30.0 - 83.0
	VertRefresh  56.0 - 75.0
	Option	    "DPMS"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "Configured Video Device"
	Driver      "vesa"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Default Screen"
	Device     "Configured Video Device"
	Monitor    "Moniteur"
	DefaultDepth     24
	SubSection "Display"
		Depth     24
		Modes    "1280x960" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

le xorg de base était fait à la main par mes petites mains (depuis Ubuntu) pour pouvoir démarrer sur le driver vesa. Lenny a eu la gentillesse de bien vouloir démarrrer la-dessus. Ce xorg de base a été sauvegardé automatiquement au cours de cette procédure sous le nom xorg.conf.original-0. Voici son contenu :

[code]# xorg.conf (X.Org X Window System server configuration file)

This file was generated by dexconf, the Debian X Configuration tool, using

values from the debconf database.

Edit this file with caution, and see the xorg.conf manual page.

(Type “man xorg.conf” at the shell prompt.)

This file is automatically updated on xserver-xorg package upgrades only

if it has not been modified since the last upgrade of the xserver-xorg

package.

If you have edited this file but would like it to be automatically updated

again, run the following command:

sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option “XkbRules” "xorg"
Option “XkbModel” "pc105"
Option “XkbLayout” "fr"
Option “XkbVariant” "latin9"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection

Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection

Section "Monitor"
Identifier "Moniteur"
Option "DPMS"
HorizSync 30-83
VertRefresh 56-75
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Moniteur"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes “1280x960” “1024x768” “800x600” "640x480"
EndSubSection
EndSection
[/code]

Contenu du fichier /var/log/Xorg.0.log :

[code]
X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-10.lenny2)
Current Operating System: Linux pcmedion 2.6.26-2-686 #1 SMP Mon Jun 21 05:58:44 UTC 2010 i686
Build Date: 08 June 2009 09:12:57AM

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 Jul 5 08:42:27 2010
(==) Using config file: “/etc/X11/xorg.conf”
(==) ServerLayout “aticonfig Layout”
(
) |–>Screen “aticonfig-Screen[0]-0” (0)
() | |–>Monitor “aticonfig-Monitor[0]-0”
(
) | |–>Device “aticonfig-Device[0]-0”
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory “/usr/share/fonts/X11/cyrillic” does not exist.
Entry deleted from font path.
(WW) The directory “/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType” does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to “/etc/X11/rgb”
(==) ModulePath set to “/usr/lib/xorg/modules”
(==) |–>Input Device “Configured Mouse”
(==) |–>Input Device “Generic Keyboard”
(==) The core pointer device wasn’t specified explicitly in the layout.
Using the first mouse device.
(==) The core keyboard device wasn’t specified explicitly in the layout.
Using the first keyboard device.
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e38c0
(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.2, 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 1039,0648 card 1039,0648 rev 02 class 06,00,00 hdr 80
(II) PCI: 00:01:0: chip 1039,0001 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1039,0963 card 0000,0000 rev 04 class 06,01,00 hdr 80
(II) PCI: 00:02:1: chip 1039,0016 card 0000,0000 rev 00 class 0c,05,00 hdr 00
(II) PCI: 00:02:3: chip 1039,7007 card ffff,ffff rev 00 class 0c,00,10 hdr 00
(II) PCI: 00:02:5: chip 1039,5513 card 1462,7010 rev 00 class 01,01,80 hdr 00
(II) PCI: 00:02:7: chip 1039,7012 card 1462,7010 rev a0 class 04,01,00 hdr 00
(II) PCI: 00:03:0: chip 1039,7001 card 1462,7010 rev 0f class 0c,03,10 hdr 80
(II) PCI: 00:03:1: chip 1039,7001 card 1462,7010 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:2: chip 1039,7001 card 1462,7010 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:3: chip 1039,7002 card 1462,7010 rev 00 class 0c,03,20 hdr 00
(II) PCI: 00:04:0: chip 1039,0900 card 1462,0900 rev 91 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,95c6 card 174b,0028 rev 00 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000e (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
[1] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B]
[2] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[3] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xe8000000 - 0xe80fffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(–) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x95c6) rev 0, Mem @ 0xd0000000/28, 0xe8020000/16, I/O @ 0xc000/8
(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 0xe0000000 from 0xe7ffffff to 0xdfffffff
(II) Active PCI resource ranges:
[0] -1 0 0xe8125000 - 0xe8125fff (0x1000) MX[B]
[1] -1 0 0xe8124000 - 0xe8124fff (0x1000) MX[B]
[2] -1 0 0xe8123000 - 0xe8123fff (0x1000) MX[B]
[3] -1 0 0xe8122000 - 0xe8122fff (0x1000) MX[B]
[4] -1 0 0xe8121000 - 0xe8121fff (0x1000) MX[B]
[5] -1 0 0xe8120000 - 0xe8120fff (0x1000) MX[B]
[6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
[7] -1 0 0xe8020000 - 0xe802ffff (0x10000) MXB
[8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[9] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[10] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[11] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[12] -1 0 0x00004000 - 0x0000400f (0x10) IX[B]
[13] -1 0 0x000010c0 - 0x000010df (0x20) IX[B]
[14] -1 0 0x0000c000 - 0x0000c0ff (0x100) IXB
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xe8125000 - 0xe8125fff (0x1000) MX[B]
[1] -1 0 0xe8124000 - 0xe8124fff (0x1000) MX[B]
[2] -1 0 0xe8123000 - 0xe8123fff (0x1000) MX[B]
[3] -1 0 0xe8122000 - 0xe8122fff (0x1000) MX[B]
[4] -1 0 0xe8121000 - 0xe8121fff (0x1000) MX[B]
[5] -1 0 0xe8120000 - 0xe8120fff (0x1000) MX[B]
[6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
[7] -1 0 0xe8020000 - 0xe802ffff (0x10000) MXB
[8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[9] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[10] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[11] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[12] -1 0 0x00004000 - 0x0000400f (0x10) IX[B]
[13] -1 0 0x000010c0 - 0x000010df (0x20) IX[B]
[14] -1 0 0x0000c000 - 0x0000c0ff (0x100) IXB
(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 0xe8125000 - 0xe8125fff (0x1000) MX[B]
[5] -1 0 0xe8124000 - 0xe8124fff (0x1000) MX[B]
[6] -1 0 0xe8123000 - 0xe8123fff (0x1000) MX[B]
[7] -1 0 0xe8122000 - 0xe8122fff (0x1000) MX[B]
[8] -1 0 0xe8121000 - 0xe8121fff (0x1000) MX[B]
[9] -1 0 0xe8120000 - 0xe8120fff (0x1000) MX[B]
[10] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
[11] -1 0 0xe8020000 - 0xe802ffff (0x10000) MXB
[12] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[16] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[17] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[18] -1 0 0x00004000 - 0x0000400f (0x10) IX[B]
[19] -1 0 0x000010c0 - 0x000010df (0x20) IX[B]
[20] -1 0 0x0000c000 - 0x0000c0ff (0x100) IXB
(II) “extmod” will be loaded by default.
(II) “dbe” will be loaded by default.
(II) “glx” will be loaded by default.
(II) “freetype” will be loaded by default.
(II) “record” will be loaded by default.
(II) “dri” will be loaded by default.
(II) LoadModule: “extmod”
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.4.2, 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: “dbe”
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 1.4.2, 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: “glx”
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
compiled for 1.4.2, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(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.2, 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: “record”
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 1.4.2, 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: “dri”
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(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.56.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.90, module version = 1.3.0
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.90, module version = 1.3.1
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.56.4
(II) ATI Proprietary Linux Driver Release Identifier: 8.561
(II) ATI Proprietary Linux Driver Build Date: Dec 1 2008 14:55:22
(–) Chipset Supported AMD Graphics Processor (0x95C6) 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 0xe8125000 - 0xe8125fff (0x1000) MX[B]
[5] -1 0 0xe8124000 - 0xe8124fff (0x1000) MX[B]
[6] -1 0 0xe8123000 - 0xe8123fff (0x1000) MX[B]
[7] -1 0 0xe8122000 - 0xe8122fff (0x1000) MX[B]
[8] -1 0 0xe8121000 - 0xe8121fff (0x1000) MX[B]
[9] -1 0 0xe8120000 - 0xe8120fff (0x1000) MX[B]
[10] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
[11] -1 0 0xe8020000 - 0xe802ffff (0x10000) MXB
[12] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[15] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[16] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[17] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[18] -1 0 0x00004000 - 0x0000400f (0x10) IX[B]
[19] -1 0 0x000010c0 - 0x000010df (0x20) IX[B]
[20] -1 0 0x0000c000 - 0x0000c0ff (0x100) IXB
(II) fglrx(0): pEnt->device->identifier=0x82161f8
(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 0xe8125000 - 0xe8125fff (0x1000) MX[B]
[5] -1 0 0xe8124000 - 0xe8124fff (0x1000) MX[B]
[6] -1 0 0xe8123000 - 0xe8123fff (0x1000) MX[B]
[7] -1 0 0xe8122000 - 0xe8122fff (0x1000) MX[B]
[8] -1 0 0xe8121000 - 0xe8121fff (0x1000) MX[B]
[9] -1 0 0xe8120000 - 0xe8120fff (0x1000) MX[B]
[10] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
[11] -1 0 0xe8020000 - 0xe802ffff (0x10000) MXB
[12] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[18] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[19] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[20] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[21] -1 0 0x00004000 - 0x0000400f (0x10) IX[B]
[22] -1 0 0x000010c0 - 0x000010df (0x20) IX[B]
[23] -1 0 0x0000c000 - 0x0000c0ff (0x100) IXB
[24] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[25] 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.2, 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 “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
(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.56.4
ABI class: X.Org Server Extension, version 0.3
(–) fglrx(0): Chipset: “ATI Radeon HD 3450” (Chipset = 0x95c6)
(–) fglrx(0): (PciSubVendor = 0x174b, PciSubDevice = 0x0028)
(–) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
(–) fglrx(0): Linear framebuffer (phys) at 0xd0000000
(–) fglrx(0): MMIO registers at 0xe8020000
(–) fglrx(0): I/O port at 0x0000c000
(==) fglrx(0): ROM-BIOS at 0x000c0000
(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.2, 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 3.0
(II) fglrx(0): VESA VBE Total Mem: 16384 kB
(II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
(II) fglrx(0): VESA VBE OEM Software Rev: 10.88
(II) fglrx(0): VESA VBE OEM Vendor: © 1988-2005, ATI Technologies Inc.
(II) fglrx(0): VESA VBE OEM Product: RV620
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
(II) fglrx(0): ATI Video BIOS revision 9 or later detected
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(II) fglrx(0): Using adapter: 1:0.0.
(II) fglrx(0): [FB] MC range(MCFBBase = 0xc0000000, MCFBSize = 0x20000000)
(–) fglrx(0): Video RAM: 524288 kByte, Type: DDR2
(II) fglrx(0): AGP 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=0x00000010, disabled=0x00000000
(II) fglrx(0): Connected Display1: CRT on secondary DAC [crt2]
(II) fglrx(0): Display1: No EDID information from DDC.
(II) fglrx(0): Display1: Failed to get EDID information.
(WW) fglrx(0): Only one display is connnected,so single mode is enabled
(II) fglrx(0): Primary Controller - CRT on secondary DAC
(II) fglrx(0): Internal Desktop Setting: 0x00000001
(==) fglrx(0): QBS disabled
(==) fglrx(0): FAST_SWAP disabled
(==) fglrx(0): PseudoColor visuals disabled
(==) 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 26 modes found for primary display.
(–) fglrx(0): Virtual size is 1600x1200 (pitch 0)
(
) fglrx(0): *Mode “1600x1200”: 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 (75.0 kHz)
(
) fglrx(0): *Mode “1440x900”: 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1440x900"x60.0 106.50 1440 1520 1672 1904 900 903 909 934 +vsync (55.9 kHz)
(
) fglrx(0): *Mode “1400x1050”: 121.8 MHz (scaled from 0.0 MHz), 65.3 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 +hsync (65.3 kHz)
(
) fglrx(0): *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): Default mode “1280x1024”: 85.5 MHz (scaled from 0.0 MHz), 50.9 kHz, 47.0 Hz (I)
(II) fglrx(0): Modeline "1280x1024"x47.0 85.51 1280 1344 1480 1680 1024 1025 1028 1083 interlace +hsync (50.9 kHz)
(
) fglrx(0): Default mode “1280x1024”: 77.8 MHz (scaled from 0.0 MHz), 46.3 kHz, 43.0 Hz (I)
(II) fglrx(0): Modeline "1280x1024"x43.0 77.80 1280 1344 1480 1680 1024 1025 1028 1077 interlace +hsync (46.3 kHz)
(
) fglrx(0): *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): *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 “1280x768”: 73.9 MHz (scaled from 0.0 MHz), 44.4 kHz, 56.0 Hz
(II) fglrx(0): Modeline "1280x768"x56.0 73.89 1280 1336 1472 1664 768 769 772 793 +hsync (44.4 kHz)
(
) fglrx(0): *Mode “1280x720”: 74.5 MHz (scaled from 0.0 MHz), 44.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 +hsync (44.8 kHz)
(
) fglrx(0): Default mode “1280x720”: 60.5 MHz (scaled from 0.0 MHz), 37.0 kHz, 50.0 Hz
(II) fglrx(0): Modeline "1280x720"x50.0 60.46 1280 1328 1456 1632 720 721 724 741 +hsync (37.0 kHz)
(
) fglrx(0): *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 “1152x864”: 64.7 MHz (scaled from 0.0 MHz), 43.0 kHz, 47.0 Hz (I)
(II) fglrx(0): Modeline "1152x864"x47.0 64.67 1152 1208 1328 1504 864 865 868 915 interlace +hsync (43.0 kHz)
(
) fglrx(0): Default mode “1152x864”: 58.3 MHz (scaled from 0.0 MHz), 39.2 kHz, 43.0 Hz (I)
(II) fglrx(0): Modeline "1152x864"x43.0 58.28 1152 1200 1320 1488 864 865 868 911 interlace +hsync (39.2 kHz)
(
) fglrx(0): *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): Default mode “1024x768”: 44.9 MHz (scaled from 0.0 MHz), 35.5 kHz, 43.0 Hz (I)
(II) fglrx(0): Modeline "1024x768"x43.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace (35.5 kHz)
(
) fglrx(0): *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 “800x600”: 29.6 MHz (scaled from 0.0 MHz), 29.8 kHz, 47.0 Hz (I)
(II) fglrx(0): Modeline "800x600"x47.0 29.60 800 816 896 992 600 601 604 635 interlace +hsync (29.8 kHz)
(
) fglrx(0): *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): *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”: 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 “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”: 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”: 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”: 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): DPI set to (96, 96)
(–) fglrx(0): Virtual size is 1600x1200 (pitch 1600)
(
) fglrx(0): *Mode “1600x1200”: 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 (75.0 kHz)
(
) fglrx(0): *Mode “1440x900”: 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1440x900"x60.0 106.50 1440 1520 1672 1904 900 903 909 934 +vsync (55.9 kHz)
(
) fglrx(0): *Mode “1400x1050”: 121.8 MHz (scaled from 0.0 MHz), 65.3 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 +hsync (65.3 kHz)
(
) fglrx(0): *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): Default mode “1280x1024”: 85.5 MHz (scaled from 0.0 MHz), 50.9 kHz, 47.0 Hz (I)
(II) fglrx(0): Modeline "1280x1024"x47.0 85.51 1280 1344 1480 1680 1024 1025 1028 1083 interlace +hsync (50.9 kHz)
(
) fglrx(0): Default mode “1280x1024”: 77.8 MHz (scaled from 0.0 MHz), 46.3 kHz, 43.0 Hz (I)
(II) fglrx(0): Modeline "1280x1024"x43.0 77.80 1280 1344 1480 1680 1024 1025 1028 1077 interlace +hsync (46.3 kHz)
(
) fglrx(0): *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): *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 “1280x768”: 73.9 MHz (scaled from 0.0 MHz), 44.4 kHz, 56.0 Hz
(II) fglrx(0): Modeline "1280x768"x56.0 73.89 1280 1336 1472 1664 768 769 772 793 +hsync (44.4 kHz)
(
) fglrx(0): *Mode “1280x720”: 74.5 MHz (scaled from 0.0 MHz), 44.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 +hsync (44.8 kHz)
(
) fglrx(0): Default mode “1280x720”: 60.5 MHz (scaled from 0.0 MHz), 37.0 kHz, 50.0 Hz
(II) fglrx(0): Modeline "1280x720"x50.0 60.46 1280 1328 1456 1632 720 721 724 741 +hsync (37.0 kHz)
(
) fglrx(0): *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 “1152x864”: 64.7 MHz (scaled from 0.0 MHz), 43.0 kHz, 47.0 Hz (I)
(II) fglrx(0): Modeline "1152x864"x47.0 64.67 1152 1208 1328 1504 864 865 868 915 interlace +hsync (43.0 kHz)
(
) fglrx(0): Default mode “1152x864”: 58.3 MHz (scaled from 0.0 MHz), 39.2 kHz, 43.0 Hz (I)
(II) fglrx(0): Modeline "1152x864"x43.0 58.28 1152 1200 1320 1488 864 865 868 911 interlace +hsync (39.2 kHz)
(
) fglrx(0): *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): Default mode “1024x768”: 44.9 MHz (scaled from 0.0 MHz), 35.5 kHz, 43.0 Hz (I)
(II) fglrx(0): Modeline "1024x768"x43.0 44.90 1024 1032 1208 1264 768 768 772 817 interlace (35.5 kHz)
(
) fglrx(0): *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 “800x600”: 29.6 MHz (scaled from 0.0 MHz), 29.8 kHz, 47.0 Hz (I)
(II) fglrx(0): Modeline "800x600"x47.0 29.60 800 816 896 992 600 601 604 635 interlace +hsync (29.8 kHz)
(
) fglrx(0): *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): *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”: 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 “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”: 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”: 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”: 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.2, 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.2, 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
(==) fglrx(0): Capabilities: 0x00000000
(==) fglrx(0): CapabilitiesEx: 0x00000000
(==) fglrx(0): cpuFlags: 0x8000001d
(==) fglrx(0): OpenGL ClientDriverName: “fglrx_dri.so”
(II) fglrx(0): [pci] find AGP GART
(II) fglrx(0): [agp] AGP protocol is enabled for graphics board. (cmd=0x1f004302)
(II) fglrx(0): [agp] graphics chipset has AGP v3.0 (native mode)
(II) fglrx(0): [pcie] 262144 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 16.
(II) fglrx(0): Exposed events to the /proc interface
(II) fglrx(0): Finished Initialize PPLIB!
(–) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don’t.
(II) resource ranges after preInit:
[0] 0 0 0xe8020000 - 0xe802ffff (0x10000) MX[B]
[1] 0 0 0xd0000000 - 0xdfffffff (0x10000000) 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 0xe8125000 - 0xe8125fff (0x1000) MX[B]
[7] -1 0 0xe8124000 - 0xe8124fff (0x1000) MX[B]
[8] -1 0 0xe8123000 - 0xe8123fff (0x1000) MX[B]
[9] -1 0 0xe8122000 - 0xe8122fff (0x1000) MX[B]
[10] -1 0 0xe8121000 - 0xe8121fff (0x1000) MX[B]
[11] -1 0 0xe8120000 - 0xe8120fff (0x1000) MX[B]
[12] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
[13] -1 0 0xe8020000 - 0xe802ffff (0x10000) MXB
[14] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[15] 0 0 0x000a0000 - 0x000affff (0x10000) MSB
[16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MSB
[17] 0 0 0x000b8000 - 0x000bffff (0x8000) MSB
[18] 0 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
[19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ecff (0x100) IX[B]
[22] -1 0 0x0000e800 - 0x0000e87f (0x80) IX[B]
[23] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[24] -1 0 0x00004000 - 0x0000400f (0x10) IX[B]
[25] -1 0 0x000010c0 - 0x000010df (0x20) IX[B]
[26] -1 0 0x0000c000 - 0x0000c0ff (0x100) IXB
[27] 0 0 0x000003b0 - 0x000003bb (0xc) ISB
[28] 0 0 0x000003c0 - 0x000003df (0x20) ISB
(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=-1)
(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 9, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(II) fglrx(0): [drm] DRM interface version 1.0
(II) fglrx(0): [drm] created “fglrx” driver at busid “PCI:1:0:0”
(II) fglrx(0): [drm] added 8192 byte SAREA at 0x2000
(II) fglrx(0): [drm] mapped SAREA 0x2000 to 0xb731e000
(II) fglrx(0): [drm] framebuffer handle = 0x3000
(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.56.4
(II) fglrx(0): Date: Dec 1 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.26-2-686
(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 = 0x00004000
(II) fglrx(0): DRI initialization successfull!
(II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x01004000
(II) fglrx(0): FBMM initialized for area (0,0)-(1600,2624)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1600,1200) (front color buffer - assumption)
(II) fglrx(0): Largest offscreen area available: 1600 x 1424
(==) fglrx(0): Backing store disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(
) fglrx(0): DPMS enabled
(
) fglrx(0): Textured Video is enabled.
(II) LoadModule: “glesx”
(II) Loading /usr/lib/xorg/modules//glesx.so
(II) Module glesx: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension GLESX
(II) fglrx(0): GLESX enableFlags = 90
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
Solid Horizontal and Vertical Lines
Driver provided ScreenToScreenBitBlt replacement
Driver provided FillSolidRects replacement
(II) fglrx(0): GLESX is enabled
(II) LoadModule: “amdxmm”
(II) Loading /usr/lib/xorg/modules//amdxmm.so
(II) Module amdxmm: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) fglrx(0): UVD2 feature is available
(WW) fglrx(0): Option “VendorName” is not used
(WW) fglrx(0): Option “ModelName” is not used
(II) fglrx(0): X context handle = 0x1
(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 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
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: drmOpenMinor returns 10
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(WW) AIGLX: 3D driver claims to not support visual 0x23
(WW) AIGLX: 3D driver claims to not support visual 0x24
(WW) AIGLX: 3D driver claims to not support visual 0x25
(WW) AIGLX: 3D driver claims to not support visual 0x26
(WW) AIGLX: 3D driver claims to not support visual 0x27
(WW) AIGLX: 3D driver claims to not support visual 0x28
(WW) AIGLX: 3D driver claims to not support visual 0x29
(WW) AIGLX: 3D driver claims to not support visual 0x2a
(WW) AIGLX: 3D driver claims to not support visual 0x2b
(WW) AIGLX: 3D driver claims to not support visual 0x2c
(WW) AIGLX: 3D driver claims to not support visual 0x2d
(WW) AIGLX: 3D driver claims to not support visual 0x2e
(WW) AIGLX: 3D driver claims to not support visual 0x2f
(WW) AIGLX: 3D driver claims to not support visual 0x30
(WW) AIGLX: 3D driver claims to not support visual 0x31
(WW) AIGLX: 3D driver claims to not support visual 0x32
(WW) AIGLX: 3D driver claims to not support visual 0x33
(WW) AIGLX: 3D driver claims to not support visual 0x34
(WW) AIGLX: 3D driver claims to not support visual 0x35
(WW) AIGLX: 3D driver claims to not support visual 0x36
(WW) AIGLX: 3D driver claims to not support visual 0x37
(WW) AIGLX: 3D driver claims to not support visual 0x38
(WW) AIGLX: 3D driver claims to not support visual 0x39
(WW) AIGLX: 3D driver claims to not support visual 0x3a
(WW) AIGLX: 3D driver claims to not support visual 0x3b
(WW) AIGLX: 3D driver claims to not support visual 0x3c
(WW) AIGLX: 3D driver claims to not support visual 0x3d
(WW) AIGLX: 3D driver claims to not support visual 0x3e
(WW) AIGLX: 3D driver claims to not support visual 0x3f
(WW) AIGLX: 3D driver claims to not support visual 0x40
(WW) AIGLX: 3D driver claims to not support visual 0x41
(WW) AIGLX: 3D driver claims to not support visual 0x42
(WW) AIGLX: 3D driver claims to not support visual 0x43
(WW) AIGLX: 3D driver claims to not support visual 0x44
(WW) AIGLX: 3D driver claims to not support visual 0x45
(WW) AIGLX: 3D driver claims to not support visual 0x46
(WW) AIGLX: 3D driver claims to not support visual 0x47
(WW) AIGLX: 3D driver claims to not support visual 0x48
(WW) AIGLX: 3D driver claims to not support visual 0x49
(WW) AIGLX: 3D driver claims to not support visual 0x4a
(WW) AIGLX: 3D driver claims to not support visual 0x4b
(WW) AIGLX: 3D driver claims to not support visual 0x4c
(WW) AIGLX: 3D driver claims to not support visual 0x4d
(WW) AIGLX: 3D driver claims to not support visual 0x4e
(WW) AIGLX: 3D driver claims to not support visual 0x4f
(WW) AIGLX: 3D driver claims to not support visual 0x50
(WW) AIGLX: 3D driver claims to not support visual 0x51
(WW) AIGLX: 3D driver claims to not support visual 0x52
(WW) AIGLX: 3D driver claims to not support visual 0x53
(WW) AIGLX: 3D driver claims to not support visual 0x54
(WW) AIGLX: 3D driver claims to not support visual 0x55
(WW) AIGLX: 3D driver claims to not support visual 0x56
(WW) AIGLX: 3D driver claims to not support visual 0x57
(WW) AIGLX: 3D driver claims to not support visual 0x58
(WW) AIGLX: 3D driver claims to not support visual 0x59
(WW) AIGLX: 3D driver claims to not support visual 0x5a
(WW) AIGLX: 3D driver claims to not support visual 0x5b
(WW) AIGLX: 3D driver claims to not support visual 0x5c
(WW) AIGLX: 3D driver claims to not support visual 0x5d
(WW) AIGLX: 3D driver claims to not support visual 0x5e
(WW) AIGLX: 3D driver claims to not support visual 0x5f
(WW) AIGLX: 3D driver claims to not support visual 0x60
(WW) AIGLX: 3D driver claims to not support visual 0x61
(WW) AIGLX: 3D driver claims to not support visual 0x62
(WW) AIGLX: 3D driver claims to not support visual 0x63
(WW) AIGLX: 3D driver claims to not support visual 0x64
(WW) AIGLX: 3D driver claims to not support visual 0x65
(WW) AIGLX: 3D driver claims to not support visual 0x66
(WW) AIGLX: 3D driver claims to not support visual 0x67
(WW) AIGLX: 3D driver claims to not support visual 0x68
(WW) AIGLX: 3D driver claims to not support visual 0x69
(WW) AIGLX: 3D driver claims to not support visual 0x6a
(WW) AIGLX: 3D driver claims to not support visual 0x6b
(WW) AIGLX: 3D driver claims to not support visual 0x6c
(WW) AIGLX: 3D driver claims to not support visual 0x6d
(WW) AIGLX: 3D driver claims to not support visual 0x6e
(WW) AIGLX: 3D driver claims to not support visual 0x6f
(WW) AIGLX: 3D driver claims to not support visual 0x70
(WW) AIGLX: 3D driver claims to not support visual 0x71
(WW) AIGLX: 3D driver claims to not support visual 0x72
(II) AIGLX: Loaded and initialized /usr/lib/dri/fglrx_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(II) fglrx(0): Enable the clock gating!
(WW) Configured Mouse: No Device specified, looking for one…
(II) Configured Mouse: Setting Device option to “/dev/input/mice”
(–) Configured Mouse: Device: “/dev/input/mice”
(==) Configured Mouse: Protocol: “Auto”
(
) Option “CorePointer”
(
) Configured Mouse: always reports core events
(==) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(
) Configured Mouse: ZAxisMapping: buttons 4 and 5
(
) Configured Mouse: Buttons: 9
(
) Configured Mouse: Sensitivity: 1
(
) Option “CoreKeyboard”
(
) Generic Keyboard: always reports core events
(
) Option “Protocol” “standard”
(
) Generic Keyboard: Protocol: standard
(
) Option “AutoRepeat” “500 30”
(
) Option “XkbRules” “xorg”
(
) Generic Keyboard: XkbRules: “xorg”
(
) Option “XkbModel” “pc105”
(
) Generic Keyboard: XkbModel: “pc105”
(
) Option “XkbLayout” “fr”
(
) Generic Keyboard: XkbLayout: “fr”
(
) Option “XkbVariant” “latin9”
(
) Generic Keyboard: XkbVariant: “latin9”
(
) Option “CustomKeycodes” “off”
(
*) Generic Keyboard: CustomKeycodes disabled
(II) evaluating device (Configured Mouse)
(II) XINPUT: Adding extended input device “Configured Mouse” (type: MOUSE)
(II) evaluating device (Generic Keyboard)
(II) XINPUT: Adding extended input device “Generic Keyboard” (type: KEYBOARD)
(–) Configured Mouse: PnP-detected protocol: “ExplorerPS/2”
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Warning: LookupDrawable()/SecurityLookupDrawable() are deprecated. Please convert your driver/module to use dixLookupDrawable().
(II) 3rd Button detected: disabling emulate3Button[/code]

bcass m’a sauver.
Un grand merci pour sa procédure très claire et efficace.[/quote]

Suite à mon post précédent, je réalise la même opération pour mon PC ACER M5100 dans lequel j’ai aussi installé Lenny récemment mais en version 64 bits.
Remarque : avant de démarrer la procédure, ne pas oublier de renseigner convenablement les sources de mise à jour (Système > Administration > Sources de mise à jour) pour cocher les cases “Logiciel Libre” et “Logiciel non-libre” si ce n’est pas déjà fait, sinon on ne peut pas installer les paquets nécessaires.

Après modif en suivant à la lettre le post de tête de la discussion, j’obtiens :

~$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: ATI Radeon HD 2600 Pro
OpenGL version string: 2.1.8304 Release

~$ 

Et pour le fichier /var/log/Xorg.0.log :

[code]
X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-10.lenny2)
Current Operating System: Linux pcacer 2.6.26-2-amd64 #1 SMP Sun Jun 20 20:16:30 UTC 2010 x86_64
Build Date: 11 June 2009 09:45:25AM

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 Jul 5 10:52:35 2010
(==) Using config file: “/etc/X11/xorg.conf”
(==) ServerLayout “aticonfig Layout”
(
) |–>Screen “aticonfig-Screen[0]-0” (0)
() | |–>Monitor “aticonfig-Monitor[0]-0”
(
) | |–>Device “aticonfig-Device[0]-0”
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory “/usr/share/fonts/X11/cyrillic” does not exist.
Entry deleted from font path.
(WW) The directory “/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType” does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to “/etc/X11/rgb”
(==) ModulePath set to “/usr/lib/xorg/modules”
(==) |–>Input Device “Configured Mouse”
(==) |–>Input Device “Generic Keyboard”
(==) The core pointer device wasn’t specified explicitly in the layout.
Using the first mouse device.
(==) The core keyboard device wasn’t specified explicitly in the layout.
Using the first keyboard device.
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x7c31c0
(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.2, 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 1002,7910 card 105b,0e0a rev 00 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 1002,7913 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1002,7917 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:12:0: chip 1002,4380 card 105b,0e0a rev 00 class 01,06,01 hdr 00
(II) PCI: 00:13:0: chip 1002,4387 card 105b,0e0a rev 00 class 0c,03,10 hdr 80
(II) PCI: 00:13:1: chip 1002,4388 card 105b,0e0a rev 00 class 0c,03,10 hdr 00
(II) PCI: 00:13:2: chip 1002,4389 card 105b,0e0a rev 00 class 0c,03,10 hdr 00
(II) PCI: 00:13:3: chip 1002,438a card 105b,0e0a rev 00 class 0c,03,10 hdr 00
(II) PCI: 00:13:4: chip 1002,438b card 105b,0e0a rev 00 class 0c,03,10 hdr 00
(II) PCI: 00:13:5: chip 1002,4386 card 105b,0e0a rev 00 class 0c,03,20 hdr 00
(II) PCI: 00:14:0: chip 1002,4385 card 105b,0e0a rev 14 class 0c,05,00 hdr 80
(II) PCI: 00:14:1: chip 1002,438c card 105b,0e0a rev 00 class 01,01,8a hdr 00
(II) PCI: 00:14:2: chip 1002,4383 card 105b,0e0a rev 00 class 04,03,00 hdr 00
(II) PCI: 00:14:3: chip 1002,438d card 105b,0e0a rev 00 class 06,01,00 hdr 80
(II) PCI: 00:14:4: chip 1002,4384 card 0000,0000 rev 00 class 06,04,01 hdr 81
(II) PCI: 00:18:0: chip 1022,1200 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1201 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1202 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1203 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:4: chip 1022,1204 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 1002,9589 card 174b,e410 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,aa08 card 174b,aa08 rev 00 class 04,03,00 hdr 80
(II) PCI: 02:00:0: chip 11ab,4364 card 105b,0e0a rev 20 class 02,00,00 hdr 00
(II) PCI: 03:01:0: chip 109e,036e card bd11,1200 rev 11 class 04,00,00 hdr 80
(II) PCI: 03:01:1: chip 109e,0878 card bd11,1200 rev 11 class 04,80,00 hdr 80
(II) PCI: 03:06:0: chip 104c,8024 card 105b,0e0a rev 00 class 0c,00,10 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,3), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:2:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfde00000 - 0xfdefffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:7:0), (0,2,2), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000e000 - 0x0000efff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xfdd00000 - 0xfddfffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xfdf00000 - 0xfdffffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:20:3), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:20:4), (0,3,3), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 3 I/O range:
[0] -1 0 0x0000c000 - 0x0000cfff (0x1000) IX[B]
(II) Bus 3 non-prefetchable memory range:
[0] -1 0 0xfdc00000 - 0xfdcfffff (0x100000) MX[B]
(II) Bus 3 prefetchable memory range:
[0] -1 0 0xfdb00000 - 0xfdbfffff (0x100000) MX[B]
(–) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x9589) rev 0, Mem @ 0xd0000000/28, 0xfdee0000/16, I/O @ 0xde00/8
(–) PCI: (3:1:0) Brooktree Corporation Bt878 Video Capture rev 17, Mem @ 0xfdbff000/12
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x100000000) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 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) Active PCI resource ranges:
[0] -1 0 0xfdcf8000 - 0xfdcfbfff (0x4000) MX[B]
[1] -1 0 0xfdcff000 - 0xfdcff7ff (0x800) MX[B]
[2] -1 0 0xfdbfe000 - 0xfdbfefff (0x1000) MX[B]
[3] -1 0 0xfddfc000 - 0xfddfffff (0x4000) MX[B]
[4] -1 0 0xfdefc000 - 0xfdefffff (0x4000) MX[B]
[5] -1 0 0xfe024000 - 0xfe027fff (0x4000) MX[B]
[6] -1 0 0xfe029000 - 0xfe0290ff (0x100) MX[B]
[7] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[B]
[8] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[9] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[10] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[11] -1 0 0xfe02e000 - 0xfe02efff (0x1000) MX[B]
[12] -1 0 0xfe02f000 - 0xfe02f3ff (0x400) MX[B]
[13] -1 0 0xfdbff000 - 0xfdbfffff (0x1000) MXB
[14] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MXB
[15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[16] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[17] -1 0 0x0000f900 - 0x0000f90f (0x10) IX[B]
[18] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[19] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[20] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[21] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[22] -1 0 0x00000b00 - 0x00000b0f (0x10) IX[B]
[23] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[24] -1 0 0x0000fc00 - 0x0000fc03 (0x4) IX[B]
[25] -1 0 0x0000fd00 - 0x0000fd07 (0x8) IX[B]
[26] -1 0 0x0000fe00 - 0x0000fe03 (0x4) IX[B]
[27] -1 0 0x0000ff00 - 0x0000ff07 (0x8) IX[B]
[28] -1 0 0x0000de00 - 0x0000deff (0x100) IXB
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfdcf8000 - 0xfdcfbfff (0x4000) MX[B]
[1] -1 0 0xfdcff000 - 0xfdcff7ff (0x800) MX[B]
[2] -1 0 0xfdbfe000 - 0xfdbfefff (0x1000) MX[B]
[3] -1 0 0xfddfc000 - 0xfddfffff (0x4000) MX[B]
[4] -1 0 0xfdefc000 - 0xfdefffff (0x4000) MX[B]
[5] -1 0 0xfe024000 - 0xfe027fff (0x4000) MX[B]
[6] -1 0 0xfe029000 - 0xfe0290ff (0x100) MX[B]
[7] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[B]
[8] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[9] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[10] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[11] -1 0 0xfe02e000 - 0xfe02efff (0x1000) MX[B]
[12] -1 0 0xfe02f000 - 0xfe02f3ff (0x400) MX[B]
[13] -1 0 0xfdbff000 - 0xfdbfffff (0x1000) MXB
[14] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MXB
[15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[16] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[17] -1 0 0x0000f900 - 0x0000f90f (0x10) IX[B]
[18] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[19] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[20] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[21] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[22] -1 0 0x00000b00 - 0x00000b0f (0x10) IX[B]
[23] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[24] -1 0 0x0000fc00 - 0x0000fc03 (0x4) IX[B]
[25] -1 0 0x0000fd00 - 0x0000fd07 (0x8) IX[B]
[26] -1 0 0x0000fe00 - 0x0000fe03 (0x4) IX[B]
[27] -1 0 0x0000ff00 - 0x0000ff07 (0x8) IX[B]
[28] -1 0 0x0000de00 - 0x0000deff (0x100) IXB
(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 0xfdcf8000 - 0xfdcfbfff (0x4000) MX[B]
[5] -1 0 0xfdcff000 - 0xfdcff7ff (0x800) MX[B]
[6] -1 0 0xfdbfe000 - 0xfdbfefff (0x1000) MX[B]
[7] -1 0 0xfddfc000 - 0xfddfffff (0x4000) MX[B]
[8] -1 0 0xfdefc000 - 0xfdefffff (0x4000) MX[B]
[9] -1 0 0xfe024000 - 0xfe027fff (0x4000) MX[B]
[10] -1 0 0xfe029000 - 0xfe0290ff (0x100) MX[B]
[11] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[B]
[12] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[13] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[14] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[15] -1 0 0xfe02e000 - 0xfe02efff (0x1000) MX[B]
[16] -1 0 0xfe02f000 - 0xfe02f3ff (0x400) MX[B]
[17] -1 0 0xfdbff000 - 0xfdbfffff (0x1000) MXB
[18] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MXB
[19] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[21] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[22] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[23] -1 0 0x0000f900 - 0x0000f90f (0x10) IX[B]
[24] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[25] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[26] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[27] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[28] -1 0 0x00000b00 - 0x00000b0f (0x10) IX[B]
[29] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[30] -1 0 0x0000fc00 - 0x0000fc03 (0x4) IX[B]
[31] -1 0 0x0000fd00 - 0x0000fd07 (0x8) IX[B]
[32] -1 0 0x0000fe00 - 0x0000fe03 (0x4) IX[B]
[33] -1 0 0x0000ff00 - 0x0000ff07 (0x8) IX[B]
[34] -1 0 0x0000de00 - 0x0000deff (0x100) IXB
(II) “extmod” will be loaded by default.
(II) “dbe” will be loaded by default.
(II) “glx” will be loaded by default.
(II) “freetype” will be loaded by default.
(II) “record” will be loaded by default.
(II) “dri” will be loaded by default.
(II) LoadModule: “extmod”
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.4.2, 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: “dbe”
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 1.4.2, 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: “glx”
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
compiled for 1.4.2, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(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.2, 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: “record”
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 1.4.2, 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: “dri”
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(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.56.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.90, module version = 1.3.0
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.90, module version = 1.3.1
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.56.4
(II) ATI Proprietary Linux Driver Release Identifier: 8.561
(II) ATI Proprietary Linux Driver Build Date: Dec 1 2008 14:56:32
(–) Chipset Supported AMD Graphics Processor (0x9589) 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 0xfdcf8000 - 0xfdcfbfff (0x4000) MX[B]
[5] -1 0 0xfdcff000 - 0xfdcff7ff (0x800) MX[B]
[6] -1 0 0xfdbfe000 - 0xfdbfefff (0x1000) MX[B]
[7] -1 0 0xfddfc000 - 0xfddfffff (0x4000) MX[B]
[8] -1 0 0xfdefc000 - 0xfdefffff (0x4000) MX[B]
[9] -1 0 0xfe024000 - 0xfe027fff (0x4000) MX[B]
[10] -1 0 0xfe029000 - 0xfe0290ff (0x100) MX[B]
[11] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[B]
[12] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[13] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[14] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[15] -1 0 0xfe02e000 - 0xfe02efff (0x1000) MX[B]
[16] -1 0 0xfe02f000 - 0xfe02f3ff (0x400) MX[B]
[17] -1 0 0xfdbff000 - 0xfdbfffff (0x1000) MXB
[18] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MXB
[19] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[21] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[22] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[23] -1 0 0x0000f900 - 0x0000f90f (0x10) IX[B]
[24] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[25] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[26] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[27] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[28] -1 0 0x00000b00 - 0x00000b0f (0x10) IX[B]
[29] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[30] -1 0 0x0000fc00 - 0x0000fc03 (0x4) IX[B]
[31] -1 0 0x0000fd00 - 0x0000fd07 (0x8) IX[B]
[32] -1 0 0x0000fe00 - 0x0000fe03 (0x4) IX[B]
[33] -1 0 0x0000ff00 - 0x0000ff07 (0x8) IX[B]
[34] -1 0 0x0000de00 - 0x0000deff (0x100) IXB
(II) fglrx(0): pEnt->device->identifier=0x7fe8c0
(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 0xfdcf8000 - 0xfdcfbfff (0x4000) MX[B]
[5] -1 0 0xfdcff000 - 0xfdcff7ff (0x800) MX[B]
[6] -1 0 0xfdbfe000 - 0xfdbfefff (0x1000) MX[B]
[7] -1 0 0xfddfc000 - 0xfddfffff (0x4000) MX[B]
[8] -1 0 0xfdefc000 - 0xfdefffff (0x4000) MX[B]
[9] -1 0 0xfe024000 - 0xfe027fff (0x4000) MX[B]
[10] -1 0 0xfe029000 - 0xfe0290ff (0x100) MX[B]
[11] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[B]
[12] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[13] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[14] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[15] -1 0 0xfe02e000 - 0xfe02efff (0x1000) MX[B]
[16] -1 0 0xfe02f000 - 0xfe02f3ff (0x400) MX[B]
[17] -1 0 0xfdbff000 - 0xfdbfffff (0x1000) MXB
[18] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MXB
[19] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[20] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[21] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[22] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[23] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[24] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[25] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[26] -1 0 0x0000f900 - 0x0000f90f (0x10) IX[B]
[27] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[28] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[29] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[30] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[31] -1 0 0x00000b00 - 0x00000b0f (0x10) IX[B]
[32] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[33] -1 0 0x0000fc00 - 0x0000fc03 (0x4) IX[B]
[34] -1 0 0x0000fd00 - 0x0000fd07 (0x8) IX[B]
[35] -1 0 0x0000fe00 - 0x0000fe03 (0x4) IX[B]
[36] -1 0 0x0000ff00 - 0x0000ff07 (0x8) IX[B]
[37] -1 0 0x0000de00 - 0x0000deff (0x100) IXB
[38] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[39] 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.2, 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 “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
(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.56.4
ABI class: X.Org Server Extension, version 0.3
(–) fglrx(0): Chipset: “ATI Radeon HD 2600 Pro” (Chipset = 0x9589)
(–) fglrx(0): (PciSubVendor = 0x174b, PciSubDevice = 0xe410)
(–) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
(–) fglrx(0): Linear framebuffer (phys) at 0xd0000000
(–) fglrx(0): MMIO registers at 0xfdee0000
(–) fglrx(0): I/O port at 0x0000de00
(==) fglrx(0): ROM-BIOS at 0x000c0000
(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.2, 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 3.0
(II) fglrx(0): VESA VBE Total Mem: 16384 kB
(II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
(II) fglrx(0): VESA VBE OEM Software Rev: 10.59
(II) fglrx(0): VESA VBE OEM Vendor: © 1988-2005, ATI Technologies Inc.
(II) fglrx(0): VESA VBE OEM Product: -PC
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
(II) fglrx(0): ATI Video BIOS revision 9 or later detected
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(II) fglrx(0): Using adapter: 1:0.0.
(II) fglrx(0): [FB] MC range(MCFBBase = 0xc0000000, MCFBSize = 0x20000000)
(–) fglrx(0): Video RAM: 524288 kByte, Type: DDR2
(II) fglrx(0): PCIE card detected
(–) fglrx(0): Using per-process page tables (PPPT) as GART.
(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=0x00000001, disabled=0x00000000
(II) fglrx(0): Connected Display1: CRT on primary DAC [crt1]
(II) fglrx(0): Display1 EDID data ---------------------------
(II) fglrx(0): Manufacturer: ___ Model: 2202 Serial#: 122
(II) fglrx(0): Year: 2007 Week: 40
(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
(II) fglrx(0): Max H-Image Size [cm]: horiz.: 43 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.597 redY: 0.343 greenX: 0.316 greenY: 0.566
(II) fglrx(0): blueX: 0.153 blueY: 0.131 whiteX: 0.313 whiteY: 0.329
(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@56Hz
(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: 70 vid: 19057
(II) fglrx(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
(II) fglrx(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
(II) fglrx(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
(II) fglrx(0): #4: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
(II) fglrx(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
(II) fglrx(0): #6: hsize: 1680 vsize 1050 refresh: 75 vid: 4019
(II) fglrx(0): #7: hsize: 1600 vsize 1200 refresh: 75 vid: 20393
(II) fglrx(0): Supported additional Video Mode:
(II) fglrx(0): clock: 146.0 MHz Image Size: 433 x 270 mm
(II) fglrx(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0
(II) fglrx(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0
(II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 96 kHz, PixClock max 210 MHz
(II) fglrx(0): Monitor name: HV-224TBW
(II) fglrx(0):
(II) fglrx(0): EDID (in hex):
(II) fglrx(0): 00ffffffffffff007fff02227a000000
(II) fglrx(0): 28110103682b1b78eaf0659857519127
(II) fglrx(0): 215054bfef80714a714f81408180a940
(II) fglrx(0): b300b30fa94f08399030621a274068b0
(II) fglrx(0): 3600b10e1100001c000000fd00384c1f
(II) fglrx(0): 6015000a202020202020000000fc0048
(II) fglrx(0): 562d3232345442570a202020000000fe
(II) fglrx(0): 000a202020202020202020202020008f
(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
(==) fglrx(0): QBS disabled
(==) fglrx(0): FAST_SWAP disabled
(==) fglrx(0): PseudoColor visuals disabled
(==) 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 43 modes found for primary display.
(–) fglrx(0): Virtual size is 1680x1050 (pitch 0)
(
) fglrx(0): *Mode “1680x1050”: 146.0 MHz (scaled from 0.0 MHz), 65.2 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1680x1050"x60.0 146.00 1680 1784 1960 2240 1050 1053 1059 1089 +hsync (65.2 kHz)
(
) fglrx(0): *Mode “1600x1200”: 202.5 MHz (scaled from 0.0 MHz), 93.8 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1600x1200"x75.0 202.50 1600 1664 1856 2160 1200 1201 1204 1250 (93.8 kHz)
(
) fglrx(0): Default mode “1600x1200”: 189.0 MHz (scaled from 0.0 MHz), 87.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1600x1200"x70.0 189.00 1600 1664 1856 2160 1200 1201 1204 1250 (87.5 kHz)
(
) fglrx(0): Default mode “1600x1200”: 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 (75.0 kHz)
(
) fglrx(0): *Mode “1440x900”: 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1440x900"x60.0 106.50 1440 1520 1672 1904 900 903 909 934 +vsync (55.9 kHz)
(
) fglrx(0): *Mode “1400x1050”: 121.8 MHz (scaled from 0.0 MHz), 65.3 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 +hsync (65.3 kHz)
(
) 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 “1280x960”: 129.9 MHz (scaled from 0.0 MHz), 75.2 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x960"x75.0 129.86 1280 1368 1504 1728 960 961 964 1002 +hsync (75.2 kHz)
(
) fglrx(0): Default mode “1280x960”: 124.5 MHz (scaled from 0.0 MHz), 72.1 kHz, 72.0 Hz
(II) fglrx(0): Modeline "1280x960"x72.0 124.54 1280 1368 1504 1728 960 961 964 1001 +hsync (72.1 kHz)
(
) fglrx(0): Default mode “1280x960”: 120.8 MHz (scaled from 0.0 MHz), 69.9 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 +hsync (69.9 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): *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 “1280x768”: 73.9 MHz (scaled from 0.0 MHz), 44.4 kHz, 56.0 Hz
(II) fglrx(0): Modeline "1280x768"x56.0 73.89 1280 1336 1472 1664 768 769 772 793 +hsync (44.4 kHz)
(
) fglrx(0): *Mode “1280x720”: 74.5 MHz (scaled from 0.0 MHz), 44.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 +hsync (44.8 kHz)
(
) fglrx(0): *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): *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): *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): *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 “512x384”: 19.7 MHz (scaled from 0.0 MHz), 31.1 kHz, 75.0 Hz
(II) fglrx(0): Modeline "512x384"x75.0 19.68 512 528 576 632 384 384 385 416 (31.1 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: (430, 270) mm
(–) fglrx(0): DPI set to (99, 98)
(–) fglrx(0): Virtual size is 1680x1050 (pitch 1728)
(
) fglrx(0): *Mode “1680x1050”: 146.0 MHz (scaled from 0.0 MHz), 65.2 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1680x1050"x60.0 146.00 1680 1784 1960 2240 1050 1053 1059 1089 +hsync (65.2 kHz)
(
) fglrx(0): *Mode “1600x1200”: 202.5 MHz (scaled from 0.0 MHz), 93.8 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1600x1200"x75.0 202.50 1600 1664 1856 2160 1200 1201 1204 1250 (93.8 kHz)
(
) fglrx(0): Default mode “1600x1200”: 189.0 MHz (scaled from 0.0 MHz), 87.5 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1600x1200"x70.0 189.00 1600 1664 1856 2160 1200 1201 1204 1250 (87.5 kHz)
(
) fglrx(0): Default mode “1600x1200”: 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 (75.0 kHz)
(
) fglrx(0): *Mode “1440x900”: 106.5 MHz (scaled from 0.0 MHz), 55.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1440x900"x60.0 106.50 1440 1520 1672 1904 900 903 909 934 +vsync (55.9 kHz)
(
) fglrx(0): *Mode “1400x1050”: 121.8 MHz (scaled from 0.0 MHz), 65.3 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1400x1050"x60.0 121.75 1400 1488 1632 1864 1050 1053 1057 1089 +hsync (65.3 kHz)
(
) 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 “1280x960”: 129.9 MHz (scaled from 0.0 MHz), 75.2 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1280x960"x75.0 129.86 1280 1368 1504 1728 960 961 964 1002 +hsync (75.2 kHz)
(
) fglrx(0): Default mode “1280x960”: 124.5 MHz (scaled from 0.0 MHz), 72.1 kHz, 72.0 Hz
(II) fglrx(0): Modeline "1280x960"x72.0 124.54 1280 1368 1504 1728 960 961 964 1001 +hsync (72.1 kHz)
(
) fglrx(0): Default mode “1280x960”: 120.8 MHz (scaled from 0.0 MHz), 69.9 kHz, 70.0 Hz
(II) fglrx(0): Modeline "1280x960"x70.0 120.84 1280 1368 1504 1728 960 961 964 999 +hsync (69.9 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): *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 “1280x768”: 73.9 MHz (scaled from 0.0 MHz), 44.4 kHz, 56.0 Hz
(II) fglrx(0): Modeline "1280x768"x56.0 73.89 1280 1336 1472 1664 768 769 772 793 +hsync (44.4 kHz)
(
) fglrx(0): *Mode “1280x720”: 74.5 MHz (scaled from 0.0 MHz), 44.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 +hsync (44.8 kHz)
(
) fglrx(0): *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): *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): *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): *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 “512x384”: 19.7 MHz (scaled from 0.0 MHz), 31.1 kHz, 75.0 Hz
(II) fglrx(0): Modeline "512x384"x75.0 19.68 512 528 576 632 384 384 385 416 (31.1 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.2, 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.2, 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
(==) fglrx(0): Capabilities: 0x00000000
(==) fglrx(0): CapabilitiesEx: 0x00000000
(==) fglrx(0): cpuFlags: 0x4000001f
(==) fglrx(0): OpenGL ClientDriverName: “fglrx_dri.so”
(II) fglrx(0): [pcie] 262144 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 18.
(II) fglrx(0): Exposed events to the /proc interface
(II) fglrx(0): Finished Initialize PPLIB!
(–) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don’t.
(II) resource ranges after preInit:
[0] 0 0 0xfdee0000 - 0xfdeeffff (0x10000) MX[B]
[1] 0 0 0xd0000000 - 0xdfffffff (0x10000000) 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 0xfdcf8000 - 0xfdcfbfff (0x4000) MX[B]
[7] -1 0 0xfdcff000 - 0xfdcff7ff (0x800) MX[B]
[8] -1 0 0xfdbfe000 - 0xfdbfefff (0x1000) MX[B]
[9] -1 0 0xfddfc000 - 0xfddfffff (0x4000) MX[B]
[10] -1 0 0xfdefc000 - 0xfdefffff (0x4000) MX[B]
[11] -1 0 0xfe024000 - 0xfe027fff (0x4000) MX[B]
[12] -1 0 0xfe029000 - 0xfe0290ff (0x100) MX[B]
[13] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[B]
[14] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
[15] -1 0 0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
[16] -1 0 0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
[17] -1 0 0xfe02e000 - 0xfe02efff (0x1000) MX[B]
[18] -1 0 0xfe02f000 - 0xfe02f3ff (0x400) MX[B]
[19] -1 0 0xfdbff000 - 0xfdbfffff (0x1000) MXB
[20] -1 0 0xfdee0000 - 0xfdeeffff (0x10000) MXB
[21] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MXB
[22] 0 0 0x000a0000 - 0x000affff (0x10000) MSB
[23] 0 0 0x000b0000 - 0x000b7fff (0x8000) MSB
[24] 0 0 0x000b8000 - 0x000bffff (0x8000) MSB
[25] 0 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[27] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[28] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[29] -1 0 0x0000f900 - 0x0000f90f (0x10) IX[B]
[30] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[31] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[32] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[33] -1 0 0x000001f0 - 0x000001f7 (0x8) IX[B]
[34] -1 0 0x00000b00 - 0x00000b0f (0x10) IX[B]
[35] -1 0 0x0000fb00 - 0x0000fb0f (0x10) IX[B]
[36] -1 0 0x0000fc00 - 0x0000fc03 (0x4) IX[B]
[37] -1 0 0x0000fd00 - 0x0000fd07 (0x8) IX[B]
[38] -1 0 0x0000fe00 - 0x0000fe03 (0x4) IX[B]
[39] -1 0 0x0000ff00 - 0x0000ff07 (0x8) IX[B]
[40] -1 0 0x0000de00 - 0x0000deff (0x100) IXB
[41] 0 0 0x000003b0 - 0x000003bb (0xc) ISB
[42] 0 0 0x000003c0 - 0x000003df (0x20) ISB
(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=-1)
(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 9, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(II) fglrx(0): [drm] DRM interface version 1.0
(II) fglrx(0): [drm] created “fglrx” driver at busid “PCI:1:0:0”
(II) fglrx(0): [drm] added 8192 byte SAREA at 0x2000
(II) fglrx(0): [drm] mapped SAREA 0x2000 to 0x7f1934f14000
(II) fglrx(0): [drm] framebuffer handle = 0x3000
(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.56.4
(II) fglrx(0): Date: Dec 1 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.26-2-amd64
(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 = 0x00004000
(II) fglrx(0): DRI initialization successfull!
(II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x01008000
(II) fglrx(0): FBMM initialized for area (0,0)-(1728,2432)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1728,1050) (front color buffer - assumption)
(II) fglrx(0): Largest offscreen area available: 1728 x 1382
(==) fglrx(0): Backing store disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(
) fglrx(0): DPMS enabled
(
) fglrx(0): Textured Video is enabled.
(II) LoadModule: “glesx”
(II) Loading /usr/lib/xorg/modules//glesx.so
(II) Module glesx: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension GLESX
(II) fglrx(0): GLESX enableFlags = 90
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
Solid Horizontal and Vertical Lines
Driver provided ScreenToScreenBitBlt replacement
Driver provided FillSolidRects replacement
(II) fglrx(0): GLESX is enabled
(II) LoadModule: “amdxmm”
(II) Loading /usr/lib/xorg/modules//amdxmm.so
(II) Module amdxmm: vendor="X.Org Foundation"
compiled for 7.1.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) fglrx(0): UVD2 feature is available
(WW) fglrx(0): Option “VendorName” is not used
(WW) fglrx(0): Option “ModelName” is not used
(II) fglrx(0): X context handle = 0x1
(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 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
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: drmOpenMinor returns 10
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(WW) AIGLX: 3D driver claims to not support visual 0x23
(WW) AIGLX: 3D driver claims to not support visual 0x24
(WW) AIGLX: 3D driver claims to not support visual 0x25
(WW) AIGLX: 3D driver claims to not support visual 0x26
(WW) AIGLX: 3D driver claims to not support visual 0x27
(WW) AIGLX: 3D driver claims to not support visual 0x28
(WW) AIGLX: 3D driver claims to not support visual 0x29
(WW) AIGLX: 3D driver claims to not support visual 0x2a
(WW) AIGLX: 3D driver claims to not support visual 0x2b
(WW) AIGLX: 3D driver claims to not support visual 0x2c
(WW) AIGLX: 3D driver claims to not support visual 0x2d
(WW) AIGLX: 3D driver claims to not support visual 0x2e
(WW) AIGLX: 3D driver claims to not support visual 0x2f
(WW) AIGLX: 3D driver claims to not support visual 0x30
(WW) AIGLX: 3D driver claims to not support visual 0x31
(WW) AIGLX: 3D driver claims to not support visual 0x32
(WW) AIGLX: 3D driver claims to not support visual 0x33
(WW) AIGLX: 3D driver claims to not support visual 0x34
(WW) AIGLX: 3D driver claims to not support visual 0x35
(WW) AIGLX: 3D driver claims to not support visual 0x36
(WW) AIGLX: 3D driver claims to not support visual 0x37
(WW) AIGLX: 3D driver claims to not support visual 0x38
(WW) AIGLX: 3D driver claims to not support visual 0x39
(WW) AIGLX: 3D driver claims to not support visual 0x3a
(WW) AIGLX: 3D driver claims to not support visual 0x3b
(WW) AIGLX: 3D driver claims to not support visual 0x3c
(WW) AIGLX: 3D driver claims to not support visual 0x3d
(WW) AIGLX: 3D driver claims to not support visual 0x3e
(WW) AIGLX: 3D driver claims to not support visual 0x3f
(WW) AIGLX: 3D driver claims to not support visual 0x40
(WW) AIGLX: 3D driver claims to not support visual 0x41
(WW) AIGLX: 3D driver claims to not support visual 0x42
(WW) AIGLX: 3D driver claims to not support visual 0x43
(WW) AIGLX: 3D driver claims to not support visual 0x44
(WW) AIGLX: 3D driver claims to not support visual 0x45
(WW) AIGLX: 3D driver claims to not support visual 0x46
(WW) AIGLX: 3D driver claims to not support visual 0x47
(WW) AIGLX: 3D driver claims to not support visual 0x48
(WW) AIGLX: 3D driver claims to not support visual 0x49
(WW) AIGLX: 3D driver claims to not support visual 0x4a
(WW) AIGLX: 3D driver claims to not support visual 0x4b
(WW) AIGLX: 3D driver claims to not support visual 0x4c
(WW) AIGLX: 3D driver claims to not support visual 0x4d
(WW) AIGLX: 3D driver claims to not support visual 0x4e
(WW) AIGLX: 3D driver claims to not support visual 0x4f
(WW) AIGLX: 3D driver claims to not support visual 0x50
(WW) AIGLX: 3D driver claims to not support visual 0x51
(WW) AIGLX: 3D driver claims to not support visual 0x52
(WW) AIGLX: 3D driver claims to not support visual 0x53
(WW) AIGLX: 3D driver claims to not support visual 0x54
(WW) AIGLX: 3D driver claims to not support visual 0x55
(WW) AIGLX: 3D driver claims to not support visual 0x56
(WW) AIGLX: 3D driver claims to not support visual 0x57
(WW) AIGLX: 3D driver claims to not support visual 0x58
(WW) AIGLX: 3D driver claims to not support visual 0x59
(WW) AIGLX: 3D driver claims to not support visual 0x5a
(WW) AIGLX: 3D driver claims to not support visual 0x5b
(WW) AIGLX: 3D driver claims to not support visual 0x5c
(WW) AIGLX: 3D driver claims to not support visual 0x5d
(WW) AIGLX: 3D driver claims to not support visual 0x5e
(WW) AIGLX: 3D driver claims to not support visual 0x5f
(WW) AIGLX: 3D driver claims to not support visual 0x60
(WW) AIGLX: 3D driver claims to not support visual 0x61
(WW) AIGLX: 3D driver claims to not support visual 0x62
(WW) AIGLX: 3D driver claims to not support visual 0x63
(WW) AIGLX: 3D driver claims to not support visual 0x64
(WW) AIGLX: 3D driver claims to not support visual 0x65
(WW) AIGLX: 3D driver claims to not support visual 0x66
(WW) AIGLX: 3D driver claims to not support visual 0x67
(WW) AIGLX: 3D driver claims to not support visual 0x68
(WW) AIGLX: 3D driver claims to not support visual 0x69
(WW) AIGLX: 3D driver claims to not support visual 0x6a
(WW) AIGLX: 3D driver claims to not support visual 0x6b
(WW) AIGLX: 3D driver claims to not support visual 0x6c
(WW) AIGLX: 3D driver claims to not support visual 0x6d
(WW) AIGLX: 3D driver claims to not support visual 0x6e
(WW) AIGLX: 3D driver claims to not support visual 0x6f
(WW) AIGLX: 3D driver claims to not support visual 0x70
(WW) AIGLX: 3D driver claims to not support visual 0x71
(WW) AIGLX: 3D driver claims to not support visual 0x72
(II) AIGLX: Loaded and initialized /usr/lib/dri/fglrx_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(II) fglrx(0): Enable the clock gating!
(WW) Configured Mouse: No Device specified, looking for one…
(II) Configured Mouse: Setting Device option to “/dev/input/mice”
(–) Configured Mouse: Device: “/dev/input/mice”
(==) Configured Mouse: Protocol: “Auto”
(
) Option “CorePointer”
(
) Configured Mouse: always reports core events
(==) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(
) Configured Mouse: ZAxisMapping: buttons 4 and 5
(
) Configured Mouse: Buttons: 9
(
) Configured Mouse: Sensitivity: 1
(
) Option “CoreKeyboard”
(
) Generic Keyboard: always reports core events
(
) Option “Protocol” “standard”
(
) Generic Keyboard: Protocol: standard
(
) Option “AutoRepeat” “500 30”
(
) Option “XkbRules” “xorg”
(
) Generic Keyboard: XkbRules: “xorg”
(
) Option “XkbModel” “pc105”
(
) Generic Keyboard: XkbModel: “pc105”
(
) Option “XkbLayout” “fr”
(
) Generic Keyboard: XkbLayout: “fr”
(
) Option “XkbVariant” “latin9”
(
) Generic Keyboard: XkbVariant: “latin9”
(
) Option “CustomKeycodes” “off”
(
*) Generic Keyboard: CustomKeycodes disabled
(II) evaluating device (Configured Mouse)
(II) XINPUT: Adding extended input device “Configured Mouse” (type: MOUSE)
(II) evaluating device (Generic Keyboard)
(II) XINPUT: Adding extended input device “Generic Keyboard” (type: KEYBOARD)
(–) Configured Mouse: PnP-detected protocol: “ExplorerPS/2”
(II) Configured Mouse: ps2EnableDataReporting: succeeded
(II) 3rd Button detected: disabling emulate3Button
Warning: LookupDrawable()/SecurityLookupDrawable() are deprecated. Please convert your driver/module to use dixLookupDrawable().[/code]

Salut,

Attention, le forum Trucs & astuces n’est pas fait pour y mettre des romans de cette longueur que peu de gens liront :slightly_smiling:

Bonjour,
Je vais faire plus court et je dirai simplement que la carte Radeon HD 4200 de mon Probook 6545b a trouvé son bonheur ici :
http://support.amd.com/us/gpudownload/Pages/index.aspx