Re: [PATCH 4/4] drm: adv7511/33: add HDMI CEC support

2017-08-12 Thread Hans Verkuil
On 10/08/17 10:49, Archit Taneja wrote: > > > On 07/30/2017 06:37 PM, Hans Verkuil wrote: >> From: Hans Verkuil >> >> Add support for HDMI CEC to the drm adv7511/adv7533 drivers. >> >> The CEC registers that we need to use are identical for both drivers, >> but they

Re: [PATCH 4/4] drm: adv7511/33: add HDMI CEC support

2017-08-12 Thread Hans Verkuil
On 12/08/17 11:53, Hans Verkuil wrote: > On 10/08/17 10:49, Archit Taneja wrote: >> >> >> On 07/30/2017 06:37 PM, Hans Verkuil wrote: >>> From: Hans Verkuil >>> >>> Add support for HDMI CEC to the drm adv7511/adv7533 drivers. >>> >>> The CEC registers that we need to use

[Bug 101475] Max Core Profile for OpenGL showing 0.0

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=101475 --- Comment #9 from Jan Bruns --- Same here: upgrading from mesa 13.0.6 to 17.0.7 made glxinfo report core profile of 0.0 (from 3.3). But 13.0.6 seems to not support geometry shaders (core GL since 3.2) with AMD-350 APU, so the

[Bug 102179] clEnqueueReadBuffer VM_PAGE FAULT

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102179 --- Comment #2 from Janpieter Sollie --- Created attachment 133452 --> https://bugs.freedesktop.org/attachment.cgi?id=133452=edit dmesg output reporting page fault -- You are receiving this mail because: You are

[PATCHv2 1/3] drm: add support for DisplayPort CEC-Tunneling-over-AUX

2017-08-12 Thread Hans Verkuil
From: Hans Verkuil This adds support for the DisplayPort CEC-Tunneling-over-AUX feature that is part of the DisplayPort 1.3 standard. Unfortunately, not all DisplayPort/USB-C to HDMI adapters with a chip that has this capability actually hook up the CEC pin, so even

[PATCHv2 0/3] drm/i915: add DisplayPort CEC-Tunneling-over-AUX support

2017-08-12 Thread Hans Verkuil
From: Hans Verkuil This patch series adds support for the DisplayPort CEC-Tunneling-over-AUX feature. This patch series is based on 4.13-rc4 which has all the needed cec and drm 4.13 patches merged. This patch series has been tested with my NUC7i5BNK and a Samsung USB-C

[Bug 102179] clEnqueueReadBuffer VM_PAGE FAULT

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102179 Janpieter Sollie changed: What|Removed |Added See Also|

Re: [PATCH] drm/tegra: Prevent BOs from being freed during job submission

2017-08-12 Thread Dmitry Osipenko
On 11.08.2017 20:59, Thierry Reding wrote: > From: Dmitry Osipenko > > Since DRM IOCTL's are lockless, there is a chance that BOs could be > released while a job submission is in progress. To avoid that, keep the > GEM reference until the job has been pinned, part of which will

[PATCH v2 21/29] drm/rockchip: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 06/28] drm/cirrus: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 02/28] drm: mali-dp: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 09/28] drm/gma500: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 04/28] drm/ast: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 05/28] drm/bochs: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH] drm/gma500: fix potential NULL pointer dereference dereference

2017-08-12 Thread Gustavo A. R. Silva
NULL check at line 528: if (!sender || !data_out || !len_out) {, implies that pointer _sender_ might be NULL. Move pointer _sender_ dereference after NULL check in order to avoid a potential NULL pointer dereference. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A.

[PATCH v2 13/29] drm/imx: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[Bug 102179] clEnqueueReadBuffer VM_PAGE FAULT

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102179 Janpieter Sollie changed: What|Removed |Added Severity|normal |major

[Bug 100964] RX-480 [drm:gfx_v8_0_ring_test_ring [amdgpu]] *ERROR* amdgpu: ring 0 test failed (scratch(0xC040)=0xCAFEDEAD)

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100964 --- Comment #6 from Maxim Cournoyer --- Hi! I have the exact same issue ``[drm:gfx_v8_0_ring_test_ring [amdgpu]] *ERROR* amdgpu: ring 0 test failed (scratch(0xC040)=0xCAFEDEAD)`` with a R9 285 GPU. I've had this

[PATCH v2 24/29] drm/udl: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH 1/2] drm/dp: Bit definition for D3 power state that keeps AUX fully powered

2017-08-12 Thread Dhinakaran Pandiyan
DPCD 600h - SET_POWER & SET_DP_PWR_VOLTAGE defines power state 101 = Set Main-Link for local Sink device and all downstream Sink devices to D3 (power-down mode), keep AUX block fully powered, ready to reply within a Response Timeout period of 300us. This state is useful in a MST dock + MST

[PATCH v2 09/29] drm/exynos: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 16/29] drm/msm: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 20/29] drm/radeon: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 07/29] drm/cirrus: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 10/29] drm/gma500: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 19/28] drm/radeon: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

Re: [PATCH] drm: hdlcd: allow HDLCD to be used without interrupt

2017-08-12 Thread Vladimir Murzin
On 26/07/17 11:27, Russell King - ARM Linux wrote: > I suspect the above failure is down to either (a) not having enough > memory available to allocate a 1920x1080 frame buffer, or (b) not > (yet) being able to program the hdlcd pixel clock for this platform, > which is currently hard-coded in DT

[PATCH v3 13/28] drm/mediatek: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 22/28] drm/tilcdc: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 16/28] drm/nouveau: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 03/28] drm/armada: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

