You are not logged in.

#1 2007-11-25 03:17:02

Zerathidune
Member
Registered: 2007-02-25
Posts: 102

DRI with xf86-video-intel

Hi, I'm trying to get DRI working with an Intel 945GM chipset,using the "intel" driver.

I found this thread:

http://bbs.archlinux.org/viewtopic.php?id=33211

and looked at my own /var/log/Xorg.0.log

something similar with pixmap was happening so I added the following line to my Device section:

Option "CacheLines" "800"

(My monitor resolution is 1280x800)

but this didn't solve the problem. here is the relevant section of the log:

(II) intel(0): Kernel reported 488960 total, 1 used
(II) intel(0): I830CheckAvailableMemory: 1955836 kB available
(==) intel(0): VideoRam: 262144 KB
(**) intel(0): Requested 800 cache lines
(II) intel(0): Attempting memory allocation with tiled buffers and
               large DRI memory manager reservation:
(II) intel(0): Allocating 800 scanlines for pixmap cache
(II) intel(0): Success.
(II) intel(0): Increasing the scanline pitch to allow tiling mode (1280 -> 2048).
(II) intel(0): Memory allocation layout:
(II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
(II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x        7f820000 physical)
(II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB)
(II) intel(0): 0x00032000-0x00032fff: overlay registers (4 kB, 0x        7f832000 physical)
(II) intel(0): 0x00040000-0x0107ffff: front buffer (16640 kB)
(II) intel(0): 0x007bf000:            end of stolen memory
(II) intel(0): 0x01080000-0x0108ffff: xaa scratch (64 kB)
(II) intel(0): 0x02000000-0x02ffffff: back buffer (10240 kB)
(II) intel(0): 0x03000000-0x03ffffff: depth buffer (10240 kB)
(II) intel(0): 0x04000000-0x05ffffff: DRI memory manager (32768 kB)
(II) intel(0): 0x06000000-0x07ffffff: textures (32768 kB)
(II) intel(0): 0x10000000:            end of aperture
(II) intel(0): front buffer is not tiled
(II) intel(0): back buffer is tiled
(II) intel(0): depth buffer is tiled
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
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
[drm] failed to load kernel module "i915"
(EE) [drm] drmOpen failed.
(EE) intel(0): [dri] DRIScreenInit failed. Disabling DRI.

and my xorg.conf (I'm trying to get compiz working, hence the AIGLX setup):

Section "ServerLayout"
    Identifier     "Xorg Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "PS/2 Mouse" "AlwaysCore"
    InputDevice    "Touchpad" "CorePointer"
    Option         "AIGLX" "true"
# Serial Mouse not detected
# USB Mouse not detected
EndSection

Section "ServerFlags"
    Option "AllowMouseOpenFail"  "true"
    
EndSection

Section "Files"
    RgbPath      "/usr/share/X11/rgb"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc:unscaled"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/100dpi"
    FontPath     "/usr/share/fonts/PEX"
# Additional fonts: Locale, Gimp, TTF...
    FontPath     "/usr/share/fonts/cyrillic"
#    FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
#    FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath     "/usr/share/fonts/Type1"
    FontPath     "/usr/share/fonts/ttf/western"
    FontPath     "/usr/share/fonts/ttf/decoratives"
    FontPath     "/usr/share/fonts/truetype"
    FontPath     "/usr/share/fonts/truetype/openoffice"
    FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath     "/usr/share/fonts/latex-ttf-fonts"
    FontPath     "/usr/share/fonts/defoma/CID"
    FontPath     "/usr/share/fonts/defoma/TrueType"
EndSection

Section "Module"
        Load  "ddc"  # ddc probing of monitor
    Load  "dbe"
    Load  "dri"
    Load  "extmod"
    Load  "glx"
        Load  "bitmap" # bitmap-fonts
    Load  "type1"
    Load  "freetype"
    Load  "record"
    Load  "synaptics"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "keyboard"
        Option      "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" ""
    Option "XkbVariant" ""
EndSection

Section "InputDevice"
    Identifier  "Touchpad"
    Driver      "synaptics"
    Option      "Protocol" "auto-dev"
    Option      "LeftEdge" "1700"
    Option      "Right Edge" "5300"
    Option      "TopEdge" "1700"
    Option      "BottomEdge" "4200"
    Option      "FingerLow" "25"
    Option      "FingerHigh" "30"
    Option      "MaxTapTime" "180"
    Option      "MaxTapMove" "220"
    Option      "VertScrollDelta" "100"
    Option      "MinSpeed" "0.06"
    Option      "MaxSpeed" "0.12"
    Option      "AccellFactor" "0.0010"
    Option      "SHMConfig" "on"
    Option      "SendCoreEvents" "true"
EndSection
Section "InputDevice"
    Identifier  "Serial Mouse"
    Driver      "mouse"
    Option      "Protocol" "Microsoft"
    Option      "Device" "/dev/ttyS0"
    Option      "Emulate3Buttons" "true"
    Option      "Emulate3Timeout" "70"
    Option        "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
    Identifier  "PS/2 Mouse"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option          "ZAxisMapping"          "4 5"
    Option      "Device" "/dev/psaux"
    Option      "Emulate3Buttons" "true"
    Option      "Emulate3Timeout" "70"
    Option        "SendCoreEvents"  "true"
EndSection

Section "InputDevice"
        Identifier      "USB Mouse"
        Driver          "mouse"
        Option          "Device"                "/dev/input/mice"
    Option        "SendCoreEvents"    "true"
        Option          "Protocol"              "IMPS/2"
        Option          "ZAxisMapping"          "4 5"
        Option          "Buttons"               "5"
EndSection

# Auto-generated by Archie mkxcfg

Section "Monitor"
    Identifier "Monitor0"
        Option "DPMS" "true"
#    HorizSync    28.0 - 78.0 # Warning: This may fry very old Monitors
    HorizSync    28.0 - 96.0 # Warning: This may fry old Monitors
    VertRefresh  50.0 - 75.0 # Very conservative. May flicker.
#    VertRefresh  50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    #  Default modes distilled from
    #      "VESA and Industry Standards and Guide for Computer Display Monitor
    #       Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    #  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x350"    31.5  640  672  736  832    350  382  385  445 +hsync -vsync
    # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x400"    31.5  640  672  736  832    400  401  404  445 -hsync +vsync
    # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "720x400"    35.5  720  756  828  936    400  401  404  446 -hsync +vsync
    # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
    ModeLine "640x480"    25.2  640  656  752  800    480  490  492  525 -hsync -vsync
    # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
    ModeLine "640x480"    31.5  640  664  704  832    480  489  491  520 -hsync -vsync
    # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
    ModeLine "640x480"    31.5  640  656  720  840    480  481  484  500 -hsync -vsync
    # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
    ModeLine "640x480"    36.0  640  696  752  832    480  481  484  509 -hsync -vsync
    # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
    ModeLine "800x600"    36.0  800  824  896 1024    600  601  603  625 +hsync +vsync
    # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
    ModeLine "800x600"    40.0  800  840  968 1056    600  601  605  628 +hsync +vsync
    # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
    ModeLine "800x600"    50.0  800  856  976 1040    600  637  643  666 +hsync +vsync
    # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
    ModeLine "800x600"    49.5  800  816  896 1056    600  601  604  625 +hsync +vsync
    # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
    ModeLine "800x600"    56.3  800  832  896 1048    600  601  604  631 +hsync +vsync
    # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
    ModeLine "1024x768"   44.9 1024 1032 1208 1264    768  768  776  817 +hsync +vsync Interlace
    # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
    ModeLine "1024x768"   65.0 1024 1048 1184 1344    768  771  777  806 -hsync -vsync
    # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
    ModeLine "1024x768"   75.0 1024 1048 1184 1328    768  771  777  806 -hsync -vsync
    # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
    ModeLine "1024x768"   78.8 1024 1040 1136 1312    768  769  772  800 +hsync +vsync
    # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
    ModeLine "1024x768"   94.5 1024 1072 1168 1376    768  769  772  808 +hsync +vsync
    # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
    ModeLine "1152x864"  108.0 1152 1216 1344 1600    864  865  868  900 +hsync +vsync
    # Extended modelines with GTF timings
    # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
    ModeLine "640x480"  43.16  640 680 744 848  480 481 484 509  -HSync +Vsync
    # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
    ModeLine "768x576"  34.96  768 792 872 976  576 577 580 597  -HSync +Vsync
    # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
    ModeLine "768x576"  42.93  768 800 880 992  576 577 580 601  -HSync +Vsync
    # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
    ModeLine "768x576"  45.51  768 808 888 1008  576 577 580 602  -HSync +Vsync
    # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
    ModeLine "768x576"  51.84  768 808 888 1008  576 577 580 605  -HSync +Vsync
    # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
    ModeLine "768x576"  62.57  768 816 896 1024  576 577 580 611  -HSync +Vsync
    # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
    ModeLine "800x600"  68.18  800 848 936 1072  600 601 604 636  -HSync +Vsync
    # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
    ModeLine "1024x768"  113.31  1024 1096 1208 1392  768 769 772 814  -HSync +Vsync
    # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
    ModeLine "1152x864"  81.62  1152 1216 1336 1520  864 865 868 895  -HSync +Vsync
    # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
    ModeLine "1152x864"  119.65  1152 1224 1352 1552  864 865 868 907  -HSync +Vsync
    # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
    ModeLine "1152x864"  143.47  1152 1232 1360 1568  864 865 868 915  -HSync +Vsync
    # 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
    ModeLine "1280x800"  83.46 1280 1344 1480 1680 800 801 804 828 
-HSync +VSync
EndSection

# Auto-generated by Archie mkxcfg

Section "Device"
    Identifier  "Card0"
    Driver      "intel"
    VendorName  "intel"
    BoardName   "All"
    Option        "XAANoOffscreenPixmaps" "true"
    Option         "DRI" "true"
    Option        "CacheLines" "800"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    DefaultColorDepth 24
    SubSection "Display"
        Depth     1
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     4
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     8
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     15
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     16
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     24
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Depth     32
        Modes "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

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

Section "DRI"
    Mode 0666
    Group 0
EndSection

Offline

#2 2007-12-05 00:22:26

Bogart
Member
From: Madrid, Spain
Registered: 2005-06-22
Posts: 272

Re: DRI with xf86-video-intel

Strange, it doesn't look like an xorg.conf problem. I have no idea what the problem could be, but I'll post the relevant section of my working Xorg.0.log in case it suggests something to anyone. It seems it needs to open by Busid, but in your case it doesn't try that:

(II) intel(0): front buffer is not tiled
(II) intel(0): back buffer is tiled
(II) intel(0): depth buffer is tiled
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
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:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: drmOpenMinor returns 10
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) [drm] loaded kernel module for "i915" driver.
(II) [drm] DRM interface version 1.3
(II) [drm] DRM open master succeeded.

Offline

#3 2007-12-05 03:17:10

Zerathidune
Member
Registered: 2007-02-25
Posts: 102

Re: DRI with xf86-video-intel

Actually, I should have mentioned I solved this, I had been using a custom built kernel, which didn't have the matching kernel module for the intel driver.

Offline

#4 2008-05-25 10:43:18

jiu
Member
From: Auckland, New Zealand
Registered: 2008-05-03
Posts: 31

Re: DRI with xf86-video-intel

Hi,
I am a new user of Archlinux having problems with getting hardware acceleration working using the intel driver. Not sure what the problem is, Xorg.0.log is very mysterious to me. Could someone help me make sense of it? The strange thing is that I had installed Arch on an external hd a week before to try it out, and dri worked fine then. I just copied the xorg.conf into this new installation (on the internal hd now), and now it's causing problems (glxgears doesn't show any movement and rendering in games is very slow).

