[PATCH V8 00/14] drm/exynos: few patches to enhance bridge chip support

2015-01-03 Thread Inki Dae
On 2015년 01월 02일 22:14, Ajay kumar wrote: > Hi Daniel, > > This series is sitting out there since long without any ACKs. > If people can ACK this series, I am ready to rebase and send ASAP. Acked-by: Inki Dae And, for [PATCH V8 5/14] drm/exynos: dp: support drm_bridge, Signed-off-by: Inki

[PATCH 1/3] ARM: dts: add fimd device support for exynos3250-rinato

2015-01-03 Thread Inki Dae
On 2014년 11월 28일 20:39, Inki Dae wrote: > This patch adds fimd device node which is a display controller > for Exynos3250 Rinato board. Hi Kukjin, Please, ping~ Thanks, Inki Dae > > Signed-off-by: Inki Dae > Acked-by: Kyungmin Park > --- > arch/arm/boot/dts/exynos3250-rinato.dts | 1

[PATCH 3/3] ARM: dts: add Panel device support for exynos3250-rinato

2015-01-03 Thread Inki Dae
On 2014년 11월 28일 20:39, Inki Dae wrote: > This patch adds MIPI-DSI and MIPI-DSI based S6E63J0X03 AMOLED panel > device nodes for Exynos3250 Rinato board. Hi Mr. Kukjin, Please, ping~ Thanks, Inki Dae > > Signed-off-by: Inki Dae > Acked-by: Kyungmin Park > --- > arch/arm/boot/dts/exyno

[PATCH] drm/radeon: Fix kernel panic when plugging a HDMI w/o SAD

2015-01-03 Thread Takashi Iwai
A BUG_ON() call in dce3_2_afmt_write_sad_regs() is triggered when a HDMI monitor without SAD is plugged as the case sad_count = 0 is overlooked in the code: kernel BUG at ../drivers/gpu/drm/radeon/dce3_1_afmt.c:110! invalid opcode: [#1] PREEMPT SMP CPU: 2 PID: 967 Comm: Xorg Tainted: PO 3

[PATCH] drm/radeon: Fix kernel panic when plugging a HDMI w/o SAD

2015-01-03 Thread Takashi Iwai
At Sat, 3 Jan 2015 09:27:52 +0100, Takashi Iwai wrote: > > A BUG_ON() call in dce3_2_afmt_write_sad_regs() is triggered when a > HDMI monitor without SAD is plugged as the case sad_count = 0 is > overlooked in the code: > > kernel BUG at ../drivers/gpu/drm/radeon/dce3_1_afmt.c:110! > invalid o

[PATCH v2] drm/radeon: Fix kernel panic with HDMI w/o SAD

2015-01-03 Thread Takashi Iwai
A BUG_ON() call in dce3_2_afmt_write_sad_regs() is triggered when a HDMI monitor without audio is plugged: kernel BUG at ../drivers/gpu/drm/radeon/dce3_1_afmt.c:110! invalid opcode: [#1] PREEMPT SMP CPU: 2 PID: 967 Comm: Xorg Tainted: PO 3.16.7-7-desktop #1 Hardware name: System manufact

WARNING: at drivers/gpu/drm/i915/intel_display.c:11375 [i915] in 3.19-rc2

2015-01-03 Thread Andrey Skvortsov
n/pgp-signature Size: 836 bytes Desc: Digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150103/173c2c48/attachment.sig>

WARNING: at drivers/gpu/drm/i915/intel_display.c:11375 [i915] in 3.19-rc2

2015-01-03 Thread Andrey Skvortsov
ubbed... Name: config.xz Type: application/octet-stream Size: 23408 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150103/6dff4cc9/attachment-0001.obj> -- next part -- A non-text attachment was scrubbed... Name: signature.as

[PATCH v2 0/7] Add SDMA user-mode queues support to amdkfd

2015-01-03 Thread Oded Gabbay
Although I didn't get any replies on v1, I still decided to send this v2, because: a. Alex and I decided to move some H/W initialization functionallity into radeon. b. The next patch-set that I intend to send (prepare to support future AMD GPUs) is based on this patch-set. Therefore, I w

[PATCH v2 1/7] drm/amd: Add SDMA functions to kfd-->kgd interface

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch adds three new functions to the kfd2kgd interface: - hqd_sdma_load() - Loads SDMA mqd to a H/W SDMA hqd slot. Used only in no HWS mode. - hqd_sdma_is_occupied() - Checks if an SDMA hqd slot is occupied. Used only in no HWS

[PATCH v2 2/7] drm/radeon: Implement SDMA interface functions

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch implements the new SDMA interface functions. It also adds defines and structures related to SDMA registers. v2: Removed init_sdma_engines() from interface. Initialization is done in radeon. Signed-off-by: Ben Goz --- drivers/gpu/drm/radeon/cik_reg.h| 200 +

[PATCH v2 3/7] drm/amdkfd: Add SDMA mqd support

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch adds support for SDMA mqd operations: - init_mqd_sdma - uninit_mqd_sdma - load_mqd_sdma - update_mqd_sdma - destroy_mqd_sdma - is_occupied_sdma It also adds SDMA queue information to some private structures of amdkfd. Signed-off-by: Ben Goz --- drivers/gpu/drm/amd/amd

[PATCH v2 4/7] drm/amdkfd: Add SDMA user-mode queues support to QCM

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch adds support for SDMA user-mode queues to the QCM - the Queue management system that manages queues-per-device and queues-per-process. v2: Remove calls to interface function that initializes sdma engines. Signed-off-by: Ben Goz Signed-off-by: Oded Gabbay --- .../gpu/

[PATCH v2 5/7] drm/amdkfd: Identify SDMA queue in create queue ioctl

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch adds a check to the create queue ioctl path, which identifies SDMA queue type that is sent by userspace. Signed-off-by: Ben Goz Reviewed-by: Oded Gabbay --- drivers/gpu/drm/amd/amdkfd/kfd_chardev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/

[PATCH v2 6/7] drm/amdkfd: Pass queue type to pqm_create_queue()

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch passes the correct queue type to pqm_create_queue() instead of a fixed KFD_QUEUE_TYPE_COMPUTE type. Signed-off-by: Ben Goz Reviewed-by: Oded Gabbay --- drivers/gpu/drm/amd/amdkfd/kfd_chardev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dri

[PATCH v2 7/7] drm/radeon: Enable sdma preemption

2015-01-03 Thread Oded Gabbay
From: Ben Goz This patch adds to radeon the enablement of sdma preemption. This is needed to support HWS of SDMA user-mode queues. Signed-off-by: Ben Goz Acked-by: Oded Gabbay Reviewed-by: Alex Deucher --- drivers/gpu/drm/radeon/cik_sdma.c | 29 + 1 file changed,