You are not logged in.

#1 2008-06-22 19:30:17

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Xorg starts with bad resolution

Although I have only 1400x1050 in my xorg.conf, X11 starts with 1200x800 or something like that (i do not have wide monitor). After login it switches to 1400x1050 (or to other one according to E17 settings). I though that entrance may cause that, but slim now does the same.

My xorg.conf:

 [nik@northwood ~]$ cat /etc/X11/xorg.conf
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    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  "glx"
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "xtrap"
    Load  "record"
    Load  "GLcore"
    Load  "freetype"
    Load  "drm"  #pridano atiwiki
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option      "XkbLayout"    "cz,us"
    Option      "XkbVariant"   "nodeadkeys"
EndSection

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

Section "Monitor"
    #DisplaySize      300   230    # mm
    Identifier   "Monitor0"
    VendorName   "LGP"
    ModelName    "9f04"
    Option        "DPMS"
#    HorizSync    30.0 - 130.0
#    VertRefresh    50.0 - 100.0
    Option "PreferredMode" "1400x1050"
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     "SWcursor"               # [<bool>]
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "Dac8Bit"                # [<bool>]
        #Option     "BusType"                # [<str>]
        #Option     "CPPIOMode"              # [<bool>]
        #Option     "CPusecTimeout"          # <i>
        #Option     "AGPMode"                # <i>
        #Option     "AGPFastWrite"           # [<bool>]
        #Option     "AGPSize"                # <i>
        #Option     "GARTSize"               # <i>
        #Option     "RingSize"               # <i>
        #Option     "BufferSize"             # <i>
        #Option     "EnableDepthMoves"       # [<bool>]
        #Option     "EnablePageFlip"         # [<bool>]
        #Option     "NoBackBuffer"           # [<bool>]
        #Option     "DMAForXv"               # [<bool>]
        #Option     "FBTexPercent"           # <i>
        #Option     "DepthBits"              # <i>
        #Option     "PCIAPERSize"            # <i>
        #Option     "AccelDFS"               # [<bool>]
        #Option     "DDCMode"                # [<bool>]
        #Option     "IgnoreEDID"             # [<bool>]
        #Option     "DisplayPriority"        # [<str>]
        #Option     "PanelSize"              # [<str>]
        #Option     "ForceMinDotClock"       # <freq>
        #Option     "ColorTiling"            # [<bool>]
        #Option     "VideoKey"               # <i>
        #Option     "RageTheatreCrystal"     # <i>
        #Option     "RageTheatreTunerPort"     # <i>
        #Option     "RageTheatreCompositePort"     # <i>
        #Option     "RageTheatreSVideoPort"     # <i>
        #Option     "TunerType"              # <i>
        #Option     "RageTheatreMicrocPath"     # <str>
        #Option     "RageTheatreMicrocType"     # <str>
        #Option     "ScalerWidth"            # <i>
        #Option     "RenderAccel"            # [<bool>]
        #Option     "SubPixelOrder"          # [<str>]
        #Option     "ShowCache"              # [<bool>]
        #Option     "DynamicClocks"          # [<bool>]
        #Option     "VGAAccess"              # [<bool>]
        #Option     "ReverseDDC"             # [<bool>]
        #Option     "LVDSProbePLL"           # [<bool>]
        #Option     "AccelMethod"            # <str>
        #Option     "DRI"                    # [<bool>]
        #Option     "ConnectorTable"         # <str>
        #Option     "DefaultConnectorTable"     # [<bool>]
        #Option     "DefaultTMDSPLL"         # [<bool>]
        #Option     "TVDACLoadDetect"        # [<bool>]
        #Option     "ForceTVOut"             # [<bool>]
        #Option     "TVStandard"             # <str>
    Identifier  "Card0"
    Driver      "radeon" # puvodne "ati" zmeneno atiwiki
    VendorName  "ATI Technologies Inc"
    BoardName   "Radeon Mobility M7 LW [Radeon Mobility 7500]"
    BusID       "PCI:1:0:0"
    Option      "XAANoOffscreenPixmaps"       "true"      # pridano atiwiki
    Option      "AGPMode"                     "4"
    Option      "ColorTiling"                 "on"
    #Option      "AccelMethod"                 "EXA"       # jen pro novejsi karty? :(
    Option      "EnaglePageFlip"              "on"        # muze byt v konfliktu s AccelMethod
    #Option      "AGPFastWrite"                "yes"       # muze byt problematicke :/
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth    24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes     "1400x1050"
    EndSubSection
EndSection

 [nik@northwood ~]$

Originally the lines HorizSync and VertRefresh were uncomented, i read at gentoo xorg wiki, that they are not needed, but made no difference.
Any suggestions?


"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#2 2008-06-23 02:15:26

at1z0r
Member
Registered: 2008-03-19
Posts: 4

Re: Xorg starts with bad resolution

Hello,

My problem is similar but I can't run my monitor at its nominal resolution - 1280x1204. When my X server starts - at first everything is fine but then monitor just blinks a few times and changes its resolution to some strange value. I've X550 card and I'am using catalyst-8.6-1.

Here is my xorg.conf

at1z0r @ suczka ~ $  cat /etc/X11/xorg.conf
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "aticonfig-Screen[0]-0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    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  "xtrap"
    Load  "record"
    Load  "dri"
    Load  "extmod"
    Load  "freetype"
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 "Monitor"
    Identifier   "aticonfig-Monitor[0]-0"
    Option        "VendorName" "ATI Proprietary Driver"
    Option        "ModelName" "Generic Autodetecting Monitor"
    Option        "DPMS" "true"
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      "vesa"
    VendorName  "ATI Technologies Inc"
    BoardName   "RV370 [Sapphire X550 Silent]"
    BusID       "PCI:1:0:0"
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]-0"
    Driver      "fglrx"
    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

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
        Modes    "1280x1024"
    EndSubSection
EndSection

In addition - everything works just fine, even glxinfo shows direct rendering positively. Ahh, and it's worth mentioning that I've already used aticonfig --resolution=0,1280x1024 - and it simply doesn't work.

I don't think it is a big problem for me but ATi Catalyst Control Center detects my LCD as CRT display and there is no possible way to change refresh rate above 60Hz. Is there any way to fix that?

Thanks for time, and your suggestions wink

Regards

Last edited by at1z0r (2008-06-23 02:18:15)

Offline

#3 2008-06-23 08:19:22

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Re: Xorg starts with bad resolution

