[Bug 95015] [drm:.r600_ring_test [radeon]] *ERROR* radeon: ring 0 test failed (scratch(0x8504)=0xCAFEDEAD)

2016-05-09 Thread bugzilla-dae...@freedesktop.org
our problem. -- 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/20160509/c3262f96/attachment.html>

[PATCH v5 02/12] mm: migrate: support non-lru movable page migration

2016-05-09 Thread Minchan Kim
We have allowed migration for only LRU pages until now and it was enough to make high-order pages. But recently, embedded system(e.g., webOS, android) uses lots of non-movable pages(e.g., zram, GPU memory) so we have seen several reports about troubles of small high-order allocation. For fixing the

[PATCH v5 00/13] Support non-lru page migration

2016-05-09 Thread Minchan Kim
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and easy fork fail. The problem was fragmentation caused by zram and GPU driver mainly. With memory pressure, their pages were spread out all of pageblock and it cannot be migrat

[PATCH 0/3] A few fixes for 4.7

2016-05-09 Thread Xinliang Liu
These fixes are found and fixed recently when hisilicon pull request for 4.7 is merged into drm-next. Thanks to Daniel Vetter and Juha Leppänen, who point out the things to be fixed. Xinliang Liu (3): drm/hisilicon: Use drm_connector_register_all drm/hisilicon: Make kirin_drm_unbind sufficien

[PATCH 1/3] drm/hisilicon: Use drm_connector_register_all

2016-05-09 Thread Xinliang Liu
Use drm_connector_register_all helper to register connectors. Thanks to Daniel Vetter, this patch is raised by him. Signed-off-by: Xinliang Liu Signed-off-by: Daniel Vetter --- drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | 31 + 1 file changed, 1 insertion(+), 30 del

[PATCH 2/3] drm/hisilicon: Make kirin_drm_unbind sufficient

2016-05-09 Thread Xinliang Liu
Remove deprecated drm_put_dev. Clean up everything needed in unbind. Thanks to Daniel Vetter, this issue is reported by him. Signed-off-by: Xinliang Liu Reported-by: Daniel Vetter --- drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) di

[PATCH 3/3] drm/hisilicon: Fix no DRM_INFO is printed issue

2016-05-09 Thread Xinliang Liu
This patch fixed the bellow no DRM_INFO is printed issue: if (!delay_count) DRM_INFO("phylock and phystopstateclklane is not ready.\n"); The above info will not printed, under certain circumstances: If ((BIT(0) | BIT(2)) & val) is never true, break will not happen and delay_count will be

[Bug 117151] amdgpu: Fails to initialize R7 260x (Bonaire)

2016-05-09 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=117151 --- Comment #2 from Parker Reed --- Created attachment 215581 --> https://bugzilla.kernel.org/attachment.cgi?id=215581&action=edit Another kernel log from a git build on 2016-5-8 -- You are receiving this mail because: You are watching the as

[Bug 91880] Radeonsi on Grenada cards (r9 390) exceptionally unstable and poorly performing

2016-05-09 Thread bugzilla-dae...@freedesktop.org
e: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/ab611e6e/attachment-0001.html>

[Bug 91880] Radeonsi on Grenada cards (r9 390) exceptionally unstable and poorly performing

2016-05-09 Thread bugzilla-dae...@freedesktop.org
t part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/77c97df9/attachment.html>

[Bug 117151] amdgpu: Fails to initialize R7 260x (Bonaire)

2016-05-09 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=117151 --- Comment #3 from Parker Reed --- Updated linux-firmware-git which supposedly had some bonaire file changes but am still getting the errors. -- You are receiving this mail because: You are watching the assignee of the bug.

[Bug 117151] amdgpu: Fails to initialize R7 260x (Bonaire)

2016-05-09 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=117151 --- Comment #4 from Parker Reed --- Created attachment 215591 --> https://bugzilla.kernel.org/attachment.cgi?id=215591&action=edit Updated linux-firmware, same issues -- You are receiving this mail because: You are watching the assignee of th

[Bug 105711] amdgpu: no monitor signal (modprobe amdgpu fails)

2016-05-09 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=105711 Parker Reed changed: What|Removed |Added CC||parker.l.reed at gmail.com --- Comment #6