Thanks a lot in advance for any help.

Here is the Xorg.0.log and I have also enclosed the xorg.conf file further down:

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.25-ARCH i686 
Current Operating System: Linux localhost 2.6.25-ARCH #1 SMP PREEMPT Fri May 16 14:52:43 CEST 2008 i686
Build Date: 22 May 2008  06:09:07PM
 
    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: Sun May 25 22:17:23 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"
(**) |-->Input Device "Touchpad"
(==) 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"
(**) Extension "Composite" is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e0900
(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.0.90, 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,3580 card 1734,1033 rev 02 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 8086,3584 card 1734,1033 rev 02 class 08,80,00 hdr 00
(II) PCI: 00:00:3: chip 8086,3585 card 1734,1033 rev 02 class 08,80,00 hdr 80
(II) PCI: 00:02:0: chip 8086,3582 card 1734,1033 rev 02 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,3582 card 1734,1033 rev 02 class 03,80,00 hdr 80
(II) PCI: 00:1d:0: chip 8086,24c2 card 1734,1033 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1734,1033 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1734,1033 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1734,1033 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev 83 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24cc card 0000,0000 rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24ca card 1734,1033 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1734,1033 rev 03 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1734,1033 rev 03 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,24c6 card 1734,1033 rev 03 class 07,03,00 hdr 00
(II) PCI: 02:03:0: chip 11c1,5811 card 1734,1033 rev 61 class 0c,00,10 hdr 00
(II) PCI: 02:05:0: chip 14e4,4401 card 17c0,1082 rev 01 class 02,00,00 hdr 00
(II) PCI: 02:06:0: chip 8086,1043 card 8086,2527 rev 04 class 02,80,00 hdr 00
(II) PCI: 02:09:0: chip 104c,ac56 card 3000,0000 rev 00 class 06,07,00 hdr 02
(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) Subtractive PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,6), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 2 I/O range:
    [0] -1    0    0x00003000 - 0x00003fff (0x1000) IX[b]
(II) Bus 2 non-prefetchable memory range:
    [0] -1    0    0xe0200000 - 0xe02fffff (0x100000) MX[b]
(II) Bus 2 prefetchable memory range:
    [0] -1    0    0x50000000 - 0x53ffffff (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:9:0), (2,3,6), BCTRL: 0x05c0 (VGA_EN is cleared)
(II) Bus 3 I/O range:
    [0] -1    0    0x00003000 - 0x000030ff (0x100) IX[b]
    [1] -1    0    0x00003400 - 0x000034ff (0x100) IX[b]
(II) Bus 3 prefetchable memory range:
    [0] -1    0    0x50000000 - 0x53ffffff (0x4000000) MX[b]
(--) PCI:*(0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/27, 0xe0000000/19, I/O @ 0x1800/3
(--) PCI: (0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/27, 0xe0080000/19
(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) Active PCI resource ranges:
    [0] -1    0    0xe0203000 - 0xe0203fff (0x1000) MX[b]
    [1] -1    0    0xe0200000 - 0xe0201fff (0x2000) MX[b]
    [2] -1    0    0xe0202000 - 0xe0202fff (0x1000) MX[b]
    [3] -1    0    0xe0100800 - 0xe01008ff (0x100) MX[b]
    [4] -1    0    0xe0100c00 - 0xe0100dff (0x200) MX[b]
    [5] -1    0    0x54000000 - 0x540003ff (0x400) MX[b]
    [6] -1    0    0xe0100000 - 0xe01003ff (0x400) MX[b]
    [7] -1    0    0xe0080000 - 0xe00fffff (0x80000) MX[b](B)
    [8] -1    0    0xf0000000 - 0xf7ffffff (0x8000000) MX[b](B)
    [9] -1    0    0xe0000000 - 0xe007ffff (0x80000) MX[b](B)
    [10] -1    0    0xe8000000 - 0xefffffff (0x8000000) MX[b](B)
    [11] -1    0    0x00002000 - 0x0000207f (0x80) IX[b]
    [12] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [13] -1    0    0x000018c0 - 0x000018ff (0x40) IX[b]
    [14] -1    0    0x00001c00 - 0x00001cff (0x100) IX[b]
    [15] -1    0    0x00001880 - 0x0000189f (0x20) IX[b]
    [16] -1    0    0x00001810 - 0x0000181f (0x10) IX[b]
    [17] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [18] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [19] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [20] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [21] -1    0    0x00001860 - 0x0000187f (0x20) IX[b]
    [22] -1    0    0x00001840 - 0x0000185f (0x20) IX[b]
    [23] -1    0    0x00001820 - 0x0000183f (0x20) IX[b]
    [24] -1    0    0x00001800 - 0x00001807 (0x8) IX[b](B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1    0    0xe0203000 - 0xe0203fff (0x1000) MX[b]
    [1] -1    0    0xe0200000 - 0xe0201fff (0x2000) MX[b]
    [2] -1    0    0xe0202000 - 0xe0202fff (0x1000) MX[b]
    [3] -1    0    0xe0100800 - 0xe01008ff (0x100) MX[b]
    [4] -1    0    0xe0100c00 - 0xe0100dff (0x200) MX[b]
    [5] -1    0    0x54000000 - 0x540003ff (0x400) MX[b]
    [6] -1    0    0xe0100000 - 0xe01003ff (0x400) MX[b]
    [7] -1    0    0xe0080000 - 0xe00fffff (0x80000) MX[b](B)
    [8] -1    0    0xf0000000 - 0xf7ffffff (0x8000000) MX[b](B)
    [9] -1    0    0xe0000000 - 0xe007ffff (0x80000) MX[b](B)
    [10] -1    0    0xe8000000 - 0xefffffff (0x8000000) MX[b](B)
    [11] -1    0    0x00002000 - 0x0000207f (0x80) IX[b]
    [12] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [13] -1    0    0x000018c0 - 0x000018ff (0x40) IX[b]
    [14] -1    0    0x00001c00 - 0x00001cff (0x100) IX[b]
    [15] -1    0    0x00001880 - 0x0000189f (0x20) IX[b]
    [16] -1    0    0x00001810 - 0x0000181f (0x10) IX[b]
    [17] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [18] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [19] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [20] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [21] -1    0    0x00001860 - 0x0000187f (0x20) IX[b]
    [22] -1    0    0x00001840 - 0x0000185f (0x20) IX[b]
    [23] -1    0    0x00001820 - 0x0000183f (0x20) IX[b]
    [24] -1    0    0x00001800 - 0x00001807 (0x8) 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    0xe0203000 - 0xe0203fff (0x1000) MX[b]
    [5] -1    0    0xe0200000 - 0xe0201fff (0x2000) MX[b]
    [6] -1    0    0xe0202000 - 0xe0202fff (0x1000) MX[b]
    [7] -1    0    0xe0100800 - 0xe01008ff (0x100) MX[b]
    [8] -1    0    0xe0100c00 - 0xe0100dff (0x200) MX[b]
    [9] -1    0    0x54000000 - 0x540003ff (0x400) MX[b]
    [10] -1    0    0xe0100000 - 0xe01003ff (0x400) MX[b]
    [11] -1    0    0xe0080000 - 0xe00fffff (0x80000) MX[b](B)
    [12] -1    0    0xf0000000 - 0xf7ffffff (0x8000000) MX[b](B)
    [13] -1    0    0xe0000000 - 0xe007ffff (0x80000) MX[b](B)
    [14] -1    0    0xe8000000 - 0xefffffff (0x8000000) MX[b](B)
    [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [17] -1    0    0x00002000 - 0x0000207f (0x80) IX[b]
    [18] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [19] -1    0    0x000018c0 - 0x000018ff (0x40) IX[b]
    [20] -1    0    0x00001c00 - 0x00001cff (0x100) IX[b]
    [21] -1    0    0x00001880 - 0x0000189f (0x20) IX[b]
    [22] -1    0    0x00001810 - 0x0000181f (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    0x00001860 - 0x0000187f (0x20) IX[b]
    [28] -1    0    0x00001840 - 0x0000185f (0x20) IX[b]
    [29] -1    0    0x00001820 - 0x0000183f (0x20) IX[b]
    [30] -1    0    0x00001800 - 0x00001807 (0x8) 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: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
    compiled for 1.4.0.90, 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: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.0.90, 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: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.0.90, 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: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.0.90, 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.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(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.0.90, 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: "synaptics"
(WW) Warning, couldn't open module synaptics
(II) UnloadModule: "synaptics"
(EE) Failed to load module "synaptics" (module does not exist, 0)
(II) LoadModule: "intel"
(II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
(II) Module intel: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 2.3.1
    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.0, module version = 1.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
(II) LoadModule: "synaptics"
(WW) Warning, couldn't open module synaptics
(II) UnloadModule: "synaptics"
(EE) Failed to load module "synaptics" (module does not exist, 0)
(II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33, Intel Integrated Graphics Device
(II) Primary Device is: PCI 00:02:0
(--) Chipset 852GM/855GM found
(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    0xe0203000 - 0xe0203fff (0x1000) MX[b]
    [5] -1    0    0xe0200000 - 0xe0201fff (0x2000) MX[b]
    [6] -1    0    0xe0202000 - 0xe0202fff (0x1000) MX[b]
    [7] -1    0    0xe0100800 - 0xe01008ff (0x100) MX[b]
    [8] -1    0    0xe0100c00 - 0xe0100dff (0x200) MX[b]
    [9] -1    0    0x54000000 - 0x540003ff (0x400) MX[b]
    [10] -1    0    0xe0100000 - 0xe01003ff (0x400) MX[b]
    [11] -1    0    0xe0080000 - 0xe00fffff (0x80000) MX[b](B)
    [12] -1    0    0xf0000000 - 0xf7ffffff (0x8000000) MX[b](B)
    [13] -1    0    0xe0000000 - 0xe007ffff (0x80000) MX[b](B)
    [14] -1    0    0xe8000000 - 0xefffffff (0x8000000) MX[b](B)
    [15] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [16] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [17] -1    0    0x00002000 - 0x0000207f (0x80) IX[b]
    [18] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [19] -1    0    0x000018c0 - 0x000018ff (0x40) IX[b]
    [20] -1    0    0x00001c00 - 0x00001cff (0x100) IX[b]
    [21] -1    0    0x00001880 - 0x0000189f (0x20) IX[b]
    [22] -1    0    0x00001810 - 0x0000181f (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    0x00001860 - 0x0000187f (0x20) IX[b]
    [28] -1    0    0x00001840 - 0x0000185f (0x20) IX[b]
    [29] -1    0    0x00001820 - 0x0000183f (0x20) IX[b]
    [30] -1    0    0x00001800 - 0x00001807 (0x8) IX[b](B)
(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    0xe0203000 - 0xe0203fff (0x1000) MX[b]
    [5] -1    0    0xe0200000 - 0xe0201fff (0x2000) MX[b]
    [6] -1    0    0xe0202000 - 0xe0202fff (0x1000) MX[b]
    [7] -1    0    0xe0100800 - 0xe01008ff (0x100) MX[b]
    [8] -1    0    0xe0100c00 - 0xe0100dff (0x200) MX[b]
    [9] -1    0    0x54000000 - 0x540003ff (0x400) MX[b]
    [10] -1    0    0xe0100000 - 0xe01003ff (0x400) MX[b]
    [11] -1    0    0xe0080000 - 0xe00fffff (0x80000) MX[b](B)
    [12] -1    0    0xf0000000 - 0xf7ffffff (0x8000000) MX[b](B)
    [13] -1    0    0xe0000000 - 0xe007ffff (0x80000) MX[b](B)
    [14] -1    0    0xe8000000 - 0xefffffff (0x8000000) MX[b](B)
    [15] 1    0    0x000a0000 - 0x000affff (0x10000) MS[b]
    [16] 1    0    0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [17] 1    0    0x000b8000 - 0x000bffff (0x8000) MS[b]
    [18] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [20] -1    0    0x00002000 - 0x0000207f (0x80) IX[b]
    [21] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [22] -1    0    0x000018c0 - 0x000018ff (0x40) IX[b]
    [23] -1    0    0x00001c00 - 0x00001cff (0x100) IX[b]
    [24] -1    0    0x00001880 - 0x0000189f (0x20) IX[b]
    [25] -1    0    0x00001810 - 0x0000181f (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    0x00001860 - 0x0000187f (0x20) IX[b]
    [31] -1    0    0x00001840 - 0x0000185f (0x20) IX[b]
    [32] -1    0    0x00001820 - 0x0000183f (0x20) IX[b]
    [33] -1    0    0x00001800 - 0x00001807 (0x8) IX[b](B)
    [34] 1    0    0x000003b0 - 0x000003bb (0xc) IS[b]
    [35] 1    0    0x000003c0 - 0x000003df (0x20) IS[b]
(II) Setting vga for screen 0.
(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.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(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.0.90, module version = 1.1.0
    ABI class: X.Org Video Driver, version 2.0
(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.0.90, module version = 0.1.0
    ABI class: X.Org Video Driver, version 2.0
(**) intel(0): Depth 24, (--) framebuffer bpp 32
(==) intel(0): RGB weight 888
(==) intel(0): Default visual is TrueColor
(II) intel(0): Integrated Graphics Chipset: Intel(R) 855GM
(--) intel(0): Chipset: "852GM/855GM"
(--) intel(0): Linear framebuffer at 0xE8000000
(--) intel(0): IO registers at addr 0xE0000000
(II) intel(0): 2 display pipes available.
(==) intel(0): Using EXA for acceleration
(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) intel(0): Output VGA using monitor section Monitor0
(II) intel(0): I2C bus "CRTDDC_A" initialized.
(II) intel(0): Output LVDS has no monitor section
(II) intel(0): I2C bus "LVDSDDC_C" initialized.
(II) intel(0): Attempting to determine panel fixed mode.
(II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
(II) intel(0): I2C device "LVDSDDC_C:ddc2" removed.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules//libint10.so
(II) intel(0): initializing int10
(II) intel(0): Primary V_BIOS segment is: 0xc000
(II) intel(0): VESA BIOS detected
(II) intel(0): VESA VBE Version 3.0
(II) intel(0): VESA VBE Total Mem: 8000 kB
(II) intel(0): VESA VBE OEM: Intel(r)852MG/852MGE/855MG/855MGE Graphics Chip Accelerated VGA BIOS
(II) intel(0): VESA VBE OEM Software Rev: 1.0
(II) intel(0): VESA VBE OEM Vendor: Intel Corporation
(II) intel(0): VESA VBE OEM Product: Intel(r)852MG/852MGE/855MG/855MGE Graphics Controller
(II) intel(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) intel(0): I2C bus "DVODDC_D" initialized.
(II) Loading sub module "sil164"
(II) LoadModule: "sil164"
(II) Loading /usr/lib/xorg/modules/drivers//sil164.so
(II) Module sil164: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) intel(0): I2C bus "DVOI2C_E" initialized.
(II) Loading sub module "ch7xxx"
(II) LoadModule: "ch7xxx"
(II) Loading /usr/lib/xorg/modules/drivers//ch7xxx.so
(II) Module ch7xxx: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) intel(0): I2C bus "DVOI2C_E" removed.
(II) intel(0): I2C bus "DVOI2C_E" initialized.
(II) Loading sub module "ivch"
(II) LoadModule: "ivch"
(II) Loading /usr/lib/xorg/modules/drivers//ivch.so
(II) Module ivch: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) intel(0): I2C bus "DVOI2C_E" removed.
(II) intel(0): I2C bus "DVOI2C_B" initialized.
(II) Loading sub module "tfp410"
(II) LoadModule: "tfp410"
(II) Loading /usr/lib/xorg/modules/drivers//tfp410.so
(II) Module tfp410: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) intel(0): I2C bus "DVOI2C_B" removed.
(II) intel(0): I2C bus "DVOI2C_E" initialized.
(II) Loading sub module "ch7017"
(II) LoadModule: "ch7017"
(II) Loading /usr/lib/xorg/modules/drivers//ch7017.so
(II) Module ch7017: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
(II) intel(0): I2C bus "DVOI2C_E" removed.
(II) intel(0): I2C bus "DVOI2C_E" initialized.
(II) intel(0): I2C bus "DVOI2C_E" removed.
(II) intel(0): I2C bus "DVODDC_D" removed.
(II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
(II) intel(0): I2C device "LVDSDDC_C:ddc2" removed.
(II) intel(0): Output VGA disconnected
(II) intel(0): Output LVDS connected
(II) intel(0): Output LVDS using initial mode 1024x768
(II) intel(0): Monitoring connected displays enabled
(II) intel(0): detected 128 kB GTT.
(II) intel(0): detected 8060 kB stolen memory.
(==) intel(0): video overlay key set to 0x101fe
(==) intel(0): Will not try to enable page flipping
(==) intel(0): Triple buffering disabled
(==) intel(0): Intel XvMC decoder disabled
(==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
(==) intel(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.0.90, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "exa"
(II) LoadModule: "exa"
(II) Loading /usr/lib/xorg/modules//libexa.so
(II) Module exa: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 2.2.0
    ABI class: X.Org Video Driver, version 2.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
(II) intel(0): Comparing regs from server start up to After PreInit
(WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
(WW) intel(0): PP_STATUS before: on, ready, sequencing idle
(WW) intel(0): PP_STATUS after: on, ready, sequencing on
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] 1    0    0xe0000000 - 0xe007ffff (0x80000) MS[b]
    [1] 1    0    0xe8000000 - 0xefffffff (0x8000000) MS[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    0xe0203000 - 0xe0203fff (0x1000) MX[b]
    [7] -1    0    0xe0200000 - 0xe0201fff (0x2000) MX[b]
    [8] -1    0    0xe0202000 - 0xe0202fff (0x1000) MX[b]
    [9] -1    0    0xe0100800 - 0xe01008ff (0x100) MX[b]
    [10] -1    0    0xe0100c00 - 0xe0100dff (0x200) MX[b]
    [11] -1    0    0x54000000 - 0x540003ff (0x400) MX[b]
    [12] -1    0    0xe0100000 - 0xe01003ff (0x400) MX[b]
    [13] -1    0    0xe0080000 - 0xe00fffff (0x80000) MX[b](B)
    [14] -1    0    0xf0000000 - 0xf7ffffff (0x8000000) MX[b](B)
    [15] -1    0    0xe0000000 - 0xe007ffff (0x80000) MX[b](B)
    [16] -1    0    0xe8000000 - 0xefffffff (0x8000000) MX[b](B)
    [17] 1    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [18] 1    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [19] 1    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [20] 1    0    0x00001800 - 0x00001807 (0x8) IS[b]
    [21] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [22] -1    0    0x00000000 - 0x000000ff (0x100) IX[b]
    [23] -1    0    0x00002000 - 0x0000207f (0x80) IX[b]
    [24] -1    0    0x00002400 - 0x000024ff (0x100) IX[b]
    [25] -1    0    0x000018c0 - 0x000018ff (0x40) IX[b]
    [26] -1    0    0x00001c00 - 0x00001cff (0x100) IX[b]
    [27] -1    0    0x00001880 - 0x0000189f (0x20) IX[b]
    [28] -1    0    0x00001810 - 0x0000181f (0x10) IX[b]
    [29] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [30] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [31] -1    0    0x000001f0 - 0x000001f0 (0x1) IX[b]
    [32] -1    0    0x000001f0 - 0x000001f7 (0x8) IX[b]
    [33] -1    0    0x00001860 - 0x0000187f (0x20) IX[b]
    [34] -1    0    0x00001840 - 0x0000185f (0x20) IX[b]
    [35] -1    0    0x00001820 - 0x0000183f (0x20) IX[b]
    [36] -1    0    0x00001800 - 0x00001807 (0x8) IX[b](B)
    [37] 1    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [38] 1    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
(II) intel(0): Kernel reported 238592 total, 1 used
(II) intel(0): I830CheckAvailableMemory: 954364 kB available
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 9, (OK)
drmOpenByBusid: drmOpenMinor returns 9
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) [drm] DRM interface version 1.3
(II) [drm] DRM open master succeeded.
(II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
(II) intel(0): [drm] framebuffer mapped by ddx driver
(II) intel(0): [drm] added 1 reserved context for kernel
(II) intel(0): X context handle = 0x1
(II) intel(0): [drm] installed DRM signal handler
(**) intel(0): Framebuffer compression enabled
(**) intel(0): Tiling enabled
(==) intel(0): VideoRam: 131072 KB
(II) intel(0): Attempting memory allocation with tiled buffers.
(WW) intel(0): xf86AllocateGARTMemory: allocation of 1536 pages failed
    (Cannot allocate memory)
(WW) intel(0): Allocation error, framebuffer compression disabled
(WW) intel(0): xf86AllocateGARTMemory: allocation of 10 pages failed
    (Cannot allocate memory)
(II) intel(0): Tiled allocation successful.
(II) intel(0): [drm] Registers = 0xe0000000
(II) intel(0): [drm] ring buffer = 0xe8000000
(II) intel(0): [drm] mapped front buffer at 0xe8800000, handle = 0xe8800000
(II) intel(0): [drm] mapped back buffer at 0xe9800000, handle = 0xe9800000
(II) intel(0): [drm] mapped depth buffer at 0xe9c00000, handle = 0xe9c00000
(II) intel(0): [drm] mapped classic textures at 0xea000000, handle = 0xea000000
(II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
(II) intel(0): [dri] visual configs initialized
(II) intel(0): Page Flipping disabled
(==) intel(0): Write-combining range (0xe8000000,0x8000000)
(II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) EXA(0): Offscreen pixmap area of 12582912 bytes
(II) EXA(0): Driver registered support for the following operations:
(II)         Solid
(II)         Copy
(II)         Composite (RENDER acceleration)
(==) intel(0): Backing store disabled
(==) intel(0): Silken mouse enabled
(II) intel(0): Initializing HW Cursor
(II) intel(0): [DRI] installation complete
(II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
(II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e0000 (pgoffset 2016)
(II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
(II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
(II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
(II) intel(0): xf86BindGARTMemory: bind key 5 at 0x00800000 (pgoffset 2048)
(II) intel(0): xf86BindGARTMemory: bind key 6 at 0x00c00000 (pgoffset 3072)
(II) intel(0): xf86BindGARTMemory: bind key 7 at 0x01800000 (pgoffset 6144)
(II) intel(0): xf86BindGARTMemory: bind key 8 at 0x01c00000 (pgoffset 7168)
(II) intel(0): xf86BindGARTMemory: bind key 9 at 0x02000000 (pgoffset 8192)
(II) intel(0): Fixed memory allocation layout:
(II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
(II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB)
(II) intel(0): 0x007df000:            end of stolen memory
(II) intel(0): 0x007df000-0x007dffff: Core cursor (4 kB, 0x0000000025734000 physical
)
(II) intel(0): 0x007e0000-0x007e3fff: ARGB cursor (16 kB, 0x000000001e9c8000 physical
)
(II) intel(0): 0x007e4000-0x007e4fff: Core cursor (4 kB, 0x00000000255cc000 physical
)
(II) intel(0): 0x007e5000-0x007e8fff: ARGB cursor (16 kB, 0x00000000257cc000 physical
)
(II) intel(0): 0x007e9000-0x007e9fff: overlay registers (4 kB, 0x00000000370cc000 physical
)
(II) intel(0): 0x00800000-0x00bfffff: front buffer (4096 kB) X tiled
(II) intel(0): 0x00c00000-0x017fffff: exa offscreen (12288 kB)
(II) intel(0): 0x01800000-0x01bfffff: back buffer (4096 kB) X tiled
(II) intel(0): 0x01c00000-0x01ffffff: depth buffer (4096 kB) X tiled
(II) intel(0): 0x02000000-0x03ffffff: classic textures (32768 kB)
(II) intel(0): 0x08000000:            end of aperture
(WW) intel(0): Chosen PLL clock of 66.6 Mhz more than 2% away from desired 64.2 Mhz
(II) intel(0): Selecting standard 18 bit TMDS pixel format.
(II) intel(0): Output configuration:
(II) intel(0):   Pipe A is off
(II) intel(0):   Display plane A is now disabled and connected to pipe A.
(II) intel(0):   Pipe B is on
(II) intel(0):   Display plane B is now enabled and connected to pipe B.
(II) intel(0):   Output VGA is connected to pipe none
(II) intel(0):   Output LVDS is connected to pipe B
(II) intel(0): [drm] dma control initialized, using IRQ 11
(II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
(II) intel(0): Set up overlay video
(II) intel(0): direct rendering: Enabled
(--) 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 10, (OK)
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: drmOpenMinor returns 10
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.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/i915_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(II) intel(0): Setting screen physical size to 270 x 203
(**) 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" "us"
(**) Keyboard0: XkbLayout: "us"
(**) Option "CustomKeycodes" "off"
(**) Keyboard0: CustomKeycodes disabled
(EE) No Input driver matching `synaptics'
(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
(II) AIGLX: Suspending AIGLX clients for VT switch
(II) intel(0): xf86UnbindGARTMemory: unbind key 0
(II) intel(0): xf86UnbindGARTMemory: unbind key 1
(II) intel(0): xf86UnbindGARTMemory: unbind key 2
(II) intel(0): xf86UnbindGARTMemory: unbind key 3
(II) intel(0): xf86UnbindGARTMemory: unbind key 4
(II) intel(0): xf86UnbindGARTMemory: unbind key 5
(II) intel(0): xf86UnbindGARTMemory: unbind key 6
(II) intel(0): xf86UnbindGARTMemory: unbind key 7
(II) intel(0): xf86UnbindGARTMemory: unbind key 8
(II) intel(0): xf86UnbindGARTMemory: unbind key 9
(II) Open ACPI successful (/var/run/acpid.socket)
(II) AIGLX: Resuming AIGLX clients after VT switch
(II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
(II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e0000 (pgoffset 2016)
(II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
(II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
(II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
(II) intel(0): xf86BindGARTMemory: bind key 5 at 0x00800000 (pgoffset 2048)
(II) intel(0): xf86BindGARTMemory: bind key 6 at 0x00c00000 (pgoffset 3072)
(II) intel(0): xf86BindGARTMemory: bind key 7 at 0x01800000 (pgoffset 6144)
(II) intel(0): xf86BindGARTMemory: bind key 8 at 0x01c00000 (pgoffset 7168)
(II) intel(0): xf86BindGARTMemory: bind key 9 at 0x02000000 (pgoffset 8192)
(II) intel(0): Fixed memory allocation layout:
(II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
(II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB)
(II) intel(0): 0x007df000:            end of stolen memory
(II) intel(0): 0x007df000-0x007dffff: Core cursor (4 kB, 0x0000000025734000 physical
)
(II) intel(0): 0x007e0000-0x007e3fff: ARGB cursor (16 kB, 0x000000001e9c8000 physical
)
(II) intel(0): 0x007e4000-0x007e4fff: Core cursor (4 kB, 0x00000000255cc000 physical
)
(II) intel(0): 0x007e5000-0x007e8fff: ARGB cursor (16 kB, 0x00000000257cc000 physical
)
(II) intel(0): 0x007e9000-0x007e9fff: overlay registers (4 kB, 0x00000000370cc000 physical
)
(II) intel(0): 0x00800000-0x00bfffff: front buffer (4096 kB) X tiled
(II) intel(0): 0x00c00000-0x017fffff: exa offscreen (12288 kB)
(II) intel(0): 0x01800000-0x01bfffff: back buffer (4096 kB) X tiled
(II) intel(0): 0x01c00000-0x01ffffff: depth buffer (4096 kB) X tiled
(II) intel(0): 0x02000000-0x03ffffff: classic textures (32768 kB)
(II) intel(0): 0x08000000:            end of aperture
(WW) intel(0): Chosen PLL clock of 66.6 Mhz more than 2% away from desired 64.2 Mhz
(II) intel(0): Selecting standard 18 bit TMDS pixel format.
(II) intel(0): Output configuration:
(II) intel(0):   Pipe A is off
(II) intel(0):   Display plane A is now disabled and connected to pipe A.
(II) intel(0):   Pipe B is on
(II) intel(0):   Display plane B is now enabled and connected to pipe B.
(II) intel(0):   Output VGA is connected to pipe none
(II) intel(0):   Output LVDS is connected to pipe B
(II) intel(0): [drm] mapped front buffer at 0xe8800000, handle = 0x2d100000
(II) intel(0): [drm] dma control initialized, using IRQ 11
(II) Mouse0: ps2EnableDataReporting: succeeded
(II) AIGLX: Suspending AIGLX clients for VT switch
(II) intel(0): xf86UnbindGARTMemory: unbind key 0
(II) intel(0): xf86UnbindGARTMemory: unbind key 1
(II) intel(0): xf86UnbindGARTMemory: unbind key 2
(II) intel(0): xf86UnbindGARTMemory: unbind key 3
(II) intel(0): xf86UnbindGARTMemory: unbind key 4
(II) intel(0): xf86UnbindGARTMemory: unbind key 5
(II) intel(0): xf86UnbindGARTMemory: unbind key 6
(II) intel(0): xf86UnbindGARTMemory: unbind key 7
(II) intel(0): xf86UnbindGARTMemory: unbind key 8
(II) intel(0): xf86UnbindGARTMemory: unbind key 9
(II) Open ACPI successful (/var/run/acpid.socket)
(II) AIGLX: Resuming AIGLX clients after VT switch
(II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
(II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e0000 (pgoffset 2016)
(II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
(II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
(II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
(II) intel(0): xf86BindGARTMemory: bind key 5 at 0x00800000 (pgoffset 2048)
(II) intel(0): xf86BindGARTMemory: bind key 6 at 0x00c00000 (pgoffset 3072)
(II) intel(0): xf86BindGARTMemory: bind key 7 at 0x01800000 (pgoffset 6144)
(II) intel(0): xf86BindGARTMemory: bind key 8 at 0x01c00000 (pgoffset 7168)
(II) intel(0): xf86BindGARTMemory: bind key 9 at 0x02000000 (pgoffset 8192)
(II) intel(0): Fixed memory allocation layout:
(II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
(II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB)
(II) intel(0): 0x007df000:            end of stolen memory
(II) intel(0): 0x007df000-0x007dffff: Core cursor (4 kB, 0x0000000025734000 physical
)
(II) intel(0): 0x007e0000-0x007e3fff: ARGB cursor (16 kB, 0x000000001e9c8000 physical
)
(II) intel(0): 0x007e4000-0x007e4fff: Core cursor (4 kB, 0x00000000255cc000 physical
)
(II) intel(0): 0x007e5000-0x007e8fff: ARGB cursor (16 kB, 0x00000000257cc000 physical
)
(II) intel(0): 0x007e9000-0x007e9fff: overlay registers (4 kB, 0x00000000370cc000 physical
)
(II) intel(0): 0x00800000-0x00bfffff: front buffer (4096 kB) X tiled
(II) intel(0): 0x00c00000-0x017fffff: exa offscreen (12288 kB)
(II) intel(0): 0x01800000-0x01bfffff: back buffer (4096 kB) X tiled
(II) intel(0): 0x01c00000-0x01ffffff: depth buffer (4096 kB) X tiled
(II) intel(0): 0x02000000-0x03ffffff: classic textures (32768 kB)
(II) intel(0): 0x08000000:            end of aperture
(WW) intel(0): Chosen PLL clock of 66.6 Mhz more than 2% away from desired 64.2 Mhz
(II) intel(0): Selecting standard 18 bit TMDS pixel format.
(II) intel(0): Output configuration:
(II) intel(0):   Pipe A is off
(II) intel(0):   Display plane A is now disabled and connected to pipe A.
(II) intel(0):   Pipe B is on
(II) intel(0):   Display plane B is now enabled and connected to pipe B.
(II) intel(0):   Output VGA is connected to pipe none
(II) intel(0):   Output LVDS is connected to pipe B
(II) intel(0): [drm] dma control initialized, using IRQ 11
(II) Mouse0: ps2EnableDataReporting: succeeded
(II) 3rd Button detected: disabling emulate3Button

and xorg.conf:

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  "xtrap"
    Load  "GLcore"
    Load  "dbe"
    Load  "glx"
    Load  "extmod"
    Load  "record"
    Load  "dri"
    Load  "freetype"
    Load  "synaptics"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option      "XkbdLayout" "de:sundeadkeys"
EndSection

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

Section "InputDevice"
    Identifier  "Touchpad"
    Driver      "synaptics"
    Option  "Device"        "/dev/input/mouse1"
    Option  "Protocol"      "auto-dev"
    Option  "LeftEdge"      "1700"
    Option  "RightEdge"     "5300"
    Option  "TopEdge"       "1700"
    Option  "BottomEdge"    "4200"
    Option  "FingerLow"     "25"
    Option  "FingerHigh"    "30"
    Option  "MaxTapTime"    "180"
    Option  "MaxTapMove"    "220"
    Option  "VertScrollDelta" "100"
    Option  "MinSpeed"      "0.06"
    Option  "MaxSpeed"      "0.18"
    Option  "AccelFactor" "0.0010"
    Option  "SHMConfig"     "on"
EndSection
                                
Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
    HorizSync     30.0 - 130.0
    VertRefresh   50.0 - 100.0
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     "ColorKey"               # <i>
        #Option     "CacheLines"             # <i>
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "DRI"                    # [<bool>]
        #Option     "NoDDC"                  # [<bool>]
        #Option     "ShowCache"              # [<bool>]
        #Option     "XvMCSurfaces"           # <i>
        #Option     "PageFlip"               # [<bool>]
    Identifier  "Card0"
    Driver      "intel"
    VendorName  "Intel Corporation"
    BoardName   "82852/855GM Integrated Graphics Device"
    BusID       "PCI:0:2: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 "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

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

Offline

#5 2008-05-25 21:43:35

metal
Member
From: Russia,Moscow
Registered: 2006-01-23
Posts: 45

Re: DRI with xf86-video-intel

I don't use composite, so I don't have troubles. But, I have same bugs.  Write about it in bugs. It's fault of last intel driver or mesa.

Offline

#6 2008-05-25 22:41:31

jiu
Member
From: Auckland, New Zealand
Registered: 2008-05-03
Posts: 31

Re: DRI with xf86-video-intel

So if you don't use composite, can you still get hardware acceleration working? I'll try it when I get back home.
I'm not sure where to post it for bugs but it seems to me I wouldn't be the first one to encounter this one, so there's prpobably already a bug report somewhere.

If anyone finds out how to solve this pb, I'd be very interested.

Cheers,

Jacques

Offline

#7 2008-05-25 23:05:06

metal
Member
From: Russia,Moscow
Registered: 2006-01-23
Posts: 45

Re: DRI with xf86-video-intel

I posted bug. I downgraded to mesa to 7.0.3rc2-1, glxgears runs, but I think slow.

Offline

#8 2008-05-25 23:19:42

jiu
Member
From: Auckland, New Zealand
Registered: 2008-05-03
Posts: 31

Re: DRI with xf86-video-intel

so did you get dri working?

Offline

Board footer

Powered by FluxBB