Re: dix/dispatch.c:4049: AttachOffloadGPU: Assertion `new->current_master == pScreen' failed.

2017-08-12 Thread Paul Menzel
Dear Linux folks, On 08/10/17 15:14, Paul Menzel wrote: Getting Dell Precision 3620 systems with an Intel Skylake system i7-6700K, and an external AMD graphics card, the X.Org server does not start and hits an assert. The software stack is Linux 4.9.38 and 4.12.5, X.Org server 1.19.3 and

[PATCH v2 08/29] drm/etnaviv: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 25/29] drm/vc4: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 08/28] drm/exynos: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 12/29] drm/i915: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 21/28] drm/tegra: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 23/29] drm/tilcdc: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 01/29] drm/amdgpu: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 25/28] drm/vgem: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 17/29] drm/nouveau: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 28/28] drm: vboxvideo: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

Re: [PATCHv6 3/3] ARM:drm ivip Intel FPGA Video and Image Processing Suite

2017-08-12 Thread Randy Dunlap
On 08/10/2017 11:49 PM, Hean-Loong, Ong wrote: > diff --git a/drivers/gpu/drm/ivip/Kconfig b/drivers/gpu/drm/ivip/Kconfig > new file mode 100644 > index 000..398c9ab > --- /dev/null > +++ b/drivers/gpu/drm/ivip/Kconfig > @@ -0,0 +1,14 @@ > +config DRM_IVIP > +tristate "Intel FGPA Video

[PATCH v3 17/28] drm/omapdrm: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[Bug 102184] Logs flooded with [drm:drm_mode_addfb2 [drm]] messages

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=102184 Bug ID: 102184 Summary: Logs flooded with [drm:drm_mode_addfb2 [drm]] messages Product: DRI Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status:

Re: [PATCH v3 07/28] drm/etnaviv: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
On Fri, Aug 11, 2017 at 04:43:07PM +0200, Lucas Stach wrote: > Am Freitag, den 11.08.2017, 15:32 +0300 schrieb Cihangir Akturk: > > Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() > > and drm_*_unreference() helpers. > > > > drm_*_reference() and drm_*_unreference() functions

[PATCH v3 11/28] drm/i915: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 26/28] drm/virtio: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

dix/dispatch.c:4049: AttachOffloadGPU: Assertion `new->current_master == pScreen' failed.

2017-08-12 Thread Paul Menzel
Dear Linux folks, Getting Dell Precision 3620 systems with an Intel Skylake system i7-6700K, and an external AMD graphics card, the X.Org server does not start and hits an assert. The software stack is Linux 4.9.38 and 4.12.5, X.Org server 1.19.3 and xf86-video-amdgpu 1.3.0. ``` $ lspci

[PATCH v3 24/28] drm/vc4: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 11/29] drm/hisilicon: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

Re: [PATCH v3 00/28] DRM API Conversions

2017-08-12 Thread Cihangir Akturk
On Fri, Aug 11, 2017 at 02:24:19PM +, Deucher, Alexander wrote: > > -Original Message- > > From: amd-gfx [mailto:amd-gfx-boun...@lists.freedesktop.org] On Behalf > > Of Cihangir Akturk > > Sent: Friday, August 11, 2017 8:33 AM > > Cc: de...@driverdev.osuosl.org;

[PATCH v2 1/2] drm/dp: Bit definition for D3 power state that keeps AUX fully powered

2017-08-12 Thread Dhinakaran Pandiyan
DPCD 600h - SET_POWER & SET_DP_PWR_VOLTAGE defines power state 101 = Set Main-Link for local Sink device and all downstream Sink devices to D3 (power-down mode), keep AUX block fully powered, ready to reply within a Response Timeout period of 300us. This state is useful in a MST dock + MST

[PATCH v3 12/28] drm/imx: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 28/29] drm/vmwgfx: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 02/29] drm: mali-dp: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v3 01/28] drm/amdgpu: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 06/29] drm/bochs: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 26/29] drm/vgem: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

Require for drm control-node

2017-08-12 Thread Jared Hu
Hi All, I'm a gstreamer developer and is trying to implement a video display plugin based on DRM/KMS which is named "kmssink". I met a problem that the kmssink will have permission issue when running with x11 and wayland. Because these two window system will hold DRM-Master in their life

[PATCH v3 23/28] drm/udl: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[PATCH v2 18/29] drm/omap: switch to drm_*_get(), drm_*_put() helpers

2017-08-12 Thread Cihangir Akturk
Use drm_*_get() and drm_*_put() helpers instead of drm_*_reference() and drm_*_unreference() helpers. drm_*_reference() and drm_*_unreference() functions are just compatibility alias for drm_*_get() and drm_*_put() and should not be used by new code. So convert all users of compatibility

[Bug 100964] RX-480 [drm:gfx_v8_0_ring_test_ring [amdgpu]] *ERROR* amdgpu: ring 0 test failed (scratch(0xC040)=0xCAFEDEAD)

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100964 --- Comment #8 from Maxim Cournoyer --- I managed to make it work by compiling latest 4.13.0-rc2+ from there: git://people.freedesktop.org/~agd5f/linux. I used the 'drm-next-4.14-wip' branch, and customized it a bit

[Bug 100964] RX-480 [drm:gfx_v8_0_ring_test_ring [amdgpu]] *ERROR* amdgpu: ring 0 test failed (scratch(0xC040)=0xCAFEDEAD)

2017-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=100964 --- Comment #7 from Maxim Cournoyer --- Created attachment 133465 --> https://bugs.freedesktop.org/attachment.cgi?id=133465=edit Success with customized kernel version 4.13.0-rc2+ -- You are receiving this mail

Re: [PATCH 1/2] drm/bridge: add Silicon Image SiI9234 driver

2017-08-12 Thread kbuild test robot
Hi Maciej, [auto build test ERROR on drm/drm-next] [also build test ERROR on v4.13-rc4 next-20170811] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: