Re: [Intel-gfx] gen6 (SNB) GPU still stalling besides latest patches

2011-06-20 Thread Nicolas Kalkhof
rnes" Gesendet: Jun 21, 2011 2:19:29 AM An: "Ted Phelps" Betreff: Re: [Intel-gfx] gen6 (SNB) GPU still stalling besides latest patches >On Tue, 21 Jun 2011 10:01:35 +1000 >Ted Phelps wrote: > >> >> Hi Nicolas, >> >> Nicolas Kalkhof writes: &

[Intel-gfx] errors when building the latest intel DDX driver

2011-06-20 Thread Xiang, Haihao
Hi, I got the following error message when run 'autogen.sh' checking for XORG... configure: error: Package requirements (xorg-server >= xproto fontsproto randrproto renderproto xextproto x11 xextproto) were not met: Requested 'xorg-server >= xproto' but version of xorg-ser

Re: [Intel-gfx] gen6 (SNB) GPU still stalling besides latest patches

2011-06-20 Thread Jesse Barnes
On Tue, 21 Jun 2011 10:01:35 +1000 Ted Phelps wrote: > > Hi Nicolas, > > Nicolas Kalkhof writes: > > SNB GPU still hangs frequently with kernel patches next-20110620 > > raising "drm:i915_hangcheck_ring_idle *ERROR* Hangcheck timer > > elapsed... gen6 bsd rin

Re: [Intel-gfx] gen6 (SNB) GPU still stalling besides latest patches

2011-06-20 Thread Ted Phelps
Hi Nicolas, Nicolas Kalkhof writes: > SNB GPU still hangs frequently with kernel patches next-20110620 > raising "drm:i915_hangcheck_ring_idle *ERROR* Hangcheck timer > elapsed... gen6 bsd ring idle". This happens when multiple > applications (mplayer decoding vaapi strea

[Intel-gfx] [PATCH 4/4] drm/i915: add SNB video sprite support

2011-06-20 Thread Jesse Barnes
The video sprites support video surface formats natively and can handle scaling well. So add support for them using the new DRM core overlay support functions. Signed-off-by: Jesse Barnes --- drivers/gpu/drm/i915/Makefile |1 + drivers/gpu/drm/i915/i915_reg.h | 52 +

[Intel-gfx] [PATCH 3/4] drm/i915: rename existing overlay support to "legacy"

2011-06-20 Thread Jesse Barnes
The old overlay block has all sorts of quirks and is very different than ILK+ video sprites. So rename it to legacy to make that clear and clash less with core overlay support. Signed-off-by: Jesse Barnes --- drivers/gpu/drm/i915/i915_debugfs.c |2 +- drivers/gpu/drm/i915/i915_drv.h |

[Intel-gfx] [PATCH 2/4] drm: add an fb creation ioctl that takes a pixel format

2011-06-20 Thread Jesse Barnes
To properly support the various plane formats supported by different hardware, the kernel must know the pixel format of a framebuffer object. So add a new ioctl taking a format argument corresponding to a fourcc name from videodev2.h. Signed-off-by: Jesse Barnes --- drivers/gpu/drm/drm_crtc.c

[Intel-gfx] [PATCH 1/4] drm: add plane support

2011-06-20 Thread Jesse Barnes
Planes are a bit like half-CRTCs. They have a location and fb, but don't drive outputs directly. Add support for handling them to the core KMS code. Signed-off-by: Jesse Barnes --- drivers/gpu/drm/drm_crtc.c | 235 +++- drivers/gpu/drm/drm_drv.c |3

[Intel-gfx] [RFC] Updated plane support v3

2011-06-20 Thread Jesse Barnes
This version adds both source and dest rect params to the set_plane ioctl, and makes the source fixed point to support hardware that needs it. I haven't changed the name of the SNB implementation yet (per Chris's suggestions) but will before it gets upstream. I'd be interested to see whether thes

[Intel-gfx] gen6 (SNB) GPU still stalling besides latest patches

2011-06-20 Thread Nicolas Kalkhof
hello,SNB GPU still hangs frequently with kernel patches next-20110620 raising "drm:i915_hangcheck_ring_idle *ERROR* Hangcheck timer elapsed... gen6 bsd ring idle". This happens when multiple applications (mplayer decoding vaapi stream and some openGL game) running at the same time. W

Re: [Intel-gfx] IVB page flipping fixes (hopefully final)

2011-06-20 Thread Zhao, Jian J
Hi Jesse, With your these two patches: http://lists.freedesktop.org/archives/intel-gfx/2011-June/011014.html It indeed fixed three bugs(#38362, #38392, #38393) on IvyBridge, but it also caused a regression(bug #38428) and another issue is with the patched kernel, the piglit cases' passrate dr

[Intel-gfx] [PATCH] drm/i915/sdvo: Include LVDS panels for the IS_DIGITAL check

2011-06-20 Thread Chris Wilson
We were checking whether the supplied edid matched the connector it was read from. We do this in case a DDC read returns an EDID for another device on a multifunction or otherwise interesting card. However, we failed to include LVDS as a digital device and so rejecting an otherwise valid EDID. Fix