Gentoo Archives: gentoo-desktop

From: Dirk Gassen <macdigas@×××××.com>
To: gentoo-desktop@l.g.o
Subject: [gentoo-desktop] Video Card Q965 + i810-2.0.0 + TVTime: high CPU usage by X
Date: Fri, 11 Jan 2008 23:45:20
Message-Id: 3D3B9CF9-D29A-4459-A502-C7FE8E85C2ED@yahoo.com
1 Hello all,
2
3 I currently have a performance problem on a Optiplex 745/755 and the
4 onboard graphics card. We would like to run tvtime as a TV
5 application. Unfortunately, when tvtime starts X consumes >30% CPU,
6 which results in a somewhat sluggish system (responses to user actions
7 are slow, closed captioning looses characters, etc.).
8
9 This system did already work well on an Optiplex 620GX (X CPU usage
10 <15%).
11
12 Here's some more info about the systems:
13
14 Optiplex 620GX (works):
15
16 00:02.1 Display controller: Intel Corporation 82945G/GZ Integrated
17 Graphics Controller (rev 02)
18 sys-kernel/gentoo-sources-2.6.19
19 x11-base/xorg-server-1.3.0.0
20 x11-drivers/xf86-video-i810-1.7.4
21
22
23 Optiplex 745 (performance issues):
24 00:02.1 Display controller: Intel Corporation 82Q963/Q965 Integrated
25 Graphics Controller (rev 02)
26 sys-kernel/gentoo-sources-2.6.19
27 x11-base/xorg-server-1.3.0.0
28 x11-drivers/xf86-video-i810-2.0.0 (with 1.7.4 there were two bars with
29 noise visible on the sides)
30
31 Optiplex 755 (also performance issues):
32 00:02.1 Display controller: Intel Corporation 82Q35 Express Integrated
33 Graphics Controller (rev 02)
34 sys-kernel/gentoo-sources-2.6.23
35 x11-base/xorg-server-1.3.0.0
36 x11-drivers/xf86-video-i810-2.0.0
37
38 I suspect there's something wrong with the MTRR setup on the 745/755
39 (wild guess):
40 localhost ~ # cat /proc/mtrr
41 reg00: base=0x00000000 ( 0MB), size=65536MB: write-back, count=1
42 reg01: base=0x3d600000 ( 982MB), size= 2MB: uncachable, count=1
43 reg02: base=0x3d800000 ( 984MB), size= 8MB: uncachable, count=1
44 reg03: base=0x3e000000 ( 992MB), size= 32MB: uncachable, count=1
45 reg04: base=0x3d500000 ( 981MB), size= 1MB: uncachable, count=1
46 reg05: base=0x40000000 (1024MB), size=1024MB: uncachable, count=1
47 reg06: base=0x80000000 (2048MB), size=2048MB: uncachable, count=1
48
49 ... and X reports in its log:
50 (WW) intel(0): Failed to set up write-combining range
51 (0xd0000000,0x10000000)
52
53 whereas on the 620GX it succeeds:
54 (==) I810(0): Removed MMIO write-combining range (0xe0000000,0x400000)
55 (==) I810(0): Write-combining range (0xe0000000,0x10000000)
56
57 Has anybody any advice on this?
58
59 Following are the xorg.conf and the Xorg.0.log:
60
61 xorg.conf
62 =======
63 # Xorg configuration
64 #
65 # Please note that this file is automatically generated by
66 # /etc/init.d/xautoconfig from /etc/X11/xorg.conf.m4.
67 # If you're making changes to this file they will be lost
68 # forever once this machine reboots!
69
70 Section "ServerLayout"
71 Identifier "single head configuration"
72 Screen 0 "Screen0" 0 0
73 InputDevice "Mouse0" "CorePointer"
74 InputDevice "Keyboard0" "CoreKeyboard"
75
76 EndSection
77
78 Section "ServerFlags"
79 Option "AllowMouseOpenFail" "yes"
80 Option "AllowDeactivateGrabs" "yes"
81 Option "AllowClosedownGrabs" "yes"
82 EndSection
83
84 Section "Files"
85
86 # file minus the extension (like ".txt" or ".db"). There is normally
87 # no need to change the default.
88 # Multiple FontPath entries are allowed (they are concatenated together)
89 # By default, Red Hat 6.0 and later now use a font server independent of
90 # the X server to render fonts.
91 FontPath "/usr/share/fonts/100dpi"
92 FontPath "/usr/share/fonts/75dpi"
93 FontPath "/usr/share/fonts/freefont"
94 FontPath "/usr/share/fonts/Type1"
95 FontPath "/usr/share/fonts/misc"
96 FontPath "/usr/share/fonts/cyrillic"
97 FontPath "/usr/share/fonts/ttf-bitstream-vera"
98 # FontPath "unix/:7100"
99 EndSection
100
101 Section "Module"
102 Load "dbe"
103 Load "extmod"
104 Load "fbdevhw"
105 Load "glx"
106 Load "record"
107 Load "freetype"
108 Load "type1"
109 Load "dri"
110 EndSection
111
112 Section "InputDevice"
113 Identifier "Keyboard0"
114 Driver "kbd"
115 Option "XkbModel" "pc105"
116 Option "XkbLayout" "us"
117 EndSection
118
119 Section "InputDevice"
120 Identifier "Mouse0"
121 Driver "mouse"
122 Option "Protocol" "IMPS/2"
123 Option "Device" "/dev/input/mice"
124 Option "ZAxisMapping" "4 5"
125 Option "Emulate3Buttons" "yes"
126 EndSection
127
128 Section "Monitor"
129 Identifier "Monitor0"
130 VendorName "Monitor Vendor"
131 ModelName "LCD Panel 1024x768"
132 Option "dpms"
133 DisplaySize 360 270
134 Option "NoDDC"
135 Option "PreferredMode" "1024x768"
136 EndSection
137
138 Section "Device"
139 Identifier "Videocard0"
140 Driver "i810"
141 VendorName "Intel"
142 BoardName "Intel 915/945/..."
143 EndSection
144
145 Section "Screen"
146 Identifier "Screen0"
147 Device "Videocard0"
148 Monitor "Monitor0"
149
150 DefaultDepth 24
151 SubSection "Display"
152 Viewport 0 0
153 Depth 24
154 Modes "1024x768"
155 EndSubSection
156 Option "SecurityTypes" "None"
157 EndSection
158
159 Section "DRI"
160 Group 0
161 Mode 0666
162 EndSection
163
164 Section "ServerFlags"
165 Option "AIGLX" "off"
166 EndSection
167
168 Xorg.0.log
169 ========
170
171 X Window System Version 1.3.0
172 Release Date: 19 April 2007
173 X Protocol Version 11, Revision 0, Release 1.3
174 Build Operating System: UNKNOWN
175 Current Operating System: Linux localhost 2.6.23-gwn_pancake-r2 #9 SMP
176 PREEMPT Fri Jan 11 15:10:21 EST 2008 i686
177 Build Date: 27 June 2007
178 Before reporting problems, check http://wiki.x.org
179 to make sure that you have the latest version.
180 Module Loader present
181 Markers: (--) probed, (**) from config file, (==) default setting,
182 (++) from command line, (!!) notice, (II) informational,
183 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
184 (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 12 13:10:54 2008
185 (==) Using config file: "/etc/X11/xorg.conf"
186 (==) ServerLayout "single head configuration"
187 (**) |-->Screen "Screen0" (0)
188 (**) | |-->Monitor "Monitor0"
189 (**) | |-->Device "Videocard0"
190 (**) |-->Input Device "Mouse0"
191 (**) |-->Input Device "Keyboard0"
192 (**) |-->Input Device "3MTouch"
193 (WW) The directory "/usr/share/fonts/freefont" does not exist.
194 Entry deleted from font path.
195 (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/
196 cyrillic".
197 Entry deleted from font path.
198 (Run 'mkfontdir' on "/usr/share/fonts/cyrillic").
199 (**) FontPath set to:
200 /usr/share/fonts/100dpi,
201 /usr/share/fonts/75dpi,
202 /usr/share/fonts/Type1,
203 /usr/share/fonts/misc,
204 /usr/share/fonts/ttf-bitstream-vera
205 (==) RgbPath set to "/usr/share/X11/rgb"
206 (==) ModulePath set to "/usr/lib/xorg/modules"
207 (**) Option "PciOsConfig"
208 (**) Option "AIGLX" "off"
209 (**) Extension "Composite" is disabled
210 (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or
211 directory)
212 (II) No APM support in BIOS or kernel
213 (II) Loader magic: 0x823a4c0
214 (II) Module ABI versions:
215 X.Org ANSI C Emulation: 0.3
216 X.Org Video Driver: 1.2
217 X.Org XInput driver : 0.7
218 X.Org Server Extension : 0.3
219 X.Org Font Renderer : 0.5
220 (II) Loader running on linux
221 (II) LoadModule: "pcidata"
222 (II) Loading /usr/lib/xorg/modules//libpcidata.so
223 (II) Module pcidata: vendor="X.Org Foundation"
224 compiled for 1.3.0, module version = 1.0.0
225 ABI class: X.Org Video Driver, version 1.2
226 (++) using VT number 7
227
228 (II) PCI: PCI scan (all values are in hex)
229 (II) PCI: 00:00:0: chip 8086,2990 card 1028,01da rev 02 class 06,00,00
230 hdr 00
231 (II) PCI: 00:01:0: chip 8086,2991 card 0000,0000 rev 02 class 06,04,00
232 hdr 01
233 (II) PCI: 00:02:0: chip 8086,2992 card 1028,01da rev 02 class 03,00,00
234 hdr 80
235 (II) PCI: 00:02:1: chip 8086,2993 card 1028,01da rev 02 class 03,80,00
236 hdr 80
237 (II) PCI: 00:1a:0: chip 8086,2834 card 1028,01da rev 02 class 0c,03,00
238 hdr 80
239 (II) PCI: 00:1a:1: chip 8086,2835 card 1028,01da rev 02 class 0c,03,00
240 hdr 00
241 (II) PCI: 00:1a:7: chip 8086,283a card 1028,01da rev 02 class 0c,03,20
242 hdr 00
243 (II) PCI: 00:1b:0: chip 8086,284b card 1028,01da rev 02 class 04,03,00
244 hdr 00
245 (II) PCI: 00:1c:0: chip 8086,283f card 0000,0000 rev 02 class 06,04,00
246 hdr 81
247 (II) PCI: 00:1c:4: chip 8086,2847 card 0000,0000 rev 02 class 06,04,00
248 hdr 81
249 (II) PCI: 00:1d:0: chip 8086,2830 card 1028,01da rev 02 class 0c,03,00
250 hdr 80
251 (II) PCI: 00:1d:1: chip 8086,2831 card 1028,01da rev 02 class 0c,03,00
252 hdr 00
253 (II) PCI: 00:1d:2: chip 8086,2832 card 1028,01da rev 02 class 0c,03,00
254 hdr 00
255 (II) PCI: 00:1d:7: chip 8086,2836 card 1028,01da rev 02 class 0c,03,20
256 hdr 00
257 (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev f2 class 06,04,01
258 hdr 01
259 (II) PCI: 00:1f:0: chip 8086,2810 card 0000,0000 rev 02 class 06,01,00
260 hdr 80
261 (II) PCI: 00:1f:2: chip 8086,2820 card 1028,01da rev 02 class 01,01,8f
262 hdr 00
263 (II) PCI: 00:1f:3: chip 8086,283e card 1028,01da rev 02 class 0c,05,00
264 hdr 00
265 (II) PCI: 00:1f:5: chip 8086,2825 card 1028,01da rev 02 class 01,01,85
266 hdr 00
267 (II) PCI: 03:00:0: chip 14e4,167a card 1028,01da rev 02 class 02,00,00
268 hdr 00
269 (II) PCI: 04:00:0: chip 14f1,8800 card 7063,5500 rev 05 class 04,00,00
270 hdr 80
271 (II) PCI: 04:00:1: chip 14f1,8801 card 7063,5500 rev 05 class 04,80,00
272 hdr 80
273 (II) PCI: 04:00:2: chip 14f1,8802 card 7063,5500 rev 05 class 04,80,00
274 hdr 80
275 (II) PCI: 04:00:4: chip 14f1,8804 card 7063,5500 rev 05 class 04,80,00
276 hdr 80
277 (II) PCI: End of PCI scan
278 (II) Intel Bridge workaround enabled
279 (II) Host-to-PCI bridge:
280 (II) Bus 0: bridge is at (0:0:0), (0,0,4), BCTRL: 0x0008 (VGA_EN is set)
281 (II) Bus 0 I/O range:
282 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
283 (II) Bus 0 non-prefetchable memory range:
284 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
285 (II) Bus 0 prefetchable memory range:
286 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
287 (II) PCI-to-PCI bridge:
288 (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is
289 cleared)
290 (II) Bus 1 non-prefetchable memory range:
291 [0] -1 0 0xdfc00000 - 0xdfcfffff (0x100000) MX[B]
292 (II) PCI-to-PCI bridge:
293 (II) Bus 2: bridge is at (0:28:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is
294 cleared)
295 (II) Bus 2 non-prefetchable memory range:
296 [0] -1 0 0xdfb00000 - 0xdfbfffff (0x100000) MX[B]
297 (II) PCI-to-PCI bridge:
298 (II) Bus 3: bridge is at (0:28:4), (0,3,3), BCTRL: 0x0002 (VGA_EN is
299 cleared)
300 (II) Bus 3 non-prefetchable memory range:
301 [0] -1 0 0xdfa00000 - 0xdfafffff (0x100000) MX[B]
302 (II) Subtractive PCI-to-PCI bridge:
303 (II) Bus 4: bridge is at (0:30:0), (0,4,4), BCTRL: 0x0002 (VGA_EN is
304 cleared)
305 (II) Bus 4 non-prefetchable memory range:
306 [0] -1 0 0xdb000000 - 0xdf9fffff (0x4a00000) MX[B]
307 (II) PCI-to-ISA bridge:
308 (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN
309 is set)
310 (--) PCI:*(0:2:0) Intel Corporation 82Q963/Q965 Integrated Graphics
311 Controller rev 2, Mem @ 0xdfe00000/20, 0xc0000000/28, I/O @ 0xecb8/3
312 (--) PCI: (0:2:1) Intel Corporation 82Q963/Q965 Integrated Graphics
313 Controller rev 2, Mem @ 0xdff00000/20
314 (--) PCI: (4:0:0) unknown vendor (0x14f1) unknown chipset (0x8800) rev
315 5, Mem @ 0xdb000000/24
316 (II) Addressable bus resource ranges are
317 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
318 [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
319 (II) OS-reported resource ranges:
320 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
321 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
322 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
323 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
324 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
325 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
326 (II) Active PCI resource ranges:
327 [0] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
328 [1] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B]
329 [2] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
330 [3] -1 0 0xdfaf0000 - 0xdfafffff (0x10000) MX[B]
331 [4] -1 0 0xdfdfbb00 - 0xdfdfbbff (0x100) MX[B]
332 [5] -1 0 0xff980800 - 0xff980bff (0x400) MX[B]
333 [6] -1 0 0xdfdfc000 - 0xdfdfffff (0x4000) MX[B]
334 [7] -1 0 0xdfdfbc00 - 0xdfdfbfff (0x400) MX[B]
335 [8] -1 0 0xdb000000 - 0xdbffffff (0x1000000) MX[B](B)
336 [9] -1 0 0xdff00000 - 0xdfffffff (0x100000) MX[B](B)
337 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
338 [11] -1 0 0xdfe00000 - 0xdfefffff (0x100000) MX[B](B)
339 [12] -1 0 0x0000ecd0 - 0x0000ecdf (0x10) IX[B]
340 [13] -1 0 0x0000fed0 - 0x0000fedf (0x10) IX[B]
341 [14] -1 0 0x0000fe70 - 0x0000fe73 (0x4) IX[B]
342 [15] -1 0 0x0000fe60 - 0x0000fe67 (0x8) IX[B]
343 [16] -1 0 0x0000fe50 - 0x0000fe53 (0x4) IX[B]
344 [17] -1 0 0x0000fe40 - 0x0000fe47 (0x8) IX[B]
345 [18] -1 0 0x0000ece0 - 0x0000ecff (0x20) IX[B]
346 [19] -1 0 0x0000ecc0 - 0x0000eccf (0x10) IX[B]
347 [20] -1 0 0x0000fec0 - 0x0000fecf (0x10) IX[B]
348 [21] -1 0 0x0000fe30 - 0x0000fe33 (0x4) IX[B]
349 [22] -1 0 0x0000fe20 - 0x0000fe27 (0x8) IX[B]
350 [23] -1 0 0x0000fe10 - 0x0000fe13 (0x4) IX[B]
351 [24] -1 0 0x0000fe00 - 0x0000fe07 (0x8) IX[B]
352 [25] -1 0 0x0000ff40 - 0x0000ff5f (0x20) IX[B]
353 [26] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
354 [27] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
355 [28] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
356 [29] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
357 [30] -1 0 0x0000ecb8 - 0x0000ecbf (0x8) IX[B](B)
358 (II) Active PCI resource ranges after removing overlaps:
359 [0] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
360 [1] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B]
361 [2] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
362 [3] -1 0 0xdfaf0000 - 0xdfafffff (0x10000) MX[B]
363 [4] -1 0 0xdfdfbb00 - 0xdfdfbbff (0x100) MX[B]
364 [5] -1 0 0xff980800 - 0xff980bff (0x400) MX[B]
365 [6] -1 0 0xdfdfc000 - 0xdfdfffff (0x4000) MX[B]
366 [7] -1 0 0xdfdfbc00 - 0xdfdfbfff (0x400) MX[B]
367 [8] -1 0 0xdb000000 - 0xdbffffff (0x1000000) MX[B](B)
368 [9] -1 0 0xdff00000 - 0xdfffffff (0x100000) MX[B](B)
369 [10] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
370 [11] -1 0 0xdfe00000 - 0xdfefffff (0x100000) MX[B](B)
371 [12] -1 0 0x0000ecd0 - 0x0000ecdf (0x10) IX[B]
372 [13] -1 0 0x0000fed0 - 0x0000fedf (0x10) IX[B]
373 [14] -1 0 0x0000fe70 - 0x0000fe73 (0x4) IX[B]
374 [15] -1 0 0x0000fe60 - 0x0000fe67 (0x8) IX[B]
375 [16] -1 0 0x0000fe50 - 0x0000fe53 (0x4) IX[B]
376 [17] -1 0 0x0000fe40 - 0x0000fe47 (0x8) IX[B]
377 [18] -1 0 0x0000ece0 - 0x0000ecff (0x20) IX[B]
378 [19] -1 0 0x0000ecc0 - 0x0000eccf (0x10) IX[B]
379 [20] -1 0 0x0000fec0 - 0x0000fecf (0x10) IX[B]
380 [21] -1 0 0x0000fe30 - 0x0000fe33 (0x4) IX[B]
381 [22] -1 0 0x0000fe20 - 0x0000fe27 (0x8) IX[B]
382 [23] -1 0 0x0000fe10 - 0x0000fe13 (0x4) IX[B]
383 [24] -1 0 0x0000fe00 - 0x0000fe07 (0x8) IX[B]
384 [25] -1 0 0x0000ff40 - 0x0000ff5f (0x20) IX[B]
385 [26] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
386 [27] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
387 [28] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
388 [29] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
389 [30] -1 0 0x0000ecb8 - 0x0000ecbf (0x8) IX[B](B)
390 (II) OS-reported resource ranges after removing overlaps with PCI:
391 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
392 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
393 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
394 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
395 [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
396 [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
397 (II) All system resource ranges:
398 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
399 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
400 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
401 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
402 [4] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
403 [5] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B]
404 [6] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
405 [7] -1 0 0xdfaf0000 - 0xdfafffff (0x10000) MX[B]
406 [8] -1 0 0xdfdfbb00 - 0xdfdfbbff (0x100) MX[B]
407 [9] -1 0 0xff980800 - 0xff980bff (0x400) MX[B]
408 [10] -1 0 0xdfdfc000 - 0xdfdfffff (0x4000) MX[B]
409 [11] -1 0 0xdfdfbc00 - 0xdfdfbfff (0x400) MX[B]
410 [12] -1 0 0xdb000000 - 0xdbffffff (0x1000000) MX[B](B)
411 [13] -1 0 0xdff00000 - 0xdfffffff (0x100000) MX[B](B)
412 [14] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
413 [15] -1 0 0xdfe00000 - 0xdfefffff (0x100000) MX[B](B)
414 [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
415 [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
416 [18] -1 0 0x0000ecd0 - 0x0000ecdf (0x10) IX[B]
417 [19] -1 0 0x0000fed0 - 0x0000fedf (0x10) IX[B]
418 [20] -1 0 0x0000fe70 - 0x0000fe73 (0x4) IX[B]
419 [21] -1 0 0x0000fe60 - 0x0000fe67 (0x8) IX[B]
420 [22] -1 0 0x0000fe50 - 0x0000fe53 (0x4) IX[B]
421 [23] -1 0 0x0000fe40 - 0x0000fe47 (0x8) IX[B]
422 [24] -1 0 0x0000ece0 - 0x0000ecff (0x20) IX[B]
423 [25] -1 0 0x0000ecc0 - 0x0000eccf (0x10) IX[B]
424 [26] -1 0 0x0000fec0 - 0x0000fecf (0x10) IX[B]
425 [27] -1 0 0x0000fe30 - 0x0000fe33 (0x4) IX[B]
426 [28] -1 0 0x0000fe20 - 0x0000fe27 (0x8) IX[B]
427 [29] -1 0 0x0000fe10 - 0x0000fe13 (0x4) IX[B]
428 [30] -1 0 0x0000fe00 - 0x0000fe07 (0x8) IX[B]
429 [31] -1 0 0x0000ff40 - 0x0000ff5f (0x20) IX[B]
430 [32] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
431 [33] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
432 [34] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
433 [35] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
434 [36] -1 0 0x0000ecb8 - 0x0000ecbf (0x8) IX[B](B)
435 (II) LoadModule: "dbe"
436 (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
437 (II) Module dbe: vendor="X.Org Foundation"
438 compiled for 1.3.0, module version = 1.0.0
439 Module class: X.Org Server Extension
440 ABI class: X.Org Server Extension, version 0.3
441 (II) Loading extension DOUBLE-BUFFER
442 (II) LoadModule: "extmod"
443 (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
444 (II) Module extmod: vendor="X.Org Foundation"
445 compiled for 1.3.0, module version = 1.0.0
446 Module class: X.Org Server Extension
447 ABI class: X.Org Server Extension, version 0.3
448 (II) Loading extension SHAPE
449 (II) Loading extension MIT-SUNDRY-NONSTANDARD
450 (II) Loading extension BIG-REQUESTS
451 (II) Loading extension SYNC
452 (II) Loading extension MIT-SCREEN-SAVER
453 (II) Loading extension XC-MISC
454 (II) Loading extension XFree86-VidModeExtension
455 (II) Loading extension XFree86-Misc
456 (II) Loading extension XFree86-DGA
457 (II) Loading extension DPMS
458 (II) Loading extension TOG-CUP
459 (II) Loading extension Extended-Visual-Information
460 (II) Loading extension XVideo
461 (II) Loading extension XVideo-MotionCompensation
462 (II) Loading extension X-Resource
463 (II) LoadModule: "fbdevhw"
464 (II) Loading /usr/lib/xorg/modules/linux//libfbdevhw.so
465 (II) Module fbdevhw: vendor="X.Org Foundation"
466 compiled for 1.3.0, module version = 0.0.2
467 ABI class: X.Org Video Driver, version 1.2
468 (II) LoadModule: "glx"
469 (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
470 (II) Module glx: vendor="X.Org Foundation"
471 compiled for 1.3.0, module version = 1.0.0
472 ABI class: X.Org Server Extension, version 0.3
473 (**) AIGLX disabled
474 (II) Loading extension GLX
475 (II) LoadModule: "record"
476 (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
477 (II) Module record: vendor="X.Org Foundation"
478 compiled for 1.3.0, module version = 1.13.0
479 Module class: X.Org Server Extension
480 ABI class: X.Org Server Extension, version 0.3
481 (II) Loading extension RECORD
482 (II) LoadModule: "freetype"
483 (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
484 (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
485 compiled for 1.3.0, module version = 2.1.0
486 Module class: X.Org Font Renderer
487 ABI class: X.Org Font Renderer, version 0.5
488 (II) Loading font FreeType
489 (II) LoadModule: "type1"
490 (II) Loading /usr/lib/xorg/modules/fonts//libtype1.so
491 (II) Module type1: vendor="X.Org Foundation"
492 compiled for 1.3.0, module version = 1.0.2
493 Module class: X.Org Font Renderer
494 ABI class: X.Org Font Renderer, version 0.5
495 (II) Loading font Type1
496 (II) LoadModule: "dri"
497 (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
498 (II) Module dri: vendor="X.Org Foundation"
499 compiled for 1.3.0, module version = 1.0.0
500 ABI class: X.Org Server Extension, version 0.3
501 (II) Loading extension XFree86-DRI
502 (II) LoadModule: "i810"
503 (II) Loading /usr/lib/xorg/modules/drivers//i810_drv.so
504 (II) Module i810: vendor="X.Org Foundation"
505 compiled for 1.3.0, module version = 2.2.0
506 Module class: X.Org Video Driver
507 ABI class: X.Org Video Driver, version 1.2
508 (II) LoadModule: "mouse"
509 (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
510 (II) Module mouse: vendor="X.Org Foundation"
511 compiled for 7.1.1, module version = 1.1.1
512 Module class: X.Org XInput Driver
513 ABI class: X.Org XInput driver, version 0.6
514 (II) LoadModule: "kbd"
515 (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
516 (II) Module kbd: vendor="X.Org Foundation"
517 compiled for 7.1.1, module version = 1.1.0
518 Module class: X.Org XInput Driver
519 ABI class: X.Org XInput driver, version 0.6
520 (II) LoadModule: "TWXinput"
521 (II) Loading /usr/lib/xorg/modules/input//TWXinput_drv.so
522 (II) Module TWXinput: vendor="Copyright 2002-2004 3M. All rights
523 reserved."
524 compiled for 4.0.3, module version = 0.0.5
525 Module class: XFree86 XInput Driver
526 ABI class: XFree86 XInput driver, version 0.1
527 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
528 i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
529 E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, 965G, 965Q, 946GZ,
530 965GM, 965GME/GLE, G33, Q35, Q33
531 (II) Primary Device is: PCI 00:02:0
532 (--) Assigning device section with no busID to primary device
533 (WW) intel: No matching Device section for instance (BusID PCI:0:2:1)
534 found
535 (--) Chipset 965Q found
536 (II) resource ranges after xf86ClaimFixedResources() call:
537 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
538 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
539 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
540 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
541 [4] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
542 [5] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B]
543 [6] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
544 [7] -1 0 0xdfaf0000 - 0xdfafffff (0x10000) MX[B]
545 [8] -1 0 0xdfdfbb00 - 0xdfdfbbff (0x100) MX[B]
546 [9] -1 0 0xff980800 - 0xff980bff (0x400) MX[B]
547 [10] -1 0 0xdfdfc000 - 0xdfdfffff (0x4000) MX[B]
548 [11] -1 0 0xdfdfbc00 - 0xdfdfbfff (0x400) MX[B]
549 [12] -1 0 0xdb000000 - 0xdbffffff (0x1000000) MX[B](B)
550 [13] -1 0 0xdff00000 - 0xdfffffff (0x100000) MX[B](B)
551 [14] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
552 [15] -1 0 0xdfe00000 - 0xdfefffff (0x100000) MX[B](B)
553 [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
554 [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
555 [18] -1 0 0x0000ecd0 - 0x0000ecdf (0x10) IX[B]
556 [19] -1 0 0x0000fed0 - 0x0000fedf (0x10) IX[B]
557 [20] -1 0 0x0000fe70 - 0x0000fe73 (0x4) IX[B]
558 [21] -1 0 0x0000fe60 - 0x0000fe67 (0x8) IX[B]
559 [22] -1 0 0x0000fe50 - 0x0000fe53 (0x4) IX[B]
560 [23] -1 0 0x0000fe40 - 0x0000fe47 (0x8) IX[B]
561 [24] -1 0 0x0000ece0 - 0x0000ecff (0x20) IX[B]
562 [25] -1 0 0x0000ecc0 - 0x0000eccf (0x10) IX[B]
563 [26] -1 0 0x0000fec0 - 0x0000fecf (0x10) IX[B]
564 [27] -1 0 0x0000fe30 - 0x0000fe33 (0x4) IX[B]
565 [28] -1 0 0x0000fe20 - 0x0000fe27 (0x8) IX[B]
566 [29] -1 0 0x0000fe10 - 0x0000fe13 (0x4) IX[B]
567 [30] -1 0 0x0000fe00 - 0x0000fe07 (0x8) IX[B]
568 [31] -1 0 0x0000ff40 - 0x0000ff5f (0x20) IX[B]
569 [32] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
570 [33] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
571 [34] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
572 [35] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
573 [36] -1 0 0x0000ecb8 - 0x0000ecbf (0x8) IX[B](B)
574 (II) resource ranges after probing:
575 [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
576 [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
577 [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
578 [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
579 [4] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
580 [5] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B]
581 [6] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
582 [7] -1 0 0xdfaf0000 - 0xdfafffff (0x10000) MX[B]
583 [8] -1 0 0xdfdfbb00 - 0xdfdfbbff (0x100) MX[B]
584 [9] -1 0 0xff980800 - 0xff980bff (0x400) MX[B]
585 [10] -1 0 0xdfdfc000 - 0xdfdfffff (0x4000) MX[B]
586 [11] -1 0 0xdfdfbc00 - 0xdfdfbfff (0x400) MX[B]
587 [12] -1 0 0xdb000000 - 0xdbffffff (0x1000000) MX[B](B)
588 [13] -1 0 0xdff00000 - 0xdfffffff (0x100000) MX[B](B)
589 [14] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
590 [15] -1 0 0xdfe00000 - 0xdfefffff (0x100000) MX[B](B)
591 [16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
592 [17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
593 [18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
594 [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
595 [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
596 [21] -1 0 0x0000ecd0 - 0x0000ecdf (0x10) IX[B]
597 [22] -1 0 0x0000fed0 - 0x0000fedf (0x10) IX[B]
598 [23] -1 0 0x0000fe70 - 0x0000fe73 (0x4) IX[B]
599 [24] -1 0 0x0000fe60 - 0x0000fe67 (0x8) IX[B]
600 [25] -1 0 0x0000fe50 - 0x0000fe53 (0x4) IX[B]
601 [26] -1 0 0x0000fe40 - 0x0000fe47 (0x8) IX[B]
602 [27] -1 0 0x0000ece0 - 0x0000ecff (0x20) IX[B]
603 [28] -1 0 0x0000ecc0 - 0x0000eccf (0x10) IX[B]
604 [29] -1 0 0x0000fec0 - 0x0000fecf (0x10) IX[B]
605 [30] -1 0 0x0000fe30 - 0x0000fe33 (0x4) IX[B]
606 [31] -1 0 0x0000fe20 - 0x0000fe27 (0x8) IX[B]
607 [32] -1 0 0x0000fe10 - 0x0000fe13 (0x4) IX[B]
608 [33] -1 0 0x0000fe00 - 0x0000fe07 (0x8) IX[B]
609 [34] -1 0 0x0000ff40 - 0x0000ff5f (0x20) IX[B]
610 [35] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
611 [36] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
612 [37] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
613 [38] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
614 [39] -1 0 0x0000ecb8 - 0x0000ecbf (0x8) IX[B](B)
615 [40] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
616 [41] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
617 (II) Setting vga for screen 0.
618 (II) Loading sub module "int10"
619 (II) LoadModule: "int10"
620 (II) Loading /usr/lib/xorg/modules//libint10.so
621 (II) Module int10: vendor="X.Org Foundation"
622 compiled for 1.3.0, module version = 1.0.0
623 ABI class: X.Org Video Driver, version 1.2
624 (II) Loading sub module "vbe"
625 (II) LoadModule: "vbe"
626 (II) Loading /usr/lib/xorg/modules//libvbe.so
627 (II) Module vbe: vendor="X.Org Foundation"
628 compiled for 1.3.0, module version = 1.1.0
629 ABI class: X.Org Video Driver, version 1.2
630 (II) Loading sub module "vgahw"
631 (II) LoadModule: "vgahw"
632 (II) Loading /usr/lib/xorg/modules//libvgahw.so
633 (II) Module vgahw: vendor="X.Org Foundation"
634 compiled for 1.3.0, module version = 0.1.0
635 ABI class: X.Org Video Driver, version 1.2
636 (**) intel(0): Depth 24, (--) framebuffer bpp 32
637 (==) intel(0): RGB weight 888
638 (==) intel(0): Default visual is TrueColor
639 (II) intel(0): Integrated Graphics Chipset: Intel(R) 965Q
640 (--) intel(0): Chipset: "965Q"
641 (--) intel(0): Linear framebuffer at 0xC0000000
642 (--) intel(0): IO registers at addr 0xDFE00000
643 (II) intel(0): 2 display pipes available.
644 (==) intel(0): Using EXA for acceleration
645 (II) Loading sub module "ddc"
646 (II) LoadModule: "ddc"(II) Module already built-in
647 (II) Loading sub module "i2c"
648 (II) LoadModule: "i2c"(II) Module already built-in
649 (II) intel(0): Output VGA using monitor section Monitor0
650 (**) intel(0): Option "PreferredMode" "1024x768"
651 (II) intel(0): I2C bus "CRTDDC_A" initialized.
652 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
653 (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B"
654 registered at address 0x70.
655 (II) intel(0): No SDVO device found on SDVOB
656 (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B"
657 removed.
658 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" removed.
659 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
660 (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C"
661 registered at address 0x72.
662 (II) intel(0): No SDVO device found on SDVOC
663 (II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C"
664 removed.
665 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
666 (II) intel(0): Output VGA connected
667 (**) intel(0): Option "NoDDC"
668 (II) intel(0): EDID for output VGA
669 <Video mode probing>
670 (II) intel(0): Printing probed modes for output VGA
671 (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344
672 768 771 777 806 -hsync -vsync (48.4 kHz)
673 (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600
674 601 605 628 +hsync +vsync (37.9 kHz)
675 (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480
676 490 492 525 -hsync -vsync (31.5 kHz)
677 (II) intel(0): Output VGA connected
678 (II) intel(0): Output VGA using initial mode 1024x768
679 (II) intel(0): detected 512 kB GTT.
680 (II) intel(0): detected 7676 kB stolen memory.
681 (==) intel(0): video overlay key set to 0x101fe
682 (==) intel(0): Will not try to enable page flipping
683 (==) intel(0): Triple buffering disabled
684 (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
685 (**) intel(0): Display dimensions: (360, 270) mm
686 (**) intel(0): DPI set to (72, 96)
687 (II) Loading sub module "fb"
688 (II) LoadModule: "fb"
689 (II) Loading /usr/lib/xorg/modules//libfb.so
690 (II) Module fb: vendor="X.Org Foundation"
691 compiled for 1.3.0, module version = 1.0.0
692 ABI class: X.Org ANSI C Emulation, version 0.3
693 (II) Loading sub module "exa"
694 (II) LoadModule: "exa"
695 (II) Loading /usr/lib/xorg/modules//libexa.so
696 (II) Module exa: vendor="X.Org Foundation"
697 compiled for 1.3.0, module version = 2.1.0
698 ABI class: X.Org Video Driver, version 1.2
699 (II) Loading sub module "ramdac"
700 (II) LoadModule: "ramdac"(II) Module already built-in
701 (II) intel(0): Comparing regs from server start up to After PreInit
702 (WW) intel(0): Register 0x61114 (PORT_HOTPLUG_STAT) changed from
703 0x00000000 to 0x00000b00
704 (WW) intel(0): Register 0x70008 (PIPEACONF) changed from 0xc0000000 to
705 0x00000000
706 (WW) intel(0): PIPEACONF before: enabled, active
707 (WW) intel(0): PIPEACONF after: disabled, inactive
708 (WW) intel(0): Register 0x71008 (PIPEBCONF) changed from 0xc0000000 to
709 0x00000000
710 (WW) intel(0): PIPEBCONF before: enabled, active
711 (WW) intel(0): PIPEBCONF after: disabled, inactive
712 (==) Depth 24 pixmap format is 32 bpp
713 (II) do I need RAC? No, I don't.
714 (II) resource ranges after preInit:
715 [0] 0 0 0xc0000000 - 0xcfffffff (0x10000000) MS[B]
716 [1] 0 0 0xdfe00000 - 0xdfefffff (0x100000) MS[B]
717 [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
718 [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
719 [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
720 [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
721 [6] -1 0 0xde000000 - 0xdeffffff (0x1000000) MX[B]
722 [7] -1 0 0xdd000000 - 0xddffffff (0x1000000) MX[B]
723 [8] -1 0 0xdc000000 - 0xdcffffff (0x1000000) MX[B]
724 [9] -1 0 0xdfaf0000 - 0xdfafffff (0x10000) MX[B]
725 [10] -1 0 0xdfdfbb00 - 0xdfdfbbff (0x100) MX[B]
726 [11] -1 0 0xff980800 - 0xff980bff (0x400) MX[B]
727 [12] -1 0 0xdfdfc000 - 0xdfdfffff (0x4000) MX[B]
728 [13] -1 0 0xdfdfbc00 - 0xdfdfbfff (0x400) MX[B]
729 [14] -1 0 0xdb000000 - 0xdbffffff (0x1000000) MX[B](B)
730 [15] -1 0 0xdff00000 - 0xdfffffff (0x100000) MX[B](B)
731 [16] -1 0 0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
732 [17] -1 0 0xdfe00000 - 0xdfefffff (0x100000) MX[B](B)
733 [18] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
734 [19] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
735 [20] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
736 [21] 0 0 0x0000ecb8 - 0x0000ecbf (0x8) IS[B]
737 [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
738 [23] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
739 [24] -1 0 0x0000ecd0 - 0x0000ecdf (0x10) IX[B]
740 [25] -1 0 0x0000fed0 - 0x0000fedf (0x10) IX[B]
741 [26] -1 0 0x0000fe70 - 0x0000fe73 (0x4) IX[B]
742 [27] -1 0 0x0000fe60 - 0x0000fe67 (0x8) IX[B]
743 [28] -1 0 0x0000fe50 - 0x0000fe53 (0x4) IX[B]
744 [29] -1 0 0x0000fe40 - 0x0000fe47 (0x8) IX[B]
745 [30] -1 0 0x0000ece0 - 0x0000ecff (0x20) IX[B]
746 [31] -1 0 0x0000ecc0 - 0x0000eccf (0x10) IX[B]
747 [32] -1 0 0x0000fec0 - 0x0000fecf (0x10) IX[B]
748 [33] -1 0 0x0000fe30 - 0x0000fe33 (0x4) IX[B]
749 [34] -1 0 0x0000fe20 - 0x0000fe27 (0x8) IX[B]
750 [35] -1 0 0x0000fe10 - 0x0000fe13 (0x4) IX[B]
751 [36] -1 0 0x0000fe00 - 0x0000fe07 (0x8) IX[B]
752 [37] -1 0 0x0000ff40 - 0x0000ff5f (0x20) IX[B]
753 [38] -1 0 0x0000ff60 - 0x0000ff7f (0x20) IX[B]
754 [39] -1 0 0x0000ff80 - 0x0000ff9f (0x20) IX[B]
755 [40] -1 0 0x0000ff00 - 0x0000ff1f (0x20) IX[B]
756 [41] -1 0 0x0000ff20 - 0x0000ff3f (0x20) IX[B]
757 [42] -1 0 0x0000ecb8 - 0x0000ecbf (0x8) IX[B](B)
758 [43] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
759 [44] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
760 (II) intel(0): Kernel reported 238336 total, 1 used
761 (II) intel(0): I830CheckAvailableMemory: 953340 kB available
762 drmOpenDevice: node name is /dev/dri/card0
763 drmOpenDevice: open result is 7, (OK)
764 drmOpenDevice: node name is /dev/dri/card0
765 drmOpenDevice: open result is 7, (OK)
766 drmOpenByBusid: Searching for BusID pci:0000:00:02.0
767 drmOpenDevice: node name is /dev/dri/card0
768 drmOpenDevice: open result is 7, (OK)
769 drmOpenByBusid: drmOpenMinor returns 7
770 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
771 (II) intel(0): [drm] DRM interface version 1.3
772 (II) intel(0): [drm] created "i915" driver at busid "pci:0000:00:02.0"
773 (II) intel(0): [drm] added 8192 byte SAREA at 0x80075000
774 (II) intel(0): [drm] mapped SAREA 0x80075000 to 0x37b7f000
775 (II) intel(0): [drm] framebuffer handle = 0xc0000000
776 (II) intel(0): [drm] added 1 reserved context for kernel
777 (WW) intel(0): Removed DRI frontbuffer mapping in compatibility mode.
778 (WW) intel(0): DRIGetDeviceInfo will report incorrect frontbuffer
779 handle.
780 (==) intel(0): VideoRam: 262144 KB
781 (**) intel(0): Framebuffer compression disabled
782 (**) intel(0): Tiling enabled
783 (II) intel(0): Attempting memory allocation with tiled buffers.
784 (II) intel(0): Success.
785 (II) intel(0): [drm] Registers = 0xdfe00000
786 (II) intel(0): [drm] ring buffer = 0x28000000
787 (II) intel(0): [drm] mapped front buffer at 0xc0100000, handle =
788 0xc0100000
789 (II) intel(0): [drm] mapped back buffer at 0xc1100000, handle =
790 0xc1100000
791 (II) intel(0): [drm] mapped depth buffer at 0xc1500000, handle =
792 0xc1500000
793 (II) intel(0): [drm] mapped classic textures at 0xc1900000, handle =
794 0xc1900000
795 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
796 (II) intel(0): [dri] visual configs initialized
797 (II) intel(0): Page Flipping disabled
798 (==) intel(0): Write-combining range (0xc0000000,0x10000000)
799 (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset
800 is 0x0000
801 (WW) intel(0): EXA compatibility mode. Output rotation rendering
802 performance may suffer
803 (II) EXA(0): Offscreen pixmap area of 12582912 bytes
804 (II) EXA(0): Driver registered support for the following operations:
805 (II) Solid
806 (II) Copy
807 (II) Composite (RENDER acceleration)
808 (==) intel(0): Backing store disabled
809 (==) intel(0): Silken mouse enabled
810 (II) intel(0): Initializing HW Cursor
811 (II) intel(0): X context handle = 0x1
812 (II) intel(0): [drm] installed DRM signal handler
813 (II) intel(0): [DRI] installation complete
814 (II) intel(0): [drm] dma control initialized, using IRQ 16
815 (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x0077f000 (pgoffset
816 1919)
817 (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x01100000 (pgoffset
818 4352)
819 (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x01500000 (pgoffset
820 5376)
821 (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x01900000 (pgoffset
822 6400)
823 (II) intel(0): Fixed memory allocation layout:
824 (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB)
825 (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB)
826 (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB)
827 (II) intel(0): 0x00032000-0x00041fff: exa G965 state buffer (64 kB)
828 (II) intel(0): 0x00100000-0x004fffff: front buffer (4096 kB) X tiled
829 (II) intel(0): 0x00500000-0x010fffff: exa offscreen (12288 kB)
830 (II) intel(0): 0x0077f000: end of stolen memory
831 (II) intel(0): 0x01100000-0x014fffff: back buffer (4096 kB) X tiled
832 (II) intel(0): 0x01500000-0x018fffff: depth buffer (4096 kB) Y tiled
833 (II) intel(0): 0x01900000-0x038fffff: classic textures (32768 kB)
834 (II) intel(0): 0x10000000: end of aperture
835 (II) intel(0): Output configuration:
836 (II) intel(0): Pipe A is on
837 (II) intel(0): Display plane A is now enabled and connected to pipe A.
838 (II) intel(0): Pipe B is off
839 (II) intel(0): Display plane B is now disabled and connected to pipe
840 B.
841 (II) intel(0): Output VGA is connected to pipe A
842 (**) Option "dpms"
843 (**) intel(0): DPMS enabled
844 (II) intel(0): Set up textured video
845 (II) intel(0): direct rendering: Enabled
846 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled
847 message.
848 (WW) intel(0): Option "PreferredMode" is not used
849 (WW) intel(0): Option "SecurityTypes" is not used
850 (--) RandR disabled
851 (II) Initializing built-in extension MIT-SHM
852 (II) Initializing built-in extension XInputExtension
853 (II) Initializing built-in extension XTEST
854 (II) Initializing built-in extension XKEYBOARD
855 (II) Initializing built-in extension XC-APPGROUP
856 (II) Initializing built-in extension XAccessControlExtension
857 (II) Initializing built-in extension SECURITY
858 (II) Initializing built-in extension XINERAMA
859 (II) Initializing built-in extension XFIXES
860 (II) Initializing built-in extension XFree86-Bigfont
861 (II) Initializing built-in extension RENDER
862 (II) Initializing built-in extension RANDR
863 (II) Initializing built-in extension COMPOSITE
864 (II) Initializing built-in extension DAMAGE
865 (II) Initializing built-in extension XEVIE
866 (II) Loading local sub module "GLcore"
867 (II) LoadModule: "GLcore"
868 (II) Loading /usr/lib/xorg/modules/extensions//libGLcore.so
869 (II) Module GLcore: vendor="X.Org Foundation"
870 compiled for 1.3.0, module version = 1.0.0
871 ABI class: X.Org Server Extension, version 0.3
872 (II) GLX: Initialized MESA-PROXY GL provider for screen 0
873 (II) intel(0): Setting screen physical size to 270 x 203
874 (**) Option "Protocol" "IMPS/2"
875 (**) Mouse0: Device: "/dev/input/mice"
876 (**) Mouse0: Protocol: "IMPS/2"
877 (**) Option "CorePointer"
878 (**) Mouse0: Core Pointer
879 (**) Option "Device" "/dev/input/mice"
880 (**) Option "Emulate3Buttons" "yes"
881 (**) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
882 (**) Option "ZAxisMapping" "4 5"
883 (**) Mouse0: ZAxisMapping: buttons 4 and 5
884 (**) Mouse0: Buttons: 9
885 (**) Option "CoreKeyboard"
886 (**) Keyboard0: Core Keyboard
887 (**) Option "Protocol" "standard"
888 (**) Keyboard0: Protocol: standard
889 (**) Option "AutoRepeat" "500 30"
890 (**) Option "XkbRules" "xorg"
891 (**) Keyboard0: XkbRules: "xorg"
892 (**) Option "XkbModel" "pc105"
893 (**) Keyboard0: XkbModel: "pc105"
894 (**) Option "XkbLayout" "us"
895 (**) Keyboard0: XkbLayout: "us"
896 (**) Option "CustomKeycodes" "off"
897 (**) Keyboard0: CustomKeycodes disabled
898 (WW) Option "Mapping" requires an string value
899 (**) Option "AlwaysCore"
900 (**) TWXinput: always reports core events
901 (II) XINPUT: Adding extended input device "TWXinput" (type: TABLET)
902 (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
903 (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
904 (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap
905 (II) Mouse0: ps2EnableDataReporting: succeeded
906
907
908 --
909 gentoo-desktop@l.g.o mailing list

Replies