[Bug 93649] [radeonsi] Graphics lockup while playing tf2

2016-10-02 Thread bugzilla-dae...@freedesktop.org
e a lot of code). -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/7f118c1f/attachment.html>

[Bug 98010] [Regression] Screen corruption while playing videos

2016-10-02 Thread bugzilla-dae...@freedesktop.org
L: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/328d558e/attachment.html>

[Bug 98010] [Regression] Screen corruption while playing videos

2016-10-02 Thread bugzilla-dae...@freedesktop.org
e the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/b82e3522/attachment.html>

[Bug 94900] HD6950 GPU lockup loop with various steam games (octodad[always], saints row 4[always], dead island[always], grid autosport[sometimes])

2016-10-02 Thread bugzilla-dae...@freedesktop.org
this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/05fb37f9/attachment.html>

[Bug 94900] HD6950 GPU lockup loop with various steam games (octodad[always], saints row 4[always], dead island[always], grid autosport[sometimes])

2016-10-02 Thread bugzilla-dae...@freedesktop.org
le trying Rocket League with this patch. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/5b0189b4/attachment-0001.html>

[Bug 94900] HD6950 GPU lockup loop with various steam games (octodad[always], saints row 4[always], dead island[always], grid autosport[sometimes])

2016-10-02 Thread bugzilla-dae...@freedesktop.org
would be awesome :) -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/f8eecd61/attachment.html>

[Bug 98003] Tonga fails to boot since drm/amdgpu:exclude 5dw digest for entry

2016-10-02 Thread bugzilla-dae...@freedesktop.org
tps://lists.freedesktop.org/archives/dri-devel/attachments/20161002/41b9a8cd/attachment.html>

[Bug 98016] [bisected] Fury fails to boot since vce3: add support for third vce ring

2016-10-02 Thread bugzilla-dae...@freedesktop.org
bbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/8eb57c21/attachment.html>

[PATCH 0/3] drm: Add panic handling

2016-10-02 Thread Noralf Trønnes
Ping. Den 11.09.2016 20:47, skrev Noralf Trønnes: > This patchset adds a way for DRM drivers to display kernel messages > during panic(). > > This version have lots of changes based on Daniel's review of the RFC > where he proposed a different way of interacting with the driver. > > I have used t

[Bug 175411] New: Using 144Hz results in unusable display

2016-10-02 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=175411 Bug ID: 175411 Summary: Using 144Hz results in unusable display Product: Drivers Version: 2.5 Kernel Version: 4.7.4 Hardware: x86-64 OS: Linux Tree: Fedora

[Bug 98016] [bisected] Fury fails to boot since vce3: add support for third vce ring

2016-10-02 Thread bugzilla-dae...@freedesktop.org
HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/feab140e/attachment.html>

[Bug 97639] Intermittent flickering artifacts with AMD R7 260x

2016-10-02 Thread bugzilla-dae...@freedesktop.org
: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/f1c008a7/attachment.html>

[Bug 93649] [radeonsi] Graphics lockup while playing tf2

2016-10-02 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: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/f80fe25e/attachment-0001.html>

[Bug 107381] radeon VCE init error (-110) -- AMD/Intel Mars Hybrid Graphics

2016-10-02 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=107381 Gauthier P. changed: What|Removed |Added CC||kendos.kenlen at gmail.com --- Comment #12

[Bug 98020] Tonga agd5f 4.9-wip WARNING: at drivers/gpu/drm/drm_irq.c:1168 drm_vblank_put+0xaa/0xb0

2016-10-02 Thread bugzilla-dae...@freedesktop.org
e for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20161002/85035ef4/attachment.html>

[PATCH] drm: Release resources with a safer function

2016-10-02 Thread Christophe JAILLET
We should use 'ida_simple_remove()' instead of 'ida_remove()' when freeing resources allocated with 'ida_simple_get()'. This as been spotted with the following coccinelle script which tries to detect missing 'ida_simple_remove()' call in error handling paths. /// @@ expression x; iden

[PATCH V2] drm: simple_kms_helper: Add prepare_fb and cleanup_fb hooks

2016-10-02 Thread Marek Vasut
On 09/30/2016 11:58 AM, Daniel Vetter wrote: > On Thu, Sep 29, 2016 at 11:58 PM, Marek Vasut wrote: >> + /** >> +* @prepare_fb: >> +* >> +* Optional, called by struct &drm_plane_helper_funcs ->prepare_fb . >> +*/ > > > You've lost the hint that people should

[PATCH V3] drm: simple_kms_helper: Add prepare_fb and cleanup_fb hooks

2016-10-02 Thread Marek Vasut
Add .prepare_fb and .cleanup_fb plane hooks into the drm_simple_kms. These can be used by drivers to call ie. the drm_fb_cma_setup_fence() helper. Signed-off-by: Marek Vasut Cc: Noralf Trønnes Cc: Daniel Vetter Cc: David Airlie --- V2: Fix the documentation style to play well with make htmldo

[PATCH] drm: simple_kms_helper: Handle the vblank events

2016-10-02 Thread Marek Vasut
On 09/30/2016 11:50 AM, Daniel Vetter wrote: > On Thu, Sep 29, 2016 at 11:04 PM, Marek Vasut wrote: >> On 09/29/2016 11:28 AM, Daniel Vetter wrote: >>> On Tue, Sep 27, 2016 at 02:20:49PM +0200, Marek Vasut wrote: On 09/27/2016 02:16 PM, Noralf Trønnes wrote: > > Den 27.09.2016 12:29,

[PATCH 1/2] drm/fb_cma_helper: Add drm_fb_cma_setup_fence() helper

2016-10-02 Thread Marek Vasut
On 09/30/2016 11:53 AM, Daniel Vetter wrote: > On Thu, Sep 29, 2016 at 11:44 PM, Marek Vasut wrote: >> I have the following right now, I think that's more descriptive as this >> function is not preparing the FB in any way. >> >> /** >> * drm_fb_cma_extract_and_attach_fence() - Extract fence from