cron job: media_tree daily build: OK

2014-05-21 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 May 22 04:00:18 CEST 2014 git branch: test git hash: ba0d342ecc21fbbe2f6c178f4479944d1fb34f3b gcc versi

[PATCH] dib0700: fix RC support on Hauppauge Nova-TD

2014-05-21 Thread Mauro Carvalho Chehab
The RC support o Nova-TD is broken, as the RC endpoint there is an interrupt endpoint. That produces an ugly calltrace at the Kernel logs: WARNING: CPU: 2 PID: 56 at drivers/usb/core/urb.c:450 usb_submit_urb+0x1fd/0x5c0() usb 1-1.2: BOGUS urb xfer, pipe 3 != type 1 Module

[PATCH] v4l: vsp1: Remove the unneeded vsp1_video_buffer video field

2014-05-21 Thread Laurent Pinchart
The field is assigned but never read, remove it. This fixes a bug caused by the struct vb2_buffer field not being be the very first field of the vsp1_video_buffer buffer structure as required by videobuf2. Cc: sta...@vger.kernel.org Reported-by: Takanari Hayama Signed-off-by: Laurent Pinchart -

Re: am i in the right list?

2014-05-21 Thread Steven Toth
> Im looking for support for a Fresco logic FL2000 USB to VGA adapter ... > Is any one already working on this or am i in the wrong list? Mike, This is the right list. I'm not aware of anyone working on drivers for that chipset. - Steve -- Steven Toth - Kernel Labs http://www.kernellabs.com --

Re: am i in the right list?

2014-05-21 Thread Antti Palosaari
Moikka On 05/21/2014 09:28 PM, Michael Durkin wrote: Im looking for support for a Fresco logic FL2000 USB to VGA adapter ... Is any one already working on this or am i in the wrong list? List is right AFAIK. In my understanding it should be implement as a V4L2 device which sends picture, like

[PATCH 8/8] xc5000: delay tuner sleep to 5 seconds

2014-05-21 Thread Mauro Carvalho Chehab
Some drivers, like au0828 are very sensitive to tuner sleep and may break if the sleep happens too fast. Also, by keeping the tuner alive for a while could speedup tuning process during channel scan. So, change the logic to delay the actual sleep to 5 seconds after its command. Signed-off-by: Maur

am i in the right list?

2014-05-21 Thread Michael Durkin
Im looking for support for a Fresco logic FL2000 USB to VGA adapter ... Is any one already working on this or am i in the wrong list? Mike KC7NOA -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at

[PATCH 4/8] xc5000: get rid of positive error codes

2014-05-21 Thread Mauro Carvalho Chehab
Errors should also be negative and should follow the Kernel standards. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/tuners/xc5000.c | 104 +++--- 1 file changed, 48 insertions(+), 56 deletions(-) diff --git a/drivers/media/tuners/xc5000.c b/drivers/

[PATCH 0/8] Fix stream hangs with au0828

2014-05-21 Thread Mauro Carvalho Chehab
There are several conditions that make au0828 stream to hang. Those were independently detected by me, Reynaldo and Trevor. Trevor kindly provided a code that make this error visible: running it ~10-15 times on a loop makes the au0828 to stop sending stream. Once it stops, not even removing/reinse

[PATCH 3/8] [media] Reset au0828 streaming when a new frequency is set

2014-05-21 Thread Mauro Carvalho Chehab
As reported by Trevor, doing several opening/streaming/closing operations to the demux causes it to fail. I was able to simulate this bug too. I also noticed that, sometimes, changing channels with au0828, the same thing happens. Most of the issues seem to be due to some hardware bug, that causes

[PATCH 2/8] [media] au0828: Improve debug messages for urb_completion

2014-05-21 Thread Mauro Carvalho Chehab
Sometimes, it helps to know how much data was received by urb_completion. Add that information to the optional debug log. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/usb/au0828/au0828-dvb.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/media/

[PATCH 7/8] xc5000: Don't use whitespace before tabs

2014-05-21 Thread Mauro Carvalho Chehab
WARNING: please, no space before tabs +#define XC_PRODUCT_ID_FW_LOADED ^I0x1388$ WARNING: please, no space before tabs +#define DK_SECAM_A2LDK3 ^I13$ WARNING: please, no space before tabs +#define DK_SECAM_A2MONO ^I14$ WARNING: please, no space before tabs +#define FM_RADIO_INPUT2 ^I21$ WARNING

[PATCH 5/8] xc5000: Don't wrap msleep()

2014-05-21 Thread Mauro Carvalho Chehab
There's absolutely no reason to wrap msleep() call here. Just rename all occurences of xc_wait() with msleep() and remove the wrapper function. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/tuners/xc5000.c | 15 +-- 1 file changed, 5 insertions(+), 10 deletions(-) diff --gi

[PATCH 6/8] xc5000: fix CamelCase

2014-05-21 Thread Mauro Carvalho Chehab
There are several CamelCase non-codingstyle compliances here. Fix them. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/tuners/xc5000.c | 138 +- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/drivers/media/tuners/xc5000.c b/driver

[PATCH 1/8] [media] au0828: Cancel stream-restart operation if frontend is disconnected

