LinHES Forums http://forum.linhes.org/ |
|
Getting X to run at native (wide screen) resolution http://forum.linhes.org/viewtopic.php?f=14&t=17497 |
Page 1 of 2 |
Author: | poflynn [ Fri Dec 28, 2007 7:24 pm ] |
Post subject: | Getting X to run at native (wide screen) resolution |
Hi all, Summary: I'm trying to get X to run at the native resolution (1680X1050) of my wide-screen monitor. But my integrated GFX card doesn't support this resolution. Details: I picked up an Acer X223WBD over Christmas. Very nice monitor for $200. Don't bother looking for info on this monitor, it's not even listed on Acer's website! My mobo has an integrated Intel 865G chipset. From my research I need to use the 915resolution utility to force the chipset to o/p at 1650X1080. I really don't know much about linux, I tried did my best to get this working by adding it to bootmisc.sh & deleting all modelines from xorg.conf and added the one referenced in the URL below (he has almost the identical monitor, luckily). This URL claims to give you all the info you need to get this to work but as I'm not even sure how to get 915resolution to run as a service so I'm kinda stuck. So I guess just getting this util to startup in the 'proper' fashion would be a good start if anyone could help me with that. I notice that it is already installed with KM. Once I have it running properly I think I can handle the modelines side of things... I'm surprised to get almost no hits on this util in this forum, I would have thought that many folks could make use of it. TIA! http://www.melvilletheatre.com/articles/intel-widescreen/index.html |
Author: | poflynn [ Fri Dec 28, 2007 11:49 pm ] |
Post subject: | Some Progress |
Ok, made some progress. 1. Added "/usr/sbin/915resolution 52 1680 1050" to the end of /etc/init.d/bootmisc.sh (this should patch mode 52 to be 1680x1050) 2. Edited /etc/X11/xorg.conf as follows: Quote: Section "Monitor" Identifier "Acer" VendorName "Acer" ModelName "Acer X223W" Option "DPMS" Modeline "1680x1050" 146 1680 1784 1960 2240 1050 1053 1059 1089 EndSection And Quote: Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Acer" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1680x1050" EndSubSection EndSection Now I boot and my monitor goes into power saving mode, yaaay. How is that progress? Well, if I vnc to the box I see a massive 1680X1050X24 screen (verified by clicking menu option "Connection Info"). If I didn't know better I might suspect that the monitor couldn't display this mode but it should be able to. Here's the entry from the user manual Quote: WXGA+ 1680x1050 65.29 59.954 146.25 Note that the msg I get on the monitor right before going into power saving mode is "No Signal" BTW I am using the i810 driver in xorg.conf, which is a pre-req for all of this. Here's some info which may be of interest from Xorg.0.log Quote: (II) I810(0): Monitor0: Using hsync range of 30.00-82.00 kHz (II) I810(0): Monitor0: Using vrefresh range of 56.00-76.00 Hz (II) I810(0): Not using mode "800x600" (no mode of this name) (II) I810(0): Not using built-in mode "1600x1200" (width too large for virtual size) (II) I810(0): Not using built-in mode "1680x1050" (width too large for virtual size) (II) I810(0): Not using built-in mode "1280x1024" (width too large for virtual size) (--) I810(0): Virtual size is 1024x768 (pitch 1024) (**) I810(0): *Built-in mode "1024x768" (**) I810(0): *Built-in mode "640x480" (II) I810(0): Attempting to use 75.03Hz refresh for mode "1024x768" (854) (II) I810(0): Attempting to use 75.00Hz refresh for mode "640x480" (850) (--) I810(0): Display dimensions: (470, 300) mm (--) I810(0): DPI set to (55, 65) Lastly, as mentioned, this is a i865G chipset, I thought I'd include the list of resolutions claimed capable by that chipset.. Quote: 640 x 480
800 x 600 1024 x 768 1152 x 864 1280 x 720 1280 x768 1280 x 960 1280 x 1024 1400 x 1050 1600 x 900 1600 x 1200 1856 x 1392 1920 x 1080 1920 x 1200 1920 x 1440 2048 x 1536 |
Author: | chilltemp [ Tue Jan 01, 2008 1:09 pm ] |
Post subject: | |
I had similar problems getting my HDTV to work. Adding the following to the Monitor section solved the problem Code: Option "UseEdidDpi" "FALSE"
HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors VertRefresh 50.0 - 180.0 |
Author: | tjc [ Tue Jan 01, 2008 1:13 pm ] |
Post subject: | |
Just a clarification, check the manual for your set and make sure that the scan rates used are in range for your HDTV. |
Author: | grante [ Tue Jan 01, 2008 2:29 pm ] |
Post subject: | Re: Some Progress |
poflynn wrote: Here's some info which may be of interest from Xorg.0.log Quote: (II) I810(0): Monitor0: Using hsync range of 30.00-82.00 kHz (II) I810(0): Monitor0: Using vrefresh range of 56.00-76.00 Hz (II) I810(0): Not using mode "800x600" (no mode of this name) (II) I810(0): Not using built-in mode "1600x1200" (width too large for virtual size) (II) I810(0): Not using built-in mode "1680x1050" (width too large for virtual size) (II) I810(0): Not using built-in mode "1280x1024" (width too large for virtual size) (--) I810(0): Virtual size is 1024x768 (pitch 1024) Those messages explain one of your problems: your virtual screen size is 1024x768, and the mode you're requesting is larger than the virtual size. Try setting the virtual screen size larger like this: Code: SubSection "Display"
Virtual 1680 1050 Viewport 0 0 Depth 24 Modes "1680x1050" EndSubSection |
Author: | tjc [ Tue Jan 01, 2008 8:42 pm ] |
Post subject: | |
Not sure if that was a typo or not (did you mean "Virtual 1650 1080"?) but you really want the virtual size to match the actual size otherwise you can end up with some very funky behavior. Older virtual window managers like FVWM used to use this type of thing to their advantage, but it doesn't play well with full screen apps like MythTV, where part of a menu might be hidden off the edge of a screen. |
Author: | grante [ Tue Jan 01, 2008 9:25 pm ] |
Post subject: | |
tjc wrote: Not sure if that was a typo or not (did you mean "Virtual 1650 1080"?)
I wondered about that, too. |
Author: | poflynn [ Tue Jan 01, 2008 10:39 pm ] |
Post subject: | Thanks so far... |
Thanks for all the feedback, excellent as ever. Still no joy however. Now I get zero errors in Xorg.0.log and only one warning that looks vaguely interesting - "(WW) I810(0): Bad V_BIOS checksum". I wonder is this caused by 915resolution. Quote: SubSection "Display" Virtual 1680 1050 Viewport 0 0 Depth 24 Modes "1680x1050" "1024x768" EndSubSection Changed my monitor section slightly to set the refresh rates to what is correct for this monitor. Quote: Section "Monitor"
Identifier "Acer" VendorName "Acer" ModelName "Acer X223W" Option "DPMS" "true" HorizSync 30.0 - 82.0 VertRefresh 56.0 - 76.0 Modeline "1680x1050" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 EndSection Still boots with a turned-off monitor but looks good in VNC ![]() Thanks again folks, |
Author: | Greg Frost [ Tue Jan 01, 2008 10:57 pm ] |
Post subject: | |
Try increasing the verbosity of the X logging as described here to see if your monitor is reporting any EDID modelines that you could try: http://www.knoppmythwiki.org/index.php? ... ngLogFiles (under the Problem: Problem: You are having problems setting up HDTV modeilnes in your X configuration) |
Author: | poflynn [ Wed Jan 02, 2008 12:10 am ] |
Post subject: | |
Done, see below. I don't really know what to look for though. You mentioned to look for modelines reported by my monitor. Note that, as mentioned earlier, I built the modeline from this entry: Quote: (II) I810(0): Supported additional Video Mode: (II) I810(0): clock: 146.2 MHz Image Size: 473 x 296 mm (II) I810(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0 (II) I810(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0 (II) I810(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 160 MHz (II) I810(0): Monitor name: Acer X223W c I wonder do these mean anything.... Quote: (II) I810(0): Will use BIOS call 0x5f05 to set refresh rates for CRTs. and (much later) Quote: (WW) I810(0): Extended BIOS function 0x5f05 failed. I am posting the complete log below, thanks to everyone for the contributions so far. Paul Quote: 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: UNKNOWN Current Operating System: Linux fe-2 2.6.18-chw-13 #1 SMP PREEMPT Sat Jun 2 21:06:06 PDT 2007 i686 Build Date: 04 April 2007 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jan 1 21:55:00 2008 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "XFree86 Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Acer" (**) | |-->Device "Card0" (**) |-->Input Device "Keyboard0" (**) |-->Input Device "USB Mouse" (WW) The directory "/usr/share/fonts/X11/Speedo" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/X11/PEX" does not exist. Entry deleted from font path. (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. Entry deleted from font path. (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist. Entry deleted from font path. (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/truetype". Entry deleted from font path. (Run 'mkfontdir' on "/usr/share/fonts/truetype"). (WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist. Entry deleted from font path. (**) FontPath set to: /usr/share/fonts/X11/misc:unscaled, /usr/share/fonts/X11/75dpi:unscaled, /usr/share/fonts/X11/100dpi:unscaled, /usr/share/fonts/X11/Type1 (**) RgbPath set to "/usr/share/X11/rgb" (**) ModulePath set to "/usr/lib/xorg/modules" (**) Option "AllowMouseOpenFail" "true" (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory) (II) No APM support in BIOS or kernel (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 103c,12bc rev 02 class 06,00,00 hdr 00 (II) PCI: 00:02:0: chip 8086,2572 card 103c,12bc rev 02 class 03,00,00 hdr 00 (II) PCI: 00:1d:0: chip 8086,24d2 card 103c,12bc rev 02 class 0c,03,00 hdr 80 (II) PCI: 00:1d:1: chip 8086,24d4 card 103c,12bc rev 02 class 0c,03,00 hdr 00 (II) PCI: 00:1d:7: chip 8086,24dd card 103c,12bc 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 103c,12bc rev 02 class 01,01,8a hdr 00 (II) PCI: 00:1f:2: chip 8086,24d1 card 103c,12bc rev 02 class 01,01,8f hdr 00 (II) PCI: 00:1f:5: chip 8086,24d5 card 103c,12bc rev 02 class 04,01,00 hdr 00 (II) PCI: 05:02:0: chip 14e4,1696 card 103c,12bc rev 03 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,5), 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 5: bridge is at (0:30:0), (0,5,5), BCTRL: 0x0006 (VGA_EN is cleared) (II) Bus 5 non-prefetchable memory range: [0] -1 0 0xfc500000 - 0xfc7fffff (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, 0xfc400000/19, I/O @ 0x14c0/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 0xf8000000 from 0xfbffffff to 0xf7ffffff (II) Active PCI resource ranges: [0] -1 0 0xfc500000 - 0xfc50ffff (0x10000) MX[B] [1] -1 0 0xfc480600 - 0xfc4806ff (0x100) MX[B] [2] -1 0 0xfc480400 - 0xfc4805ff (0x200) MX[B] [3] -1 0 0x40000000 - 0x400003ff (0x400) MX[B] [4] -1 0 0xfc480000 - 0xfc4803ff (0x400) MX[B] [5] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O [6] -1 0 0xfc400000 - 0xfc47ffff (0x80000) MX[B](B) [7] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [8] -1 0 0x00001400 - 0x0000143f (0x40) IX[B] [9] -1 0 0x00001000 - 0x000010ff (0x100) IX[B] [10] -1 0 0x000014b0 - 0x000014bf (0x10) IX[B] [11] -1 0 0x000014f4 - 0x000014f7 (0x4) IX[B] [12] -1 0 0x000014e0 - 0x000014e7 (0x8) IX[B] [13] -1 0 0x000014f0 - 0x000014f3 (0x4) IX[B] [14] -1 0 0x000014d8 - 0x000014df (0x8) IX[B] [15] -1 0 0x000014a0 - 0x000014af (0x10) IX[B] [16] -1 0 0x000014ec - 0x000014ec (0x1) IX[B] [17] -1 0 0x000014d0 - 0x000014d0 (0x1) IX[B] [18] -1 0 0x000014e8 - 0x000014e8 (0x1) IX[B] [19] -1 0 0x000014c8 - 0x000014c8 (0x1) IX[B] [20] -1 0 0x00001460 - 0x0000147f (0x20) IX[B] [21] -1 0 0x00001440 - 0x0000145f (0x20) IX[B] [22] -1 0 0x000014c0 - 0x000014c7 (0x8) IX[B](B) (II) Active PCI resource ranges after removing overlaps: [0] -1 0 0xfc500000 - 0xfc50ffff (0x10000) MX[B] [1] -1 0 0xfc480600 - 0xfc4806ff (0x100) MX[B] [2] -1 0 0xfc480400 - 0xfc4805ff (0x200) MX[B] [3] -1 0 0x40000000 - 0x400003ff (0x400) MX[B] [4] -1 0 0xfc480000 - 0xfc4803ff (0x400) MX[B] [5] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O [6] -1 0 0xfc400000 - 0xfc47ffff (0x80000) MX[B](B) [7] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [8] -1 0 0x00001400 - 0x0000143f (0x40) IX[B] [9] -1 0 0x00001000 - 0x000010ff (0x100) IX[B] [10] -1 0 0x000014b0 - 0x000014bf (0x10) IX[B] [11] -1 0 0x000014f4 - 0x000014f7 (0x4) IX[B] [12] -1 0 0x000014e0 - 0x000014e7 (0x8) IX[B] [13] -1 0 0x000014f0 - 0x000014f3 (0x4) IX[B] [14] -1 0 0x000014d8 - 0x000014df (0x8) IX[B] [15] -1 0 0x000014a0 - 0x000014af (0x10) IX[B] [16] -1 0 0x000014ec - 0x000014ec (0x1) IX[B] [17] -1 0 0x000014d0 - 0x000014d0 (0x1) IX[B] [18] -1 0 0x000014e8 - 0x000014e8 (0x1) IX[B] [19] -1 0 0x000014c8 - 0x000014c8 (0x1) IX[B] [20] -1 0 0x00001460 - 0x0000147f (0x20) IX[B] [21] -1 0 0x00001440 - 0x0000145f (0x20) IX[B] [22] -1 0 0x000014c0 - 0x000014c7 (0x8) IX[B](B) (II) OS-reported resource ranges after removing overlaps with PCI: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) All system resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0xfc500000 - 0xfc50ffff (0x10000) MX[B] [5] -1 0 0xfc480600 - 0xfc4806ff (0x100) MX[B] [6] -1 0 0xfc480400 - 0xfc4805ff (0x200) MX[B] [7] -1 0 0x40000000 - 0x400003ff (0x400) MX[B] [8] -1 0 0xfc480000 - 0xfc4803ff (0x400) MX[B] [9] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O [10] -1 0 0xfc400000 - 0xfc47ffff (0x80000) MX[B](B) [11] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [14] -1 0 0x00001400 - 0x0000143f (0x40) IX[B] [15] -1 0 0x00001000 - 0x000010ff (0x100) IX[B] [16] -1 0 0x000014b0 - 0x000014bf (0x10) IX[B] [17] -1 0 0x000014f4 - 0x000014f7 (0x4) IX[B] [18] -1 0 0x000014e0 - 0x000014e7 (0x8) IX[B] [19] -1 0 0x000014f0 - 0x000014f3 (0x4) IX[B] [20] -1 0 0x000014d8 - 0x000014df (0x8) IX[B] [21] -1 0 0x000014a0 - 0x000014af (0x10) IX[B] [22] -1 0 0x000014ec - 0x000014ec (0x1) IX[B] [23] -1 0 0x000014d0 - 0x000014d0 (0x1) IX[B] [24] -1 0 0x000014e8 - 0x000014e8 (0x1) IX[B] [25] -1 0 0x000014c8 - 0x000014c8 (0x1) IX[B] [26] -1 0 0x00001460 - 0x0000147f (0x20) IX[B] [27] -1 0 0x00001440 - 0x0000145f (0x20) IX[B] [28] -1 0 0x000014c0 - 0x000014c7 (0x8) IX[B](B) (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="NVIDIA Corporation" compiled for 4.0.2, module version = 1.0.7185 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (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: "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 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: "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.7.2 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 ABI class: X.Org XInput driver, version 0.6 (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 - 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 0xfc500000 - 0xfc50ffff (0x10000) MX[B] [5] -1 0 0xfc480600 - 0xfc4806ff (0x100) MX[B] [6] -1 0 0xfc480400 - 0xfc4805ff (0x200) MX[B] [7] -1 0 0x40000000 - 0x400003ff (0x400) MX[B] [8] -1 0 0xfc480000 - 0xfc4803ff (0x400) MX[B] [9] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O [10] -1 0 0xfc400000 - 0xfc47ffff (0x80000) MX[B](B) [11] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [14] -1 0 0x00001400 - 0x0000143f (0x40) IX[B] [15] -1 0 0x00001000 - 0x000010ff (0x100) IX[B] [16] -1 0 0x000014b0 - 0x000014bf (0x10) IX[B] [17] -1 0 0x000014f4 - 0x000014f7 (0x4) IX[B] [18] -1 0 0x000014e0 - 0x000014e7 (0x8) IX[B] [19] -1 0 0x000014f0 - 0x000014f3 (0x4) IX[B] [20] -1 0 0x000014d8 - 0x000014df (0x8) IX[B] [21] -1 0 0x000014a0 - 0x000014af (0x10) IX[B] [22] -1 0 0x000014ec - 0x000014ec (0x1) IX[B] [23] -1 0 0x000014d0 - 0x000014d0 (0x1) IX[B] [24] -1 0 0x000014e8 - 0x000014e8 (0x1) IX[B] [25] -1 0 0x000014c8 - 0x000014c8 (0x1) IX[B] [26] -1 0 0x00001460 - 0x0000147f (0x20) IX[B] [27] -1 0 0x00001440 - 0x0000145f (0x20) IX[B] [28] -1 0 0x000014c0 - 0x000014c7 (0x8) IX[B](B) (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0xfc500000 - 0xfc50ffff (0x10000) MX[B] [5] -1 0 0xfc480600 - 0xfc4806ff (0x100) MX[B] [6] -1 0 0xfc480400 - 0xfc4805ff (0x200) MX[B] [7] -1 0 0x40000000 - 0x400003ff (0x400) MX[B] [8] -1 0 0xfc480000 - 0xfc4803ff (0x400) MX[B] [9] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O [10] -1 0 0xfc400000 - 0xfc47ffff (0x80000) MX[B](B) [11] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [16] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [17] -1 0 0x00001400 - 0x0000143f (0x40) IX[B] [18] -1 0 0x00001000 - 0x000010ff (0x100) IX[B] [19] -1 0 0x000014b0 - 0x000014bf (0x10) IX[B] [20] -1 0 0x000014f4 - 0x000014f7 (0x4) IX[B] [21] -1 0 0x000014e0 - 0x000014e7 (0x8) IX[B] [22] -1 0 0x000014f0 - 0x000014f3 (0x4) IX[B] [23] -1 0 0x000014d8 - 0x000014df (0x8) IX[B] [24] -1 0 0x000014a0 - 0x000014af (0x10) IX[B] [25] -1 0 0x000014ec - 0x000014ec (0x1) IX[B] [26] -1 0 0x000014d0 - 0x000014d0 (0x1) IX[B] [27] -1 0 0x000014e8 - 0x000014e8 (0x1) IX[B] [28] -1 0 0x000014c8 - 0x000014c8 (0x1) IX[B] [29] -1 0 0x00001460 - 0x0000147f (0x20) IX[B] [30] -1 0 0x00001440 - 0x0000145f (0x20) IX[B] [31] -1 0 0x000014c0 - 0x000014c7 (0x8) IX[B](B) [32] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [33] 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" compiled for 7.1.1, module version = 1.0.0 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) Loading sub module "vm86" (II) LoadModule: "vm86" (II) Loading /usr/lib/xorg/modules/libvm86.so (II) Module vm86: vendor="X.Org Foundation" compiled for 7.1.1, module version = 1.0.0 ABI class: X.Org Video Driver, version 1.0 (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): VbeVersion is 768, OemStringPtr is 0x00002100, OemVendorNamePtr is 0x00002130, OemProductNamePtr is 0x00002142, OemProductRevPtr is 0x00002163 (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 0xF0000000 (--) I810(0): IO registers at addr 0xFC400000 (II) I810(0): 1 display pipe available. (II) I810(0): detected 8060 kB stolen memory. (II) I810(0): Kernel reported 174592 total, 1 used (II) I810(0): I830CheckAvailableMemory: 698364 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/lib/xorg/modules/libint10.so (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): VbeVersion is 768, OemStringPtr is 0x00002100, OemVendorNamePtr is 0x00002130, OemProductNamePtr is 0x00002142, OemProductRevPtr is 0x00002163 (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: 2919 (==) 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: ACR Model: 11 Serial#: 1938827893 (II) I810(0): Year: 2007 Week: 39 (II) I810(0): EDID Version: 1.3 (II) I810(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V (II) I810(0): Sync: Separate (II) I810(0): Max H-Image Size [cm]: horiz.: 47 vert.: 30 (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.644 redY: 0.348 greenX: 0.286 greenY: 0.603 (II) I810(0): blueX: 0.143 blueY: 0.070 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): Manufacturer's mask: 0 (II) I810(0): Supported Future Video Modes: (II) I810(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) I810(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513 (II) I810(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337 (II) I810(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149 (II) I810(0): #4: hsize: 1440 vsize 900 refresh: 75 vid: 3989 (II) I810(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179 (II) I810(0): #6: hsize: 1280 vsize 720 refresh: 60 vid: 49281 (II) I810(0): #7: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 (II) I810(0): Supported additional Video Mode: (II) I810(0): clock: 146.2 MHz Image Size: 473 x 296 mm (II) I810(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0 (II) I810(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0 (II) I810(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 82 kHz, PixClock max 160 MHz (II) I810(0): Monitor name: Acer X223W c (II) I810(0): Serial No: LAZ090473810 (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-82 (II) I810(0): VertRefresh 56-76 Mode: 30 (640x480) ModeAttributes: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d 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: 0xf0000000 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 (1680x1050) ModeAttributes: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d BytesPerScanline: 1680 XResolution: 1680 YResolution: 1050 XCharSize: 8 YCharSize: 16 NumberOfPlanes: 1 BitsPerPixel: 8 NumberOfBanks: 1 MemoryModel: 4 BankSize: 0 NumberOfImages: 6 RedMaskSize: 0 RedFieldPosition: 0 GreenMaskSize: 0 GreenFieldPosition: 0 BlueMaskSize: 0 BlueFieldPosition: 0 RsvdMaskSize: 0 RsvdFieldPosition: 0 DirectColorModeInfo: 0 PhysBasePtr: 0xf0000000 LinBytesPerScanLine: 1680 BnkNumberOfImagePages: 6 LinNumberOfImagePages: 6 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: 0xc0005b3d 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: 0xf0000000 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: 0xc0005b3d 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: 0xf0000000 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: 0xc0005b3d 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: 0xf0000000 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: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d 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: 0xf0000000 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: 0xc0005b3d 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: 0xf0000000 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 (1680x1050) ModeAttributes: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d BytesPerScanline: 3360 XResolution: 1680 YResolution: 1050 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: 3360 BnkNumberOfImagePages: 2 LinNumberOfImagePages: 2 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: 0xc0005b3d 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: 0xf0000000 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: 0xc0005b3d 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: 0xf0000000 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: 0xc0005b3d 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: 0xf0000000 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: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d 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: 0xf0000000 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: 0xc0005b3d 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: 0xf0000000 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 (1680x1050) ModeAttributes: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d BytesPerScanline: 6720 XResolution: 1680 YResolution: 1050 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: 6720 BnkNumberOfImagePages: 0 LinNumberOfImagePages: 0 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: 0xc0005b3d 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: 0xf0000000 LinBytesPerScanLine: 4096 BnkNumberOfImagePages: 3 LinNumberOfImagePages: 3 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: 0xc0005b3d 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: 0xf0000000 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,Acer) mode clock 162MHz exceeds DDC maximum 160MHz (WW) (1600x1200,Acer) mode clock 175.5MHz exceeds DDC maximum 160MHz (WW) (1600x1200,Acer) mode clock 189MHz exceeds DDC maximum 160MHz (WW) (1600x1200,Acer) mode clock 202.5MHz exceeds DDC maximum 160MHz (WW) (1600x1200,Acer) mode clock 229.5MHz exceeds DDC maximum 160MHz Mode: 5a (1600x1200) ModeAttributes: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d 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: 0xf0000000 LinBytesPerScanLine: 6400 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): Not using mode "1600x1200" (height too large for virtual size) *(WW) (1920x1440,Acer) mode clock 234MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 297MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 341.35MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 297.395MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 297.395MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 297.395MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 297.395MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 283.392MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 283.392MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 283.392MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 275.152MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 275.152MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 233.155MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 217.027MHz exceeds DDC maximum 160MHz (WW) (1920x1440,Acer) mode clock 217.027MHz exceeds DDC maximum 160MHz Mode: 5c (1920x1440) ModeAttributes: 0x9b WinAAttributes: 0x7 WinBAttributes: 0x0 WinGranularity: 64 WinSize: 64 WinASegment: 0xa000 WinBSegment: 0x0 WinFuncPtr: 0xc0005b3d 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): Acer: Using hsync range of 30.00-82.00 kHz (II) I810(0): Acer: Using vrefresh range of 56.00-76.00 Hz (**) I810(0): Virtual size is 1680x1050 (pitch 1680) (**) I810(0): *Built-in mode "1680x1050" (**) I810(0): *Built-in mode "1024x768" (**) I810(0): Built-in mode "1280x1024" (**) I810(0): Built-in mode "640x480" (II) I810(0): Attempting to use 59.95Hz refresh for mode "1680x1050" (852) (II) I810(0): Attempting to use 75.08Hz refresh for mode "1024x768" (854) (II) I810(0): Attempting to use 75.02Hz refresh for mode "1280x1024" (858) (II) I810(0): Attempting to use 75.00Hz refresh for mode "640x480" (850) (--) I810(0): Display dimensions: (470, 300) mm (--) I810(0): DPI set to (90, 88) (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 0xfc400000 - 0xfc47ffff (0x80000) MS[B] [1] 0 0 0xf0000000 - 0xf7ffffff (0x8000000) MS[B] [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [6] -1 0 0xfc500000 - 0xfc50ffff (0x10000) MX[B] [7] -1 0 0xfc480600 - 0xfc4806ff (0x100) MX[B] [8] -1 0 0xfc480400 - 0xfc4805ff (0x200) MX[B] [9] -1 0 0x40000000 - 0x400003ff (0x400) MX[B] [10] -1 0 0xfc480000 - 0xfc4803ff (0x400) MX[B] [11] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O [12] -1 0 0xfc400000 - 0xfc47ffff (0x80000) MX[B](B) [13] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [17] 0 0 0x000014c0 - 0x000014c7 (0x8) IS[B] [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [20] -1 0 0x00001400 - 0x0000143f (0x40) IX[B] [21] -1 0 0x00001000 - 0x000010ff (0x100) IX[B] [22] -1 0 0x000014b0 - 0x000014bf (0x10) IX[B] [23] -1 0 0x000014f4 - 0x000014f7 (0x4) IX[B] [24] -1 0 0x000014e0 - 0x000014e7 (0x8) IX[B] [25] -1 0 0x000014f0 - 0x000014f3 (0x4) IX[B] [26] -1 0 0x000014d8 - 0x000014df (0x8) IX[B] [27] -1 0 0x000014a0 - 0x000014af (0x10) IX[B] [28] -1 0 0x000014ec - 0x000014ec (0x1) IX[B] [29] -1 0 0x000014d0 - 0x000014d0 (0x1) IX[B] [30] -1 0 0x000014e8 - 0x000014e8 (0x1) IX[B] [31] -1 0 0x000014c8 - 0x000014c8 (0x1) IX[B] [32] -1 0 0x00001460 - 0x0000147f (0x20) IX[B] [33] -1 0 0x00001440 - 0x0000145f (0x20) IX[B] [34] -1 0 0x000014c0 - 0x000014c7 (0x8) IX[B](B) [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [36] 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 (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): VbeVersion is 768, OemStringPtr is 0x00002100, OemVendorNamePtr is 0x00002130, OemProductNamePtr is 0x00002142, OemProductRevPtr is 0x00002163 (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: 12708 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 (0x2a5ba000). (II) I810(0): Allocated 64 kB for the scratch buffer at 0x7fea000 (II) I810(0): 0x81fd078: Memory at offset 0x00020000, size 12708 kBytes (II) I810(0): 0x81fe310: Memory at offset 0x07fff000, size 4 kBytes (II) I810(0): 0x81fdfe0: Memory at offset 0x07ffb000, size 16 kBytes (II) I810(0): 0x81fdc1c: Memory at offset 0x00000000, size 128 kBytes (II) I810(0): 0x81fd0b8: Memory at offset 0x07fea000, size 64 kBytes (II) I810(0): 0x81fe050: Memory at offset 0x07ffa000, size 4 kBytes (==) 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 failed. (II) I810(0): xf86BindGARTMemory: bind key 4 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): 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 105 Mpixel/s (II) I810(0): maxBandwidth is 1528 Mbyte/s, pipe bandwidths are 392 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: 26 128x128 slots (==) I810(0): Backing store disabled (==) I810(0): Silken mouse enabled (II) I810(0): Initializing HW Cursor (**) Option "dpms" "true" (**) I810(0): DPMS enabled (II) I810(0): Set up overlay video (II) I810(0): direct rendering: Disabled (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 (EE) Failed to initialize GLX extension (NVIDIA X driver not found) (**) 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 (**) Option "Protocol" "IMPS/2" (**) USB Mouse: Device: "/dev/input/mice" (**) USB Mouse: Protocol: "IMPS/2" (**) Option "SendCoreEvents" "true" (**) USB Mouse: always reports core events (**) Option "CorePointer" (**) USB Mouse: Core Pointer (**) Option "Device" "/dev/input/mice" (**) Option "Buttons" "5" (==) USB Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5" (**) USB Mouse: ZAxisMapping: buttons 4 and 5 (**) USB Mouse: Buttons: 9 (II) XINPUT: Adding extended input device "USB Mouse" (type: MOUSE) (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) xkb_keycodes { include "xfree86+aliases(qwerty)" }; xkb_types { include "complete" }; xkb_compatibility { include "complete" }; xkb_symbols { include "pc(pc105)+us" }; xkb_geometry { include "pc(pc105)" }; (**) Option "Device" "/dev/input/mice" (II) USB Mouse: ps2EnableDataReporting: succeeded GetModeLine - scrn: 0 clock: 146250 GetModeLine - hdsp: 1680 hbeg: 1784 hend: 1960 httl: 2240 vdsp: 1050 vbeg: 1053 vend: 1059 vttl: 1089 flags: 0 GetModeLine - scrn: 0 clock: 146250 GetModeLine - hdsp: 1680 hbeg: 1784 hend: 1960 httl: 2240 vdsp: 1050 vbeg: 1053 vend: 1059 vttl: 1089 flags: 0 GetModeLine - scrn: 0 clock: 146250 GetModeLine - hdsp: 1680 hbeg: 1784 hend: 1960 httl: 2240 vdsp: 1050 vbeg: 1053 vend: 1059 vttl: 1089 flags: 0 |
Author: | tjc [ Wed Jan 02, 2008 7:30 pm ] |
Post subject: | |
Looks like you Intel onboard/chipset graphics can't do that... Maybe that utlity that you mentioned can force it to obey, but for now it's not going to do anything over 1280x1024@75Hz. |
Author: | poflynn [ Wed Jan 02, 2008 7:36 pm ] |
Post subject: | |
Y'know that was a thought of mine from the beginning, that is, surely I can't assume that the chipset can do any res I feel like. But as it can manage much higher resolutions and in my many googles I had never come across anyone having any problem getting their various widescreen resolutions to work (when using 915resolution) I figured it must be ok. Ok, whatever, time to research the possibility of using my FX5200 card for this. Thanks to everyone for the very detailed replies & good efforts! |
Author: | BigMoneyJim [ Tue Jan 08, 2008 12:21 am ] |
Post subject: | |
Here's a thought: I think you're running 915resolution twice. My KnoppMyth auto-install installed the 915resolution as part of the Debian rc.d init scripts. Check out /usr/share/doc/915resolution for details, but basically you edit /etc/default/915resolution and put your parameters in there. Ah yes, you are running your command in single user mode, and then it is run again when you go to runlevel 5 but without the proper parameters. (It's run via /etc/init.d/915resolution by /etc/rc5.d/S20915resolution .) Sounds like a potential problem, but really I don't know if it's a problem or not. My /etc/default/915resolution : Code: # 915resolution default
# # find free modes by /usr/sbin/915resolution -l # and set it to MODE or set to 'MODE=auto' # # With 'auto' detection, the panel-size will be fetched from the VBE # BIOS if possible and the highest-numbered mode in each bit-depth # will be overwritten with the detected panel-size. #MODE=auto MODE=49 # # and set resolutions for the mode. # e.g. use XRESO=1024 and YRESO=768 XRESO=1280 YRESO=720 # # We can also set the pixel mode. # e.g. use BIT=32 # Please note that this is optional, # you can also leave this value blank. BIT=16 I don't know if this matters, but I chose the 16-bit mode to replace (even though it seems to replace all bit depths with your resolution) and am running in 16-bit mode. You changed the 32-bit mode. If you want to duplicate what I did, try replacing a 16-bit mode (as located by 915resolution -l ) and running X in 16-bit mode. And take 915resolution out of bootmisc.sh . Can't guarantee it'll work, but it's working for me on a 945GM chipset. |
Author: | poflynn [ Tue Jan 08, 2008 11:17 pm ] |
Post subject: | |
Thanks a lot for all the good info, I sense a new wiki entry in my future... But first I need to get it running. So I commented out my line in bootmisc.sh, rebooted and it looks like 915resolution didn't run as when I do a '915resolution -l' I only get the standard modes. Also, /etc/init.d/915resolution exists but /etc/rc5.d/S20915resolution does not so I guess this is why it is not running. Should I create a symlink of that name or something to get it running? This is the first time in my life I have ever ventured in to this dir. I also edited /etc/default/915resolution with the parms I desire so I'm looking fwd to giving this another shot. Thanks again, Paul |
Author: | BigMoneyJim [ Wed Jan 09, 2008 6:50 am ] |
Post subject: | |
Hmm. The /etc/rc5.d/S20915resolution symlink existed for me on the auto-install. If it isn't there, the Debian (therefore KnoppMyth) way is to run Code: update-rc.d 915resolution defaults That will cause the following command to execute in runlevels 2-5: Code: /etc/init.d/915resolution start And that loads 915resolution with the configuration in /etc/default/915resolution . Hmmm, my 915resolution -l shows this after bootup (after 915resolution configuration was applied): Code: Intel 800/900 Series VBIOS Hack : version 0.5.2
Chipset: 945G BIOS: TYPE 1 Mode Table Offset: $C0000 + $269 Mode Table Entries: 27 Mode 30 : 640x480, 8 bits/pixel Mode 32 : 800x600, 8 bits/pixel Mode 34 : 1024x768, 8 bits/pixel Mode 38 : 1280x720, 8 bits/pixel Mode 3a : 1600x1200, 8 bits/pixel Mode 3c : 1920x1440, 8 bits/pixel Mode 41 : 640x480, 16 bits/pixel Mode 43 : 800x600, 16 bits/pixel Mode 45 : 1024x768, 16 bits/pixel Mode 49 : 1280x720, 16 bits/pixel Mode 4b : 1600x1200, 16 bits/pixel Mode 4d : 1920x1440, 16 bits/pixel Mode 50 : 640x480, 32 bits/pixel Mode 52 : 800x600, 32 bits/pixel Mode 54 : 1024x768, 32 bits/pixel Mode 58 : 1280x720, 32 bits/pixel Mode 5a : 1600x1200, 32 bits/pixel Mode 5c : 1920x1440, 32 bits/pixel As you can see, my 1280x720 resolution is listed. This is using the /etc/default/915resolution file I gave above. My original observation is moot, though. You weren't running 915resolution twice if you didn't have the rc.d symlink. However I don't know if running it in single user mode like you were doing changes anything. I doubt it, but since I have it working it's worth trying to emulate what I did. But then again I have a different chipset. Quick Debian startup primer: Each service generally has a startup script in /etc/init.d that accepts at least the commands "start" "stop" and "restart". There are symlinks under /etc/rcX.d (where X is a runlevel) that tells Debian init which services to start and stop for each given runlevel. Levels 2-5 are normal multiuser runlevels; 5 is the default. 1 / S is the single user runlevel. 6 is reboot. You don't necessarily need to know that, but it helps to understand when you're reconfiguring them. More info at http://www.debian-administration.org/articles/28 . In the case of configuration changing files like 915resolution and hdparm they aren't strictly services, but they still can respond to start and stop commands by applying and undoing their settings. |
Page 1 of 2 | All times are UTC - 6 hours |
Powered by phpBB® Forum Software © phpBB Group http://www.phpbb.com/ |