[git pull] drm intel fixes

2015-04-27 Thread Dave Airlie
Hi Linus, playing the race -rc1 game, nothing too urgent if this doesn't get in though, Jani sent it after I started my weekend so I felt I should send it on. Just intel fixes 3 of them. Dave. The following changes since commit c8b3fd0ce313443731e8fd6d5a541085eb465f99: Merge tag 'pm+acpi-

[PATCH 2/2] Fix one warning (v2)

2015-04-27 Thread Jammy Zhou
xf86drm.c:356:2: warning: comparison of unsigned expression >= 0 is always true [-Wtype-limits] group = (serv_group >= 0) ? serv_group : DRM_DEV_GID; ^ v2: do 'int' cast to fix the warning Signed-off-by: Jammy Zhou --- xf86drm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -

[PATCH 2/2] Fix one warning

2015-04-27 Thread Zhou, Jammy
Thanks for sharing the background. For [0], you mentioned that get_perms may return -1 in some cases for the group, can you help indicate which case it is? Since the drmSetServerInfo is seldom used, maybe we can just do the 'int' cast at this moment. I will send v2 for this. Regards, Jammy ---

[PATCH 1/2] drm/exynos: mixer: cleanup pixelformat handling

2015-04-27 Thread Joonyoung Shim
Hi Tobias, On 04/24/2015 05:10 PM, Tobias Jakobi wrote: > On 2015-04-24 03:48, Joonyoung Shim wrote: >> Hi Tobias, >> >> On 04/23/2015 09:12 PM, Tobias Jakobi wrote: >>> Move the defines for the pixelformats that the mixer supports out >>> of mixer_graph_buffer() to the top of the source. >>> Then

[PATCH] drm/exynos: fix source data argument for plane

2015-04-27 Thread Joonyoung Shim
Hi Gustavo, On 04/25/2015 03:15 AM, Gustavo Padovan wrote: > Hi Joonyoung, > > 2015-04-16 Joonyoung Shim : > >> The exynos_update_plane function needs 16.16 fixed point source data. >> >> Signed-off-by: Joonyoung Shim >> --- >> drivers/gpu/drm/exynos/exynos_drm_crtc.c | 7 --- >> 1 file ch

[PATCH v2 2/2] drm/exynos: cleanup exynos_drm_plane

2015-04-27 Thread Joonyoung Shim
Hi Tobias, On 04/26/2015 03:06 AM, Tobias Jakobi wrote: > Remove the unused fields of struct exynos_drm_plane. > > v2: Remove index_color as well, also unused (thanks Joonyoung). > > Reviewed-by: Gustavo Padovan > Signed-off-by: Tobias Jakobi > --- > drivers/gpu/drm/exynos/exynos_drm_drv.h |

[PATCH libdrm] Add missing includes

2015-04-27 Thread Chih-Wei Huang
2015-04-24 0:56 GMT+08:00 Emil Velikov : > On 22/04/15 16:19, Greg Hackmann wrote: >> On Tue, Apr 21, 2015 at 11:31 AM, Emil Velikov >> wrote: >>> >>> I'm not sure why I haven't hit this while building with Android-x86's >>> bionic, although it's the right thing to do. >> >> Maybe a difference in

[PATCH 2/2] drm/exynos: mixer: remove buffer count handling in vp_video_buffer()

2015-04-27 Thread Joonyoung Shim
Hi Tobias, On 04/26/2015 05:31 AM, Tobias Jakobi wrote: > The video processor (VP) supports four formats: NV12, NV21 and its > tiled variants. All these formats are bi-planar, so the buffer > count in vp_video_buffer() is always 2. > > While we're at it, also add support for NV21 and properly exi

[PATCH v4 06/10] cec: add HDMI CEC framework: y2038 question

2015-04-27 Thread Hans Verkuil
Added the y2038 mailinglist since I would like to get their input for this API. Y2038 experts, can you take a look at my comments in the code below? Thanks! On 04/23/2015 03:03 PM, Kamil Debski wrote: > From: Hans Verkuil > > The added HDMI CEC framework provides a generic kernel interface for

[PATCH 1/1 linux-next] drm/i915: use ERR_CAST instead of ERR_PTR/PTR_ERR

