|
Home > Archive > Linux Debian support > October 2005 > [ubuntu 5.10] Can't change monitor refresh.
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 |
[ubuntu 5.10] Can't change monitor refresh.
|
|
| Peter X 2005-10-24, 9:42 am |
| Hi all,
I've just installed Ubuntu 5.10 (final), and it has defaulted my monitor
to 1024 x 768 @ 85(ish) MHz. However, I'd prefer it ran at 75MHz since
according to the monitor specs thats the "optimum" setup (whatever that
means).
The Gnome screen resolution thing only shows 85MHz -- thre are no other
options.
So, I tried editing my /etc/X11/xorg.conf file. The Monitor section only
had the monitor ID and an option to do with power-saving in place, so I
manually added:
HorizSync 30-70
VertRefresh 50-160
DisplaySize 308 231
restarted X (and also restarted the machine completely just to make
sure!) and it makes absolutely no difference!
I had a look at the X startup log file in /var/logs/ (can't remember the
exact filename... something like xorg.0.log) and it _appears_ to me like
it's just allowing the graphics card to negotiate with the monitor over
refresh... but I could be wrong.
The graphics card is the embeded Intel i810 something or other in a Dell
Dimension 3000 (purchased Feb 2005, it's a 2.8GHz Celeron D 335), and
the monitor is a Dell e773p.
Appologies for lack of exact detail -- all the above is from memory!
--
Cheers!
Peter.
| |
| Bill Marcum 2005-10-24, 9:42 am |
| On Sat, 15 Oct 2005 14:59:35 +0100, Peter X
<peterx14@example.com> wrote:
> Hi all,
>
> I've just installed Ubuntu 5.10 (final), and it has defaulted my monitor
> to 1024 x 768 @ 85(ish) MHz. However, I'd prefer it ran at 75MHz since
> according to the monitor specs thats the "optimum" setup (whatever that
> means).
>
> The Gnome screen resolution thing only shows 85MHz -- thre are no other
> options.
>
> So, I tried editing my /etc/X11/xorg.conf file. The Monitor section only
> had the monitor ID and an option to do with power-saving in place, so I
> manually added:
>
> HorizSync 30-70
> VertRefresh 50-160
> DisplaySize 308 231
>
> restarted X (and also restarted the machine completely just to make
> sure!) and it makes absolutely no difference!
>
The number 85 (Hz, not MHz) is the vertical refresh rate. You can try
changing the VertRefresh numbers in xorg.conf so the maximum is less
than 85, but your video adapter might not be capable of doing 1024x768
at a different rate.
--
BOFH excuse #73:
Daemons did it
| |
| Peter X 2005-10-24, 9:42 am |
| Bill Marcum wrote:
>
> The number 85 (Hz, not MHz) is the vertical refresh rate. You can try
> changing the VertRefresh numbers in xorg.conf so the maximum is less
> than 85, but your video adapter might not be capable of doing 1024x768
> at a different rate.
>
Appologies -- I'm forever doing that. I also think my computer has 1meg
of RAM -- sigh!
I modified /etc/X11/xorg.conf so the Monitor section reads:
Section "Monitor"
Identifier "DELL E773p"
Option "DPMS"
HorizSync 30-70
VertRefresh 50-75
DisplaySize 308 231
EndSection
(Note: "VertRefresh" used to be 50-160).
But it made no difference. The monitor still shows 85Hz and the Gnome
screen res. pref. still only gives 85Hz as an option.
As mentioned before, I've an idea that anything I put in xorg.conf is
being ignored/overridden. Here is part of the X log (/var/log/Xorg.0.log):
(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) Reloading /usr/X11R6/lib/modules/libddc.a
(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): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
(--) I810(0): Maximum space available for video modes: 12288 kByte
(II) I810(0): Using detected DDC timings
(II) I810(0): HorizSync 30-70
(II) I810(0): VertRefresh 50-160
Note the last line. That isn't what is in xorg.conf, so I presume this
information is being gathered directly from the monitor itself?
--
Peter.
| |
| man-wai chang 2005-10-24, 9:42 am |
| backup your original Xorg.conf. Then
dpkg-reconfigure xserver-xorg (use sudo if you need to)
--
.~. Might, Courage, Vision. http://www.linux-sxs.org
/ v \
/( _ )\ (Ubuntu) Linux 2.6.13
^ ^ 22:41:01 up 4:14 0 users 1.25 1.26
| |
| Peter X 2005-10-24, 9:42 am |
| man-wai chang wrote:
> backup your original Xorg.conf. Then
>
> dpkg-reconfigure xserver-xorg (use sudo if you need to)
>
I had tried that before. But I tried it again just in case I'd missed
something, but it doesn't seem to make any difference. It does update
xorg.conf, but regardless of the settings in xorg.conf, the
/var/log/Xorg.0.log file always picks up the actual monitor specs!
Interestingly, running "dpkg-reconfigure xserver-xorg" does explain what
a lot of stuff is for including some of the modules. One thing it says is:
"
The vbe and ddc modules enable support for VESA BIOS Extensions and Data
Display Channel, respectively. These modules are used to query Monitor
capabilties via the video card. The int10 module is a real-mode x86
emulator that is used to softboot secondary VGA cards. Note that the
vbe module depends on the int10 module, so if you wish to enable vbe,
enable int10 as well.
"
So after letting dpkg-reconfig. do its thing, and testing the results, I
then tried commenting out the ddc, int10 and vbe modules in an attempt
to prevent it some auto-discovering the monitor specs:
Section "Module"
Load "GLcore"
Load "bitmap"
# Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
# Load "int10"
Load "type1"
# Load "vbe"
EndSection
And *even* after doing this, it *still* manages to find the monitor
specs and *still* ignores whatever I put in xconf.org!!
So, with the above "module" section, here's part of the output in
/var/log/Xorg.0.log :
(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/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(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): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
(--) I810(0): Maximum space available for video modes: 12288 kByte
(II) I810(0): Using detected DDC timings
(II) I810(0): HorizSync 30-70
(II) I810(0): VertRefresh 50-160
I've tried reality checking this though.... I've confirmed that it *is*
reading /etc/X11/xorg.conf because if there are syntax errors, X won't
start.
But in practical terms, all it seems to do is read xorg.conf, check the
syntax is good, and then apply whatever defaults it wants!
I'm totally running out of ideas myself. 
| |
|
| On Sun, 16 Oct 2005 22:14:16 +0100, Peter X <nospam@example.com> wrote
in alt.os.linux.debian:
> man-wai chang wrote:
>
> I had tried that before. But I tried it again just in case I'd missed
> something, but it doesn't seem to make any difference. It does update
> xorg.conf, but regardless of the settings in xorg.conf, the
> /var/log/Xorg.0.log file always picks up the actual monitor specs!
Have you tried running dexconf?
PJR :-)
--
alt.usenet.kooks award-winners and FAQ:
<http://www.insurgent.org/~kook-faq/>
| |
| Peter X 2005-10-24, 9:42 am |
| PJR wrote:
>
> Have you tried running dexconf?
>
I hadn't -- I have now! It builds an xorg.conf file very similar to the
one that I had after a fresh install. The only difference, is that it
has 1280x1024 as the highest resolution (which is correct) and Gnome
also shows this available resolution, and shows the correct refresh of
60Hz for 1280x1024.
But the other resolution, 640x480, 800x600, 1024x768 all show a refresh
of 85Hz.
Below I've pasted my /etc/X11/xorg.conf (from dexconf) and then my
/var/log/Xorg.0.log files:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath "/usr/share/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection
Section "Module"
Load "GLcore"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "gb"
Option "XkbVariant" "gb"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
Section "Device"
Identifier "Intel Corporation 82865G Integrated Graphics Device"
Driver "i810"
BusID "PCI:0:2:0"
Option "UseFBDev" "true"
EndSection
Section "Monitor"
Identifier "DELL E773p"
Option "DPMS"
HorizSync 30-60
VertRefresh 50-75
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation 82865G Integrated Graphics Device"
Monitor "DELL E773p"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Section "DRI"
Mode 0666
EndSection
X Window System Version 6.8.2 (Ubuntu 6.8.2-77 20051010174523
root@vernadsky.buildd)
Release Date: 9 February 2005
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Linux 2.6.10 i686 [ELF]
Current Operating System: Linux surferrosa 2.6.12-9-386 #1 Mon Oct 10
13:14:36 BST 2005 i686
Build Date: 10 October 2005
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.12-9-386 (buildd@rothera) (gcc version
3.4.5 20050809 (prerelease) (Ubuntu 3.4.4-6ubuntu8)) #1 Mon Oct 10
13:14:36 BST 2005
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 Oct 16 23:20:20 2005
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "DELL E773p"
(**) | |-->Device "Intel Corporation 82865G Integrated Graphics Device"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/CID" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in
"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID".
Entry deleted from font path.
(Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID").
(**) FontPath set to
"/usr/share/X11/fonts/misc,/usr/share/X11/fonts/100dpi/:unscaled,/usr/share/X11/fonts/75dpi/:unscaled,/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/100dpi,/usr/share/X11/fonts/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(++) using VT number 7
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2570 card 1028,019d rev 02 class 06,00,00
hdr 00
(II) PCI: 00:02:0: chip 8086,2572 card 1028,019d rev 02 class 03,00,00
hdr 00
(II) PCI: 00:1d:0: chip 8086,24d2 card 1028,019d rev 02 class 0c,03,00
hdr 80
(II) PCI: 00:1d:1: chip 8086,24d4 card 1028,019d rev 02 class 0c,03,00
hdr 00
(II) PCI: 00:1d:3: chip 8086,24de card 1028,019d rev 02 class 0c,03,00
hdr 00
(II) PCI: 00:1d:7: chip 8086,24dd card 1028,019d 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 1028,019d rev 02 class 01,01,8a
hdr 00
(II) PCI: 00:1f:3: chip 8086,24d3 card 1028,019d rev 02 class 0c,05,00
hdr 00
(II) PCI: 00:1f:5: chip 8086,24d5 card 1028,019d rev 02 class 04,01,00
hdr 00
(II) PCI: 01:01:0: chip 8086,1080 card 1028,1000 rev 04 class 07,03,00
hdr 00
(II) PCI: 01:08:0: chip 8086,1050 card 1028,019d rev 02 class 02,00,00
hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,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) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:30:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is
cleared)
(II) Bus 1 I/O range:
[0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfea00000 - 0xfeafffff (0x100000) 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 Corp. 82865G Integrated Graphics Device rev 2,
Mem @ 0xe8000000/27, 0xfeb80000/19, I/O @ 0xed98/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 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf0000000 from 0xf7ffffff to
0xefffffff
(II) Active PCI resource ranges:
[0] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[1] -1 0 0xfeafe000 - 0xfeafefff (0x1000) MX[B]
[2] -1 0 0xfeb7f900 - 0xfeb7f9ff (0x100) MX[B]
[3] -1 0 0xfeb7fa00 - 0xfeb7fbff (0x200) MX[B]
[4] -1 0 0xfeb7fc00 - 0xfeb7ffff (0x400) MX[B]
[5] -1 0 0xffa80800 - 0xffa80bff (0x400) MX[B]
[6] -1 0 0xf0000000 - 0xefffffff (0x0) MX[B]O
[7] -1 0 0xfeb80000 - 0xfebfffff (0x80000) MX[B](B)
[8] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[9] -1 0 0x0000ddc0 - 0x0000ddff (0x40) IX[B]
[10] -1 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[11] -1 0 0x0000edc0 - 0x0000edff (0x40) IX[B]
[12] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[13] -1 0 0x0000eda0 - 0x0000edbf (0x20) IX[B]
[14] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[15] -1 0 0x00000374 - 0x00000374 (0x1) IX[B]
[16] -1 0 0x00000170 - 0x00000170 (0x1) IX[B]
[17] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[B]
[18] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[19] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
[20] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
[21] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
[22] -1 0 0x0000ed98 - 0x0000ed9f (0x8) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[1] -1 0 0xfeafe000 - 0xfeafefff (0x1000) MX[B]
[2] -1 0 0xfeb7f900 - 0xfeb7f9ff (0x100) MX[B]
[3] -1 0 0xfeb7fa00 - 0xfeb7fbff (0x200) MX[B]
[4] -1 0 0xfeb7fc00 - 0xfeb7ffff (0x400) MX[B]
[5] -1 0 0xffa80800 - 0xffa80bff (0x400) MX[B]
[6] -1 0 0xf0000000 - 0xefffffff (0x0) MX[B]O
[7] -1 0 0xfeb80000 - 0xfebfffff (0x80000) MX[B](B)
[8] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[9] -1 0 0x0000ddc0 - 0x0000ddff (0x40) IX[B]
[10] -1 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[11] -1 0 0x0000edc0 - 0x0000edff (0x40) IX[B]
[12] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[13] -1 0 0x0000eda0 - 0x0000edbf (0x20) IX[B]
[14] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[15] -1 0 0x00000374 - 0x00000374 (0x1) IX[B]
[16] -1 0 0x00000170 - 0x00000170 (0x1) IX[B]
[17] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[B]
[18] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[19] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
[20] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
[21] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
[22] -1 0 0x0000ed98 - 0x0000ed9f (0x8) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfeafe000 - 0xfeafefff (0x1000) MX[B]
[7] -1 0 0xfeb7f900 - 0xfeb7f9ff (0x100) MX[B]
[8] -1 0 0xfeb7fa00 - 0xfeb7fbff (0x200) MX[B]
[9] -1 0 0xfeb7fc00 - 0xfeb7ffff (0x400) MX[B]
[10] -1 0 0xffa80800 - 0xffa80bff (0x400) MX[B]
[11] -1 0 0xf0000000 - 0xefffffff (0x0) MX[B]O
[12] -1 0 0xfeb80000 - 0xfebfffff (0x80000) MX[B](B)
[13] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000ddc0 - 0x0000ddff (0x40) IX[B]
[17] -1 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[18] -1 0 0x0000edc0 - 0x0000edff (0x40) IX[B]
[19] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[20] -1 0 0x0000eda0 - 0x0000edbf (0x20) IX[B]
[21] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[22] -1 0 0x00000374 - 0x00000374 (0x1) IX[B]
[23] -1 0 0x00000170 - 0x00000170 (0x1) IX[B]
[24] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[B]
[25] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[26] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
[27] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
[28] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
[29] -1 0 0x0000ed98 - 0x0000ed9f (0x8) IX[B](B)
(WW) Ignoring request to load module GLcore
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.8.2, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":
No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":
No symbols found
Skipping
"/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o": No
symbols found
(II) Module GLcore: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "i810"
(II) Loading /usr/X11R6/lib/modules/drivers/i810_drv.o
(II) Module i810: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.4.0
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 0.7
(II) LoadModule: "kbd"
(II) Loading /usr/X11R6/lib/modules/input/kbd_drv.o
(II) Module kbd: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915),
915GM, 945G
(II) Primary Device is: PCI 00:02:0
(--) Chipset 865G found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfeafe000 - 0xfeafefff (0x1000) MX[B]
[7] -1 0 0xfeb7f900 - 0xfeb7f9ff (0x100) MX[B]
[8] -1 0 0xfeb7fa00 - 0xfeb7fbff (0x200) MX[B]
[9] -1 0 0xfeb7fc00 - 0xfeb7ffff (0x400) MX[B]
[10] -1 0 0xffa80800 - 0xffa80bff (0x400) MX[B]
[11] -1 0 0xf0000000 - 0xefffffff (0x0) MX[B]O
[12] -1 0 0xfeb80000 - 0xfebfffff (0x80000) MX[B](B)
[13] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000ddc0 - 0x0000ddff (0x40) IX[B]
[17] -1 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[18] -1 0 0x0000edc0 - 0x0000edff (0x40) IX[B]
[19] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[20] -1 0 0x0000eda0 - 0x0000edbf (0x20) IX[B]
[21] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[22] -1 0 0x00000374 - 0x00000374 (0x1) IX[B]
[23] -1 0 0x00000170 - 0x00000170 (0x1) IX[B]
[24] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[B]
[25] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[26] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
[27] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
[28] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
[29] -1 0 0x0000ed98 - 0x0000ed9f (0x8) IX[B](B)
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfeafe000 - 0xfeafefff (0x1000) MX[B]
[7] -1 0 0xfeb7f900 - 0xfeb7f9ff (0x100) MX[B]
[8] -1 0 0xfeb7fa00 - 0xfeb7fbff (0x200) MX[B]
[9] -1 0 0xfeb7fc00 - 0xfeb7ffff (0x400) MX[B]
[10] -1 0 0xffa80800 - 0xffa80bff (0x400) MX[B]
[11] -1 0 0xf0000000 - 0xefffffff (0x0) MX[B]O
[12] -1 0 0xfeb80000 - 0xfebfffff (0x80000) MX[B](B)
[13] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[19] -1 0 0x0000ddc0 - 0x0000ddff (0x40) IX[B]
[20] -1 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[21] -1 0 0x0000edc0 - 0x0000edff (0x40) IX[B]
[22] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[23] -1 0 0x0000eda0 - 0x0000edbf (0x20) IX[B]
[24] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[25] -1 0 0x00000374 - 0x00000374 (0x1) IX[B]
[26] -1 0 0x00000170 - 0x00000170 (0x1) IX[B]
[27] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[B]
[28] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[29] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
[30] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
[31] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
[32] -1 0 0x0000ed98 - 0x0000ed9f (0x8) IX[B](B)
[33] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[34] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Reloading /usr/X11R6/lib/modules/libvbe.a
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(**) 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/X11R6/lib/modules/linux/libint10.a
(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: 8000 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 0xE8000000
(--) I810(0): IO registers at addr 0xFEB80000
(II) I810(0): 1 display pipe available.
(II) I810(0): detected 8060 kB stolen memory.
(II) I810(0): I830CheckAvailableMemory: 955388 kB available
(II) I810(0): Will attempt to tell the BIOS that there is 12288 kB VideoRAM
(WW) I810(0): Extended BIOS function 0x5f11 not supported.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(II) I810(0): initializing int10
(WW) I810(0): Bad V_BIOS checksum
(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: 12288 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): Tweak BIOS image to 12288 kB VideoRAM
(--) I810(0): Pre-allocated VideoRAM: 8060 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: 2972
(==) 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: CRT2 (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): 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) Reloading /usr/X11R6/lib/modules/libddc.a
(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): Will use BIOS call 0x5f05 to set refresh rates for CRTs.
(--) I810(0): Maximum space available for video modes: 12288 kByte
(II) I810(0): Using detected DDC timings
(II) I810(0): HorizSync 30-70
(II) I810(0): VertRefresh 50-160
Mode: 30 (640x480)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005ace
BytesPerScanline: 640
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 37
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 640
BnkNumberOfImagePages: 37
LinNumberOfImagePages: 37
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: 0xc0005ace
BytesPerScanline: 800
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 26
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 800
BnkNumberOfImagePages: 26
LinNumberOfImagePages: 26
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: 0xc0005ace
BytesPerScanline: 1024
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 15
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1024
BnkNumberOfImagePages: 15
LinNumberOfImagePages: 15
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: 0xc0005ace
BytesPerScanline: 1280
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 8
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 8
LinNumberOfImagePages: 8
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: 0xc0005ace
BytesPerScanline: 1600
XResolution: 1600
YResolution: 1200
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: 0xe8000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 5
LinNumberOfImagePages: 5
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 3c (1920x1440)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005ace
BytesPerScanline: 1920
XResolution: 1920
YResolution: 1440
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 3
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1920
BnkNumberOfImagePages: 3
LinNumberOfImagePages: 3
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: 0xc0005ace
BytesPerScanline: 1280
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 20
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 20
LinNumberOfImagePages: 20
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: 0xc0005ace
BytesPerScanline: 1600
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 11
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 1600
BnkNumberOfImagePages: 11
LinNumberOfImagePages: 11
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: 0xc0005ace
BytesPerScanline: 2048
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 2048
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
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: 0xc0005ace
BytesPerScanline: 2560
XResolution: 1280
YResolution: 1024
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: 0xe8000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 3
LinNumberOfImagePages: 3
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: 0xc0005ace
BytesPerScanline: 3200
XResolution: 1600
YResolution: 1200
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: 0xe8000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 4d (1920x1440)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005ace
BytesPerScanline: 3840
XResolution: 1920
YResolution: 1440
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 1
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 3840
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
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: 0xc0005ace
BytesPerScanline: 2560
XResolution: 640
YResolution: 480
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 9
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 9
LinNumberOfImagePages: 9
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: 0xc0005ace
BytesPerScanline: 3200
XResolution: 800
YResolution: 600
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 5
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 3200
BnkNumberOfImagePages: 5
LinNumberOfImagePages: 5
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: 0xc0005ace
BytesPerScanline: 4096
XResolution: 1024
YResolution: 768
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 3
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xe8000000
LinBytesPerScanLine: 4096
BnkNumberOfImagePages: 3
LinNumberOfImagePages: 3
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*(WW) (1280x1024,DELL E773p) mode clock 135MHz exceeds DDC maximum 110MHz
(WW) (1280x1024,DELL E773p) mode clock 157.5MHz exceeds DDC maximum 110MHz
Mode: 58 (1280x1024)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005ace
BytesPerScanline: 5120
XResolution: 1280
YResolution: 1024
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: 0xe8000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 1
LinNumberOfImagePages: 1
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*(WW) (1600x1200,DELL E773p) mode clock 162MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 175.5MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 189MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 202.5MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 229.5MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 234.576MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 204.326MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 195.84MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 195.84MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 195.84MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 190.247MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 190.247MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 160.833MHz exceeds DDC maximum 110MHz
(WW) (1600x1200,DELL E773p) mode clock 148.759MHz exceeds DDC maximum 110MHz
Mode: 5a (1600x1200)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005ace
BytesPerScanline: 6400
XResolution: 1600
YResolution: 1200
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: 0xe8000000
LinBytesPerScanLine: 6400
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
Mode: 5c (1920x1440)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005ace
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: 0xe8000000
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): DELL E773p: Using hsync range of 30.00-70.00 kHz
(II) I810(0): DELL E773p: Using vrefresh range of 50.00-160.00 Hz
(II) I810(0): Not using built-in mode "1600x1200" (width too large for
virtual size)
(1600x1200,DELL E773p) mode clock 162MHz exceeds DDC maximum 110MHz
(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 60.02Hz refresh for mode "1280x1024" (858)
(II) I810(0): Attempting to use 85.00Hz refresh for mode "1024x768" (854)
(II) I810(0): Attempting to use 85.14Hz refresh for mode "800x600" (852)
(II) I810(0): Attempting to use 85.01Hz refresh for mode "640x480" (850)
(--) I810(0): Display dimensions: (310, 230) mm
(--) I810(0): DPI set to (104, 113)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
Skipping "/usr/X11R6/lib/modules/libfb.a:fbmmx.o": No symbols found
(II) Module fb: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.2.0
ABI class: X.Org Video Driver, version 0.7
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(==) I810(0): VBE Restore workaround: enabled.
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/X11R6/lib/modules/libshadow.a
(II) Module shadow: vendor="X.Org Foundation"
compiled for 6.8.2, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xfeb80000 - 0xfebfffff (0x80000) MS[B]
[1] 0 0 0xe8000000 - 0xefffffff (0x8000000) MS[B]
[2] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[8] -1 0 0xfeafe000 - 0xfeafefff (0x1000) MX[B]
[9] -1 0 0xfeb7f900 - 0xfeb7f9ff (0x100) MX[B]
[10] -1 0 0xfeb7fa00 - 0xfeb7fbff (0x200) MX[B]
[11] -1 0 0xfeb7fc00 - 0xfeb7ffff (0x400) MX[B]
[12] -1 0 0xffa80800 - 0xffa80bff (0x400) MX[B]
[13] -1 0 0xf0000000 - 0xefffffff (0x0) MX[B]O
[14] -1 0 0xfeb80000 - 0xfebfffff (0x80000) MX[B](B)
[15] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[19] 0 0 0x0000ed98 - 0x0000ed9f (0x8) IS[B]
[20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[21] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[22] -1 0 0x0000ddc0 - 0x0000ddff (0x40) IX[B]
[23] -1 0 0x0000de00 - 0x0000deff (0x100) IX[B]
[24] -1 0 0x0000edc0 - 0x0000edff (0x40) IX[B]
[25] -1 0 0x0000ee00 - 0x0000eeff (0x100) IX[B]
[26] -1 0 0x0000eda0 - 0x0000edbf (0x20) IX[B]
[27] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[28] -1 0 0x00000374 - 0x00000374 (0x1) IX[B]
[29] -1 0 0x00000170 - 0x00000170 (0x1) IX[B]
[30] -1 0 0x000003f4 - 0x000003f4 (0x1) IX[B]
[31] -1 0 0x000001f0 - 0x000001f0 (0x1) IX[B]
[32] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
[33] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
[34] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
[35] -1 0 0x0000ed98 - 0x0000ed9f (0x8) IX[B](B)
[36] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[37] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(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: 8000 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: 10240 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
(0x36ee7000).
(II) I810(0): Allocated 64 kB for the scratch buffer at 0x7fea000
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
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] loaded kernel module for "i915" driver
(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 0xf8c67000
(II) I810(0): [drm] mapped SAREA 0xf8c67000 to 0xb7d4d000
(II) I810(0): [drm] framebuffer handle = 0xe8020000
(II) I810(0): [drm] added 1 reserved context for kernel
(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 32 kB for the logical context at 0x67f8000.
(II) I810(0): Allocated 38656 kB for textures at 0xa20000
(II) I810(0): Updated framebuffer allocation size from 10240 to 10248 kByte
(II) I810(0): Updated pixmap cache from 256 scanlines to 257 scanlines
(II) I810(0): 0x8413a54: Memory at offset 0x00020000, size 10248 kBytes
(II) I810(0): 0x83f4e00: Memory at offset 0x07fff000, size 4 kBytes
(II) I810(0): 0x83f4e28: Memory at offset 0x07ffb000, size 16 kBytes
(II) I810(0): 0x84e278c: Memory at offset 0x00000000, size 128 kBytes
(II) I810(0): 0x8413a94: Memory at offset 0x07fea000, size 64 kBytes
(II) I810(0): 0x83c2e50: Memory at offset 0x07ffa000, size 4 kBytes
(II) I810(0): 0x8413ae4: Memory at offset 0x07000000, size 8192 kBytes
(II) I810(0): 0x8413b04: Memory at offset 0x06800000, size 8192 kBytes
(II) I810(0): 0x8413b44: Memory at offset 0x067f8000, size 32 kBytes
(II) I810(0): 0x8413b24: Memory at offset 0x00a20000, size 38656 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 = 0xfeb80000
(II) I810(0): [drm] Back Buffer = 0xef000000
(II) I810(0): [drm] Depth Buffer = 0xee800000
(II) I810(0): [drm] ring buffer = 0xe8000000
(II) I810(0): [drm] textures = 0xe8a20000
(II) I810(0): [drm] dma control initialized, using IRQ 16
(II) I810(0): [drm] Initialized kernel agp heap manager, 39583744
(II) I810(0): [dri] visual configs initialized
(==) I810(0): Write-combining range (0xe8000000,0x8000000)
(II) I810(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is
0x0000
(WW) I810(0): Extended BIOS function 0x5f05 failed.
(II) I810(0): xf86BindGARTMemory: bind key 7 at 0x007df000 (pgoffset 2015)
(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 0x07000000 (pgoffset 28672)
(II) I810(0): xf86BindGARTMemory: bind key 5 at 0x06800000 (pgoffset 26624)
(II) I810(0): xf86BindGARTMemory: bind key 6 at 0x067f8000 (pgoffset 26616)
(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
(II) I810(0): maxBandwidth is 1528 Mbyte/s, pipe bandwidths are 420
Mbyte/s, 0 Mbyte/s
(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:
32 128x128 slots
12 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): X context handle = 0x00000001
(II) I810(0): [drm] installed DRM signal handler
(II) I810(0): [DRI] installation complete
(II) I810(0): direct rendering: Enabled
(WW) I810(0): Option "UseFBDev" is not used
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(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
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Generic Keyboard: XkbModel: "pc105"
(**) Option "XkbLayout" "gb"
(**) Generic Keyboard: XkbLayout: "gb"
(**) Option "XkbVariant" "gb"
(**) Generic Keyboard: XkbVariant: "gb"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) Option "Protocol" "ImPS/2"
(**) Configured Mouse: Device: "/dev/input/mice"
(**) Configured Mouse: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Configured Mouse: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "true"
(**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 5
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type:
KEYBOARD)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Warning: font renderer for ".pcf" already registered at priority 0
Warning: font renderer for ".pcf.Z" already registered at priority 0
Warning: font renderer for ".pcf.gz" already registered at priority 0
Warning: font renderer for ".snf" already registered at priority 0
Warning: font renderer for ".snf.Z" already registered at priority 0
Warning: font renderer for ".snf.gz" already registered at priority 0
Warning: font renderer for ".bdf" already registered at priority 0
Warning: font renderer for ".bdf.Z" already registered at priority 0
Warning: font renderer for ".bdf.gz" already registered at priority 0
Warning: font renderer for ".pmf" already registered at priority 0
(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 47 Mpixel/s
(II) I810(0): maxBandwidth is 1528 Mbyte/s, pipe bandwidths are 252
Mbyte/s, 0 Mbyte/s
| |
| Neil Woods 2005-10-24, 9:42 am |
| >>>>> Peter X writes:
> PJR wrote:
[vbcol=seagreen]
> I hadn't -- I have now! It builds an xorg.conf file very similar to the
> one that I had after a fresh install. The only difference, is that it
> has 1280x1024 as the highest resolution (which is correct) and Gnome
> also shows this available resolution, and shows the correct refresh of
> 60Hz for 1280x1024.
> But the other resolution, 640x480, 800x600, 1024x768 all show a refresh
> of 85Hz.
It's possible of course that your card simply will not support 1280x1024
at 85Hz. Trying to override the values obtained via the Data Display
Channel (DDC) is not a good idea -- older monitors have allegedly been
damaged by incorrect settings.
I'm not familiar with this particular graphics chipset, but it appears
that others have had similar problems setting the resolution, e.g.
<http://www.linuxquestions.org/hcl/s...&cat=all&page=1>
There is also a Debian package called 855resolution which may be of
interest. From it's description:
Description: resolution modify tool for Intel graphic chipset
This software changes the resolution of an available vbios mode.
It will work with Intel 845G/855GM/865G.
It patches only the RAM version of the video bios, so the new resolution
is lost each time you reboot. If you want to automatically set the resolution
on each boot and before X is launched, see /usr/share/doc/855resolution/
README.Debian for information about configuring the provided initscript.
> Below I've pasted my /etc/X11/xorg.conf (from dexconf) and then my
> /var/log/Xorg.0.log files:
[deleted]
--
Neil.
It takes all kinds to fill the freeways.
-- Crazy Charlie
| |
| Lawrence D'Oliveiro 2005-10-24, 9:42 am |
| In article <11l22qcacu3u0f9@corp.supernews.com>,
Peter X <peterx14@example.com> wrote:
>I've just installed Ubuntu 5.10 (final), and it has defaulted my monitor
> to 1024 x 768 @ 85(ish) [Hz]. However, I'd prefer it ran at 75[Hz] since
>according to the monitor specs thats the "optimum" setup (whatever that
>means).
I think if you're using the Linux fbdev device, then none of your XOrg
configuration will make any difference to screen resolutions and refresh
rates. The only thing that matters is the "vga=" kernel parameter in
your boot settings.
|
|
|
|
|