Bug 88275 - [865G] Intel OpenGL rendering isn't starting
Summary: [865G] Intel OpenGL rendering isn't starting
Status: RESOLVED MOVED
Alias: None
Product: Mesa
Classification: Unclassified
Component: Drivers/DRI/i915 (show other bugs)
Version: git
Hardware: x86-64 (AMD64) Linux (All)
: high major
Assignee: Default DRI bug account
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-10 17:57 UTC by Eugene
Modified: 2019-09-18 19:38 UTC (History)
2 users (show)

See Also:
i915 platform:
i915 features:


Attachments
dmesg (42.35 KB, text/plain)
2015-01-10 17:57 UTC, Eugene
Details
glxinfo (30.82 KB, text/plain)
2015-01-10 17:58 UTC, Eugene
Details
Xorg.0.log (2.90 MB, text/plain)
2015-01-10 17:58 UTC, Eugene
Details
Xorg.0.log (UXA acceleration) (40.63 KB, text/plain)
2015-01-10 21:04 UTC, Eugene
Details
dmesg (41.29 KB, text/plain)
2015-01-15 14:23 UTC, Eugene
Details
glxinfo (30.81 KB, text/plain)
2015-01-15 14:23 UTC, Eugene
Details
Xorg.0.log with backtrace (28.70 KB, text/plain)
2015-01-15 14:24 UTC, Eugene
Details
GPU crash dump from /sys/class/drm/card0/error (696.13 KB, text/plain)
2015-01-15 14:29 UTC, Eugene
Details
dmesg |ag drm (1.28 KB, text/plain)
2015-04-30 00:54 UTC, Sgt. Garcia
Details
/sys/class/drm/card0/error (845.90 KB, text/plain)
2015-04-30 00:59 UTC, Sgt. Garcia
Details
glxinfo (11.36 KB, text/plain)
2015-04-30 01:01 UTC, Sgt. Garcia
Details
intel_reg_dumper (13.82 KB, text/plain)
2015-04-30 01:10 UTC, Sgt. Garcia
Details

Description Eugene 2015-01-10 17:57:18 UTC
As I understood Intel OpenGL rendering not starting for some reason:

grep -i "(EE)" /var/log/Xorg.0.log
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  5294.713] (EE) intel: Failed to load module "present" (module does not exist, 0)
[  5295.161] (EE) AIGLX error: Calling driver entry point failed
[  5295.161] (EE) AIGLX: reverting to software rendering

glxinfo | grep error
libGL error: failed to create dri screen
libGL error: failed to load driver: i915

Xubuntu 14.04 LTS