2015-04-27 Thread Jani Nikula
On Sat, 25 Apr 2015, Fabian Frederick wrote: > Inspired by scripts/coccinelle/api/err_cast.cocci > > Signed-off-by: Fabian Frederick Reviewed-by: Jani Nikula > --- > drivers/gpu/drm/i915/intel_drv.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Kamil Debski
Hi Lars, Thank you for your comments. From: linux-media-ow...@vger.kernel.org [mailto:linux-media- owner at vger.kernel.org] On Behalf Of Lars Op den Kamp Sent: Friday, April 24, 2015 12:04 PM > Hi Kamil, Hans, > > I'm the main developer of libCEC > (https://github.com/Pulse-Eight/libcec). Sor

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
Hi Lars, My thanks as well for your comments. I'd like to add some background information as well as to why we move the core CEC support into the kernel: the main reason for doing this is to support the HEAC part of the CEC protocol. Specifically the ARC support and handling the hotplug detect CE

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/9e86b937/attachment.html>

[PATCH 2/2] drm: fix a memleak on mutex failure path

2015-04-27 Thread Jani Nikula
On Sun, 26 Apr 2015, green at linuxhacker.ru wrote: > From: Oleg Drokin > > Need to free just allocated ctx allocation if we cannot > get our config mutex. > > This one has been flagged by kbuild bot all the way back in August, > but somehow nobody picked it up: > https://lists.01.org/pipermail/kb

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
Hi Kamil, I've added some missing HDMI 2.0 commands: On 04/23/2015 03:03 PM, Kamil Debski wrote: > From: Hans Verkuil > > The added HDMI CEC framework provides a generic kernel interface for > HDMI CEC devices. > > Signed-off-by: Hans Verkuil > [k.debski at samsung.com: Merged CEC Updates com

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
Hi Kamil, Sorry for all the replies, but I'm writing the DocBook documentation, so whenever I find something missing I'll just reply to this patch. > +/* The CEC version */ Add support for version 1.3a here: #define CEC_VERSION_1_3A4 > +#define CEC_VERSION_1_4B 5 > +

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
On 04/27/2015 11:22 AM, Hans Verkuil wrote: > Hi Kamil, > > Sorry for all the replies, but I'm writing the DocBook documentation, so > whenever I find something missing I'll just reply to this patch. >> +/* The CEC version */ > > Add support for version 1.3a here: > > #define CEC_VERSION_1_3A

Help on drmModeSetPlane

2015-04-27 Thread Xie, William
Hello, Syrjälä, For drmModeSetPlane API, regarding the ctrc width, height and src width and heitht, Do they must 16 byte aligned? For example, for the size of 33x66, will these value be supported? William -Original Message- From: Ville Syrjälä [mailto:ville.syrj...@linux.intel.com]

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
uot;/usr/lib/xorg/modules/dri/radeonsi_dri.so" is not a core dump: File format not recognized Any idea what I did wrong? (I'll attach the PKGBUILD and my makepkg.conf) -- You are receiving this mail because: You are the assignee for the bug. -- next part

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/bb606d64/attachment.html>

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/e6ac2526/attachment.html>

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
e you tried getting a backtrace of the crash again? -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/776f4ff6/attachment.html>

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/0f225526/attachment-0001.html>

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
|| -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/d0167b6e/attachment.html>

Build regressions/improvements in v4.1-rc1

