Radeon 9200SE und DRI

Sonic_Traveler

Well-Known Member
Hallo Leute

Ich hab das Glück. dass meine Grafikkarte (Radeon 9200SE) gerade noch von DRI unterstützt wird.
Würde mal gerne wissen, wie ich DRI unter FreeBSD aktivieren kann ?

Auf der DRI Seite steht irgendwo, dass das DRM (Direct Rendering Module) schon default vorhanden sein sollte. dmesg | grep drm gibt aber nix an. Ich benutze den generic Kernel, welcher nach der 4.10 Installation auf der Platte ist.

Gruss Sonic
 
DRI aktivieren auf ATI-Karten

1.) /etc/X11/XF86Config
----------------------------------------------------------
Kontrollieren ob folgende Zeilen vorhanden sind:

Section "Module"
Load "dri"
Load "glx"
EndSection

Section "DRI"
Mode 0666
EndSection

2.) Kernel neukompilieren
-----------------------------------------------------------------
Generic-Kernel folgende Zeile hinzufügen:

device radeondrm # DRM fuer Radeon

3.) DRI testen
-----------------------------------------------------------------
Nicht als root anmelden!

glxinfo |grep rendering
 
Hallo Andreas

Hmmm ... also ich hab den device Eintrag im Kernel config file.
"make depend", "make" , "make istall" funktionierten. Aber ich finde kein drm Eintrag in der dmesg. Hab ich da was vergessen?
Wie sieht dein XF86config file aus .. ?

Greetz
 
hast du auch den richtigen treiber "radeon" eingetragen? achtung bei X 4.3 ist chipid eintrag notwendig.

XF86Config

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

Section "Files"
FontPath "/usr/local/share/fonts"
FontPath "/usr/X11R6/lib/X11/fonts"
FontPath "/usr/local/share/fonts/override"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath "/usr/X11R6/lib/X11/fonts/latin2"
FontPath "/usr/X11R6/lib/X11/fonts/local"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/X11R6/lib/X11/fonts/PEX"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo"
FontPath "/usr/X11R6/lib/X11/fonts/TTF"
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
EndSection

Section "Module"
Load "freetype"
# Load "xtt"
Load "extmod"
Load "glx"
Load "dri"
Load "dbe"
Load "record"
Load "xtrap"
Load "type1"
Load "speedo"
Load "GLcore"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "Auto"
Option "Device" "/dev/psm0"
Option "ButtonNumber" "5"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
Option "XkbRules" "xfree86"
EndSection

Section "Monitor"
Identifier "Monitor0"
HorizSync 30 - 85
VertRefresh 50 - 160
EndSection

Section "Device"
Identifier "Card0"
Driver "radeon"
#ChipSet "ati"
Card "ati"
ChipID 0x514D
BusID "1:0:0"
Option "AGPMode" "4"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "DRI"
Group "wheel"
Mode 0660
EndSection

$ kldstat
Id Refs Address Size Name
1 16 0xc0400000 33af3c kernel
2 1 0xc073b000 3540 splash_bmp.ko
3 1 0xc073f000 54e0 vesa.ko
4 2 0xc0805000 1f9cc snd_pcm.ko
5 1 0xc0825000 5bc8 snd_ich.ko
6 1 0xc082b000 10640 bktr.ko
7 2 0xc083c000 205c bktr_mem.ko
8 1 0xc083f000 52078 acpi.ko
9 1 0xc6d04000 18000 linux.ko
10 1 0xc7122000 19000 radeon.ko
 
Zuletzt bearbeitet von einem Moderator:
Zurück
Oben