[PATCH] media: adv7343: accept configuration through platform data

2013-01-15 Thread Lad, Prabhakar
The current code was implemented with some default configurations, this default configuration works on board and doesn't work on other. This patch accepts the configuration through platform data and configures the encoder depending on the data set. Signed-off-by: Lad, Prabhakar

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Johannes Stezenbach
On Tue, Jan 15, 2013 at 12:30:46AM -0200, Mauro Carvalho Chehab wrote: Add DVBv5 methods to retrieve QoS statistics. According to http://en.wikipedia.org/wiki/Qos: Quality of service in computer network trafficking refers to resource reservation control mechanisms I think it is misleading to

[GIT PULL FOR v3.9] media i2c devices trivial fixes

2013-01-15 Thread Prabhakar Lad
Hi Mauro, Please pull the following patches, which use devm_kzalloc() instead of kzalloc(). Regards, --Prabhakar Lad The following changes since commit 3151d14aa6e983aa36d51a80d0477859f9ba12af: [media] media: remove __dev* annotations (2013-01-11 13:03:24 -0200) are available in the git

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Antti Palosaari
On 01/15/2013 10:20 AM, Johannes Stezenbach wrote: On Tue, Jan 15, 2013 at 12:30:46AM -0200, Mauro Carvalho Chehab wrote: Add DVBv5 methods to retrieve QoS statistics. According to http://en.wikipedia.org/wiki/Qos: Quality of service in computer network trafficking refers to resource

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Antti Palosaari
On 01/15/2013 04:30 AM, Mauro Carvalho Chehab wrote: v6: Add DocBook documentation. v7: Some fixes as suggested by Antti v8: Documentation fix, compilation fix and name the stats struct, for its reusage inside the core v9: counters need 32 bits. So, change the

[GIT PULL FOR v3.9] Davinci media trivial fixes

2013-01-15 Thread Prabhakar Lad
Hi Mauro, Please pull the following patches for DaVinci media, fixing trivial issues. Regards, --Prabhakar Lad The following changes since commit 3151d14aa6e983aa36d51a80d0477859f9ba12af: [media] media: remove __dev* annotations (2013-01-11 13:03:24 -0200) are available in the git

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Manu Abraham
On Tue, Jan 15, 2013 at 8:00 AM, Mauro Carvalho Chehab mche...@redhat.com wrote: Add DVBv5 methods to retrieve QoS statistics. Those methods allow per-layer and global statistics. Implemented 2 QoS statistics on mb86a20s, one global only (signal strengh), and one per layer (BER). Tested

Re: Status of the patches under review at LMML (35 patches)

2013-01-15 Thread Manu Abraham
On Sun, Jan 6, 2013 at 7:04 PM, Mauro Carvalho Chehab mche...@redhat.com wrote: This is the summary of the patches that are currently under review at Linux Media Mailing List linux-media@vger.kernel.org. Each patch is represented by its submission date, the subject (up to 70 chars) and the

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Mauro Carvalho Chehab
Em Tue, 15 Jan 2013 10:55:48 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 10:20 AM, Johannes Stezenbach wrote: On Tue, Jan 15, 2013 at 12:30:46AM -0200, Mauro Carvalho Chehab wrote: Add DVBv5 methods to retrieve QoS statistics. According to http://en.wikipedia.org/wiki/Qos:

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

2013-01-15 Thread Maarten Lankhorst
A fence can be attached to a buffer which is being filled or consumed by hw, to allow userspace to pass the buffer without waiting to another device. For example, userspace can call page_flip ioctl to display the next frame of graphics after kicking the GPU but while the GPU is still rendering.

[PATCH 6/7] reservation: cross-device reservation support

2013-01-15 Thread Maarten Lankhorst
This adds support for a generic reservations framework that can be hooked up to ttm and dma-buf and allows easy sharing of reservations across devices. The idea is that a dma-buf and ttm object both will get a pointer to a struct reservation_object, which has to be reserved before anything is

[PATCH 7/7] reservation: Add lockdep annotation and selftests

2013-01-15 Thread Maarten Lankhorst
Signed-off-by: Maarten Lankhorst maarten.lankho...@canonical.com --- The self-tests will fail if the commit lockdep: Check if nested lock is actually held from linux tip core/locking is not applied. --- lib/Kconfig.debug | 1 + lib/locking-selftest.c | 385

[PATCH 0/7] cross-device reservation for dma-buf support

2013-01-15 Thread Maarten Lankhorst
So I'm resending the patch series for reservations. This is identical to my git tree at http://cgit.freedesktop.org/~mlankhorst/linux/ Some changes have been made since my last version. Most notably is the use of mutexes now instead of creating my own lock primitive, that would end up being

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

2013-01-15 Thread Maarten Lankhorst
makes it easier to port ttm over.. Signed-off-by: Maarten Lankhorst maarten.lankho...@canonical.com --- include/linux/mutex.h | 86 +- kernel/mutex.c| 317 +++--- 2 files changed, 387 insertions(+), 16 deletions(-) diff --git

