Bug 14237 - [i945 Macbook] crash when running video
Summary: [i945 Macbook] crash when running video
Status: RESOLVED NOTOURBUG
Alias: None
Product: xorg
Classification: Unclassified
Component: Driver/intel (show other bugs)
Version: 7.2 (2007.02)
Hardware: x86 (IA32) Linux (All)
: medium major
Assignee: Wang Zhenyu
QA Contact: Xorg Project Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-01-24 15:16 UTC by Cédric Krier
Modified: 2008-03-03 16:53 UTC (History)
2 users (show)

See Also:
i915 platform:
i915 features:


Attachments
Xorg log (42.20 KB, text/plain)
2008-01-26 03:04 UTC, Cédric Krier
no flags Details
xorg.conf (3.96 KB, text/plain)
2008-01-26 03:05 UTC, Cédric Krier
no flags Details

Description Cédric Krier 2008-01-24 15:16:49 UTC
X crash when running video with the i810-2.2.1_pre20080123

Log:
X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: UNKNOWN-
Current Operating System: Linux tetsuo 2.6.23-hardened-r4-mactel #1 SMP PREEMPT Sun Jan 20 21:32:41 CET 2008 i686
Build Date: 17 November 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: Thu Jan 24 23:59:32 2008
(==) Using config file: "/etc/X11/xorg.conf"
(WW) intel: No matching Device section for instance (BusID PCI:0:2:1) found
(II) Module already built-in
(II) Module already built-in
(II) Module already built-in
(EE) AIGLX error: drmMap of framebuffer failed (Invalid argument)(EE) AIGLX: reverting to software rendering
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:          Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
>                   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
Synaptics DeviceInit called
SynapticsCtrl called.
Synaptics DeviceOn called
dwm: missing fontset: GB2312.1980-0
dwm: missing fontset: KSC5601.1987-0

Fatal server error:
Bad channel value 285893360

XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"^M
      after 6545 requests (6545 known processed) with 0 events remaining.^M
xinit:  connection to X server lost.^M
Comment 1 Gordon Jin 2008-01-24 18:50:10 UTC
Please attach the full log and xorg.conf.

Does this ever work for you on the previous version?
Comment 2 Cédric Krier 2008-01-26 03:04:41 UTC
Created attachment 13953 [details]
Xorg log
Comment 3 Cédric Krier 2008-01-26 03:05:15 UTC
Created attachment 13954 [details]
xorg.conf
Comment 4 Cédric Krier 2008-01-26 03:05:54 UTC
(In reply to comment #1)
> Please attach the full log and xorg.conf.
> 
> Does this ever work for you on the previous version?
> 

Yes it was working with the version 1.7.4
Comment 5 Gordon Jin 2008-02-19 17:43:28 UTC
jbarnes guess one of the fragment shader program is bogus as the bad channel message comes from i915_get_hardware_channel_val from i915_3d.h.
Comment 6 Wang Zhenyu 2008-02-19 17:43:43 UTC
Does this happen everytime? Could you get more details on how to reproduce this?
Comment 7 Cédric Krier 2008-02-20 02:47:24 UTC
(In reply to comment #6)
> Does this happen everytime? Could you get more details on how to reproduce
> this?
> 

It crashes everytime when I run any video (mplayer, xine, etc...).
And it happens with all i810-2* that have tested.
Comment 8 Wang Zhenyu 2008-03-02 23:51:35 UTC
it's strange, we always assign channel to fixed value, and driver never trys to abuse channel value. And exa accel works fine, right?

How about try to comment following negate value check?

diff --git a/src/i915_3d.h b/src/i915_3d.h
index 1090218..62a8eac 100644
--- a/src/i915_3d.h
+++ b/src/i915_3d.h
@@ -177,8 +177,8 @@ i915_fs_operand_one(void)
 static inline int
 i915_get_hardware_channel_val(int channel_val)
 {
-    if (channel_val < 0)
-       channel_val = -channel_val;
+//    if (channel_val < 0)
+//     channel_val = -channel_val;

     switch (channel_val) {
     case X_CHANNEL_VAL:
~                                   
Comment 9 Wang Zhenyu 2008-03-02 23:52:32 UTC
btw, do you have any other patches outside of upstream tree?
Comment 10 Cédric Krier 2008-03-03 04:52:07 UTC
It doesn't change any thing and I have no patch.
But I find a solution. The problem appears when I compile the driver with an hardened gcc. When I compile with i686-pc-linux-gnu-3.4.6-hardenednopiessp, it works well.
Comment 11 Wang Zhenyu 2008-03-03 07:04:08 UTC
yeah, compiler issue was also my thought, so thanks for try it. then i'd like to figure out what might go wrong with our shader implement in i915_3d.h, macros...or a gcc issue?

Eric, any sharp idea?
Comment 12 Eric Anholt 2008-03-03 14:20:28 UTC
Zhenyu, those two lines you commented out are for an unused feature of the macros -- you can do i915_fs_operand(FS_R0, X, -Y, -X, W) for example to negate two components.  We don't use it today, but I can imagine using it when we do gradients for example.

If the issue is caused by special gcc, I'd be inclined to close it unless there's evidence of an actual bug in our code being exposed.
Comment 13 Wang Zhenyu 2008-03-03 16:53:43 UTC
right, I don't meant we should delete negate channel, just want to see if it changes anything though...

Cédric, I'll close the bug now, as it looks a compiler issue than our driver's bug.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.