2015-04-27 Thread Geert Uytterhoeven
On Mon, Apr 27, 2015 at 11:51 AM, Geert Uytterhoeven wrote: > Below is the list of build error/warning regressions/improvements in > v4.1-rc1[1] compared to v4.0[2]. > > Summarized: > - build errors: +34/-11 > - build warnings: +135/-163 > > As I haven't mastered kup yet, there's no verbose su

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
On 04/23/2015 03:03 PM, Kamil Debski wrote: > From: Hans Verkuil > > The added HDMI CEC framework provides a generic kernel interface for > HDMI CEC devices. > > Signed-off-by: Hans Verkuil > [k.debski at samsung.com: Merged CEC Updates commit by Hans Verkuil] > [k.debski at samsung.com: Merged

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
/archives/dri-devel/attachments/20150427/e32f1f41/attachment.html>

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
On 04/23/2015 03:03 PM, Kamil Debski wrote: > From: Hans Verkuil > > The added HDMI CEC framework provides a generic kernel interface for > HDMI CEC devices. > > Signed-off-by: Hans Verkuil > [k.debski at samsung.com: Merged CEC Updates commit by Hans Verkuil] > [k.debski at samsung.com: Merged

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
On 04/27/2015 12:25 PM, Hans Verkuil wrote: > On 04/23/2015 03:03 PM, Kamil Debski wrote: >> From: Hans Verkuil >> >> The added HDMI CEC framework provides a generic kernel interface for >> HDMI CEC devices. >> >> Signed-off-by: Hans Verkuil >> [k.debski at samsung.com: Merged CEC Updates commit

[Bug 95911] Recursive error in radeon device driver module after resume from hibernation

2015-04-27 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=95911 --- Comment #7 from gitne at excite.co.jp --- (In reply to Michel Dänzer from comment #6) > Is this a regression compared to older kernel versions? If yes, can you > bisect or at least narrow down which kernel version is the last good / first > ba

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Hans Verkuil
On 04/27/2015 11:22 AM, Hans Verkuil wrote: > Hi Kamil, > > Sorry for all the replies, but I'm writing the DocBook documentation, so > whenever I find something missing I'll just reply to this patch. >> +/* The CEC version */ > > Add support for version 1.3a here: > > #define CEC_VERSION_1_3A

[PATCH 1/2] drm/exynos: mixer: cleanup pixelformat handling

2015-04-27 Thread Tobias Jakobi
On 2015-04-27 08:33, Joonyoung Shim wrote: > Hi Tobias, > > On 04/24/2015 05:10 PM, Tobias Jakobi wrote: >> On 2015-04-24 03:48, Joonyoung Shim wrote: >>> Hi Tobias, >>> >>> On 04/23/2015 09:12 PM, Tobias Jakobi wrote: Move the defines for the pixelformats that the mixer supports out of

[PATCH 2/2] drm/exynos: mixer: remove buffer count handling in vp_video_buffer()

2015-04-27 Thread Tobias Jakobi
On 2015-04-27 09:24, Joonyoung Shim wrote: > Hi Tobias, > > On 04/26/2015 05:31 AM, Tobias Jakobi wrote: >> The video processor (VP) supports four formats: NV12, NV21 and its >> tiled variants. All these formats are bi-planar, so the buffer >> count in vp_video_buffer() is always 2. >> >> While w

[PATCH v4 06/10] cec: add HDMI CEC framework

2015-04-27 Thread Kamil Debski
Hi Hans, Thank you so much for all today's comments. I will consider them when preparing the next version. From: linux-media-ow...@vger.kernel.org [mailto:linux-media- owner at vger.kernel.org] On Behalf Of Hans Verkuil Sent: Monday, April 27, 2015 1:27 PM > > On 04/27/2015 12:25 PM, Hans Verkui

[PATCH] DocBook/media: add CEC documentation

2015-04-27 Thread Hans Verkuil
(Kamil, here is the DocBook documentation for the CEC API. Please add this to your patch series when you post the next version of that.) --- Add the documentation for the public CEC API. Signed-off-by: Hans Verkuil --- Documentation/DocBook/media/Makefile | 4 +- Documentation/

access "Display Port Helper Functions" trough userspace

2015-04-27 Thread Jani Nikula
On Sat, 18 Apr 2015, Marc Ludwig wrote: > Hi, Folks! > > I'am looking for an opportunity to access the I2C-Interface which is attached > to my displayport link. > Can anyone give me a hint aubout an minimal working example for this? > > I tried to figure aut how this could be solved using the

Help on drmModeSetPlane

2015-04-27 Thread Ville Syrjälä
On Mon, Apr 27, 2015 at 09:37:54AM +, Xie, William wrote: > Hello, Syrjälä, > For drmModeSetPlane API, regarding the ctrc width, height and src width and > heitht, > Do they must 16 byte aligned? > For example, for the size of 33x66, will these value be supported? Depends on the hardware/d

[Bug 90194] Fix Valgrind error in drmPrimeHandleToFD

2015-04-27 Thread bugzilla-dae...@freedesktop.org
ed by drmPrimeHandleToFD (xf86drm.c:2695) -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/d1950dc7/attachment.html>

[Bug 90194] Fix Valgrind error in drmPrimeHandleToFD

2015-04-27 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/6d449b94/attachment.html>

[PATCH 2/4] drm/radeon: reset BOs address after clearing it.

2015-04-27 Thread Christian König
From: Christian König Otherwise it is possible that we will have page table corruption if we change a BOs address multiple times. Signed-off-by: Christian König CC: stable at vger.kernel.org --- drivers/gpu/drm/radeon/radeon_vm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/

[PATCH 4/4] drm/radeon: fix userptr return value checking

2015-04-27 Thread Christian König
From: Christian König Otherwise we print false warning from time to time. Signed-off-by: Christian König Signed-off-by: Jack Xiao CC: stable at vger.kernel.org --- drivers/gpu/drm/radeon/radeon_mn.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/d

[PATCH 1/4] drm/radeon: fix lockup when BOs aren't part of the VM on release

2015-04-27 Thread Christian König
From: Christian König If we unmap BOs before releasing them them the intervall tree locks up because we try to remove an entry not inside the tree. Signed-off-by: Christian König CC: stable at vger.kernel.org --- drivers/gpu/drm/radeon/radeon_vm.c | 3 ++- 1 file changed, 2 insertions(+), 1

[PATCH 3/4] drm/radeon: check new address before removing old one

2015-04-27 Thread Christian König
From: Christian König Otherwise the change isn't atomic. Signed-off-by: Christian König CC: stable at vger.kernel.org --- drivers/gpu/drm/radeon/radeon_vm.c | 31 +-- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_vm.

[PATCH 1/4] drm/radeon: fix lockup when BOs aren't part of the VM on release

2015-04-27 Thread Christian König
On 27.04.2015 17:04, Christian König wrote: > From: Christian König > > If we unmap BOs before releasing them them the intervall tree locks > up because we try to remove an entry not inside the tree. > > Signed-off-by: Christian König > CC: stable at vger.kernel.org Somehow forgot to mention

[Intel-gfx] [PATCH i-g-t] tests/drm_hw_lock: Tests for hw_lock fixes.

2015-04-27 Thread Thomas Wood
On 23 April 2015 at 15:07, Peter Antoine wrote: > There are several issues with the hardware locks functions that stretch > from kernel crashes to priority escalations. This new test will test the > the fixes for these features. > > This test will cause a driver/kernel crash on un-patched kernels,

[Intel-gfx] [PATCH i-g-t] tests/drm_hw_lock: Tests for hw_lock fixes.

2015-04-27 Thread Chris Wilson
On Mon, Apr 27, 2015 at 04:24:37PM +0100, Thomas Wood wrote: > On 23 April 2015 at 15:07, Peter Antoine wrote: > > There are several issues with the hardware locks functions that stretch > > from kernel crashes to priority escalations. This new test will test the > > the fixes for these features.

[PATCH 4/4] drm/radeon: fix userptr return value checking

2015-04-27 Thread Alex Deucher
On Mon, Apr 27, 2015 at 11:04 AM, Christian König wrote: > From: Christian König > > Otherwise we print false warning from time to time. > > Signed-off-by: Christian König > Signed-off-by: Jack Xiao > CC: stable at vger.kernel.org Applied the series to my 4.1 fixes tree. I had to make mino

[Intel-gfx] [PATCH 3/5] drm: Possible lock priority escalation.

2015-04-27 Thread Ville Syrjälä
On Thu, Apr 23, 2015 at 03:07:56PM +0100, Peter Antoine wrote: > If an application that has a driver lock created, wants the lock the > kernel context, it is not allowed to. If the call to drm_lock has a > context of 0, it is rejected. If you set the context to _DRM_LOCK_CONT > then call drm lock,

[Intel-gfx] [PATCH 4/5] drm: Make HW_LOCK access functions optional.

2015-04-27 Thread Ville Syrjälä
On Thu, Apr 23, 2015 at 03:07:57PM +0100, Peter Antoine wrote: > As these functions are only used by one driver and there are security holes > in these functions. Make the functions optional. > > Issue: VIZ-5485 > Signed-off-by: Peter Antoine > --- > drivers/gpu/drm/drm_lock.c| 6 ++

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/55084749/attachment.html>

[PATCH 1/2] Add device enumeration interface (v2)

2015-04-27 Thread Emil Velikov
Hi Jammy, Frank As far as I can see you're trying to get a different version of drmGetBusid(). With the DRM_IOCTL_{G,S}ET_UNIQUE ioctl being lovely as it is I do see your point, but I'm not sure that the current design will be too useful. Do we have any upcoming users for this new function, can y

[PATCH v10 0/9] ASoC: tda998x: add a codec to the HDMI transmitter

2015-04-27 Thread Jean-Francois Moine
On Mon, 27 Apr 2015 14:33:45 +0300 Jyri Sarha wrote: > Have you done anything about the tda998x audio support lately? > > I was thinking of taking a shot at this now that I finally seem to have > some time for it. However, if you are just about to send another series > I'll wait for that first

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-27 Thread bugzilla-dae...@freedesktop.org
.conf instead. Anyway I hope I got something useful with the last trace. :-) -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/

[Bug 90202] Firefox nightly hangs with accelerated layers and latest r600 driver

2015-04-27 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/35d55383/attachment.html>

[Bug 90202] Firefox nightly hangs with accelerated layers and latest r600 driver

2015-04-27 Thread bugzilla-dae...@freedesktop.org
-- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/24215f08/attachment.html>

[Bug 90202] Firefox nightly hangs with accelerated layers and latest r600 driver

2015-04-27 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/744dada6/attachment.html>

[Bug 90202] Firefox nightly hangs with accelerated layers and latest r600 driver

2015-04-27 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150427/c9cd6d25/attachment-0001.html>

[PATCH v2 1/4] drm/exynos: fb: use drm_format_num_planes to get buffer count

2015-04-27 Thread Tobias Jakobi
The previous code had some special case handling for the buffer count in exynos_drm_format_num_buffers(). This code was incorrect though, since this special case doesn't exist for DRM. It stemmed from the existence of the special NV12M V4L2 format. NV12 is a bi-planar format (separate planes for l

[PATCH v2 2/4] drm/exynos: plane: honor buffer offset for dma_addr

2015-04-27 Thread Tobias Jakobi
Previously we were ignoring the buffer offsets that are passed through the addfb2 ioctl. This didn't cause any major issues, since for uni-planar formats (like XRGB) userspace would most of the time just use offsets[0]=0. However with NV12 offsets[1] is very likely non-zero. So properly apply

[PATCH v2 3/4] drm/exynos: mixer: remove buffer count handling in vp_video_buffer()

2015-04-27 Thread Tobias Jakobi
The video processor (VP) supports four formats: NV12, NV21 and its tiled variants. All these formats are bi-planar, so the buffer count in vp_video_buffer() is always 2. Also properly exit if we're called with an invalid (non-VP) pixelformat. Signed-off-by: Tobias Jakobi --- drivers/gpu/drm/exy

[PATCH v2 4/4] drm/exynos: mixer: also allow NV21 for the video processor

2015-04-27 Thread Tobias Jakobi
All the necessary code is already there, just need to handle the format in the switch statement. Signed-off-by: Tobias Jakobi --- drivers/gpu/drm/exynos/exynos_mixer.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mi

[PATCH v3] drm/exynos: mixer: cleanup pixelformat handling

2015-04-27 Thread Tobias Jakobi
Move the defines for the pixelformats that the mixer supports out of mixer_graph_buffer() to the top of the source. Then select the mixer pixelformat (pf) in mixer_graph_buffer() based on the plane's pf (and not bpp). Also add handling of RGB565 and XRGB1555 to the switch statement and exit early i

linux-4.1-rc1/drivers/gpu/drm/msm/dsi/dsi_host.c:1799: possible missing break ?

2015-04-27 Thread David Binderman
Hello there, [linux-4.1-rc1/drivers/gpu/drm/msm/dsi/dsi_host.c:1799] -> [linux-4.1-rc1/drivers/gpu/drm/msm/dsi/dsi_host.c:1802]: (warning) Variable 'ret' is reassigned a value before the old one has been used. 'break;' missing?     switch (cmd) {     case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR

[PATCH v10 0/9] ASoC: tda998x: add a codec to the HDMI transmitter

2015-04-27 Thread Jyri Sarha
Hi, Have you done anything about the tda998x audio support lately? I was thinking of taking a shot at this now that I finally seem to have some time for it. However, if you are just about to send another series I'll wait for that first and see what makes the most sense after that. My plan is to

[PATCH 2/2] drm: fix a memleak on mutex failure path

2015-04-27 Thread Oleg Drokin
Hello! On Apr 27, 2015, at 4:56 AM, Jani Nikula wrote: > On Sun, 26 Apr 2015, green at linuxhacker.ru wrote: >> From: Oleg Drokin >> >> Need to free just allocated ctx allocation if we cannot >> get our config mutex. >> >> This one has been flagged by kbuild bot all the way back in August, >>

[PATCH v2] drm: fix a memleak on mutex failure path

2015-04-27 Thread gr...@linuxhacker.ru
From: Oleg Drokin Need to free just allocated ctx allocation if we cannot get our config mutex. This one has been flagged by kbuild bot all the way back in August, but somehow nobody picked it up: https://lists.01.org/pipermail/kbuild/2014-August/001691.html In addition there is another failure

Build regressions/improvements in v4.1-rc1

2015-04-27 Thread Aaro Koskinen
Hi, On Mon, Apr 27, 2015 at 12:03:32PM +0200, Geert Uytterhoeven wrote: > > *** ERRORS *** > > > > 34 regressions: > > The quiet days are over... > > > + /home/kisskb/slave/src/arch/mips/cavium-octeon/smp.c: error: passing > > argument 2 of 'cpumask_clear_cpu' discards 'volatile' qualifier fr