[Bug 89944] GPU crash in Civilization 5

2015-04-14 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/2c899c5c/attachment.html>

[Bug 89980] [Regression] Graphical corruption after resuming from suspend (w/ dual monitor configuration)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
ext part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/a44ef3a1/attachment.html>

[Bug 89980] [Regression] Graphical corruption after resuming from suspend (w/ dual monitor configuration)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
-- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/7a5c8c69/attachment.html>

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Mario Kleiner
On 04/14/2015 08:36 PM, Chris Wilson wrote: > On Tue, Apr 14, 2015 at 08:22:20PM +0200, Mario Kleiner wrote: >> On 04/05/2015 05:40 PM, Chris Wilson wrote: >>> Avoid adding to the waitqueue and reprobing the current vblank if the >>> caller is only querying the current vblank sequence and

[PATCH 2/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Mario Kleiner
On 04/05/2015 05:40 PM, Chris Wilson wrote: > Bypass all the spinlocks and return the last timestamp and counter from > the last vblank if the driver delcares that it is accurate (and stable > across on/off), and the vblank is currently enabled. > > Signed-off-by: Chris Wilson > Cc: Ville

[Bug 83274] XCom Enemy Unknown segfault at src/gallium/drivers/radeon/r600_texture.c:602

2015-04-14 Thread bugzilla-dae...@freedesktop.org
for the comment before, that's a bad manip. Also sorry for bad english -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150

[Bug 83274] XCom Enemy Unknown segfault at src/gallium/drivers/radeon/r600_texture.c:602

2015-04-14 Thread bugzilla-dae...@freedesktop.org
> game in valgrind? Hie, i h -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/2937bd2f/attachment.html>

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Mario Kleiner
On 04/05/2015 05:40 PM, Chris Wilson wrote: > Avoid adding to the waitqueue and reprobing the current vblank if the > caller is only querying the current vblank sequence and timestamp and > so we would return immediately. > > Signed-off-by: Chris Wilson > Cc: Ville Syrjälä > Cc: Daniel Vetter

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Mario Kleiner
On 04/14/2015 04:21 PM, Chris Wilson wrote: > On Tue, Apr 14, 2015 at 06:42:03PM +0900, Michel Dänzer wrote: >> Also, the two patches should have different and more specific shortlogs. > > Second patch: > > drm: Query vblank counters directly for known accurate state > > ? > When i applied your

[PATCH 3/3] drm/tegra: Don't use vblank_disable_immediate on incapable driver.

2015-04-14 Thread Mario Kleiner
Tegra would not only need a hardware vblank counter that increments at leading edge of vblank, but also support for instantaneous high precision vblank timestamp queries, ie. a proper implementation of dev->driver->get_vblank_timestamp(). Without these, there can be off-by-one errors during

[PATCH 2/3] drm: Prevent invalid use of vblank_disable_immediate.

2015-04-14 Thread Mario Kleiner
For a kms driver to support immediate disable of vblank irq's reliably without introducing off by one errors or other mayhem for clients, it must not only support a hardware vblank counter query, but also high precision vblank timestamping, so vblank count and timestamp can be instantaneously

[PATCH 1/3] drm: Zero out invalid vblank timestamp in drm_update_vblank_count.

2015-04-14 Thread Mario Kleiner
Since commit 844b03f27739135fe1fed2fef06da0ffc4c7a081 we make sure that after vblank irq off, we return the last valid (vblank count, vblank timestamp) pair to clients, e.g., during modesets, which is good. An overlooked side effect of that commit for kms drivers without support for precise

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Chris Wilson
On Tue, Apr 14, 2015 at 08:22:20PM +0200, Mario Kleiner wrote: > On 04/05/2015 05:40 PM, Chris Wilson wrote: > >Avoid adding to the waitqueue and reprobing the current vblank if the > >caller is only querying the current vblank sequence and timestamp and > >so we would return immediately. > > >

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Chris Wilson
On Tue, Apr 14, 2015 at 08:17:21PM +0200, Mario Kleiner wrote: > On 04/14/2015 04:21 PM, Chris Wilson wrote: > >On Tue, Apr 14, 2015 at 06:42:03PM +0900, Michel Dänzer wrote: > >>Also, the two patches should have different and more specific shortlogs. > > > >Second patch: > > > >drm: Query vblank

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Michel Dänzer
On 06.04.2015 00:40, Chris Wilson wrote: > Avoid adding to the waitqueue and reprobing the current vblank if the > caller is only querying the current vblank sequence and timestamp and > so we would return immediately. > > Signed-off-by: Chris Wilson > Cc: Ville Syrjälä > Cc: Daniel Vetter >

[PATCH] drm: fix trivial typo mistake

2015-04-14 Thread John Hunter
Signed-off-by: John Hunter --- include/drm/drm_crtc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 2e80ad1..8ad8507 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -974,7 +974,7 @@ struct

[PATCH] trivial: Remove unused variable `tmp' from `radeon_combios_get_lvds_info()'

2015-04-14 Thread Michael Witten
> Signed-off-by: Michael Witten > --- > drivers/gpu/drm/radeon/radeon_combios.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/radeon/radeon_combios.c > b/drivers/gpu/drm/radeon/radeon_combios.c > index 0b3c1e0..7962091 100644 > ---

[Bug 89971] HDMI out *not* working with radeon (mobile 8550g)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20150414/3997ab04/attachment-0001.html>

[Bug 89971] HDMI out *not* working with radeon (mobile 8550g)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20150414/4d3c2acc/attachment.html>

[PATCH 1/2] drm: Shortcircuit vblank queries

2015-04-14 Thread Chris Wilson
On Tue, Apr 14, 2015 at 06:42:03PM +0900, Michel Dänzer wrote: > Also, the two patches should have different and more specific shortlogs. Second patch: drm: Query vblank counters directly for known accurate state ? -- Chris Wilson, Intel Open Source Technology Centre

[PATCH] drm/panel: Add display timing for HannStar HSD100PXN1

2015-04-14 Thread Thierry Reding
attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 819 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/17e42e19/attachment.sig>

[Bug 89944] GPU crash in Civilization 5

2015-04-14 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/e1b98fc3/attachment.html>

[Bug 89909] [radeonsi][bisected] Cities: Skylines black rooftops

2015-04-14 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/5b9ab64f/attachment.html>

[PATCH] trivial: Remove unused variable `tmp' from `radeon_combios_get_lvds_info()'

2015-04-14 Thread Michael Witten
Signed-off-by: Michael Witten --- drivers/gpu/drm/radeon/radeon_combios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c index 0b3c1e0..7962091 100644 ---

[Bug 89971] HDMI out *not* working with radeon (mobile 8550g)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/d4e53ba2/attachment.html>

[Bug 89916] DRI PRIME renders only black window

2015-04-14 Thread bugzilla-dae...@freedesktop.org
was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/0e2a529f/attachment.html>

[PATCH] drm: fix trivial typo mistake

2015-04-14 Thread Daniel Vetter
On Tue, Apr 14, 2015 at 05:07:22PM +0800, John Hunter wrote: > Signed-off-by: John Hunter Merged to topic/drm-misc, thanks. -Daniel > --- > include/drm/drm_crtc.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h > index

[Bug 89916] DRI PRIME renders only black window

2015-04-14 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/a5ed8fa0/attachment.html>

[RFC/PATCH v2 0/5] Add live source objects to DRM

2015-04-14 Thread Daniel Vetter
On Mon, Apr 13, 2015 at 09:39:42PM +0300, Laurent Pinchart wrote: > Hello, > > Here's a proposal for a different approach to live source in DRM based on an > idea by Daniel Vetter. The previous version can be found at > http://lists.freedesktop.org/archives/dri-devel/2015-March/079319.html. msm

[Bug 89971] HDMI out *not* working with radeon (mobile 8550g)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
ee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/7fbd4578/attachment-0001.html>

[PATCH 3/3] drm/radeon: add userfence IOCTL

2015-04-14 Thread Daniel Vetter
On Mon, Apr 13, 2015 at 03:48:51PM -0400, Jerome Glisse wrote: > On Mon, Apr 13, 2015 at 08:26:05PM +0200, Christian König wrote: > > On 13.04.2015 19:51, Jerome Glisse wrote: > > >On Mon, Apr 13, 2015 at 07:23:34PM +0200, Daniel Vetter wrote: > > >>On Mon, Apr 13, 2015 at 04:52:17PM +0200,

[i915] assert_device_not_suspended

2015-04-14 Thread Samuel Thibault
I forgot to mention that this is linux 4.0.0 Samuel

[i915] assert_device_not_suspended

2015-04-14 Thread Samuel Thibault
Hello, Yesterday, as usual I ran xlock before the night. In the morning, I typed a key to wake it up, it didn't. I had to reboot. I could however read in the logs: Apr 14 05:00:13 type kernel: [33976.116204] WARNING: CPU: 2 PID: 63 at drivers/gpu/drm/i915/intel_uncore.c:69

[Bug 89909] [radeonsi][bisected] Cities: Skylines black rooftops

2015-04-14 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/348f21a1/attachment.html>

[PATCH] drm: Make integer overflow checking cover universal cursor updates (v2)

2015-04-14 Thread Daniel Vetter
On Mon, Apr 13, 2015 at 11:06:13AM -0700, Matt Roper wrote: > Our legacy SetPlane updates perform integer overflow checking on a > plane's destination rectangle in drm_mode_setplane(), and atomic updates > handled as part of a drm_atomic_state transaction do the same checking > in

[Bug 89909] [radeonsi][bisected] Cities: Skylines black rooftops

2015-04-14 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20150414/40bc48ba/attachment.html>

[Bug 89916] DRI PRIME renders only black window

2015-04-14 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/20f75b64/attachment.html>

[Bug 89971] HDMI out *not* working with radeon (mobile 8550g)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/b3933d4a/attachment.html>

[Bug 89980] [Regression] Graphical corruption after resuming from suspend (w/ dual monitor configuration)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
ntu patches), I can do a bisect, but that's where I'm stuck as of now. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150414/bc

[Bug 89995] error 6 in libgallium.so.0.0.0 (Kodi Crashed when playing LiveTV using TVHeadend)

2015-04-14 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20150414/5f456d9d/attachment-0001.html>

[Bug 89957] vm protection faults in piglit lest: texsubimage cube_map_array pbo

2015-04-14 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=89957 Dave Airlie changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---