View previous topic :: View next topic |
Author |
Message |
Perfect_P Tux's lil' helper


Joined: 21 Apr 2005 Posts: 103
|
Posted: Thu Jun 08, 2006 2:28 pm Post subject: Resolution Problem bei xorg + oss ati treiber |
|
|
Hallo alle zusammen
Mit dem Xorg update von 7.0 auf 7.1 haben funktionieren die prop. ati-drivers ja nicht mehr. Das, dacht ich mir, ist ein guter zeitpunkt zu den opensource treiber zu wechseln. Die 3D unterstützung von den ati-drivers ist sowieso so schlecht, dass sie nur zum Bildschirmschoner darstellen reicht, für richtige games ist sie zu schlecht (dafür gibt es dann noch windows [sonst hätte dieses OS ja gar keine daseinsberechtigung mehr ]). Also, die ati-drivers unemerged, VIDEO_CARDS flag geändert und den drm installiert. Ne neue xorg.conf erstellt und siehe da ........ es funktioniert nciht .
X startet, KDE funktioniert auch, nur ist die auflösung auf 640x480 gestellt. Kommischerweiße sagt mein OSD des Monitors, dass er mit 1278x1024 läuft. Ansosnten funktioniert alles. ich kann sogar Videos mit Kaffeine schauen (was mit den ati-drivers nach dem halben xorg-update nicht mehr funktioniert hat).
Meine Hardware: nf4 brett mit nem athlon64, ATI X800XL (NIE wieder ATI), 1GB ram, rest ist nichts besonderes. Softwarmäßig alles auf dem aktuellsten ~x86 stand, kernel ist der 2.6.16-r9.
Hier sind ein paar Config- und logfiles:
Code: | # cat /etc/X11/xorg.conf
# **********************************************************************
# Module section -- this section is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
Section "Module"
Load "dbe" # Double buffer extension
# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
# This loads the font modules
# Load "type1"
# Load "speedo"
Load "freetype"
# Load "xtt"
Load "glx"
Load "dri"
EndSection
# **********************************************************************
# Files section. This allows default font and rgb paths to be set
# **********************************************************************
Section "Files"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi"
# FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
# FontPath "/usr/lib/X11/fonts/local/"
# FontPath "/usr/lib/X11/fonts/misc/"
# FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
# FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
# FontPath "/usr/lib/X11/fonts/Speedo/"
# FontPath "/usr/lib/X11/fonts/Type1/"
# FontPath "/usr/lib/X11/fonts/TrueType/"
# FontPath "/usr/lib/X11/fonts/freefont/"
# FontPath "/usr/lib/X11/fonts/75dpi/"
# FontPath "/usr/lib/X11/fonts/100dpi/"
EndSection
# **********************************************************************
# Server flags section.
# **********************************************************************
Section "ServerFlags"
EndSection
# **********************************************************************
# Input devices
# **********************************************************************
# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************
Section "InputDevice"
Identifier "Internet Navigator Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
EndSection
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************
Section "InputDevice"
Identifier "MX500"
Driver "evdev"
Option "Protocol" "event"
Option "Name" "B16_b_02 USB-PS/2 Optical Mouse"
Option "Buttons" "8"
Option "SendCoreEvents" "true"
Option "ZAxisMapping" "7 8"
EndSection
# **********************************************************************
# Monitor section
# **********************************************************************
Section "Monitor"
Identifier "Acer AL1715"
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
Section "Device"
Identifier "ATI Radeon X800XL"
Driver "radeon"
VideoRam 262144
EndSection
# **********************************************************************
# Screen sections
# **********************************************************************
Section "Screen"
Identifier "Screen 1"
Device "ATI Radeon X800XL"
Monitor "Acer AL1715"
DefaultDepth 24
Subsection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1"
InputDevice "MX500" "CorePointer"
InputDevice "Internet Navigator Keyboard" "CoreKeyboard"
EndSection
# **********************************************************************
# DRI sections
# **********************************************************************
Section "DRI"
Mode 0666
EndSection |
Last edited by Perfect_P on Fri Jun 09, 2006 8:19 am; edited 1 time in total |
|
Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1739 Location: Deutschland
|
Posted: Thu Jun 08, 2006 4:25 pm Post subject: |
|
|
Quote: | (II) RADEON(0): Not using default mode "XxY" (hsync out of range) |
Daran siehst du zumindest schon mal warum sich die Auflösung nicht umstellen lässt. Vermutlich macht der Treiber etwas falsch beim Auslesen der Daten aus dem Monitor, oder er kann die Daten aus dem EDID (oder wie das heißt ) gar nicht auslesen.
Versuch mal von Hand Einträge für horizontale und vertikale Wiederholraten in die Monitor-Section einzufügen. Bei mir sieht das so aus:
Code: |
Section "Monitor"
Identifier "MyMonitor"
HorizSync 30.0 - 96.0
VertRefresh 60.0 - 100.0
Option "DPMS"
EndSection
|
Dein Monitor braucht vermutlich andere Werte, vorallem wenn es sich um einen TFT handelt, wirst du wohl meine Werte nicht einfach übernehmen können. Angeblich findet man diese Werte im Handbuch, aber da ich dort nicht fündig wurde und es auf der Herstellerseite auch keine Informationen gab, hab ich es mehr so "auf gut Glück" eingestellt. Moderne Monitore können durch falsche Werte ohnehin nicht mehr beschädigt werden. Du kriegst dann lediglich eine Meldung wie "Sync Out of Range" oder das Bild bleibt schwarz, aber mehr sollte nicht passieren. |
|
Back to top |
|
 |