2014-05-21 Thread Mauro Carvalho Chehab
From: Changbing Xiong X-Patchwork-Delegate: mche...@redhat.com If the tuner is already disconnected, It is meaningless to go on doing the stream-restart operation, It is better to cancel this operation. Signed-off-by: Changbing Xiong Signed-off-by: Mauro Carvalho Chehab --- drivers/media/usb/

Re: Hauppauge 950Q TS capture intermittent lock up

2014-05-21 Thread Mauro Carvalho Chehab
Hi Trevor, Em Tue, 13 May 2014 11:53:24 -0400 Trevor G escreveu: > Example app is attached. My build is just "gcc -O2 dvbcapture.c -o > dvbcapture". Thanks, it was very useful, as I could reproduce your issues. What is happening is that, after ~10-15 times it opens the demux, the DMA engine s

[GIT PULL for 3.16] MFC firmware related patches

2014-05-21 Thread Kamil Debski
The following changes since commit a48bcde914d311835ead01d81d25d304a913b718: s5p-mfc: Core support for v8 encoder (2014-05-20 15:19:41 +0200) are available in the git repository at: git://linuxtv.org/kdebski/media_tree_2.git for-3.16-4 for you to fetch changes up to 5ed826e62cd2c96f011075d5

Re: [PATCH] videobuf2-core: remove duplicated code

2014-05-21 Thread Marek Szyprowski
Hello, On 2014-05-21 11:48, Victor Lambret wrote: Remove duplicated test of buffer presence at streamon Signed-off-by: Victor Lambret Acked-by: Marek Szyprowski --- drivers/media/v4l2-core/videobuf2-core.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/media/v4l2-core/v

Re: [PATCH v2 0/3] Support for multiple MFC FW sub-versions

2014-05-21 Thread Sachin Kamat
On 21 May 2014 14:59, Arun Kumar K wrote: > This patchset is for supporting multple firmware sub-versions > for MFC. Newer firmwares come with changed interfaces and fixes > without any change in the fw version number. > So this implementation is as per Tomasz Figa's suggestion [1]. > [1] http://p

[PATCH] videobuf2-core: remove duplicated code

2014-05-21 Thread Victor Lambret
Remove duplicated test of buffer presence at streamon Signed-off-by: Victor Lambret --- drivers/media/v4l2-core/videobuf2-core.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/media/v4l2-core/videobuf2-core.c b/drivers/media/v4l2-core/videobuf2-core.c index f9059bb..b731b66 1006

[GIT PULL FOR 3.16] exynos4-is driver cleanup

2014-05-21 Thread Sylwester Nawrocki
Hi Mauro, This two patches is the exynos4-is driver cleanup, i.e. removing unused code to support non-dt platforms. One of the patches touches arch/arm and it has been acked by Mr. Kim. Please note this branch includes two patches from my previous pull request [1], which I hoped to be merged for 3

[PATCH v2 3/3] [media] s5p-mfc: Add init buffer cmd to MFCV6

2014-05-21 Thread Arun Kumar K
Latest MFC v6 firmware requires tile mode and loop filter setting to be done as part of Init buffer command, in sync with v7. This patch adds this support for new v6 firmware. Signed-off-by: Arun Kumar K Signed-off-by: Kiran AVND Reviewed-by: Tomasz Figa --- drivers/media/platform/s5p-mfc/s5p_

[PATCH v2 1/3] [media] s5p-mfc: Remove duplicate function s5p_mfc_reload_firmware

2014-05-21 Thread Arun Kumar K
The function s5p_mfc_reload_firmware is exactly same as s5p_mfc_load_firmware. So removing the duplicate function. Signed-off-by: Arun Kumar K Reviewed-by: Tomasz Figa --- drivers/media/platform/s5p-mfc/s5p_mfc.c |2 +- drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c | 33 -

[PATCH v2 2/3] [media] s5p-mfc: Support multiple firmware sub-versions

2014-05-21 Thread Arun Kumar K
For MFC firmwares, improved versions with bug fixes and feature additions are released keeping the firmware version including major and minor number same. The issue came with the release of a new MFCv6 firmware with an interface change. This patch adds the support of accepting multiple firmware bin

[PATCH v2 0/3] Support for multiple MFC FW sub-versions

2014-05-21 Thread Arun Kumar K
This patchset is for supporting multple firmware sub-versions for MFC. Newer firmwares come with changed interfaces and fixes without any change in the fw version number. So this implementation is as per Tomasz Figa's suggestion [1]. [1] http://permalink.gmane.org/gmane.linux.kernel.samsung-soc/317

Re: [PATCH 2/3] [media] s5p-mfc: Support multiple firmware sub-versions

2014-05-21 Thread Arun Kumar K
Hi Sachin, On Tue, May 20, 2014 at 5:15 PM, Sachin Kamat wrote: > Hi Arun, > > On 20 May 2014 15:47, Arun Kumar K wrote: >> For MFC firmwares, improved versions with bug fixes and >> feature additions are released keeping the firmware version >> including major and minor number same. The issue c

[GIT PULL for v3.16] mem2mem patches

2014-05-21 Thread Kamil Debski
The following changes since commit 61b2123701c3568fcf8a07e69fe1c2854f640a4e: v4l: ti-vpe: Rename csc memory resource name (2014-05-14 15:53:39 +0200) are available in the git repository at: git://linuxtv.org/kdebski/media_tree_2.git for-3.16-3 for you to fetch changes up to a48bcde914d31183