[radeonhd] Pb de rafraishissement lors de scrol' (résolu)

Questions et astuces concernant l'installation et la configuration d'archlinux
Répondre
Blink59
yeomen
Messages : 249
Inscription : mer. 06 mai 2009, 16:38

[radeonhd] Pb de rafraishissement lors de scrol' (résolu)

Message par Blink59 »

Bonjour à tous,

Suite à la dernière mise à jour du kernel, j'ai un petit problème avec mon interface graphique: en effet, lors du scrolling d'une page par exemple (car c'est l'exemple le plus flagrant), les rafraichissements de la page se succèdent en saccadé... J'ai essayé de toucher aux options chargées par le /etc/X11/xorg.conf, mais rien n'y fait... Voici l'état actuel de mon fichier de conf:

Code : Tout sélectionner

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

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

Section "Module"
	Load  "dbe"
	Load  "dri2"
	Load  "record"
	Load  "dri"
	Load  "extmod"
	Load  "glx"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbLayout"	"fr"
	Option		"XkbVariant"	"oss"
EndSection

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

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Sony"
	ModelName    "X-Black HD"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "DefaultRefresh"     	# [<bool>]
        #Option     "ModeSetClearScreen" 	# [<bool>]

	Identifier  "Card0"
	Driver      "radeonhd"
	VendorName  "ATI Technologies Inc"
	BoardName   "Mobility Radeon HD 3400 Series"
	BusID       "PCI:1:0:0"

	Option "AccelMethod" "exa"
	Option "DRI" "on"
	Option "ScaleType" "default"
	Option "HDMI" "all"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "ServerFlags"
	Option		"DontZap"	"False"
EndSection
J'ai cherché sur le net, mais je ne trouve aucun topic concernant ce problème de rafraichissement de page... Quelqu'un aurait-il une idée???
Dernière modification par Blink59 le mar. 13 avr. 2010, 14:10, modifié 1 fois.
Blink59
yeomen
Messages : 249
Inscription : mer. 06 mai 2009, 16:38

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Blink59 »

Le peu de pistes sur le net que j'ai pu trouvé ne me menant à rien, j'ai alors décidé de totalement réinitialisé le fichier /etc/X11/xorg.conf via la commande X -configure, ce qui m'a donné le fichier de configuration suivant:

Code : Tout sélectionner

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

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

Section "Module"
	Load  "dbe"
	Load  "dri2"
	Load  "record"
	Load  "dri"
	Load  "extmod"
	Load  "glx"
EndSection

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

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

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

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"            	# [<bool>]
        #Option     "AccelMethod"        	# [<str>]
        #Option     "offscreensize"      	# [<str>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "ignoreconnector"    	# [<str>]
        #Option     "forcereduced"       	# [<bool>]
        #Option     "forcedpi"           	# <i>
        #Option     "useconfiguredmonitor" 	# [<bool>]
        #Option     "HPD"                	# <str>
        #Option     "NoRandr"            	# [<bool>]
        #Option     "RROutputOrder"      	# [<str>]
        #Option     "DRI"                	# [<bool>]
        #Option     "TVMode"             	# [<str>]
        #Option     "ScaleType"          	# [<str>]
        #Option     "UseAtomBIOS"        	# [<bool>]
        #Option     "AtomBIOS"           	# [<str>]
        #Option     "UnverifiedFeatures" 	# [<bool>]
        #Option     "Audio"              	# [<bool>]
        #Option     "AudioStreamSilence" 	# [<str>]
        #Option     "HDMI"               	# [<str>]
        #Option     "COHERENT"           	# [<str>]
        #Option     "ForceLowPowerMode"  	# [<bool>]
        #Option     "LowPowerModeEngineClock" 	# <i>
	Identifier  "Card0"
	Driver      "radeonhd"
	VendorName  "ATI Technologies Inc"
	BoardName   "Mobility Radeon HD 3400 Series"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Mais le problème persiste....

Est-ce un souci au niveau du driver lui-même......?
Nydol
Daikyu
Messages : 79
Inscription : sam. 19 sept. 2009, 18:22

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Nydol »

Bonjour,

Quelques questions/idées pour commencer :

1 - Peux-tu mettre le /var/log/Xorg.0.log ?
2 - As-tu essayé sans xorg.conf ?
3 - As-tu essayé le driver "radeon" ?
Image
Blink59
yeomen
Messages : 249
Inscription : mer. 06 mai 2009, 16:38

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Blink59 »