Perfect_P Tux's lil' helper


Joined: 21 Apr 2005 Posts: 103
|
Posted: Fri Jun 09, 2006 8:17 am Post subject: |
|
|
Morgen
die xorg.0.log war wohl etwas zu lang, da wären ncoh sehr viele andere wichtige Logs gekommen . Also, hier der rest:
lsmod (auschnitt): Code: | radeon 105312 0
drm 63576 1 radeon
agpgart 24944 1 drm |
kernelconfig (ausschnitt): Code: | │ │ <M> /dev/agpgart (AGP Support) │ │
│ │ < > ALI chipset support │ │
│ │ < > ATI chipset support │ │
│ │ < > AMD Irongate, 761, and 762 chipset support │ │
│ │ < > AMD Opteron/Athlon64 on-CPU GART support │ │
│ │ < > Intel 440LX/BX/GX, I8xx and E7x05 chipset support │ │
│ │ < > NVIDIA nForce/nForce2 chipset support │ │
│ │ < > SiS chipset support │ │
│ │ < > Serverworks LE/HE chipset support │ │
│ │ < > VIA chipset support │ │
│ │ < > Transmeta Efficeon support │ │
│ │ < > Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) |
und ein emerge --info: Code: | # emerge --info
Portage 2.1_rc4-r4 (default-linux/x86/2006.0, gcc-4.1.1/vanilla, glibc-2.4-r3, 2.6.16-gentoo-r9 i686)
=================================================================
System uname: 2.6.16-gentoo-r9 i686 AMD Athlon(tm) 64 Processor 3200+
Gentoo Base System version 1.12.1
dev-lang/python: 2.4.3-r1
dev-python/pycrypto: 2.0.1-r5
dev-util/ccache: [Not Present]
dev-util/confcache: [Not Present]
sys-apps/sandbox: 1.2.18.1
sys-devel/autoconf: 2.13, 2.59-r7
sys-devel/automake: 1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2
sys-devel/binutils: 2.16.1-r2
sys-devel/gcc-config: 2.0.0_rc1
sys-devel/libtool: 1.5.22
virtual/os-headers: 2.6.11-r5
ACCEPT_KEYWORDS="x86 ~x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -march=athlon-xp -fomit-frame-pointer -pipe"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/shutdown /usr/share/X11/xkb /usr/share/config"
CONFIG_PROTECT_MASK="/etc/eselect/compiler /etc/gconf /etc/revdep-rebuild /etc/splash /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=athlon-xp -fomit-frame-pointer -pipe"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig distlocks metadata-transfer sandbox sfperms strict"
GENTOO_MIRRORS="http://distfiles.gentoo.org http://distro.ibiblio.org/pub/linux/distributions/gentoo"
LANG="de_DE.UTF-8"
LC_ALL="de_DE.UTF-8"
LINGUAS="de en"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --delete-after --stats --timeout=180 --exclude='/distfiles' --exclude='/local' --exclude='/packages'"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 3dnow 3dnowext X alsa apache2 apm arts artswrappersuid asf avi berkdb bitmap-fonts cdr cli crypt cups dri dvd dvdr eds emboss encode esd ffmpeg foomaticdb fortran gdbm gif gpm gtk2 hal imlib ipv6 isdnlog jpeg kde libg++ libwww lm_sensors mad mikmod mmx mmxext motif mp3 mpeg ncurses nls nptl ogg opengl oss pam pcre pdflib perl png ppds pppd python qt quicktime readline real reflection sdl session spell spl sse sse2 sse3 ssl tcpd truetype truetype-fonts type1-fonts udev unicode userlocales vorbis win32codecs xinerama xml xmms xorg xv xvid zlib elibc_glibc input_devices_evdev input_devices_keyboard kernel_linux linguas_de linguas_en userland_GNU video_cards_vga video_cards_radeon"
Unset: CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LDFLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PORTDIR_OVERLAY | . Die wichtigen installierten X Packete: Code: | [ebuild N ] x11-base/xorg-server-1.1.0 USE="dri ipv6 nptl sdl xorg -3dfx -debug -dmx -kdrive -minimal -xprint" INPUT_DEVICES="evdev keyboard -acecad -aiptek -calcomp -citron -digitaledge -dmc -dynapro -elo2300 -elographics -fpit -hyperpen -jamstudio -joystick -magellan -magictouch -microtouch -mouse -mutouch -palmax -penmount -spaceorb -summa -synaptics -tek4957 -ur98 -vmmouse -void -wacom" VIDEO_CARDS="radeon vga -apm -ark -chips -cirrus -cyrix -dummy -epson -fbdev -fglrx -glint -i128 -i740 -i810 -imstt -mach64 -mga -neomagic -nsc -nv -nvidia -r128 -rendition -s3 -s3virge -savage -siliconmotion -sis -sisusb -tdfx -tga -trident -tseng -v4l -vesa -via -vmware -voodoo" 0 kB
[ebuild N ] x11-drivers/xf86-input-evdev-1.1.2-r1 USE="-debug" 0 kB
[ebuild N ] x11-drivers/xf86-video-vga-4.1.0 USE="-debug" 0 kB
[ebuild N ] x11-drivers/xf86-video-ati-6.6.0 USE="dri -debug" 0 kB
[ebuild N ] x11-libs/libXv-1.0.1 USE="-debug" 0 kB
[ebuild N ] x11-base/xorg-x11-7.1 0 kB
[ebuild R ] x11-drivers/xf86-video-ati-6.6.0 USE="dri -debug" 0 kB | . Und zu guter letzt eine (hoffentlich sinnvoll) gekürtzte version der Xorg.0.log: Code: | (EE) RADEON(0): [dri] RADEONDRIGetVersion failed to open the DRM
(EE) AIGLX: Screen 0 is not DRI capable
(EE) evdev brain: Unable to initialize inotify, using fallback. (errno: 38)
(EE) evdev brain: Unable to initialize inotify, using fallback. (errno: 38)
(EE) evdev brain: Unable to NONBLOCK inotify, using fallback. (errno: 9)
(EE) Error loading keymap /usr/share/X11/xkb/compiled/server-0.xkm
(EE) evdev brain: Unable to initialize inotify, using fallback. (errno: 38)
(EE) evdev brain: Unable to initialize inotify, using fallback. (errno: 38)
(EE) evdev brain: Unable to NONBLOCK inotify, using fallback. (errno: 9)
(WW) RADEON: No matching Device section for instance (BusID PCI:1:0:1) found
(WW) RADEON(0): Invalid Monitor type specified for 2nd port
(WW) RADEON(0): Failed to detect secondary monitor DDC, default HSync and VRefresh used
(WW) RADEON(0): Direct rendering disabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,005e card 1043,815a rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 1043,815a rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 1043,815a rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 1043,815a rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 1043,815a rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0059 card 1043,812a rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,0053 card 1043,815a rev f2 class 01,01,8a hdr 00
(II) PCI: 00:08:0: chip 10de,0055 card 1043,815a rev f3 class 01,01,85 hdr 00
(II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
(II) PCI: 00:0a:0: chip 10de,0057 card 1043,8141 rev a3 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:00:0: chip 1002,554d card 174b,0600 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,556d card 174b,0601 rev 00 class 03,80,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:9:0), (0,5,5), BCTRL: 0x0202 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:11:0), (0,4,4), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:13:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:14:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
(II) Bus 1 non-prefetchable memory range:
(II) Bus 1 prefetchable memory range:
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
(II) Bus 0 non-prefetchable memory range:
(II) Bus 0 prefetchable memory range:
(II) Addressable bus resource ranges are
(II) OS-reported resource ranges:
(II) Active PCI resource ranges:
(II) Inactive PCI resource ranges:
(II) Active PCI resource ranges after removing overlaps:
(II) Inactive PCI resource ranges after removing overlaps:
(II) OS-reported resource ranges after removing overlaps with PCI:
(II) All system resource ranges:
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
(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 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: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
(II) Loading extension XFree86-DRI
(II) LoadModule: "radeon"
(II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
(II) Module radeon: vendor="X.Org Foundation"
(II) LoadModule: "ati"
(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
(II) Module ati: vendor="X.Org Foundation"
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
(II) ATI: ATI driver (version 6.5.7) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets:
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
(II) Primary Device is: PCI 01:00:0
(II) resource ranges after xf86ClaimFixedResources() call:
(II) Loading sub module "radeon"
(II) LoadModule: "radeon"
(II) Reloading /usr/lib/xorg/modules/drivers/radeon_drv.so
(II) resource ranges after probing:
(II) Setting vga for screen 0.
(II) RADEON(0): MMIO registers at 0xd1000000
(II) RADEON(0): PCI bus 1 card 0 func 0
(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules/libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
(II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
(II) RADEON(0): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(II) RADEON(0): PCIE card detected
(II) RADEON(0): Generation 2 PCI interface, using max accessible memory
(II) RADEON(0): Detected total video RAM=262144K, accessible=262144K (PCI BAR=262144K)
(II) RADEON(0): Video RAM override, using 262144 kB instead of 262144 kB
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
(II) RADEON(0): I2C bus "DDC" initialized.
(II) RADEON(0): ATOM BIOS detected
(II) RADEON(0): Port0: DDCType-2, DACType-0, TMDSType--1, ConnectorType-1
(II) RADEON(0): Port1: DDCType-1, DACType-1, TMDSType-0, ConnectorType-2
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 1, Detected Type: 3
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 2, Detected Type: 0
(II) RADEON(0): EDID data from the display on port 1 ----------------------
(II) RADEON(0): Manufacturer: ACR Model: ad32 Serial#: 16843009
(II) RADEON(0): Year: 2004 Week: 46
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 34 vert.: 27
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.640 redY: 0.340 greenX: 0.290 greenY: 0.610
(II) RADEON(0): blueX: 0.140 blueY: 0.070 whiteX: 0.310 whiteY: 0.330
(II) RADEON(0): Supported VESA Video Modes:
(II) RADEON(0): 720x400@70Hz
(II) RADEON(0): 640x480@60Hz
(II) RADEON(0): 640x480@67Hz
(II) RADEON(0): 640x480@72Hz
(II) RADEON(0): 640x480@75Hz
(II) RADEON(0): 800x600@56Hz
(II) RADEON(0): 800x600@60Hz
(II) RADEON(0): 800x600@72Hz
(II) RADEON(0): 800x600@75Hz
(II) RADEON(0): 832x624@75Hz
(II) RADEON(0): 1024x768@60Hz
(II) RADEON(0): 1024x768@70Hz
(II) RADEON(0): 1024x768@75Hz
(II) RADEON(0): 1280x1024@75Hz
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported Future Video Modes:
(II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
(II) RADEON(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
(II) RADEON(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 108.0 MHz Image Size: 338 x 270 mm
(II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
(II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
(II) RADEON(0): Serial No: 44603B9CEC01
(II) RADEON(0): Monitor name: AL1715
(II) RADEON(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 140 MHz
(II) RADEON(0):
(II) RADEON(0): Primary:
(II) RADEON(0): Secondary:
(II) RADEON(0): ref_freq: 2700, min_pll: 20000, max_pll: 50000, xclk: 40000, sclk: 400.000000, mclk: 490.000000
(II) RADEON(0): PLL parameters: rf=2700 rd=2 min=20000 max=50000; xclk=40000
(II) RADEON(0): Validating modes on Primary head ---------
(II) RADEON(0): TMDS PLL from BIOS: 16500 a0112
(II) RADEON(0): Panel infos found from DDC detailed: 1280x1024
(II) RADEON(0): Valid Mode from Detailed timing table: 1280x1024
(II) RADEON(0): Valid Mode from standard timing table: 1280x1024
(II) RADEON(0): Valid Mode from standard timing table: 1280x960
(II) RADEON(0): Valid Mode from standard timing table: 1152x864
(II) RADEON(0): Valid Mode from established timing table: 1280x1024
(II) RADEON(0): Valid Mode from established timing table: 1024x768
(II) RADEON(0): Valid Mode from established timing table: 1024x768
(II) RADEON(0): Valid Mode from established timing table: 1024x768
(II) RADEON(0): Valid Mode from established timing table: 832x624
(II) RADEON(0): Valid Mode from established timing table: 800x600
(II) RADEON(0): Valid Mode from established timing table: 800x600
(II) RADEON(0): Valid Mode from established timing table: 800x600
(II) RADEON(0): Valid Mode from established timing table: 800x600
(II) RADEON(0): Valid Mode from established timing table: 640x480
(II) RADEON(0): Valid Mode from established timing table: 640x480
(II) RADEON(0): Valid Mode from established timing table: 640x480
(II) RADEON(0): Valid Mode from established timing table: 640x480
(II) RADEON(0): Valid Mode from established timing table: 720x400
(II) RADEON(0): Total of 18 mode(s) found.
(II) RADEON(0): Total number of valid DDC mode(s) found: 18
(II) RADEON(0): Validating CRTC2 modes for MergedFB ------------
(II) RADEON(0): CRT2 Monitor: Using hsync range of 28.00-33.00 kHz
(II) RADEON(0): CRT2 Monitor: Using vrefresh range of 43.00-72.00 Hz
(II) RADEON(0): Clock range: 20.00 to 500.00 MHz
(II) RADEON(0): Not using default mode "640x350" (hsync out of range)
(II) RADEON(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x400" (hsync out of range)
(II) RADEON(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "720x400" (hsync out of range)
(II) RADEON(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (hsync out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (hsync out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (hsync out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (hsync out of range)
(II) RADEON(0): Not using default mode "400x300" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1152x864" (hsync out of range)
(II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x960" (hsync out of range)
(II) RADEON(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x960" (hsync out of range)
(II) RADEON(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "832x624" (hsync out of range)
(II) RADEON(0): Not using default mode "416x312" (hsync out of range)
(II) RADEON(0): Not using default mode "1152x768" (hsync out of range)
(II) RADEON(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using mode "1280x1024" (no mode of this name)
(II) RADEON(0): Not using mode "1024x768" (no mode of this name)
(II) RADEON(0): Not using mode "800x600" (no mode of this name)
(II) RADEON(0): Total of 1 CRTC2 modes found for MergedFB------------
(II) RADEON(0): Modes for CRT1: ********************
(II) RADEON(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "1024x768" 108.00 1024 1328 1440 1688 768 1025 1028 1066 interlace +hsync +vsync
(II) RADEON(0): Modeline "800x600" 108.00 800 1328 1440 1688 600 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "640x480" 108.00 640 1328 1440 1688 480 1025 1028 1066 -hsync -vsync
(II) RADEON(0): Modeline "1280x960" 108.00 1280 1328 1440 1688 960 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "1152x864" 108.00 1152 1328 1440 1688 864 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "1024x768" 108.00 1024 1328 1440 1688 768 1025 1028 1066 interlace +hsync +vsync
(II) RADEON(0): Modeline "1024x768" 108.00 1024 1328 1440 1688 768 1025 1028 1066 interlace +hsync +vsync
(II) RADEON(0): Modeline "832x624" 108.00 832 1328 1440 1688 624 1025 1028 1066 -hsync -vsync
(II) RADEON(0): Modeline "800x600" 108.00 800 1328 1440 1688 600 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "800x600" 108.00 800 1328 1440 1688 600 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "800x600" 108.00 800 1328 1440 1688 600 1025 1028 1066 +hsync +vsync
(II) RADEON(0): Modeline "720x400" 108.00 720 1328 1440 1688 400 1025 1028 1066 -hsync +vsync
(II) RADEON(0): Modeline "640x480" 108.00 640 1328 1440 1688 480 1025 1028 1066 -hsync -vsync
(II) RADEON(0): Modeline "640x480" 108.00 640 1328 1440 1688 480 1025 1028 1066 -hsync -vsync
(II) RADEON(0): Modeline "640x480" 108.00 640 1328 1440 1688 480 1025 1028 1066 -hsync -vsync
(II) RADEON(0): Modes for CRT2: ********************
(II) RADEON(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492 525 -hsync -vsync
(II) RADEON(0): Generating MergedFB mode list
(II) RADEON(0): No MetaModes given, linking largest common modes by default
(II) RADEON(0): Merged "640x480" (640x480) and "640x480" (640x480) to 640x480 (Clone)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules/libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
(II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
(II) RADEON(0): BIOS HotKeys Disabled
(II) RADEON(0): Depth moves disabled by default
(II) RADEON(0): Memory manager initialized to (0,0) (640,8191)
(II) RADEON(0): Reserved area from (0,480) to (640,482)
(II) RADEON(0): Largest offscreen area available: 640 x 7709
(II) RADEON(0): Render acceleration unsupported on Radeon 9500/9700 and newer.
(II) RADEON(0): Render acceleration disabled
(II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
(II) RADEON(0): Acceleration enabled
(II) RADEON(0): Using hardware cursor (scanline 482)
(II) RADEON(0): Largest offscreen area available: 640 x 7702
(II) RADEON(0): Running MergedFB in Clone mode, Radeon Pseudo-Xinerama disabled
(II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
(II) Loading sub module "theatre_detect"
(II) LoadModule: "theatre_detect"
(II) Loading /usr/lib/xorg/modules/multimedia/theatre_detect_drv.so
(II) Module theatre_detect: vendor="X.Org Foundation"
(II) RADEON(0): no multimedia table present, disabling Rage Theatre.
(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 SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Loading local sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/lib/xorg/modules/extensions/libGLcore.so
(II) Module GLcore: vendor="X.Org Foundation"
(II) GLX: Initialized MESA-PROXY GL provider for screen 0
(II) evdev brain: Rescanning devices (1).
(II) MX500-usb-0000:00:02.0-4/input0: Found 3 relative axes.
(II) MX500-usb-0000:00:02.0-4/input0: Configuring as pointer.
(II) MX500-usb-0000:00:02.0-4/input0: Found 8 mouse buttons
(II) MX500-usb-0000:00:02.0-4/input0: Configured 10 mouse buttons
(II) XINPUT: Adding extended input device "Internet Navigator Keyboard" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "MX500-usb-0000:00:02.0-4/input0" (type: MOUSE)
(II) XINPUT: Adding extended input device "evdev brain" (type: evdev brain)
(II) MX500-usb-0000:00:02.0-4/input0: Init
(II) evdev brain: Rescanning devices (2).
(II) MX500-usb-0000:00:02.0-4/input0: On
(II) MX500-usb-0000:00:02.0-4/input0: Off
(II) Open ACPI successful (/var/run/acpid.socket)
(II) RADEON(0): BIOS HotKeys Disabled
(II) MX500-usb-0000:00:02.0-4/input0: On
(II) evdev brain: Rescanning devices (3). | .
@Vortex375
hat leider ncihts gebracht . Das ganze sieht jetzt so aus: Code: | Section "Monitor"
Identifier "Acer AL1715"
HorizSync 31.5 - 64.3
VertRefresh 50-70
Option "DPMS"
EndSection
Section "Device"
Identifier "ATI Radeon X800XL"
Driver "radeon"
Option "MonitorLayout" "TMDS"
VideoRam 262144
EndSection |
mfg
eine frag noch am schluss: für was brauch cih das agpgart modul, wenn ich gar keine agp karte hab, sondern ne PCIe?
EDIT: Mir ist ncoh was komisches aufgefallen: Seit dem updaten auf die oss radeon treiber, kommt ne komishce meldung, wenn ich ein Modul laden will (egal welches): Code: | # modprobe forcedeth
WARNING: /etc/modprobe.conf line 109: ignoring bad line starting with 'keep'
WARNING: /etc/modprobe.conf line 110: ignoring bad line starting with 'path[x11-drm]=/lib/modules/2.6.16-gentoo-r9/x11-drm |
|
|
Back to top |
|
 |
kurt Guru


Joined: 25 Aug 2003 Posts: 403 Location: Arni (AG); CH
|
Posted: Fri Jun 09, 2006 10:23 pm Post subject: |
|
|
hallo,
bei mir tut der opensource treiber radeon (r300) aus dem package x11-drm
ausschnitt aus der make.conf Code: | VIDEO_CARDS="ati radeon"
INPUT_DEVICES="keyboard mouse" |
ausschnitt aus der package.keywords Code: | =virtual/x11-7.0* ~x86
=virtual/xft-7.0* ~x86
=virtual/opengl-7.0* ~x86
=virtual/glu-7.0* ~x86
=x11-drivers/xf86-video-ati-6.6* ~x86
=x11-base/x11-drm-20060608* ~x86
=media-libs/mesa-6.5* ~x86
=x11-base/xorg-server-1.1* ~x86
=x11-base/xorg-x11-7.1* ~x86
... |
gruss
kurt |
|
Back to top |
|
 |
Perfect_P Tux's lil' helper


Joined: 21 Apr 2005 Posts: 103
|
Posted: Sat Jun 10, 2006 10:32 am Post subject: |
|
|
Hi Kurt, die pakete die bei mir isntalliert waren, waren schon die aktuellesten. Hab mal den mouse statt dem evdev treiber ausprobiert, hat aber ncihts gebracht . kann es sein, dass es Probleme gibt, weil cih nen tft am DVI port hängen hab. Also dass er treiber denk, dass der 2. ausgang ein TV ausgang ist dun deswegen die auflösung so scheiße einstellt?
mfg
EDIT: Anscheinend sit genau dass das Problem. Ich hab den TFT mal mit dem normalen vga anschluss an die Karte angescjlossen udn siehe da, dass bild wird normal angezeigt. Wie kann ich die Xorg.conf so einstellen, dass der DVI ausgang mein primärer sit und der TV-out der TV-out eben? |
|
Back to top |
|
 |
Vortex375 Veteran


Joined: 03 Mar 2005 Posts: 1739 Location: Deutschland
|
Posted: Sat Jun 10, 2006 12:13 pm Post subject: |
|
|
Quote: | Also dass er treiber denk, dass der 2. ausgang ein TV ausgang ist dun deswegen die auflösung so scheiße einstellt? |
Glaub ich nicht. Ich glaube eher, dass der Treiber die Monitor-Spezifikationen nicht richtig erkennt, wenn der Monitor am DVI-Ausgang hängt. Wenn der Treiber denken würde, bei deinem DVI-Ausgang handele es sich um einen TV-Out, dann hättest du vermutlich gar kein Bild, denn dann würde er ein TV-Signal zum DVI-Ausgang senden und das funktioniert überhaupt nicht.
Du hast ja ein Bild auf dem Monitor, was bedeutet der Treiber sendet ein VGA-Signal. Würde er ein TV-Signal (PAL oder NTSC oder wie die alle heißen) senden, dann könnte dein Monitor damit gar nichts anfangen. Vermutlich geht das auch gar nicht - ein TV-Signal über den DVI-Port ausgeben.
Der Treiber sendet also ein VGA-Signal mit niedriger Auflösung. Ich denke du kannst das Problem beheben (/umgehen) indem du, wie ich oben geschrieben habe, die Monitordaten von Hand in die xorg.conf einträgst. |
|
Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|