[Bug 73785] [HyperZ] Team Fortress 2 causes random GPU stalls on radeonsi

2016-05-09 Thread bugzilla-dae...@freedesktop.org
tps://lists.freedesktop.org/archives/dri-devel/attachments/20160509/44796e2f/attachment.html>

[Bug 73785] [HyperZ] Team Fortress 2 causes random GPU stalls on radeonsi

2016-05-09 Thread bugzilla-dae...@freedesktop.org
tps://lists.freedesktop.org/archives/dri-devel/attachments/20160509/f40efb95/attachment.html>

[PATCH v2] drm/i915: Discard previous atomic state on resume if connectors change

2016-05-09 Thread Daniel Vetter
On Fri, May 06, 2016 at 05:39:56PM -0400, Lyude wrote: > If an MST device is disconnected while the machine is suspended, the > number of connectors will change as well after we call > intel_dp_mst_resume(). This means that any previous atomic state we had > before suspending is no longer valid, si

[PATCH 1/3] drm/hisilicon: Use drm_connector_register_all

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 10:32:06AM +0800, Xinliang Liu wrote: > Use drm_connector_register_all helper to register connectors. > Thanks to Daniel Vetter, this patch is raised by him. > > Signed-off-by: Xinliang Liu > Signed-off-by: Daniel Vetter Seems like exactly my patch, except you've taken o

[PATCH 2/3] drm/hisilicon: Make kirin_drm_unbind sufficient

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 10:32:07AM +0800, Xinliang Liu wrote: > Remove deprecated drm_put_dev. > Clean up everything needed in unbind. > Thanks to Daniel Vetter, this issue is reported by him. > > Signed-off-by: Xinliang Liu > Reported-by: Daniel Vetter Acked-by: Daniel Vetter > --- > drivers

[Bug 117861] New: DRM dead lock code path

2016-05-09 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=117861 Bug ID: 117861 Summary: DRM dead lock code path Product: Drivers Version: 2.5 Kernel Version: master 4.4/4.5/4.6 Hardware: All OS: Linux Tree: Mainline

[RFC PATCH] drm/exynos: fix pending update handling

2016-05-09 Thread Andrzej Hajda
On 05/07/2016 12:33 PM, Tobias Jakobi wrote: > Hello Andrzej, > > I've applied this to my 4.5.3 based tree, but I'm still seeing the page > fault. Thats pity, I hoped to solve two issues with one patch :) > In fact the calls leading to the fault haven't changed at all. That is not surprising.

[Bug 71789] [r300g] Visuals not found in (default) depth = 24

2016-05-09 Thread bugzilla-dae...@freedesktop.org
: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/befb9cde/attachment.html>

[PATCH 01/14] drm/amdgpu: fix wrong release of vmid owner

2016-05-09 Thread Daniel Vetter
On Wed, May 04, 2016 at 02:26:42PM -0400, Alex Deucher wrote: > From: Chunming Zhou > > The release of the vmid owner was not handled > correctly. We need to take the lock and walk > the lru list. > > Signed-off-by: Chunming Zhou > Reviewed-by: Alex Deucher > Reviewed-by: Monk Liu > Signed-o

i915 with valleyview

2016-05-09 Thread Jani Nikula
On Fri, 06 May 2016, Sudip Mukherjee wrote: > On Fri, May 06, 2016 at 12:21:04PM +0100, Sudip Mukherjee wrote: >> Hi Daniel, >> I am trying to use i915 in one of our board which has Intel ATOM E3840. >> I know Intel has released emgd driver for this cpu to use i915 but emgd >> is not supported on

[PATCH v5 1/5] drm: add generic zpos property

2016-05-09 Thread Benjamin Gaignard
Hello, I little up in this topic. If generic z-order patches can't land into drm core, I wille have to resend the patch to enable it within STI driver: https://lists.freedesktop.org/archives/dri-devel/2016-January/098140.html Regards, Benjamin 2016-04-01 14:48 GMT+02:00 Benjamin Gaignard : > Thi

[GIT PULL v3] MT8173 DRM support