Linux 3.19.0-994-generic #201501080250 (drm-intel-nightly) x86_64
(from http://kernel.ubuntu.com/~kernel-ppa/mainline/)

MESA 10.5.0-devel
(from oibaf ppa: https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers)
xserver-xorg-video-intel 2.99.917+git1501071932.9bbbcc~gd~t
Comment 1 Eugene 2015-01-10 17:57:59 UTC
Created attachment 112069 [details]
dmesg
Comment 2 Eugene 2015-01-10 17:58:19 UTC
Created attachment 112070 [details]
glxinfo
Comment 3 Eugene 2015-01-10 17:58:44 UTC
Created attachment 112071 [details]
Xorg.0.log
Comment 4 Jason Ekstrand 2015-01-10 19:41:32 UTC
Looks like your X server isn't built with present support and the intel driver is requiring it.  This is either a problem with your build or an intel DDX bug.  In any case, it's not a mesa bug.
Comment 5 Eugene 2015-01-10 19:47:55 UTC
(In reply to Jason Ekstrand from comment #4)
> Looks like your X server isn't built with present support and the intel
> driver is requiring it.  This is either a problem with your build or an
> intel DDX bug.  In any case, it's not a mesa bug.

So what should I do to fix it ? Should I recreate this report on another component (DDX) or what ? I
Comment 6 Chris Wilson 2015-01-10 19:52:14 UTC
(In reply to Jason Ekstrand from comment #4)
> Looks like your X server isn't built with present support and the intel
> driver is requiring it.  This is either a problem with your build or an
> intel DDX bug.  In any case, it's not a mesa bug.

Wrong, very wrong.

[  5295.161] (EE) AIGLX error: Calling driver entry point failed
[  5295.161] (EE) AIGLX: reverting to software rendering


__glXDRIscreenProbe()
  screen->driScreen =
        (*screen->dri2->createNewScreen) (pScreen->myNum,
                                          screen->fd,
                                          loader_extensions,
                                          &screen->driConfigs, screen);

    if (screen->driScreen == NULL) {
        LogMessage(X_ERROR, "AIGLX error: Calling driver entry point failed\n");
        goto handle_error;
    }

A mesa provided function (createNewScreen) is reporting a failure.
Comment 7 Jason Ekstrand 2015-01-10 20:17:45 UTC
(In reply to Chris Wilson from comment #6)
> (In reply to Jason Ekstrand from comment #4)
> > Looks like your X server isn't built with present support and the intel
> > driver is requiring it.  This is either a problem with your build or an
> > intel DDX bug.  In any case, it's not a mesa bug.
> 
> Wrong, very wrong.
> 
> [  5295.161] (EE) AIGLX error: Calling driver entry point failed
> [  5295.161] (EE) AIGLX: reverting to software rendering

Sorry, I missed that.  I saw the first error and didn't notice the others.

> __glXDRIscreenProbe()
>   screen->driScreen =
>         (*screen->dri2->createNewScreen) (pScreen->myNum,
>                                           screen->fd,
>                                           loader_extensions,
>                                           &screen->driConfigs, screen);
> 
>     if (screen->driScreen == NULL) {
>         LogMessage(X_ERROR, "AIGLX error: Calling driver entry point
> failed\n");
>         goto handle_error;
>     }
> 
> A mesa provided function (createNewScreen) is reporting a failure.

That seems odd.

Eugene, Did this recently start happening?  Does it work with an older mesa?  Unfortunately, those logs aren't telling me much about what actually happened.
Comment 8 Jason Ekstrand 2015-01-10 20:21:07 UTC
Also, what graphics chipset do you have?  From the Xorg.0.log, it looks like an 865G.  An lspci would be helpful
Comment 9 Eugene 2015-01-10 20:24:35 UTC
>Did this recently start happening?  Does it work with an older mesa?  Unfortunately, those logs aren't telling me much about what actually happened.

With older MESA I have described situation here: https://bugs.freedesktop.org/show_bug.cgi?id=86583

For any additional info, please ask.
Comment 10 Eugene 2015-01-10 20:25:43 UTC
full lspci:

lspci
00:00.0 Host bridge: Intel Corporation 82865G/PE/P DRAM Controller/Host-Hub Interface (rev 02)
00:02.0 VGA compatible controller: Intel Corporation 82865G Integrated Graphics Controller (rev 02)
00:06.0 System peripheral: Intel Corporation 82865G/PE/P Processor to I/O Memory Interface (rev 02)
00:1d.0 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #1 (rev 02)
00:1d.1 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #2 (rev 02)
00:1d.2 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #3 (rev 02)
00:1d.3 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #4 (rev 02)
00:1d.7 USB controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB2 EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev c2)
00:1f.0 ISA bridge: Intel Corporation 82801EB/ER (ICH5/ICH5R) LPC Interface Bridge (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801EB/ER (ICH5/ICH5R) IDE Controller (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801EB (ICH5) SATA Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 82801EB/ER (ICH5/ICH5R) SMBus Controller (rev 02)
00:1f.5 Multimedia audio controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) AC'97 Audio Controller (rev 02)
01:03.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8100/8101L/8139 PCI Fast Ethernet Adapter (rev 10)
Comment 11 Jason Ekstrand 2015-01-10 20:34:26 UTC
Could you go back to the semi-working configuration you had before and get a glxinfo from it.  I can't tell what mesa driver is being called.  We have two different i915 drivers in mesa and knowing which would be useful.

Another thing that would be good to try is to set AccelMethod to "uxa" in your xorg.conf and see if that makes a difference.  I don't know that it will, but it would make a good datapoint.
Comment 12 Chris Wilson 2015-01-10 20:43:29 UTC
(In reply to Jason Ekstrand from comment #11)
> Could you go back to the semi-working configuration you had before and get a
> glxinfo from it.  I can't tell what mesa driver is being called.  We have
> two different i915 drivers in mesa and knowing which would be useful.

i915_dri.so
Comment 13 Eugene 2015-01-10 20:45:50 UTC
(In reply to Jason Ekstrand from comment #11)
> Could you go back to the semi-working configuration you had before and get a
> glxinfo from it.  I can't tell what mesa driver is being called.  We have
> two different i915 drivers in mesa and knowing which would be useful.
Yes. But, please, specify what do you mean on "semi-working"? What kernel, what mesa version?


> Another thing that would be good to try is to set AccelMethod to "uxa" in
> your xorg.conf and see if that makes a difference.  I don't know that it
> will, but it would make a good datapoint.
Under "semi-working" configuration or under as it is now ?
Comment 14 Eugene 2015-01-10 21:04:15 UTC
Created attachment 112074 [details]
Xorg.0.log (UXA acceleration)

On current configuration.
Comment 15 Jason Ekstrand 2015-01-10 22:39:33 UTC
I was able to fake my computer into thinking it was an i915 and the driver loads ok.  I'm guessing someone pushed something that broke indirect rendering.  I'll try to look at it next week.
Comment 16 Eugene 2015-01-10 23:15:29 UTC
(In reply to Jason Ekstrand from comment #15)
> I was able to fake my computer into thinking it was an i915 and the driver
> loads ok.  I'm guessing someone pushed something that broke indirect
> rendering.  I'll try to look at it next week.

Thanks.
Comment 17 Eugene 2015-01-15 14:22:22 UTC
Greetings. I just updated to latest Mesa git and drm-intel-nightly after which new backtrace and even GPU crash appeared again. Mouse pointer is late now for hand movements. Although it says acceleration is turning off I feel some performance acceleration and higher responsiveness in comparison to how it was before those backtrace and GPU crash appeared again.
Comment 18 Eugene 2015-01-15 14:23:22 UTC
Created attachment 112295 [details]
dmesg
Comment 19 Eugene 2015-01-15 14:23:59 UTC
Created attachment 112296 [details]
glxinfo
Comment 20 Eugene 2015-01-15 14:24:40 UTC
Created attachment 112297 [details]
Xorg.0.log with backtrace
Comment 21 Eugene 2015-01-15 14:29:07 UTC
Created attachment 112298 [details]
GPU crash dump from /sys/class/drm/card0/error
Comment 22 Ian Romanick 2015-01-20 04:46:19 UTC
(In reply to Jason Ekstrand from comment #11)
> Could you go back to the semi-working configuration you had before and get a
> glxinfo from it.  I can't tell what mesa driver is being called.  We have
> two different i915 drivers in mesa and knowing which would be useful.

FWIW... only the "classic" driver supports GEN2 (i830, i845, and i865) chipsets.
Comment 23 Eugene 2015-01-22 13:46:14 UTC
Just a little update. Latest Mesa git and drm-intel-nightly #201501220251. Issue with mouse is gone and now it's ok. But OGL rendering still not starting:

$glxinfo | grep error
libGL error: failed to create dri screen
libGL error: failed to load driver: i915

Trying to logoff gives black screen. And the following in logs:

$grep -i error /var/log/syslog
[drm] GPU HANG: ecode -1:0x00000000, reason: Command parser error, iir 0x00008000, action: continue
[drm] GPU crash dump saved to /sys/class/drm/card0/error
i915: render error detected, EIR: 0x00000010
[drm:i915_report_and_clear_eir] *ERROR* EIR stuck: 0x00000010, masking
[drm] GPU HANG: ecode -1:0x00000000, reason: Command parser error, iir 0x00008000, action: continue
i915: render error detected, EIR: 0x00000010
[drm] GPU crash dump saved to /sys/class/drm/card0/error
[drm:i915_reset [i915]] *ERROR* Failed to reset chip: -19

Please, fix it.
Comment 24 Timothy Arceri 2015-01-22 20:07:19 UTC
What does it say when you run:

LIBGL_DEBUG=verbose glxinfo | grep direct
Comment 25 Eugene 2015-01-23 15:14:43 UTC
(In reply to Timothy Arceri from comment #24)
> What does it say when you run:
> 
> LIBGL_DEBUG=verbose glxinfo | grep direct

$ LIBGL_DEBUG=verbose glxinfo | grep direct
libGL: screen 0 does not appear to be DRI3 capable
libGL: pci id for fd 4: 8086:2572, driver i915
libGL: OpenDriver: trying /usr/lib/x86_64-linux-gnu/dri/tls/i915_dri.so
libGL: OpenDriver: trying /usr/lib/x86_64-linux-gnu/dri/i915_dri.so
libGL error: failed to create dri screen
libGL error: failed to load driver: i915
libGL: OpenDriver: trying /usr/lib/x86_64-linux-gnu/dri/tls/swrast_dri.so
libGL: OpenDriver: trying /usr/lib/x86_64-linux-gnu/dri/swrast_dri.so
libGL: Can't open configuration file /home/teacher/.drirc: No such file or directory.
libGL: Can't open configuration file /home/teacher/.drirc: No such file or directory.
direct rendering: Yes

For any additional info/tests, lease ask.
Comment 26 Jason Ekstrand 2015-01-26 18:56:36 UTC
I tried this on a pineview machine which is i915 not 865 but it works fine, so this doesn't look a generic driver change.
Comment 27 Eugene 2015-01-26 19:48:55 UTC
(In reply to Jason Ekstrand from comment #26)
> I tried this on a pineview machine which is i915 not 865 but it works fine,
> so this doesn't look a generic driver change.

So what could I/we do ? Any ideas ? May be some kind of any additional tests ?
Comment 28 Eugene 2015-01-28 12:56:07 UTC
(In reply to Jason Ekstrand from comment #26)
> I tried this on a pineview machine which is i915 not 865 but it works fine,
> so this doesn't look a generic driver change.

As I understood configuration you tried not the same that I have. So there are differences in them. But I can give you SSH access so you'll be able to determine the cause of the problem. Is this option suits you ?
Comment 29 Eugene 2015-02-05 19:33:29 UTC
I tried stable MESA 10.1.3 with kernels 3.13.0-45 and 3.18.5. It works without any problems. But installing latest MESA git immediately causes OpenGL not to start with following errors:

libGL error: failed to create dri screen
libGL error: failed to load driver: i915

So the problem is in MESA, after 10.3.1.
Comment 30 Sgt. Garcia 2015-04-30 00:52:08 UTC
same here, it seems.
Comment 31 Sgt. Garcia 2015-04-30 00:54:14 UTC
Created attachment 115461 [details]
dmesg |ag drm
Comment 32 Sgt. Garcia 2015-04-30 00:59:56 UTC
Created attachment 115462 [details]
/sys/class/drm/card0/error
Comment 33 Sgt. Garcia 2015-04-30 01:01:40 UTC
Created attachment 115463 [details]
glxinfo
Comment 34 Sgt. Garcia 2015-04-30 01:03:44 UTC
glxgrear:
Running synchronized to the vertical refresh.  The framerate should be
approximately the same as the monitor refresh rate.
intel_do_flush_locked failed: Input/output error

compton:
intel_do_flush_locked failed: Input/output error

mpv:
[vo/opengl/x11] X11 error: GLXBadFBConfig
[vo/opengl] Could not create GL3 context. Retrying with legacy context.
AO: [pulse] 44100Hz stereo 2ch float
VO: [opengl] 1280x720 yuv420p
intel_do_flush_locked failed: Input/output error
Comment 35 Sgt. Garcia 2015-04-30 01:10:34 UTC
Created attachment 115464 [details]
intel_reg_dumper
Comment 36 GitLab Migration User 2019-09-18 19:38:34 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/mesa/mesa/issues/746.


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.