[Bug 119631] RadeonSI get a huge performance dip with used with the nine state tracker

2016-06-04 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=119631 Vedran Miletić changed: What|Removed |Added CC||vedran at miletic.net --- Comment #1

[Bug 95247] System hangs after ~10 minutes when using Radeon R9 390

2016-06-04 Thread bugzilla-dae...@freedesktop.org
art -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160604/058d7ed6/attachment.html>

[Bug 96278] [amdgpu][tonga]Kernel Hung when starting X while detecting outputs

2016-06-04 Thread bugzilla-dae...@freedesktop.org
tps://lists.freedesktop.org/archives/dri-devel/attachments/20160604/aabc5f77/attachment.html>

[Bug 88458] The monitor turns off when playing starcraft 2 in wine

2016-06-04 Thread bugzilla-dae...@freedesktop.org
nteresting. -- 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/20160604/02faf171/attachment-0001.html>

[Bug 96327] Assertion failure in radeon_drm_cs.c (Shadow of Mordor)

2016-06-04 Thread bugzilla-dae...@freedesktop.org
2.0x9a.0x9b at gmail.com |.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

[Bug 119631] New: RadeonSI get a huge performance dip with used with the nine state tracker

2016-06-04 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=119631 Bug ID: 119631 Summary: RadeonSI get a huge performance dip with used with the nine state tracker Product: Drivers Version: 2.5 Kernel Version: 4.7-rc1 Hardware:

[PATCH] reservation: sprinkle some WARN_ON()s

2016-06-04 Thread Daniel Vetter
On Thu, Apr 07, 2016 at 08:52:56PM -0400, Rob Clark wrote: > A bit overkill since, for example, the rcu_dereference_protected() in > reservation_object_get_list() will WARN. But this is much less subtle > for folks reading the code. > > v2: use reservation_object_held() instead of

[PATCH 0/4] dma-buf/reservation doc updates

2016-06-04 Thread Daniel Vetter
On Fri, Apr 01, 2016 at 08:50:32PM +0530, Sumit Semwal wrote: > Hi Rob, > > On 1 April 2016 at 19:37, Alex Deucher wrote: > > On Thu, Mar 31, 2016 at 4:26 PM, Rob Clark wrote: > >> Some dma-buf headerdoc fixes (turns out dma-buf.h wasn't getting pulled > >> into doc build), add reservation

[PATCH v2] drm/imx: use bus_flags for pixel clock polarity

2016-06-04 Thread Stefan Agner
On 2016-05-17 08:23, Philipp Zabel wrote: > This patch allows panels to set pixel clock and data enable pin polarity > other than the default of driving data at the falling pixel clock edge > and active high display enable. > > Signed-off-by: Philipp Zabel > --- > Changes since v1: > - Invert

drm/vc4: NULL pointer dereference after failed to allocate buffer

2016-06-04 Thread Eric Anholt
plication/pgp-signature Size: 818 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160604/10ec0f2c/attachment.sig>

[PATCH 1/4] drm/fb-helper: Support deferred setup

2016-06-04 Thread Lukas Wunner
On Fri, Jun 03, 2016 at 06:11:16PM +0200, Thierry Reding wrote: > From: Thierry Reding > > FB helper code falls back to a 1024x768 mode if no outputs are connected > or don't report back any modes upon initialization. This can be annoying > because outputs that are added to FB helper later on

[PATCH] drm/fsl-dcu: use flat regmap cache

2016-06-04 Thread Daniel Vetter
On Sat, Jun 4, 2016 at 3:51 AM, Stefan Agner wrote: > On 2016-06-03 16:00, Daniel Vetter wrote: >> On Fri, Jun 03, 2016 at 03:43:19PM -0700, Stefan Agner wrote: >>> Using flat regmap cache instead of RB-tree to avoid the following >>> lockdep warning on driver load: >>> WARNING: CPU: 0 PID: 1 at

[PATCH] reservation: sprinkle some WARN_ON()s

2016-06-04 Thread Rob Clark
On Sat, Jun 4, 2016 at 8:52 AM, Daniel Vetter wrote: > On Thu, Apr 07, 2016 at 08:52:56PM -0400, Rob Clark wrote: >> A bit overkill since, for example, the rcu_dereference_protected() in >> reservation_object_get_list() will WARN. But this is much less subtle >> for folks reading the code. >> >>

[Bug 95527] [radeonsi][CIK][VDPAU] Unable to use VDPAU locks up X

2016-06-04 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160604/7e27e4ed/attachment-0001.html>

[PATCH v2] drm: Add Grain Media GM12U320 kms driver

2016-06-04 Thread Daniel Vetter
On Fri, Jun 03, 2016 at 07:58:57PM +0200, Hans de Goede wrote: > Hi, > > Thanks for the review! > > On 03-06-16 19:27, Thierry Reding wrote: > > On Fri, Jun 03, 2016 at 03:06:32PM +0200, Hans de Goede wrote: > > > Grain-media GM12U320 based devices are mini video projectors using USB for > > >

[PATCH v2 5/6] drm/fsl-dcu: implement suspend/resume using atomic helpers

2016-06-04 Thread Daniel Vetter
On Fri, Jun 03, 2016 at 03:56:43PM -0700, Stefan Agner wrote: > Use the drm_atomic_helper_suspend() and drm_atomic_helper_resume() > helpers to implement subsystem-level suspend/resume. This replaces > the (non-functional) regmap cache based suspend resume functionality. > > Signed-off-by: Stefan

[PATCH v2 1/6] drm/fb_cma_helper: add suspend helper

2016-06-04 Thread Daniel Vetter
On Fri, Jun 03, 2016 at 03:56:39PM -0700, Stefan Agner wrote: > Implement a suspend/resume helper for CMA users which calls > drm_fb_helper_set_suspend. > > Suggested-by: Thierry Reding > Signed-off-by: Stefan Agner Acked-by: Daniel Vetter ... for merging through fsl-du tree. Just add a

[PATCH] drm/fsl-dcu: use flat regmap cache

2016-06-04 Thread Daniel Vetter
On Fri, Jun 03, 2016 at 03:43:19PM -0700, Stefan Agner wrote: > Using flat regmap cache instead of RB-tree to avoid the following > lockdep warning on driver load: > WARNING: CPU: 0 PID: 1 at kernel/locking/lockdep.c:2755 > lockdep_trace_alloc+0x15c/0x160() >

[PATCH] dma-buf/sync_file: fix build warning with context format type

2016-06-04 Thread Sumit Semwal
Hi Gustavo, On 03-Jun-2016 9:16 PM, "Gustavo Padovan" wrote: > > From: Gustavo Padovan > > Christian König changed fence context to a u64 type, so we need to > update all users accordingly. > > Signed-off-by: Gustavo Padovan Thanks for the patch, Acked-by: Sumit Semwal > --- > > Should we

[v1 PATCH 4/4] drm/rockchip: cdn-dp: add cdn DP support for rk3399

2016-06-04 Thread Chris Zhong
Add support for cdn DP controller which is embedded in the rk3399 SoCs. The DP is compliant with DisplayPort Specification, Version 1.3, This IP is compatible with the rockchip type-c PHY IP. There is a uCPU in DP controller, it need a firmware to work, please put the firmware file to

[v1 PATCH 3/4] Documentation: bindings: add dt documentation for cdn DP controller

2016-06-04 Thread Chris Zhong
This patch adds a binding that describes the cdn DP controller for rk3399. Signed-off-by: Chris Zhong --- Changes in v1: - add extcon node description - add #sound-dai-cells description .../bindings/display/rockchip/cdn-dp-rockchip.txt | 62 ++ 1 file changed, 62

[v1 PATCH 0/4] Rockchip Type-C and DispplayPort driver

2016-06-04 Thread Chris Zhong
Hi all This series patch is for rockchip Type-C phy and DisplayPort controller driver. The USB Type-C PHY is designed to support the USB3 and DP applications. The PHY basically has two main components: USB3 and DisplyPort. USB3 operates in SuperSpeed mode and the DP can operate at RBR, HBR and

[git pull] drm fixes for rc2

2016-06-04 Thread Dave Airlie
Hi Linus, A bunch of ARM drivers got into the fixes vibe this time around, so this contains a bunch of fixes for imx, atmel hlcdc, arm hdlcd (only so many combos of hlcd), mediatek and omap drm. Other than that there is one mgag200 fix and a few core drm regression fixes. Dave. The following

[PATCH] drm/radeon/pm: autoswitch power state when in balanced mode

2016-06-04 Thread Lucas Stach
The current default of always using the performance power state leads to increased power consumption of mobile devices, which have a dedicated battery power state. Switch between the performance and battery power state automatically, depending on the current AC power status, when the user asked