I guess that your problem is a bit different as my X11 can run desired resolution, just refuses to start with it. :-( I also use opensource drivers, as there are no proprietary for mobility radeon 7500.


"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#4 2008-06-23 13:53:01

at1z0r
Member
Registered: 2008-03-19
Posts: 4

Re: Xorg starts with bad resolution

Nicky726 wrote:

I guess that your problem is a bit different as my X11 can run desired resolution, just refuses to start with it. :-( I also use opensource drivers, as there are no proprietary for mobility radeon 7500.

Why different ? My X11 can also run with 1280x1024 but just can't make that happen after startxfce4 wink Each time i MUST change that in Catalyst Control Center :>

Offline

#5 2008-06-24 17:24:44

at1z0r
Member
Registered: 2008-03-19
Posts: 4

Re: Xorg starts with bad resolution

Well I thnik that no-one can help us tongue

Offline

#6 2008-06-24 18:47:24

brebs
Member
Registered: 2007-04-03
Posts: 3,742

Re: Xorg starts with bad resolution

Here's a debugging hint.

Offline

#7 2008-06-24 20:07:13

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Re: Xorg starts with bad resolution

ups... sorry for that...

Xorg.0.log:

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.25-ARCH i686 
Current Operating System: Linux northwood 2.6.25-ARCH #1 SMP PREEMPT Sat Jun 14 18:07:19 CEST 2008 i686
Build Date: 21 June 2008  05:47:59PM
 
    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: Tue Jun 24 22:01:55 2008
(==) 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
(==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
(**) 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
(**) RgbPath set to "/usr/share/X11/rgb"
(**) ModulePath set to "/usr/lib/xorg/modules"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e0a60
(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 8086,1a30 card 0e11,004a rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev 42 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,248c card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,248a card 0e11,004a rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:5: chip 8086,2485 card 0e11,004a rev 02 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c57 card 0e11,004a rev 00 class 03,00,00 hdr 00
(II) PCI: 02:04:0: chip 14f1,2f00 card 0e11,8d89 rev 01 class 07,80,00 hdr 00
(II) PCI: 02:06:0: chip 104c,ac50 card 2400,0000 rev 02 class 06,07,00 hdr 02
(II) PCI: 02:08:0: chip 8086,1031 card 0e11,0093 rev 42 class 02,00,00 hdr 00
(II) PCI: 02:0e:0: chip 1033,0035 card 0e11,004a rev 41 class 0c,03,10 hdr 80
(II) PCI: 02:0e:1: chip 1033,0035 card 0e11,004a rev 41 class 0c,03,10 hdr 00
(II) PCI: 02:0e:2: chip 1033,00e0 card 0e11,004a rev 02 class 0c,03,20 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(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 (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: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
    [0] -1    0    0x00003000 - 0x000030ff (0x100) IX[b]
    [1] -1    0    0x00003400 - 0x000034ff (0x100) IX[b]
    [2] -1    0    0x00003800 - 0x000038ff (0x100) IX[b]
    [3] -1    0    0x00003c00 - 0x00003cff (0x100) IX[b]
(II) Bus 1 non-prefetchable memory range:
    [0] -1    0    0x40300000 - 0x403fffff (0x100000) MX[b]
(II) Bus 1 prefetchable memory range:
    [0] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,3), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
    [0] -1    0    0x00002000 - 0x000020ff (0x100) IX[b]
    [1] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [2] -1    0    0x00002800 - 0x000028ff (0x100) IX[b]
    [3] -1    0    0x00002c00 - 0x00002cff (0x100) IX[b]
(II) Bus 2 non-prefetchable memory range:
    [0] -1    0    0x40000000 - 0x402fffff (0x300000) MX[b]
(II) Bus 2 prefetchable memory range:
    [0] -1    0    0x20000000 - 0x23ffffff (0x4000000) MX[b]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 3: bridge is at (2:6:0), (2,3,6), BCTRL: 0x03c4 (VGA_EN is cleared)
(II) Bus 3 I/O range:
    [0] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [1] -1    0    0x00002800 - 0x000028ff (0x100) IX[b]
(II) Bus 3 prefetchable memory range:
    [0] -1    0    0x20000000 - 0x23ffffff (0x4000000) MX[b]
(--) PCI:*(1:0:0) ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500] rev 0, Mem @ 0x48000000/27, 0x40300000/16, I/O @ 0x3000/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 0x60000000 from 0x6fffffff to 0x5fffffff
(II) Active PCI resource ranges:
    [0] -1    0    0x40280000 - 0x402800ff (0x100) MX[b]
    [1] -1    0    0x40200000 - 0x40200fff (0x1000) MX[b]
    [2] -1    0    0x40180000 - 0x40180fff (0x1000) MX[b]
    [3] -1    0    0x40100000 - 0x40100fff (0x1000) MX[b]
    [4] -1    0    0x40000000 - 0x4000ffff (0x10000) MX[b]
    [5] -1    0    0x24000000 - 0x240003ff (0x400) MX[b]
    [6] -1    0    0x60000000 - 0x5fffffff (0x0) MX[b]O
    [7] -1    0    0x40300000 - 0x4030ffff (0x10000) MX[b](B)
    [8] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b](B)
    [9] -1    0    0x00002000 - 0x0000203f (0x40) IX[b]
    [10] -1    0    0x00002040 - 0x00002047 (0x8) IX[b]
    [11] -1    0    0x00004400 - 0x0000443f (0x40) IX[b]
    [12] -1    0    0x00004000 - 0x000040ff (0x100) IX[b]
    [13] -1    0    0x00004440 - 0x0000444f (0x10) IX[b]
    [14] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [15] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [16] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [17] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [18] -1    0    0x00003000 - 0x000030ff (0x100) IX[b](B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1    0    0x40280000 - 0x402800ff (0x100) MX[b]
    [1] -1    0    0x40200000 - 0x40200fff (0x1000) MX[b]
    [2] -1    0    0x40180000 - 0x40180fff (0x1000) MX[b]
    [3] -1    0    0x40100000 - 0x40100fff (0x1000) MX[b]
    [4] -1    0    0x40000000 - 0x4000ffff (0x10000) MX[b]
    [5] -1    0    0x24000000 - 0x240003ff (0x400) MX[b]
    [6] -1    0    0x60000000 - 0x5fffffff (0x0) MX[b]O
    [7] -1    0    0x40300000 - 0x4030ffff (0x10000) MX[b](B)
    [8] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b](B)
    [9] -1    0    0x00002000 - 0x0000203f (0x40) IX[b]
    [10] -1    0    0x00002040 - 0x00002047 (0x8) IX[b]
    [11] -1    0    0x00004400 - 0x0000443f (0x40) IX[b]
    [12] -1    0    0x00004000 - 0x000040ff (0x100) IX[b]
    [13] -1    0    0x00004440 - 0x0000444f (0x10) IX[b]
    [14] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [15] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [16] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [17] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [18] -1    0    0x00003000 - 0x000030ff (0x100) IX[b](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1    0    0x00100000 - 0x23ffffff (0x23f00000) 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 - 0x23ffffff (0x23f00000) 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    0x40280000 - 0x402800ff (0x100) MX[b]
    [5] -1    0    0x40200000 - 0x40200fff (0x1000) MX[b]
    [6] -1    0    0x40180000 - 0x40180fff (0x1000) MX[b]
    [7] -1    0    0x40100000 - 0x40100fff (0x1000) MX[b]
    [8] -1    0    0x40000000 - 0x4000ffff (0x10000) MX[b]
    [9] -1    0    0x24000000 - 0x240003ff (0x400) MX[b]
    [10] -1    0    0x60000000 - 0x5fffffff (0x0) MX[b]O
    [11] -1    0    0x40300000 - 0x4030ffff (0x10000) MX[b](B)
    [12] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b](B)
    [13] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1    0    0x00002000 - 0x0000203f (0x40) IX[b]
    [16] -1    0    0x00002040 - 0x00002047 (0x8) IX[b]
    [17] -1    0    0x00004400 - 0x0000443f (0x40) IX[b]
    [18] -1    0    0x00004000 - 0x000040ff (0x100) IX[b]
    [19] -1    0    0x00004440 - 0x0000444f (0x10) IX[b]
    [20] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [21] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [22] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [23] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [24] -1    0    0x00003000 - 0x000030ff (0x100) IX[b](B)
(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) "freetype" 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) 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: "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: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(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.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: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: 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 DEC-XTRAP
(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: "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: "radeon"
(II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
(II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.4.2, module version = 4.3.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 2.0
(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, module version = 1.2.3
    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.2, module version = 1.3.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI Radeon X550XTX (RV370) 5657 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI  Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600, ATI RV610,
    ATI Radeon HD 2400 XT, ATI Radeon HD 2400 Pro,
    ATI ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, ATI RV610,
    ATI ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI ATI RADEON E2400, ATI RV610,
    ATI RV670, ATI Radeon HD3870, ATI Radeon HD3850, ATI RV670,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI ATI Radeon HD 2600 XT AGP, ATI ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini ATI Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI ATI Radeon HD 2600 LE
(II) Primary Device is: PCI 01:00:0
(--) Chipset ATI Radeon Mobility M7 LW (AGP) found
(II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1    0    0x00100000 - 0x23ffffff (0x23f00000) 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    0x40280000 - 0x402800ff (0x100) MX[b]
    [5] -1    0    0x40200000 - 0x40200fff (0x1000) MX[b]
    [6] -1    0    0x40180000 - 0x40180fff (0x1000) MX[b]
    [7] -1    0    0x40100000 - 0x40100fff (0x1000) MX[b]
    [8] -1    0    0x40000000 - 0x4000ffff (0x10000) MX[b]
    [9] -1    0    0x24000000 - 0x240003ff (0x400) MX[b]
    [10] -1    0    0x60000000 - 0x5fffffff (0x0) MX[b]O
    [11] -1    0    0x40300000 - 0x4030ffff (0x10000) MX[b](B)
    [12] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b](B)
    [13] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1    0    0x00002000 - 0x0000203f (0x40) IX[b]
    [16] -1    0    0x00002040 - 0x00002047 (0x8) IX[b]
    [17] -1    0    0x00004400 - 0x0000443f (0x40) IX[b]
    [18] -1    0    0x00004000 - 0x000040ff (0x100) IX[b]
    [19] -1    0    0x00004440 - 0x0000444f (0x10) IX[b]
    [20] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [21] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [22] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [23] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [24] -1    0    0x00003000 - 0x000030ff (0x100) IX[b](B)
(II) resource ranges after probing:
    [0] -1    0    0x00100000 - 0x23ffffff (0x23f00000) 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    0x40280000 - 0x402800ff (0x100) MX[b]
    [5] -1    0    0x40200000 - 0x40200fff (0x1000) MX[b]
    [6] -1    0    0x40180000 - 0x40180fff (0x1000) MX[b]
    [7] -1    0    0x40100000 - 0x40100fff (0x1000) MX[b]
    [8] -1    0    0x40000000 - 0x4000ffff (0x10000) MX[b]
    [9] -1    0    0x24000000 - 0x240003ff (0x400) MX[b]
    [10] -1    0    0x60000000 - 0x5fffffff (0x0) MX[b]O
    [11] -1    0    0x40300000 - 0x4030ffff (0x10000) MX[b](B)
    [12] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b](B)
    [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    0x00002000 - 0x0000203f (0x40) IX[b]
    [19] -1    0    0x00002040 - 0x00002047 (0x8) IX[b]
    [20] -1    0    0x00004400 - 0x0000443f (0x40) IX[b]
    [21] -1    0    0x00004000 - 0x000040ff (0x100) IX[b]
    [22] -1    0    0x00004440 - 0x0000444f (0x10) IX[b]
    [23] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [24] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [25] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [26] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [27] -1    0    0x00003000 - 0x000030ff (0x100) IX[b](B)
    [28] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b]
    [29] 0    0    0x000003c0 - 0x000003df (0x20) IS[b]
(II) Setting vga for screen 0.
(II) RADEON(0): MMIO registers at 0x0000000040300000: size 64KB
(II) RADEON(0): PCI bus 1 card 0 func 0
(**) RADEON(0): Depth 24, (--) framebuffer bpp 32
(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) RADEON(0): Default visual is TrueColor
(**) RADEON(0): Option "AGPMode" "4"
(**) RADEON(0): Option "ColorTiling" "on"
(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) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(==) RADEON(0): RGB weight 888
(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"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) RADEON(0): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(--) RADEON(0): Chipset: "ATI Radeon Mobility M7 LW (AGP)" (ChipID = 0x4c57)
(--) RADEON(0): Linear framebuffer at 0x0000000048000000
(II) RADEON(0): AGP card detected
(II) RADEON(0): Legacy BIOS detected
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.28.0
(==) RADEON(0): Page Flipping disabled
(II) RADEON(0): Will try to use DMA for Xv image transfers
(II) RADEON(0): Detected total video RAM=32768K, accessible=65536K (PCI BAR=131072K)
(--) RADEON(0): Mapped VideoRAM: 32768 kByte (128 bit DDR SDRAM)
(II) RADEON(0): Color tiling enabled by default
(II) RADEON(0): Max desktop size set to 2048x1200
(II) RADEON(0): For a larger or smaller max desktop size, add a Virtual line to your xorg.conf
(II) RADEON(0): If you are having trouble with 3D, reduce the desktop size by adjusting the Virtual line to your xorg.conf
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"(II) Module "ddc" already built-in
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"(II) Module "i2c" already built-in
(II) RADEON(0): ref_freq: 2700, min_out_pll: 12000, max_out_pll: 35000, min_in_pll: 40, max_in_pll: 3000, xclk: 17575, sclk: 175.750000, mclk: 260.750000
(II) RADEON(0): PLL parameters: rf=2700 rd=12 min=12000 max=35000; xclk=17575
(WW) RADEON(0): LCD DDC Info Table found!
(II) RADEON(0): Bios Connector table: 
(II) RADEON(0): Port0: DDCType-0x60, DACType-1, TMDSType-1, ConnectorType-1
(II) RADEON(0): Port1: DDCType-0x64, DACType-2, TMDSType-1, ConnectorType-3
(II) RADEON(0): Port4: DDCType-0x6c, DACType-0, TMDSType-0, ConnectorType-7
(II) RADEON(0): Port5: DDCType-0x0, DACType-2, TMDSType-0, ConnectorType-5
(II) RADEON(0): Output VGA-0 using monitor section Monitor0
(**) RADEON(0): Option "PreferredMode" "1400x1050"
(II) RADEON(0): I2C bus "VGA-0" initialized.
(II) RADEON(0): Output DVI-0 has no monitor section
(II) RADEON(0): DFP table revision: 2
(II) RADEON(0): I2C bus "DVI-0" initialized.
(II) RADEON(0): Output LVDS has no monitor section
(II) RADEON(0): Panel ID string: LGP                     
(II) RADEON(0): Panel Size from BIOS: 1400x1050
(II) RADEON(0): BIOS provided dividers will be used.
(WW) RADEON(0): LVDS Info:
XRes: 1400, YRes: 1050, DotClock: 108000
HBlank: 320, HOverPlus: 8, HSyncWidth: 136
VBlank: 70, VOverPlus: 3, VSyncWidth: 3
(II) RADEON(0): I2C bus "LVDS" initialized.
(II) RADEON(0): Output S-video has no monitor section
(II) RADEON(0): Default TV standard: NTSC
(II) RADEON(0): TV standards supported by chip: NTSC PAL PAL-M 
(II) RADEON(0): Port0:
 Monitor   -- AUTO
 Connector -- VGA
 DAC Type  -- Primary
 TMDS Type -- None
 DDC Type  -- 0x60
(II) RADEON(0): Port1:
 Monitor   -- AUTO
 Connector -- DVI-D
 DAC Type  -- None
 TMDS Type -- Internal
 DDC Type  -- 0x64
(II) RADEON(0): Port2:
 Monitor   -- AUTO
 Connector -- LVDS
 DAC Type  -- None
 TMDS Type -- None
 DDC Type  -- 0x6c
(II) RADEON(0): Port3:
 Monitor   -- AUTO
 Connector -- STV
 DAC Type  -- TVDAC/ExtDAC
 TMDS Type -- None
 DDC Type  -- 0x0
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
finished output detect: 0
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DVI-0:ddc2" removed.
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DVI-0:ddc2" removed.
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DVI-0:ddc2" removed.
(II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
(II) RADEON(0): Detected non-DDC Monitor Type: 0
finished output detect: 1
(II) RADEON(0): I2C device "LVDS:ddc2" registered at address 0xA0.
(II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
(II) RADEON(0): EDID data from the display on output: LVDS ----------------------
(II) RADEON(0): Manufacturer: LGP  Model: 9f04  Serial#: 0
(II) RADEON(0): Year: 2002  Week: 0
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 30  vert.: 23
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
(II) RADEON(0): First detailed timing not preferred mode in violation of standard!(II) RADEON(0): redX: 0.572 redY: 0.337   greenX: 0.315 greenY: 0.538
(II) RADEON(0): blueX: 0.157 blueY: 0.144   whiteX: 0.327 whiteY: 0.344
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 108.0 MHz   Image Size:  305 x 228 mm
(II) RADEON(0): h_active: 1400  h_sync: 1416  h_sync_end 1552 h_blank_end 1720 h_border: 0
(II) RADEON(0): v_active: 1050  v_sync: 1053  v_sync_end 1056 v_blanking: 1120 v_border: 0
(II) RADEON(0): EDID (in hex):
(II) RADEON(0):     00ffffffffffff0030f0049f00000000
(II) RADEON(0):     000c0103801e1778289f7c9256508928
(II) RADEON(0):     24535800000001010101010101010101
(II) RADEON(0):     010101010101302a7840511a46401088
(II) RADEON(0):     330031e4100000180000000000000000
(II) RADEON(0):     00000000000000000000000000000000
(II) RADEON(0):     00000000000000000000000000000000
(II) RADEON(0):     000000000000000000000000000000f0
finished output detect: 2
finished output detect: 3
finished all detect
before xf86InitialConfiguration
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "VGA-0:ddc2" removed.
(II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DVI-0:ddc2" removed.
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DVI-0:ddc2" removed.
(II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DVI-0:ddc2" removed.
(II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
(II) RADEON(0): Detected non-DDC Monitor Type: 0
(II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
(II) RADEON(0): EDID data from the display on output: LVDS ----------------------
(II) RADEON(0): Manufacturer: LGP  Model: 9f04  Serial#: 0
(II) RADEON(0): Year: 2002  Week: 0
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 30  vert.: 23
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
(II) RADEON(0): First detailed timing not preferred mode in violation of standard!(II) RADEON(0): redX: 0.572 redY: 0.337   greenX: 0.315 greenY: 0.538
(II) RADEON(0): blueX: 0.157 blueY: 0.144   whiteX: 0.327 whiteY: 0.344
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 108.0 MHz   Image Size:  305 x 228 mm
(II) RADEON(0): h_active: 1400  h_sync: 1416  h_sync_end 1552 h_blank_end 1720 h_border: 0
(II) RADEON(0): v_active: 1050  v_sync: 1053  v_sync_end 1056 v_blanking: 1120 v_border: 0
(II) RADEON(0): EDID (in hex):
(II) RADEON(0):     00ffffffffffff0030f0049f00000000
(II) RADEON(0):     000c0103801e1778289f7c9256508928
(II) RADEON(0):     24535800000001010101010101010101
(II) RADEON(0):     010101010101302a7840511a46401088
(II) RADEON(0):     330031e4100000180000000000000000
(II) RADEON(0):     00000000000000000000000000000000
(II) RADEON(0):     00000000000000000000000000000000
(II) RADEON(0):     000000000000000000000000000000f0
in RADEONProbeOutputModes
(II) RADEON(0): EDID vendor "LGP", prod id 40708
(II) RADEON(0): Output VGA-0 disconnected
(II) RADEON(0): Output DVI-0 disconnected
(II) RADEON(0): Output LVDS connected
(II) RADEON(0): Output S-video disconnected
(II) RADEON(0): Output LVDS using initial mode 1280x800
after xf86InitialConfiguration
(==) RADEON(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.4.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
(==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
(==) RADEON(0): Using XAA acceleration architecture
(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
(==) RADEON(0): Assuming overlay scaler buffer width is 1536
(II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
(!!) RADEON(0): For information on using the multimedia capabilities
    of this adapter, please see http://gatos.sf.net.
(!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] 0    0    0x40300000 - 0x4030ffff (0x10000) MX[b]
    [1] 0    0    0x48000000 - 0x4fffffff (0x8000000) MX[b]
    [2] -1    0    0x00100000 - 0x23ffffff (0x23f00000) 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    0x40280000 - 0x402800ff (0x100) MX[b]
    [7] -1    0    0x40200000 - 0x40200fff (0x1000) MX[b]
    [8] -1    0    0x40180000 - 0x40180fff (0x1000) MX[b]
    [9] -1    0    0x40100000 - 0x40100fff (0x1000) MX[b]
    [10] -1    0    0x40000000 - 0x4000ffff (0x10000) MX[b]
    [11] -1    0    0x24000000 - 0x240003ff (0x400) MX[b]
    [12] -1    0    0x60000000 - 0x5fffffff (0x0) MX[b]O
    [13] -1    0    0x40300000 - 0x4030ffff (0x10000) MX[b](B)
    [14] -1    0    0x48000000 - 0x4fffffff (0x8000000) MX[b](B)
    [15] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [16] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [17] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [18] 0    0    0x00003000 - 0x000030ff (0x100) IX[b]
    [19] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1    0    0x00002000 - 0x0000203f (0x40) IX[b]
    [22] -1    0    0x00002040 - 0x00002047 (0x8) IX[b]
    [23] -1    0    0x00004400 - 0x0000443f (0x40) IX[b]
    [24] -1    0    0x00004000 - 0x000040ff (0x100) IX[b]
    [25] -1    0    0x00004440 - 0x0000444f (0x10) IX[b]
    [26] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [27] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [28] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [29] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [30] -1    0    0x00003000 - 0x000030ff (0x100) IX[b](B)
    [31] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [32] 0    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
(II) RADEON(0): RADEONScreenInit 48000000 0 0
(==) RADEON(0): Write-combining range (0x48000000,0x2000000)
(WW) RADEON(0): Cannot read colourmap from VGA.  Will restore with default
Entering TV Save
Save TV timing tables
saveTimingTables: reading timing tables
TV Save done
disable montype: 2
(II) RADEON(0): Dynamic Clock Scaling Disabled
(==) RADEON(0): Using 24 bit depth buffer
(II) RADEON(0): RADEONInitMemoryMap() : 
(II) RADEON(0):   mem_size         : 0x04000000
(II) RADEON(0):   MC_FB_LOCATION   : 0x4bff4800
(II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
(II) RADEON(0): Depth moves disabled by default
(II) RADEON(0): CP in BM mode
(II) RADEON(0): Using 8 MB GART aperture
(II) RADEON(0): Using 1 MB for the ring buffer
(II) RADEON(0): Using 2 MB for vertex/indirect buffers
(II) RADEON(0): Using 5 MB for GART textures
(II) RADEON(0): Memory manager initialized to (0,0) (1408,5957)
(II) RADEON(0): Reserved area from (0,1200) to (1408,1202)
(II) RADEON(0): Largest offscreen area available: 1408 x 4755
(II) RADEON(0): Will use front buffer at offset 0x0
(II) RADEON(0): Will use back buffer at offset 0xcfa000
(II) RADEON(0): Will use depth buffer at offset 0x136c000
(II) RADEON(0): Will use 6272 kb for textures at offset 0x19de000
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) [drm] DRM interface version 1.3
(II) [drm] DRM open master succeeded.
(II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
(II) RADEON(0): [drm] framebuffer handle = 0x48000000
(II) RADEON(0): [drm] added 1 reserved context for kernel
(II) RADEON(0): X context handle = 0x1
(II) RADEON(0): [drm] installed DRM signal handler
(**) RADEON(0): Using AGP 4x
(II) RADEON(0): [agp] Mode 0x1f000207 [AGP 0x8086/0x1a30; Card 0x1002/0x4c57]
(II) RADEON(0): [agp] 8192 kB allocated with handle 0x00000001
(II) RADEON(0): [agp] ring handle = 0x60000000
(II) RADEON(0): [agp] Ring mapped at 0xb59e9000
(II) RADEON(0): [agp] ring read ptr handle = 0x60101000
(II) RADEON(0): [agp] Ring read ptr mapped at 0xb59e8000
(II) RADEON(0): [agp] vertex/indirect buffers handle = 0x60102000
(II) RADEON(0): [agp] Vertex/indirect buffers mapped at 0xb57e8000
(II) RADEON(0): [agp] GART texture map handle = 0x60302000
(II) RADEON(0): [agp] GART Texture map mapped at 0xb5308000
(II) RADEON(0): [drm] register handle = 0x40300000
(II) RADEON(0): [dri] Visual configs initialized
disable montype: 2
init memmap
init common
init crtc1
init pll1
restore memmap
(II) RADEON(0): RADEONRestoreMemMapRegisters() : 
(II) RADEON(0):   MC_FB_LOCATION   : 0x4bff4800 0x1fff0000
(II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
restore common
restore crtc1
restore pll1
restore LVDS
enable montype: 2
(WW) RADEON(0): No crtc mode list for crtc 1,continuing with desired mode
disable montype: 2
(==) RADEON(0): Backing store disabled
(II) RADEON(0): [DRI] installation complete
(II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
(II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
(II) RADEON(0): [drm] dma control initialized, using IRQ 11
(II) RADEON(0): [drm] Initialized kernel GART heap manager, 5111808
(WW) RADEON(0): DRI init changed memory map, adjusting ...
(WW) RADEON(0):   MC_FB_LOCATION  was: 0x4bff4800 is: 0x4bff4800
(WW) RADEON(0):   MC_AGP_LOCATION was: 0xffffffc0 is: 0x607f6000
(II) RADEON(0): RADEONRestoreMemMapRegisters() : 
(II) RADEON(0):   MC_FB_LOCATION   : 0x4bff4800 0x4bff4800
(II) RADEON(0):   MC_AGP_LOCATION  : 0x607f6000
(II) RADEON(0): Direct rendering enabled
(II) RADEON(0): Render acceleration enabled
(**) RADEON(0): Option "XaaNoOffscreenPixmaps" "true"
(II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Indirect CPU to Screen color expansion
    Solid Lines
    Scanline Image Writes
    Setting up tile and stipple cache:
        32 128x128 slots
        32 256x256 slots
        14 512x512 slots
(II) RADEON(0): Acceleration enabled
(**) Option "dpms"
(**) RADEON(0): DPMS enabled
(==) RADEON(0): Silken mouse enabled
(II) RADEON(0): Using hardware cursor 0 (scanline 1202)
(II) RADEON(0): Using hardware cursor 1 (scanline 1204)
(II) RADEON(0): Largest offscreen area available: 1408 x 4749
(II) RADEON(0): Detected Radeon Mobility M7, 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"
    compiled for 1.4.2, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) RADEON(0): no multimedia table present, disabling Rage Theatre.
(II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
(WW) RADEON(0): Option "EnaglePageFlip" is not used
(WW) RADEON(0): Option "PreferredMode" is not used
(--) RandR disabled
(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 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
(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
(II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/radeon_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(II) RADEON(0): Setting screen physical size to 305 x 228
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/input/mice"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: always reports core events
(**) Option "Device" "/dev/input/mice"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5 6 7"
(**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
(**) Mouse0: Buttons: 11
(**) Mouse0: Sensitivity: 1
(**) Option "CoreKeyboard"
(**) Keyboard0: always reports core events
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "cz,us"
(**) Keyboard0: XkbLayout: "cz,us"
(**) Option "XkbVariant" "nodeadkeys"
(**) Keyboard0: XkbVariant: "nodeadkeys"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) evaluating device (Keyboard0)
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) evaluating device (Mouse0)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
enable montype: 2

"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#8 2008-06-25 03:56:54

at1z0r
Member
Registered: 2008-03-19
Posts: 4

Re: Xorg starts with bad resolution

at1z0r @ suczka /var/log $  cat Xorg.0.log

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.25-ARCH i686 
Current Operating System: Linux suczka 2.6.25-ARCH #1 SMP PREEMPT Sat Jun 14 18:07:19 CEST 2008 i686
Build Date: 21 June 2008  05:47:59PM
 
    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: Wed Jun 25 05:30:39 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "aticonfig-Screen[0]-0" (0)
(**) |   |-->Monitor "aticonfig-Monitor[0]-0"
(**) |   |-->Device "aticonfig-Device[0]-0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(==) Automatically adding devices
(==) Automatically enabling devices
(==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
(**) 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
(**) RgbPath set to "/usr/share/X11/rgb"
(**) ModulePath set to "/usr/lib/xorg/modules"
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Loader magic: 0x81e0a60
(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,5a33 card 1019,2111 rev 01 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 1002,5a34 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:11:0: chip 1002,437a card 1019,1b34 rev 80 class 01,01,8f hdr 00
(II) PCI: 00:12:0: chip 1002,4379 card 1019,1b34 rev 80 class 01,01,8f hdr 00
(II) PCI: 00:13:0: chip 1002,4374 card 1019,2111 rev 80 class 0c,03,10 hdr 80
(II) PCI: 00:13:1: chip 1002,4375 card 1019,2111 rev 80 class 0c,03,10 hdr 00
(II) PCI: 00:13:2: chip 1002,4373 card 1019,2111 rev 80 class 0c,03,20 hdr 00
(II) PCI: 00:14:0: chip 1002,4372 card 1019,2111 rev 81 class 0c,05,00 hdr 80
(II) PCI: 00:14:1: chip 1002,4376 card 1019,2111 rev 80 class 01,01,8a hdr 00
(II) PCI: 00:14:3: chip 1002,4377 card 0000,0000 rev 80 class 06,01,00 hdr 80
(II) PCI: 00:14:4: chip 1002,4371 card 0000,0000 rev 80 class 06,04,01 hdr 81
(II) PCI: 00:14:5: chip 1002,4370 card 1019,1877 rev 80 class 04,01,00 hdr 80
(II) PCI: 01:00:0: chip 1002,5b63 card 174b,1490 rev 00 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,5b73 card 174b,1491 rev 00 class 03,80,00 hdr 00
(II) PCI: 02:02:0: chip 104c,8400 card 1186,3b01 rev 00 class 02,80,00 hdr 00
(II) PCI: 02:05:0: chip 10ec,8139 card 1019,8139 rev 10 class 02,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,2), 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:2:0), (0,1,1), BCTRL: 0x000b (VGA_EN is set)
(II) Bus 1 I/O range:
    [0] -1    0    0x00005000 - 0x00005fff (0x1000) IX[b]
(II) Bus 1 non-prefetchable memory range:
    [0] -1    0    0xff200000 - 0xff2fffff (0x100000) MX[b]
(II) Bus 1 prefetchable memory range:
    [0] -1    0    0xbff00000 - 0xdfefffff (0x20000000) 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 2: bridge is at (0:20:4), (0,2,2), BCTRL: 0x0007 (VGA_EN is cleared)
(II) Bus 2 I/O range:
    [0] -1    0    0x00006000 - 0x000060ff (0x100) IX[b]
    [1] -1    0    0x00006400 - 0x000064ff (0x100) IX[b]
    [2] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [3] -1    0    0x00006c00 - 0x00006cff (0x100) IX[b]
(II) Bus 2 non-prefetchable memory range:
    [0] -1    0    0xff300000 - 0xff3fffff (0x100000) MX[b]
(--) PCI:*(1:0:0) ATI Technologies Inc RV370 [Sapphire X550 Silent] rev 0, Mem @ 0xc0000000/28, 0xff2f0000/16, I/O @ 0x5800/8, BIOS @ 0xff2c0000/17
(--) PCI: (1:0:1) ATI Technologies Inc RV370 secondary [Sapphire X550 Silent] rev 0, Mem @ 0xff2e0000/16
(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 0xe0000000 to 0xdfffffff
(II) Active PCI resource ranges:
    [0] -1    0    0xff3fbc00 - 0xff3fbcff (0x100) MX[b]
    [1] -1    0    0xff3e0000 - 0xff3effff (0x10000) MX[b]
    [2] -1    0    0xff3ff000 - 0xff3fffff (0x1000) MX[b]
    [3] -1    0    0xff6ff400 - 0xff6ff4ff (0x100) MX[b]
    [4] -1    0    0x50000000 - 0x500003ff (0x400) MX[b]
    [5] -1    0    0xff6fc000 - 0xff6fcfff (0x1000) MX[b]
    [6] -1    0    0xff6fd000 - 0xff6fdfff (0x1000) MX[b]
    [7] -1    0    0xff6fe000 - 0xff6fefff (0x1000) MX[b]
    [8] -1    0    0xff6ffc00 - 0xff6ffdff (0x200) MX[b]
    [9] -1    0    0xff6ff800 - 0xff6ff9ff (0x200) MX[b]
    [10] -1    0    0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [11] -1    0    0xff2e0000 - 0xff2effff (0x10000) MX[b](B)
    [12] -1    0    0xff2c0000 - 0xff2dffff (0x20000) MX[b](B)
    [13] -1    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b](B)
    [14] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [15] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [16] -1    0    0x00006c00 - 0x00006c1f (0x20) IX[b]
    [17] -1    0    0x0000ff00 - 0x0000ff0f (0x10) IX[b]
    [18] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
    [19] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
    [20] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
    [21] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [22] -1    0    0x00000b00 - 0x00000b0f (0x10) IX[b]
    [23] -1    0    0x0000a800 - 0x0000a80f (0x10) IX[b]
    [24] -1    0    0x0000ac00 - 0x0000ac03 (0x4) IX[b]
    [25] -1    0    0x0000b000 - 0x0000b007 (0x8) IX[b]
    [26] -1    0    0x0000b400 - 0x0000b403 (0x4) IX[b]
    [27] -1    0    0x0000b800 - 0x0000b807 (0x8) IX[b]
    [28] -1    0    0x00009400 - 0x0000940f (0x10) IX[b]
    [29] -1    0    0x00009800 - 0x00009803 (0x4) IX[b]
    [30] -1    0    0x00009c00 - 0x00009c07 (0x8) IX[b]
    [31] -1    0    0x0000a000 - 0x0000a003 (0x4) IX[b]
    [32] -1    0    0x0000a400 - 0x0000a407 (0x8) IX[b]
    [33] -1    0    0x00005800 - 0x000058ff (0x100) IX[b](B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1    0    0xff3fbc00 - 0xff3fbcff (0x100) MX[b]
    [1] -1    0    0xff3e0000 - 0xff3effff (0x10000) MX[b]
    [2] -1    0    0xff3ff000 - 0xff3fffff (0x1000) MX[b]
    [3] -1    0    0xff6ff400 - 0xff6ff4ff (0x100) MX[b]
    [4] -1    0    0x50000000 - 0x500003ff (0x400) MX[b]
    [5] -1    0    0xff6fc000 - 0xff6fcfff (0x1000) MX[b]
    [6] -1    0    0xff6fd000 - 0xff6fdfff (0x1000) MX[b]
    [7] -1    0    0xff6fe000 - 0xff6fefff (0x1000) MX[b]
    [8] -1    0    0xff6ffc00 - 0xff6ffdff (0x200) MX[b]
    [9] -1    0    0xff6ff800 - 0xff6ff9ff (0x200) MX[b]
    [10] -1    0    0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [11] -1    0    0xff2e0000 - 0xff2effff (0x10000) MX[b](B)
    [12] -1    0    0xff2c0000 - 0xff2dffff (0x20000) MX[b](B)
    [13] -1    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b](B)
    [14] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [15] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [16] -1    0    0x00006c00 - 0x00006c1f (0x20) IX[b]
    [17] -1    0    0x0000ff00 - 0x0000ff0f (0x10) IX[b]
    [18] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
    [19] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
    [20] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
    [21] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [22] -1    0    0x00000b00 - 0x00000b0f (0x10) IX[b]
    [23] -1    0    0x0000a800 - 0x0000a80f (0x10) IX[b]
    [24] -1    0    0x0000ac00 - 0x0000ac03 (0x4) IX[b]
    [25] -1    0    0x0000b000 - 0x0000b007 (0x8) IX[b]
    [26] -1    0    0x0000b400 - 0x0000b403 (0x4) IX[b]
    [27] -1    0    0x0000b800 - 0x0000b807 (0x8) IX[b]
    [28] -1    0    0x00009400 - 0x0000940f (0x10) IX[b]
    [29] -1    0    0x00009800 - 0x00009803 (0x4) IX[b]
    [30] -1    0    0x00009c00 - 0x00009c07 (0x8) IX[b]
    [31] -1    0    0x0000a000 - 0x0000a003 (0x4) IX[b]
    [32] -1    0    0x0000a400 - 0x0000a407 (0x8) IX[b]
    [33] -1    0    0x00005800 - 0x000058ff (0x100) IX[b](B)
(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    0xff3fbc00 - 0xff3fbcff (0x100) MX[b]
    [5] -1    0    0xff3e0000 - 0xff3effff (0x10000) MX[b]
    [6] -1    0    0xff3ff000 - 0xff3fffff (0x1000) MX[b]
    [7] -1    0    0xff6ff400 - 0xff6ff4ff (0x100) MX[b]
    [8] -1    0    0x50000000 - 0x500003ff (0x400) MX[b]
    [9] -1    0    0xff6fc000 - 0xff6fcfff (0x1000) MX[b]
    [10] -1    0    0xff6fd000 - 0xff6fdfff (0x1000) MX[b]
    [11] -1    0    0xff6fe000 - 0xff6fefff (0x1000) MX[b]
    [12] -1    0    0xff6ffc00 - 0xff6ffdff (0x200) MX[b]
    [13] -1    0    0xff6ff800 - 0xff6ff9ff (0x200) MX[b]
    [14] -1    0    0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [15] -1    0    0xff2e0000 - 0xff2effff (0x10000) MX[b](B)
    [16] -1    0    0xff2c0000 - 0xff2dffff (0x20000) MX[b](B)
    [17] -1    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b](B)
    [18] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [19] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [22] -1    0    0x00006c00 - 0x00006c1f (0x20) IX[b]
    [23] -1    0    0x0000ff00 - 0x0000ff0f (0x10) IX[b]
    [24] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
    [25] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
    [26] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
    [27] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [28] -1    0    0x00000b00 - 0x00000b0f (0x10) IX[b]
    [29] -1    0    0x0000a800 - 0x0000a80f (0x10) IX[b]
    [30] -1    0    0x0000ac00 - 0x0000ac03 (0x4) IX[b]
    [31] -1    0    0x0000b000 - 0x0000b007 (0x8) IX[b]
    [32] -1    0    0x0000b400 - 0x0000b403 (0x4) IX[b]
    [33] -1    0    0x0000b800 - 0x0000b807 (0x8) IX[b]
    [34] -1    0    0x00009400 - 0x0000940f (0x10) IX[b]
    [35] -1    0    0x00009800 - 0x00009803 (0x4) IX[b]
    [36] -1    0    0x00009c00 - 0x00009c07 (0x8) IX[b]
    [37] -1    0    0x0000a000 - 0x0000a003 (0x4) IX[b]
    [38] -1    0    0x0000a400 - 0x0000a407 (0x8) IX[b]
    [39] -1    0    0x00005800 - 0x000058ff (0x100) IX[b](B)
(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 by default.
(II) "freetype" 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) 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: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: 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 DEC-XTRAP
(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 1.4.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(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.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: "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: "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: "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.50.3
    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, module version = 1.2.3
    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.2, 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.50.3
(II) ATI Proprietary Linux Driver Release Identifier: UNSUPPORTED-8.501                    
(II) ATI Proprietary Linux Driver Build Date: Jun  2 2008 22:46:56
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset Supported AMD Graphics Processor (0x5B63) found
(WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) 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    0xff3fbc00 - 0xff3fbcff (0x100) MX[b]
    [5] -1    0    0xff3e0000 - 0xff3effff (0x10000) MX[b]
    [6] -1    0    0xff3ff000 - 0xff3fffff (0x1000) MX[b]
    [7] -1    0    0xff6ff400 - 0xff6ff4ff (0x100) MX[b]
    [8] -1    0    0x50000000 - 0x500003ff (0x400) MX[b]
    [9] -1    0    0xff6fc000 - 0xff6fcfff (0x1000) MX[b]
    [10] -1    0    0xff6fd000 - 0xff6fdfff (0x1000) MX[b]
    [11] -1    0    0xff6fe000 - 0xff6fefff (0x1000) MX[b]
    [12] -1    0    0xff6ffc00 - 0xff6ffdff (0x200) MX[b]
    [13] -1    0    0xff6ff800 - 0xff6ff9ff (0x200) MX[b]
    [14] -1    0    0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [15] -1    0    0xff2e0000 - 0xff2effff (0x10000) MX[b](B)
    [16] -1    0    0xff2c0000 - 0xff2dffff (0x20000) MX[b](B)
    [17] -1    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b](B)
    [18] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [19] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [22] -1    0    0x00006c00 - 0x00006c1f (0x20) IX[b]
    [23] -1    0    0x0000ff00 - 0x0000ff0f (0x10) IX[b]
    [24] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
    [25] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
    [26] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
    [27] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [28] -1    0    0x00000b00 - 0x00000b0f (0x10) IX[b]
    [29] -1    0    0x0000a800 - 0x0000a80f (0x10) IX[b]
    [30] -1    0    0x0000ac00 - 0x0000ac03 (0x4) IX[b]
    [31] -1    0    0x0000b000 - 0x0000b007 (0x8) IX[b]
    [32] -1    0    0x0000b400 - 0x0000b403 (0x4) IX[b]
    [33] -1    0    0x0000b800 - 0x0000b807 (0x8) IX[b]
    [34] -1    0    0x00009400 - 0x0000940f (0x10) IX[b]
    [35] -1    0    0x00009800 - 0x00009803 (0x4) IX[b]
    [36] -1    0    0x00009c00 - 0x00009c07 (0x8) IX[b]
    [37] -1    0    0x0000a000 - 0x0000a003 (0x4) IX[b]
    [38] -1    0    0x0000a400 - 0x0000a407 (0x8) IX[b]
    [39] -1    0    0x00005800 - 0x000058ff (0x100) IX[b](B)
(II) fglrx(0): pEnt->device->identifier=0x8431388
(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    0xff3fbc00 - 0xff3fbcff (0x100) MX[b]
    [5] -1    0    0xff3e0000 - 0xff3effff (0x10000) MX[b]
    [6] -1    0    0xff3ff000 - 0xff3fffff (0x1000) MX[b]
    [7] -1    0    0xff6ff400 - 0xff6ff4ff (0x100) MX[b]
    [8] -1    0    0x50000000 - 0x500003ff (0x400) MX[b]
    [9] -1    0    0xff6fc000 - 0xff6fcfff (0x1000) MX[b]
    [10] -1    0    0xff6fd000 - 0xff6fdfff (0x1000) MX[b]
    [11] -1    0    0xff6fe000 - 0xff6fefff (0x1000) MX[b]
    [12] -1    0    0xff6ffc00 - 0xff6ffdff (0x200) MX[b]
    [13] -1    0    0xff6ff800 - 0xff6ff9ff (0x200) MX[b]
    [14] -1    0    0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [15] -1    0    0xff2e0000 - 0xff2effff (0x10000) MX[b](B)
    [16] -1    0    0xff2c0000 - 0xff2dffff (0x20000) MX[b](B)
    [17] -1    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b](B)
    [18] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [19] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b]
    [20] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [21] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b]
    [22] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [24] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [25] -1    0    0x00006c00 - 0x00006c1f (0x20) IX[b]
    [26] -1    0    0x0000ff00 - 0x0000ff0f (0x10) IX[b]
    [27] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
    [28] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
    [29] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
    [30] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [31] -1    0    0x00000b00 - 0x00000b0f (0x10) IX[b]
    [32] -1    0    0x0000a800 - 0x0000a80f (0x10) IX[b]
    [33] -1    0    0x0000ac00 - 0x0000ac03 (0x4) IX[b]
    [34] -1    0    0x0000b000 - 0x0000b007 (0x8) IX[b]
    [35] -1    0    0x0000b400 - 0x0000b403 (0x4) IX[b]
    [36] -1    0    0x0000b800 - 0x0000b807 (0x8) IX[b]
    [37] -1    0    0x00009400 - 0x0000940f (0x10) IX[b]
    [38] -1    0    0x00009800 - 0x00009803 (0x4) IX[b]
    [39] -1    0    0x00009c00 - 0x00009c07 (0x8) IX[b]
    [40] -1    0    0x0000a000 - 0x0000a003 (0x4) IX[b]
    [41] -1    0    0x0000a400 - 0x0000a407 (0x8) IX[b]
    [42] -1    0    0x00005800 - 0x000058ff (0x100) IX[b](B)
    [43] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b]
    [44] 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
(--) fglrx(0): Chipset: "Radeon X300/X550/X1050 Series" (Chipset = 0x5b63)
(--) fglrx(0): (PciSubVendor = 0x174b, PciSubDevice = 0x1490)
(--) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
(--) fglrx(0): Linear framebuffer (phys) at 0xc0000000
(--) fglrx(0): MMIO registers at 0xff2f0000
(==) 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 2.0
(II) fglrx(0): VESA VBE Total Mem: 16384 kB
(II) fglrx(0): VESA VBE OEM: ATI RV370
(II) fglrx(0): VESA VBE OEM Software Rev: 1.0
(II) fglrx(0): VESA VBE OEM Vendor: ATI Technologies Inc.
(II) fglrx(0): VESA VBE OEM Product: V380
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenByBusid: drmOpenMinor returns 7
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(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.50.3
    ABI class: X.Org Server Extension, version 0.3
(II) fglrx(0): Using adapter: 1:0.0.
(II) fglrx(0): [FB] Find the MC FB aperturs range(MCFBBase = 0xc0000000, MCFBSize = 0x10000000)
(--) fglrx(0): VideoRAM: 131072 kByte, Type: DDR SGRAM / SDRAM
(II) fglrx(0): PCIE 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): Connected Display1: CRT on primary DAC [crt1]
(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 primary DAC
(II) fglrx(0): Internal Desktop Setting: 0x00000001
(II) fglrx(0): POWERplay version 3.  1 power state available:
(II) fglrx(0):   1. 398/196MHz @ 50Hz [enable load balancing]
(==) fglrx(0): Qbs is not supported in this release. 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 22 modes found for primary display.
(--) fglrx(0): Virtual size is 1280x1024 (pitch 0)
(**) 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):  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):  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 "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):  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):  Default mode "1024x480": 38.2 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x480"x60.0   38.16  1024 1048 1152 1280  480 481 484 497 +hsync (29.8 kHz)
(**) fglrx(0):  Default mode "848x480": 31.5 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "848x480"x60.0   31.48  848 864 952 1056  480 481 484 497 +hsync (29.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):  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):  Default mode "720x576": 32.7 MHz (scaled from 0.0 MHz), 35.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "720x576"x60.0   32.66  720 744 816 912  576 577 580 597 +hsync (35.8 kHz)
(**) fglrx(0):  Default 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):  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": 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 1280x1024 (pitch 1280)
(**) 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):  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):  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 "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):  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):  Default mode "1024x480": 38.2 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x480"x60.0   38.16  1024 1048 1152 1280  480 481 484 497 +hsync (29.8 kHz)
(**) fglrx(0):  Default mode "848x480": 31.5 MHz (scaled from 0.0 MHz), 29.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "848x480"x60.0   31.48  848 864 952 1056  480 481 484 497 +hsync (29.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):  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):  Default mode "720x576": 32.7 MHz (scaled from 0.0 MHz), 35.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "720x576"x60.0   32.66  720 744 816 912  576 577 580 597 +hsync (35.8 kHz)
(**) fglrx(0):  Default 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):  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": 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"
(**) fglrx(0): ATI GART size: 255 MB
(II) fglrx(0): [pcie] 261120 kB allocated
(II) fglrx(0): [drm] DRM buffer queue setup: nbufs = 100 bufsize = 65536
(==) fglrx(0): UseFastTLS=0
(==) fglrx(0): BlockSignalsOnLock=1
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] 0    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b]
    [1] 0    0    0xc0000000 - 0xcfffffff (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    0xff3fbc00 - 0xff3fbcff (0x100) MX[b]
    [7] -1    0    0xff3e0000 - 0xff3effff (0x10000) MX[b]
    [8] -1    0    0xff3ff000 - 0xff3fffff (0x1000) MX[b]
    [9] -1    0    0xff6ff400 - 0xff6ff4ff (0x100) MX[b]
    [10] -1    0    0x50000000 - 0x500003ff (0x400) MX[b]
    [11] -1    0    0xff6fc000 - 0xff6fcfff (0x1000) MX[b]
    [12] -1    0    0xff6fd000 - 0xff6fdfff (0x1000) MX[b]
    [13] -1    0    0xff6fe000 - 0xff6fefff (0x1000) MX[b]
    [14] -1    0    0xff6ffc00 - 0xff6ffdff (0x200) MX[b]
    [15] -1    0    0xff6ff800 - 0xff6ff9ff (0x200) MX[b]
    [16] -1    0    0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [17] -1    0    0xff2e0000 - 0xff2effff (0x10000) MX[b](B)
    [18] -1    0    0xff2c0000 - 0xff2dffff (0x20000) MX[b](B)
    [19] -1    0    0xff2f0000 - 0xff2fffff (0x10000) MX[b](B)
    [20] -1    0    0xc0000000 - 0xcfffffff (0x10000000) MX[b](B)
    [21] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [22] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [23] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [24] 0    0    0x00005800 - 0x000058ff (0x100) IX[b]
    [25] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [26] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [27] -1    0    0x00006800 - 0x000068ff (0x100) IX[b]
    [28] -1    0    0x00006c00 - 0x00006c1f (0x20) IX[b]
    [29] -1    0    0x0000ff00 - 0x0000ff0f (0x10) IX[b]
    [30] -1    0    0x00000374 - 0x00000374 (0x1) IX[b]
    [31] -1    0    0x00000170 - 0x00000177 (0x8) IX[b]
    [32] -1    0    0x000003f4 - 0x000003f4 (0x1) IX[b]
    [33] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [34] -1    0    0x00000b00 - 0x00000b0f (0x10) IX[b]
    [35] -1    0    0x0000a800 - 0x0000a80f (0x10) IX[b]
    [36] -1    0    0x0000ac00 - 0x0000ac03 (0x4) IX[b]
    [37] -1    0    0x0000b000 - 0x0000b007 (0x8) IX[b]
    [38] -1    0    0x0000b400 - 0x0000b403 (0x4) IX[b]
    [39] -1    0    0x0000b800 - 0x0000b807 (0x8) IX[b]
    [40] -1    0    0x00009400 - 0x0000940f (0x10) IX[b]
    [41] -1    0    0x00009800 - 0x00009803 (0x4) IX[b]
    [42] -1    0    0x00009c00 - 0x00009c07 (0x8) IX[b]
    [43] -1    0    0x0000a000 - 0x0000a003 (0x4) IX[b]
    [44] -1    0    0x0000a400 - 0x0000a407 (0x8) IX[b]
    [45] -1    0    0x00005800 - 0x000058ff (0x100) IX[b](B)
    [46] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [47] 0    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
(II) fglrx(0): driver needs X.org 7.1.x.y with x.y >= 0.0
(II) fglrx(0): detected X.org 7.1.2.0
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenByBusid: Searching for BusID PCI:1:0:0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenByBusid: drmOpenMinor returns 7
drmOpenByBusid: drmGetBusid reports PCI:1:0:0
(II) [drm] DRM interface version 1.0
(II) [drm] DRM open master succeeded.
(II) fglrx(0): [drm] Using the DRM lock SAREA also for drawables.
(II) fglrx(0): [drm] framebuffer handle = 0x3000
(II) fglrx(0): [drm] added 1 reserved context for kernel
(II) fglrx(0): X context handle = 0x1
(II) fglrx(0): DRIScreenInit done
(II) fglrx(0): Kernel Module Version Information:
(II) fglrx(0):     Name: fglrx
(II) fglrx(0):     Version: 8.50.3
(II) fglrx(0):     Date: Jun  2 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.25-ARCH
(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 = 0x00005000
(II) fglrx(0): Interrupt handler installed at IRQ 18.
(II) fglrx(0): Exposed events to the /proc interface
(II) fglrx(0): DRI initialization successfull!
(II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x00708000
(II) fglrx(0): FBMM initialized for area (0,0)-(1280,1440)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,1024) (front color buffer - assumption)
(II) fglrx(0): Largest offscreen area available: 1280 x 416
(==) fglrx(0): Backing store disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(**) fglrx(0): DPMS enabled
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    Solid Lines
    Dashed Lines
    Setting up tile and stipple cache:
        30 128x128 slots
(II) fglrx(0): Acceleration 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
(WW) fglrx(0): Option "VendorName" is not used
(WW) fglrx(0): Option "ModelName" is not used
(II) fglrx(0): [DRI] installation complete
(II) fglrx(0): Direct rendering enabled
(==) 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 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
(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/xorg/modules/dri/fglrx_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(**) Option "Protocol" "auto"
(**) Mouse0: Device: "/dev/input/mice"
(**) Mouse0: Protocol: "auto"
(**) Option "CorePointer"
(**) Mouse0: always reports core events
(**) Option "Device" "/dev/input/mice"
(==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5 6 7"
(**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
(**) Mouse0: Buttons: 11
(**) Mouse0: Sensitivity: 1
(**) Option "CoreKeyboard"
(**) Keyboard0: always reports core events
(**) Option "Protocol" "standard"
(**) Keyboard0: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard0: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard0: XkbModel: "pc105"
(**) Option "XkbLayout" "pl"
(**) Keyboard0: XkbLayout: "pl"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(II) evaluating device (Keyboard0)
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(II) evaluating device (Mouse0)
(II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
(--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse0: ps2EnableDataReporting: succeeded
Warning: LookupDrawable()/SecurityLookupDrawable() are deprecated.  Please convert your driver/module to use dixLookupDrawable().
(II) 3rd Button detected: disabling emulate3Button

Here is mine wink

Maybe now there will be hope.

Offline

#9 2008-07-07 13:21:22

Odd-rationale
Member
Registered: 2008-02-05
Posts: 102

Re: Xorg starts with bad resolution

Hello! I have a very similar problem.

I am using the open-source ati drivers. When I start X, I get a 1200x800 resolution, which makes my screen look out of ratio (kind of "squashed"). However, in GNOME, I can go to "gnome-display-properties" (System --> Preferences --> Screen Resolution) and select the 1400x1050 resolution and it works fine. However, it only sets the 1400x1050 resolution during the gnome-session. Other X sessions like GDM, is still in the out of ratio 1200X800 resolution.

Here is my xorg.conf file:

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

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    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  "dri"
    Load  "dbe"
    Load  "record"
    Load  "extmod"
    Load  "glx"
    Load  "GLcore"
    Load  "xtrap"
    Load  "freetype"
    Load  "synaptics"
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"
    #DisplaySize      300   230    # mm
    Identifier   "Monitor0"
    VendorName   "LGP"
    ModelName    "9f04"
    Option         "DPMS"
#    HorizSync    "30.0 - 130.0"
#    VertRefresh  "50.0 - 100.0"
EndSection

Section "InputDevice"
    Identifier   "Touchpad"
    Driver       "synaptics"
    Option       "Device" "/dev/input/mouse0"
    Option       "CircularScrolling" "on"
    Option       "CircScrollTrigger" "1"
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     "SWcursor"               # [<bool>]
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "Dac8Bit"                # [<bool>]
        #Option     "BusType"                # [<str>]
        #Option     "CPPIOMode"              # [<bool>]
        #Option     "CPusecTimeout"          # <i>
        #Option     "AGPMode"                # <i>
        #Option     "AGPFastWrite"           # [<bool>]
        #Option     "AGPSize"                # <i>
        #Option     "GARTSize"               # <i>
        #Option     "RingSize"               # <i>
        #Option     "BufferSize"             # <i>
        #Option     "EnableDepthMoves"       # [<bool>]
        #Option     "EnablePageFlip"         # [<bool>]
        #Option     "NoBackBuffer"           # [<bool>]
        #Option     "DMAForXv"               # [<bool>]
        #Option     "FBTexPercent"           # <i>
        #Option     "DepthBits"              # <i>
        #Option     "PCIAPERSize"            # <i>
        #Option     "AccelDFS"               # [<bool>]
        #Option     "DDCMode"                # [<bool>]
        #Option     "IgnoreEDID"             # [<bool>]
        #Option     "DisplayPriority"        # [<str>]
        #Option     "PanelSize"              # [<str>]
        #Option     "ForceMinDotClock"       # <freq>
        #Option     "ColorTiling"            # [<bool>]
        #Option     "VideoKey"               # <i>
        #Option     "RageTheatreCrystal"     # <i>
        #Option     "RageTheatreTunerPort"     # <i>
        #Option     "RageTheatreCompositePort"     # <i>
        #Option     "RageTheatreSVideoPort"     # <i>
        #Option     "TunerType"              # <i>
        #Option     "RageTheatreMicrocPath"     # <str>
        #Option     "RageTheatreMicrocType"     # <str>
        #Option     "ScalerWidth"            # <i>
        #Option     "RenderAccel"            # [<bool>]
        #Option     "SubPixelOrder"          # [<str>]
        #Option     "ShowCache"              # [<bool>]
        #Option     "DynamicClocks"          # [<bool>]
        #Option     "VGAAccess"              # [<bool>]
        #Option     "ReverseDDC"             # [<bool>]
        #Option     "LVDSProbePLL"           # [<bool>]
        #Option     "AccelMethod"            # <str>
        #Option     "DRI"                    # [<bool>]
        #Option     "ConnectorTable"         # <str>
        #Option     "DefaultConnectorTable"     # [<bool>]
        #Option     "DefaultTMDSPLL"         # [<bool>]
        #Option     "TVDACLoadDetect"        # [<bool>]
        #Option     "ForceTVOut"             # [<bool>]
        #Option     "TVStandard"             # <str>
        #Option     "IgnoreLidStatus"        # [<bool>]
    Identifier  "Card0"
    Driver      "radeon"
    VendorName  "ATI Technologies Inc"
    BoardName   "Radeon Mobility M7 LW [Radeon Mobility 7500]"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultDepth 24
#    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
        Modes "1400x1050"
    EndSubSection
EndSection

Section "Extensions"
    Option      "Composite" "Enable"
EndSection

Any help would be appreciated!

Last edited by Odd-rationale (2008-07-12 23:24:30)

Offline

#10 2008-07-07 15:59:15

biagio
Member
From: Florence - Italy
Registered: 2008-02-29
Posts: 49

Re: Xorg starts with bad resolution

Perhaps this should be corrected>

#    HorizSync    30.0 - 130.0
#    VertRefresh    50.0 - 100.0

Offline

#11 2008-07-07 16:19:54

Odd-rationale
Member
Registered: 2008-02-05
Posts: 102

Re: Xorg starts with bad resolution

Thanks for the tip. I tried changing the HorizSync and VertRefresh, but it did not change anything...

Offline

#12 2008-07-12 23:22:21

Odd-rationale
Member
Registered: 2008-02-05
Posts: 102

Re: Xorg starts with bad resolution

OK. I made some progress on solving this problem.

As I said earlier, I could get the correct resolution in GNOME, but not in X. It seems as if "gnome-display-properties" (System --> Preferences --> Screen Resolution)  does the equivalent of "xrandr -s 1400x1050".

Now, all I need to know is how to execute "xrandr -s 1400x1050" whenever X starts. If anyone knows how, please let m know...

Right now, I have a rather ugly hack. I added "xrandr -s 1400x1050" to my /etc/gdm/Init/Default file. So now gdm has the correct resolution...

Offline

#13 2008-07-17 12:04:57

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Re: Xorg starts with bad resolution

OK, so I tried the 'xrandr -s 1400x1050' stuff and made some progress. Unfortunately I'm still unable to make SLIM to accept it, I only managed to add xrandr to /etc/X11/xinit/xinitrc which is called after successful login in SLIM, so that resolution changes before E17 starts.

Now I'm trying to find out how to make SLIM or X to use xrandr, so I hope there will be some way...


"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#14 2008-07-17 17:22:50

kclive18
Member
From: Columbus, Ohio, USA
Registered: 2008-05-08
Posts: 219

Re: Xorg starts with bad resolution

@at1z0r:  Why do you have 2 Screens sections in your xorg.conf?  You should only have one, and you should add the "Modes" line to the 24-bit depth subsection of the "Screens" section.  In addition, you also have two "Device" sections; just modify the first one and delete out the one you added.  There could be confusion between all these duplicated sections, and that is why your DM isn't picking up on the resolution you want.


My Rigs:
- Mid-2007 iMac 20", Intel 2GHz Core 2 Duo, 2x1GB DDR2-800, 250GB SATA HDD, and...MIGHTY MOUSE!!! tongue, OSX 10.5 Leopard, ATI Radeon 2400XT 128MB
- HP zv6203cl, AMD Athlon 64 3200 S939, 2x512MB DDR400, 80GB 4200rpm HDD, ATI Radeon Xpress 200M 128MB, Arch i686 cool
- 1986 Gibson SG Junior Cherry Red, Ibanez 15W amp, DigiTech RP250 modeling processor

Offline

#15 2008-07-21 13:32:36

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Re: Xorg starts with bad resolution

OK, looks like I have failed to make SLIM to execute that xrandr stuff :-/

I tried console login with startx and xrandr in bashrc, but my parents were kinda unsatisfied with that variant :-(


"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#16 2008-07-21 22:39:45

Odd-rationale
Member
Registered: 2008-02-05
Posts: 102

Re: Xorg starts with bad resolution

Why not use gdm?

I edited the end of my /etc/gdm/Init/Default file to look like this:

...

fi
xrandr -s 1400x1050
exit 0

It works for me. Although, ideally, I would like this to happen when X starts...

Last edited by Odd-rationale (2008-07-21 22:41:09)

Offline

#17 2008-07-22 15:52:55

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Re: Xorg starts with bad resolution

Tried GDM now and it works, but i'd rather use something lighter like Entrance or Slim, which needs Xorg to start in proper resolution.


"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#18 2008-12-01 15:15:22

Nicky726
Member
From: Czech Republic
Registered: 2008-02-15
Posts: 142
Website

Re: Xorg starts with bad resolution

OK, looks like new version of xorg manages to start correctly without that GDM hack


"Although the masters make the rules
For the wise men and the fools
I got nothing, Ma, to live up to."

Offline

#19 2008-12-02 08:21:29

greenfuse
Member
Registered: 2008-02-14
Posts: 57

Re: Xorg starts with bad resolution

After upgrading xorg, my Radeon 9600 and I have had and (touch wood) solved the same problem that you folk seem to have found.

After trying various settings in xorg.conf, I got one that worked. I used wizzard's minimal xorg.conf for fglrx http://bbs.archlinux.org/viewtopic.php?id=60071
with
Option "PreferredMode" "1280x1024"
included in the monitor section

Using xrandr was not a good workaround for me. "xrandr -s 12800x1024" results in an interesting Desktop - the general size of things is good, except the font size is miniscule and the background picture is tiled. (I use LXDE with pcmanfm managing the desktop.)

Offline

#20 2008-12-02 14:39:14

markisthejob
Member
From: Cork, Ireland
Registered: 2008-09-01
Posts: 63

Re: Xorg starts with bad resolution

I had a similar problem.I never got the correct resolution until I enabled krandrtray to start with X and now I get the correct resolution and I get it when X starts.

Offline

Board footer

Powered by FluxBB