[PATCH] drm/imx: imx-ldb: store LVDS bus configuration in ldb channel

2016-07-22 Thread Philipp Zabel
Hi Liu, thank you for your comments. Am Freitag, den 22.07.2016, 12:01 +0800 schrieb Ying Liu: > Hi Philipp, > > This patch's headline doesn't exactly reflect what the patch actually > does - retrieve lvds bus format from imx_crtc_state during encoder > mode_set. Yes. I initially stored

[PATCH] GPU-DRM-GMA500: Delete unnecessary checks before two function calls

2016-07-22 Thread SF Markus Elfring
From: Markus Elfring Date: Fri, 22 Jul 2016 10:30:30 +0200 The functions pci_dev_put() and psb_intel_i2c_destroy() test whether their argument is NULL and then return immediately. Thus the tests around their calls are not needed. This issue was detected by using

Some more VC4 vblank fixes and timestamping improvements.

2016-07-22 Thread Daniel Vetter
On Thu, Jul 21, 2016 at 12:58:16PM -0700, Eric Anholt wrote: > Mario Kleiner writes: > > > Hi Eric and all, > > > > this batch prevents setting modes one shouldn't set, > > adds precise vblank timestamping for interlaced video > > modes, and one fix for vblank en/disable during crtc > >

[v6.1 PATCH 6/6] drm/rockchip: cdn-dp: add cdn DP support for rk3399

2016-07-22 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

[PULL] topic/drm-misc

2016-07-22 Thread Daniel Vetter
Hi Dave, Suddenly everyone shows up with their trivial patch series! - piles of if (!ptr) check removals from Markus Elfring - more of_node_put fixes from Peter Chen - make fbdev support really optional in all drivers (except vmwgfx), somehow this fell through the cracks when we did all the

[PATCH v2 3/3] drm/bridge: analogix_dp: remove the panel prepare/unprepare in suspend/resume

2016-07-22 Thread Yakir Yang
We already manager the panel power status in bridge_disable and connector->detect functions, then we don't need to manager the panel power status at suspend/resume in particular. Signed-off-by: Yakir Yang --- Changes in v2: None drivers/gpu/drm/bridge/analogix/analogix_dp_core.c | 12

[PATCH v2 2/3] drm/bridge: analogix_dp: turn off the panel when eDP need to disable

2016-07-22 Thread Yakir Yang
Some panels (like Sharp LQ123P1JX31) need to be turn off when eDP controller stop to send valid video signal, otherwhise panel would go burn in, and keep flicker and flicker. So it's better to turn off the panel when eDP need to disable, and we need to turn on the panel in connector->detect()

[PATCH v2 1/3] drm/panel: simple-panel: add the delay timing for Sharp LQ123P1JX31

2016-07-22 Thread Yakir Yang
According to page 16 of Sharp LQ123P1JX31 datasheet, we need to add the missing delay timing. Panel prepare time should be t1 (0.5ms~10ms) plus t3 (0ms~100ms), and panel enable time should equal to t7 (0ms~50ms), and panel unprepare time should be t11 (1ms~50ms) plus t12 (500ms~). Signed-off-by:

[Bug 97022] Garbage in windows while running a game windowed

2016-07-22 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/321bc771/attachment.html>

[Bug 97003] [d3dadapter+radeonsi] Dragon's Dogma: video memory leak with precompiled shaders

2016-07-22 Thread bugzilla-dae...@freedesktop.org
sktop.org/archives/dri-devel/attachments/20160722/6eae9902/attachment.html>

[Bug 97003] [d3dadapter+radeonsi] Dragon's Dogma: video memory leak with precompiled shaders

2016-07-22 Thread bugzilla-dae...@freedesktop.org
: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/4c40a186/attachment.html>

[PATCH v1 1/2] drm/panel: simple-panel: add the delay timing for Sharp LQ123P1JX31

2016-07-22 Thread Yakir Yang
Sean, On 07/21/2016 10:30 PM, Sean Paul wrote: > On Thu, Jul 21, 2016 at 9:14 AM, Yakir Yang wrote: >> According to page 16 of Sharp LQ123P1JX31 datasheet, we need to add the >> missing delay timing. Panel prepare time should be t1 (0.5ms~10ms) plus >> t3 (0ms~100ms), and panel enable time

[PATCH v1 2/2] drm/bridge: analogix_dp: turn off the panel when eDP need to disable

