RE: [PATCH V3 10/15] [media] marvell-ccic: split mcam-core into 2 parts for soc_camera support

2013-01-31 Thread Albert Wang
Hi, Jonathan As you know, we are working on adding B_DMA_SG support on soc_camera mode. We found there is some code we can't understand in irq handler: if (handled == IRQ_HANDLED) { set_bit(CF_DMA_ACTIVE, cam-flags); if (cam-buffer_mode == B_DMA_sg)

Re: [Linaro-mm-sig] [PATCH 4/7] fence: dma-buf cross-device synchronization (v11)

2013-01-31 Thread Inki Dae
Hi, below is my opinion. +struct fence; +struct fence_ops; +struct fence_cb; + +/** + * struct fence - software synchronization primitive + * @refcount: refcount for this fence + * @ops: fence_ops associated with this fence + * @cb_list: list of all callbacks to call + * @lock:

Re: [Linaro-mm-sig] [PATCH 4/7] fence: dma-buf cross-device synchronization (v11)

2013-01-31 Thread Maarten Lankhorst
Op 31-01-13 10:32, Inki Dae schreef: Hi, below is my opinion. +struct fence; +struct fence_ops; +struct fence_cb; + +/** + * struct fence - software synchronization primitive + * @refcount: refcount for this fence + * @ops: fence_ops associated with this fence + * @cb_list: list of

Re: [RFCv2 PATCH] em28xx: fix bytesperline calculation in G/TRY_FMT

2013-01-31 Thread Mauro Carvalho Chehab
Em Thu, 31 Jan 2013 08:16:39 +0100 Hans Verkuil hverk...@xs4all.nl escreveu: On Wed January 30 2013 20:07:29 Mauro Carvalho Chehab wrote: Em Wed, 30 Jan 2013 10:49:25 +0100 Hans Verkuil hverk...@xs4all.nl escreveu: On Wed 30 January 2013 10:40:30 Mauro Carvalho Chehab wrote: Em

Re: [Linaro-mm-sig] [PATCH 4/7] fence: dma-buf cross-device synchronization (v11)

2013-01-31 Thread Daniel Vetter
On Thu, Jan 31, 2013 at 06:32:15PM +0900, Inki Dae wrote: Hi, below is my opinion. +struct fence; +struct fence_ops; +struct fence_cb; + +/** + * struct fence - software synchronization primitive + * @refcount: refcount for this fence + * @ops: fence_ops associated with this

[RFC PATCH 00/18] tlg2300: various v4l2-compliance fixes

2013-01-31 Thread Hans Verkuil
Hi all, Last year I worked on this driver to improve it and fix v4l2-compliance issues. It required a lot of effort to even find a USB stick with this chipset (telegent no longer exists) and unfortunately at some point I managed to break the USB stick, so I am no longer able to work on it. This

[RFC PATCH 03/18] tlg2300: switch to unlocked_ioctl.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The driver already does locking, so it is safe to switch to unlocked_ioctl. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-radio.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[RFC PATCH 02/18] tlg2300: fix tuner and frequency handling of the radio device.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This driver now passes the tuner and frequency tests of v4l2-compliance. It's the usual bugs: frequency wasn't clamped to the valid frequency range, incorrect tuner capabilities and tuner fields not filled in, missing test for invalid tuner index, no

[RFC PATCH 04/18] tlg2300: remove ioctls that are invalid for radio devices.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The input and audio ioctls are only valid for video/vbi nodes. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-radio.c | 27 --- 1 file changed, 27 deletions(-) diff --git

[RFC PATCH 01/18] tlg2300: use correct device parent.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Set the correct parent for v4l2_device_register. Also remove an unnecessary forward reference and fix two weird looking log messages. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-main.c |9 - 1 file

[RFC PATCH 09/18] tlg2300: add missing video_unregister_device.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-radio.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/usb/tlg2300/pd-radio.c b/drivers/media/usb/tlg2300/pd-radio.c index 80307d3..0f958f7 100644

[RFC PATCH 12/18] tlg2300: fix frequency handling.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com The usual set of problems: the frequency isn't clamped to the frequency range, no tuner index check and the frequency isn't initialized properly on module load. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h

[RFC PATCH 10/18] tlg2300: embed video_device.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |6 ++-- drivers/media/usb/tlg2300/pd-video.c | 55 +++-- 2 files changed, 13 insertions(+), 48 deletions(-) diff --git

[RFC PATCH 14/18] tlg2300: implement the control framework.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |1 + drivers/media/usb/tlg2300/pd-video.c | 128 +++-- 2 files changed, 41 insertions(+), 88 deletions(-) diff --git

[RFC PATCH 16/18] tlg2300: allow multiple opens.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Due to a poor administration of the driver state it wasn't possible to open a video or vbi device multiple times. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |1 - drivers/media/usb/tlg2300/pd-video.c

[RFC PATCH 15/18] tlg2300: remove empty vidioc_try_fmt_vid_cap, add missing g_std.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-video.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/media/usb/tlg2300/pd-video.c

[RFC PATCH 11/18] tlg2300: fix querycap

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-video.c | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/drivers/media/usb/tlg2300/pd-video.c b/drivers/media/usb/tlg2300/pd-video.c

[RFC PATCH 08/18] tlg2300: fix radio querycap

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-radio.c |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/media/usb/tlg2300/pd-radio.c b/drivers/media/usb/tlg2300/pd-radio.c index

[RFC PATCH 13/18] tlg2300: fix missing audioset.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-video.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/usb/tlg2300/pd-video.c b/drivers/media/usb/tlg2300/pd-video.c index

[RFC PATCH 06/18] tlg2300: add control handler for radio device node.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |2 + drivers/media/usb/tlg2300/pd-radio.c | 112 - 2 files changed, 28 insertions(+), 86 deletions(-) diff --git

[RFC PATCH 07/18] tlg2300: switch to v4l2_fh.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com This switch to v4l2_fh resolves the last v4l2_compliance issues with respect to control events and priority handling. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |1 -

[RFC PATCH 05/18] tlg2300: embed video_device instead of allocating it.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |2 +- drivers/media/usb/tlg2300/pd-radio.c | 20 ++-- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git

[RFC PATCH 17/18] tlg2300: Remove logs() macro.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com ioctl debugging can now be done through the debug parameter in sysfs. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- drivers/media/usb/tlg2300/pd-common.h |9 - drivers/media/usb/tlg2300/pd-video.c | 23 ++- 2

[RFC PATCH 18/18] tlg2300: update MAINTAINERS file.

2013-01-31 Thread Hans Verkuil
From: Hans Verkuil hans.verk...@cisco.com Remove two maintainers: telegent.com no longer exists, so those email addresses are invalid as well. Signed-off-by: Hans Verkuil hans.verk...@cisco.com --- MAINTAINERS |2 -- 1 file changed, 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS

[PATCH] MAINTAINERS: add s5c73m3 driver entry

2013-01-31 Thread Andrzej Hajda
Signed-off-by: Andrzej Hajda a.ha...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- MAINTAINERS |7 +++ 1 file changed, 7 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 7a58a25..e3c2f09 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -6545,6 +6545,13 @@

Re: [RFCv2 PATCH] em28xx: fix bytesperline calculation in G/TRY_FMT

2013-01-31 Thread Hans Verkuil
On Thu 31 January 2013 11:08:07 Mauro Carvalho Chehab wrote: Em Thu, 31 Jan 2013 08:16:39 +0100 Hans Verkuil hverk...@xs4all.nl escreveu: On Wed January 30 2013 20:07:29 Mauro Carvalho Chehab wrote: Em Wed, 30 Jan 2013 10:49:25 +0100 Hans Verkuil hverk...@xs4all.nl escreveu: On

Re: 3.8.0-rc4+ - Oops on removing WinTV-HVR-1400 expresscard TV Tuner

2013-01-31 Thread Chris Clayton
On 01/24/13 17:02, Chris Clayton wrote: Hi, I've today taken delivery of a WinTV-HVR-1400 expresscard TV Tuner and got an Oops when I removed from the expresscard slot in my laptop. I will quite understand if the response to this report is don't do that!, but in that case, how should one remove

Re: af9035 test needed!

2013-01-31 Thread Andre Heider
Hi, On Fri, Jan 11, 2013 at 7:38 PM, Antti Palosaari cr...@iki.fi wrote: Could you test that (tda18218 mxl5007t): http://git.linuxtv.org/anttip/media_tree.git/shortlog/refs/heads/it9135_tuner I got a 'TerraTec Cinergy T Stick Dual RC (rev. 2)', which is fixed by this series. Any chance to get

AW: omapdss/omap3isp/omapfb: Picture from omap3isp can't recover after a blank/unblank (or overlay disables after resuming)

2013-01-31 Thread Florian Neuhaus
Hi Laurent, Thank you for your help, see my notes below: Laurent Pinchart wrote on 2013-01-30: Will result in the following and the following (screen flickers and goes black again): [ 5293.617095] omapdss DISPC error: FIFO UNDERFLOW on gfx, disabling the overlay [ 5293.678283] omapdss DISPC

Re: [PATCH 2/7] mutex: add support for reservation style locks

2013-01-31 Thread Rob Clark
On Wed, Jan 30, 2013 at 5:52 AM, Rob Clark robdcl...@gmail.com wrote: On Wed, Jan 30, 2013 at 5:08 AM, Daniel Vetter dan...@ffwll.ch wrote: On Wed, Jan 30, 2013 at 2:07 AM, Rob Clark robdcl...@gmail.com wrote: == Basic problem statement: - --- - GPU's

Re: af9035 test needed!

2013-01-31 Thread Michael Krufky
Hey guys... somehow this email slipped through my filters :-( I see it now, and I'll give a look over the patch this weekend. -Mike On Thu, Jan 31, 2013 at 8:04 AM, Andre Heider a.hei...@gmail.com wrote: Hi, On Fri, Jan 11, 2013 at 7:38 PM, Antti Palosaari cr...@iki.fi wrote: Could you test

Re: af9035 test needed!

2013-01-31 Thread Antti Palosaari
On 01/31/2013 03:04 PM, Andre Heider wrote: Hi, On Fri, Jan 11, 2013 at 7:38 PM, Antti Palosaari cr...@iki.fi wrote: Could you test that (tda18218 mxl5007t): http://git.linuxtv.org/anttip/media_tree.git/shortlog/refs/heads/it9135_tuner I got a 'TerraTec Cinergy T Stick Dual RC (rev. 2)',

DVB_T2 Multistream support (PLP)

2013-01-31 Thread Michael Stilmant-Rovi
Hello, I would like to know the support status of Multiple PLPs in DVB-T2. Is someone know if tests were performed in a broadcast with an effective Multistream? (PLP Id: 0 and 1 for example) I'm out of range of such multiplex but I'm trying some tunes on London DVB-T2 (CrystalPalace tower)

Re: [Linaro-mm-sig] [PATCH 4/7] fence: dma-buf cross-device synchronization (v11)

2013-01-31 Thread Inki Dae
2013/1/31 Daniel Vetter dan...@ffwll.ch: On Thu, Jan 31, 2013 at 06:32:15PM +0900, Inki Dae wrote: Hi, below is my opinion. +struct fence; +struct fence_ops; +struct fence_cb; + +/** + * struct fence - software synchronization primitive + * @refcount: refcount for this fence +

Re: DVB_T2 Multistream support (PLP)

2013-01-31 Thread Antti Palosaari
On 01/31/2013 04:27 PM, Michael Stilmant-Rovi wrote: Hello, I would like to know the support status of Multiple PLPs in DVB-T2. Is someone know if tests were performed in a broadcast with an effective Multistream? (PLP Id: 0 and 1 for example) I'm out of range of such multiplex but I'm trying

Re: [Linaro-mm-sig] [PATCH 4/7] fence: dma-buf cross-device synchronization (v11)

2013-01-31 Thread Daniel Vetter
On Thu, Jan 31, 2013 at 3:38 PM, Inki Dae inki@samsung.com wrote: I think I understand as your comment but I don't think that I understand fully the dma-fence mechanism. So I wish you to give me some advices for it. In our case, I'm applying the dma-fence to mali(3d gpu) driver as producer

Re: DVB_T2 Multistream support (PLP)

2013-01-31 Thread Michael Stilmant-Rovi
Thanks, Looking for a tuner supporting multiple PLP, is it conceivable to add to the driver the possibility to pass to the hardware that value? (I don't know if that need other math though) ( I will look the sources anyway but I don't have good knowledge) If I want to look for another USB stick

WinTV-HVR-1400: scandvb (and kaffeine) fails to find any channels

2013-01-31 Thread Chris Clayton
Hi. On linuxtv.org, the Hauppauge WinTV-HVR-1400 is listed as being supported. I've bought one, but I find that when I run the scan for dvb-t channels, none are found. I have tried kernels 2.6.11, 2.7.5 and 3.8.0-rc5+ (pulled from Linus' tree today) I know the aerial and cable are OK

Re: WinTV-HVR-1400: scandvb (and kaffeine) fails to find any channels

2013-01-31 Thread Devin Heitmueller
On Thu, Jan 31, 2013 at 11:21 AM, Chris Clayton chris2...@googlemail.com wrote: Hi. On linuxtv.org, the Hauppauge WinTV-HVR-1400 is listed as being supported. I've bought one, but I find that when I run the scan for dvb-t channels, none are found. I have tried kernels 2.6.11, 2.7.5 and

Re: RFC: add parameters to V4L controls

2013-01-31 Thread Sylwester Nawrocki
Hi, On 01/07/2013 01:10 PM, Hans Verkuil wrote: On Mon January 7 2013 11:46:38 Andrzej Hajda wrote: [...] Currently V4L2 controls can have only single value (of type int, int64, string). Some hardware controls require more than single int parameter, for example to set auto-focus (AF)

[PATCH RFC v5 0/2] V4L device tree bindings and OF helpers

2013-01-31 Thread Sylwester Nawrocki
This iteration mostly addresses comments from Laurent, regarding the bindings documentation. It introduces a common 'ports' node grouping all 'port' nodes, which could be used to resolve node addressing conflict when a device has a bus with corresponding children nodes. The changes in second

[PATCH RFC v5 1/2] [media] Add common video interfaces OF bindings documentation

2013-01-31 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski g.liakhovet...@gmx.de This patch adds a document describing common OF bindings for video capture, output and video processing devices. It is curently mainly focused on video capture devices, with data busses defined by standards like ITU-R BT.656 or MIPI-CSI2. It also

[PATCH RFC v5 2/2] [media] Add a V4L2 OF parser

2013-01-31 Thread Sylwester Nawrocki
From: Guennadi Liakhovetski g.liakhovet...@gmx.de Add a V4L2 OF parser, implementing bindings documented in Documentation/devicetree/bindings/media/video-interfaces.txt. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de [s.nawro...@samsung.com: various corrections and improvements since

Re: [PATCH RFC v5 1/2] [media] Add common video interfaces OF bindings documentation

2013-01-31 Thread Laurent Pinchart
Hi Sylwester, Thanks for the patch. On Thursday 31 January 2013 18:18:57 Sylwester Nawrocki wrote: From: Guennadi Liakhovetski g.liakhovet...@gmx.de This patch adds a document describing common OF bindings for video capture, output and video processing devices. It is curently mainly

Re: af9035 test needed!

2013-01-31 Thread Andre Heider
Hi, On Thu, Jan 31, 2013 at 2:59 PM, Antti Palosaari cr...@iki.fi wrote: Thank you for the report! There was someone else who reported it working too. Do you want to your name as tester for the changelog? if I didn't mess up my way of testing feel free to add Tested-by: Andre Heider

Re: [PATCH RFC v5 1/2] [media] Add common video interfaces OF bindings documentation

2013-01-31 Thread Sylwester Nawrocki
Hi Laurent, On 01/31/2013 06:33 PM, Laurent Pinchart wrote: Changes since v4: - added note that multiple endpoints at a port can be active at any time, - introduced optional 'ports' node aggregating 'port' nodes if required to avoid conflicts with any child bus of a device, The

Re: [RFCv2 PATCH] em28xx: fix bytesperline calculation in G/TRY_FMT

2013-01-31 Thread Frank Schäfer
Am 31.01.2013 11:08, schrieb Mauro Carvalho Chehab: Em Thu, 31 Jan 2013 08:16:39 +0100 Hans Verkuil hverk...@xs4all.nl escreveu: On Wed January 30 2013 20:07:29 Mauro Carvalho Chehab wrote: Em Wed, 30 Jan 2013 10:49:25 +0100 Hans Verkuil hverk...@xs4all.nl escreveu: On Wed 30 January 2013

Re: af9035 test needed!

2013-01-31 Thread Antti Palosaari
Jose, Gianluca, On 01/31/2013 08:40 PM, Andre Heider wrote: Hey, On Thu, Jan 31, 2013 at 2:59 PM, Antti Palosaari cr...@iki.fi wrote: On Fri, Jan 11, 2013 at 7:38 PM, Antti Palosaari cr...@iki.fi wrote: Could you test that (tda18218 mxl5007t): only now I see you mentioned mxl5007t too,

Re: af9035 test needed!

2013-01-31 Thread Malcolm Priestley
On Thu, 2013-01-31 at 15:59 +0200, Antti Palosaari wrote: On 01/31/2013 03:04 PM, Andre Heider wrote: Hi, On Fri, Jan 11, 2013 at 7:38 PM, Antti Palosaari cr...@iki.fi wrote: Could you test that (tda18218 mxl5007t):

Re: WinTV-HVR-1400: scandvb (and kaffeine) fails to find any channels

2013-01-31 Thread Chris Clayton
Hi Devin On 01/31/13 16:31, Devin Heitmueller wrote: On Thu, Jan 31, 2013 at 11:21 AM, Chris Clayton chris2...@googlemail.com wrote: Hi. On linuxtv.org, the Hauppauge WinTV-HVR-1400 is listed as being supported. I've bought one, but I find that when I run the scan for dvb-t channels, none are

cron job: media_tree daily build: WARNINGS

2013-01-31 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Thu Jan 31 19:00:19 CET 2013 git branch: for_v3.9 git hash: a32f7d1ad3744914273c6907204c2ab3b5d496a0 gcc

media_build: getting a TerraTec H7 working?

2013-01-31 Thread Torfinn Ingolfsen
Hi, I'm trying to get a TerraTec H7 working. I started with Xubuntu 12.04, using kernel 3.2.24: tingo@kg-f4:~/work/w_scan-2012$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 12.04.1 LTS Release:12.04 Codename: precise

Re: WinTV-HVR-1400: scandvb (and kaffeine) fails to find any channels

2013-01-31 Thread Chris Clayton
On 01/31/13 20:59, Chris Clayton wrote: Hi Devin On 01/31/13 16:31, Devin Heitmueller wrote: On Thu, Jan 31, 2013 at 11:21 AM, Chris Clayton chris2...@googlemail.com wrote: Hi. On linuxtv.org, the Hauppauge WinTV-HVR-1400 is listed as being supported. I've bought one, but I find that when

Re: [PATCH 2/2] drm/exynos: Add device tree based discovery support for G2D

2013-01-31 Thread Sylwester Nawrocki
Hi Inki, On 01/31/2013 02:30 AM, Inki Dae wrote: -Original Message- From: Sylwester Nawrocki [mailto:sylvester.nawro...@gmail.com] Sent: Thursday, January 31, 2013 5:51 AM To: Inki Dae Cc: Sachin Kamat; linux-media@vger.kernel.org; dri- de...@lists.freedesktop.org;

RE: [PATCH 2/2] drm/exynos: Add device tree based discovery support for G2D

2013-01-31 Thread Kukjin Kim
Sylwester Nawrocki wrote: Hi Inki, Hi Sylwester and Inki, On 01/31/2013 02:30 AM, Inki Dae wrote: -Original Message- From: Sylwester Nawrocki [mailto:sylvester.nawro...@gmail.com] Sent: Thursday, January 31, 2013 5:51 AM To: Inki Dae Cc: Sachin Kamat;

RE: [PATCH 2/2] drm/exynos: Add device tree based discovery support for G2D

2013-01-31 Thread Inki Dae
Hi Kukjin, -Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Kukjin Kim Sent: Friday, February 01, 2013 9:15 AM To: 'Sylwester Nawrocki'; 'Inki Dae' Cc: 'Sachin Kamat'; linux-media@vger.kernel.org; dri-

[PATCH] crystalhd git.linuxtv.org kernel driver: FIX MORE null pointer BUGs triggered by multithreaded or faulty apps

2013-01-31 Thread thomas schorpp
This patch should pass the 2nd test case of this bug. The Broadcom driver can only handle strict open-close sequences, not in parallel or subsequent open() before HANDLE close(), so using the usual multithreaded or faulty apps will crash the kernel due to missing !ctx-hw_ctx exception

Re: [RFC PATCH 00/18] tlg2300: various v4l2-compliance fixes

2013-01-31 Thread Huang Shijie
Hi Hans: On Thu, Jan 31, 2013 at 6:25 PM, Hans Verkuil hverk...@xs4all.nl wrote: Hi all, Last year I worked on this driver to improve it and fix v4l2-compliance issues. I am glad to know that there are still some people use the tlg2300. thanks a lot. It required a lot of effort to even

Re: [PATCH 2/2] drm/exynos: Add device tree based discovery support for G2D

2013-01-31 Thread Stephen Warren
On 01/31/2013 06:27 PM, Inki Dae wrote: Hi Kukjin, -Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media- ow...@vger.kernel.org] On Behalf Of Kukjin Kim Sent: Friday, February 01, 2013 9:15 AM To: 'Sylwester Nawrocki'; 'Inki Dae' Cc: 'Sachin Kamat';

Re: [PATCH v16 RESEND 0/7] of: add display helper

2013-01-31 Thread Jingoo Han
Hi Steffen, You can add my tested-by for this series. I have tested them for Exynos: smdk4210 board. Beat regards, Jingoo Han On Wednesday, January 23, 2013 6:12 PM, Steffen Trumtrar wrote On Tue, Jan 22, 2013 at 03:50:48PM -0600, Rob Clark wrote: On Mon, Jan 21, 2013 at 5:07 AM, Steffen

Re: [RFC PATCH 00/18] tlg2300: various v4l2-compliance fixes

2013-01-31 Thread Hans Verkuil
On Fri February 1 2013 03:22:22 Huang Shijie wrote: Hi Hans: On Thu, Jan 31, 2013 at 6:25 PM, Hans Verkuil hverk...@xs4all.nl wrote: Hi all, Last year I worked on this driver to improve it and fix v4l2-compliance issues. I am glad to know that there are still some people use the