[PATCH 3/7] sched: allow try_to_wake_up to be used internally outside of core.c

2013-01-15 Thread Maarten Lankhorst
Not exported, since only used by the fence implementation. Signed-off-by: Maarten Lankhorst maarten.lankho...@canonical.com --- include/linux/wait.h | 1 + kernel/sched/core.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/linux/wait.h b/include/linux/wait.h index

[PATCH 1/7] arch: add __mutex_fastpath_lock_retval_arg to generic/sh/x86/powerpc/ia64

2013-01-15 Thread Maarten Lankhorst
Needed for reservation slowpath. --- arch/ia64/include/asm/mutex.h| 20 arch/powerpc/include/asm/mutex.h | 20 arch/sh/include/asm/mutex-llsc.h | 20 arch/x86/include/asm/mutex_32.h | 20

[PATCH 5/7] seqno-fence: Hardware dma-buf implementation of fencing (v4)

2013-01-15 Thread Maarten Lankhorst
This type of fence can be used with hardware synchronization for simple hardware that can block execution until the condition (dma_buf[offset] - value) = 0 has been met. A software fallback still has to be provided in case the fence is used with a device that doesn't support this mechanism. It is

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Mauro Carvalho Chehab
Em Tue, 15 Jan 2013 11:34:37 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 04:30 AM, Mauro Carvalho Chehab wrote: v6: Add DocBook documentation. v7: Some fixes as suggested by Antti v8: Documentation fix, compilation fix and name the stats struct,

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

2013-01-15 Thread Maarten Lankhorst
Woops, missed the updated patch description.. Op 15-01-13 13:33, Maarten Lankhorst schreef: makes it easier to port ttm over.. Signed-off-by: Maarten Lankhorst maarten.lankho...@canonical.com mutex_reserve_lock, and mutex_reserve_lock_interruptible: Lock a buffer with a reservation_id set.

Re: [PATCH 1/7] arch: add __mutex_fastpath_lock_retval_arg to generic/sh/x86/powerpc/ia64