2016-05-09 Thread Philipp Zabel
Hi Dave, third try and last minute pull request for v4.7. I have addressed Daniel's comment about drm_dev_register()/drm_connector_register_all(), but I've missed his request to use gem_free_object_unlocked() until just now. If that can be fixed up afterwards, please consider merging this tag with

[PATCH v5 1/5] drm: add generic zpos property

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 10:42:45AM +0200, Benjamin Gaignard wrote: > Hello, > > I little up in this topic. > If generic z-order patches can't land into drm core, > I wille have to resend the patch to enable it within STI driver: > https://lists.freedesktop.org/archives/dri-devel/2016-January/09814

[GIT PULL v3] MT8173 DRM support

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 10:54:51AM +0200, Philipp Zabel wrote: > Hi Dave, > > third try and last minute pull request for v4.7. I have addressed > Daniel's comment about drm_dev_register()/drm_connector_register_all(), > but I've missed his request to use gem_free_object_unlocked() until just > now

[Bug 95131] Scaling mode have no effect

2016-05-09 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/20160509/b2a652b2/attachment.html>

[GIT PULL] omapdrm changes for 4.7

2016-05-09 Thread Tomi Valkeinen
//lists.freedesktop.org/archives/dri-devel/attachments/20160509/1e0fe785/attachment.sig>

[Bug 87682] Horizontal lines in radeon driver on kernel 3.15 and upwards

2016-05-09 Thread bugzilla-dae...@freedesktop.org
next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/0fdba2e9/attachment.html>

[PATCH 1/5] drm/displayid: Enhance version reporting

2016-05-09 Thread Michel Dänzer
On 04.05.2016 18:10, Ville Syrjälä wrote: > On Wed, May 04, 2016 at 06:36:48AM +1000, Dave Airlie wrote: >> From: Tomas Bzatek >> >> Cosmetic change, let's report more precise revisions and IDs. >> >> https://bugs.freedesktop.org/show_bug.cgi?id=95207 >> >> Signed-off-by: Dave Airlie >> --- >>

[PATCH] drm: Remove unused drm_device from drm_gem_object_lookup()

2016-05-09 Thread Chris Wilson
drm_gem_object_lookup() has never required the drm_device for its file local translation of the user handle to the GEM object. Let's remove the unused parameter and save some space. Signed-off-by: Chris Wilson Cc: dri-devel at lists.freedesktop.org Cc: Dave Airlie Cc: Daniel Vetter --- drivers

[PATCH v5 1/5] drm: add generic zpos property

2016-05-09 Thread Tobias Jakobi
Hello, just voicing my interest in having this feature in DRM core. - Tobias Daniel Vetter wrote: > On Mon, May 09, 2016 at 10:42:45AM +0200, Benjamin Gaignard wrote: >> Hello, >> >> I little up in this topic. >> If generic z-order patches can't land into drm core, >> I wille have to resend the

[PATCH] Revert "drm/nouveau/device/pci: set as non-CPU-coherent on ARM64"

2016-05-09 Thread Alexandre Courbot
On 04/29/2016 08:18 PM, Robin Murphy wrote: > This reverts commit 1733a2ad36741b1812cf8b3f3037c28d0af53f50. > > There is apparently something amiss with the way the TTM code handles > DMA buffers, which the above commit was attempting to work around for > arm64 systems with non-coherent PCI. Unfort

[Bug 71789] [r300g] Visuals not found in (default) depth = 24

2016-05-09 Thread bugzilla-dae...@freedesktop.org
tps://lists.freedesktop.org/archives/dri-devel/attachments/20160509/5be5ae53/attachment.html>

i915 with valleyview

2016-05-09 Thread Sudip Mukherjee
On Mon, May 09, 2016 at 11:19:16AM +0300, Jani Nikula wrote: > On Fri, 06 May 2016, Sudip Mukherjee wrote: > > On Fri, May 06, 2016 at 12:21:04PM +0100, Sudip Mukherjee wrote: > >> Hi Daniel, > >> I am trying to use i915 in one of our board which has Intel ATOM E3840. > >> I know Intel has release

New LCD connector type?

