Subject: Can'not get any display with Radeon Xpress 200
Package: xorg
Version: 1:7.2-5
Severity: grave

After switching to 7.3+2 X-window became unusable. I have to dual-head
setup with two different graphic cards. One of them is a PCI Matrox
Millenium (2064W) and the other is a Radeon Xpress 200 (onboard). After
the upgrade I could only see a blank screen on Radeon but Matrox had a
normal display. I have also tried a single head display with Radeon but
this didn't help either. I am attaching lspci -nn and xorg.conf
configurations below. I also had to revert back my xorg installation to have 
usable system. So my package information in this bug report does not show the 
exact state of the packages when this error occured. 

------------------------------------------------------------------------
[EMAIL PROTECTED]:~$ lspci -nn
00:00.0 Host bridge [0600]: ATI Technologies Inc Radeon Xpress 200 Host
Bridge [1002:5a33] (rev 01)
00:01.0 PCI bridge [0604]: ATI Technologies Inc RS480 PCI Bridge
[1002:5a3f]
00:19.0 PCI bridge [0604]: ALi Corporation M5249 HTT to PCI Bridge
[10b9:5249]
00:1c.0 USB Controller [0c03]: ALi Corporation USB 1.1 Controller
[10b9:5237] (rev 03)
00:1c.1 USB Controller [0c03]: ALi Corporation USB 1.1 Controller
[10b9:5237] (rev 03)
00:1c.2 USB Controller [0c03]: ALi Corporation USB 1.1 Controller
[10b9:5237] (rev 03)
00:1c.3 USB Controller [0c03]: ALi Corporation USB 2.0 Controller
[10b9:5239] (rev 01)
00:1d.0 Audio device [0403]: ALi Corporation High Definition Audio/AC'97
Host Controller [10b9:5461]
00:1e.0 ISA bridge [0601]: ALi Corporation PCI to LPC Controller
[10b9:1573] (rev 31)
00:1e.1 Bridge [0680]: ALi Corporation M7101 Power Management Controller
[PMU] [10b9:7101]
00:1f.0 IDE interface [0101]: ALi Corporation M5229 IDE [10b9:5229] (rev
c7)
00:1f.1 RAID bus controller [0104]: ALi Corporation ULi 5287 SATA
[10b9:5287] (rev 02)
01:05.0 VGA compatible controller [0300]: ATI Technologies Inc RC410
[Radeon Xpress 200] [1002:5a61]
02:11.0 VGA compatible controller [0300]: Matrox Graphics, Inc. MGA
2064W [Millennium] [102b:0519] (rev 01)
02:15.0 Ethernet controller [0200]: Marvell Technology Group Ltd.
88E8001 Gigabit Ethernet Controller [11ab:4320] (rev 13)

----------------------------------------------------------------------------
/etc/X11/xorg.conf
Section "Files"

Section "Module"
        Load    "bitmap"
        Load    "ddc"
        Load    "dri"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "int10"
        Load    "type1"
        Load    "vbe"
EndSection

Section "ServerFlags"
        Option  "Xinerama"      "true"
EndSection

Section "InputDevice"
        Identifier      "Generic Keyboard"
        Driver          "kbd"
        Option          "CoreKeyboard"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc105"
        Option          "XkbLayout"     "us"
        Option          "XkbVariant"    "us"
#       Option          "XKbOptions"    ""
EndSection

Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ExplorerPS/2"
        Option          "Emulate3Buttons"       "true"
EndSection

Section "Device"
        Identifier      "Ati"
        Option          "RenderAccel"           "true"
        Option          "DRI"                   "true"
        #########Option         "ShadowFB"              "0"
        Driver          "ati"
        BusID           "PCI:1:5:0"
EndSection

Section "Device"
        Identifier      "Matrox"
        Option          "DRI"           "true"
        Driver          "mga"
        BusID           "PCI:2:17:0"
EndSection

Section "Monitor"
        Identifier      "dell"
        Option          "DPMS"
        HorizSync       28-64
        VertRefresh     43-60
EndSection

Section "Monitor"
        Identifier      "acer"
        Option          "DPMS"
        HorizSync       28-64
        VertRefresh     43-60
EndSection

Section "Screen"
        Identifier      "Screen 1"
        Device          "Ati"
        Monitor         "dell"
        DefaultDepth    16
        SubSection "Display"
                Depth           1
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "Screen"
        Identifier      "Screen 2"
        Device          "Matrox"
        Monitor         "acer"
        DefaultDepth    16
        SubSection "Display"
                Depth           1
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen  0       "Screen 1" 0 0
        Screen  1       "Screen 2" RightOf "Screen 1"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
EndSection

Section "DRI"
        Mode    0666
EndSection

----------------------------------------------------------------------------
-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xorg depends on:
ii  gnome-terminal [x-ter 2.18.2-1           The GNOME 2 terminal emulator appl
ii  libgl1-mesa-glx [libg 7.0.1-2            A free implementation of the OpenG
ii  libglu1-mesa          7.0.1-2            The OpenGL utility library (GLU)
ii  type-handling [not+sp 0.2.21             dpkg architecture generation scrip
ii  xbase-clients         1:7.3+2            miscellaneous X clients - metapack
ii  xfonts-100dpi         1:1.0.0-4          100 dpi fonts for X
ii  xfonts-75dpi          1:1.0.0-4          75 dpi fonts for X
ii  xfonts-base           1:1.0.0-5          standard fonts for X
ii  xfonts-scalable       1:1.0.0-6          scalable fonts for X
ii  xkb-data              1.0~cvs.20070916-1 X Keyboard Extension (XKB) configu
ii  xorg-docs             1:1.4-2            Miscellaneous documentation for th
ii  xserver-xorg          1:7.2-5            the X.Org X server
ii  xterm [x-terminal-emu 229-1              X terminal emulator
ii  xutils                1:7.3+2            X Window System utility programs m

Versions of packages xorg recommends:
ii  libgl1-mesa-dri               7.0.1-2    A free implementation of the OpenG

-- no debconf information




      ___________________________________________________________ 
Want ideas for reducing your carbon footprint? Visit Yahoo! For Good  
http://uk.promotions.yahoo.com/forgood/environment.html


Reply via email to