2013-01-15 Thread Maarten Lankhorst
Again, missing entry :( Op 15-01-13 13:33, Maarten Lankhorst schreef: Needed for reservation slowpath. I was hoping to convert the 'mutexes' in ttm to proper mutexes, so I extended the core mutex code slightly to add support for reservations. This requires however passing an argument to

[PATCH] cx23885: Add analog video input support for Compro E650F

2013-01-15 Thread 盧瑞元
This patch enables all analog video inputs on Compro E650F cards. However, it modifies cx23885_initialize() in cx25840-core.c that may break other devices. I'm seeking a way to avoid modifying cx23885_initialize(), any suggestions are appreciated. Regards

Re: RFC: add parameters to V4L controls

2013-01-15 Thread Andrzej Hajda
On 12.01.2013 23:05, Sakari Ailus wrote: Hi Andrzej, Andrzej Hajda wrote: Hi, I have included this proposition already in the post [PATCH RFC 0/2] V4L: Add auto focus area control and selection but it left unanswered. I repost it again in a separate e-mail, I hope this way it will be easier

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Antti Palosaari
On 01/15/2013 03:10 PM, Mauro Carvalho Chehab wrote: Em Tue, 15 Jan 2013 11:34:37 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 04:30 AM, Mauro Carvalho Chehab wrote: v6: Add DocBook documentation. v7: Some fixes as suggested by Antti v8: Documentation fix,

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Mauro Carvalho Chehab
Em Tue, 15 Jan 2013 16:49:07 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 03:10 PM, Mauro Carvalho Chehab wrote: Em Tue, 15 Jan 2013 11:34:37 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 04:30 AM, Mauro Carvalho Chehab wrote: v6: Add DocBook

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Mauro Carvalho Chehab
Em Tue, 15 Jan 2013 16:08:14 +0530 Manu Abraham abraham.m...@gmail.com escreveu: On Tue, Jan 15, 2013 at 8:00 AM, Mauro Carvalho Chehab mche...@redhat.com wrote: Add DVBv5 methods to retrieve QoS statistics. Those methods allow per-layer and global statistics. Implemented 2 QoS

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Antti Palosaari
On 01/15/2013 04:49 PM, Antti Palosaari wrote: I am a little bit lazy to read all those patches, but I assume it is possible: * return SNR (CNR) as both dB and linear? * return signal strength as both dBm and linear? And what happens when when multiple statistics are queried, but fronted cannot

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Devin Heitmueller
On Tue, Jan 15, 2013 at 10:21 AM, Mauro Carvalho Chehab mche...@redhat.com wrote: Lets say SS, SNR, BER, UCB are queried, but only SS and SNR are ready to be returned, whilst rest are not possible? As I remember DVBv5 API is broken by design and cannot return error code per request. The

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Mauro Carvalho Chehab
Em Tue, 15 Jan 2013 10:47:50 -0500 Devin Heitmueller dheitmuel...@kernellabs.com escreveu: On Tue, Jan 15, 2013 at 10:21 AM, Mauro Carvalho Chehab mche...@redhat.com wrote: Lets say SS, SNR, BER, UCB are queried, but only SS and SNR are ready to be returned, whilst rest are not possible? As

Re: [PATCH] em28xx: return -ENOTTY for tuner + frequency ioctls if the device has no tuner

2013-01-15 Thread Frank Schäfer
Am 14.01.2013 10:20, schrieb Hans Verkuil: On Sun January 13 2013 13:50:50 Frank Schäfer wrote: Signed-off-by: Frank Schäfer fschaefer@googlemail.com --- drivers/media/usb/em28xx/em28xx-video.c |8 1 Datei geändert, 8 Zeilen hinzugefügt(+) diff --git

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Mauro Carvalho Chehab
Em Tue, 15 Jan 2013 17:26:17 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 04:49 PM, Antti Palosaari wrote: I am a little bit lazy to read all those patches, but I assume it is possible: * return SNR (CNR) as both dB and linear? * return signal strength as both dBm and

DVB-T USB Device elgato EyeTV Micro

2013-01-15 Thread Michael Gustav Simon
Hello, try to get DVB-T USB Device EyeTV Micro (http://www.elgato.com/elgato/int/mainmenu/products/tuner/EyeTV-Micro.en.html) from elgato for Android, Mac OS X and Windows with current media_build without any success running. $ uname -r 3.5.0-21-generic $ dmesg [44358.948126] usb 1-1: new

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Antti Palosaari
On 01/15/2013 07:12 PM, Mauro Carvalho Chehab wrote: Em Tue, 15 Jan 2013 17:26:17 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 04:49 PM, Antti Palosaari wrote: I am a little bit lazy to read all those patches, but I assume it is possible: * return SNR (CNR) as both dB and

[PATCH] media: dvb-frontends/stv0900_core.c: remove unnecessary null pointer check

2013-01-15 Thread Cong Ding
The address of a variable is impossible to be null, so we remove the check. Signed-off-by: Cong Ding ding...@gmail.com --- drivers/media/dvb-frontends/stv0900_core.c |7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/media/dvb-frontends/stv0900_core.c

[PATCH v] media: dvb-frontends: remove unnecessary null pointer check

2013-01-15 Thread Cong Ding
The address of a variable is impossible to be null, so we remove the check. Signed-off-by: Cong Ding ding...@gmail.com --- sorry for sending again. I didn't notice there are another 2 places with the same issue. - cong drivers/media/dvb-frontends/stv0900_core.c | 14 --

cron job: media_tree daily build: ERRORS

2013-01-15 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:Tue Jan 15 19:00:19 CET 2013 git hash:3151d14aa6e983aa36d51a80d0477859f9ba12af gcc version: i686-linux-gcc

Re: [RFC PATCH] saa7134: Add AverMedia Satelllite Hybrid+FM A706 (and FM radio problems)

2013-01-15 Thread Ondrej Zary
On Monday 14 January 2013 22:29:58 Ondrej Zary wrote: On Saturday 12 January 2013 21:24:50 Ondrej Zary wrote: Partially working: FM radio Radio seems to be a long-standing problem with saa7134 cards using silicon tuners (according to various mailing lists). On this card, GPIO11 controls

Re: [RFC PATCH] saa7134: Add AverMedia Satelllite Hybrid+FM A706 (and FM radio problems)

2013-01-15 Thread Ondrej Zary
On Tuesday 15 January 2013 22:57:06 Ondrej Zary wrote: On Monday 14 January 2013 22:29:58 Ondrej Zary wrote: On Saturday 12 January 2013 21:24:50 Ondrej Zary wrote: Partially working: FM radio Radio seems to be a long-standing problem with saa7134 cards using silicon tuners (according

Re: [PATCH RFCv10 00/15] DVB QoS statistics API

2013-01-15 Thread Manu Abraham
On Wed, Jan 16, 2013 at 2:07 AM, Antti Palosaari cr...@iki.fi wrote: On 01/15/2013 07:12 PM, Mauro Carvalho Chehab wrote: Em Tue, 15 Jan 2013 17:26:17 +0200 Antti Palosaari cr...@iki.fi escreveu: On 01/15/2013 04:49 PM, Antti Palosaari wrote: I am a little bit lazy to read all those

Re: [Linaro-mm-sig] [PATCH 5/7] seqno-fence: Hardware dma-buf implementation of fencing (v4)

2013-01-15 Thread Inki Dae
2013/1/15 Maarten Lankhorst m.b.lankho...@gmail.com: This type of fence can be used with hardware synchronization for simple hardware that can block execution until the condition (dma_buf[offset] - value) = 0 has been met. A software fallback still has to be provided in case the fence is used