2016-05-09 Thread Laurent Pinchart
Hi Ville, On Saturday 07 May 2016 21:11:23 Ville Syrjälä wrote: > On Fri, May 06, 2016 at 10:01:29PM +0300, Sergei Shtylyov wrote: > > (Resending as I couldn't find this message from January in the list > > archives.) > > > > Hello. > > > > We have a board which has Newhaven Display LCD [1] co

[PATCH 1/3] drm: Drop crtc argument from __drm_atomic_helper_crtc_destroy_state

2016-05-09 Thread Laurent Pinchart
Hi Daniel, Thank you for the patch. On Friday 06 May 2016 10:32:28 Daniel Vetter wrote: > It's unused, and really this helper should only look at the state > structure and nothing else. > > v2: Rebase on top of rockchip changes > > Cc: Maarten Lankhorst > Cc: Thierry Reding > Cc: Eric Anholt

[PATCH 2/3] drm: Drop crtc argument from __drm_atomic_helper_connector_destroy_state

2016-05-09 Thread Laurent Pinchart
Hi Daniel, Thank you for the patch. On Friday 06 May 2016 10:32:29 Daniel Vetter wrote: > It's unused, and really this helper should only look at the state > structure and nothing else. > > Cc: Maarten Lankhorst > Cc: Thierry Reding > Cc: Eric Anholt > Cc: Laurent Pinchart > Cc: Inki Dae >

[PATCH 3/3] drm: Drop crtc argument from __drm_atomic_helper_connector_destroy_state

2016-05-09 Thread Laurent Pinchart
Hi Daniel, Thank you for the patch. s/crtc/connector/ in the subject (I've just realized that the same comment applies to patch 2/3, with s/connector/plane/ as well). Apart from that, Acked-by: Laurent Pinchart On Friday 06 May 2016 10:32:30 Daniel Vetter wrote: > It's unused, and really thi

[PATCH 2/2] Reapply "drm/atomic: Call ww_acquire_done after check phase is complete"

2016-05-09 Thread Maarten Lankhorst
This reapplies commit 992cbf19b32900efa17850b9fa0031fd623edd4d. With atomic drm_framebuffer_remove and the fbdev emulation layer atomic this should be safe to apply again. Signed-off-by: Maarten Lankhorst Cc: Rob Clark Cc: Daniel Vetter --- drivers/gpu/drm/drm_atomic.c | 3 +++ 1 file changed,

[PATCH 1/2] drm/atomic: Add a way to call remove_fb atomically, v2.

2016-05-09 Thread Maarten Lankhorst
Use this in drm_framebuffer_remove, this is to remove the fb in an atomic way. i915 doesn't export DRIVER_ATOMIC yet by default but is atomic, so add a function pointer to allow drivers to use the atomic framebuffer remove. Changes since v1: - Move the atomic framebuffer removal function from hel

[PATCH 2/2] Reapply "drm/atomic: Call ww_acquire_done after check phase is complete"

2016-05-09 Thread Maarten Lankhorst
This reapplies commit 992cbf19b32900efa17850b9fa0031fd623edd4d. With atomic drm_framebuffer_remove and the fbdev emulation layer atomic this should be safe to apply again. Signed-off-by: Maarten Lankhorst Cc: Rob Clark Cc: Daniel Vetter --- drivers/gpu/drm/drm_atomic.c | 3 +++ 1 file changed,

[PATCH 1/2] drm/atomic: Add a way to call remove_fb atomically, v2.

2016-05-09 Thread Maarten Lankhorst
Use this in drm_framebuffer_remove, this is to remove the fb in an atomic way. i915 doesn't export DRIVER_ATOMIC yet by default but is atomic, so add a function pointer to allow drivers to use the atomic framebuffer remove. Changes since v1: - Move the atomic framebuffer removal function from hel

New LCD connector type?

2016-05-09 Thread Ville Syrjälä
On Mon, May 09, 2016 at 02:43:02PM +0300, Laurent Pinchart wrote: > Hi Ville, > > On Saturday 07 May 2016 21:11:23 Ville Syrjälä wrote: > > On Fri, May 06, 2016 at 10:01:29PM +0300, Sergei Shtylyov wrote: > > > (Resending as I couldn't find this message from January in the list > > > archives.)

[PATCH v2 0/4] drm: DP++ adaptor support (v2)

2016-05-09 Thread Ville Syrjälä
On Mon, May 02, 2016 at 10:08:21PM +0300, ville.syrjala at linux.intel.com wrote: > From: Ville Syrjälä > > Here's a respin of my DP++ adaptor support series [1]. Pardon for taking > forever with this. Presumably we want to get this into stable to fix the > regression from HDMI 12bpc support.

[Bug 47363] Connecting DVI-0 Display-Port-0 and HDMI-0 only 2 of those can be enabled once

2016-05-09 Thread bugzilla-dae...@freedesktop.org
An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/c44e19bc/attachment-0001.html>

[Bug 43698] On PPC, OpenGL programs use incorrect texture colors.

2016-05-09 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/a487044a/attachment.html>

[PATCH 3/6] drm/exynos/hdmi: expose HDMI-PHY clock as pipeline clock

2016-05-09 Thread Inki Dae
Hi Andrzej, 2016-05-04 18:52 GMT+09:00 Andrzej Hajda : > Hi Inki, > > It looks like this patch felt through the cracks. > It is a part of "drm/exynos: add pipeline clock support" patchset. Ah, sorry. > Other patches from the patchset were taken already. > Could you queue it to next pull reques

drm/exynos: fimd: pagefault when restarting X

2016-05-09 Thread Inki Dae
Hi Tobias and Andrzej, Thanks for reporting. 2016-05-06 17:47 GMT+09:00 Andrzej Hajda : > +CC: Inki > > On 05/06/2016 09:48 AM, Tobias Jakobi wrote: >> Hello Andrzej, >> >> >> Andrzej Hajda wrote: >>> Hi Tobias, >>> >>> On 05/05/2016 07:27 PM, Tobias Jakobi wrote: Hello, here's ano

[PATCH 1/3] drm/hisilicon: Use drm_connector_register_all

2016-05-09 Thread Xinliang Liu
On 9 May 2016 at 14:43, Daniel Vetter wrote: > On Mon, May 09, 2016 at 10:32:06AM +0800, Xinliang Liu wrote: >> Use drm_connector_register_all helper to register connectors. >> Thanks to Daniel Vetter, this patch is raised by him. >> >> Signed-off-by: Xinliang Liu >> Signed-off-by: Daniel Vetter

[PATCH v2] drm/i915: Discard previous atomic state on resume if connectors change

2016-05-09 Thread Lyude Paul
Yep, Dave's patches fix the issue on their own so this is only going to be needed for 4.6. On Mon, 2016-05-09 at 08:42 +0200, Daniel Vetter wrote: > On Fri, May 06, 2016 at 05:39:56PM -0400, Lyude wrote: > > > > If an MST device is disconnected while the machine is suspended, the > > number of co

[Bug 85241] audio over HDMI on AMD E-350 with radeon driver

2016-05-09 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=85241 mirh changed: What|Removed |Added CC||mirh at protonmail.ch --- Comment #4 from mirh --

[PATCH RFC 00/11] drm/tilcdc: Atomic modeset support

2016-05-09 Thread Tomi Valkeinen
ital signature URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/b5a21334/attachment.sig>

[PATCH 04/23] drm: omapdrm: fb: Simplify objects lookup when creating framebuffer

2016-05-09 Thread Tomi Valkeinen
819 bytes Desc: OpenPGP digital signature URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/0d20b394/attachment.sig>

[PATCH 06/23] drm: omapdrm: fb: Turn framebuffer creation error messages into debug

2016-05-09 Thread Tomi Valkeinen
.freedesktop.org/archives/dri-devel/attachments/20160509/22afc1c7/attachment-0001.sig>

[PATCH 1/3] drm: Drop crtc argument from __drm_atomic_helper_crtc_destroy_state

2016-05-09 Thread Daniel Vetter
It's unused, and really this helper should only look at the state structure and nothing else. v2: Rebase on top of rockchip changes v3: Drop unrelated hunk, spotted by Laurent. Cc: Maarten Lankhorst Cc: Thierry Reding Cc: Eric Anholt Cc: Mark Yao Acked-by: Thierry Reding Acked-by: Maarten L

[PATCH 2/3] drm: Drop plane argument from __drm_atomic_helper_plane_destroy_state

2016-05-09 Thread Daniel Vetter
It's unused, and really this helper should only look at the state structure and nothing else. v2: Fix commit message (Laurent). Cc: Maarten Lankhorst Cc: Thierry Reding Cc: Eric Anholt Cc: Laurent Pinchart Cc: Inki Dae Cc: Tomi Valkeinen Cc: Mark Yao Acked-by: Thierry Reding Acked-by: Maa

[PATCH 3/3] drm: Drop connector argument from __drm_atomic_helper_connector_destroy_state

2016-05-09 Thread Daniel Vetter
It's unused, and really this helper should only look at the state structure and nothing else. Note that this conflicts with a patch from Dave that adds refcounting to drm_connectors. It's not yet clear whether the check Dave adds for connector != NULL is really needed or the right check. v2: Fix c

[PATCH 1/3] drm: Drop crtc argument from __drm_atomic_helper_crtc_destroy_state

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 02:47:58PM +0300, Laurent Pinchart wrote: > Hi Daniel, > > Thank you for the patch. > > On Friday 06 May 2016 10:32:28 Daniel Vetter wrote: > > It's unused, and really this helper should only look at the state > > structure and nothing else. > > > > v2: Rebase on top of r

[PATCH RFC 00/11] drm/tilcdc: Atomic modeset support

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 05:10:00PM +0300, Tomi Valkeinen wrote: > Hi Jyri, > > On 11/04/16 19:46, Jyri Sarha wrote: > > The LCDC in its simplicity does not fit too well into DRM atomic > > modeset abstractions. I wonder if I am doing the right thing in > > implementing the dummy primary plane and

[PATCH 07/23] drm: omapdrm: Handle FIFO underflow IRQs internally

2016-05-09 Thread Tomi Valkeinen
Desc: OpenPGP digital signature URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/4c11625f/attachment.sig>

[PATCH 3/4] drm: Add helper for simple display pipeline

2016-05-09 Thread Daniel Vetter
On Thu, May 05, 2016 at 03:24:33PM +0200, Noralf Trønnes wrote: > Provides helper functions for drivers that have a simple display > pipeline. Plane, crtc and encoder are collapsed into one entity. > > Signed-off-by: Noralf Trønnes > +static int drm_simple_kms_plane_atomic_check(struct drm_pla

[PATCH v2] drm/i915: Discard previous atomic state on resume if connectors change

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 10:07:08AM -0400, Lyude Paul wrote: > Yep, Dave's patches fix the issue on their own so this is only going to be > needed for 4.6. Ok, so not the first one that only needs to be applied to stable kernels. For that to work you need to explain that this is the most minimal fi

[PATCH v4 1/2] video: hdmi: add helper functions for N and CTS

2016-05-09 Thread Arnaud Pouliquen
Hello, As there is no more feedback on this patch, should i suppose that I need to abandon it? I can integrate it in my driver... but as, N and CTS calculation is not platform dependent, this would make sense to add it in a generic part. (Example of another platform that could use it: https://pat

[PATCH v7 0/3] Secure Memory Allocation Framework

2016-05-09 Thread Benjamin Gaignard
version 7 changes: - rebased on kernel 4.6-rc7 - simplify secure module API - add vma ops to be able to detect mmap/munmap calls - add ioctl to get number and allocator names - update libsmaf with adding tests https://git.linaro.org/people/benjamin.gaignard/libsmaf.git - add debug log in f

[PATCH v7 1/3] create SMAF module

2016-05-09 Thread Benjamin Gaignard
Secure Memory Allocation Framework goal is to be able to allocate memory that can be securing. There is so much ways to allocate and securing memory that SMAF doesn't do it by itself but need help of additional modules. To be sure to use the correct allocation method SMAF implement deferred allocat

[PATCH v7 2/3] SMAF: add CMA allocator

2016-05-09 Thread Benjamin Gaignard
SMAF CMA allocator implement helpers functions to allow SMAF to allocate contiguous memory. match() each if at least one of the attached devices have coherent_dma_mask set to DMA_BIT_MASK(32). For allocation it use dma_alloc_attrs() with DMA_ATTR_WRITE_COMBINE and not dma_alloc_writecombine to be

[PATCH v7 3/3] SMAF: add fake secure module

2016-05-09 Thread Benjamin Gaignard
This module is allow testing secure calls of SMAF. Signed-off-by: Benjamin Gaignard --- drivers/smaf/Kconfig | 6 +++ drivers/smaf/Makefile | 1 + drivers/smaf/smaf-fakesecure.c | 85 ++ 3 files changed, 92 insertions(+) create mode 1

[PATCH 05/23] drm: omapdrm: fb: Simplify mode command checks when creating framebuffer

2016-05-09 Thread Tomi Valkeinen
has the same pixel size for both planes, but an upcoming DSS might have a format that has a separate 8 byte A plane. I don't know if that ever realizes or if we want to support the mode, but after thinking about this, it makes more sense that the pixel width has to be the same between planes, not the byte width. Tomi -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/814e1b35/attachment.sig>

[PATCH v2] drm/i915: Discard previous atomic state on resume if connectors change

2016-05-09 Thread Lyude Paul
no problem, I'll let you know when they're ready On Mon, 2016-05-09 at 16:53 +0200, Daniel Vetter wrote: > On Mon, May 09, 2016 at 10:07:08AM -0400, Lyude Paul wrote: > > > > Yep, Dave's patches fix the issue on their own so this is only going to be > > needed for 4.6. > Ok, so not the first one

[PATCH] drm: use seqlocks for vblank time/count

2016-05-09 Thread Ville Syrjälä
On Mon, May 09, 2016 at 05:08:43PM +0100, Matthew Auld wrote: > This patch aims to replace the roll-your-own seqlock implementation with > full-blown seqlock'. We also remove the timestamp ring-buffer in favour > of single timestamp/count pair protected by a seqlock. In turn this > means we can now

[Bug 91202] Output to DVI-I (or DVI-D) is blank on Tonga (R9 285 and 380X) with multiple monitors

2016-05-09 Thread bugzilla-dae...@freedesktop.org
tps://lists.freedesktop.org/archives/dri-devel/attachments/20160509/a2845ea5/attachment.html>

[Bug 95198] Shadow of Mordor beta has missing geometry with gl 4.3

2016-05-09 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20160509/6d4b77cf/attachment.html>

New LCD connector type?

2016-05-09 Thread Eric Anholt
h=drm-next&id=0b27c02a7f1c697694f2ad6d6517e7dbf9ecfa39 for the commit -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 818 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/b236c59f/attachment.sig>

[PATCH] drm: use seqlocks for vblank time/count

2016-05-09 Thread Daniel Vetter
On Mon, May 09, 2016 at 08:16:07PM +0300, Ville Syrjälä wrote: > On Mon, May 09, 2016 at 05:08:43PM +0100, Matthew Auld wrote: > > This patch aims to replace the roll-your-own seqlock implementation with > > full-blown seqlock'. We also remove the timestamp ring-buffer in favour > > of single tim

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
chment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/b0448cac/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20160509/4b95f39a/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/c4943498/attachment.html>

[PATCH 3/4] drm: Add helper for simple display pipeline

2016-05-09 Thread Noralf Trønnes
Den 09.05.2016 16:46, skrev Daniel Vetter: > On Thu, May 05, 2016 at 03:24:33PM +0200, Noralf Trønnes wrote: >> Provides helper functions for drivers that have a simple display >> pipeline. Plane, crtc and encoder are collapsed into one entity. >> >> Signed-off-by: Noralf Trønnes >> +static int

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
crubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/dbc3f9e5/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/cff2a2b6/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/7136935a/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/5ec44a51/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/388db63f/attachment.html>

[Bug 95328] System hangs for ~60 seconds on switching monitor modes with amdgpu since Linux 4.5

2016-05-09 Thread bugzilla-dae...@freedesktop.org
: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/6e9b5e59/attachment.html>

[PATCH 2/4] drm: Make drm_encoder_helper_funcs optional

2016-05-09 Thread Noralf Trønnes
Den 05.05.2016 18:23, skrev Daniel Vetter: > On Thu, May 05, 2016 at 03:24:32PM +0200, Noralf Trønnes wrote: >> Make drm_encoder_helper_funcs and it's functions optional to avoid >> having dummy functions. >> >> Signed-off-by: Noralf Trønnes > Please also update the kerneldoc and mention there

[PATCH 1/3] drm: Drop crtc argument from __drm_atomic_helper_crtc_destroy_state

2016-05-09 Thread Eric Anholt
Acked-by: Eric Anholt -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 818 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/4ea06048/attachment.sig>

[Bug 95329] Metro 2033 Redux benchmark fails to start

2016-05-09 Thread bugzilla-dae...@freedesktop.org
e that the issue may be linked to very slow shader compilation, but this is inconclusive. AMD drivers (fglrx) start the benchmark much faster. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... U

[Bug 95329] Metro 2033 Redux benchmark fails to start

2016-05-09 Thread bugzilla-dae...@freedesktop.org
- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/35485b52/attachment.html>

[PATCH] drm/amdgpu/gfx7: fix pipeline sync

2016-05-09 Thread Alex Deucher
From: Chunming Zhou Need to wait on the fence as well. Signed-off-by: Chunming Zhou Reviewed-by: Monk Liu Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/amd/

[PATCH] drm/amdgpu: move preamble IB handling into common code

2016-05-09 Thread Alex Deucher
From: Christian König This fixes the handling which was completely broken when you ad more than one preamble IB. Signed-off-by: Christian König Reviewed-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 8 +++- drivers/gpu/drm/amd/amdgpu/gfx_v7_0

[PATCH] drm/amdgpu: move context switch handling into common code v2

2016-05-09 Thread Alex Deucher
From: Christian König It was a source of bugs to repeat that in each IP version. v2: rename parameter Signed-off-by: Christian König Reviewed-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 4 ++-- drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 16 ++

[PATCH] drm/amdgpu: move the context from the IBs into the job

2016-05-09 Thread Alex Deucher
From: Christian König We only have one context for all IBs. Signed-off-by: Christian König Reviewed-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 2 +- drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 10 +- drivers/gpu/drm/amd/amdgpu/amdgpu_i

[PATCH] drm/amdgpu: move VM fields into job

2016-05-09 Thread Alex Deucher
From: Christian König They are the same for all IBs. Signed-off-by: Christian König Reviewed-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 15 +++--- drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 36 +++-- drivers

[PATCH] drm/amdgpu: fix and cleanup user fence handling v2

2016-05-09 Thread Alex Deucher
From: Christian König We leaked the BO in the error pass, additional to that we only have one user fence for all IBs in a job. v2: remove white space changes Signed-off-by: Christian König Reviewed-by: Alex Deucher Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu.h |

drm/ttm: Refuse to fault (prime-) imported pages

2016-05-09 Thread Dan Carpenter
Hello Thomas Hellstrom, The patch 667a50db0477: "drm/ttm: Refuse to fault (prime-) imported pages" from Jan 3, 2014, leads to the following static checker warning: drivers/gpu/drm/ttm/ttm_bo_vm.c:205 ttm_bo_vm_fault() error: we previously assumed 'ttm' could be null (see line 200)

Small vc4 kms fixes and some questions.

2016-05-09 Thread Eric Anholt
27;s been changed in the firmware in the last couple of weeks, though, so you might not need the weird scripting any more. -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 818 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160509/cab75b68/attachment.sig>

drm/amd/powerplay: enable dpm for baffin.

2016-05-09 Thread Dan Carpenter
Hello Rex Zhu, This is a semi-automatic email about new static checker warnings. The patch a23eefa2f461: "drm/amd/powerplay: enable dpm for baffin." from Nov 19, 2015, leads to the following Smatch complaint: drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/polaris10_hwmgr.c:206 phm_apply_dal_min

New LCD connector type?

2016-05-09 Thread Laurent Pinchart
Hi Ville, On Monday 09 May 2016 15:07:21 Ville Syrjälä wrote: > On Mon, May 09, 2016 at 02:43:02PM +0300, Laurent Pinchart wrote: > > On Saturday 07 May 2016 21:11:23 Ville Syrjälä wrote: > >> On Fri, May 06, 2016 at 10:01:29PM +0300, Sergei Shtylyov wrote: > >>> (Resending as I couldn't find

  1   2   >