Salut Nydol.

Merci de te pencher sur mon problème.

Voici le /var/log/Xorg.0.log:

Code : Tout sélectionner


X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.33-ARCH i686 
Current Operating System: Linux stephan-laptop 2.6.33-ARCH #1 SMP PREEMPT Mon Apr 5 05:57:38 UTC 2010 i686
Kernel command line: root=/dev/disk/by-uuid/4f6998d1-9e4e-4cf4-98ba-613c1756d09d ro
Build Date: 01 April 2010  05:35:33PM
 
Current version of pixman: 0.18.0
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 13 11:48:59 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(==) Automatically adding devices
(==) Automatically enabling devices
(**) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/100dpi:unscaled,
	/usr/share/fonts/75dpi:unscaled,
	/usr/share/fonts/TTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/misc,
	/usr/share/fonts/100dpi:unscaled,
	/usr/share/fonts/75dpi:unscaled,
	/usr/share/fonts/TTF,
	/usr/share/fonts/Type1
(**) ModulePath set to "/usr/lib/xorg/modules"
(WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
(WW) Disabling Mouse0
(WW) Disabling Keyboard0
(II) Loader magic: 0x81e4c60
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.4
	X.Org Video Driver: 6.0
	X.Org XInput driver : 7.0
	X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:1:0:0) 1002:95c4:104d:9035 ATI Technologies Inc Mobility Radeon HD 3400 Series rev 0, Mem @ 0xc0000000/268435456, 0xd0020000/65536, I/O @ 0x0000d000/256, BIOS @ 0x????????/131072