2016-07-22 Thread Yakir Yang
power_on(dp->phy); >> >> - if (dp->plat_data->panel) { >> - if (drm_panel_prepare(dp->plat_data->panel)) { >> - DRM_ERROR("failed to setup the panel\n"); >> - return -EBUSY; >> - } >> - } >> - >> analogix_dp_init_dp(dp); >> >> ret = devm_request_threaded_irq(>dev, dp->irq, >> -- >> 1.9.1 >> >> > > -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/5c4a6f5c/attachment.html>

[PATCH] GPU-DRM-OMAP: Delete unnecessary checks before two function calls

2016-07-22 Thread SF Markus Elfring
From: Markus Elfring Date: Fri, 22 Jul 2016 08:28:31 +0200 The following functions test whether their argument is NULL and then return immediately. * backlight_device_unregister * drm_gem_object_unreference_unlocked Thus the test around the calls is not needed.

[v6 PATCH 6/6] drm/rockchip: cdn-dp: add cdn DP support for rk3399

2016-07-22 Thread Mark yao
On 2016年07月21日 21:13, Chris Zhong wrote: > 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

[PATCH] drm/vmwgfx: Delete an unnecessary check before the function call "vfree"

2016-07-22 Thread Sinclair Yeh
Looks good. Thanks! Reviewed-by: Sinclair Yeh On Fri, Jul 22, 2016 at 01:45:40PM +0200, SF Markus Elfring wrote: > From: Markus Elfring > Date: Fri, 22 Jul 2016 13:31:00 +0200 > > The vfree() function performs also input parameter validation. > Thus the test around the call is not needed. >

[Bug 97039] The Talos Principle and Serious Sam 3 GPU faults

2016-07-22 Thread bugzilla-dae...@freedesktop.org
nts/20160722/f676c204/attachment.html>

[PATCH 1/1] drm/sti: use new Reset API

2016-07-22 Thread Lee Jones
Since 0b52297f228 ("reset: Add support for shared reset controls") the new Reset API now demands consumers choose either an *_exclusive or a *_shared line when requesting reset lines. Signed-off-by: Lee Jones --- drivers/gpu/drm/sti/sti_compositor.c | 4 ++-- 1 file changed, 2 insertions(+), 2

[Bug 97029] cik_sdma_copy_texture broken on Carrizo (mesa 12)

2016-07-22 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/f9018db4/attachment.html>

[Bug 97038] OpenArena couple times slower using llvm 3.9

2016-07-22 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/82d12c39/attachment.html>

[Bug 97040] NAEV menu gradient render bug

2016-07-22 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/c09b1d11/attachment.html>

[Bug 97040] NAEV menu gradient render bug

2016-07-22 Thread bugzilla-dae...@freedesktop.org
ext part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/af74cfdd/attachment-0001.html>

[Bug 97040] NAEV menu gradient render bug

2016-07-22 Thread bugzilla-dae...@freedesktop.org
art -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/6dba1741/attachment.html>

[Bug 97025] flip queue failed: Device or resource busy

2016-07-22 Thread bugzilla-dae...@freedesktop.org
t the xorg-server update is unrelated. -- 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/20160722/a36a4847/attachment.html>

[Bug 97039] The Talos Principle and Serious Sam 3 GPU faults

2016-07-22 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/7a65f8db/attachment.html>

[benjamin.gaignard:generic-zpos-v6 4/4] drivers/gpu/drm/rcar-du/rcar_du_vsp.c:51:3: error: unknown field 'zpos' specified in initializer

2016-07-22 Thread kbuild test robot
gy Center https://lists.01.org/pipermail/kbuild-all Intel Corporation -- next part -- A non-text attachment was scrubbed... Name: .config.gz Type: application/octet-stream Size: 57673 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/5a1e03df/attachment-0001.obj>

[Bug 97038] OpenArena couple times slower using llvm 3.9

2016-07-22 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/d441578f/attachment.html>

[Bug 97022] Garbage in windows while running a game windowed

2016-07-22 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160722/1755e5ce/attachment.html>

[Bug 97025] flip queue failed: Device or resource busy

2016-07-22 Thread bugzilla-dae...@freedesktop.org
hments/20160722/7b1ebfdd/attachment.html>

[Bug 117591] amdgpu: Black screens on A10-8700P (Carrizo) + R7 M260/M265 (Topaz) Combo

2016-07-22 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=117591 --- Comment #11 from Michel Dänzer --- Thomas, since your symptoms are different from Jani's, please file your own report, preferably at https://bugs.freedesktop.org/enter_bug.cgi?product=DRI=DRM/AMDgpu . -- You are receiving this mail

<    1   2