|
Home > Archive > Cheap Linux Hardware > December 2007 > xorg-x11 wont support 1440x900
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
xorg-x11 wont support 1440x900
|
|
|
| Hi
Hope this is the right group to post this.
My Viewsonic VG1930wm won't display 1440x900, its preferred
resolution.
OS: Centos 5
Video card: Intel 82865G
Display: Viewsonic VG1930wm
xorg.conf:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1400x1050" "1280x1024" "1280x960"
"1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
This xorg.conf was created by putting an error in the original conf
and restarting the x-server which reported the error and asked if the
conf file should be rebuilt.
It presents the wide array of resolution choices shown a the end of
the conf file.
But when I use the "system-admin-display" utility only 1280x1024 and
below is shown. And the hightest resolution is always 1280x1024.
Stepping
through the resolutions using alt-ctl +, gets only 1024x768 800x600
640x480 and back to 1280x1024
I have also defined the display as a generic LCD of larger size
using
the "system-admin-display" utility but no difference.
Any Ideas ?
Jim
| |
| Anton Ertl 2007-11-12, 7:15 pm |
| jamby <hoodcanaljim@usa.com> writes:
>Hi
>
> Hope this is the right group to post this.
>
>My Viewsonic VG1930wm won't display 1440x900, its preferred
>resolution.
>
>OS: Centos 5
>Video card: Intel 82865G
>Display: Viewsonic VG1930wm
>
>xorg.conf:
># Xorg configuration created by system-config-display
>
>Section "ServerLayout"
> Identifier "single head configuration"
> Screen 0 "Screen0" 0 0
> InputDevice "Keyboard0" "CoreKeyboard"
>EndSection
>
>Section "InputDevice"
> Identifier "Keyboard0"
> Driver "kbd"
> Option "XkbModel" "pc105"
> Option "XkbLayout" "us"
>EndSection
>
>Section "Device"
> Identifier "Videocard0"
> Driver "i810"
>EndSection
>
>Section "Screen"
> Identifier "Screen0"
> Device "Videocard0"
> DefaultDepth 24
> SubSection "Display"
> Viewport 0 0
> Depth 24
> Modes "1440x900" "1400x1050" "1280x1024" "1280x960"
>"1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
> EndSubSection
>EndSection
....
> But when I use the "system-admin-display" utility only 1280x1024 and
>below is shown. And the hightest resolution is always 1280x1024.
Well, if you showed us the /var/log/Xorg.0.log, we could say for sure,
but my guess is that the X server does not know a 1440x900 mode (and
the monitor does not report one, either; AFAIK that's not a standard
VESA resolution, and there is no EDID way to report such resolutions).
So what you have to do is to specify a mode yourself. Maybe something
like the following (adapted from a 1600x1200 mode):
Modeline "1440x900" 114.0 1440 1504 1696 2000 900 901 904 950
Put that line in the Section "Monitor" (which you apparently have to
create yourself, and reference in Section "Screen"). For an example
of how a config file with a Monitor section looks, see, e.g.,
<http://www.complang.tuwien.ac.at/anton/XF86Config.r1920> (if you take
that as example, you also want to copy the Section "Modes", and put
the mode line there).
If the mode is a little off, you can fine-tune with xvidtune.
- anton
--
M. Anton Ertl Some things have to be seen to be believed
anton@mips.complang.tuwien.ac.at Most things have to be believed to be seen
http://www.complang.tuwien.ac.at/anton/home.html
| |
|
| On Mon, 12 Nov 2007 07:56:46 -0800, jamby wrote:
> Hi
>
> Hope this is the right group to post this.
>
> My Viewsonic VG1930wm won't display 1440x900, its preferred
> resolution.
>
> OS: Centos 5
> Video card: Intel 82865G
> Display: Viewsonic VG1930wm
>
> xorg.conf:
> # Xorg configuration created by system-config-display
>
> Section "ServerLayout"
> Identifier "single head configuration"
> Screen 0 "Screen0" 0 0
> InputDevice "Keyboard0" "CoreKeyboard"
> EndSection
>
> Section "InputDevice"
> Identifier "Keyboard0"
> Driver "kbd"
> Option "XkbModel" "pc105"
> Option "XkbLayout" "us"
> EndSection
>
> Section "Device"
> Identifier "Videocard0"
> Driver "i810"
> EndSection
>
> Section "Screen"
> Identifier "Screen0"
> Device "Videocard0"
> DefaultDepth 24
> SubSection "Display"
> Viewport 0 0
> Depth 24
> Modes "1440x900" "1400x1050" "1280x1024" "1280x960"
> "1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
> EndSubSection
> EndSection
>
>
>
> This xorg.conf was created by putting an error in the original conf
> and restarting the x-server which reported the error and asked if the
> conf file should be rebuilt.
> It presents the wide array of resolution choices shown a the end of
> the conf file.
> But when I use the "system-admin-display" utility only 1280x1024 and
> below is shown. And the hightest resolution is always 1280x1024.
> Stepping
> through the resolutions using alt-ctl +, gets only 1024x768 800x600
> 640x480 and back to 1280x1024
> I have also defined the display as a generic LCD of larger size
> using
> the "system-admin-display" utility but no difference.
>
> Any Ideas ?
> Jim
A better way to find out what is acutally available is 'xrandr'.
FWIW - I just solved that problem on my mini-itx - your situation may be
different, but in checking for man page for the via driver on my mini-itx
I found that I needed to make sure the dot clock was one of the supported
discrete frequencies - so I used
xtiming.sourceforge.net/cgi-bin/xtiming.pl to generate a modeline that
worked for me. What I needed for 1440x900 was a dotclock of 108mhz instead
of the 'standard' 106.5 since the former is supported and the latter is
not.
Modeline "1440x900" 108 1440 1520 1672 1904 900 903 909 934
worked in my case. Your problems may or may not be similar, but start with
the man page for your adapter. Also, are you using the
xserver-xorg-video-intel driver? Before that came along, I had one hell of
a time with my laptop display.
| |
| Henrik Carlqvist 2007-11-12, 7:15 pm |
| jamby <hoodcanaljim@usa.com> wrote:
> My Viewsonic VG1930wm won't display 1440x900, its preferred
> resolution.
> Video card: Intel 82865G
To be able to use widescreen resolutions with your intel graphics you
probably need to run a utility called
915resoluiton:
http://www.geocities.com/stomljen/
regards Henrik
--
The address in the header is only to prevent spam. My real address is:
hc1(at)poolhem.se Examples of addresses which go to spammers:
root@localhost postmaster@localhost
| |
|
| On Nov 12, 7:56 am, jamby <hoodcanal...@usa.com> wrote:
> Hi
>
> Hope this is the right group to post this.
>
> My Viewsonic VG1930wm won't display 1440x900, its preferred
> resolution.
>
> OS: Centos 5
> Video card: Intel 82865G
> Display: Viewsonic VG1930wm
>
> xorg.conf:
> # Xorg configuration created by system-config-display
>
> Section "ServerLayout"
> Identifier "single head configuration"
> Screen 0 "Screen0" 0 0
> InputDevice "Keyboard0" "CoreKeyboard"
> EndSection
>
> Section "InputDevice"
> Identifier "Keyboard0"
> Driver "kbd"
> Option "XkbModel" "pc105"
> Option "XkbLayout" "us"
> EndSection
>
> Section "Device"
> Identifier "Videocard0"
> Driver "i810"
> EndSection
>
> Section "Screen"
> Identifier "Screen0"
> Device "Videocard0"
> DefaultDepth 24
> SubSection "Display"
> Viewport 0 0
> Depth 24
> Modes "1440x900" "1400x1050" "1280x1024" "1280x960"
> "1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
> EndSubSection
> EndSection
>
> This xorg.conf was created by putting an error in the original conf
> and restarting the x-server which reported the error and asked if the
> conf file should be rebuilt.
> It presents the wide array of resolution choices shown a the end of
> the conf file.
> But when I use the "system-admin-display" utility only 1280x1024 and
> below is shown. And the hightest resolution is always 1280x1024.
> Stepping
> through the resolutions using alt-ctl +, gets only 1024x768 800x600
> 640x480 and back to 1280x1024
> I have also defined the display as a generic LCD of larger size
> using
> the "system-admin-display" utility but no difference.
>
> Any Ideas ?
> Jim
Hi
Sorry it took so long to get back, I've been swamped with honeydo's.
I tried tweeking the xorg.conf to no avail so heres the output from
the suggestion made.
gtf 1440 900 75 -x:
# 1440x900 @ 75.00 Hz (GTF) hsync: 70.50 kHz; pclk: 136.49 MHz
Modeline "1440x900_75.00" 136.49 1440 1536 1688 1936 900 901 904
940 -HSync +Vsync
xrandr:
SZ: Pixels Physical Refresh
*0 1280 x 1024 ( 412mm x 260mm ) *75
1 1024 x 768 ( 412mm x 260mm ) 75
2 800 x 600 ( 412mm x 260mm ) 75
3 640 x 480 ( 412mm x 260mm ) 75
last xorg.conf:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
## HorizSync 31.5 - 90.0
## VertRefresh 59.9 - 60.1
Identifier "Monitor0"
ModelName "LCD Panel 1920x1200"
ModeLine "1440x900_75.00" 136.5 1440 1536 1688 1936 900
901 904 940 -hsync +vsync
Option "dpms"
# 1440x900 @ 75.00 Hz (GTF) hsync: 70.50 kHz; pclk: 136.49 MHz
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
# Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
/var/log/Xorg.0.log:
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.9-42.0.10.ELsmp i686 Red Hat, Inc.
Current Operating System: Linux prime 2.6.18-8.1.15.el5 #1 SMP Mon Oct
22 08:32:04 EDT 2007 i686
Build Date: 09 April 2007
Build ID: xorg-x11-server 1.1.1-48.13.0.1.el5
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 Nov 14 17:26:42 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "single head configuration"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor "Monitor0"
(**) | |-->Device "Videocard0"
(**) |-->Input Device "Keyboard0"
(==) |-->Input Device "<default pointer>"
(WW) The core pointer device wasn't specified explicitly in the
layout.
Using the default mouse configuration.
(WW) No FontPath specified. Using compiled-in default.
(==) FontPath set to:
unix/:7100,
built-ins
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.0
X.Org XInput driver : 0.6
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(++) using VT number 7
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2570 card 1043,80a5 rev 02 class 06,00,00
hdr 00
(II) PCI: 00:02:0: chip 8086,2572 card 1043,80a5 rev 02 class 03,00,00
hdr 00
(II) PCI: 00:1d:0: chip 8086,24d2 card 1043,80a6 rev 02 class 0c,03,00
hdr 80
(II) PCI: 00:1d:1: chip 8086,24d4 card 1043,80a6 rev 02 class 0c,03,00
hdr 00
(II) PCI: 00:1d:2: chip 8086,24d7 card 1043,80a6 rev 02 class 0c,03,00
hdr 00
(II) PCI: 00:1d:3: chip 8086,24de card 1043,80a6 rev 02 class 0c,03,00
hdr 00
(II) PCI: 00:1d:7: chip 8086,24dd card 1043,80a6 rev 02 class 0c,03,20
hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev c2 class 06,04,00
hdr 01
(II) PCI: 00:1f:0: chip 8086,24d0 card 0000,0000 rev 02 class 06,01,00
hdr 80
(II) PCI: 00:1f:1: chip 8086,24db card 1043,80a6 rev 02 class 01,01,8a
hdr 00
(II) PCI: 00:1f:3: chip 8086,24d3 card 1043,80a6 rev 02 class 0c,05,00
hdr 00
(II) PCI: 01:09:0: chip 1013,6003 card 5053,3357 rev 01 class 04,01,00
hdr 00
(II) PCI: 01:0b:0: chip 11c1,044c card 11c1,044c rev 02 class 07,80,00
hdr 00
(II) PCI: 01:0e:0: chip 104c,8023 card 1043,808b rev 00 class 0c,00,10
hdr 00
(II) PCI: 01:0f:0: chip 10ec,8139 card 1043,80b3 rev 10 class 02,00,00
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,1), 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 1: bridge is at (0:30:0), (0,1,1), BCTRL: 0x0006 (VGA_EN is
cleared)
(II) Bus 1 I/O range:
[0] -1 0 0x0000b000 - 0x0000b0ff (0x100) IX[B]
[1] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[2] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[3] -1 0 0x0000bc00 - 0x0000bcff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfe300000 - 0xfe5fffff (0x300000) 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)
(--) PCI:*(0:2:0) Intel Corporation 82865G Integrated Graphics
Controller rev 2, Mem @ 0xf0000000/27, 0xfe780000/19, I/O @ 0xec00/3
(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 0xfe800000 from 0xfebfffff to
0xfe7fffff
(II) Active PCI resource ranges:
[0] -1 0 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[1] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[2] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[3] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[4] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[5] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[6] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[7] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[8] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[9] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[10] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[11] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[12] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[13] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[14] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[15] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[16] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[18] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[20] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[1] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[2] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[3] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[4] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[5] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[6] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[7] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[8] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[9] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[10] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[11] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[12] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[13] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[14] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[15] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[16] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[17] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[18] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[20] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0x00100000 - 0x1fffffff (0x1ff00000) 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 - 0x1fffffff (0x1ff00000) 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 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[5] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[6] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[7] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[8] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[9] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[10] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[11] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[12] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[13] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[14] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[18] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[19] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[20] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[21] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[22] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[23] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[24] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[25] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[26] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 7.1.1, 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: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
compiled for 7.1.1, 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 7.1.1, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(==) AIGLX enabled
(II) Loading extension GLX
(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 7.1.1, 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: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
compiled for 7.1.1, 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 7.1.1, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "i810"
(II) Loading /usr/lib/xorg/modules/drivers/i810_drv.so
(II) Module i810: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.6.5
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.1.0
Module class: X.Org XInput Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.1.1
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.6
(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-
dc100,
i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221
(i915),
915GM, 945G, 945GM, 965G, 965G, 965Q, 946GZ
(II) Primary Device is: PCI 00:02:0
(--) Assigning device section with no busID to primary device
(--) Chipset 865G found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0x00100000 - 0x1fffffff (0x1ff00000) 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 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[5] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[6] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[7] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[8] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[9] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[10] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[11] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[12] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[13] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[14] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[18] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[19] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[20] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[21] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[22] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[23] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[24] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[25] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[26] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) resource ranges after probing:
[0] -1 0 0x00100000 - 0x1fffffff (0x1ff00000) 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 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[5] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[6] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[7] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[8] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[9] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[10] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[11] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[12] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[13] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[14] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[17] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[18] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[19] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[20] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[21] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[22] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[23] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[24] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[25] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[26] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) resource ranges after probing:
[0] -1 0 0x00100000 - 0x1fffffff (0x1ff00000) 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 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[5] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[6] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[7] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[8] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[9] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[10] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[11] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[12] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[13] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[14] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[17] 0 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 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[21] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[22] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[23] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[24] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[25] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[26] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[27] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[28] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[29] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
[30] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[31] 0 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"
ABI class: X.Org Video Driver, version 1.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 7.1.1, module version = 1.1.0
ABI class: X.Org Video Driver, version 1.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 7.1.1, module version = 0.1.0
ABI class: X.Org Video Driver, version 1.0
(**) I810(0): Depth 24, (--) framebuffer bpp 32
(==) I810(0): RGB weight 888
(==) I810(0): Default visual is TrueColor
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(II) I810(0): initializing int10
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 16192 kB
(II) I810(0): VESA VBE OEM: Intel(r)865G Graphics Chip Accelerated VGA
BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)865G Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: hardware Version 0.0
(II) I810(0): Integrated Graphics Chipset: Intel(R) 865G
(--) I810(0): Chipset: "865G"
(--) I810(0): Linear framebuffer at 0xF0000000
(--) I810(0): IO registers at addr 0xFE780000
(II) I810(0): 1 display pipe available.
(II) I810(0): detected 16252 kB stolen memory.
(II) I810(0): Kernel reported 108544 total, 1 used
(II) I810(0): I830CheckAvailableMemory: 434172 kB available
(--) I810(0): Pre-allocated VideoRAM: 16252 kByte
(==) I810(0): VideoRAM: 65536 kByte
(==) I810(0): video overlay key set to 0x101fe
(**) I810(0): page flipping disabled
(==) I810(0): Using gamma correction (1.0, 1.0, 1.0)
(II) I810(0): BIOS Build: 3039
(==) I810(0): Device Presence: disabled.
(==) I810(0): Display Info: enabled.
(II) I810(0): Broken BIOSes cause the system to hang here.
If you encounter this problem please add
Option "DisplayInfo" "FALSE"
to the Device section of your XF86Config file.
(II) I810(0): Display Info: CRT: attached: FALSE, present: FALSE,
size: (0,0)
(II) I810(0): Display Info: TV: attached: FALSE, present: FALSE, size:
(0,0)
(II) I810(0): Display Info: DFP (digital flat panel): attached: FALSE,
present: FALSE, size: (0,0)
(II) I810(0): Display Info: LFP (local flat panel): attached: FALSE,
present: FALSE, size: (0,0)
(II) I810(0): Display Info: Second (second CRT): attached: FALSE,
present: FALSE, size: (0,0)
(II) I810(0): Display Info: TV2 (second TV): attached: FALSE, present:
FALSE, size: (0,0)
(II) I810(0): Display Info: DFP2 (second digital flat panel):
attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: LFP2 (second local flat panel): attached:
FALSE, present: FALSE, size: (0,0)
(II) I810(0): Currently active displays on Pipe A:
(II) I810(0): CRT
(==) I810(0): Display is using Pipe A
(--) I810(0): Maximum frambuffer space: 65368 kByte
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(II) I810(0): VESA VBE DDC supported
(II) I810(0): VESA VBE DDC Level 2
(II) I810(0): VESA VBE DDC transfer in appr. 1 sec.
(II) I810(0): VESA VBE DDC read successfully
(II) I810(0): Manufacturer: VSC Model: 9d1e Serial#: 16843009
(II) I810(0): Year: 2007 Week: 5
(II) I810(0): EDID Version: 1.3
(II) I810(0): Analog Display Input, Input Voltage Level: 0.700/0.300
V
(II) I810(0): Sync: Separate Composite SyncOnGreen
(II) I810(0): Max H-Image Size [cm]: horiz.: 41 vert.: 26
(II) I810(0): Gamma: 2.20
(II) I810(0): DPMS capabilities: Off; RGB/Color Display
(II) I810(0): Default color space is primary color space
(II) I810(0): First detailed timing is preferred mode
(II) I810(0): redX: 0.640 redY: 0.334 greenX: 0.286 greenY: 0.599
(II) I810(0): blueX: 0.154 blueY: 0.077 whiteX: 0.313 whiteY: 0.329
(II) I810(0): Supported VESA Video Modes:
(II) I810(0): 720x400@70Hz
(II) I810(0): 640x480@60Hz
(II) I810(0): 640x480@67Hz
(II) I810(0): 640x480@72Hz
(II) I810(0): 640x480@75Hz
(II) I810(0): 800x600@56Hz
(II) I810(0): 800x600@60Hz
(II) I810(0): 800x600@72Hz
(II) I810(0): 800x600@75Hz
(II) I810(0): 832x624@75Hz
(II) I810(0): 1024x768@60Hz
(II) I810(0): 1024x768@70Hz
(II) I810(0): 1024x768@75Hz
(II) I810(0): 1280x1024@75Hz
(II) I810(0): 1152x870@75Hz
(II) I810(0): Manufacturer's mask: 0
(II) I810(0): Supported Future Video Modes:
(II) I810(0): #0: hsize: 1440 vsize 900 refresh: 60 vid: 149
(II) I810(0): #1: hsize: 1440 vsize 900 refresh: 75 vid: 3989
(II) I810(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
(II) I810(0): #3: hsize: 1280 vsize 960 refresh: 60 vid: 16513
(II) I810(0): #4: hsize: 1152 vsize 864 refresh: 75 vid: 20337
(II) I810(0): Supported additional Video Mode:
(II) I810(0): clock: 106.5 MHz Image Size: 410 x 256 mm
(II) I810(0): h_active: 1440 h_sync: 1520 h_sync_end 1672
h_blank_end 1904 h_border: 0
(II) I810(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking:
934 v_border: 0
(II) I810(0): Serial No: QC6070571972
(II) I810(0): Ranges: V min: 50 V max: 75 Hz, H min: 30 H max: 82
kHz, PixClock max 140 MHz
(II) I810(0): Monitor name: VG1930wm
(II) I810(0): EDID (in hex):
(II) I810(0): 00ffffffffffff005a631e9d01010101
(II) I810(0): 051101030e291a782ee5b5a355499927
(II) I810(0): 135054bfef809500950f81808140714f
(II) I810(0): 0101010101019a29a0d0518422305098
(II) I810(0): 36009a001100001c000000ff00514336
(II) I810(0): 3037303537313937320a000000fd0032
(II) I810(0): 4b1e520e000a202020202020000000fc
(II) I810(0): 00564731393330776d0a2020202000ba
(II) I810(0): Using EDID range info for horizontal sync
(II) I810(0): Using EDID range info for vertical refresh
(II) I810(0): Printing DDC gathered Modelines:
(II) I810(0): Modeline "800x600" 40.00 800 840 968 1056 600 601
605 628 +hsync +vsync
(II) I810(0): Modeline "800x600" 36.00 800 824 896 1024 600 601
603 625 +hsync +vsync
(II) I810(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484
500 -hsync -vsync
(II) I810(0): Modeline "640x480" 31.50 640 664 704 832 480 489 491
520 -hsync -vsync
(II) I810(0): Modeline "640x480" 30.24 640 704 768 864 480 483 486
525 -hsync -vsync
(II) I810(0): Modeline "640x480" 25.20 640 656 752 800 480 490 492
525 -hsync -vsync
(II) I810(0): Modeline "720x400" 28.32 720 738 846 900 400 412 414
449 -hsync +vsync
(II) I810(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024
1025 1028 1066 +hsync +vsync
(II) I810(0): Modeline "1024x768" 78.80 1024 1040 1136 1312 768
769 772 800 +hsync +vsync
(II) I810(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768
771 777 806 -hsync -vsync
(II) I810(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768
771 777 806 -hsync -vsync
(II) I810(0): Modeline "832x624" 57.28 832 864 928 1152 624 625
628 667 -hsync -vsync
(II) I810(0): Modeline "800x600" 49.50 800 816 896 1056 600 601
604 625 +hsync +vsync
(II) I810(0): Modeline "800x600" 50.00 800 856 976 1040 600 637
643 666 +hsync +vsync
(II) I810(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864
865 868 900 +hsync +vsync
(II) I810(0): Modeline "1440x900" 106.50 1440 1528 1672 1904 900
903 909 934 -hsync +vsync
(II) I810(0): Modeline "1440x900" 136.75 1440 1536 1688 1936 900
903 909 942 -hsync +vsync
(II) I810(0): Modeline "1280x1024" 109.00 1280 1368 1496 1712 1024
1027 1034 1063 -hsync +vsync
(II) I810(0): Modeline "1280x960" 101.25 1280 1360 1488 1696 960
963 967 996 -hsync +vsync
(II) I810(0): Modeline "1152x864" 104.00 1152 1224 1344 1536 864
867 871 905 -hsync +vsync
(II) I810(0): Modeline "1440x900" 106.50 1440 1520 1672 1904 900
903 909 934 +hsync -vsync
(II) I810(0): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
(--) I810(0): Maximum space available for video modes: 16192 kByte
(II) I810(0): Using detected DDC timings
(II) I810(0): HorizSync 30-82
(II) I810(0): VertRefresh 50-75
Mode: 30 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 640
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 49
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 640
BnkNumberOfImagePages: 49
LinNumberOfImagePages: 49
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 32 (800x600)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 800
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 35
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 800
BnkNumberOfImagePages: 35
LinNumberOfImagePages: 35
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 34 (1024x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 1024
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 20
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1024
BnkNumberOfImagePages: 20
LinNumberOfImagePages: 20
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 38 (1280x1024)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 1280
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 11
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 11
LinNumberOfImagePages: 11
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 3a (1600x1200)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 1600
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 7
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 3c (1920x1440)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 1920
XResolution: 1920
YResolution: 1440
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 5
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1920
BnkNumberOfImagePages: 5
LinNumberOfImagePages: 5
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 41 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 1280
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 27
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 27
LinNumberOfImagePages: 27
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 43 (800x600)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 1600
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 15
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 15
LinNumberOfImagePages: 15
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 45 (1024x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 2048
XResolution: 1024
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 9
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2048
BnkNumberOfImagePages: 9
LinNumberOfImagePages: 9
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 49 (1280x1024)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 2560
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 5
RedMaskSize: 5
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 5
LinNumberOfImagePages: 5
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 4b (1600x1200)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 3200
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 3
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 3
LinNumberOfImagePages: 3
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 4d (1920x1440)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 3840
XResolution: 1920
YResolution: 1440
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 3840
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
*Mode: 50 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 2560
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 12
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 12
LinNumberOfImagePages: 12
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 52 (800x600)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 3200
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 54 (1024x768)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 4096
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 4
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 4096
BnkNumberOfImagePages: 4
LinNumberOfImagePages: 4
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 58 (1280x1024)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 5120
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 5a (1600x1200)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 6400
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 1
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 6400
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 5c (1920x1440)
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc000594e
BytesPerScanline: 7680
XResolution: 1920
YResolution: 1440
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf0000000
LinBytesPerScanLine: 7680
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
(II) I810(0): Monitor0: Using hsync range of 30.00-82.00 kHz
(II) I810(0): Monitor0: Using vrefresh range of 50.00-75.00 Hz
(II) I810(0): Monitor0: Using maximum pixel clock of 140.00 MHz
(WW) I810(0): Unable to estimate virtual size
(II) I810(0): Increasing the scanline pitch to allow tiling mode (1280
-> 2048).
(--) I810(0): Virtual size is 1280x1024 (pitch 2048)
(**) I810(0): *Built-in mode "1280x1024"
(**) I810(0): *Built-in mode "1024x768"
(**) I810(0): *Built-in mode "800x600"
(**) I810(0): *Built-in mode "640x480"
(II) I810(0): Attempting to use 75.02Hz refresh for mode
"1280x1024" (858)
(II) I810(0): Attempting to use 75.08Hz refresh for mode
"1024x768" (854)
ModeAttributes: 0x9b
(II) I810(0): Attempting to use 75.00Hz refresh for mode
"800x600" (852)
(II) I810(0): Attempting to use 75.00Hz refresh for mode
"640x480" (850)
(**) I810(0): Display dimensions: (410, 260) mm
(**) I810(0): DPI set to (79, 100)
(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 7.1.1, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.3
(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 7.1.1, module version = 1.2.0
ABI class: X.Org Video Driver, version 1.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 0.1.0
ABI class: X.Org Video Driver, version 1.0
(==) I810(0): VBE Restore workaround: enabled.
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/xorg/modules/libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
compiled for 7.1.1, module version = 1.1.0
ABI class: X.Org ANSI C Emulation, version 0.3
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xfe780000 - 0xfe7fffff (0x80000) MS[B]
[1] 0 0 0xf0000000 - 0xf7ffffff (0x8000000) MS[B]
[2] -1 0 0x00100000 - 0x1fffffff (0x1ff00000) 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 0xfe5fe800 - 0xfe5fe8ff (0x100) MX[B]
[7] -1 0 0xfe5f8000 - 0xfe5fbfff (0x4000) MX[B]
[8] -1 0 0xfe5fe000 - 0xfe5fe7ff (0x800) MX[B]
[9] -1 0 0xfe5fec00 - 0xfe5fecff (0x100) MX[B]
[10] -1 0 0xfe400000 - 0xfe4fffff (0x100000) MX[B]
[11] -1 0 0xfe5ff000 - 0xfe5fffff (0x1000) MX[B]
[12] -1 0 0x20000000 - 0x200003ff (0x400) MX[B]
[13] -1 0 0xfe77bc00 - 0xfe77bfff (0x400) MX[B]
[14] -1 0 0xfe800000 - 0xfe7fffff (0x0) MX[B]O
[15] -1 0 0xfe780000 - 0xfe7fffff (0x80000) MX[B](B)
[16] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
[17] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[18] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[19] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[20] 0 0 0x0000ec00 - 0x0000ec07 (0x8) IS[B]
[21] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[22] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[23] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[24] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[25] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
[26] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[27] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
[28] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[29] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
[30] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[31] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[32] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
[33] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[34] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(II) I810(0): initializing int10
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 16192 kB
(II) I810(0): VESA VBE OEM: Intel(r)865G Graphics Chip Accelerated VGA
BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)865G Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: hardware Version 0.0
(II) I810(0): Allocated 128 kB for the ring buffer at 0x0
(II) I810(0): Allocating at least 256 scanlines for pixmap cache
(II) I810(0): Initial framebuffer allocation size: 12288 kByte
(II) I810(0): Allocated 4 kB for HW cursor at 0x7fff000
(II) I810(0): Allocated 16 kB for HW (ARGB) cursor at 0x7ffb000
(II) I810(0): Allocated 4 kB for Overlay registers at 0x7ffa000
(0x0f2a3000).
(II) I810(0): Allocated 64 kB for the scratch buffer at 0x7fea000
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:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) I810(0): [drm] DRM interface version 1.2
(II) I810(0): [drm] created "i915" driver at busid "pci:0000:00:02.0"
(II) I810(0): [drm] added 8192 byte SAREA at 0xdfbba000
(II) I810(0): [drm] mapped SAREA 0xdfbba000 to 0xb7ec6000
(II) I810(0): [drm] framebuffer handle = 0xf0020000
(II) I810(0): [drm] added 1 reserved context for kernel
(II) I810(0): Allocated 32 kB for the logical context at 0x7fe2000.
(II) I810(0): Allocated 8192 kB for the back buffer at 0x7000000.
(II) I810(0): Allocated 8192 kB for the depth buffer at 0x6800000.
(II) I810(0): Allocated 36608 kB for textures at 0xc20000
(II) I810(0): 0x97b1e10: Memory at offset 0x00020000, size 12288
kBytes
(II) I810(0): 0x97b2d10: Memory at offset 0x07fff000, size 4 kBytes
(II) I810(0): 0x97b2d38: Memory at offset 0x07ffb000, size 16 kBytes
(II) I810(0): 0x97b2934: Memory at offset 0x00000000, size 128 kBytes
(II) I810(0): 0x97b1e50: Memory at offset 0x07fea000, size 64 kBytes
(II) I810(0): 0x97b2d60: Memory at offset 0x07ffa000, size 4 kBytes
(II) I810(0): 0x97b1fe8: Memory at offset 0x07fe2000, size 32 kBytes
(II) I810(0): 0x97b2008: Memory at offset 0x07000000, size 8192 kBytes
(II) I810(0): 0x97b2028: Memory at offset 0x06800000, size 8192 kBytes
(II) I810(0): 0x97b2048: Memory at offset 0x00c20000, size 36608
kBytes
(II) I810(0): Activating tiled memory for the back buffer.
(II) I810(0): Activating tiled memory for the depth buffer.
(II) I810(0): [drm] Registers = 0xfe780000
(II) I810(0): [drm] ring buffer = 0xf0000000
(II) I810(0): [drm] init sarea width,height = 1280 x 1024 (pitch 2048)
(II) I810(0): [drm] Mapping front buffer
(II) I810(0): [drm] Front Buffer = 0xf0020000
(II) I810(0): [drm] Back Buffer = 0xf7000000
(II) I810(0): [drm] Depth Buffer = 0xf6800000
(II) I810(0): [drm] textures = 0xf0c20000
(II) I810(0): [drm] Initialized kernel agp heap manager, 37486592
(II) I810(0): [drm] dma control initialized, using IRQ 177
(II) I810(0): [dri] visual configs initialized
(==) I810(0): Write-combining range (0xf0000000,0x8000000)
(II) I810(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is
0x0000
(WW) I810(0): Extended BIOS function 0x5f05 not supported.
(II) I810(0): xf86BindGARTMemory: bind key 7 at 0x00fdf000 (pgoffset
4063)
(II) I810(0): xf86BindGARTMemory: bind key 0 at 0x07fff000 (pgoffset
32767)
(II) I810(0): xf86BindGARTMemory: bind key 1 at 0x07ffb000 (pgoffset
32763)
(II) I810(0): xf86BindGARTMemory: bind key 3 at 0x07fea000 (pgoffset
32746)
(II) I810(0): xf86BindGARTMemory: bind key 2 at 0x07ffa000 (pgoffset
32762)
(II) I810(0): xf86BindGARTMemory: bind key 4 at 0x07fe2000 (pgoffset
32738)
(II) I810(0): xf86BindGARTMemory: bind key 5 at 0x07000000 (pgoffset
28672)
(II) I810(0): xf86BindGARTMemory: bind key 6 at 0x06800000 (pgoffset
26624)
(WW) I810(0): PGTBL_ER is 0x00000029
(WW) I810(0): Extended BIOS function 0x5f05 not supported.
(II) I810(0): BIOS call 0x5f05 not supported, setting refresh with VBE
3 method.
(II) I810(0): Setting refresh with VBE 3 method.
(II) I810(0): Display plane A is enabled and connected to Pipe A.
(II) I810(0): Enabling plane A.
(II) I810(0): Display plane A is now enabled and connected to Pipe A.
(II) I810(0): PIPEACONF is 0x80000000
(II) I810(0): Mode bandwidth is 78 Mpixel/s
(WW) I810(0): Extended BIOS function 0x5f28 not supported.
(II) I810(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 Horizontal and Vertical Lines
Offscreen Pixmaps
Setting up tile and stipple cache:
16 128x128 slots
4 256x256 slots
(==) I810(0): Backing store disabled
(==) I810(0): Silken mouse enabled
(II) I810(0): Initializing HW Cursor
(**) Option "dpms"
(**) I810(0): DPMS enabled
(II) I810(0): Set up overlay video
(II) I810(0): X context handle = 0x1
(II) I810(0): [drm] installed DRM signal handler
(II) I810(0): [DRI] installation complete
(II) I810(0): direct rendering: Enabled
(II) I810(0): RandR enabled, ignore the following RandR disabled
message.
(II) I810(0): Rotating to 0 degrees
(--) 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 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: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
(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/dri/i915_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(**) Option "CoreKeyboard"
(**) Keyboard0: Core Keyboard
(**) 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
(WW) <default pointer>: No Device specified, looking for one...
(II) <default pointer>: Setting Device option to "/dev/input/mice"
(--) <default pointer>: Device: "/dev/input/mice"
(==) <default pointer>: Protocol: "Auto"
(**) Option "CorePointer"
(**) <default pointer>: Core Pointer
(==) <default pointer>: Emulate3Buttons, Emulate3Timeout: 50
(**) <default pointer>: ZAxisMapping: buttons 4 and 5
(**) <default pointer>: Buttons: 9
(II) XINPUT: Adding extended input device "<default pointer>" (type:
MOUSE)
(II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
(--) <default pointer>: PnP-detected protocol: "ExplorerPS/2"
(II) <default pointer>: ps2EnableDataReporting: succeeded
(II) 3rd Button detected: disabling emulate3Button
Thanks for your answers
Jim
| |
| Bill Marcum 2007-11-15, 7:22 am |
| On 2007-11-15, jamby <hoodcanaljim@usa.com> wrote:
> Hi
> Sorry it took so long to get back, I've been swamped with honeydo's.
>
> I tried tweeking the xorg.conf to no avail so heres the output from
> the suggestion made.
>
>
> gtf 1440 900 75 -x:
>
> # 1440x900 @ 75.00 Hz (GTF) hsync: 70.50 kHz; pclk: 136.49 MHz
> Modeline "1440x900_75.00" 136.49 1440 1536 1688 1936 900 901 904
> 940 -HSync +Vsync
>
The logfile lists two modelines for 1440x900. Try one of those:
(II) I810(0): Modeline "1440x900" 106.50 1440 1528 1672 1904 900
903 909 934 -hsync +vsync
(II) I810(0): Modeline "1440x900" 136.75 1440 1536 1688 1936 900
903 909 942 -hsync +vsync
| |
|
| On Nov 14, 11:43 pm, Bill Marcum <marcumb...@bellsouth.net> wrote:
> The logfile lists two modelines for 1440x900. Try one of those:
> (II) I810(0): Modeline "1440x900" 106.50 1440 1528 1672 1904 900
> 903 909 934 -hsync +vsync
> (II) I810(0): Modeline "1440x900" 136.75 1440 1536 1688 1936 900
> 903 909 942 -hsync +vsync
Hi Bill
I tried both the above Modelines, commenting out the old ones as I
went. Below is the last xorg.conf file. I've read everything I can
find on how the config file is suppose to be written but I am still
confused about where the Modeline / Mode should go. Does the
structure look correct?
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "VG1930"
ModelName "LCD Panel 1440 900"
HorizSync 31.5 - 90.0
VertRefresh 59.9 - 60.1
# ModeLine "1440x900_75.00" 136.5 1440 1536 1688 1936 900
901 904 940 -hsync +vsync
# Modeline "1440x900" 136.75 1440 1536 1688 1936 900 903 909
942 -hsync +vsync
Modeline "1440x900" 106.50 1440 1528 1672 1904 900 903 909 934 -
hsync +vsync
Option "dpms"
# 1440x900 @ 75.00 Hz (GTF) hsync: 70.50 kHz; pclk: 136.49 MHz
EndSection
Section "Device"
Identifier "Videocard0"
Driver "i810"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1280x1024" "1024x768" "800x600"
EndSubSection
EndSection
thanks
Jim
| |
|
| Hi
Just a follow up on this one. I was able to get a config file with
a 1440x900 modeline that worked. However the screen was larger then
the viewing area, at the top of the screen. But after rebooting the
computer 1440x900 would not work. So I am running 1280x1040 and
learning to live with it.
Thanks to those who answered.
Jim
| |
| Mark T.B. Carroll 2007-12-07, 7:17 pm |
| jamby <hoodcanaljim@usa.com> writes:
> [ about 1440x900 problems ]
FWIW I'm using 1440x900 under xorg right now.
I did need the 915resolution thing that Henrik mentions, though.
Good luck.
Mark
| |
|
| On Dec 7, 5:09 pm, "Mark T.B. Carroll" <Mark.Carr...@Aetion.com>
wrote:
> jamby <hoodcanal...@usa.com> writes:
>
> FWIW I'm using 1440x900 under xorg right now.
>
> I did need the 915resolution thing that Henrik mentions, though.
>
> Good luck.
>
> Mark
Mark
How did you set up the 915resolution to load at boot?
I got the 1440x900 working again using the 915resolution. But the
viewport is still larger then the screen. After restart the bottom of
the screen is not visable until you pan down with the mouse.
Jim
| |
| Mark T.B. Carroll 2007-12-08, 1:27 am |
| jamby <hoodcanaljim@usa.com> writes:
(snip)
> How did you set up the 915resolution to load at boot?
> I got the 1440x900 working again using the 915resolution. But the
> viewport is still larger then the screen. After restart the bottom of
> the screen is not visable until you pan down with the mouse.
That's not good. ): I didn't have that problem.
I used the Debian package for 915resolution - that comes with a
/etc/init.d/915resolution script - it seems to get started at runlevel
2. You could probably get the package and extract the files and probably
not have to modify them much to get them working okay in /etc/rc*/ in
your distribution.
Mark
| |
|
| On Dec 7, 7:35 pm, "Mark T.B. Carroll" <Mark.Carr...@Aetion.com>
wrote:
> jamby <hoodcanal...@usa.com> writes:
>
> (snip)
>
> (snip)
> Mark
Mark
I added the statment "/usr/sbin/915resolution 3a 1440 900" to my /
etc/rc.d/rc.local That got it started before X started and its
working. But 'dang' its still taller then the screen. But at least I
can chose to run it when working with photos or drawings. Its nice
because the circles come out round..
Thanks for your help
JIm
| |
|
| On Fri, 07 Dec 2007 20:09:46 -0800, jamby wrote:
> On Dec 7, 7:35 pm, "Mark T.B. Carroll" <Mark.Carr...@Aetion.com>
> wrote:
>
> Mark
> I added the statment "/usr/sbin/915resolution 3a 1440 900" to my /
> etc/rc.d/rc.local That got it started before X started and its
> working. But 'dang' its still taller then the screen. But at least I
> can chose to run it when working with photos or drawings. Its nice
> because the circles come out round..
>
> Thanks for your help
> JIm
FWIW - I've been able to get the xserver-xorg-video-intel working in
situations where the 915 resolution did nothing for me. I highly recommend
it since it is a more 'standard' way of achieving the same result.
| |
|
| <snip>
> FWIW - I've been able to get the xserver-xorg-video-intel working in
> situations where the 915 resolution did nothing for me. I highly recommend
> it since it is a more 'standard' way of achieving the same result.
Ray
I assume your talking about the vendor driver "intel" that comes
with redhat EL. I've tried it several times without getting it to
work. Below is the end of the Xorg.0.log when I tried "intel" this
morning. I have no idea what the messages mean
Thanks Jim
compiled for 7.1.1, module version = 1.2.0
ABI class: X.Org Video Driver, version 1.0
(II) INTEL(0): I2C bus "CRTDDC_A" initialized.
(II) INTEL(0): I2C bus "DVODDC_D" initialized.
(II) INTEL(0): I2C bus "DVOI2C_E" 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 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(EE) INTEL(0): detecting sil164
(EE) INTEL(0): Unable to read from DVOI2C_E Slave 112.
(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 7.1.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 1.0
(EE) INTEL(0): detecting ch7xxx
(EE) INTEL(0): Unable to read from DVOI2C_E Slave 236.
(II) INTEL(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
(II) INTEL(0): I2C device "CRTDDC_A:ddc2" removed.
(EE) INTEL(0): DDC Analog 0, 00005010
(II) INTEL(0): I2C device "DVODDC_D:ddc2" registered at address 0xA0.
(II) INTEL(0): I2C device "DVODDC_D:ddc2" removed.
(EE) INTEL(0): DDC DVO 1, 0000501C
(II) INTEL(0): Found BDB block type 254
(II) INTEL(0): Found BDB block type 1
(II) INTEL(0): Found BDB block type 254
(II) INTEL(0): Found BDB block type 2
(II) INTEL(0): Found BDB block type 4
(II) INTEL(0): Found BDB block type 254
(II) INTEL(0): Found BDB block type 6
(II) INTEL(0): Found BDB block type 7
(II) INTEL(0): Found BDB block type 8
(II) INTEL(0): Found BDB block type 10
(II) INTEL(0): Found BDB block type 11
(II) INTEL(0): Found BDB block type 12
(II) INTEL(0): Found BDB block type 14
(II) INTEL(0): Found BDB block type 15
(II) INTEL(0): Found BDB block type 17
(II) INTEL(0): Found BDB block type 18
(--) INTEL(0): Pre-allocated VideoRAM: 16252 kByte
(==) INTEL(0): VideoRAM: 65536 kByte
(==) INTEL(0): VideoRAM: 65536 kByte
(==) INTEL(0): video overlay key set to 0x101fe
(**) INTEL(0): page flipping disabled
(==) INTEL(0): Using gamma correction (1.0, 1.0, 1.0)
Executing (ax == 0x5f01) BIOS call at i830_driver.c:617
(II) INTEL(0): BIOS Build: 3039
(==) INTEL(0): Device Presence: disabled.
(II) INTEL(0): Currently active displays on Pipe A:
(II) INTEL(0): CRT
(==) INTEL(0): Display is using Pipe A
(--) INTEL(0): Maximum frambuffer space: 65368 kByte
(--) INTEL(0): Maximum space available for video modes: 16192 kByte
(II) INTEL(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
(II) INTEL(0): I2C device "CRTDDC_A:ddc2" removed.
(II) INTEL(0): Printing probed modes for pipe 0
Fatal server error:
No modes found on either pipe
| |
|
| On Sat, 08 Dec 2007 09:43:05 -0800, jamby wrote:
> <snip>
>
> Ray
>
> I assume your talking about the vendor driver "intel" that comes
> with redhat EL. I've tried it several times without getting it to
> work. Below is the end of the Xorg.0.log when I tried "intel" this
> morning. I have no idea what the messages mean
I'm not talking about the 'vendor driver'. When I install Ubuntu (worked
similarly with Mandriva, as I recall, but I've not tried RH) - the
installed driver is, as I recall 'i810'. After I install the
xserver-xorg-video-intel driver, and change the driver name to 'intel' in
xorg.conf, it works swimmingly. This is on a Gateway M305 laptop with
intel g945 or some such - with borked video bios. When I got it, I tried
everything I could find - I never was able to get 915resolution to work
with it. The ONLY thing that would work to give me above 800x600
resolution (the native res of the display is 1024x768) was a proprietary
driver from Xi Graphics. This year, with the new xserver-xorg release, the
xserver-xorg-video-intel driver works great and gives me the full
1024x768. It is my understanding that this is an Open Source xorg driver,
but not the default one included with most distros. I was not able to get
the vendor driver to work either - I don't recall the details. In Ubuntu
and Mandriva, the package name is "xserver-xorg-video-intel" - I have no
idea if RH has that in appropriate repositories.
Hope that helps.
>
> Thanks Jim
>
> compiled for 7.1.1, module version = 1.2.0
> ABI class: X.Org Video Driver, version 1.0
> (II) INTEL(0): I2C bus "CRTDDC_A" initialized.
> (II) INTEL(0): I2C bus "DVODDC_D" initialized.
> (II) INTEL(0): I2C bus "DVOI2C_E" 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 7.1.1, module version = 1.0.0
> ABI class: X.Org Video Driver, version 1.0
> (EE) INTEL(0): detecting sil164
> (EE) INTEL(0): Unable to read from DVOI2C_E Slave 112.
> (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 7.1.1, module version = 1.0.0
> ABI class: X.Org Video Driver, version 1.0
> (EE) INTEL(0): detecting ch7xxx
> (EE) INTEL(0): Unable to read from DVOI2C_E Slave 236.
> (II) INTEL(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
> (II) INTEL(0): I2C device "CRTDDC_A:ddc2" removed.
> (EE) INTEL(0): DDC Analog 0, 00005010
> (II) INTEL(0): I2C device "DVODDC_D:ddc2" registered at address 0xA0.
> (II) INTEL(0): I2C device "DVODDC_D:ddc2" removed.
> (EE) INTEL(0): DDC DVO 1, 0000501C
> (II) INTEL(0): Found BDB block type 254
> (II) INTEL(0): Found BDB block type 1
> (II) INTEL(0): Found BDB block type 254
> (II) INTEL(0): Found BDB block type 2
> (II) INTEL(0): Found BDB block type 4
> (II) INTEL(0): Found BDB block type 254
> (II) INTEL(0): Found BDB block type 6
> (II) INTEL(0): Found BDB block type 7
> (II) INTEL(0): Found BDB block type 8
> (II) INTEL(0): Found BDB block type 10
> (II) INTEL(0): Found BDB block type 11
> (II) INTEL(0): Found BDB block type 12
> (II) INTEL(0): Found BDB block type 14
> (II) INTEL(0): Found BDB block type 15
> (II) INTEL(0): Found BDB block type 17
> (II) INTEL(0): Found BDB block type 18
> (--) INTEL(0): Pre-allocated VideoRAM: 16252 kByte
> (==) INTEL(0): VideoRAM: 65536 kByte
> (==) INTEL(0): VideoRAM: 65536 kByte
> (==) INTEL(0): video overlay key set to 0x101fe
> (**) INTEL(0): page flipping disabled
> (==) INTEL(0): Using gamma correction (1.0, 1.0, 1.0)
> Executing (ax == 0x5f01) BIOS call at i830_driver.c:617
> (II) INTEL(0): BIOS Build: 3039
> (==) INTEL(0): Device Presence: disabled.
> (II) INTEL(0): Currently active displays on Pipe A:
> (II) INTEL(0): CRT
> (==) INTEL(0): Display is using Pipe A
> (--) INTEL(0): Maximum frambuffer space: 65368 kByte
> (--) INTEL(0): Maximum space available for video modes: 16192 kByte
> (II) INTEL(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0.
> (II) INTEL(0): I2C device "CRTDDC_A:ddc2" removed.
> (II) INTEL(0): Printing probed modes for pipe 0
>
> Fatal server error:
> No modes found on either pipe
| |
|
| On Sat, 08 Dec 2007 09:43:05 -0800, jamby wrote:
> <snip>
>
> Ray
>
> I assume your talking about the vendor driver "intel" that comes
> with redhat EL. I've tried it several times without getting it to
> work. Below is the end of the Xorg.0.log when I tried "intel" this
> morning. I have no idea what the messages mean
>
BTW - just for fun, you might try booting the Ubuntu Live/install CD and
install that driver. You would open synaptic from the system menu and
search for intel - then select and apply; then <ctrl><alt><backspace> to
restart X.
| |
|
| One other thing. When in 1440x900 using 915resolution this is the
output of xrandr
SZ: Pixels Physical Refresh
0 1440 x 900 ( 411mm x 260mm ) 60
1 1280 x 1024 ( 411mm x 260mm ) 75
2 1024 x 768 ( 411mm x 260mm ) 75
3 800 x 600 ( 411mm x 260mm ) 75
4 640 x 480 ( 411mm x 260mm ) 75
*5 1440 x 1024 ( 411mm x 260mm ) *60
Current rotation - normal
Current reflection - none
Rotations possible - normal left inverted right
Reflections possible - none
And this is the output when in 1280x1024 w/o 915resolution and no
modeline in xorg.conf
SZ: Pixels Physical Refresh
*0 1280 x 1024 ( 412mm x 260mm ) *75
1 1024 x 768 ( 412mm x 260mm ) 75
2 800 x 600 ( 412mm x 260mm ) 75
3 640 x 480 ( 412mm x 260mm ) 75
Current rotation - normal
Current reflection - none
Rotations possible - normal left inverted right
Reflections possible - none
Thanks
Jim
| |
| Mark T.B. Carroll 2007-12-08, 7:24 pm |
| ray <ray@zianet.com> writes:
> In Ubuntu and Mandriva, the package name is "xserver-xorg-video-intel"
> - I have no idea if RH has that in appropriate repositories.
FWIW I think this packages the one from
http://www.x.org/wiki/IntelGraphicsDriver -
Intel contribute directly to xorg.
Mark
| |
|
| On Dec 8, 11:33 am, "Mark T.B. Carroll" <Mark.Carr...@Aetion.com>
wrote:
<snip>
> FWIW I think this packages the one fromhttp://www.x.org/wiki/IntelGraphicsDriver-
> Intel contribute directly to xorg.
>
> Mark
Yes, but it requires xorg-server 1.3.0 or newer. So I'd have to
upgrade from 1.1.1-48 I need to think about that one for awhile.
There is a "intel" driver that comes as a part of the i810 rpm,
that's the one I posted the error messages from earlier.
The earlier post with the Xrandr output makes me think something is
wrong and I am really running 1440x1052 not 900.
But thats just a guess from the resolutions listed.
Thanks again for your help
Jim
| |
| Mark T.B. Carroll 2007-12-09, 1:19 pm |
| jamby <hoodcanaljim@usa.com> writes:
(snip)
> The earlier post with the Xrandr output makes me think something is
> wrong and I am really running 1440x1052 not 900.
> But thats just a guess from the resolutions listed.
Mmmm, I see what you mean. Mine is the less-alarming,
$ xrandr
Screen 0: minimum 320 x 200, current 1440 x 900, maximum 2720 x 1024
VGA disconnected (normal left inverted right x axis y axis)
LVDS connected 1440x900+0+0 (normal left inverted right x axis y axis) 367mm x 230mm
1440x900 59.9*+
1280x800 60.0
1280x768 60.0
1024x768 60.0
800x600 60.3
640x480 59.9
TV disconnected (normal left inverted right x axis y axis)
$
Mark
|
|
|
|
|