(II) Open ACPI successful (/var/run/acpid.socket)
(II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
(II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
(II) "glx" will be loaded. This was enabled by default and also specified in the config file.
(II) "record" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.1.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(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 1.7.6, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "radeonhd"
(II) Loading /usr/lib/xorg/modules/drivers/radeonhd_drv.so
(II) Module radeonhd: vendor="AMD GPG"
	compiled for 1.7.0.901, module version = 1.3.0
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 6.0
(II) RADEONHD: X driver for the following AMD GPG (ATI) graphics devices:
	RV505 : Radeon X1550, X1550 64bit.
	RV515 : Radeon X1300, X1550, X1600; FireGL V3300, V3350.
	RV516 : Radeon X1300, X1550, X1550 64-bit, X1600; FireMV 2250.
	R520  : Radeon X1800; FireGL V5300, V7200, V7300, V7350.
	RV530 : Radeon X1300 XT, X1600, X1600 Pro, X1650; FireGL V3400, V5200.
	RV535 : Radeon X1300, X1650.
	RV550 : Radeon X2300 HD.
	RV560 : Radeon X1650.
	RV570 : Radeon X1950, X1950 GT; FireGL V7400.
	R580  : Radeon X1900, X1950; AMD Stream Processor.
	R600  : Radeon HD 2900 GT/Pro/XT; FireGL V7600/V8600/V8650.
	RV610 : Radeon HD 2350, HD 2400 Pro/XT, HD 2400 Pro AGP; FireGL V4000.
	RV620 : Radeon HD 3450, HD 3470.
	RV630 : Radeon HD 2600 LE/Pro/XT, HD 2600 Pro/XT AGP; Gemini RV630;
		FireGL V3600/V5600.
	RV635 : Radeon HD 3650, HD 3670.
	RV670 : Radeon HD 3690, 3850, HD 3870, FireGL V7700, FireStream 9170.
	R680  : Radeon HD 3870 X2.
	M52   : Mobility Radeon X1300.
	M54   : Mobility Radeon X1400; M54-GL.
	M56   : Mobility Radeon X1600; Mobility FireGL V5200.
	M58   : Mobility Radeon X1800, X1800 XT; Mobility FireGL V7100, V7200.
	M62   : Mobility Radeon X1350.
	M64   : Mobility Radeon X1450, X2300.
	M66   : Mobility Radeon X1700, X1700 XT; FireGL V5250.
	M68   : Mobility Radeon X1900.
	M71   : Mobility Radeon HD 2300.
	M72   : Mobility Radeon HD 2400; Radeon E2400.
	M74   : Mobility Radeon HD 2400 XT.
	M76   : Mobility Radeon HD 2600;
		(Gemini ATI) Mobility Radeon HD 2600 XT.
	M82   : Mobility Radeon HD 3400.
	M86   : Mobility Radeon HD 3650, HD 3670, Mobility FireGL V5700.
	M88   : Mobility Radeon HD 3850, HD 3850 X2, HD 3870, HD3870 X2.
	RS600 : Radeon Xpress 1200, Xpress 1250.
	RS690 : Radeon X1200, X1250, X1270.
	RS740 : RS740, RS740M.
	RS780 : Radeon HD 3100/3200/3300 Series.
	R700  : Radeon R700.
	RV710 : Radeon HD4570, HD4350.
	RV730 : Radeon HD4670, HD4650.
	RV740 : Radeon HD4770. EXPERIMENTAL AND UNTESTED.
	RV770 : Radeon HD 4800 Series; Everest, K2, Denali ATI FirePro.
	RV790 : Radeon HD 4890.
	M92   : Mobility Radeon HD4330, HD4530, HD4570. EXPERIMENTAL.
	M93   : Mobility Radeon M93. EXPERIMENTAL AND UNTESTED.
	M96   : Mobility Radeon HD4600.
	M97   : Mobility Radeon HD4860. EXPERIMENTAL AND UNTESTED.
	M98   : Mobility Radeon HD4850, HD4870.

(II) RADEONHD: version 1.3.0, built from dist of git branch master, commit 8cbff7bf

(II) Primary Device is: PCI 01@00:00:0
(==) RADEONHD(0): Depth 24, (--) framebuffer bpp 32
(**) RADEONHD(0): Selected EXA 2D acceleration.
(II) RADEONHD(0): Card not in database: 0x95C4:0x104D:0x9035; using generic modesetting.
	If - and only if - your card does not work or does not work optimally
	please contact radeonhd@opensuse.org to help rectify this.
	Use the subject: 0x95C4:0x104D:0x9035: <name of board>
	and *please* describe the problems you are seeing
	in your message.
(--) RADEONHD(0): Detected an M82 on an unidentified card
(II) RADEONHD(0): Mapped IO @ 0xd0020000 to 0xb7142000 (size 0x00010000)
(II) RADEONHD(0): PCIE Card Detected
(II) RADEONHD(0): Getting BIOS copy from legacy VBIOS location
(II) RADEONHD(0): ATOM BIOS Rom: 
	SubsystemVendorID: 0x104d SubsystemID: 0x9035
	IOBaseAddress: 0xd000
	Filename: BR30708.001 
	BIOS Bootup Message: 

SonyM762 M82 GDDR3_16Mx32 64bit 128MB 680e/800m                             


(II) RADEONHD(0): Analog TV Default Mode: 0
(--) RADEONHD(0): VideoRAM: 262144 kByte
(II) RADEONHD(0): Framebuffer space used by Firmware (kb): 20
(II) RADEONHD(0): Start of VRAM area used by Firmware: 0xfffb000
(II) RADEONHD(0): AtomBIOS requests 20kB of VRAM scratch space
(II) RADEONHD(0): AtomBIOS VRAM scratch base: 0xfffb000
(II) RADEONHD(0): Default Engine Clock: 680000
(II) RADEONHD(0): Default Memory Clock: 800000
(II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1200000
(II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0
(II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Input: 13500
(II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Input: 1000
(II) RADEONHD(0): Maximum Pixel Clock: 400000
(II) RADEONHD(0): Reference Clock: 27000
(II) RADEONHD(0): Found libdri 5.4.0.
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) RADEONHD(0): Found libdrm 1.3.0.
(II) RADEONHD(0): Found radeon drm 2.0.0.
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Module "i2c" already built-in
(II) RADEONHD(0): Reference Clock: 27000
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f90
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f90
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 0" initialized.
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f94
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f94
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 1" initialized.
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f98
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f98
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 2" initialized.
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f88
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f88
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 3" initialized.
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) RADEONHD(0): Detected VGA mode.
(II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0
(II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1200000
(II) RADEONHD(0): Maximum Pixel Clock: 400000
(II) RADEONHD(0): Reference Clock: 27000
(II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00000000 (size = 0x00004000)
(II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00004000 (size = 0x00004000)
(II) RADEONHD(0): FirmwareInfo Revision 0104
(II) RADEONHD(0): Unused attribute: ul3DAccelerationEngineClock 0
(II) RADEONHD(0): Unused attribute: ulDriverTargetEngineClock 0
(II) RADEONHD(0): Unused attribute: ulDriverTargetMemoryClock 0
(II) RADEONHD(0): Unused attribute: ucASICMaxTemperature 0
(II) RADEONHD(0): Scary bits: Estimated MinEngineClock 250000 kHz
(II) RADEONHD(0): Scary bits: Estimated MinMemoryClock 250000 kHz
(II) RADEONHD(0): Default Engine Clock: 680000
(II) RADEONHD(0): Default Memory Clock: 800000
(II) RADEONHD(0): Current Engine Clock: 675000
(II) RADEONHD(0): Current Memory Clock: 792000
(II) RADEONHD(0): Current Chip Voltage: 0
(II) RADEONHD(0): Power Management: used engine clock / memory clock / core (VDDC) voltage   (0: ignore)
(II) RADEONHD(0): Power Management: Raw Ranges
(II) RADEONHD(0):   Minimum    250000 kHz /   250000 kHz /  0.950 V
(II) RADEONHD(0):   Maximum         0 kHz /        0 kHz /  1.200 V
(II) RADEONHD(0):   Default    680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0): PowerPlayInfo Revision 0401
(II) RADEONHD(0): Power Management: Validated Ranges
(II) RADEONHD(0):   Minimum    110000 kHz /   250000 kHz /  0.950 V
(II) RADEONHD(0):   Maximum    680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   Default    680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0): Power Management: Known Good Configurations
(II) RADEONHD(0):   1          680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   2          110000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0):   3          300000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0):   4          680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   5          110000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0):   6          110000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0):   7          300000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0):   8          300000 kHz /   400000 kHz /  1.200 V
(II) RADEONHD(0):   9          550000 kHz /   700000 kHz /  1.200 V
(II) RADEONHD(0):   10         550000 kHz /   700000 kHz /  1.200 V
(II) RADEONHD(0):   11         300000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   12         300000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   13         680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   14         300000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0):   15         300000 kHz /   405000 kHz /  0.950 V
(II) RADEONHD(0): Power Management: Final Levels
(II) RADEONHD(0):   Off        110000 kHz /   250000 kHz /  0.950 V
(II) RADEONHD(0):   Idle       680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   Slow2D     680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   Fast2D     680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   Slow3D     680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   Fast3D     680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   Max3D      680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0):   User       680000 kHz /   800000 kHz /  1.200 V
(II) RADEONHD(0): Connector[0] {RHD_CONNECTOR_VGA, "VGA CRT1", RHD_DDC_0, RHD_HPD_NONE, { RHD_OUTPUT_DACA, RHD_OUTPUT_NONE } }
(II) RADEONHD(0): Connector[1] {RHD_CONNECTOR_PANEL, "LVDS LCD1", RHD_DDC_NONE, RHD_HPD_NONE, { RHD_OUTPUT_KLDSKP_LVTMA, RHD_OUTPUT_NONE } }
(II) RADEONHD(0): Connector[2] {RHD_CONNECTOR_DVI_SINGLE, "HDMI_TYPE_A DFP1", RHD_DDC_2, RHD_HPD_0, { RHD_OUTPUT_UNIPHYA, RHD_OUTPUT_NONE } }
(--) RADEONHD(0): Attaching Output DAC A to Connector VGA 1
(II) RADEONHD(0): LVDS FPDI: 0x1
(II) RADEONHD(0): LVDS Duallink: 0x1
(II) RADEONHD(0): LVDS Grey Level: 0x0
(II) RADEONHD(0): LVDS SEQ Dig onto DE: 30
(II) RADEONHD(0): LVDS SEQ DE to BL: 360
(II) RADEONHD(0): LVDS Off Delay: 500
(II) RADEONHD(0): LVDS 24Bit: 0x0
(II) RADEONHD(0): LVDS Spatial Dither : 0x1
(II) RADEONHD(0): LVDS Temporal Dither : 0x0
(II) RADEONHD(0): ACPI Backlight Control found.
(--) RADEONHD(0): Attaching Output UNIPHY_KLDSKP_LVTMA to Connector PANEL
(--) RADEONHD(0): Attaching Output UNIPHY_A to Connector DVI-D 1
(II) RADEONHD(0): RandR: Adding RRoutput VGA_1 for Output DAC A
(II) RADEONHD(0): RandR: Adding RRoutput PANEL for Output UNIPHY_KLDSKP_LVTMA
(II) RADEONHD(0): RandR: Adding RRoutput DVI-D_1 for Output UNIPHY_A
(II) RADEONHD(0): Output VGA_1 using monitor section Monitor0
(II) RADEONHD(0): Output VGA_1 has no monitor section
(II) RADEONHD(0): Output PANEL has no monitor section
(II) RADEONHD(0): Output DVI-D_1 has no monitor section
(EE) RADEONHD(0): rhdAtomLvdsDDC: unknown record type: 0
(II) RADEONHD(0): Query for AtomBIOS Get Panel EDID: failed
(II) RADEONHD(0): Found native mode: Modeline "1920x1080"  147.96  1920 2012 2092 2192  1080 1095 1105 1125
(WW) RADEONHD(0): No monitor size info, assuming 96dpi.
(II) RADEONHD(0): Output VGA_1 disconnected
(II) RADEONHD(0): Output PANEL connected
(II) RADEONHD(0): Output DVI-D_1 disconnected
(II) RADEONHD(0): Using exact sizes for initial modes
(II) RADEONHD(0): Output PANEL using initial mode 1920x1080
(II) RADEONHD(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
(II) RADEONHD(0): RandR 1.2 support enabled
(==) RADEONHD(0): RGB weight 888
(==) RADEONHD(0): Default visual is TrueColor
(II) RADEONHD(0): Using 3840x1920 Framebuffer with 3840 pitch
(II) RADEONHD(0): FB: Allocated ScanoutBuffer at offset 0x00008000 (size = 0x01C20000)
(==) RADEONHD(0): DPI set to (96, 96)
(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.7.6, module version = 1.0.0
	ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Module "ramdac" already built-in
(II) Loading sub module "exa"
(II) LoadModule: "exa"
(II) Loading /usr/lib/xorg/modules/libexa.so
(II) Module exa: vendor="X.Org Foundation"
	compiled for 1.7.6, module version = 2.5.0
	ABI class: X.Org Video Driver, version 6.0
(II) RADEONHD(0): FB: Allocated Offscreen Buffer at offset 0x01C28000 (size = 0x01998000)
(II) RADEONHD(0): FB: Allocated DRI Back Buffer at offset 0x035C0000 (size = 0x01C20000)
(II) RADEONHD(0): FB: Allocated DRI Depth Buffer at offset 0x051E0000 (size = 0x01C20000)
(II) RADEONHD(0): FB: Allocated GART table at offset 0x0FFF0000 (size = 0x00010000, end of FB)
(II) RADEONHD(0): FB: Allocated DRI Textures at offset 0x06E00000 (size = 0x09000000)
(II) RADEONHD(0): Using 16 MB GART aperture
(II) RADEONHD(0): Using 2 MB for the ring buffer
(II) RADEONHD(0): Using 2 MB for vertex/indirect buffers
(II) RADEONHD(0): Using 12 MB for GART textures
(--) Depth 24 pixmap format is 32 bpp
(II) RADEONHD(0): Mapped IO @ 0xd0020000 to 0xb7142000 (size 0x00010000)
(II) RADEONHD(0): Mapped FB @ 0xc0000000 to 0xa7113000 (size 0x10000000)
(II) RADEONHD(0): Attempting to enable power management
(II) RADEONHD(0): Current Engine Clock: 675000
(II) RADEONHD(0): Current Memory Clock: 792000
(II) RADEONHD(0): Current Chip Voltage: 0
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:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) [drm] DRM interface version 1.3
(II) [drm] DRM open master succeeded.
(II) RADEONHD(0): [drm] Using the DRM lock SAREA also for drawables.
(II) RADEONHD(0): [drm] framebuffer handle = 0xc0000000
(II) RADEONHD(0): [drm] added 1 reserved context for kernel
(II) RADEONHD(0): X context handle = 0x1
(II) RADEONHD(0): [drm] installed DRM signal handler
(II) RADEONHD(0): [pci] 16384 kB allocated with handle 0xf9b3e000
(II) RADEONHD(0): [pci] ring handle = 0xf9b3e000
(II) RADEONHD(0): [pci] Ring mapped at 0xa6ecf000
(II) RADEONHD(0): [pci] Ring contents 0x00000000
(II) RADEONHD(0): [pci] ring read ptr handle = 0xf9d3f000
(II) RADEONHD(0): [pci] Ring read ptr mapped at 0xa6ece000
(II) RADEONHD(0): [pci] Ring read ptr contents 0x00000000
(II) RADEONHD(0): [pci] vertex/indirect buffers handle = 0xf9d40000
(II) RADEONHD(0): [pci] Vertex/indirect buffers mapped at 0xa6cce000
(II) RADEONHD(0): [pci] Vertex/indirect buffers contents 0x00000000
(II) RADEONHD(0): [pci] GART texture map handle = 0xf9f40000
(II) RADEONHD(0): [pci] GART Texture map mapped at 0xa610e000
(II) RADEONHD(0): [drm] register handle = 0xd0020000
(II) RADEONHD(0): [dri] Visual configs initialized
(WW) RADEONHD(0): [drm] failed to enable new memory map
(II) RADEONHD(0): [drm] removed 1 reserved context for kernel
(II) RADEONHD(0): [drm] unmapping 8192 bytes of SAREA 0xf801f000 at 0xa70d0000
(II) RADEONHD(0): [drm] Closed DRM master.
(II) RADEONHD(0): Attempting to set Engine Clock to 680000
(II) RADEONHD(0): Current Engine Clock: 675000
(II) RADEONHD(0): Current Memory Clock: 792000
(II) RADEONHD(0): Current Chip Voltage: 0
(WW) RADEONHD(0): RHDCSInit: CS for R600 requires DRI.
(WW) RADEONHD(0): Failed to initalize EXA; disabling acceleration.
(==) RADEONHD(0): Backing store disabled
(==) RADEONHD(0): Silken mouse enabled
(II) RADEONHD(0): RandR 1.2 enabled, ignore the following RandR disabled message.
(II) RADEONHD(0): Calling UNIPHYTransmitterControl
(II) RADEONHD(0): UNIPHYTransmitterControl Successful
(II) RADEONHD(0): Calling UNIPHYTransmitterControl
(II) RADEONHD(0): UNIPHYTransmitterControl Successful
(II) RADEONHD(0): Mapping DIG2 encoder to KLDSKP_LVTMA
(II) RADEONHD(0): On Crtc 0 Setting 60.0 Hz Mode: Modeline "1920x1080"  147.96  1920 2012 2092 2192  1080 1095 1105 1125
None
(II) RADEONHD(0): Query for Conditional Golden Setting: failed
(II) RADEONHD(0): LVTMATransmitterSet: Incoherent Mode not supported, switching to Coherent.
(II) RADEONHD(0): Calling UNIPHYTransmitterControl
(II) RADEONHD(0): UNIPHYTransmitterControl Successful
(II) RADEONHD(0): Calling UNIPHYTransmitterControl
(II) RADEONHD(0): UNIPHYTransmitterControl Successful
(II) RADEONHD(0): RHDAudioSetSupported: config 0x60040 codec 0x1
(==) RADEONHD(0): DPMS enabled
(--) RandR disabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(II) RADEONHD(0): Setting screen physical size to 507 x 285
(II) config/hal: Adding input device Sony Vaio Keys
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
	compiled for 1.7.3, module version = 2.3.2
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 7.0
(**) Sony Vaio Keys: always reports core events
(**) Sony Vaio Keys: Device: "/dev/input/event5"
(II) Sony Vaio Keys: Found keys
(II) Sony Vaio Keys: Configuring as keyboard
(II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "fr"
(II) config/hal: Adding input device Macintosh mouse button emulation
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event0"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found relative axes
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
(**) Macintosh mouse button emulation: (accel) acceleration profile 0
(II) Macintosh mouse button emulation: initialized for relative axes.
(II) config/hal: Adding input device AlpsPS/2 ALPS GlidePoint
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
	compiled for 1.7.3, module version = 1.2.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 7.0
(II) Synaptics touchpad driver version 1.2.1
(**) Option "Device" "/dev/input/event9"
(II) AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023
(II) AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767
(II) AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
(II) AlpsPS/2 ALPS GlidePoint: finger width range 0 - 0
(II) AlpsPS/2 ALPS GlidePoint: buttons: left right middle
(**) Option "TapButton1" "1"
(**) Option "TapButton2" "2"
(**) Option "TapButton3" "3"
(--) AlpsPS/2 ALPS GlidePoint: touchpad found
(**) AlpsPS/2 ALPS GlidePoint: always reports core events
(II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD)
(**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
(**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 0
(--) AlpsPS/2 ALPS GlidePoint: touchpad found
(II) config/hal: Adding input device PS/2 Mouse
(**) PS/2 Mouse: always reports core events
(**) PS/2 Mouse: Device: "/dev/input/event8"
(II) PS/2 Mouse: Found 3 mouse buttons
(II) PS/2 Mouse: Found relative axes
(II) PS/2 Mouse: Found x and y relative axes
(II) PS/2 Mouse: Configuring as mouse
(**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
(**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
(**) PS/2 Mouse: (accel) keeping acceleration scheme 1
(**) PS/2 Mouse: (accel) acceleration profile 0
(II) PS/2 Mouse: initialized for relative axes.
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
(II) AT Translated Set 2 keyboard: Found keys
(II) AT Translated Set 2 keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "fr"
(II) config/hal: Adding input device HID 04d9:1133
(**) HID 04d9:1133: always reports core events
(**) HID 04d9:1133: Device: "/dev/input/event12"
(II) HID 04d9:1133: Found 3 mouse buttons
(II) HID 04d9:1133: Found scroll wheel(s)
(II) HID 04d9:1133: Found relative axes
(II) HID 04d9:1133: Found x and y relative axes
(II) HID 04d9:1133: Configuring as mouse
(**) HID 04d9:1133: YAxisMapping: buttons 4 and 5
(**) HID 04d9:1133: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "HID 04d9:1133" (type: MOUSE)
(**) HID 04d9:1133: (accel) keeping acceleration scheme 1
(**) HID 04d9:1133: (accel) acceleration profile 0
(II) HID 04d9:1133: initialized for relative axes.
(II) config/hal: Adding input device UVC Camera (05ca:183d)
(**) UVC Camera (05ca:183d): always reports core events
(**) UVC Camera (05ca:183d): Device: "/dev/input/event11"
(II) UVC Camera (05ca:183d): Found keys
(II) UVC Camera (05ca:183d): Configuring as keyboard
(II) XINPUT: Adding extended input device "UVC Camera (05ca:183d)" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "fr"
(II) config/hal: Adding input device Power Button
(**) Power Button: always reports core events
(**) Power Button: Device: "/dev/input/event3"
(II) Power Button: Found keys
(II) Power Button: Configuring as keyboard
(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "fr"
(II) config/hal: Adding input device Video Bus
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event7"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "fr"
(EE) RADEONHD(0): rhdAtomLvdsDDC: unknown record type: 0
(II) RADEONHD(0): Query for AtomBIOS Get Panel EDID: failed
(II) RADEONHD(0): Found native mode: Modeline "1920x1080"  147.96  1920 2012 2092 2192  1080 1095 1105 1125
(WW) RADEONHD(0): No monitor size info, assuming 96dpi.
(EE) RADEONHD(0): rhdAtomLvdsDDC: unknown record type: 0
(II) RADEONHD(0): Query for AtomBIOS Get Panel EDID: failed
(II) RADEONHD(0): Found native mode: Modeline "1920x1080"  147.96  1920 2012 2092 2192  1080 1095 1105 1125
(WW) RADEONHD(0): No monitor size info, assuming 96dpi.
(EE) RADEONHD(0): rhdAtomLvdsDDC: unknown record type: 0
(II) RADEONHD(0): Query for AtomBIOS Get Panel EDID: failed
(II) RADEONHD(0): Found native mode: Modeline "1920x1080"  147.96  1920 2012 2092 2192  1080 1095 1105 1125
(WW) RADEONHD(0): No monitor size info, assuming 96dpi.
(EE) RADEONHD(0): rhdAtomLvdsDDC: unknown record type: 0
(II) RADEONHD(0): Query for AtomBIOS Get Panel EDID: failed
(II) RADEONHD(0): Found native mode: Modeline "1920x1080"  147.96  1920 2012 2092 2192  1080 1095 1105 1125
(WW) RADEONHD(0): No monitor size info, assuming 96dpi.
Je viens d'essayer de lancer X sans le xorg.conf, et en effet, ça fonctionne, et sans problème de rafraichissement lors des différents scrolling. Cependant, X ne repère pas la résolution adaptée à mon écran, et c'est donc tout moche...

En ce qui concerne le pilote "radeon", je ne l'ai pas testé car il ne concerne pas ma carte graphique, j'ai besoin du pilote radeonhd; ma carte graphique est une radeon hd 3470 ...

Il y a donc bien un problème au niveau du fichier xorg.conf n'est-ce pas? La question est, à quel niveau.... =S
Nydol
Daikyu
Messages : 79
Inscription : sam. 19 sept. 2009, 18:22

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Nydol »

Blink59 a écrit : Je viens d'essayer de lancer X sans le xorg.conf, et en effet, ça fonctionne, et sans problème de rafraichissement lors des différents scrolling. Cependant, X ne repère pas la résolution adaptée à mon écran, et c'est donc tout moche...
...
Il y a donc bien un problème au niveau du fichier xorg.conf n'est-ce pas? La question est, à quel niveau.... =S
Je pense aussi.
Quel pilote a utilisé xorg quand tu lui as pas donné de xorg.conf ?
Blink59 a écrit : En ce qui concerne le pilote "radeon", je ne l'ai pas testé car il ne concerne pas ma carte graphique, j'ai besoin du pilote radeonhd; ma carte graphique est une radeon hd 3470 ...
Faux, ta carte est aussi supporté par le "radeon" ;)


Edit : ça vient peut être de KMS ... regarde de ce côté là : http://wiki.archlinux.org/index.php/ATI ... _.28KMS.29
Image
Blink59
yeomen
Messages : 249
Inscription : mer. 06 mai 2009, 16:38

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Blink59 »

Bien joué Nydol !
En effet, le pilote radeon fonctionne bien, et je n'ai plus de problème avec le rafraichissement lors des scrolling, c'est génial! En plus, la résolution est respectée comme il faut, etc... Bref, bien joué Nydol, et merci beaucoup ! Il semble donc que le souci vienne d'une mise à jour du driver radeonhd alors....
Cependant, une question me tarode la tête: qu'est-ce que je perds à utiliser le pilote radeon au lieu de radeonhd ? Car, vu qu'il existe deux versions des pilotes, je suppose qu'il existe une différence n'est-ce pas? En sais-tu plus?
Sinon, pour répondre à ta question, même si la réponse n'a plus vraiment lieu d'être, le driver utilisé par X lorsqu'il est lancé sans le xorg.conf est le driver vesa pour ma part; il a essayé de lancer le driver ati, vesa et un troisième dont je ne me rappelle plus le nom, mais le driver vesa étant le seul que X a réussi à lancer, il s'est donc servi de ce dernier.
Nydol
Daikyu
Messages : 79
Inscription : sam. 19 sept. 2009, 18:22

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Nydol »

Pour faire "simple" entre les pilotes radeon et radeonhd : http://linuxfr.org/comments/1117832.html#1117832

Sinon pour ton problème : suite à la mise à jour du noyau, le pilote "radeonhd" devait rentrer en conflit avec KMS ou un truc de ce genre.

Voilà :)
Image
Blink59
yeomen
Messages : 249
Inscription : mer. 06 mai 2009, 16:38

Re: [radeonhd] Pb de rafraishissement lors de scrol' (en cours)

Message par Blink59 »

Ok, merci beaucoup Nydol ! En espérant que les prochaines mises à jour règlent ce conflit, je vais aller m'instruire un peu du lien que tu m'as fourni.
Merci encore pour ces informations Nydol!
cavolo
Hankyu
Messages : 45
Inscription : sam. 05 sept. 2009, 02:12

Re: [radeonhd] Pb de rafraishissement lors de scrol' (résolu)

Message par cavolo »

merci nydol aussi, je chercher une solution dans une autre section du forum alors qu'ici il y avais la réponse en 1ere page

merci

:chinois:
Blink59
yeomen
Messages : 249
Inscription : mer. 06 mai 2009, 16:38

Re: [radeonhd] Pb de rafraishissement lors de scrol' (résolu)

Message par Blink59 »

cavolo, regarde au lien suivant, une solution est proposée par psychoslave. Je vais seulement essayer maintenant.

http://forums.archlinux.fr/topic5382.html
Répondre